This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: Regex sets are no longer experimental
[perl5.git] / doio.c
CommitLineData
a0d0e21e 1/* doio.c
a687059c 2 *
1129b882
NC
3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
a687059c 5 *
6e21c824
LW
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
a687059c 8 *
a0d0e21e
LW
9 */
10
11/*
4ac71550
TC
12 * Far below them they saw the white waters pour into a foaming bowl, and
13 * then swirl darkly about a deep oval basin in the rocks, until they found
14 * their way out again through a narrow gate, and flowed away, fuming and
15 * chattering, into calmer and more level reaches.
16 *
17 * [p.684 of _The Lord of the Rings_, IV/vi: "The Forbidden Pool"]
a687059c
LW
18 */
19
166f8a29
DM
20/* This file contains functions that do the actual I/O on behalf of ops.
21 * For example, pp_print() calls the do_print() function in this file for
22 * each argument needing printing.
23 */
24
a687059c 25#include "EXTERN.h"
864dbfa3 26#define PERL_IN_DOIO_C
a687059c
LW
27#include "perl.h"
28
fe14fcc3 29#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
aec308ec 30#ifndef HAS_SEM
c2ab57d4 31#include <sys/ipc.h>
aec308ec 32#endif
fe14fcc3 33#ifdef HAS_MSG
c2ab57d4 34#include <sys/msg.h>
e5d73d77 35#endif
fe14fcc3 36#ifdef HAS_SHM
c2ab57d4 37#include <sys/shm.h>
a0d0e21e 38# ifndef HAS_SHMAT_PROTOTYPE
20ce7b12 39 extern Shmat_t shmat (int, char *, int);
a0d0e21e 40# endif
c2ab57d4 41#endif
e5d73d77 42#endif
c2ab57d4 43
663a0e37 44#ifdef I_UTIME
3730b96e 45# if defined(_MSC_VER) || defined(__MINGW32__)
3fe9a6f1 46# include <sys/utime.h>
47# else
48# include <utime.h>
49# endif
663a0e37 50#endif
85aff577 51
85aff577
CS
52#ifdef O_EXCL
53# define OPEN_EXCL O_EXCL
54#else
55# define OPEN_EXCL 0
56#endif
a687059c 57
0c19750d
SP
58#define PERL_MODE_MAX 8
59#define PERL_FLAGS_MAX 10
60
76121258 61#include <signal.h>
76121258 62
74df577f 63void
1cdb2692 64Perl_setfd_cloexec(int fd)
74df577f
Z
65{
66 assert(fd >= 0);
f9821aff 67#if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
74df577f 68 (void) fcntl(fd, F_SETFD, FD_CLOEXEC);
f9821aff 69#endif
74df577f
Z
70}
71
72void
1cdb2692 73Perl_setfd_inhexec(int fd)
74df577f
Z
74{
75 assert(fd >= 0);
76#if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
77 (void) fcntl(fd, F_SETFD, 0);
78#endif
79}
80
81void
884fc2d3
Z
82Perl_setfd_cloexec_for_nonsysfd(pTHX_ int fd)
83{
84 assert(fd >= 0);
85 if(fd > PL_maxsysfd)
1604cfb0 86 setfd_cloexec(fd);
884fc2d3
Z
87}
88
89void
74df577f
Z
90Perl_setfd_inhexec_for_sysfd(pTHX_ int fd)
91{
92 assert(fd >= 0);
93 if(fd <= PL_maxsysfd)
1604cfb0 94 setfd_inhexec(fd);
74df577f 95}
884fc2d3
Z
96void
97Perl_setfd_cloexec_or_inhexec_by_sysfdness(pTHX_ int fd)
98{
99 assert(fd >= 0);
100 if(fd <= PL_maxsysfd)
1604cfb0 101 setfd_inhexec(fd);
884fc2d3 102 else
1604cfb0 103 setfd_cloexec(fd);
884fc2d3
Z
104}
105
74df577f
Z
106
107#define DO_GENOPEN_THEN_CLOEXEC(GENOPEN_NORMAL, GENSETFD_CLOEXEC) \
1604cfb0
MS
108 do { \
109 int res = (GENOPEN_NORMAL); \
110 if(LIKELY(res != -1)) GENSETFD_CLOEXEC; \
111 return res; \
112 } while(0)
f9821aff 113#if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC) && \
1604cfb0 114 defined(F_GETFD)
999d65ed
DM
115enum { CLOEXEC_EXPERIMENT = 0, CLOEXEC_AT_OPEN, CLOEXEC_AFTER_OPEN };
116# define DO_GENOPEN_EXPERIMENTING_CLOEXEC(strategy, TESTFD, GENOPEN_CLOEXEC, \
1604cfb0
MS
117 GENOPEN_NORMAL, GENSETFD_CLOEXEC) \
118 do { \
119 switch (strategy) { \
120 case CLOEXEC_EXPERIMENT: default: { \
121 int res = (GENOPEN_CLOEXEC), eno; \
122 if (LIKELY(res != -1)) { \
123 int fdflags = fcntl((TESTFD), F_GETFD); \
124 if (LIKELY(fdflags != -1) && \
125 LIKELY(fdflags & FD_CLOEXEC)) { \
126 strategy = CLOEXEC_AT_OPEN; \
127 } else { \
128 strategy = CLOEXEC_AFTER_OPEN; \
129 GENSETFD_CLOEXEC; \
130 } \
131 } else if (UNLIKELY((eno = errno) == EINVAL || \
132 eno == ENOSYS)) { \
133 res = (GENOPEN_NORMAL); \
134 if (LIKELY(res != -1)) { \
135 strategy = CLOEXEC_AFTER_OPEN; \
136 GENSETFD_CLOEXEC; \
137 } else if (!LIKELY((eno = errno) == EINVAL || \
138 eno == ENOSYS)) { \
139 strategy = CLOEXEC_AFTER_OPEN; \
140 } \
141 } \
142 return res; \
143 } \
144 case CLOEXEC_AT_OPEN: \
145 return (GENOPEN_CLOEXEC); \
146 case CLOEXEC_AFTER_OPEN: \
147 DO_GENOPEN_THEN_CLOEXEC(GENOPEN_NORMAL, GENSETFD_CLOEXEC); \
148 } \
149 } while(0)
f9821aff 150#else
999d65ed 151# define DO_GENOPEN_EXPERIMENTING_CLOEXEC(strategy, TESTFD, GENOPEN_CLOEXEC, \
1604cfb0
MS
152 GENOPEN_NORMAL, GENSETFD_CLOEXEC) \
153 DO_GENOPEN_THEN_CLOEXEC(GENOPEN_NORMAL, GENSETFD_CLOEXEC)
f9821aff
Z
154#endif
155
156#define DO_ONEOPEN_THEN_CLOEXEC(ONEOPEN_NORMAL) \
1604cfb0
MS
157 do { \
158 int fd; \
159 DO_GENOPEN_THEN_CLOEXEC(fd = (ONEOPEN_NORMAL), \
160 setfd_cloexec(fd)); \
161 } while(0)
999d65ed
DM
162#define DO_ONEOPEN_EXPERIMENTING_CLOEXEC(strategy, \
163 ONEOPEN_CLOEXEC, ONEOPEN_NORMAL) \
1604cfb0
MS
164 do { \
165 int fd; \
166 DO_GENOPEN_EXPERIMENTING_CLOEXEC(strategy, \
999d65ed
DM
167 fd, \
168 fd = (ONEOPEN_CLOEXEC), \
1604cfb0
MS
169 fd = (ONEOPEN_NORMAL), setfd_cloexec(fd)); \
170 } while(0)
f9821aff 171
74df577f 172#define DO_PIPESETFD_CLOEXEC(PIPEFD) \
1604cfb0
MS
173 do { \
174 setfd_cloexec((PIPEFD)[0]); \
175 setfd_cloexec((PIPEFD)[1]); \
176 } while(0)
f9821aff 177#define DO_PIPEOPEN_THEN_CLOEXEC(PIPEFD, PIPEOPEN_NORMAL) \
1604cfb0 178 DO_GENOPEN_THEN_CLOEXEC(PIPEOPEN_NORMAL, DO_PIPESETFD_CLOEXEC(PIPEFD))
999d65ed 179#define DO_PIPEOPEN_EXPERIMENTING_CLOEXEC(strategy, PIPEFD, PIPEOPEN_CLOEXEC, \
1604cfb0
MS
180 PIPEOPEN_NORMAL) \
181 DO_GENOPEN_EXPERIMENTING_CLOEXEC(strategy, \
999d65ed 182 (PIPEFD)[0], PIPEOPEN_CLOEXEC, \
1604cfb0 183 PIPEOPEN_NORMAL, DO_PIPESETFD_CLOEXEC(PIPEFD))
f9821aff
Z
184
185int
186Perl_PerlLIO_dup_cloexec(pTHX_ int oldfd)
187{
188#if !defined(PERL_IMPLICIT_SYS) && defined(F_DUPFD_CLOEXEC)
189 /*
190 * struct IPerlLIO doesn't cover fcntl(), and there's no clear way
191 * to extend it, so for the time being this just isn't available on
192 * PERL_IMPLICIT_SYS builds.
193 */
194 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
999d65ed 195 PL_strategy_dup,
1604cfb0
MS
196 fcntl(oldfd, F_DUPFD_CLOEXEC, 0),
197 PerlLIO_dup(oldfd));
f9821aff
Z
198#else
199 DO_ONEOPEN_THEN_CLOEXEC(PerlLIO_dup(oldfd));
200#endif
201}
202
203int
204Perl_PerlLIO_dup2_cloexec(pTHX_ int oldfd, int newfd)
205{
206#if !defined(PERL_IMPLICIT_SYS) && defined(HAS_DUP3) && defined(O_CLOEXEC)
207 /*
208 * struct IPerlLIO doesn't cover dup3(), and there's no clear way
209 * to extend it, so for the time being this just isn't available on
210 * PERL_IMPLICIT_SYS builds.
211 */
212 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
999d65ed 213 PL_strategy_dup2,
1604cfb0
MS
214 dup3(oldfd, newfd, O_CLOEXEC),
215 PerlLIO_dup2(oldfd, newfd));
f9821aff
Z
216#else
217 DO_ONEOPEN_THEN_CLOEXEC(PerlLIO_dup2(oldfd, newfd));
218#endif
219}
220
1c267c88
MF
221#if defined(OEMVS)
222 #if (__CHARSET_LIB == 1)
223# include <stdio.h>
224# include <stdlib.h>
225
226 static int setccsid(int fd, int ccsid)
227 {
228 attrib_t attr;
229 int rc;
230
231 memset(&attr, 0, sizeof(attr));
232 attr.att_filetagchg = 1;
233 attr.att_filetag.ft_ccsid = ccsid;
234 attr.att_filetag.ft_txtflag = 1;
235
236 rc = __fchattr(fd, &attr, sizeof(attr));
237 return rc;
238 }
239
240 static void updateccsid(int fd, const char* path, int oflag, int perm)
241 {
242 int rc;
243 if (oflag & O_CREAT) {
244 rc = setccsid(fd, 819);
245 }
246 }
247
248 int asciiopen(const char* path, int oflag)
249 {
250 int rc;
251 int fd = open(path, oflag);
252 if (fd == -1) {
253 return fd;
254 }
255 updateccsid(fd, path, oflag, -1);
256 return fd;
257 }
258
259 int asciiopen3(const char* path, int oflag, int perm)
260 {
261 int rc;
262 int fd = open(path, oflag, perm);
263 if (fd == -1) {
264 return fd;
265 }
266 updateccsid(fd, path, oflag, perm);
267 return fd;
268 }
269 #endif
270#endif
271
f9821aff
Z
272int
273Perl_PerlLIO_open_cloexec(pTHX_ const char *file, int flag)
274{
275 PERL_ARGS_ASSERT_PERLLIO_OPEN_CLOEXEC;
276#if defined(O_CLOEXEC)
277 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
999d65ed 278 PL_strategy_open,
1604cfb0
MS
279 PerlLIO_open(file, flag | O_CLOEXEC),
280 PerlLIO_open(file, flag));
f9821aff
Z
281#else
282 DO_ONEOPEN_THEN_CLOEXEC(PerlLIO_open(file, flag));
283#endif
284}
285
286int
287Perl_PerlLIO_open3_cloexec(pTHX_ const char *file, int flag, int perm)
288{
289 PERL_ARGS_ASSERT_PERLLIO_OPEN3_CLOEXEC;
290#if defined(O_CLOEXEC)
291 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
999d65ed 292 PL_strategy_open3,
1604cfb0
MS
293 PerlLIO_open3(file, flag | O_CLOEXEC, perm),
294 PerlLIO_open3(file, flag, perm));
f9821aff
Z
295#else
296 DO_ONEOPEN_THEN_CLOEXEC(PerlLIO_open3(file, flag, perm));
297#endif
298}
299
1c267c88
MF
300#if defined(OEMVS)
301 #if (__CHARSET_LIB == 1)
302 #define TEMP_CCSID 819
303 #endif
304static int Internal_Perl_my_mkstemp_cloexec(char *templte)
305{
306 PERL_ARGS_ASSERT_MY_MKSTEMP_CLOEXEC;
703a5fb0 307# if defined(O_CLOEXEC)
1c267c88
MF
308 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
309 PL_strategy_mkstemp,
310 Perl_my_mkostemp(templte, O_CLOEXEC),
311 Perl_my_mkstemp(templte));
703a5fb0 312# else
1c267c88 313 DO_ONEOPEN_THEN_CLOEXEC(Perl_my_mkstemp(templte));
703a5fb0 314# endif
1c267c88 315}
1cdb2692 316int
1c267c88
MF
317Perl_my_mkstemp_cloexec(char *templte)
318{
319 int tempfd = Internal_Perl_my_mkstemp_cloexec(templte);
703a5fb0 320# if defined(TEMP_CCSID)
1c267c88 321 setccsid(tempfd, TEMP_CCSID);
703a5fb0 322# endif
1c267c88
MF
323 return tempfd;
324}
325
703a5fb0 326# else /* Below is ! OEMVS */
2c05b8b9 327int
1c267c88 328Perl_my_mkstemp_cloexec(char *templte)
1cdb2692
Z
329{
330 PERL_ARGS_ASSERT_MY_MKSTEMP_CLOEXEC;
703a5fb0 331# if defined(O_CLOEXEC)
1cdb2692 332 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
999d65ed 333 PL_strategy_mkstemp,
1604cfb0
MS
334 Perl_my_mkostemp(templte, O_CLOEXEC),
335 Perl_my_mkstemp(templte));
703a5fb0 336# else
1cdb2692 337 DO_ONEOPEN_THEN_CLOEXEC(Perl_my_mkstemp(templte));
703a5fb0 338# endif
1cdb2692 339}
1c267c88 340#endif
1cdb2692 341
ae73d7ec
TC
342int
343Perl_my_mkostemp_cloexec(char *templte, int flags)
344{
ae73d7ec
TC
345 PERL_ARGS_ASSERT_MY_MKOSTEMP_CLOEXEC;
346#if defined(O_CLOEXEC)
347 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
348 PL_strategy_mkstemp,
1604cfb0
MS
349 Perl_my_mkostemp(templte, flags | O_CLOEXEC),
350 Perl_my_mkostemp(templte, flags));
ae73d7ec
TC
351#else
352 DO_ONEOPEN_THEN_CLOEXEC(Perl_my_mkostemp(templte, flags));
353#endif
354}
355
f9821aff
Z
356#ifdef HAS_PIPE
357int
358Perl_PerlProc_pipe_cloexec(pTHX_ int *pipefd)
359{
360 PERL_ARGS_ASSERT_PERLPROC_PIPE_CLOEXEC;
361 /*
362 * struct IPerlProc doesn't cover pipe2(), and there's no clear way
363 * to extend it, so for the time being this just isn't available on
364 * PERL_IMPLICIT_SYS builds.
365 */
366# if !defined(PERL_IMPLICIT_SYS) && defined(HAS_PIPE2) && defined(O_CLOEXEC)
999d65ed 367 DO_PIPEOPEN_EXPERIMENTING_CLOEXEC(PL_strategy_pipe, pipefd,
1604cfb0
MS
368 pipe2(pipefd, O_CLOEXEC),
369 PerlProc_pipe(pipefd));
f9821aff
Z
370# else
371 DO_PIPEOPEN_THEN_CLOEXEC(pipefd, PerlProc_pipe(pipefd));
372# endif
373}
374#endif
375
376#ifdef HAS_SOCKET
377
378int
379Perl_PerlSock_socket_cloexec(pTHX_ int domain, int type, int protocol)
380{
381# if defined(SOCK_CLOEXEC)
382 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
999d65ed 383 PL_strategy_socket,
1604cfb0
MS
384 PerlSock_socket(domain, type | SOCK_CLOEXEC, protocol),
385 PerlSock_socket(domain, type, protocol));
f9821aff
Z
386# else
387 DO_ONEOPEN_THEN_CLOEXEC(PerlSock_socket(domain, type, protocol));
388# endif
389}
390
391int
392Perl_PerlSock_accept_cloexec(pTHX_ int listenfd, struct sockaddr *addr,
393 Sock_size_t *addrlen)
394{
395# if !defined(PERL_IMPLICIT_SYS) && \
1604cfb0 396 defined(HAS_ACCEPT4) && defined(SOCK_CLOEXEC)
f9821aff
Z
397 /*
398 * struct IPerlSock doesn't cover accept4(), and there's no clear
399 * way to extend it, so for the time being this just isn't available
400 * on PERL_IMPLICIT_SYS builds.
401 */
402 DO_ONEOPEN_EXPERIMENTING_CLOEXEC(
999d65ed 403 PL_strategy_accept,
1604cfb0
MS
404 accept4(listenfd, addr, addrlen, SOCK_CLOEXEC),
405 PerlSock_accept(listenfd, addr, addrlen));
f9821aff
Z
406# else
407 DO_ONEOPEN_THEN_CLOEXEC(PerlSock_accept(listenfd, addr, addrlen));
408# endif
409}
410
411#endif
412
413#if defined (HAS_SOCKETPAIR) || \
414 (defined (HAS_SOCKET) && defined(SOCK_DGRAM) && \
1604cfb0 415 defined(AF_INET) && defined(PF_INET))
f9821aff
Z
416int
417Perl_PerlSock_socketpair_cloexec(pTHX_ int domain, int type, int protocol,
418 int *pairfd)
419{
420 PERL_ARGS_ASSERT_PERLSOCK_SOCKETPAIR_CLOEXEC;
421# ifdef SOCK_CLOEXEC
999d65ed 422 DO_PIPEOPEN_EXPERIMENTING_CLOEXEC(PL_strategy_socketpair, pairfd,
1604cfb0
MS
423 PerlSock_socketpair(domain, type | SOCK_CLOEXEC, protocol, pairfd),
424 PerlSock_socketpair(domain, type, protocol, pairfd));
f9821aff
Z
425# else
426 DO_PIPEOPEN_THEN_CLOEXEC(pairfd,
1604cfb0 427 PerlSock_socketpair(domain, type, protocol, pairfd));
f9821aff
Z
428# endif
429}
430#endif
431
a2b41d5c
NC
432static IO *
433S_openn_setup(pTHX_ GV *gv, char *mode, PerlIO **saveifp, PerlIO **saveofp,
434 int *savefd, char *savetype)
a567e93b 435{
eb578fdb 436 IO * const io = GvIOn(gv);
a687059c 437
a2b41d5c
NC
438 PERL_ARGS_ASSERT_OPENN_SETUP;
439
440 *saveifp = NULL;
441 *saveofp = NULL;
442 *savefd = -1;
443 *savetype = IoTYPE_CLOSED;
7918f24d 444
b931b1d9 445 Zero(mode,sizeof(mode),char);
3280af22 446 PL_forkprocess = 1; /* assume true if no fork */
c07a80fd 447
b931b1d9 448 /* If currently open - close before we re-open */
a0d0e21e 449 if (IoIFP(io)) {
1604cfb0
MS
450 if (IoTYPE(io) == IoTYPE_STD) {
451 /* This is a clone of one of STD* handles */
452 }
453 else {
26297fe9
NC
454 const int old_fd = PerlIO_fileno(IoIFP(io));
455
25faa0d3 456 if (inRANGE(old_fd, 0, PL_maxsysfd)) {
26297fe9 457 /* This is one of the original STD* handles */
a2b41d5c
NC
458 *saveifp = IoIFP(io);
459 *saveofp = IoOFP(io);
460 *savetype = IoTYPE(io);
461 *savefd = old_fd;
26297fe9
NC
462 }
463 else {
464 int result;
465
466 if (IoTYPE(io) == IoTYPE_PIPE)
467 result = PerlProc_pclose(IoIFP(io));
468 else if (IoIFP(io) != IoOFP(io)) {
469 if (IoOFP(io)) {
470 result = PerlIO_close(IoOFP(io));
471 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
472 }
473 else
474 result = PerlIO_close(IoIFP(io));
475 }
476 else
477 result = PerlIO_close(IoIFP(io));
478
479 if (result == EOF && old_fd > PL_maxsysfd) {
480 /* Why is this not Perl_warn*() call ? */
481 PerlIO_printf(Perl_error_log,
147e3846
KW
482 "Warning: unable to close filehandle %" HEKf
483 " properly.\n",
26297fe9
NC
484 HEKfARG(GvENAME_HEK(gv))
485 );
486 }
487 }
488 }
1604cfb0 489 IoOFP(io) = IoIFP(io) = NULL;
a687059c 490 }
a2b41d5c
NC
491 return io;
492}
493
494bool
495Perl_do_openn(pTHX_ GV *gv, const char *oname, I32 len, int as_raw,
1604cfb0
MS
496 int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp,
497 I32 num_svs)
a2b41d5c 498{
4b451737
NC
499 PERL_ARGS_ASSERT_DO_OPENN;
500
501 if (as_raw) {
502 /* sysopen style args, i.e. integer mode and permissions */
503
1604cfb0
MS
504 if (num_svs != 0) {
505 Perl_croak(aTHX_ "panic: sysopen with multiple args, num_svs=%ld",
506 (long) num_svs);
507 }
7e30e49f 508 return do_open_raw(gv, oname, len, rawmode, rawperm, NULL);
4b451737
NC
509 }
510 return do_open6(gv, oname, len, supplied_fp, svp, num_svs);
511}
512
513bool
514Perl_do_open_raw(pTHX_ GV *gv, const char *oname, STRLEN len,
7e30e49f 515 int rawmode, int rawperm, Stat_t *statbufp)
4b451737 516{
a2b41d5c
NC
517 PerlIO *saveifp;
518 PerlIO *saveofp;
519 int savefd;
520 char savetype;
521 char mode[PERL_MODE_MAX]; /* file mode ("r\0", "rb\0", "ab\0" etc.) */
522 IO * const io = openn_setup(gv, mode, &saveifp, &saveofp, &savefd, &savetype);
523 int writing = 0;
524 PerlIO *fp;
a2b41d5c 525
4b451737 526 PERL_ARGS_ASSERT_DO_OPEN_RAW;
c07a80fd 527
4b451737
NC
528 /* For ease of blame back to 5.000, keep the existing indenting. */
529 {
b931b1d9 530 /* sysopen style args, i.e. integer mode and permissions */
1604cfb0
MS
531 STRLEN ix = 0;
532 const int appendtrunc =
533 0
d1da7611 534#ifdef O_APPEND /* Not fully portable. */
1604cfb0 535 |O_APPEND
d1da7611
JH
536#endif
537#ifdef O_TRUNC /* Not fully portable. */
1604cfb0 538 |O_TRUNC
d1da7611 539#endif
1604cfb0
MS
540 ;
541 const int modifyingmode = O_WRONLY|O_RDWR|O_CREAT|appendtrunc;
542 int ismodifying;
9229bf8d 543 SV *namesv;
3dccc55c 544
1604cfb0 545 /* It's not always
3dccc55c 546
1604cfb0
MS
547 O_RDONLY 0
548 O_WRONLY 1
549 O_RDWR 2
3dccc55c 550
1604cfb0 551 It might be (in OS/390 and Mac OS Classic it is)
3dccc55c 552
1604cfb0
MS
553 O_WRONLY 1
554 O_RDONLY 2
555 O_RDWR 3
3dccc55c 556
1604cfb0
MS
557 This means that simple & with O_RDWR would look
558 like O_RDONLY is present. Therefore we have to
559 be more careful.
560 */
561 if ((ismodifying = (rawmode & modifyingmode))) {
562 if ((ismodifying & O_WRONLY) == O_WRONLY ||
563 (ismodifying & O_RDWR) == O_RDWR ||
564 (ismodifying & (O_CREAT|appendtrunc)))
565 TAINT_PROPER("sysopen");
566 }
567 mode[ix++] = IoTYPE_NUMERIC; /* Marker to openn to use numeric "sysopen" */
b931b1d9 568
09458382 569#if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE)
1604cfb0 570 rawmode |= O_LARGEFILE; /* Transparently largefiley. */
5ff3f7a4
GS
571#endif
572
06c7082d 573 IoTYPE(io) = PerlIO_intmode2str(rawmode, &mode[ix], &writing);
ee518936 574
1604cfb0
MS
575 namesv = newSVpvn_flags(oname, len, SVs_TEMP);
576 fp = PerlIO_openn(aTHX_ NULL, mode, -1, rawmode, rawperm, NULL, 1, &namesv);
a687059c 577 }
4b451737 578 return openn_cleanup(gv, io, fp, mode, oname, saveifp, saveofp, savefd,
7e30e49f 579 savetype, writing, 0, NULL, statbufp);
4b451737
NC
580}
581
582bool
583Perl_do_open6(pTHX_ GV *gv, const char *oname, STRLEN len,
584 PerlIO *supplied_fp, SV **svp, U32 num_svs)
585{
4b451737
NC
586 PerlIO *saveifp;
587 PerlIO *saveofp;
588 int savefd;
589 char savetype;
590 char mode[PERL_MODE_MAX]; /* file mode ("r\0", "rb\0", "ab\0" etc.) */
591 IO * const io = openn_setup(gv, mode, &saveifp, &saveofp, &savefd, &savetype);
592 int writing = 0;
593 PerlIO *fp;
594 bool was_fdopen = FALSE;
595 char *type = NULL;
596
597 PERL_ARGS_ASSERT_DO_OPEN6;
598
599 /* For ease of blame back to 5.000, keep the existing indenting. */
600 {
1604cfb0
MS
601 /* Regular (non-sys) open */
602 char *name;
603 STRLEN olen = len;
604 char *tend;
605 int dodup = 0;
c564b489
NC
606 bool in_raw = 0, in_crlf = 0, out_raw = 0, out_crlf = 0;
607
608 /* Collect default raw/crlf info from the op */
609 if (PL_op && PL_op->op_type == OP_OPEN) {
610 /* set up IO layers */
611 const U8 flags = PL_op->op_private;
612 in_raw = (flags & OPpOPEN_IN_RAW);
613 in_crlf = (flags & OPpOPEN_IN_CRLF);
614 out_raw = (flags & OPpOPEN_OUT_RAW);
615 out_crlf = (flags & OPpOPEN_OUT_CRLF);
616 }
c07a80fd 617
1604cfb0
MS
618 type = savepvn(oname, len);
619 tend = type+len;
620 SAVEFREEPV(type);
eb649f83
AMS
621
622 /* Lose leading and trailing white space */
1604cfb0
MS
623 while (isSPACE(*type))
624 type++;
eb649f83 625 while (tend > type && isSPACE(tend[-1]))
1604cfb0 626 *--tend = '\0';
eb649f83 627
1604cfb0 628 if (num_svs) {
41188aa0
TC
629 const char *p;
630 STRLEN nlen = 0;
1604cfb0 631 /* New style explicit name, type is just mode and layer info */
9a869a14 632#ifdef USE_STDIO
1604cfb0
MS
633 if (SvROK(*svp) && !memchr(oname, '&', len)) {
634 if (ckWARN(WARN_IO))
635 Perl_warner(aTHX_ packWARN(WARN_IO),
636 "Can't open a reference");
637 SETERRNO(EINVAL, LIB_INVARG);
a6fc70e5 638 fp = NULL;
1604cfb0
MS
639 goto say_false;
640 }
9a869a14 641#endif /* USE_STDIO */
41188aa0
TC
642 p = (SvOK(*svp) || SvGMAGICAL(*svp)) ? SvPV(*svp, nlen) : NULL;
643
a6fc70e5
NC
644 if (p && !IS_SAFE_PATHNAME(p, nlen, "open")) {
645 fp = NULL;
c8028aa6 646 goto say_false;
a6fc70e5 647 }
c8028aa6 648
1604cfb0 649 name = p ? savepvn(p, nlen) : savepvs("");
41188aa0 650
1604cfb0
MS
651 SAVEFREEPV(name);
652 }
653 else {
654 name = type;
655 len = tend-type;
656 }
657 IoTYPE(io) = *type;
658 if ((*type == IoTYPE_RDWR) && /* scary */
01a8ea99 659 (*(type+1) == IoTYPE_RDONLY || *(type+1) == IoTYPE_WRONLY) &&
1604cfb0
MS
660 ((!num_svs || (tend > type+1 && tend[-1] != IoTYPE_PIPE)))) {
661 TAINT_PROPER("open");
662 mode[1] = *type++;
663 writing = 1;
664 }
665
666 if (*type == IoTYPE_PIPE) {
667 if (num_svs) {
668 if (type[1] != IoTYPE_STD) {
669 unknown_open_mode:
670 Perl_croak(aTHX_ "Unknown open() mode '%.*s'", (int)olen, oname);
671 }
672 type++;
673 }
674 do {
675 type++;
676 } while (isSPACE(*type));
677 if (!num_svs) {
678 name = type;
679 len = tend-type;
680 }
681 if (*name == '\0') {
682 /* command is missing 19990114 */
683 if (ckWARN(WARN_PIPE))
684 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
685 errno = EPIPE;
a6fc70e5 686 fp = NULL;
1604cfb0
MS
687 goto say_false;
688 }
689 if (!(*name == '-' && name[1] == '\0') || num_svs)
690 TAINT_ENV();
691 TAINT_PROPER("piped open");
692 if (!num_svs && name[len-1] == '|') {
693 name[--len] = '\0' ;
694 if (ckWARN(WARN_PIPE))
695 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Can't open bidirectional pipe");
696 }
697 mode[0] = 'w';
698 writing = 1;
0c19750d 699 if (out_raw)
1604cfb0 700 mode[1] = 'b';
0c19750d 701 else if (out_crlf)
1604cfb0
MS
702 mode[1] = 't';
703 if (num_svs > 1) {
704 fp = PerlProc_popen_list(mode, num_svs, svp);
705 }
706 else {
707 fp = PerlProc_popen(name,mode);
708 }
709 if (num_svs) {
710 if (*type) {
711 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
a6fc70e5 712 fp = NULL;
1604cfb0
MS
713 goto say_false;
714 }
715 }
716 }
717 } /* IoTYPE_PIPE */
718 else if (*type == IoTYPE_WRONLY) {
719 TAINT_PROPER("open");
720 type++;
721 if (*type == IoTYPE_WRONLY) {
722 /* Two IoTYPE_WRONLYs in a row make for an IoTYPE_APPEND. */
723 mode[0] = IoTYPE(io) = IoTYPE_APPEND;
724 type++;
725 }
726 else {
727 mode[0] = 'w';
728 }
729 writing = 1;
c07a80fd 730
0c19750d 731 if (out_raw)
1604cfb0 732 mode[1] = 'b';
0c19750d 733 else if (out_crlf)
1604cfb0
MS
734 mode[1] = 't';
735 if (*type == '&') {
736 duplicity:
737 dodup = PERLIO_DUP_FD;
738 type++;
739 if (*type == '=') {
740 dodup = 0;
741 type++;
742 }
743 if (!num_svs && !*type && supplied_fp) {
744 /* "<+&" etc. is used by typemaps */
745 fp = supplied_fp;
746 }
747 else {
748 PerlIO *that_fp = NULL;
b4464d55 749 int wanted_fd;
22ff3130 750 UV uv;
1604cfb0
MS
751 if (num_svs > 1) {
752 /* diag_listed_as: More than one argument to '%s' open */
753 Perl_croak(aTHX_ "More than one argument to '%c&' open",IoTYPE(io));
754 }
755 while (isSPACE(*type))
756 type++;
757 if (num_svs && (
758 SvIOK(*svp)
759 || (SvPOKp(*svp) && looks_like_number(*svp))
760 )) {
b4464d55 761 wanted_fd = SvUV(*svp);
1604cfb0
MS
762 num_svs = 0;
763 }
764 else if (isDIGIT(*type)
22ff3130
HS
765 && grok_atoUV(type, &uv, NULL)
766 && uv <= INT_MAX
767 ) {
768 wanted_fd = (int)uv;
1604cfb0
MS
769 }
770 else {
771 const IO* thatio;
772 if (num_svs) {
773 thatio = sv_2io(*svp);
774 }
775 else {
776 GV * const thatgv = gv_fetchpvn_flags(type, tend - type,
777 0, SVt_PVIO);
778 thatio = GvIO(thatgv);
779 }
780 if (!thatio) {
6e21c824 781#ifdef EINVAL
1604cfb0 782 SETERRNO(EINVAL,SS_IVCHAN);
6e21c824 783#endif
a6fc70e5 784 fp = NULL;
1604cfb0
MS
785 goto say_false;
786 }
787 if ((that_fp = IoIFP(thatio))) {
788 /* Flush stdio buffer before dup. --mjd
789 * Unfortunately SEEK_CURing 0 seems to
790 * be optimized away on most platforms;
791 * only Solaris and Linux seem to flush
792 * on that. --jhi */
793 /* On the other hand, do all platforms
794 * take gracefully to flushing a read-only
795 * filehandle? Perhaps we should do
796 * fsetpos(src)+fgetpos(dst)? --nik */
797 PerlIO_flush(that_fp);
798 wanted_fd = PerlIO_fileno(that_fp);
799 /* When dup()ing STDIN, STDOUT or STDERR
800 * explicitly set appropriate access mode */
801 if (that_fp == PerlIO_stdout()
802 || that_fp == PerlIO_stderr())
803 IoTYPE(io) = IoTYPE_WRONLY;
804 else if (that_fp == PerlIO_stdin())
0759c907 805 IoTYPE(io) = IoTYPE_RDONLY;
1604cfb0
MS
806 /* When dup()ing a socket, say result is
807 * one as well */
808 else if (IoTYPE(thatio) == IoTYPE_SOCKET)
809 IoTYPE(io) = IoTYPE_SOCKET;
810 }
0c9375a5
TC
811 else {
812 SETERRNO(EBADF, RMS_IFI);
813 fp = NULL;
814 goto say_false;
815 }
1604cfb0
MS
816 }
817 if (!num_svs)
818 type = NULL;
819 if (that_fp) {
820 fp = PerlIO_fdupopen(aTHX_ that_fp, NULL, dodup);
821 }
822 else {
823 if (dodup)
884fc2d3 824 wanted_fd = PerlLIO_dup_cloexec(wanted_fd);
1604cfb0
MS
825 else
826 was_fdopen = TRUE;
b4464d55
NC
827 if (!(fp = PerlIO_openn(aTHX_ type,mode,wanted_fd,0,0,NULL,num_svs,svp))) {
828 if (dodup && wanted_fd >= 0)
829 PerlLIO_close(wanted_fd);
1604cfb0
MS
830 }
831 }
832 }
833 } /* & */
834 else {
835 while (isSPACE(*type))
836 type++;
837 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
838 type++;
839 fp = PerlIO_stdout();
840 IoTYPE(io) = IoTYPE_STD;
841 if (num_svs > 1) {
842 /* diag_listed_as: More than one argument to '%s' open */
843 Perl_croak(aTHX_ "More than one argument to '>%c' open",IoTYPE_STD);
844 }
845 }
846 else {
847 if (num_svs) {
9229bf8d
NC
848 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
849 }
850 else {
851 SV *namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
1604cfb0 852 type = NULL;
9229bf8d 853 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,1,&namesv);
1604cfb0
MS
854 }
855 }
856 } /* !& */
857 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
858 goto unknown_open_mode;
859 } /* IoTYPE_WRONLY */
860 else if (*type == IoTYPE_RDONLY) {
861 do {
862 type++;
863 } while (isSPACE(*type));
864 mode[0] = 'r';
0c19750d 865 if (in_raw)
1604cfb0 866 mode[1] = 'b';
0c19750d 867 else if (in_crlf)
1604cfb0
MS
868 mode[1] = 't';
869 if (*type == '&') {
870 goto duplicity;
871 }
872 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
873 type++;
874 fp = PerlIO_stdin();
875 IoTYPE(io) = IoTYPE_STD;
876 if (num_svs > 1) {
877 /* diag_listed_as: More than one argument to '%s' open */
878 Perl_croak(aTHX_ "More than one argument to '<%c' open",IoTYPE_STD);
879 }
880 }
881 else {
882 if (num_svs) {
9229bf8d
NC
883 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
884 }
885 else {
886 SV *namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
1604cfb0 887 type = NULL;
9229bf8d 888 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,1,&namesv);
1604cfb0
MS
889 }
890 }
891 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
892 goto unknown_open_mode;
893 } /* IoTYPE_RDONLY */
894 else if ((num_svs && /* '-|...' or '...|' */
895 type[0] == IoTYPE_STD && type[1] == IoTYPE_PIPE) ||
896 (!num_svs && tend > type+1 && tend[-1] == IoTYPE_PIPE)) {
897 if (num_svs) {
898 type += 2; /* skip over '-|' */
899 }
900 else {
901 *--tend = '\0';
902 while (tend > type && isSPACE(tend[-1]))
903 *--tend = '\0';
904 for (; isSPACE(*type); type++)
905 ;
906 name = type;
907 len = tend-type;
908 }
909 if (*name == '\0') {
910 /* command is missing 19990114 */
911 if (ckWARN(WARN_PIPE))
912 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
913 errno = EPIPE;
a6fc70e5 914 fp = NULL;
1604cfb0
MS
915 goto say_false;
916 }
917 if (!(*name == '-' && name[1] == '\0') || num_svs)
918 TAINT_ENV();
919 TAINT_PROPER("piped open");
920 mode[0] = 'r';
0c19750d 921
0c19750d 922 if (in_raw)
1604cfb0 923 mode[1] = 'b';
0c19750d 924 else if (in_crlf)
1604cfb0
MS
925 mode[1] = 't';
926
927 if (num_svs > 1) {
928 fp = PerlProc_popen_list(mode,num_svs,svp);
929 }
930 else {
931 fp = PerlProc_popen(name,mode);
932 }
933 IoTYPE(io) = IoTYPE_PIPE;
934 if (num_svs) {
935 while (isSPACE(*type))
936 type++;
937 if (*type) {
938 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
a6fc70e5 939 fp = NULL;
1604cfb0
MS
940 goto say_false;
941 }
942 }
943 }
944 }
945 else { /* layer(Args) */
946 if (num_svs)
947 goto unknown_open_mode;
948 name = type;
949 IoTYPE(io) = IoTYPE_RDONLY;
950 for (; isSPACE(*name); name++)
951 ;
952 mode[0] = 'r';
0c19750d 953
0c19750d 954 if (in_raw)
1604cfb0 955 mode[1] = 'b';
0c19750d 956 else if (in_crlf)
1604cfb0
MS
957 mode[1] = 't';
958
959 if (*name == '-' && name[1] == '\0') {
960 fp = PerlIO_stdin();
961 IoTYPE(io) = IoTYPE_STD;
962 }
963 else {
964 if (num_svs) {
9229bf8d
NC
965 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
966 }
967 else {
1604cfb0
MS
968 SV *namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
969 type = NULL;
9229bf8d 970 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,1,&namesv);
1604cfb0
MS
971 }
972 }
973 }
a687059c 974 }
a6fc70e5
NC
975
976 say_false:
977 return openn_cleanup(gv, io, fp, mode, oname, saveifp, saveofp, savefd,
7e30e49f 978 savetype, writing, was_fdopen, type, NULL);
a6fc70e5
NC
979}
980
981/* Yes, this is ugly, but it's private, and I don't see a cleaner way to
982 simplify the two-headed public interface of do_openn. */
983static bool
984S_openn_cleanup(pTHX_ GV *gv, IO *io, PerlIO *fp, char *mode, const char *oname,
985 PerlIO *saveifp, PerlIO *saveofp, int savefd, char savetype,
7e30e49f 986 int writing, bool was_fdopen, const char *type, Stat_t *statbufp)
a6fc70e5
NC
987{
988 int fd;
7e30e49f 989 Stat_t statbuf;
a6fc70e5
NC
990
991 PERL_ARGS_ASSERT_OPENN_CLEANUP;
992
b1234259
JH
993 Zero(&statbuf, 1, Stat_t);
994
bee1dbe2 995 if (!fp) {
1604cfb0
MS
996 if (IoTYPE(io) == IoTYPE_RDONLY && ckWARN(WARN_NEWLINE)
997 && should_warn_nl(oname)
998
999 )
5d37acd6 1000 {
7347ee54 1001 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* PL_warn_nl is constant */
1604cfb0 1002 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
7347ee54 1003 GCC_DIAG_RESTORE_STMT;
5d37acd6 1004 }
1604cfb0 1005 goto say_false;
bee1dbe2 1006 }
a00b5bd3
NIS
1007
1008 if (ckWARN(WARN_IO)) {
1604cfb0
MS
1009 if ((IoTYPE(io) == IoTYPE_RDONLY) &&
1010 (fp == PerlIO_stdout() || fp == PerlIO_stderr())) {
1011 Perl_warner(aTHX_ packWARN(WARN_IO),
1012 "Filehandle STD%s reopened as %" HEKf
1013 " only for input",
1014 ((fp == PerlIO_stdout()) ? "OUT" : "ERR"),
1015 HEKfARG(GvENAME_HEK(gv)));
1016 }
1017 else if ((IoTYPE(io) == IoTYPE_WRONLY) && fp == PerlIO_stdin()) {
1018 Perl_warner(aTHX_ packWARN(WARN_IO),
1019 "Filehandle STDIN reopened as %" HEKf " only for output",
1020 HEKfARG(GvENAME_HEK(gv))
1021 );
1022 }
a00b5bd3
NIS
1023 }
1024
e99cca91 1025 fd = PerlIO_fileno(fp);
375ed12a
JH
1026 /* Do NOT do: "if (fd < 0) goto say_false;" here. If there is no
1027 * fd assume it isn't a socket - this covers PerlIO::scalar -
1028 * otherwise unless we "know" the type probe for socket-ness.
e99cca91
NIS
1029 */
1030 if (IoTYPE(io) && IoTYPE(io) != IoTYPE_PIPE && IoTYPE(io) != IoTYPE_STD && fd >= 0) {
1604cfb0
MS
1031 if (PerlLIO_fstat(fd,&statbuf) < 0) {
1032 /* If PerlIO claims to have fd we had better be able to fstat() it. */
1033 (void) PerlIO_close(fp);
1034 goto say_false;
1035 }
7114a2d2 1036#ifndef PERL_MICRO
1604cfb0
MS
1037 if (S_ISSOCK(statbuf.st_mode))
1038 IoTYPE(io) = IoTYPE_SOCKET; /* in case a socket was passed in to us */
99b89507 1039#ifdef HAS_SOCKET
1604cfb0
MS
1040 else if (
1041 !(statbuf.st_mode & S_IFMT)
1042 && IoTYPE(io) != IoTYPE_WRONLY /* Dups of STD* filehandles already have */
1043 && IoTYPE(io) != IoTYPE_RDONLY /* type so they aren't marked as sockets */
1044 ) { /* on OS's that return 0 on fstat()ed pipe */
1045 char tmpbuf[256];
1046 Sock_size_t buflen = sizeof tmpbuf;
1047 if (PerlSock_getsockname(fd, (struct sockaddr *)tmpbuf, &buflen) >= 0
1048 || errno != ENOTSOCK)
1049 IoTYPE(io) = IoTYPE_SOCKET; /* some OS's return 0 on fstat()ed socket */
1050 /* but some return 0 for streams too, sigh */
1051 }
e99cca91 1052#endif /* HAS_SOCKET */
7114a2d2 1053#endif /* !PERL_MICRO */
a687059c 1054 }
e99cca91
NIS
1055
1056 /* Eeek - FIXME !!!
1057 * If this is a standard handle we discard all the layer stuff
1058 * and just dup the fd into whatever was on the handle before !
1059 */
1060
6e21c824 1061 if (saveifp) { /* must use old fp? */
f5b9d040 1062 /* If fd is less that PL_maxsysfd i.e. STDIN..STDERR
24c23ab4 1063 then dup the new fileno down
f5b9d040 1064 */
1604cfb0
MS
1065 if (saveofp) {
1066 PerlIO_flush(saveofp); /* emulate PerlIO_close() */
1067 if (saveofp != saveifp) { /* was a socket? */
1068 PerlIO_close(saveofp);
1069 }
1070 }
1071 if (savefd != fd) {
1072 /* Still a small can-of-worms here if (say) PerlIO::scalar
1073 is assigned to (say) STDOUT - for now let dup2() fail
1074 and provide the error
1075 */
1076 if (fd < 0) {
375ed12a 1077 SETERRNO(EBADF,RMS_IFI);
1604cfb0 1078 goto say_false;
375ed12a 1079 } else if (PerlLIO_dup2(fd, savefd) < 0) {
1604cfb0
MS
1080 (void)PerlIO_close(fp);
1081 goto say_false;
1082 }
d082dcd6 1083#ifdef VMS
1604cfb0 1084 if (savefd != PerlIO_fileno(PerlIO_stdin())) {
d0e2cf63
AMS
1085 char newname[FILENAME_MAX+1];
1086 if (PerlIO_getname(fp, newname)) {
1087 if (fd == PerlIO_fileno(PerlIO_stdout()))
0db50132 1088 vmssetuserlnm("SYS$OUTPUT", newname);
d0e2cf63 1089 if (fd == PerlIO_fileno(PerlIO_stderr()))
0db50132 1090 vmssetuserlnm("SYS$ERROR", newname);
d0e2cf63 1091 }
1604cfb0 1092 }
d082dcd6 1093#endif
d0e2cf63
AMS
1094
1095#if !defined(WIN32)
1096 /* PL_fdpid isn't used on Windows, so avoid this useless work.
1097 * XXX Probably the same for a lot of other places. */
1098 {
1099 Pid_t pid;
1100 SV *sv;
1101
d0e2cf63 1102 sv = *av_fetch(PL_fdpid,fd,TRUE);
862a34c6 1103 SvUPGRADE(sv, SVt_IV);
d0e2cf63 1104 pid = SvIVX(sv);
45977657 1105 SvIV_set(sv, 0);
d0e2cf63 1106 sv = *av_fetch(PL_fdpid,savefd,TRUE);
862a34c6 1107 SvUPGRADE(sv, SVt_IV);
45977657 1108 SvIV_set(sv, pid);
d0e2cf63
AMS
1109 }
1110#endif
1111
1604cfb0 1112 if (was_fdopen) {
e212fc47
AMS
1113 /* need to close fp without closing underlying fd */
1114 int ofd = PerlIO_fileno(fp);
884fc2d3 1115 int dupfd = ofd >= 0 ? PerlLIO_dup_cloexec(ofd) : -1;
375ed12a
JH
1116 if (ofd < 0 || dupfd < 0) {
1117 if (dupfd >= 0)
1118 PerlLIO_close(dupfd);
1119 goto say_false;
1120 }
e212fc47 1121 PerlIO_close(fp);
884fc2d3
Z
1122 PerlLIO_dup2_cloexec(dupfd, ofd);
1123 setfd_inhexec_for_sysfd(ofd);
e212fc47 1124 PerlLIO_close(dupfd);
1604cfb0 1125 }
e212fc47 1126 else
1604cfb0
MS
1127 PerlIO_close(fp);
1128 }
1129 fp = saveifp;
1130 PerlIO_clearerr(fp);
1131 fd = PerlIO_fileno(fp);
6e21c824 1132 }
8990e307 1133 IoIFP(io) = fp;
b931b1d9 1134
684bef36 1135 IoFLAGS(io) &= ~IOf_NOLINE;
bf38876a 1136 if (writing) {
1604cfb0
MS
1137 if (IoTYPE(io) == IoTYPE_SOCKET
1138 || (IoTYPE(io) == IoTYPE_WRONLY && fd >= 0 && S_ISCHR(statbuf.st_mode)) ) {
1139 char *s = mode;
1140 if (*s == IoTYPE_IMPLICIT || *s == IoTYPE_NUMERIC)
1141 s++;
1142 *s = 'w';
1143 if (!(IoOFP(io) = PerlIO_openn(aTHX_ type,s,fd,0,0,NULL,0,NULL))) {
1144 PerlIO_close(fp);
1145 goto say_false;
1146 }
1147 }
1148 else
1149 IoOFP(io) = fp;
bf38876a 1150 }
7e30e49f
DIM
1151 if (statbufp)
1152 *statbufp = statbuf;
1153
a687059c 1154 return TRUE;
6e21c824 1155
7b52d656 1156 say_false:
8990e307
LW
1157 IoIFP(io) = saveifp;
1158 IoOFP(io) = saveofp;
1159 IoTYPE(io) = savetype;
6e21c824 1160 return FALSE;
a687059c
LW
1161}
1162
e0d4aead
TC
1163/* Open a temp file in the same directory as an original name.
1164*/
1165
1166static bool
1167S_openindirtemp(pTHX_ GV *gv, SV *orig_name, SV *temp_out_name) {
1168 int fd;
1169 PerlIO *fp;
1170 const char *p = SvPV_nolen(orig_name);
1171 const char *sep;
1172
1173 /* look for the last directory separator */
1174 sep = strrchr(p, '/');
1175
1176#ifdef DOSISH
1177 {
1178 const char *sep2;
1179 if ((sep2 = strrchr(sep ? sep : p, '\\')))
1180 sep = sep2;
1181 }
1182#endif
1183#ifdef VMS
1184 if (!sep) {
1185 const char *openp = strchr(p, '[');
1186 if (openp)
1187 sep = strchr(openp, ']');
1188 else {
1189 sep = strchr(p, ':');
1190 }
1191 }
1192#endif
1193 if (sep) {
1194 sv_setpvn(temp_out_name, p, sep - p + 1);
1195 sv_catpvs(temp_out_name, "XXXXXXXX");
1196 }
1197 else
1198 sv_setpvs(temp_out_name, "XXXXXXXX");
1199
026633c6
JH
1200 {
1201 int old_umask = umask(0177);
884fc2d3 1202 fd = Perl_my_mkstemp_cloexec(SvPVX(temp_out_name));
026633c6
JH
1203 umask(old_umask);
1204 }
e0d4aead
TC
1205
1206 if (fd < 0)
1207 return FALSE;
1208
1209 fp = PerlIO_fdopen(fd, "w+");
1210 if (!fp)
1211 return FALSE;
1212
1213 return do_openn(gv, "+>&", 3, 0, 0, 0, fp, NULL, 0);
1214}
1215
733612e0 1216#if defined(HAS_UNLINKAT) && defined(HAS_RENAMEAT) && defined(HAS_FCHMODAT) && \
c3fcee07
JK
1217 (defined(HAS_DIRFD) || defined(HAS_DIR_DD_FD)) && !defined(NO_USE_ATFUNCTIONS) && \
1218 defined(HAS_LINKAT)
733612e0
TC
1219# define ARGV_USE_ATFUNCTIONS
1220#endif
1221
1b4d0d79
TC
1222/* Win32 doesn't necessarily return useful information
1223 * in st_dev, st_ino.
1224 */
184f90dc
TC
1225#ifndef DOSISH
1226# define ARGV_USE_STAT_INO
1b4d0d79
TC
1227#endif
1228
e0d4aead
TC
1229#define ARGVMG_BACKUP_NAME 0
1230#define ARGVMG_TEMP_NAME 1
1231#define ARGVMG_ORIG_NAME 2
1232#define ARGVMG_ORIG_MODE 3
05df5c88 1233#define ARGVMG_ORIG_PID 4
bb082417 1234
bb082417
TC
1235/* we store the entire stat_t since the ino_t and dev_t values might
1236 not fit in an IV. I could have created a new structure and
1237 transferred them across, but this seemed too much effort for very
1238 little win.
184f90dc
TC
1239
1240 We store it even when the *at() functions are available, since
1241 while the C runtime might have definitions for these functions, the
1242 operating system or a specific filesystem might not implement them.
1243 eg. NetBSD 6 implements linkat() but only where the fds are AT_FDCWD.
bb082417 1244 */
184f90dc
TC
1245#ifdef ARGV_USE_STAT_INO
1246# define ARGVMG_ORIG_CWD_STAT 5
1247#endif
1248
1249#ifdef ARGV_USE_ATFUNCTIONS
1250# define ARGVMG_ORIG_DIRP 6
1251#endif
1252
1253#ifdef ENOTSUP
1254#define NotSupported(e) ((e) == ENOSYS || (e) == ENOTSUP)
1255#else
1256#define NotSupported(e) ((e) == ENOSYS)
bb082417 1257#endif
e0d4aead
TC
1258
1259static int
d0405818 1260S_argvout_free(pTHX_ SV *io, MAGIC *mg) {
d0405818 1261 PERL_UNUSED_ARG(io);
e0d4aead
TC
1262
1263 /* note this can be entered once the file has been
1264 successfully deleted too */
d0405818
TC
1265 assert(IoTYPE(io) != IoTYPE_PIPE);
1266
8ab93df0
TC
1267 /* mg_obj can be NULL if a thread is created with the handle open, in which
1268 case we leave any clean up to the parent thread */
3d5e9c11 1269 if (mg->mg_obj) {
733612e0
TC
1270#ifdef ARGV_USE_ATFUNCTIONS
1271 SV **dir_psv;
1272 DIR *dir;
3d5e9c11
TC
1273
1274 dir_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_ORIG_DIRP, FALSE);
1275 assert(dir_psv && *dir_psv && SvIOK(*dir_psv));
1276 dir = INT2PTR(DIR *, SvIV(*dir_psv));
733612e0 1277#endif
3d5e9c11 1278 if (IoIFP(io)) {
85d2f7ca
TC
1279 if (PL_phase == PERL_PHASE_DESTRUCT && PL_statusvalue == 0) {
1280 (void)argvout_final(mg, (IO*)io, FALSE);
1281 }
1282 else {
1283 SV **pid_psv;
1284 PerlIO *iop = IoIFP(io);
05df5c88 1285
85d2f7ca 1286 assert(SvTYPE(mg->mg_obj) == SVt_PVAV);
05df5c88 1287
85d2f7ca 1288 pid_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_ORIG_PID, FALSE);
05df5c88 1289
85d2f7ca 1290 assert(pid_psv && *pid_psv);
05df5c88 1291
85d2f7ca
TC
1292 if (SvIV(*pid_psv) == (IV)PerlProc_getpid()) {
1293 /* if we get here the file hasn't been closed explicitly by the
1294 user and hadn't been closed implicitly by nextargv(), so
1295 abandon the edit */
1296 SV **temp_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_TEMP_NAME, FALSE);
1297 const char *temp_pv = SvPVX(*temp_psv);
184f90dc 1298
85d2f7ca
TC
1299 assert(temp_psv && *temp_psv && SvPOK(*temp_psv));
1300 (void)PerlIO_close(iop);
1301 IoIFP(io) = IoOFP(io) = NULL;
733612e0 1302#ifdef ARGV_USE_ATFUNCTIONS
85d2f7ca
TC
1303 if (dir) {
1304 if (unlinkat(my_dirfd(dir), temp_pv, 0) < 0 &&
1305 NotSupported(errno))
1306 (void)UNLINK(temp_pv);
1307 }
733612e0 1308#else
85d2f7ca 1309 (void)UNLINK(temp_pv);
733612e0 1310#endif
85d2f7ca 1311 }
3d5e9c11 1312 }
05df5c88 1313 }
3d5e9c11
TC
1314#ifdef ARGV_USE_ATFUNCTIONS
1315 if (dir)
1316 closedir(dir);
1317#endif
e0d4aead
TC
1318 }
1319
1320 return 0;
1321}
1322
8ab93df0
TC
1323static int
1324S_argvout_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *param) {
1325 PERL_UNUSED_ARG(param);
1326
1327 /* ideally we could just remove the magic from the SV but we don't get the SV here */
1328 SvREFCNT_dec(mg->mg_obj);
1329 mg->mg_obj = NULL;
1330
1331 return 0;
1332}
1333
e0d4aead
TC
1334/* Magic of this type has an AV containing the following:
1335 0: name of the backup file (if any)
1336 1: name of the temp output file
1337 2: name of the original file
1338 3: file mode of the original file
05df5c88
TC
1339 4: pid of the process we opened at, to prevent doing the renaming
1340 etc in both the child and the parent after a fork
733612e0 1341
184f90dc
TC
1342If we have useful inode/device ids in stat_t we also keep:
1343 5: a stat of the original current working directory
1344
733612e0 1345If we have unlinkat(), renameat(), fchmodat(), dirfd() we also keep:
184f90dc 1346 6: the DIR * for the current directory when we open the file, stored as an IV
e0d4aead
TC
1347 */
1348
1349static const MGVTBL argvout_vtbl =
1350 {
1351 NULL, /* svt_get */
1352 NULL, /* svt_set */
1353 NULL, /* svt_len */
1354 NULL, /* svt_clear */
1355 S_argvout_free, /* svt_free */
1356 NULL, /* svt_copy */
8ab93df0
TC
1357 S_argvout_dup, /* svt_dup */
1358 NULL /* svt_local */
e0d4aead
TC
1359 };
1360
760ac839 1361PerlIO *
157fb5a1 1362Perl_nextargv(pTHX_ GV *gv, bool nomagicopen)
a687059c 1363{
2d03de9c 1364 IO * const io = GvIOp(gv);
502aca56 1365 SV *const old_out_name = PL_inplace ? newSVsv(GvSV(gv)) : NULL;
fe14fcc3 1366
7918f24d
NC
1367 PERL_ARGS_ASSERT_NEXTARGV;
1368
502aca56
TC
1369 if (old_out_name)
1370 SAVEFREESV(old_out_name);
1371
3280af22 1372 if (!PL_argvoutgv)
1604cfb0 1373 PL_argvoutgv = gv_fetchpvs("ARGVOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO);
5513c2cf 1374 if (io && (IoFLAGS(io) & (IOf_ARGV|IOf_START)) == (IOf_ARGV|IOf_START)) {
1604cfb0
MS
1375 IoFLAGS(io) &= ~IOf_START;
1376 if (PL_inplace) {
1377 assert(PL_defoutgv);
1378 Perl_av_create_and_push(aTHX_ &PL_argvout_stack,
1379 SvREFCNT_inc_simple_NN(PL_defoutgv));
1380 }
18708f5a 1381 }
e0d4aead
TC
1382
1383 {
1384 IO * const io = GvIOp(PL_argvoutgv);
1385 if (io && IoIFP(io) && old_out_name) {
1386 do_close(PL_argvoutgv, FALSE);
1387 }
fe14fcc3 1388 }
e0d4aead 1389
c797f2d8 1390 PL_lastfd = -1;
3280af22 1391 PL_filemode = 0;
5c501b37 1392 if (!GvAV(gv))
1604cfb0 1393 return NULL;
698ac381 1394 while (av_count(GvAV(gv)) > 0) {
1604cfb0 1395 STRLEN oldlen;
1fa0529f 1396 SV *const sv = av_shift(GvAV(gv));
1604cfb0
MS
1397 SAVEFREESV(sv);
1398 SvTAINTED_off(GvSVn(gv)); /* previous tainting irrelevant */
1399 sv_setsv(GvSVn(gv),sv);
1400 SvSETMAGIC(GvSV(gv));
1401 PL_oldname = SvPVx(GvSV(gv), oldlen);
d8015975 1402 if (LIKELY(!PL_inplace)) {
157fb5a1
RGS
1403 if (nomagicopen
1404 ? do_open6(gv, "<", 1, NULL, &GvSV(gv), 1)
1405 : do_open6(gv, PL_oldname, oldlen, NULL, NULL, 0)
1406 ) {
d8015975
NC
1407 return IoIFP(GvIOp(gv));
1408 }
1409 }
1410 else {
7e30e49f 1411 Stat_t statbuf;
d8015975
NC
1412 /* This very long block ends with return IoIFP(GvIOp(gv));
1413 Both this block and the block above fall through on open
1414 failure to the warning code, and then the while loop above tries
1415 the next entry. */
7e30e49f 1416 if (do_open_raw(gv, PL_oldname, oldlen, O_RDONLY, 0, &statbuf)) {
1fa0529f
NC
1417#ifndef FLEXFILENAMES
1418 int filedev;
1419 int fileino;
1420#endif
733612e0
TC
1421#ifdef ARGV_USE_ATFUNCTIONS
1422 DIR *curdir;
1423#endif
1fa0529f
NC
1424 Uid_t fileuid;
1425 Gid_t filegid;
e0d4aead
TC
1426 AV *magic_av = NULL;
1427 SV *temp_name_sv = NULL;
8ab93df0 1428 MAGIC *mg;
1fa0529f 1429
1604cfb0
MS
1430 TAINT_PROPER("inplace open");
1431 if (oldlen == 1 && *PL_oldname == '-') {
1432 setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL,
1433 SVt_PVIO));
1434 return IoIFP(GvIOp(gv));
1435 }
99b89507 1436#ifndef FLEXFILENAMES
1604cfb0
MS
1437 filedev = statbuf.st_dev;
1438 fileino = statbuf.st_ino;
1439#endif
1440 PL_filemode = statbuf.st_mode;
1441 fileuid = statbuf.st_uid;
1442 filegid = statbuf.st_gid;
1443 if (!S_ISREG(PL_filemode)) {
1444 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
1445 "Can't do inplace edit: %s is not a regular file",
1446 PL_oldname );
1447 do_close(gv,FALSE);
1448 continue;
1449 }
e0d4aead 1450 magic_av = newAV();
1604cfb0
MS
1451 if (*PL_inplace && strNE(PL_inplace, "*")) {
1452 const char *star = strchr(PL_inplace, '*');
1453 if (star) {
1454 const char *begin = PL_inplace;
8062ff11 1455 SvPVCLEAR(sv);
1604cfb0
MS
1456 do {
1457 sv_catpvn(sv, begin, star - begin);
1458 sv_catpvn(sv, PL_oldname, oldlen);
1459 begin = ++star;
1460 } while ((star = strchr(begin, '*')));
1461 if (*begin)
1462 sv_catpv(sv,begin);
1463 }
1464 else {
1465 sv_catpv(sv,PL_inplace);
1466 }
c623bd54 1467#ifndef FLEXFILENAMES
1604cfb0
MS
1468 if ((PerlLIO_stat(SvPVX_const(sv),&statbuf) >= 0
1469 && statbuf.st_dev == filedev
1470 && statbuf.st_ino == fileino)
f248d071 1471 )
1604cfb0
MS
1472 {
1473 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
1474 "Can't do inplace edit: %"
147e3846 1475 SVf " would not be unique",
1604cfb0 1476 SVfARG(sv));
e0d4aead 1477 goto cleanup_argv;
1604cfb0 1478 }
ff8e2863 1479#endif
e0d4aead 1480 av_store(magic_av, ARGVMG_BACKUP_NAME, newSVsv(sv));
1604cfb0 1481 }
a687059c 1482
1604cfb0
MS
1483 sv_setpvn(sv,PL_oldname,oldlen);
1484 SETERRNO(0,0); /* in case sprintf set errno */
e0d4aead
TC
1485 temp_name_sv = newSV(0);
1486 if (!S_openindirtemp(aTHX_ PL_argvoutgv, GvSV(gv), temp_name_sv)) {
1487 SvREFCNT_dec(temp_name_sv);
1488 /* diag_listed_as: Can't do inplace edit on %s: %s */
1489 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE), "Can't do inplace edit on %s: Cannot make temp name: %s",
1604cfb0 1490 PL_oldname, Strerror(errno) );
e0d4aead
TC
1491#ifndef FLEXFILENAMES
1492 cleanup_argv:
1493#endif
1494 do_close(gv,FALSE);
1495 SvREFCNT_dec(magic_av);
1496 continue;
1604cfb0 1497 }
e0d4aead
TC
1498 av_store(magic_av, ARGVMG_TEMP_NAME, temp_name_sv);
1499 av_store(magic_av, ARGVMG_ORIG_NAME, newSVsv(sv));
1500 av_store(magic_av, ARGVMG_ORIG_MODE, newSVuv(PL_filemode));
05df5c88 1501 av_store(magic_av, ARGVMG_ORIG_PID, newSViv((IV)PerlProc_getpid()));
1b4d0d79 1502#if defined(ARGV_USE_ATFUNCTIONS)
733612e0
TC
1503 curdir = opendir(".");
1504 av_store(magic_av, ARGVMG_ORIG_DIRP, newSViv(PTR2IV(curdir)));
1b4d0d79 1505#elif defined(ARGV_USE_STAT_INO)
bb082417
TC
1506 if (PerlLIO_stat(".", &statbuf) >= 0) {
1507 av_store(magic_av, ARGVMG_ORIG_CWD_STAT,
1508 newSVpvn((char *)&statbuf, sizeof(statbuf)));
1509 }
733612e0 1510#endif
1604cfb0 1511 setdefout(PL_argvoutgv);
dddabd86 1512 sv_setsv(GvSVn(PL_argvoutgv), temp_name_sv);
8ab93df0
TC
1513 mg = sv_magicext((SV*)GvIOp(PL_argvoutgv), (SV*)magic_av, PERL_MAGIC_uvar, &argvout_vtbl, NULL, 0);
1514 mg->mg_flags |= MGf_DUP;
e0d4aead 1515 SvREFCNT_dec(magic_av);
1604cfb0 1516 PL_lastfd = PerlIO_fileno(IoIFP(GvIOp(PL_argvoutgv)));
375ed12a 1517 if (PL_lastfd >= 0) {
45a23732 1518 (void)PerlLIO_fstat(PL_lastfd,&statbuf);
fe14fcc3 1519#ifdef HAS_FCHMOD
375ed12a 1520 (void)fchmod(PL_lastfd,PL_filemode);
a687059c 1521#else
375ed12a 1522 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
a687059c 1523#endif
45a23732 1524 if (fileuid != statbuf.st_uid || filegid != statbuf.st_gid) {
b469f1e0 1525 /* XXX silently ignore failures */
fe14fcc3 1526#ifdef HAS_FCHOWN
b469f1e0 1527 PERL_UNUSED_RESULT(fchown(PL_lastfd,fileuid,filegid));
4009c3ff 1528#elif defined(HAS_CHOWN)
b469f1e0 1529 PERL_UNUSED_RESULT(PerlLIO_chown(PL_oldname,fileuid,filegid));
a687059c 1530#endif
375ed12a 1531 }
1604cfb0 1532 }
d8015975 1533 return IoIFP(GvIOp(gv));
1604cfb0
MS
1534 }
1535 } /* successful do_open_raw(), PL_inplace non-NULL */
d8015975
NC
1536
1537 if (ckWARN_d(WARN_INPLACE)) {
1538 const int eno = errno;
7e30e49f 1539 Stat_t statbuf;
45a23732
DD
1540 if (PerlLIO_stat(PL_oldname, &statbuf) >= 0
1541 && !S_ISREG(statbuf.st_mode)) {
d8015975
NC
1542 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
1543 "Can't do inplace edit: %s is not a regular file",
1544 PL_oldname);
1545 }
1546 else {
1547 Perl_warner(aTHX_ packWARN(WARN_INPLACE), "Can't open %s: %s",
1548 PL_oldname, Strerror(eno));
1549 }
1604cfb0 1550 }
a687059c 1551 }
18708f5a 1552 if (io && (IoFLAGS(io) & IOf_ARGV))
1604cfb0 1553 IoFLAGS(io) |= IOf_START;
3280af22 1554 if (PL_inplace) {
1604cfb0
MS
1555 if (io && (IoFLAGS(io) & IOf_ARGV)
1556 && PL_argvout_stack && AvFILLp(PL_argvout_stack) >= 0)
1557 {
1558 GV * const oldout = MUTABLE_GV(av_pop(PL_argvout_stack));
1559 setdefout(oldout);
1560 SvREFCNT_dec_NN(oldout);
1561 return NULL;
1562 }
1563 setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO));
a687059c 1564 }
4608196e 1565 return NULL;
a687059c
LW
1566}
1567
84dbe61c 1568#ifdef ARGV_USE_ATFUNCTIONS
a3c63a94 1569# if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
84dbe61c
TC
1570
1571/* FreeBSD 11 renameat() mis-behaves strangely with absolute paths in cases where the
1572 * equivalent rename() succeeds
1573 */
1574static int
1575S_my_renameat(int olddfd, const char *oldpath, int newdfd, const char *newpath) {
1576 /* this is intended only for use in Perl_do_close() */
1577 assert(olddfd == newdfd);
1578 assert(PERL_FILE_IS_ABSOLUTE(oldpath) == PERL_FILE_IS_ABSOLUTE(newpath));
1579 if (PERL_FILE_IS_ABSOLUTE(oldpath)) {
1580 return PerlLIO_rename(oldpath, newpath);
1581 }
1582 else {
1583 return renameat(olddfd, oldpath, newdfd, newpath);
1584 }
1585}
1586
1587# else
1588# define S_my_renameat(dh1, pv1, dh2, pv2) renameat((dh1), (pv1), (dh2), (pv2))
a3c63a94 1589# endif /* if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) */
84dbe61c
TC
1590#endif
1591
184f90dc 1592static bool
848643a9 1593S_dir_unchanged(pTHX_ const char *orig_pv, MAGIC *mg) {
184f90dc
TC
1594 Stat_t statbuf;
1595
1596#ifdef ARGV_USE_STAT_INO
1597 SV **stat_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_ORIG_CWD_STAT, FALSE);
1598 Stat_t *orig_cwd_stat = stat_psv && *stat_psv ? (Stat_t *)SvPVX(*stat_psv) : NULL;
1599
1600 /* if the path is absolute the possible moving of cwd (which the file
1601 might be in) isn't our problem.
1602 This code tries to be reasonably balanced about detecting a changed
1603 CWD, if we have the information needed to check that curdir has changed, we
1604 check it
1605 */
1606 if (!PERL_FILE_IS_ABSOLUTE(orig_pv)
1607 && orig_cwd_stat
1608 && PerlLIO_stat(".", &statbuf) >= 0
1609 && ( statbuf.st_dev != orig_cwd_stat->st_dev
1610 || statbuf.st_ino != orig_cwd_stat->st_ino)) {
1611 Perl_croak(aTHX_ "Cannot complete in-place edit of %s: %s",
1612 orig_pv, "Current directory has changed");
1613 }
1614#else
1615 SV **temp_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_TEMP_NAME, FALSE);
1616
1617 /* Some platforms don't have useful st_ino etc, so just
1618 check we can see the work file.
1619 */
1620 if (!PERL_FILE_IS_ABSOLUTE(orig_pv)
1621 && PerlLIO_stat(SvPVX(*temp_psv), &statbuf) < 0) {
3c67ad9b 1622 Perl_croak(aTHX_ "Cannot complete in-place edit of %s: %s",
a06de4dc 1623 orig_pv,
184f90dc
TC
1624 "Work file is missing - did you change directory?");
1625 }
1626#endif
1627
1628 return TRUE;
1629}
1630
848643a9
TC
1631#define dir_unchanged(orig_psv, mg) \
1632 S_dir_unchanged(aTHX_ (orig_psv), (mg))
184f90dc 1633
404395d2
TC
1634STATIC bool
1635S_argvout_final(pTHX_ MAGIC *mg, IO *io, bool not_implicit) {
1193dd27 1636 bool retval;
a687059c 1637
404395d2
TC
1638 /* ensure args are checked before we start using them */
1639 PERL_ARGS_ASSERT_ARGVOUT_FINAL;
1640
1641 {
e0d4aead
TC
1642 /* handle to an in-place edit work file */
1643 SV **back_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_BACKUP_NAME, FALSE);
1644 SV **temp_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_TEMP_NAME, FALSE);
1645 /* PL_oldname may have been modified by a nested ARGV use at this point */
1646 SV **orig_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_ORIG_NAME, FALSE);
1647 SV **mode_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_ORIG_MODE, FALSE);
05df5c88 1648 SV **pid_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_ORIG_PID, FALSE);
1b4d0d79 1649#if defined(ARGV_USE_ATFUNCTIONS)
05df5c88 1650 SV **dir_psv = av_fetch((AV*)mg->mg_obj, ARGVMG_ORIG_DIRP, FALSE);
733612e0
TC
1651 DIR *dir;
1652 int dfd;
1b4d0d79 1653#endif
e0d4aead
TC
1654 UV mode;
1655 int fd;
1656
1657 const char *orig_pv;
1658
1659 assert(temp_psv && *temp_psv);
1660 assert(orig_psv && *orig_psv);
1661 assert(mode_psv && *mode_psv);
05df5c88 1662 assert(pid_psv && *pid_psv);
733612e0
TC
1663#ifdef ARGV_USE_ATFUNCTIONS
1664 assert(dir_psv && *dir_psv);
1665 dir = INT2PTR(DIR *, SvIVX(*dir_psv));
1666 dfd = my_dirfd(dir);
1667#endif
e0d4aead
TC
1668
1669 orig_pv = SvPVX(*orig_psv);
e0d4aead
TC
1670 mode = SvUV(*mode_psv);
1671
1672 if ((mode & (S_ISUID|S_ISGID)) != 0
1673 && (fd = PerlIO_fileno(IoIFP(io))) >= 0) {
1674 (void)PerlIO_flush(IoIFP(io));
1675#ifdef HAS_FCHMOD
1676 (void)fchmod(fd, mode);
1677#else
1678 (void)PerlLIO_chmod(orig_pv, mode);
1679#endif
1680 }
1681
1682 retval = io_close(io, NULL, not_implicit, FALSE);
1683
05df5c88
TC
1684 if (SvIV(*pid_psv) != (IV)PerlProc_getpid()) {
1685 /* this is a child process, don't duplicate our rename() etc
1686 processing below */
1687 goto freext;
1688 }
1689
e0d4aead
TC
1690 if (retval) {
1691#if defined(DOSISH) || defined(__CYGWIN__)
1692 if (PL_argvgv && GvIOp(PL_argvgv)
1693 && IoIFP(GvIOp(PL_argvgv))
1694 && (IoFLAGS(GvIOp(PL_argvgv)) & (IOf_ARGV|IOf_START)) == IOf_ARGV) {
1695 do_close(PL_argvgv, FALSE);
1696 }
1697#endif
184f90dc 1698#ifndef ARGV_USE_ATFUNCTIONS
848643a9 1699 if (!dir_unchanged(orig_pv, mg))
184f90dc
TC
1700 goto abort_inplace;
1701#endif
e0d4aead
TC
1702 if (back_psv && *back_psv) {
1703#if defined(HAS_LINK) && !defined(DOSISH) && !defined(__CYGWIN__) && defined(HAS_RENAME)
733612e0
TC
1704 if (
1705# ifdef ARGV_USE_ATFUNCTIONS
184f90dc
TC
1706 linkat(dfd, orig_pv, dfd, SvPVX(*back_psv), 0) < 0 &&
1707 !(UNLIKELY(NotSupported(errno)) &&
848643a9 1708 dir_unchanged(orig_pv, mg) &&
184f90dc 1709 link(orig_pv, SvPVX(*back_psv)) == 0)
733612e0
TC
1710# else
1711 link(orig_pv, SvPVX(*back_psv)) < 0
1712# endif
1713 )
e0d4aead
TC
1714#endif
1715 {
1716#ifdef HAS_RENAME
733612e0
TC
1717 if (
1718# ifdef ARGV_USE_ATFUNCTIONS
184f90dc
TC
1719 S_my_renameat(dfd, orig_pv, dfd, SvPVX(*back_psv)) < 0 &&
1720 !(UNLIKELY(NotSupported(errno)) &&
848643a9 1721 dir_unchanged(orig_pv, mg) &&
184f90dc 1722 PerlLIO_rename(orig_pv, SvPVX(*back_psv)) == 0)
733612e0
TC
1723# else
1724 PerlLIO_rename(orig_pv, SvPVX(*back_psv)) < 0
1725# endif
1726 ) {
e0d4aead 1727 if (!not_implicit) {
83419aa9 1728# ifdef ARGV_USE_ATFUNCTIONS
184f90dc
TC
1729 if (unlinkat(dfd, SvPVX_const(*temp_psv), 0) < 0 &&
1730 UNLIKELY(NotSupported(errno)) &&
848643a9 1731 dir_unchanged(orig_pv, mg))
184f90dc 1732 (void)UNLINK(SvPVX_const(*temp_psv));
83419aa9
TC
1733# else
1734 UNLINK(SvPVX(*temp_psv));
1735# endif
e0d4aead
TC
1736 Perl_croak(aTHX_ "Can't rename %s to %s: %s, skipping file",
1737 SvPVX(*orig_psv), SvPVX(*back_psv), Strerror(errno));
1738 }
1739 /* should we warn here? */
1740 goto abort_inplace;
1741 }
1742#else
1743 (void)UNLINK(SvPVX(*back_psv));
1744 if (link(orig_pv, SvPVX(*back_psv))) {
1745 if (!not_implicit) {
1746 Perl_croak(aTHX_ "Can't rename %s to %s: %s, skipping file",
1747 SvPVX(*orig_psv), SvPVX(*back_psv), Strerror(errno));
1748 }
1749 goto abort_inplace;
1750 }
1751 /* we need to use link() to get the temp into place too, and linK()
1752 fails if the new link name exists */
1753 (void)UNLINK(orig_pv);
1754#endif
1755 }
1756 }
1757#if defined(DOSISH) || defined(__CYGWIN__) || !defined(HAS_RENAME)
1758 else {
1759 UNLINK(orig_pv);
1760 }
1761#endif
1762 if (
4009c3ff
AC
1763#if !defined(HAS_RENAME)
1764 link(SvPVX(*temp_psv), orig_pv) < 0
1765#elif defined(ARGV_USE_ATFUNCTIONS)
1604cfb0 1766 S_my_renameat(dfd, SvPVX(*temp_psv), dfd, orig_pv) < 0 &&
184f90dc 1767 !(UNLIKELY(NotSupported(errno)) &&
848643a9 1768 dir_unchanged(orig_pv, mg) &&
184f90dc 1769 PerlLIO_rename(SvPVX(*temp_psv), orig_pv) == 0)
e0d4aead 1770#else
4009c3ff 1771 PerlLIO_rename(SvPVX(*temp_psv), orig_pv) < 0
e0d4aead
TC
1772#endif
1773 ) {
1774 if (!not_implicit) {
dddabd86 1775#ifdef ARGV_USE_ATFUNCTIONS
184f90dc
TC
1776 if (unlinkat(dfd, SvPVX_const(*temp_psv), 0) < 0 &&
1777 NotSupported(errno))
1778 UNLINK(SvPVX(*temp_psv));
dddabd86
TC
1779#else
1780 UNLINK(SvPVX(*temp_psv));
1781#endif
3c67ad9b
TC
1782 /* diag_listed_as: Cannot complete in-place edit of %s: %s */
1783 Perl_croak(aTHX_ "Cannot complete in-place edit of %s: failed to rename work file '%s' to '%s': %s",
1784 orig_pv, SvPVX(*temp_psv), orig_pv, Strerror(errno));
e0d4aead
TC
1785 }
1786 abort_inplace:
1787 UNLINK(SvPVX_const(*temp_psv));
1788 retval = FALSE;
1789 }
1790#ifndef HAS_RENAME
1791 UNLINK(SvPVX(*temp_psv));
1792#endif
1793 }
1794 else {
733612e0 1795#ifdef ARGV_USE_ATFUNCTIONS
184f90dc
TC
1796 if (unlinkat(dfd, SvPVX_const(*temp_psv), 0) &&
1797 NotSupported(errno))
1798 UNLINK(SvPVX_const(*temp_psv));
1799
733612e0 1800#else
e0d4aead 1801 UNLINK(SvPVX_const(*temp_psv));
733612e0 1802#endif
e0d4aead
TC
1803 if (!not_implicit) {
1804 Perl_croak(aTHX_ "Failed to close in-place work file %s: %s",
1805 SvPVX(*temp_psv), Strerror(errno));
1806 }
1807 }
404395d2
TC
1808 freext:
1809 ;
1810 }
1811 return retval;
1812}
1813
9b4f0c1c 1814/* explicit renamed to avoid C++ conflict -- kja */
404395d2
TC
1815bool
1816Perl_do_close(pTHX_ GV *gv, bool not_implicit)
1817{
1818 bool retval;
1819 IO *io;
1820 MAGIC *mg;
1821
1822 if (!gv)
1604cfb0 1823 gv = PL_argvgv;
404395d2 1824 if (!gv || !isGV_with_GP(gv)) {
1604cfb0
MS
1825 if (not_implicit)
1826 SETERRNO(EBADF,SS_IVCHAN);
1827 return FALSE;
404395d2
TC
1828 }
1829 io = GvIO(gv);
1830 if (!io) { /* never opened */
1604cfb0
MS
1831 if (not_implicit) {
1832 report_evil_fh(gv);
1833 SETERRNO(EBADF,SS_IVCHAN);
1834 }
1835 return FALSE;
404395d2
TC
1836 }
1837 if ((mg = mg_findext((SV*)io, PERL_MAGIC_uvar, &argvout_vtbl))
1838 && mg->mg_obj) {
1839 retval = argvout_final(mg, io, not_implicit);
e0d4aead
TC
1840 mg_freeext((SV*)io, PERL_MAGIC_uvar, &argvout_vtbl);
1841 }
1842 else {
1843 retval = io_close(io, NULL, not_implicit, FALSE);
1844 }
517844ec 1845 if (not_implicit) {
1604cfb0
MS
1846 IoLINES(io) = 0;
1847 IoPAGE(io) = 0;
1848 IoLINES_LEFT(io) = IoPAGE_LEN(io);
1193dd27 1849 }
50952442 1850 IoTYPE(io) = IoTYPE_CLOSED;
1193dd27
IZ
1851 return retval;
1852}
1853
1854bool
96d7c888 1855Perl_io_close(pTHX_ IO *io, GV *gv, bool not_implicit, bool warn_on_fail)
1193dd27
IZ
1856{
1857 bool retval = FALSE;
1193dd27 1858
7918f24d
NC
1859 PERL_ARGS_ASSERT_IO_CLOSE;
1860
8990e307 1861 if (IoIFP(io)) {
1604cfb0 1862 if (IoTYPE(io) == IoTYPE_PIPE) {
35608a16
TC
1863 PerlIO *fh = IoIFP(io);
1864 int status;
1865
1866 /* my_pclose() can propagate signals which might bypass any code
1867 after the call here if the signal handler throws an exception.
1868 This would leave the handle in the IO object and try to close it again
1869 when the SV is destroyed on unwind or global destruction.
1870 So NULL it early.
1871 */
1872 IoOFP(io) = IoIFP(io) = NULL;
1604cfb0
MS
1873 status = PerlProc_pclose(fh);
1874 if (not_implicit) {
1875 STATUS_NATIVE_CHILD_SET(status);
1876 retval = (STATUS_UNIX == 0);
1877 }
1878 else {
1879 retval = (status != -1);
1880 }
1881 }
1882 else if (IoTYPE(io) == IoTYPE_STD)
1883 retval = TRUE;
1884 else {
1885 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { /* a socket */
1886 const bool prev_err = PerlIO_error(IoOFP(io));
f4725fad 1887#ifdef USE_PERLIO
1604cfb0
MS
1888 if (prev_err)
1889 PerlIO_restore_errno(IoOFP(io));
1890#endif
1891 retval = (PerlIO_close(IoOFP(io)) != EOF && !prev_err);
1892 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
1893 }
1894 else {
1895 const bool prev_err = PerlIO_error(IoIFP(io));
f4725fad 1896#ifdef USE_PERLIO
1604cfb0
MS
1897 if (prev_err)
1898 PerlIO_restore_errno(IoIFP(io));
1899#endif
1900 retval = (PerlIO_close(IoIFP(io)) != EOF && !prev_err);
1901 }
1902 }
1903 IoOFP(io) = IoIFP(io) = NULL;
1904
1905 if (warn_on_fail && !retval) {
1906 if (gv)
1907 Perl_ck_warner_d(aTHX_ packWARN(WARN_IO),
1908 "Warning: unable to close filehandle %"
1909 HEKf " properly: %" SVf,
1910 HEKfARG(GvNAME_HEK(gv)),
ac892e4a 1911 SVfARG(get_sv("!",GV_ADD)));
1604cfb0
MS
1912 else
1913 Perl_ck_warner_d(aTHX_ packWARN(WARN_IO),
1914 "Warning: unable to close filehandle "
1915 "properly: %" SVf,
1916 SVfARG(get_sv("!",GV_ADD)));
1917 }
79072805 1918 }
f2b5be74 1919 else if (not_implicit) {
1604cfb0 1920 SETERRNO(EBADF,SS_IVCHAN);
20408e3c 1921 }
1193dd27 1922
a687059c
LW
1923 return retval;
1924}
1925
1926bool
864dbfa3 1927Perl_do_eof(pTHX_ GV *gv)
a687059c 1928{
eb578fdb 1929 IO * const io = GvIO(gv);
a687059c 1930
7918f24d
NC
1931 PERL_ARGS_ASSERT_DO_EOF;
1932
79072805 1933 if (!io)
1604cfb0 1934 return TRUE;
7716c5c5 1935 else if (IoTYPE(io) == IoTYPE_WRONLY)
1604cfb0 1936 report_wrongway_fh(gv, '>');
a687059c 1937
8990e307 1938 while (IoIFP(io)) {
760ac839 1939 if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */
1604cfb0
MS
1940 if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */
1941 return FALSE; /* this is the most usual case */
1942 }
1943
1944 {
1945 /* getc and ungetc can stomp on errno */
1946 dSAVE_ERRNO;
1947 const int ch = PerlIO_getc(IoIFP(io));
1948 if (ch != EOF) {
1949 (void)PerlIO_ungetc(IoIFP(io),ch);
1950 RESTORE_ERRNO;
1951 return FALSE;
1952 }
1953 RESTORE_ERRNO;
1954 }
fab3f3a7 1955
760ac839 1956 if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
1604cfb0
MS
1957 if (PerlIO_get_cnt(IoIFP(io)) < -1)
1958 PerlIO_set_cnt(IoIFP(io),-1);
1959 }
1960 if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
1961 if (gv != PL_argvgv || !nextargv(gv, FALSE)) /* get another fp handy */
1962 return TRUE;
1963 }
1964 else
1965 return TRUE; /* normal fp, definitely end of file */
a687059c
LW
1966 }
1967 return TRUE;
1968}
1969
5ff3f7a4 1970Off_t
864dbfa3 1971Perl_do_tell(pTHX_ GV *gv)
a687059c 1972{
9c9f25b8 1973 IO *const io = GvIO(gv);
eb578fdb 1974 PerlIO *fp;
a687059c 1975
7918f24d
NC
1976 PERL_ARGS_ASSERT_DO_TELL;
1977
9c9f25b8 1978 if (io && (fp = IoIFP(io))) {
1604cfb0 1979 return PerlIO_tell(fp);
96e4d5b1 1980 }
51087808 1981 report_evil_fh(gv);
93189314 1982 SETERRNO(EBADF,RMS_IFI);
5ff3f7a4 1983 return (Off_t)-1;
a687059c
LW
1984}
1985
1986bool
864dbfa3 1987Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence)
a687059c 1988{
9c9f25b8 1989 IO *const io = GvIO(gv);
eb578fdb 1990 PerlIO *fp;
a687059c 1991
9c9f25b8 1992 if (io && (fp = IoIFP(io))) {
1604cfb0 1993 return PerlIO_seek(fp, pos, whence) >= 0;
137443ea 1994 }
51087808 1995 report_evil_fh(gv);
93189314 1996 SETERRNO(EBADF,RMS_IFI);
a687059c
LW
1997 return FALSE;
1998}
1999
97cc44eb 2000Off_t
864dbfa3 2001Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence)
8903cb82 2002{
9c9f25b8 2003 IO *const io = GvIO(gv);
eb578fdb 2004 PerlIO *fp;
8903cb82 2005
7918f24d
NC
2006 PERL_ARGS_ASSERT_DO_SYSSEEK;
2007
375ed12a
JH
2008 if (io && (fp = IoIFP(io))) {
2009 int fd = PerlIO_fileno(fp);
07bd88da
JH
2010 if (fd < 0 || (whence == SEEK_SET && pos < 0)) {
2011 SETERRNO(EINVAL,LIB_INVARG);
2012 return -1;
2013 } else {
375ed12a
JH
2014 return PerlLIO_lseek(fd, pos, whence);
2015 }
2016 }
51087808 2017 report_evil_fh(gv);
93189314 2018 SETERRNO(EBADF,RMS_IFI);
d9b3e12d 2019 return (Off_t)-1;
8903cb82 2020}
2021
6ff81951 2022int
a79b25b7 2023Perl_mode_from_discipline(pTHX_ const char *s, STRLEN len)
16fe6d59
GS
2024{
2025 int mode = O_BINARY;
81611534 2026 PERL_UNUSED_CONTEXT;
a79b25b7 2027 if (s) {
1604cfb0
MS
2028 while (*s) {
2029 if (*s == ':') {
2030 switch (s[1]) {
2031 case 'r':
2032 if (s[2] == 'a' && s[3] == 'w'
2033 && (!s[4] || s[4] == ':' || isSPACE(s[4])))
2034 {
2035 mode = O_BINARY;
2036 s += 4;
2037 len -= 4;
2038 break;
2039 }
2040 /* FALLTHROUGH */
2041 case 'c':
2042 if (s[2] == 'r' && s[3] == 'l' && s[4] == 'f'
2043 && (!s[5] || s[5] == ':' || isSPACE(s[5])))
2044 {
2045 mode = O_TEXT;
2046 s += 5;
2047 len -= 5;
2048 break;
2049 }
2050 /* FALLTHROUGH */
2051 default:
2052 goto fail_discipline;
2053 }
2054 }
2055 else if (isSPACE(*s)) {
2056 ++s;
2057 --len;
2058 }
2059 else {
2060 const char *end;
7b52d656 2061 fail_discipline:
1604cfb0
MS
2062 end = (char *) memchr(s+1, ':', len);
2063 if (!end)
2064 end = s+len;
60382766 2065#ifndef PERLIO_LAYERS
1604cfb0 2066 Perl_croak(aTHX_ "IO layers (like '%.*s') unavailable", end-s, s);
60382766 2067#else
1604cfb0
MS
2068 len -= end-s;
2069 s = end;
60382766 2070#endif
1604cfb0
MS
2071 }
2072 }
16fe6d59
GS
2073 }
2074 return mode;
2075}
2076
02cb4161
KW
2077/*
2078=for apidoc my_chsize
2079
2080The C library L<chsize(3)> if available, or a Perl implementation of it.
2081
2082=cut
2083*/
2084
58e24eff 2085#if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE)
27da23d5
JH
2086I32
2087my_chsize(int fd, Off_t length)
6eb13c3b 2088{
04b7ea23 2089# ifdef F_FREESP
1604cfb0 2090 /* code courtesy of William Kucharski */
04b7ea23 2091# define HAS_CHSIZE
58e24eff 2092
c623ac67 2093 Stat_t filebuf;
6eb13c3b 2094
3028581b 2095 if (PerlLIO_fstat(fd, &filebuf) < 0)
1604cfb0 2096 return -1;
6eb13c3b
LW
2097
2098 if (filebuf.st_size < length) {
2099
1604cfb0 2100 /* extend file length */
6eb13c3b 2101
1604cfb0
MS
2102 if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0)
2103 return -1;
6eb13c3b 2104
1604cfb0 2105 /* write a "0" byte */
6eb13c3b 2106
1604cfb0
MS
2107 if ((PerlLIO_write(fd, "", 1)) != 1)
2108 return -1;
6eb13c3b
LW
2109 }
2110 else {
1604cfb0
MS
2111 /* truncate length */
2112 struct flock fl;
2113 fl.l_whence = 0;
2114 fl.l_len = 0;
2115 fl.l_start = length;
2116 fl.l_type = F_WRLCK; /* write lock on file space */
2117
2118 /*
2119 * This relies on the UNDOCUMENTED F_FREESP argument to
2120 * fcntl(2), which truncates the file so that it ends at the
2121 * position indicated by fl.l_start.
2122 *
2123 * Will minor miracles never cease?
2124 */
6eb13c3b 2125
1604cfb0
MS
2126 if (fcntl(fd, F_FREESP, &fl) < 0)
2127 return -1;
6eb13c3b
LW
2128
2129 }
6eb13c3b 2130 return 0;
04b7ea23 2131# else
27da23d5 2132 Perl_croak_nocontext("truncate not implemented");
04b7ea23 2133# endif /* F_FREESP */
27da23d5 2134 return -1;
58e24eff
SH
2135}
2136#endif /* !HAS_TRUNCATE && !HAS_CHSIZE */
ff8e2863 2137
a687059c 2138bool
5aaab254 2139Perl_do_print(pTHX_ SV *sv, PerlIO *fp)
a687059c 2140{
7918f24d
NC
2141 PERL_ARGS_ASSERT_DO_PRINT;
2142
79072805
LW
2143 /* assuming fp is checked earlier */
2144 if (!sv)
1604cfb0 2145 return TRUE;
e9950d3b 2146 if (SvTYPE(sv) == SVt_IV && SvIOK(sv)) {
1604cfb0
MS
2147 assert(!SvGMAGICAL(sv));
2148 if (SvIsUV(sv))
2149 PerlIO_printf(fp, "%" UVuf, (UV)SvUVX(sv));
2150 else
2151 PerlIO_printf(fp, "%" IVdf, (IV)SvIVX(sv));
2152 return !PerlIO_error(fp);
e9950d3b
NC
2153 }
2154 else {
1604cfb0
MS
2155 STRLEN len;
2156 /* Do this first to trigger any overloading. */
2157 const char *tmps = SvPV_const(sv, len);
2158 U8 *tmpbuf = NULL;
2159 bool happy = TRUE;
2160
2161 if (PerlIO_isutf8(fp)) { /* If the stream is utf8 ... */
2162 if (!SvUTF8(sv)) { /* Convert to utf8 if necessary */
2163 /* We don't modify the original scalar. */
2164 tmpbuf = bytes_to_utf8((const U8*) tmps, &len);
2165 tmps = (char *) tmpbuf;
2166 }
2167 else if (ckWARN4_d(WARN_UTF8, WARN_SURROGATE, WARN_NON_UNICODE, WARN_NONCHAR)) {
2168 (void) check_utf8_print((const U8*) tmps, len);
2169 }
2170 } /* else stream isn't utf8 */
2171 else if (DO_UTF8(sv)) { /* But if is utf8 internally, attempt to
2172 convert to bytes */
2173 STRLEN tmplen = len;
2174 bool utf8 = TRUE;
2175 U8 * const result = bytes_from_utf8((const U8*) tmps, &tmplen, &utf8);
2176 if (!utf8) {
2177
2178 /* Here, succeeded in downgrading from utf8. Set up to below
2179 * output the converted value */
2180 tmpbuf = result;
2181 tmps = (char *) tmpbuf;
2182 len = tmplen;
2183 }
2184 else { /* Non-utf8 output stream, but string only representable in
2185 utf8 */
2186 assert((char *)result == tmps);
2187 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
2188 "Wide character in %s",
2189 PL_op ? OP_DESC(PL_op) : "print"
2190 );
2191 /* Could also check that isn't one of the things to avoid
2192 * in utf8 by using check_utf8_print(), but not doing so,
2193 * since the stream isn't a UTF8 stream */
2194 }
2195 }
2196 /* To detect whether the process is about to overstep its
2197 * filesize limit we would need getrlimit(). We could then
2198 * also transparently raise the limit with setrlimit() --
2199 * but only until the system hard limit/the filesystem limit,
2200 * at which we would get EPERM. Note that when using buffered
2201 * io the write failure can be delayed until the flush/close. --jhi */
2202 if (len && (PerlIO_write(fp,tmps,len) == 0))
2203 happy = FALSE;
2204 Safefree(tmpbuf);
2205 return happy ? !PerlIO_error(fp) : FALSE;
ff8e2863 2206 }
a687059c
LW
2207}
2208
79072805 2209I32
0d7d409d 2210Perl_my_stat_flags(pTHX_ const U32 flags)
a687059c 2211{
39644a26 2212 dSP;
79072805 2213 IO *io;
2dd78f96 2214 GV* gv;
79072805 2215
533c011a 2216 if (PL_op->op_flags & OPf_REF) {
1604cfb0 2217 gv = cGVOP_gv;
748a9306 2218 do_fstat:
97c8f3e6 2219 if (gv == PL_defgv) {
1604cfb0
MS
2220 if (PL_laststatval < 0)
2221 SETERRNO(EBADF,RMS_IFI);
5228a96c 2222 return PL_laststatval;
1604cfb0
MS
2223 }
2224 io = GvIO(gv);
ad02613c 2225 do_fstat_have_io:
5228a96c 2226 PL_laststype = OP_STAT;
bd5f6c01 2227 PL_statgv = gv ? gv : (GV *)io;
8062ff11 2228 SvPVCLEAR(PL_statname);
77616968 2229 if (io) {
1604cfb0 2230 if (IoIFP(io)) {
375ed12a 2231 int fd = PerlIO_fileno(IoIFP(io));
77616968
JH
2232 if (fd < 0) {
2233 /* E.g. PerlIO::scalar has no real fd. */
1604cfb0 2234 SETERRNO(EBADF,RMS_IFI);
77616968
JH
2235 return (PL_laststatval = -1);
2236 } else {
375ed12a
JH
2237 return (PL_laststatval = PerlLIO_fstat(fd, &PL_statcache));
2238 }
5228a96c 2239 } else if (IoDIRP(io)) {
3497a01f 2240 return (PL_laststatval = PerlLIO_fstat(my_dirfd(IoDIRP(io)), &PL_statcache));
5228a96c 2241 }
5228a96c 2242 }
1604cfb0
MS
2243 PL_laststatval = -1;
2244 report_evil_fh(gv);
2245 SETERRNO(EBADF,RMS_IFI);
2246 return -1;
a687059c 2247 }
d2c4d2d1 2248 else if ((PL_op->op_private & (OPpFT_STACKED|OPpFT_AFTER_t))
1604cfb0
MS
2249 == OPpFT_STACKED)
2250 return PL_laststatval;
d2c4d2d1 2251 else {
1604cfb0
MS
2252 SV* const sv = TOPs;
2253 const char *s, *d;
2254 STRLEN len;
2255 if ((gv = MAYBE_DEREF_GV_flags(sv,flags))) {
2256 goto do_fstat;
2257 }
ad02613c 2258 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
a45c7426 2259 io = MUTABLE_IO(SvRV(sv));
1604cfb0 2260 gv = NULL;
ad02613c
SP
2261 goto do_fstat_have_io;
2262 }
748a9306 2263
1604cfb0
MS
2264 s = SvPV_flags_const(sv, len, flags);
2265 PL_statgv = NULL;
2266 sv_setpvn(PL_statname, s, len);
2267 d = SvPVX_const(PL_statname); /* s now NUL-terminated */
2268 PL_laststype = OP_STAT;
a155eb05
TC
2269 if (!IS_SAFE_PATHNAME(s, len, OP_NAME(PL_op))) {
2270 PL_laststatval = -1;
2271 }
2272 else {
2273 PL_laststatval = PerlLIO_stat(d, &PL_statcache);
2274 }
1604cfb0 2275 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && should_warn_nl(s)) {
7347ee54 2276 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* PL_warn_nl is constant */
1604cfb0 2277 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
7347ee54 2278 GCC_DIAG_RESTORE_STMT;
5d37acd6 2279 }
1604cfb0 2280 return PL_laststatval;
a687059c
LW
2281 }
2282}
2283
fbb0b3b3 2284
79072805 2285I32
0d7d409d 2286Perl_my_lstat_flags(pTHX_ const U32 flags)
c623bd54 2287{
a1894d81 2288 static const char* const no_prev_lstat = "The stat preceding -l _ wasn't an lstat";
39644a26 2289 dSP;
b16276bb 2290 const char *file;
a155eb05 2291 STRLEN len;
cd22fad3 2292 SV* const sv = TOPs;
5840701a 2293 bool isio = FALSE;
533c011a 2294 if (PL_op->op_flags & OPf_REF) {
1604cfb0
MS
2295 if (cGVOP_gv == PL_defgv) {
2296 if (PL_laststype != OP_LSTAT)
2297 Perl_croak(aTHX_ "%s", no_prev_lstat);
2298 if (PL_laststatval < 0)
2299 SETERRNO(EBADF,RMS_IFI);
2300 return PL_laststatval;
2301 }
2302 PL_laststatval = -1;
2303 if (ckWARN(WARN_IO)) {
2304 /* diag_listed_as: Use of -l on filehandle%s */
2305 Perl_warner(aTHX_ packWARN(WARN_IO),
2306 "Use of -l on filehandle %" HEKf,
2307 HEKfARG(GvENAME_HEK(cGVOP_gv)));
2308 }
2309 SETERRNO(EBADF,RMS_IFI);
2310 return -1;
fe14fcc3 2311 }
8db8f6b6 2312 if ((PL_op->op_private & (OPpFT_STACKED|OPpFT_AFTER_t))
1604cfb0 2313 == OPpFT_STACKED) {
1f26655e 2314 if (PL_laststype != OP_LSTAT)
1604cfb0 2315 Perl_croak(aTHX_ "%s", no_prev_lstat);
1f26655e 2316 return PL_laststatval;
cd22fad3 2317 }
c623bd54 2318
3280af22 2319 PL_laststype = OP_LSTAT;
a0714e2c 2320 PL_statgv = NULL;
5840701a
FC
2321 if ( ( (SvROK(sv) && ( isGV_with_GP(SvRV(sv))
2322 || (isio = SvTYPE(SvRV(sv)) == SVt_PVIO) )
2323 )
2324 || isGV_with_GP(sv)
2325 )
2326 && ckWARN(WARN_IO)) {
2327 if (isio)
1604cfb0 2328 /* diag_listed_as: Use of -l on filehandle%s */
5840701a
FC
2329 Perl_warner(aTHX_ packWARN(WARN_IO),
2330 "Use of -l on filehandle");
2331 else
1604cfb0 2332 /* diag_listed_as: Use of -l on filehandle%s */
5840701a 2333 Perl_warner(aTHX_ packWARN(WARN_IO),
147e3846 2334 "Use of -l on filehandle %" HEKf,
10bafe90
BF
2335 HEKfARG(GvENAME_HEK((const GV *)
2336 (SvROK(sv) ? SvRV(sv) : sv))));
cd22fad3 2337 }
a155eb05 2338 file = SvPV_flags_const(sv, len, flags);
b16276bb 2339 sv_setpv(PL_statname,file);
a155eb05
TC
2340 if (!IS_SAFE_PATHNAME(file, len, OP_NAME(PL_op))) {
2341 PL_laststatval = -1;
2342 }
2343 else {
2344 PL_laststatval = PerlLIO_lstat(file,&PL_statcache);
2345 }
7cb3f959 2346 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && should_warn_nl(file)) {
7347ee54 2347 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* PL_warn_nl is constant */
5d37acd6 2348 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "lstat");
7347ee54 2349 GCC_DIAG_RESTORE_STMT;
5d37acd6 2350 }
3280af22 2351 return PL_laststatval;
c623bd54
LW
2352}
2353
a0f2c8ec
JD
2354static void
2355S_exec_failed(pTHX_ const char *cmd, int fd, int do_report)
2356{
2357 const int e = errno;
7918f24d 2358 PERL_ARGS_ASSERT_EXEC_FAILED;
738ab09f
AB
2359
2360 if (ckWARN(WARN_EXEC))
2361 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't exec \"%s\": %s",
2362 cmd, Strerror(e));
a0f2c8ec 2363 if (do_report) {
b469f1e0
JH
2364 /* XXX silently ignore failures */
2365 PERL_UNUSED_RESULT(PerlLIO_write(fd, (void*)&e, sizeof(int)));
1604cfb0 2366 PerlLIO_close(fd);
a0f2c8ec
JD
2367 }
2368}
2369
738ab09f 2370bool
5aaab254 2371Perl_do_aexec5(pTHX_ SV *really, SV **mark, SV **sp,
1604cfb0 2372 int fd, int do_report)
d5a9bfb0 2373{
7918f24d 2374 PERL_ARGS_ASSERT_DO_AEXEC5;
822c8b4d 2375#if defined(__LIBCATAMOUNT__)
cd39f2b6
JH
2376 Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system");
2377#else
2fcab330 2378 assert(sp >= mark);
282fc0b3 2379 ENTER;
2fcab330 2380 {
1604cfb0
MS
2381 const char **argv, **a;
2382 const char *tmps = NULL;
2383 Newx(argv, sp - mark + 1, const char*);
2384 SAVEFREEPV(argv);
2385 a = argv;
2386
2387 while (++mark <= sp) {
2388 if (*mark) {
2389 char *arg = savepv(SvPV_nolen_const(*mark));
2390 SAVEFREEPV(arg);
2391 *a++ = arg;
2392 } else
2393 *a++ = "";
2394 }
2395 *a = NULL;
2396 if (really) {
2397 tmps = savepv(SvPV_nolen_const(really));
2398 SAVEFREEPV(tmps);
2399 }
282fc0b3 2400 if ((!really && argv[0] && *argv[0] != '/') ||
1604cfb0
MS
2401 (really && *tmps != '/')) /* will execvp use PATH? */
2402 TAINT_ENV(); /* testing IFS here is overkill, probably */
2403 PERL_FPU_PRE_EXEC
2404 if (really && *tmps) {
282fc0b3
Z
2405 PerlProc_execvp(tmps,EXEC_ARGV_CAST(argv));
2406 } else if (argv[0]) {
2407 PerlProc_execvp(argv[0],EXEC_ARGV_CAST(argv));
2fcab330
DIM
2408 } else {
2409 SETERRNO(ENOENT,RMS_FNF);
2410 }
1604cfb0 2411 PERL_FPU_POST_EXEC
282fc0b3 2412 S_exec_failed(aTHX_ (really ? tmps : argv[0] ? argv[0] : ""), fd, do_report);
a687059c 2413 }
282fc0b3 2414 LEAVE;
cd39f2b6 2415#endif
738ab09f 2416 return FALSE;
a687059c
LW
2417}
2418
9555a685 2419#ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
e446cec8 2420
738ab09f 2421bool
2fbb330f 2422Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report)
e446cec8 2423{
282fc0b3 2424 const char **argv, **a;
eb578fdb 2425 char *s;
15db3ae2 2426 char *buf;
2fbb330f 2427 char *cmd;
2fbb330f 2428 /* Make a copy so we can change it */
6fca0082 2429 const Size_t cmdlen = strlen(incmd) + 1;
7918f24d
NC
2430
2431 PERL_ARGS_ASSERT_DO_EXEC3;
2432
282fc0b3 2433 ENTER;
15db3ae2 2434 Newx(buf, cmdlen, char);
282fc0b3 2435 SAVEFREEPV(buf);
15db3ae2 2436 cmd = buf;
cfff9797 2437 memcpy(cmd, incmd, cmdlen);
a687059c 2438
748a9306 2439 while (*cmd && isSPACE(*cmd))
1604cfb0 2440 cmd++;
748a9306 2441
a687059c
LW
2442 /* save an extra exec if possible */
2443
bf38876a 2444#ifdef CSH
d05c1ba0 2445 {
0c19750d 2446 char flags[PERL_FLAGS_MAX];
1604cfb0
MS
2447 if (strnEQ(cmd,PL_cshname,PL_cshlen) &&
2448 strBEGINs(cmd+PL_cshlen," -c")) {
28f0d0ec 2449 my_strlcpy(flags, "-c", PERL_FLAGS_MAX);
1604cfb0
MS
2450 s = cmd+PL_cshlen+3;
2451 if (*s == 'f') {
2452 s++;
28f0d0ec 2453 my_strlcat(flags, "f", PERL_FLAGS_MAX - 2);
1604cfb0
MS
2454 }
2455 if (*s == ' ')
2456 s++;
2457 if (*s++ == '\'') {
2458 char * const ncmd = s;
2459
2460 while (*s)
2461 s++;
2462 if (s[-1] == '\n')
2463 *--s = '\0';
2464 if (s[-1] == '\'') {
2465 *--s = '\0';
2466 PERL_FPU_PRE_EXEC
2467 PerlProc_execl(PL_cshname, "csh", flags, ncmd, (char*)NULL);
2468 PERL_FPU_POST_EXEC
2469 *s = '\'';
2470 S_exec_failed(aTHX_ PL_cshname, fd, do_report);
2471 goto leave;
2472 }
2473 }
2474 }
a687059c 2475 }
bf38876a 2476#endif /* CSH */
a687059c
LW
2477
2478 /* see if there are shell metacharacters in it */
2479
748a9306 2480 if (*cmd == '.' && isSPACE(cmd[1]))
1604cfb0 2481 goto doshell;
748a9306 2482
c8b388b0 2483 if (strBEGINs(cmd,"exec") && isSPACE(cmd[4]))
1604cfb0 2484 goto doshell;
748a9306 2485
294b3b39 2486 s = cmd;
0eb30aeb 2487 while (isWORDCHAR(*s))
1604cfb0 2488 s++; /* catch VAR=val gizmo */
63f2c1e1 2489 if (*s == '=')
1604cfb0 2490 goto doshell;
748a9306 2491
a687059c 2492 for (s = cmd; *s; s++) {
1604cfb0
MS
2493 if (*s != ' ' && !isALPHA(*s) &&
2494 memCHRs("$&*(){}[]'\";\\|?<>~`\n",*s)) {
2495 if (*s == '\n' && !s[1]) {
2496 *s = '\0';
2497 break;
2498 }
2499 /* handle the 2>&1 construct at the end */
2500 if (*s == '>' && s[1] == '&' && s[2] == '1'
2501 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
2502 && (!s[3] || isSPACE(s[3])))
2503 {
6867be6d 2504 const char *t = s + 3;
603a98b0 2505
1604cfb0
MS
2506 while (*t && isSPACE(*t))
2507 ++t;
2508 if (!*t && (PerlLIO_dup2(1,2) != -1)) {
2509 s[-2] = '\0';
2510 break;
2511 }
2512 }
2513 doshell:
2514 PERL_FPU_PRE_EXEC
738ab09f 2515 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char *)NULL);
1604cfb0
MS
2516 PERL_FPU_POST_EXEC
2517 S_exec_failed(aTHX_ PL_sh_path, fd, do_report);
2518 goto leave;
2519 }
a687059c 2520 }
748a9306 2521
282fc0b3
Z
2522 Newx(argv, (s - cmd) / 2 + 2, const char*);
2523 SAVEFREEPV(argv);
2524 cmd = savepvn(cmd, s-cmd);
2525 SAVEFREEPV(cmd);
2526 a = argv;
2527 for (s = cmd; *s;) {
1604cfb0
MS
2528 while (isSPACE(*s))
2529 s++;
2530 if (*s)
2531 *(a++) = s;
2532 while (*s && !isSPACE(*s))
2533 s++;
2534 if (*s)
2535 *s++ = '\0';
a687059c 2536 }
6136c704 2537 *a = NULL;
282fc0b3 2538 if (argv[0]) {
1604cfb0 2539 PERL_FPU_PRE_EXEC
282fc0b3 2540 PerlProc_execvp(argv[0],EXEC_ARGV_CAST(argv));
1604cfb0
MS
2541 PERL_FPU_POST_EXEC
2542 if (errno == ENOEXEC) /* for system V NIH syndrome */
2543 goto doshell;
2544 S_exec_failed(aTHX_ argv[0], fd, do_report);
a687059c 2545 }
282fc0b3
Z
2546leave:
2547 LEAVE;
738ab09f 2548 return FALSE;
a687059c
LW
2549}
2550
6890e559 2551#endif /* OS2 || WIN32 */
760ac839 2552
79072805 2553I32
5aaab254 2554Perl_apply(pTHX_ I32 type, SV **mark, SV **sp)
a687059c 2555{
eb578fdb
KW
2556 I32 val;
2557 I32 tot = 0;
4634a855 2558 const char *const what = PL_op_name[type];
5c144d81 2559 const char *s;
84c7b88c 2560 STRLEN len;
890ce7af 2561 SV ** const oldmark = mark;
885b4b39 2562 bool killgp = FALSE;
a687059c 2563
7918f24d
NC
2564 PERL_ARGS_ASSERT_APPLY;
2565
9a9b5ec9
DM
2566 PERL_UNUSED_VAR(what); /* may not be used depending on compile options */
2567
1444765e 2568 /* Doing this ahead of the switch statement preserves the old behaviour,
a3815e44 2569 where attempting to use kill as a taint test would fail on
1444765e
NC
2570 platforms where kill was not defined. */
2571#ifndef HAS_KILL
2572 if (type == OP_KILL)
1604cfb0 2573 Perl_die(aTHX_ PL_no_func, what);
1444765e
NC
2574#endif
2575#ifndef HAS_CHOWN
2576 if (type == OP_CHOWN)
1604cfb0 2577 Perl_die(aTHX_ PL_no_func, what);
1444765e
NC
2578#endif
2579
2580
20408e3c 2581#define APPLY_TAINT_PROPER() \
3280af22 2582 STMT_START { \
1604cfb0 2583 if (TAINT_get) { TAINT_PROPER(what); } \
873ef191 2584 } STMT_END
20408e3c
GS
2585
2586 /* This is a first heuristic; it doesn't catch tainting magic. */
284167a5 2587 if (TAINTING_get) {
1604cfb0
MS
2588 while (++mark <= sp) {
2589 if (SvTAINTED(*mark)) {
2590 TAINT;
2591 break;
2592 }
2593 }
2594 mark = oldmark;
463ee0b2 2595 }
a687059c 2596 switch (type) {
79072805 2597 case OP_CHMOD:
1604cfb0
MS
2598 APPLY_TAINT_PROPER();
2599 if (++mark <= sp) {
2600 val = SvIV(*mark);
2601 APPLY_TAINT_PROPER();
2602 tot = sp - mark;
2603 while (++mark <= sp) {
c4aca7d0 2604 GV* gv;
2ea1cce7 2605 if ((gv = MAYBE_DEREF_GV(*mark))) {
1604cfb0 2606 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
c4aca7d0 2607#ifdef HAS_FCHMOD
375ed12a 2608 int fd = PerlIO_fileno(IoIFP(GvIOn(gv)));
1604cfb0 2609 APPLY_TAINT_PROPER();
375ed12a
JH
2610 if (fd < 0) {
2611 SETERRNO(EBADF,RMS_IFI);
2612 tot--;
2613 } else if (fchmod(fd, val))
2614 tot--;
c4aca7d0 2615#else
1604cfb0 2616 Perl_die(aTHX_ PL_no_func, "fchmod");
c4aca7d0 2617#endif
1604cfb0
MS
2618 }
2619 else {
8334cae6 2620 SETERRNO(EBADF,RMS_IFI);
1604cfb0
MS
2621 tot--;
2622 }
2623 }
2624 else {
2625 const char *name = SvPV_nomg_const(*mark, len);
2626 APPLY_TAINT_PROPER();
41188aa0 2627 if (!IS_SAFE_PATHNAME(name, len, "chmod") ||
c8028aa6
TC
2628 PerlLIO_chmod(name, val)) {
2629 tot--;
2630 }
1604cfb0
MS
2631 }
2632 }
2633 }
2634 break;
fe14fcc3 2635#ifdef HAS_CHOWN
79072805 2636 case OP_CHOWN:
1604cfb0
MS
2637 APPLY_TAINT_PROPER();
2638 if (sp - mark > 2) {
eb578fdb 2639 I32 val2;
1604cfb0
MS
2640 val = SvIVx(*++mark);
2641 val2 = SvIVx(*++mark);
2642 APPLY_TAINT_PROPER();
2643 tot = sp - mark;
2644 while (++mark <= sp) {
c4aca7d0 2645 GV* gv;
1604cfb0
MS
2646 if ((gv = MAYBE_DEREF_GV(*mark))) {
2647 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
c4aca7d0 2648#ifdef HAS_FCHOWN
375ed12a 2649 int fd = PerlIO_fileno(IoIFP(GvIOn(gv)));
1604cfb0 2650 APPLY_TAINT_PROPER();
375ed12a 2651 if (fd < 0) {
dd1dbff0 2652 SETERRNO(EBADF,RMS_IFI);
1604cfb0 2653 tot--;
375ed12a 2654 } else if (fchown(fd, val, val2))
1604cfb0 2655 tot--;
c4aca7d0 2656#else
1604cfb0 2657 Perl_die(aTHX_ PL_no_func, "fchown");
c4aca7d0 2658#endif
1604cfb0
MS
2659 }
2660 else {
8334cae6 2661 SETERRNO(EBADF,RMS_IFI);
1604cfb0
MS
2662 tot--;
2663 }
2664 }
2665 else {
2666 const char *name = SvPV_nomg_const(*mark, len);
2667 APPLY_TAINT_PROPER();
41188aa0 2668 if (!IS_SAFE_PATHNAME(name, len, "chown") ||
c8028aa6 2669 PerlLIO_chown(name, val, val2)) {
1604cfb0 2670 tot--;
c8028aa6 2671 }
1604cfb0
MS
2672 }
2673 }
2674 }
2675 break;
b1248f16 2676#endif
a1d180c4 2677/*
dd64f1c3
AD
2678XXX Should we make lchown() directly available from perl?
2679For now, we'll let Configure test for HAS_LCHOWN, but do
2680nothing in the core.
2681 --AD 5/1998
2682*/
fe14fcc3 2683#ifdef HAS_KILL
79072805 2684 case OP_KILL:
1604cfb0
MS
2685 APPLY_TAINT_PROPER();
2686 if (mark == sp)
2687 break;
2688 s = SvPVx_const(*++mark, len);
2689 if (*s == '-' && isALPHA(s[1]))
2690 {
2691 s++;
2692 len--;
885b4b39 2693 killgp = TRUE;
1604cfb0
MS
2694 }
2695 if (isALPHA(*s)) {
2696 if (*s == 'S' && s[1] == 'I' && s[2] == 'G') {
2697 s += 3;
84c7b88c
BF
2698 len -= 3;
2699 }
2700 if ((val = whichsig_pvn(s, len)) < 0)
147e3846
KW
2701 Perl_croak(aTHX_ "Unrecognized signal name \"%" SVf "\"",
2702 SVfARG(*mark));
1604cfb0
MS
2703 }
2704 else
2705 {
2706 val = SvIV(*mark);
2707 if (val < 0)
2708 {
2709 killgp = TRUE;
c2fd40cb 2710 val = -val;
1604cfb0
MS
2711 }
2712 }
2713 APPLY_TAINT_PROPER();
2714 tot = sp - mark;
2715
2716 while (++mark <= sp) {
2717 Pid_t proc;
2718 SvGETMAGIC(*mark);
2719 if (!(SvNIOK(*mark) || looks_like_number(*mark)))
2720 Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
2721 proc = SvIV_nomg(*mark);
2722 APPLY_TAINT_PROPER();
111f73b5
DM
2723#ifdef HAS_KILLPG
2724 /* use killpg in preference, as the killpg() wrapper for Win32
2725 * understands process groups, but the kill() wrapper doesn't */
2726 if (killgp ? PerlProc_killpg(proc, val)
2727 : PerlProc_kill(proc, val))
2728#else
2729 if (PerlProc_kill(killgp ? -proc: proc, val))
2730#endif
1604cfb0
MS
2731 tot--;
2732 }
2733 PERL_ASYNC_CHECK();
2734 break;
b1248f16 2735#endif
79072805 2736 case OP_UNLINK:
1604cfb0
MS
2737 APPLY_TAINT_PROPER();
2738 tot = sp - mark;
2739 while (++mark <= sp) {
2740 s = SvPV_const(*mark, len);
2741 APPLY_TAINT_PROPER();
2742 if (!IS_SAFE_PATHNAME(s, len, "unlink")) {
c8028aa6
TC
2743 tot--;
2744 }
1604cfb0
MS
2745 else if (PL_unsafe) {
2746 if (UNLINK(s))
2747 {
2748 tot--;
2749 }
5cdd1fc2 2750#if defined(__amigaos4__) && defined(NEWLIB)
1604cfb0
MS
2751 else
2752 {
5cdd1fc2
AB
2753 /* Under AmigaOS4 unlink only 'fails' if the
2754 * filename is invalid. It may not remove the file
2755 * if it's locked, so check if it's still around. */
2756 if ((access(s,F_OK) != -1))
2757 {
2758 tot--;
2759 }
1604cfb0
MS
2760 }
2761#endif
2762 }
2763 else { /* don't let root wipe out directories without -U */
2764 Stat_t statbuf;
2765 if (PerlLIO_lstat(s, &statbuf) < 0)
2766 tot--;
2767 else if (S_ISDIR(statbuf.st_mode)) {
2768 SETERRNO(EISDIR, SS_NOPRIV);
2769 tot--;
2770 }
2771 else {
2772 if (UNLINK(s))
2773 {
2774 tot--;
2775 }
5cdd1fc2 2776#if defined(__amigaos4__) && defined(NEWLIB)
1604cfb0
MS
2777 else
2778 {
2779 /* Under AmigaOS4 unlink only 'fails' if the filename is invalid */
2780 /* It may not remove the file if it's Locked, so check if it's still */
2781 /* arround */
2782 if((access(s,F_OK) != -1))
2783 {
2784 tot--;
2785 }
2786 }
2787#endif
2788 }
2789 }
2790 }
2791 break;
e96b369d 2792#if defined(HAS_UTIME) || defined(HAS_FUTIMES)
79072805 2793 case OP_UTIME:
1604cfb0
MS
2794 APPLY_TAINT_PROPER();
2795 if (sp - mark > 2) {
e96b369d 2796#if defined(HAS_FUTIMES)
1604cfb0
MS
2797 struct timeval utbuf[2];
2798 void *utbufp = utbuf;
e96b369d 2799#elif defined(I_UTIME) || defined(VMS)
1604cfb0
MS
2800 struct utimbuf utbuf;
2801 struct utimbuf *utbufp = &utbuf;
663a0e37 2802#else
1604cfb0
MS
2803 struct {
2804 Time_t actime;
2805 Time_t modtime;
2806 } utbuf;
2807 void *utbufp = &utbuf;
663a0e37 2808#endif
a687059c 2809
1604cfb0
MS
2810 SV* const accessed = *++mark;
2811 SV* const modified = *++mark;
c6f7b413 2812
6ec06612
SB
2813 /* Be like C, and if both times are undefined, let the C
2814 * library figure out what to do. This usually means
2815 * "current time". */
c6f7b413
RS
2816
2817 if ( accessed == &PL_sv_undef && modified == &PL_sv_undef )
6ec06612
SB
2818 utbufp = NULL;
2819 else {
2820 Zero(&utbuf, sizeof utbuf, char);
e96b369d 2821#ifdef HAS_FUTIMES
1604cfb0
MS
2822 utbuf[0].tv_sec = (long)SvIV(accessed); /* time accessed */
2823 utbuf[0].tv_usec = 0;
2824 utbuf[1].tv_sec = (long)SvIV(modified); /* time modified */
2825 utbuf[1].tv_usec = 0;
e96b369d 2826#elif defined(BIG_TIME)
4ea561bc
NC
2827 utbuf.actime = (Time_t)SvNV(accessed); /* time accessed */
2828 utbuf.modtime = (Time_t)SvNV(modified); /* time modified */
517844ec 2829#else
4ea561bc
NC
2830 utbuf.actime = (Time_t)SvIV(accessed); /* time accessed */
2831 utbuf.modtime = (Time_t)SvIV(modified); /* time modified */
517844ec 2832#endif
6ec06612 2833 }
1604cfb0
MS
2834 APPLY_TAINT_PROPER();
2835 tot = sp - mark;
2836 while (++mark <= sp) {
e96b369d 2837 GV* gv;
64617da9 2838 if ((gv = MAYBE_DEREF_GV(*mark))) {
1604cfb0 2839 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
e96b369d 2840#ifdef HAS_FUTIMES
375ed12a 2841 int fd = PerlIO_fileno(IoIFP(GvIOn(gv)));
1604cfb0 2842 APPLY_TAINT_PROPER();
375ed12a
JH
2843 if (fd < 0) {
2844 SETERRNO(EBADF,RMS_IFI);
2845 tot--;
1604cfb0
MS
2846 } else if (futimes(fd, (struct timeval *) utbufp))
2847 tot--;
e96b369d 2848#else
1604cfb0
MS
2849 Perl_die(aTHX_ PL_no_func, "futimes");
2850#endif
2851 }
2852 else {
8f432bc3 2853 SETERRNO(EBADF,RMS_IFI);
1604cfb0
MS
2854 tot--;
2855 }
2856 }
2857 else {
2858 const char * const name = SvPV_nomg_const(*mark, len);
2859 APPLY_TAINT_PROPER();
2860 if (!IS_SAFE_PATHNAME(name, len, "utime")) {
c8028aa6
TC
2861 tot--;
2862 }
2863 else
e96b369d 2864#ifdef HAS_FUTIMES
1604cfb0 2865 if (utimes(name, (struct timeval *)utbufp))
e96b369d 2866#else
1604cfb0 2867 if (PerlLIO_utime(name, utbufp))
e96b369d 2868#endif
1604cfb0
MS
2869 tot--;
2870 }
e96b369d 2871
1604cfb0
MS
2872 }
2873 }
2874 else
2875 tot = 0;
2876 break;
a0d0e21e 2877#endif
a687059c
LW
2878 }
2879 return tot;
20408e3c 2880
20408e3c 2881#undef APPLY_TAINT_PROPER
a687059c
LW
2882}
2883
bd93adf5 2884/* Do the permissions in *statbufp allow some operation? */
a0d0e21e 2885#ifndef VMS /* VMS' cando is in vms.c */
7f4774ae 2886bool
5aaab254 2887Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t *statbufp)
ae1951c1
NC
2888/* effective is a flag, true for EUID, or for checking if the effective gid
2889 * is in the list of groups returned from getgroups().
2890 */
a687059c 2891{
7918f24d 2892 PERL_ARGS_ASSERT_CANDO;
81611534 2893 PERL_UNUSED_CONTEXT;
7918f24d 2894
bee1dbe2 2895#ifdef DOSISH
fe14fcc3
LW
2896 /* [Comments and code from Len Reed]
2897 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
2898 * to write-protected files. The execute permission bit is set
486ec47a 2899 * by the Microsoft C library stat() function for the following:
fe14fcc3
LW
2900 * .exe files
2901 * .com files
2902 * .bat files
2903 * directories
2904 * All files and directories are readable.
2905 * Directories and special files, e.g. "CON", cannot be
2906 * write-protected.
2907 * [Comment by Tom Dinger -- a directory can have the write-protect
2908 * bit set in the file system, but DOS permits changes to
2909 * the directory anyway. In addition, all bets are off
2910 * here for networked software, such as Novell and
2911 * Sun's PC-NFS.]
2912 */
2913
bee1dbe2
LW
2914 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
2915 * too so it will actually look into the files for magic numbers
2916 */
8298454c 2917 return cBOOL(mode & statbufp->st_mode);
fe14fcc3 2918
55497cff 2919#else /* ! DOSISH */
b595cd4b
RU
2920# ifdef __CYGWIN__
2921 if (ingroup(544,effective)) { /* member of Administrators */
2922# else
985213f2 2923 if ((effective ? PerlProc_geteuid() : PerlProc_getuid()) == 0) { /* root is special */
b595cd4b 2924# endif
1604cfb0
MS
2925 if (mode == S_IXUSR) {
2926 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
2927 return TRUE;
2928 }
2929 else
2930 return TRUE; /* root reads and writes anything */
2931 return FALSE;
a687059c 2932 }
985213f2 2933 if (statbufp->st_uid == (effective ? PerlProc_geteuid() : PerlProc_getuid()) ) {
1604cfb0
MS
2934 if (statbufp->st_mode & mode)
2935 return TRUE; /* ok as "user" */
a687059c 2936 }
d8eceb89 2937 else if (ingroup(statbufp->st_gid,effective)) {
1604cfb0
MS
2938 if (statbufp->st_mode & mode >> 3)
2939 return TRUE; /* ok as "group" */
a687059c 2940 }
7f4774ae 2941 else if (statbufp->st_mode & mode >> 6)
1604cfb0 2942 return TRUE; /* ok as "other" */
a687059c 2943 return FALSE;
55497cff 2944#endif /* ! DOSISH */
a687059c 2945}
a0d0e21e 2946#endif /* ! VMS */
a687059c 2947
1f676739 2948static bool
0da8eb3a 2949S_ingroup(pTHX_ Gid_t testgid, bool effective)
a687059c 2950{
81611534
JH
2951#ifndef PERL_IMPLICIT_SYS
2952 /* PERL_IMPLICIT_SYS like Win32: getegid() etc. require the context. */
2953 PERL_UNUSED_CONTEXT;
2954#endif
985213f2 2955 if (testgid == (effective ? PerlProc_getegid() : PerlProc_getgid()))
1604cfb0 2956 return TRUE;
fe14fcc3 2957#ifdef HAS_GETGROUPS
a687059c 2958 {
1604cfb0
MS
2959 Groups_t *gary = NULL;
2960 I32 anum;
331b57bc 2961 bool rc = FALSE;
a687059c 2962
1604cfb0 2963 anum = getgroups(0, gary);
375ed12a
JH
2964 if (anum > 0) {
2965 Newx(gary, anum, Groups_t);
2966 anum = getgroups(anum, gary);
2967 while (--anum >= 0)
2968 if (gary[anum] == testgid) {
2969 rc = TRUE;
2970 break;
2971 }
331b57bc 2972
375ed12a
JH
2973 Safefree(gary);
2974 }
331b57bc 2975 return rc;
a687059c 2976 }
c685562b 2977#else
a687059c 2978 return FALSE;
cd39f2b6 2979#endif
a687059c 2980}
c2ab57d4 2981
fe14fcc3 2982#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
c2ab57d4 2983
79072805 2984I32
864dbfa3 2985Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 2986{
0bcc34c2 2987 const key_t key = (key_t)SvNVx(*++mark);
c3312966 2988 SV *nsv = optype == OP_MSGGET ? NULL : *++mark;
6867be6d 2989 const I32 flags = SvIVx(*++mark);
294a48e9 2990
7918f24d 2991 PERL_ARGS_ASSERT_DO_IPCGET;
294a48e9 2992 PERL_UNUSED_ARG(sp);
c2ab57d4 2993
748a9306 2994 SETERRNO(0,0);
c2ab57d4
LW
2995 switch (optype)
2996 {
fe14fcc3 2997#ifdef HAS_MSG
79072805 2998 case OP_MSGGET:
1604cfb0 2999 return msgget(key, flags);
e5d73d77 3000#endif
fe14fcc3 3001#ifdef HAS_SEM
79072805 3002 case OP_SEMGET:
1604cfb0 3003 return semget(key, (int) SvIV(nsv), flags);
e5d73d77 3004#endif
fe14fcc3 3005#ifdef HAS_SHM
79072805 3006 case OP_SHMGET:
1604cfb0 3007 return shmget(key, (size_t) SvUV(nsv), flags);
e5d73d77 3008#endif
fe14fcc3 3009#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 3010 default:
fe13d51d 3011 /* diag_listed_as: msg%s not implemented */
1604cfb0 3012 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 3013#endif
c2ab57d4
LW
3014 }
3015 return -1; /* should never happen */
3016}
3017
79072805 3018I32
864dbfa3 3019Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 3020{
c2ab57d4 3021 char *a;
a0d0e21e 3022 I32 ret = -1;
6867be6d 3023 const I32 id = SvIVx(*++mark);
95b63a38 3024#ifdef Semctl
6867be6d 3025 const I32 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
95b63a38 3026#endif
6867be6d 3027 const I32 cmd = SvIVx(*++mark);
0bcc34c2
AL
3028 SV * const astr = *++mark;
3029 STRLEN infosize = 0;
3030 I32 getinfo = (cmd == IPC_STAT);
c2ab57d4 3031
7918f24d 3032 PERL_ARGS_ASSERT_DO_IPCCTL;
0bcc34c2 3033 PERL_UNUSED_ARG(sp);
c2ab57d4
LW
3034
3035 switch (optype)
3036 {
fe14fcc3 3037#ifdef HAS_MSG
79072805 3038 case OP_MSGCTL:
1604cfb0
MS
3039 if (cmd == IPC_STAT || cmd == IPC_SET)
3040 infosize = sizeof(struct msqid_ds);
3041 break;
e5d73d77 3042#endif
fe14fcc3 3043#ifdef HAS_SHM
79072805 3044 case OP_SHMCTL:
1604cfb0
MS
3045 if (cmd == IPC_STAT || cmd == IPC_SET)
3046 infosize = sizeof(struct shmid_ds);
3047 break;
e5d73d77 3048#endif
fe14fcc3 3049#ifdef HAS_SEM
79072805 3050 case OP_SEMCTL:
39398f3f 3051#ifdef Semctl
1604cfb0
MS
3052 if (cmd == IPC_STAT || cmd == IPC_SET)
3053 infosize = sizeof(struct semid_ds);
3054 else if (cmd == GETALL || cmd == SETALL)
3055 {
3056 struct semid_ds semds;
3057 union semun semun;
e6f0bdd6
GS
3058#ifdef EXTRA_F_IN_SEMUN_BUF
3059 semun.buff = &semds;
3060#else
84902520 3061 semun.buf = &semds;
e6f0bdd6 3062#endif
1604cfb0
MS
3063 getinfo = (cmd == GETALL);
3064 if (Semctl(id, 0, IPC_STAT, semun) == -1)
3065 return -1;
3066 infosize = semds.sem_nsems * sizeof(short);
3067 /* "short" is technically wrong but much more portable
3068 than guessing about u_?short(_t)? */
3069 }
39398f3f 3070#else
fe13d51d 3071 /* diag_listed_as: sem%s not implemented */
1604cfb0 3072 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 3073#endif
1604cfb0 3074 break;
e5d73d77 3075#endif
fe14fcc3 3076#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 3077 default:
fe13d51d 3078 /* diag_listed_as: shm%s not implemented */
1604cfb0 3079 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 3080#endif
c2ab57d4
LW
3081 }
3082
3083 if (infosize)
3084 {
1604cfb0
MS
3085 if (getinfo)
3086 {
d43c116b
TC
3087 /* we're not using the value here, so don't SvPVanything */
3088 SvUPGRADE(astr, SVt_PV);
3089 SvGETMAGIC(astr);
3090 if (SvTHINKFIRST(astr))
3091 sv_force_normal_flags(astr, 0);
1604cfb0
MS
3092 a = SvGROW(astr, infosize+1);
3093 }
3094 else
3095 {
3096 STRLEN len;
3097 a = SvPVbyte(astr, len);
3098 if (len != infosize)
3099 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
3100 PL_op_desc[optype],
3101 (unsigned long)len,
3102 (long)infosize);
3103 }
c2ab57d4
LW
3104 }
3105 else
3106 {
d43c116b
TC
3107 /* We historically treat this as a pointer if we don't otherwise recognize
3108 the op, but for many ops the value is simply ignored anyway, so
3109 don't warn on undef.
3110 */
3111 SvGETMAGIC(astr);
3112 if (SvOK(astr)) {
3113 const IV i = SvIV_nomg(astr);
3114 a = INT2PTR(char *,i); /* ouch */
3115 }
3116 else {
3117 a = NULL;
3118 }
c2ab57d4 3119 }
748a9306 3120 SETERRNO(0,0);
c2ab57d4
LW
3121 switch (optype)
3122 {
fe14fcc3 3123#ifdef HAS_MSG
79072805 3124 case OP_MSGCTL:
1604cfb0
MS
3125 ret = msgctl(id, cmd, (struct msqid_ds *)a);
3126 break;
e5d73d77 3127#endif
fe14fcc3 3128#ifdef HAS_SEM
bd89102f 3129 case OP_SEMCTL: {
39398f3f 3130#ifdef Semctl
bd89102f
AD
3131 union semun unsemds;
3132
64d76282
BC
3133 if(cmd == SETVAL) {
3134 unsemds.val = PTR2nat(a);
3135 }
3136 else {
e6f0bdd6 3137#ifdef EXTRA_F_IN_SEMUN_BUF
64d76282 3138 unsemds.buff = (struct semid_ds *)a;
e6f0bdd6 3139#else
64d76282 3140 unsemds.buf = (struct semid_ds *)a;
e6f0bdd6 3141#endif
64d76282 3142 }
1604cfb0 3143 ret = Semctl(id, n, cmd, unsemds);
39398f3f 3144#else
1604cfb0
MS
3145 /* diag_listed_as: sem%s not implemented */
3146 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 3147#endif
bd89102f 3148 }
1604cfb0 3149 break;
e5d73d77 3150#endif
fe14fcc3 3151#ifdef HAS_SHM
79072805 3152 case OP_SHMCTL:
1604cfb0
MS
3153 ret = shmctl(id, cmd, (struct shmid_ds *)a);
3154 break;
e5d73d77 3155#endif
c2ab57d4
LW
3156 }
3157 if (getinfo && ret >= 0) {
1604cfb0
MS
3158 SvCUR_set(astr, infosize);
3159 *SvEND(astr) = '\0';
d43c116b 3160 SvPOK_only(astr);
1604cfb0 3161 SvSETMAGIC(astr);
c2ab57d4
LW
3162 }
3163 return ret;
3164}
3165
79072805 3166I32
864dbfa3 3167Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
c2ab57d4 3168{
fe14fcc3 3169#ifdef HAS_MSG
463ee0b2 3170 STRLEN len;
6867be6d 3171 const I32 id = SvIVx(*++mark);
0bcc34c2
AL
3172 SV * const mstr = *++mark;
3173 const I32 flags = SvIVx(*++mark);
aa058ea4 3174 const char * const mbuf = SvPVbyte(mstr, len);
0bcc34c2
AL
3175 const I32 msize = len - sizeof(long);
3176
7918f24d 3177 PERL_ARGS_ASSERT_DO_MSGSND;
890ce7af 3178 PERL_UNUSED_ARG(sp);
c2ab57d4 3179
0bcc34c2 3180 if (msize < 0)
1604cfb0 3181 Perl_croak(aTHX_ "Arg too short for msgsnd");
748a9306 3182 SETERRNO(0,0);
681fb693
JH
3183 if (id >= 0 && flags >= 0) {
3184 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
3185 } else {
3186 SETERRNO(EINVAL,LIB_INVARG);
3187 return -1;
3188 }
e5d73d77 3189#else
2d51fa4d
RGS
3190 PERL_UNUSED_ARG(sp);
3191 PERL_UNUSED_ARG(mark);
fe13d51d 3192 /* diag_listed_as: msg%s not implemented */
cea2e8a9 3193 Perl_croak(aTHX_ "msgsnd not implemented");
7c522378 3194 return -1;
e5d73d77 3195#endif
c2ab57d4
LW
3196}
3197
79072805 3198I32
864dbfa3 3199Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
c2ab57d4 3200{
fe14fcc3 3201#ifdef HAS_MSG
c2ab57d4
LW
3202 char *mbuf;
3203 long mtype;
6867be6d 3204 I32 msize, flags, ret;
6867be6d 3205 const I32 id = SvIVx(*++mark);
0bcc34c2 3206 SV * const mstr = *++mark;
7918f24d
NC
3207
3208 PERL_ARGS_ASSERT_DO_MSGRCV;
890ce7af 3209 PERL_UNUSED_ARG(sp);
79072805 3210
c2e66d9e
GS
3211 /* suppress warning when reading into undef var --jhi */
3212 if (! SvOK(mstr))
8062ff11 3213 SvPVCLEAR(mstr);
463ee0b2
LW
3214 msize = SvIVx(*++mark);
3215 mtype = (long)SvIVx(*++mark);
3216 flags = SvIVx(*++mark);
93524f2b 3217 SvPV_force_nolen(mstr);
a0d0e21e 3218 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
a1d180c4 3219
748a9306 3220 SETERRNO(0,0);
d2607e1e
JH
3221 if (id >= 0 && msize >= 0 && flags >= 0) {
3222 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
3223 } else {
3224 SETERRNO(EINVAL,LIB_INVARG);
3225 ret = -1;
3226 }
c2ab57d4 3227 if (ret >= 0) {
1604cfb0 3228 SvCUR_set(mstr, sizeof(long)+ret);
6987f443 3229 SvPOK_only(mstr);
1604cfb0
MS
3230 *SvEND(mstr) = '\0';
3231 /* who knows who has been playing with this message? */
3232 SvTAINTED_on(mstr);
c2ab57d4
LW
3233 }
3234 return ret;
e5d73d77 3235#else
2d51fa4d
RGS
3236 PERL_UNUSED_ARG(sp);
3237 PERL_UNUSED_ARG(mark);
fe13d51d 3238 /* diag_listed_as: msg%s not implemented */
cea2e8a9 3239 Perl_croak(aTHX_ "msgrcv not implemented");
7c522378 3240 return -1;
e5d73d77 3241#endif
c2ab57d4
LW
3242}
3243
79072805 3244I32
864dbfa3 3245Perl_do_semop(pTHX_ SV **mark, SV **sp)
c2ab57d4 3246{
fe14fcc3 3247#ifdef HAS_SEM
463ee0b2 3248 STRLEN opsize;
6867be6d 3249 const I32 id = SvIVx(*++mark);
0bcc34c2 3250 SV * const opstr = *++mark;
61f05872 3251 const char * const opbuf = SvPVbyte(opstr, opsize);
7918f24d
NC
3252
3253 PERL_ARGS_ASSERT_DO_SEMOP;
890ce7af 3254 PERL_UNUSED_ARG(sp);
c2ab57d4 3255
248ff010 3256 if (opsize < 3 * SHORTSIZE
1604cfb0
MS
3257 || (opsize % (3 * SHORTSIZE))) {
3258 SETERRNO(EINVAL,LIB_INVARG);
3259 return -1;
c2ab57d4 3260 }
748a9306 3261 SETERRNO(0,0);
248ff010
NC
3262 /* We can't assume that sizeof(struct sembuf) == 3 * sizeof(short). */
3263 {
6867be6d 3264 const int nsops = opsize / (3 * sizeof (short));
248ff010 3265 int i = nsops;
0bcc34c2 3266 short * const ops = (short *) opbuf;
248ff010
NC
3267 short *o = ops;
3268 struct sembuf *temps, *t;
3269 I32 result;
3270
a02a5408 3271 Newx (temps, nsops, struct sembuf);
248ff010
NC
3272 t = temps;
3273 while (i--) {
3274 t->sem_num = *o++;
3275 t->sem_op = *o++;
3276 t->sem_flg = *o++;
3277 t++;
3278 }
3279 result = semop(id, temps, nsops);
248ff010
NC
3280 Safefree(temps);
3281 return result;
3282 }
e5d73d77 3283#else
fe13d51d 3284 /* diag_listed_as: sem%s not implemented */
cea2e8a9 3285 Perl_croak(aTHX_ "semop not implemented");
e5d73d77 3286#endif
c2ab57d4
LW
3287}
3288
79072805 3289I32
864dbfa3 3290Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 3291{
fe14fcc3 3292#ifdef HAS_SHM
4373e329 3293 char *shm;
c2ab57d4 3294 struct shmid_ds shmds;
6867be6d 3295 const I32 id = SvIVx(*++mark);
0bcc34c2
AL
3296 SV * const mstr = *++mark;
3297 const I32 mpos = SvIVx(*++mark);
3298 const I32 msize = SvIVx(*++mark);
7918f24d
NC
3299
3300 PERL_ARGS_ASSERT_DO_SHMIO;
890ce7af 3301 PERL_UNUSED_ARG(sp);
c2ab57d4 3302
748a9306 3303 SETERRNO(0,0);
c2ab57d4 3304 if (shmctl(id, IPC_STAT, &shmds) == -1)
1604cfb0 3305 return -1;
7f39519f 3306 if (mpos < 0 || msize < 0
1604cfb0
MS
3307 || (size_t)mpos + msize > (size_t)shmds.shm_segsz) {
3308 SETERRNO(EFAULT,SS_ACCVIO); /* can't do as caller requested */
3309 return -1;
c2ab57d4 3310 }
568fc267
JH
3311 if (id >= 0) {
3312 shm = (char *)shmat(id, NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
3313 } else {
3314 SETERRNO(EINVAL,LIB_INVARG);
3315 return -1;
3316 }
c2ab57d4 3317 if (shm == (char *)-1) /* I hate System V IPC, I really do */
1604cfb0 3318 return -1;
79072805 3319 if (optype == OP_SHMREAD) {
1604cfb0
MS
3320 char *mbuf;
3321 /* suppress warning when reading into undef var (tchrist 3/Mar/00) */
3322 SvGETMAGIC(mstr);
3323 SvUPGRADE(mstr, SVt_PV);
3324 if (! SvOK(mstr))
8062ff11 3325 SvPVCLEAR(mstr);
1604cfb0
MS
3326 SvPOK_only(mstr);
3327 mbuf = SvGROW(mstr, (STRLEN)msize+1);
a0d0e21e 3328
1604cfb0
MS
3329 Copy(shm + mpos, mbuf, msize, char);
3330 SvCUR_set(mstr, msize);
3331 *SvEND(mstr) = '\0';
3332 SvSETMAGIC(mstr);
3333 /* who knows who has been playing with this shared memory? */
3334 SvTAINTED_on(mstr);
c2ab57d4
LW
3335 }
3336 else {
1604cfb0 3337 STRLEN len;
c2ab57d4 3338
1604cfb0
MS
3339 const char *mbuf = SvPVbyte(mstr, len);
3340 const I32 n = ((I32)len > msize) ? msize : (I32)len;
3341 Copy(mbuf, shm + mpos, n, char);
3342 if (n < msize)
3343 memzero(shm + mpos + n, msize - n);
c2ab57d4
LW
3344 }
3345 return shmdt(shm);
e5d73d77 3346#else
fe13d51d 3347 /* diag_listed_as: shm%s not implemented */
cea2e8a9 3348 Perl_croak(aTHX_ "shm I/O not implemented");
7c522378 3349 return -1;
e5d73d77 3350#endif
c2ab57d4
LW
3351}
3352
fe14fcc3 3353#endif /* SYSV IPC */
4e35701f 3354
0d44d22b
NC
3355/*
3356=for apidoc start_glob
3357
3358Function called by C<do_readline> to spawn a glob (or do the glob inside
154e47c8 3359perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
25047fde
KW
3360this glob starter is only used by miniperl during the build process,
3361or when PERL_EXTERNAL_GLOB is defined.
75af9d73 3362Moving it away shrinks F<pp_hot.c>; shrinking F<pp_hot.c> helps speed perl up.
fab3f3a7 3363
0d44d22b
NC
3364=cut
3365*/
3366
3367PerlIO *
3368Perl_start_glob (pTHX_ SV *tmpglob, IO *io)
3369{
561b68a9 3370 SV * const tmpcmd = newSV(0);
0d44d22b 3371 PerlIO *fp;
41188aa0
TC
3372 STRLEN len;
3373 const char *s = SvPV(tmpglob, len);
7918f24d
NC
3374
3375 PERL_ARGS_ASSERT_START_GLOB;
3376
41188aa0 3377 if (!IS_SAFE_SYSCALL(s, len, "pattern", "glob"))
c8028aa6
TC
3378 return NULL;
3379
0d44d22b
NC
3380 ENTER;
3381 SAVEFREESV(tmpcmd);
3382#ifdef VMS /* expand the wildcards right here, rather than opening a pipe, */
3383 /* since spawning off a process is a real performance hit */
dca5a913 3384
1cc9774b
CB
3385PerlIO *
3386Perl_vms_start_glob
3387 (pTHX_ SV *tmpglob,
3388 IO *io);
3389
49a7a762 3390 fp = Perl_vms_start_glob(aTHX_ tmpglob, io);
dca5a913 3391
0d44d22b 3392#else /* !VMS */
4009c3ff
AC
3393# ifdef DOSISH
3394# if defined(OS2)
0d44d22b
NC
3395 sv_setpv(tmpcmd, "for a in ");
3396 sv_catsv(tmpcmd, tmpglob);
f8db7d5b 3397 sv_catpvs(tmpcmd, "; do echo \"$a\\0\\c\"; done |");
4009c3ff 3398# else
0d44d22b
NC
3399 sv_setpv(tmpcmd, "perlglob ");
3400 sv_catsv(tmpcmd, tmpglob);
f8db7d5b 3401 sv_catpvs(tmpcmd, " |");
4009c3ff
AC
3402# endif
3403# elif defined(CSH)
0d44d22b 3404 sv_setpvn(tmpcmd, PL_cshname, PL_cshlen);
f8db7d5b 3405 sv_catpvs(tmpcmd, " -cf 'set nonomatch; glob ");
0d44d22b 3406 sv_catsv(tmpcmd, tmpglob);
f8db7d5b 3407 sv_catpvs(tmpcmd, "' 2>/dev/null |");
4009c3ff 3408# else
0d44d22b
NC
3409 sv_setpv(tmpcmd, "echo ");
3410 sv_catsv(tmpcmd, tmpglob);
f8db7d5b 3411 sv_catpvs(tmpcmd, "|tr -s ' \t\f\r' '\\n\\n\\n\\n'|");
4009c3ff 3412# endif /* !DOSISH && !CSH */
93b2dae1 3413 {
acffc8af
FC
3414 SV ** const svp = hv_fetchs(GvHVn(PL_envgv), "LS_COLORS", 0);
3415 if (svp && *svp)
3416 save_helem_flags(GvHV(PL_envgv),
3417 newSVpvs_flags("LS_COLORS", SVs_TEMP), svp,
3418 SAVEf_SETMAGIC);
93b2dae1 3419 }
d5eb9a46
NC
3420 (void)do_open6(PL_last_in_gv, SvPVX_const(tmpcmd), SvCUR(tmpcmd),
3421 NULL, NULL, 0);
0d44d22b
NC
3422 fp = IoIFP(io);
3423#endif /* !VMS */
3424 LEAVE;
de7dabb6
TC
3425
3426 if (!fp && ckWARN(WARN_GLOB)) {
3427 Perl_warner(aTHX_ packWARN(WARN_GLOB), "glob failed (can't start child: %s)",
3428 Strerror(errno));
3429 }
3430
0d44d22b
NC
3431 return fp;
3432}
66610fdd
RGS
3433
3434/*
14d04a33 3435 * ex: set ts=8 sts=4 sw=4 et:
37442d52 3436 */