This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Squash COWs in the char* typemap
[perl5.git] / doio.c
1 /*    doio.c
2  *
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
5  *
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.
8  *
9  */
10
11 /*
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"]
18  */
19
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
25 #include "EXTERN.h"
26 #define PERL_IN_DOIO_C
27 #include "perl.h"
28
29 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
30 #ifndef HAS_SEM
31 #include <sys/ipc.h>
32 #endif
33 #ifdef HAS_MSG
34 #include <sys/msg.h>
35 #endif
36 #ifdef HAS_SHM
37 #include <sys/shm.h>
38 # ifndef HAS_SHMAT_PROTOTYPE
39     extern Shmat_t shmat (int, char *, int);
40 # endif
41 #endif
42 #endif
43
44 #ifdef I_UTIME
45 #  if defined(_MSC_VER) || defined(__MINGW32__)
46 #    include <sys/utime.h>
47 #  else
48 #    include <utime.h>
49 #  endif
50 #endif
51
52 #ifdef O_EXCL
53 #  define OPEN_EXCL O_EXCL
54 #else
55 #  define OPEN_EXCL 0
56 #endif
57
58 #define PERL_MODE_MAX 8
59 #define PERL_FLAGS_MAX 10
60
61 #include <signal.h>
62
63 bool
64 Perl_do_openn(pTHX_ GV *gv, const char *oname, I32 len, int as_raw,
65               int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp,
66               I32 num_svs)
67 {
68     dVAR;
69     IO * const io = GvIOn(gv);
70     PerlIO *saveifp = NULL;
71     PerlIO *saveofp = NULL;
72     int savefd = -1;
73     char savetype = IoTYPE_CLOSED;
74     int writing = 0;
75     PerlIO *fp;
76     int fd;
77     int result;
78     bool was_fdopen = FALSE;
79     bool in_raw = 0, in_crlf = 0, out_raw = 0, out_crlf = 0;
80     char *type  = NULL;
81     char mode[PERL_MODE_MAX];   /* file mode ("r\0", "rb\0", "ab\0" etc.) */
82     SV *namesv;
83
84     PERL_ARGS_ASSERT_DO_OPENN;
85
86     Zero(mode,sizeof(mode),char);
87     PL_forkprocess = 1;         /* assume true if no fork */
88
89     /* Collect default raw/crlf info from the op */
90     if (PL_op && PL_op->op_type == OP_OPEN) {
91         /* set up IO layers */
92         const U8 flags = PL_op->op_private;
93         in_raw = (flags & OPpOPEN_IN_RAW);
94         in_crlf = (flags & OPpOPEN_IN_CRLF);
95         out_raw = (flags & OPpOPEN_OUT_RAW);
96         out_crlf = (flags & OPpOPEN_OUT_CRLF);
97     }
98
99     /* If currently open - close before we re-open */
100     if (IoIFP(io)) {
101         fd = PerlIO_fileno(IoIFP(io));
102         if (IoTYPE(io) == IoTYPE_STD) {
103             /* This is a clone of one of STD* handles */
104             result = 0;
105         }
106         else if (fd >= 0 && fd <= PL_maxsysfd) {
107             /* This is one of the original STD* handles */
108             saveifp  = IoIFP(io);
109             saveofp  = IoOFP(io);
110             savetype = IoTYPE(io);
111             savefd   = fd;
112             result   = 0;
113         }
114         else if (IoTYPE(io) == IoTYPE_PIPE)
115             result = PerlProc_pclose(IoIFP(io));
116         else if (IoIFP(io) != IoOFP(io)) {
117             if (IoOFP(io)) {
118                 result = PerlIO_close(IoOFP(io));
119                 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
120             }
121             else
122                 result = PerlIO_close(IoIFP(io));
123         }
124         else
125             result = PerlIO_close(IoIFP(io));
126         if (result == EOF && fd > PL_maxsysfd) {
127             /* Why is this not Perl_warn*() call ? */
128             PerlIO_printf(Perl_error_log,
129                 "Warning: unable to close filehandle %"HEKf" properly.\n",
130                  HEKfARG(GvENAME_HEK(gv))
131             );
132         }
133         IoOFP(io) = IoIFP(io) = NULL;
134     }
135
136     if (as_raw) {
137         /* sysopen style args, i.e. integer mode and permissions */
138         STRLEN ix = 0;
139         const int appendtrunc =
140              0
141 #ifdef O_APPEND /* Not fully portable. */
142              |O_APPEND
143 #endif
144 #ifdef O_TRUNC  /* Not fully portable. */
145              |O_TRUNC
146 #endif
147              ;
148         const int modifyingmode = O_WRONLY|O_RDWR|O_CREAT|appendtrunc;
149         int ismodifying;
150
151         if (num_svs != 0) {
152             Perl_croak(aTHX_ "panic: sysopen with multiple args, num_svs=%ld",
153                        (long) num_svs);
154         }
155         /* It's not always
156
157            O_RDONLY 0
158            O_WRONLY 1
159            O_RDWR   2
160
161            It might be (in OS/390 and Mac OS Classic it is)
162
163            O_WRONLY 1
164            O_RDONLY 2
165            O_RDWR   3
166
167            This means that simple & with O_RDWR would look
168            like O_RDONLY is present.  Therefore we have to
169            be more careful.
170         */
171         if ((ismodifying = (rawmode & modifyingmode))) {
172              if ((ismodifying & O_WRONLY) == O_WRONLY ||
173                  (ismodifying & O_RDWR)   == O_RDWR   ||
174                  (ismodifying & (O_CREAT|appendtrunc)))
175                   TAINT_PROPER("sysopen");
176         }
177         mode[ix++] = IoTYPE_NUMERIC; /* Marker to openn to use numeric "sysopen" */
178
179 #if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE)
180         rawmode |= O_LARGEFILE; /* Transparently largefiley. */
181 #endif
182
183         IoTYPE(io) = PerlIO_intmode2str(rawmode, &mode[ix], &writing);
184
185         namesv = newSVpvn_flags(oname, len, SVs_TEMP);
186         num_svs = 1;
187         svp = &namesv;
188         type = NULL;
189         fp = PerlIO_openn(aTHX_ type, mode, -1, rawmode, rawperm, NULL, num_svs, svp);
190     }
191     else {
192         /* Regular (non-sys) open */
193         char *name;
194         STRLEN olen = len;
195         char *tend;
196         int dodup = 0;
197
198         type = savepvn(oname, len);
199         tend = type+len;
200         SAVEFREEPV(type);
201
202         /* Lose leading and trailing white space */
203         while (isSPACE(*type))
204             type++;
205         while (tend > type && isSPACE(tend[-1]))
206             *--tend = '\0';
207
208         if (num_svs) {
209             const char *p;
210             STRLEN nlen = 0;
211             /* New style explicit name, type is just mode and layer info */
212 #ifdef USE_STDIO
213             if (SvROK(*svp) && !strchr(oname,'&')) {
214                 if (ckWARN(WARN_IO))
215                     Perl_warner(aTHX_ packWARN(WARN_IO),
216                             "Can't open a reference");
217                 SETERRNO(EINVAL, LIB_INVARG);
218                 goto say_false;
219             }
220 #endif /* USE_STDIO */
221             p = (SvOK(*svp) || SvGMAGICAL(*svp)) ? SvPV(*svp, nlen) : NULL;
222
223             if (p && !IS_SAFE_PATHNAME(p, nlen, "open"))
224                 goto say_false;
225
226             name = p ? savepvn(p, nlen) : savepvs("");
227
228             SAVEFREEPV(name);
229         }
230         else {
231             name = type;
232             len  = tend-type;
233         }
234         IoTYPE(io) = *type;
235         if ((*type == IoTYPE_RDWR) && /* scary */
236            (*(type+1) == IoTYPE_RDONLY || *(type+1) == IoTYPE_WRONLY) &&
237             ((!num_svs || (tend > type+1 && tend[-1] != IoTYPE_PIPE)))) {
238             TAINT_PROPER("open");
239             mode[1] = *type++;
240             writing = 1;
241         }
242
243         if (*type == IoTYPE_PIPE) {
244             if (num_svs) {
245                 if (type[1] != IoTYPE_STD) {
246                   unknown_open_mode:
247                     Perl_croak(aTHX_ "Unknown open() mode '%.*s'", (int)olen, oname);
248                 }
249                 type++;
250             }
251             do {
252                 type++;
253             } while (isSPACE(*type));
254             if (!num_svs) {
255                 name = type;
256                 len = tend-type;
257             }
258             if (*name == '\0') {
259                 /* command is missing 19990114 */
260                 if (ckWARN(WARN_PIPE))
261                     Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
262                 errno = EPIPE;
263                 goto say_false;
264             }
265             if (!(*name == '-' && name[1] == '\0') || num_svs)
266                 TAINT_ENV();
267             TAINT_PROPER("piped open");
268             if (!num_svs && name[len-1] == '|') {
269                 name[--len] = '\0' ;
270                 if (ckWARN(WARN_PIPE))
271                     Perl_warner(aTHX_ packWARN(WARN_PIPE), "Can't open bidirectional pipe");
272             }
273             mode[0] = 'w';
274             writing = 1;
275             if (out_raw)
276                 mode[1] = 'b';
277             else if (out_crlf)
278                 mode[1] = 't';
279             if (num_svs > 1) {
280                 fp = PerlProc_popen_list(mode, num_svs, svp);
281             }
282             else {
283                 fp = PerlProc_popen(name,mode);
284             }
285             if (num_svs) {
286                 if (*type) {
287                     if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
288                         goto say_false;
289                     }
290                 }
291             }
292         } /* IoTYPE_PIPE */
293         else if (*type == IoTYPE_WRONLY) {
294             TAINT_PROPER("open");
295             type++;
296             if (*type == IoTYPE_WRONLY) {
297                 /* Two IoTYPE_WRONLYs in a row make for an IoTYPE_APPEND. */
298                 mode[0] = IoTYPE(io) = IoTYPE_APPEND;
299                 type++;
300             }
301             else {
302                 mode[0] = 'w';
303             }
304             writing = 1;
305
306             if (out_raw)
307                 mode[1] = 'b';
308             else if (out_crlf)
309                 mode[1] = 't';
310             if (*type == '&') {
311               duplicity:
312                 dodup = PERLIO_DUP_FD;
313                 type++;
314                 if (*type == '=') {
315                     dodup = 0;
316                     type++;
317                 }
318                 if (!num_svs && !*type && supplied_fp) {
319                     /* "<+&" etc. is used by typemaps */
320                     fp = supplied_fp;
321                 }
322                 else {
323                     PerlIO *that_fp = NULL;
324                     if (num_svs > 1) {
325                         /* diag_listed_as: More than one argument to '%s' open */
326                         Perl_croak(aTHX_ "More than one argument to '%c&' open",IoTYPE(io));
327                     }
328                     while (isSPACE(*type))
329                         type++;
330                     if (num_svs && (
331                              SvIOK(*svp)
332                           || (SvPOKp(*svp) && looks_like_number(*svp))
333                        )) {
334                         fd = SvUV(*svp);
335                         num_svs = 0;
336                     }
337                     else if (isDIGIT(*type)) {
338                         fd = atoi(type);
339                     }
340                     else {
341                         const IO* thatio;
342                         if (num_svs) {
343                             thatio = sv_2io(*svp);
344                         }
345                         else {
346                             GV * const thatgv = gv_fetchpvn_flags(type, tend - type,
347                                                        0, SVt_PVIO);
348                             thatio = GvIO(thatgv);
349                         }
350                         if (!thatio) {
351 #ifdef EINVAL
352                             SETERRNO(EINVAL,SS_IVCHAN);
353 #endif
354                             goto say_false;
355                         }
356                         if ((that_fp = IoIFP(thatio))) {
357                             /* Flush stdio buffer before dup. --mjd
358                              * Unfortunately SEEK_CURing 0 seems to
359                              * be optimized away on most platforms;
360                              * only Solaris and Linux seem to flush
361                              * on that. --jhi */
362 #ifdef USE_SFIO
363                             /* sfio fails to clear error on next
364                                sfwrite, contrary to documentation.
365                                -- Nicholas Clark */
366                             if (PerlIO_seek(that_fp, 0, SEEK_CUR) == -1)
367                                 PerlIO_clearerr(that_fp);
368 #endif
369                             /* On the other hand, do all platforms
370                              * take gracefully to flushing a read-only
371                              * filehandle?  Perhaps we should do
372                              * fsetpos(src)+fgetpos(dst)?  --nik */
373                             PerlIO_flush(that_fp);
374                             fd = PerlIO_fileno(that_fp);
375                             /* When dup()ing STDIN, STDOUT or STDERR
376                              * explicitly set appropriate access mode */
377                             if (that_fp == PerlIO_stdout()
378                                 || that_fp == PerlIO_stderr())
379                                 IoTYPE(io) = IoTYPE_WRONLY;
380                             else if (that_fp == PerlIO_stdin())
381                                 IoTYPE(io) = IoTYPE_RDONLY;
382                             /* When dup()ing a socket, say result is
383                              * one as well */
384                             else if (IoTYPE(thatio) == IoTYPE_SOCKET)
385                                 IoTYPE(io) = IoTYPE_SOCKET;
386                         }
387                         else
388                             fd = -1;
389                     }
390                     if (!num_svs)
391                         type = NULL;
392                     if (that_fp) {
393                         fp = PerlIO_fdupopen(aTHX_ that_fp, NULL, dodup);
394                     }
395                     else {
396                         if (dodup)
397                             fd = PerlLIO_dup(fd);
398                         else
399                             was_fdopen = TRUE;
400                         if (!(fp = PerlIO_openn(aTHX_ type,mode,fd,0,0,NULL,num_svs,svp))) {
401                             if (dodup && fd >= 0)
402                                 PerlLIO_close(fd);
403                         }
404                     }
405                 }
406             } /* & */
407             else {
408                 while (isSPACE(*type))
409                     type++;
410                 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
411                     type++;
412                     fp = PerlIO_stdout();
413                     IoTYPE(io) = IoTYPE_STD;
414                     if (num_svs > 1) {
415                         /* diag_listed_as: More than one argument to '%s' open */
416                         Perl_croak(aTHX_ "More than one argument to '>%c' open",IoTYPE_STD);
417                     }
418                 }
419                 else  {
420                     if (!num_svs) {
421                         namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
422                         num_svs = 1;
423                         svp = &namesv;
424                         type = NULL;
425                     }
426                     fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
427                 }
428             } /* !& */
429             if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
430                goto unknown_open_mode;
431         } /* IoTYPE_WRONLY */
432         else if (*type == IoTYPE_RDONLY) {
433             do {
434                 type++;
435             } while (isSPACE(*type));
436             mode[0] = 'r';
437             if (in_raw)
438                 mode[1] = 'b';
439             else if (in_crlf)
440                 mode[1] = 't';
441             if (*type == '&') {
442                 goto duplicity;
443             }
444             if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
445                 type++;
446                 fp = PerlIO_stdin();
447                 IoTYPE(io) = IoTYPE_STD;
448                 if (num_svs > 1) {
449                     /* diag_listed_as: More than one argument to '%s' open */
450                     Perl_croak(aTHX_ "More than one argument to '<%c' open",IoTYPE_STD);
451                 }
452             }
453             else {
454                 if (!num_svs) {
455                     namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
456                     num_svs = 1;
457                     svp = &namesv;
458                     type = NULL;
459                 }
460                 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
461             }
462             if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
463                goto unknown_open_mode;
464         } /* IoTYPE_RDONLY */
465         else if ((num_svs && /* '-|...' or '...|' */
466                   type[0] == IoTYPE_STD && type[1] == IoTYPE_PIPE) ||
467                  (!num_svs && tend > type+1 && tend[-1] == IoTYPE_PIPE)) {
468             if (num_svs) {
469                 type += 2;   /* skip over '-|' */
470             }
471             else {
472                 *--tend = '\0';
473                 while (tend > type && isSPACE(tend[-1]))
474                     *--tend = '\0';
475                 for (; isSPACE(*type); type++)
476                     ;
477                 name = type;
478                 len  = tend-type;
479             }
480             if (*name == '\0') {
481                 /* command is missing 19990114 */
482                 if (ckWARN(WARN_PIPE))
483                     Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
484                 errno = EPIPE;
485                 goto say_false;
486             }
487             if (!(*name == '-' && name[1] == '\0') || num_svs)
488                 TAINT_ENV();
489             TAINT_PROPER("piped open");
490             mode[0] = 'r';
491
492             if (in_raw)
493                 mode[1] = 'b';
494             else if (in_crlf)
495                 mode[1] = 't';
496
497             if (num_svs > 1) {
498                 fp = PerlProc_popen_list(mode,num_svs,svp);
499             }
500             else {
501                 fp = PerlProc_popen(name,mode);
502             }
503             IoTYPE(io) = IoTYPE_PIPE;
504             if (num_svs) {
505                 while (isSPACE(*type))
506                     type++;
507                 if (*type) {
508                     if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
509                         goto say_false;
510                     }
511                 }
512             }
513         }
514         else { /* layer(Args) */
515             if (num_svs)
516                 goto unknown_open_mode;
517             name = type;
518             IoTYPE(io) = IoTYPE_RDONLY;
519             for (; isSPACE(*name); name++)
520                 ;
521             mode[0] = 'r';
522
523             if (in_raw)
524                 mode[1] = 'b';
525             else if (in_crlf)
526                 mode[1] = 't';
527
528             if (*name == '-' && name[1] == '\0') {
529                 fp = PerlIO_stdin();
530                 IoTYPE(io) = IoTYPE_STD;
531             }
532             else {
533                 if (!num_svs) {
534                     namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
535                     num_svs = 1;
536                     svp = &namesv;
537                     type = NULL;
538                 }
539                 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
540             }
541         }
542     }
543     if (!fp) {
544         if (IoTYPE(io) == IoTYPE_RDONLY && ckWARN(WARN_NEWLINE)
545             && strchr(oname, '\n')
546             
547         )
548             Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
549         goto say_false;
550     }
551
552     if (ckWARN(WARN_IO)) {
553         if ((IoTYPE(io) == IoTYPE_RDONLY) &&
554             (fp == PerlIO_stdout() || fp == PerlIO_stderr())) {
555                 Perl_warner(aTHX_ packWARN(WARN_IO),
556                             "Filehandle STD%s reopened as %"HEKf
557                             " only for input",
558                             ((fp == PerlIO_stdout()) ? "OUT" : "ERR"),
559                             HEKfARG(GvENAME_HEK(gv)));
560         }
561         else if ((IoTYPE(io) == IoTYPE_WRONLY) && fp == PerlIO_stdin()) {
562                 Perl_warner(aTHX_ packWARN(WARN_IO),
563                     "Filehandle STDIN reopened as %"HEKf" only for output",
564                      HEKfARG(GvENAME_HEK(gv))
565                 );
566         }
567     }
568
569     fd = PerlIO_fileno(fp);
570     /* If there is no fd (e.g. PerlIO::scalar) assume it isn't a
571      * socket - this covers PerlIO::scalar - otherwise unless we "know" the
572      * type probe for socket-ness.
573      */
574     if (IoTYPE(io) && IoTYPE(io) != IoTYPE_PIPE && IoTYPE(io) != IoTYPE_STD && fd >= 0) {
575         if (PerlLIO_fstat(fd,&PL_statbuf) < 0) {
576             /* If PerlIO claims to have fd we had better be able to fstat() it. */
577             (void) PerlIO_close(fp);
578             goto say_false;
579         }
580 #ifndef PERL_MICRO
581         if (S_ISSOCK(PL_statbuf.st_mode))
582             IoTYPE(io) = IoTYPE_SOCKET; /* in case a socket was passed in to us */
583 #ifdef HAS_SOCKET
584         else if (
585 #ifdef S_IFMT
586             !(PL_statbuf.st_mode & S_IFMT)
587 #else
588             !PL_statbuf.st_mode
589 #endif
590             && IoTYPE(io) != IoTYPE_WRONLY  /* Dups of STD* filehandles already have */
591             && IoTYPE(io) != IoTYPE_RDONLY  /* type so they aren't marked as sockets */
592         ) {                                 /* on OS's that return 0 on fstat()ed pipe */
593              char tmpbuf[256];
594              Sock_size_t buflen = sizeof tmpbuf;
595              if (PerlSock_getsockname(fd, (struct sockaddr *)tmpbuf, &buflen) >= 0
596                       || errno != ENOTSOCK)
597                     IoTYPE(io) = IoTYPE_SOCKET; /* some OS's return 0 on fstat()ed socket */
598                                                 /* but some return 0 for streams too, sigh */
599         }
600 #endif /* HAS_SOCKET */
601 #endif /* !PERL_MICRO */
602     }
603
604     /* Eeek - FIXME !!!
605      * If this is a standard handle we discard all the layer stuff
606      * and just dup the fd into whatever was on the handle before !
607      */
608
609     if (saveifp) {              /* must use old fp? */
610         /* If fd is less that PL_maxsysfd i.e. STDIN..STDERR
611            then dup the new fileno down
612          */
613         if (saveofp) {
614             PerlIO_flush(saveofp);      /* emulate PerlIO_close() */
615             if (saveofp != saveifp) {   /* was a socket? */
616                 PerlIO_close(saveofp);
617             }
618         }
619         if (savefd != fd) {
620             /* Still a small can-of-worms here if (say) PerlIO::scalar
621                is assigned to (say) STDOUT - for now let dup2() fail
622                and provide the error
623              */
624             if (PerlLIO_dup2(fd, savefd) < 0) {
625                 (void)PerlIO_close(fp);
626                 goto say_false;
627             }
628 #ifdef VMS
629             if (savefd != PerlIO_fileno(PerlIO_stdin())) {
630                 char newname[FILENAME_MAX+1];
631                 if (PerlIO_getname(fp, newname)) {
632                     if (fd == PerlIO_fileno(PerlIO_stdout()))
633                         vmssetuserlnm("SYS$OUTPUT", newname);
634                     if (fd == PerlIO_fileno(PerlIO_stderr()))
635                         vmssetuserlnm("SYS$ERROR", newname);
636                 }
637             }
638 #endif
639
640 #if !defined(WIN32)
641            /* PL_fdpid isn't used on Windows, so avoid this useless work.
642             * XXX Probably the same for a lot of other places. */
643             {
644                 Pid_t pid;
645                 SV *sv;
646
647                 sv = *av_fetch(PL_fdpid,fd,TRUE);
648                 SvUPGRADE(sv, SVt_IV);
649                 pid = SvIVX(sv);
650                 SvIV_set(sv, 0);
651                 sv = *av_fetch(PL_fdpid,savefd,TRUE);
652                 SvUPGRADE(sv, SVt_IV);
653                 SvIV_set(sv, pid);
654             }
655 #endif
656
657             if (was_fdopen) {
658                 /* need to close fp without closing underlying fd */
659                 int ofd = PerlIO_fileno(fp);
660                 int dupfd = PerlLIO_dup(ofd);
661 #if defined(HAS_FCNTL) && defined(F_SETFD)
662                 /* Assume if we have F_SETFD we have F_GETFD */
663                 int coe = fcntl(ofd,F_GETFD);
664 #endif
665                 PerlIO_close(fp);
666                 PerlLIO_dup2(dupfd,ofd);
667 #if defined(HAS_FCNTL) && defined(F_SETFD)
668                 /* The dup trick has lost close-on-exec on ofd */
669                 fcntl(ofd,F_SETFD, coe);
670 #endif
671                 PerlLIO_close(dupfd);
672             }
673             else
674                 PerlIO_close(fp);
675         }
676         fp = saveifp;
677         PerlIO_clearerr(fp);
678         fd = PerlIO_fileno(fp);
679     }
680 #if defined(HAS_FCNTL) && defined(F_SETFD)
681     if (fd >= 0) {
682         dSAVE_ERRNO;
683         fcntl(fd,F_SETFD,fd > PL_maxsysfd); /* can change errno */
684         RESTORE_ERRNO;
685     }
686 #endif
687     IoIFP(io) = fp;
688
689     IoFLAGS(io) &= ~IOf_NOLINE;
690     if (writing) {
691         if (IoTYPE(io) == IoTYPE_SOCKET
692             || (IoTYPE(io) == IoTYPE_WRONLY && fd >= 0 && S_ISCHR(PL_statbuf.st_mode)) ) {
693             char *s = mode;
694             if (*s == IoTYPE_IMPLICIT || *s == IoTYPE_NUMERIC)
695               s++;
696             *s = 'w';
697             if (!(IoOFP(io) = PerlIO_openn(aTHX_ type,s,fd,0,0,NULL,0,svp))) {
698                 PerlIO_close(fp);
699                 IoIFP(io) = NULL;
700                 goto say_false;
701             }
702         }
703         else
704             IoOFP(io) = fp;
705     }
706     return TRUE;
707
708 say_false:
709     IoIFP(io) = saveifp;
710     IoOFP(io) = saveofp;
711     IoTYPE(io) = savetype;
712     return FALSE;
713 }
714
715 PerlIO *
716 Perl_nextargv(pTHX_ GV *gv)
717 {
718     dVAR;
719     SV *sv;
720 #ifndef FLEXFILENAMES
721     int filedev;
722     int fileino;
723 #endif
724     Uid_t fileuid;
725     Gid_t filegid;
726     IO * const io = GvIOp(gv);
727
728     PERL_ARGS_ASSERT_NEXTARGV;
729
730     if (!PL_argvoutgv)
731         PL_argvoutgv = gv_fetchpvs("ARGVOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO);
732     if (io && (IoFLAGS(io) & IOf_ARGV) && (IoFLAGS(io) & IOf_START)) {
733         IoFLAGS(io) &= ~IOf_START;
734         if (PL_inplace) {
735             assert(PL_defoutgv);
736             Perl_av_create_and_push(aTHX_ &PL_argvout_stack,
737                                     SvREFCNT_inc_simple_NN(PL_defoutgv));
738         }
739     }
740     if (PL_filemode & (S_ISUID|S_ISGID)) {
741         PerlIO_flush(IoIFP(GvIOn(PL_argvoutgv)));  /* chmod must follow last write */
742 #ifdef HAS_FCHMOD
743         if (PL_lastfd != -1)
744             (void)fchmod(PL_lastfd,PL_filemode);
745 #else
746         (void)PerlLIO_chmod(PL_oldname,PL_filemode);
747 #endif
748     }
749     PL_lastfd = -1;
750     PL_filemode = 0;
751     if (!GvAV(gv))
752         return NULL;
753     while (av_len(GvAV(gv)) >= 0) {
754         STRLEN oldlen;
755         sv = av_shift(GvAV(gv));
756         SAVEFREESV(sv);
757         SvTAINTED_off(GvSVn(gv)); /* previous tainting irrelevant */
758         sv_setsv(GvSVn(gv),sv);
759         SvSETMAGIC(GvSV(gv));
760         PL_oldname = SvPVx(GvSV(gv), oldlen);
761         if (do_open(gv,PL_oldname,oldlen,PL_inplace!=0,O_RDONLY,0,NULL)) {
762             if (PL_inplace) {
763                 TAINT_PROPER("inplace open");
764                 if (oldlen == 1 && *PL_oldname == '-') {
765                     setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL,
766                                           SVt_PVIO));
767                     return IoIFP(GvIOp(gv));
768                 }
769 #ifndef FLEXFILENAMES
770                 filedev = PL_statbuf.st_dev;
771                 fileino = PL_statbuf.st_ino;
772 #endif
773                 PL_filemode = PL_statbuf.st_mode;
774                 fileuid = PL_statbuf.st_uid;
775                 filegid = PL_statbuf.st_gid;
776                 if (!S_ISREG(PL_filemode)) {
777                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
778                                      "Can't do inplace edit: %s is not a regular file",
779                                      PL_oldname );
780                     do_close(gv,FALSE);
781                     continue;
782                 }
783                 if (*PL_inplace && strNE(PL_inplace, "*")) {
784                     const char *star = strchr(PL_inplace, '*');
785                     if (star) {
786                         const char *begin = PL_inplace;
787                         sv_setpvs(sv, "");
788                         do {
789                             sv_catpvn(sv, begin, star - begin);
790                             sv_catpvn(sv, PL_oldname, oldlen);
791                             begin = ++star;
792                         } while ((star = strchr(begin, '*')));
793                         if (*begin)
794                             sv_catpv(sv,begin);
795                     }
796                     else {
797                         sv_catpv(sv,PL_inplace);
798                     }
799 #ifndef FLEXFILENAMES
800                     if ((PerlLIO_stat(SvPVX_const(sv),&PL_statbuf) >= 0
801                          && PL_statbuf.st_dev == filedev
802                          && PL_statbuf.st_ino == fileino)
803 #ifdef DJGPP
804                         || ((_djstat_fail_bits & _STFAIL_TRUENAME)!=0)
805 #endif
806                       )
807                     {
808                         Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
809                                          "Can't do inplace edit: %"SVf" would not be unique",
810                                          SVfARG(sv));
811                         do_close(gv,FALSE);
812                         continue;
813                     }
814 #endif
815 #ifdef HAS_RENAME
816 #if !defined(DOSISH) && !defined(__CYGWIN__)
817                     if (PerlLIO_rename(PL_oldname,SvPVX_const(sv)) < 0) {
818                         Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
819                                          "Can't rename %s to %"SVf": %s, skipping file",
820                                          PL_oldname, SVfARG(sv), Strerror(errno));
821                         do_close(gv,FALSE);
822                         continue;
823                     }
824 #else
825                     do_close(gv,FALSE);
826                     (void)PerlLIO_unlink(SvPVX_const(sv));
827                     (void)PerlLIO_rename(PL_oldname,SvPVX_const(sv));
828                     do_open(gv,(char*)SvPVX_const(sv),SvCUR(sv),TRUE,O_RDONLY,0,NULL);
829 #endif /* DOSISH */
830 #else
831                     (void)UNLINK(SvPVX_const(sv));
832                     if (link(PL_oldname,SvPVX_const(sv)) < 0) {
833                         Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
834                                          "Can't rename %s to %"SVf": %s, skipping file",
835                                          PL_oldname, SVfARG(sv), Strerror(errno) );
836                         do_close(gv,FALSE);
837                         continue;
838                     }
839                     (void)UNLINK(PL_oldname);
840 #endif
841                 }
842                 else {
843 #if !defined(DOSISH) && !defined(AMIGAOS)
844 #  ifndef VMS  /* Don't delete; use automatic file versioning */
845                     if (UNLINK(PL_oldname) < 0) {
846                         Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
847                                          "Can't remove %s: %s, skipping file",
848                                          PL_oldname, Strerror(errno) );
849                         do_close(gv,FALSE);
850                         continue;
851                     }
852 #  endif
853 #else
854                     Perl_croak(aTHX_ "Can't do inplace edit without backup");
855 #endif
856                 }
857
858                 sv_setpvn(sv,PL_oldname,oldlen);
859                 SETERRNO(0,0);          /* in case sprintf set errno */
860                 if (!Perl_do_openn(aTHX_ PL_argvoutgv, (char*)SvPVX_const(sv),
861                                    SvCUR(sv), TRUE,
862 #ifdef VMS
863                                    O_WRONLY|O_CREAT|O_TRUNC,0,
864 #else
865                                    O_WRONLY|O_CREAT|OPEN_EXCL,0600,
866 #endif
867                                    NULL, NULL, 0)) {
868                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE), "Can't do inplace edit on %s: %s",
869                                      PL_oldname, Strerror(errno) );
870                     do_close(gv,FALSE);
871                     continue;
872                 }
873                 setdefout(PL_argvoutgv);
874                 PL_lastfd = PerlIO_fileno(IoIFP(GvIOp(PL_argvoutgv)));
875                 (void)PerlLIO_fstat(PL_lastfd,&PL_statbuf);
876 #ifdef HAS_FCHMOD
877                 (void)fchmod(PL_lastfd,PL_filemode);
878 #else
879                 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
880 #endif
881                 if (fileuid != PL_statbuf.st_uid || filegid != PL_statbuf.st_gid) {
882 #ifdef HAS_FCHOWN
883                     (void)fchown(PL_lastfd,fileuid,filegid);
884 #else
885 #ifdef HAS_CHOWN
886                     (void)PerlLIO_chown(PL_oldname,fileuid,filegid);
887 #endif
888 #endif
889                 }
890             }
891             return IoIFP(GvIOp(gv));
892         }
893         else {
894             if (ckWARN_d(WARN_INPLACE)) {
895                 const int eno = errno;
896                 if (PerlLIO_stat(PL_oldname, &PL_statbuf) >= 0
897                     && !S_ISREG(PL_statbuf.st_mode))    
898                 {
899                     Perl_warner(aTHX_ packWARN(WARN_INPLACE),
900                                 "Can't do inplace edit: %s is not a regular file",
901                                 PL_oldname);
902                 }
903                 else
904                     Perl_warner(aTHX_ packWARN(WARN_INPLACE), "Can't open %s: %s",
905                                 PL_oldname, Strerror(eno));
906             }
907         }
908     }
909     if (io && (IoFLAGS(io) & IOf_ARGV))
910         IoFLAGS(io) |= IOf_START;
911     if (PL_inplace) {
912         (void)do_close(PL_argvoutgv,FALSE);
913         if (io && (IoFLAGS(io) & IOf_ARGV)
914             && PL_argvout_stack && AvFILLp(PL_argvout_stack) >= 0)
915         {
916             GV * const oldout = MUTABLE_GV(av_pop(PL_argvout_stack));
917             setdefout(oldout);
918             SvREFCNT_dec_NN(oldout);
919             return NULL;
920         }
921         setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO));
922     }
923     return NULL;
924 }
925
926 /* explicit renamed to avoid C++ conflict    -- kja */
927 bool
928 Perl_do_close(pTHX_ GV *gv, bool not_implicit)
929 {
930     dVAR;
931     bool retval;
932     IO *io;
933
934     if (!gv)
935         gv = PL_argvgv;
936     if (!gv || !isGV_with_GP(gv)) {
937         if (not_implicit)
938             SETERRNO(EBADF,SS_IVCHAN);
939         return FALSE;
940     }
941     io = GvIO(gv);
942     if (!io) {          /* never opened */
943         if (not_implicit) {
944             report_evil_fh(gv);
945             SETERRNO(EBADF,SS_IVCHAN);
946         }
947         return FALSE;
948     }
949     retval = io_close(io, not_implicit);
950     if (not_implicit) {
951         IoLINES(io) = 0;
952         IoPAGE(io) = 0;
953         IoLINES_LEFT(io) = IoPAGE_LEN(io);
954     }
955     IoTYPE(io) = IoTYPE_CLOSED;
956     return retval;
957 }
958
959 bool
960 Perl_io_close(pTHX_ IO *io, bool not_implicit)
961 {
962     dVAR;
963     bool retval = FALSE;
964
965     PERL_ARGS_ASSERT_IO_CLOSE;
966
967     if (IoIFP(io)) {
968         if (IoTYPE(io) == IoTYPE_PIPE) {
969             const int status = PerlProc_pclose(IoIFP(io));
970             if (not_implicit) {
971                 STATUS_NATIVE_CHILD_SET(status);
972                 retval = (STATUS_UNIX == 0);
973             }
974             else {
975                 retval = (status != -1);
976             }
977         }
978         else if (IoTYPE(io) == IoTYPE_STD)
979             retval = TRUE;
980         else {
981             if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {          /* a socket */
982                 const bool prev_err = PerlIO_error(IoOFP(io));
983                 retval = (PerlIO_close(IoOFP(io)) != EOF && !prev_err);
984                 PerlIO_close(IoIFP(io));        /* clear stdio, fd already closed */
985             }
986             else {
987                 const bool prev_err = PerlIO_error(IoIFP(io));
988                 retval = (PerlIO_close(IoIFP(io)) != EOF && !prev_err);
989             }
990         }
991         IoOFP(io) = IoIFP(io) = NULL;
992     }
993     else if (not_implicit) {
994         SETERRNO(EBADF,SS_IVCHAN);
995     }
996
997     return retval;
998 }
999
1000 bool
1001 Perl_do_eof(pTHX_ GV *gv)
1002 {
1003     dVAR;
1004     IO * const io = GvIO(gv);
1005
1006     PERL_ARGS_ASSERT_DO_EOF;
1007
1008     if (!io)
1009         return TRUE;
1010     else if (IoTYPE(io) == IoTYPE_WRONLY)
1011         report_wrongway_fh(gv, '>');
1012
1013     while (IoIFP(io)) {
1014         if (PerlIO_has_cntptr(IoIFP(io))) {     /* (the code works without this) */
1015             if (PerlIO_get_cnt(IoIFP(io)) > 0)  /* cheat a little, since */
1016                 return FALSE;                   /* this is the most usual case */
1017         }
1018
1019         {
1020              /* getc and ungetc can stomp on errno */
1021             dSAVE_ERRNO;
1022             const int ch = PerlIO_getc(IoIFP(io));
1023             if (ch != EOF) {
1024                 (void)PerlIO_ungetc(IoIFP(io),ch);
1025                 RESTORE_ERRNO;
1026                 return FALSE;
1027             }
1028             RESTORE_ERRNO;
1029         }
1030
1031         if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
1032             if (PerlIO_get_cnt(IoIFP(io)) < -1)
1033                 PerlIO_set_cnt(IoIFP(io),-1);
1034         }
1035         if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
1036             if (gv != PL_argvgv || !nextargv(gv))       /* get another fp handy */
1037                 return TRUE;
1038         }
1039         else
1040             return TRUE;                /* normal fp, definitely end of file */
1041     }
1042     return TRUE;
1043 }
1044
1045 Off_t
1046 Perl_do_tell(pTHX_ GV *gv)
1047 {
1048     dVAR;
1049     IO *const io = GvIO(gv);
1050     PerlIO *fp;
1051
1052     PERL_ARGS_ASSERT_DO_TELL;
1053
1054     if (io && (fp = IoIFP(io))) {
1055         return PerlIO_tell(fp);
1056     }
1057     report_evil_fh(gv);
1058     SETERRNO(EBADF,RMS_IFI);
1059     return (Off_t)-1;
1060 }
1061
1062 bool
1063 Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence)
1064 {
1065     dVAR;
1066     IO *const io = GvIO(gv);
1067     PerlIO *fp;
1068
1069     if (io && (fp = IoIFP(io))) {
1070         return PerlIO_seek(fp, pos, whence) >= 0;
1071     }
1072     report_evil_fh(gv);
1073     SETERRNO(EBADF,RMS_IFI);
1074     return FALSE;
1075 }
1076
1077 Off_t
1078 Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence)
1079 {
1080     dVAR;
1081     IO *const io = GvIO(gv);
1082     PerlIO *fp;
1083
1084     PERL_ARGS_ASSERT_DO_SYSSEEK;
1085
1086     if (io && (fp = IoIFP(io)))
1087         return PerlLIO_lseek(PerlIO_fileno(fp), pos, whence);
1088     report_evil_fh(gv);
1089     SETERRNO(EBADF,RMS_IFI);
1090     return (Off_t)-1;
1091 }
1092
1093 int
1094 Perl_mode_from_discipline(pTHX_ const char *s, STRLEN len)
1095 {
1096     int mode = O_BINARY;
1097     if (s) {
1098         while (*s) {
1099             if (*s == ':') {
1100                 switch (s[1]) {
1101                 case 'r':
1102                     if (s[2] == 'a' && s[3] == 'w'
1103                         && (!s[4] || s[4] == ':' || isSPACE(s[4])))
1104                     {
1105                         mode = O_BINARY;
1106                         s += 4;
1107                         len -= 4;
1108                         break;
1109                     }
1110                     /* FALL THROUGH */
1111                 case 'c':
1112                     if (s[2] == 'r' && s[3] == 'l' && s[4] == 'f'
1113                         && (!s[5] || s[5] == ':' || isSPACE(s[5])))
1114                     {
1115                         mode = O_TEXT;
1116                         s += 5;
1117                         len -= 5;
1118                         break;
1119                     }
1120                     /* FALL THROUGH */
1121                 default:
1122                     goto fail_discipline;
1123                 }
1124             }
1125             else if (isSPACE(*s)) {
1126                 ++s;
1127                 --len;
1128             }
1129             else {
1130                 const char *end;
1131 fail_discipline:
1132                 end = strchr(s+1, ':');
1133                 if (!end)
1134                     end = s+len;
1135 #ifndef PERLIO_LAYERS
1136                 Perl_croak(aTHX_ "IO layers (like '%.*s') unavailable", end-s, s);
1137 #else
1138                 len -= end-s;
1139                 s = end;
1140 #endif
1141             }
1142         }
1143     }
1144     return mode;
1145 }
1146
1147 #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE)
1148 I32
1149 my_chsize(int fd, Off_t length)
1150 {
1151 #ifdef F_FREESP
1152         /* code courtesy of William Kucharski */
1153 #define HAS_CHSIZE
1154
1155     Stat_t filebuf;
1156
1157     if (PerlLIO_fstat(fd, &filebuf) < 0)
1158         return -1;
1159
1160     if (filebuf.st_size < length) {
1161
1162         /* extend file length */
1163
1164         if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0)
1165             return -1;
1166
1167         /* write a "0" byte */
1168
1169         if ((PerlLIO_write(fd, "", 1)) != 1)
1170             return -1;
1171     }
1172     else {
1173         /* truncate length */
1174         struct flock fl;
1175         fl.l_whence = 0;
1176         fl.l_len = 0;
1177         fl.l_start = length;
1178         fl.l_type = F_WRLCK;    /* write lock on file space */
1179
1180         /*
1181         * This relies on the UNDOCUMENTED F_FREESP argument to
1182         * fcntl(2), which truncates the file so that it ends at the
1183         * position indicated by fl.l_start.
1184         *
1185         * Will minor miracles never cease?
1186         */
1187
1188         if (fcntl(fd, F_FREESP, &fl) < 0)
1189             return -1;
1190
1191     }
1192     return 0;
1193 #else
1194     Perl_croak_nocontext("truncate not implemented");
1195 #endif /* F_FREESP */
1196     return -1;
1197 }
1198 #endif /* !HAS_TRUNCATE && !HAS_CHSIZE */
1199
1200 bool
1201 Perl_do_print(pTHX_ SV *sv, PerlIO *fp)
1202 {
1203     dVAR;
1204
1205     PERL_ARGS_ASSERT_DO_PRINT;
1206
1207     /* assuming fp is checked earlier */
1208     if (!sv)
1209         return TRUE;
1210     if (SvTYPE(sv) == SVt_IV && SvIOK(sv)) {
1211         assert(!SvGMAGICAL(sv));
1212         if (SvIsUV(sv))
1213             PerlIO_printf(fp, "%"UVuf, (UV)SvUVX(sv));
1214         else
1215             PerlIO_printf(fp, "%"IVdf, (IV)SvIVX(sv));
1216         return !PerlIO_error(fp);
1217     }
1218     else {
1219         STRLEN len;
1220         /* Do this first to trigger any overloading.  */
1221         const char *tmps = SvPV_const(sv, len);
1222         U8 *tmpbuf = NULL;
1223         bool happy = TRUE;
1224
1225         if (PerlIO_isutf8(fp)) { /* If the stream is utf8 ... */
1226             if (!SvUTF8(sv)) {  /* Convert to utf8 if necessary */
1227                 /* We don't modify the original scalar.  */
1228                 tmpbuf = bytes_to_utf8((const U8*) tmps, &len);
1229                 tmps = (char *) tmpbuf;
1230             }
1231             else if (ckWARN4_d(WARN_UTF8, WARN_SURROGATE, WARN_NON_UNICODE, WARN_NONCHAR)) {
1232                 (void) check_utf8_print((const U8*) tmps, len);
1233             }
1234         } /* else stream isn't utf8 */
1235         else if (DO_UTF8(sv)) { /* But if is utf8 internally, attempt to
1236                                    convert to bytes */
1237             STRLEN tmplen = len;
1238             bool utf8 = TRUE;
1239             U8 * const result = bytes_from_utf8((const U8*) tmps, &tmplen, &utf8);
1240             if (!utf8) {
1241
1242                 /* Here, succeeded in downgrading from utf8.  Set up to below
1243                  * output the converted value */
1244                 tmpbuf = result;
1245                 tmps = (char *) tmpbuf;
1246                 len = tmplen;
1247             }
1248             else {  /* Non-utf8 output stream, but string only representable in
1249                        utf8 */
1250                 assert((char *)result == tmps);
1251                 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1252                                  "Wide character in %s",
1253                                    PL_op ? OP_DESC(PL_op) : "print"
1254                                 );
1255                     /* Could also check that isn't one of the things to avoid
1256                      * in utf8 by using check_utf8_print(), but not doing so,
1257                      * since the stream isn't a UTF8 stream */
1258             }
1259         }
1260         /* To detect whether the process is about to overstep its
1261          * filesize limit we would need getrlimit().  We could then
1262          * also transparently raise the limit with setrlimit() --
1263          * but only until the system hard limit/the filesystem limit,
1264          * at which we would get EPERM.  Note that when using buffered
1265          * io the write failure can be delayed until the flush/close. --jhi */
1266         if (len && (PerlIO_write(fp,tmps,len) == 0))
1267             happy = FALSE;
1268         Safefree(tmpbuf);
1269         return happy ? !PerlIO_error(fp) : FALSE;
1270     }
1271 }
1272
1273 I32
1274 Perl_my_stat_flags(pTHX_ const U32 flags)
1275 {
1276     dVAR;
1277     dSP;
1278     IO *io;
1279     GV* gv;
1280
1281     if (PL_op->op_flags & OPf_REF) {
1282         gv = cGVOP_gv;
1283       do_fstat:
1284         if (gv == PL_defgv)
1285             return PL_laststatval;
1286         io = GvIO(gv);
1287         do_fstat_have_io:
1288         PL_laststype = OP_STAT;
1289         PL_statgv = gv ? gv : (GV *)io;
1290         sv_setpvs(PL_statname, "");
1291         if(io) {
1292             if (IoIFP(io)) {
1293                 return (PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache));
1294             } else if (IoDIRP(io)) {
1295                 return (PL_laststatval = PerlLIO_fstat(my_dirfd(IoDIRP(io)), &PL_statcache));
1296             }
1297         }
1298         PL_laststatval = -1;
1299         report_evil_fh(gv);
1300         return -1;
1301     }
1302     else if ((PL_op->op_private & (OPpFT_STACKED|OPpFT_AFTER_t))
1303              == OPpFT_STACKED)
1304         return PL_laststatval;
1305     else {
1306         SV* const sv = TOPs;
1307         const char *s;
1308         STRLEN len;
1309         if ((gv = MAYBE_DEREF_GV_flags(sv,flags))) {
1310             goto do_fstat;
1311         }
1312         else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
1313             io = MUTABLE_IO(SvRV(sv));
1314             gv = NULL;
1315             goto do_fstat_have_io;
1316         }
1317
1318         s = SvPV_flags_const(sv, len, flags);
1319         PL_statgv = NULL;
1320         sv_setpvn(PL_statname, s, len);
1321         s = SvPVX_const(PL_statname);           /* s now NUL-terminated */
1322         PL_laststype = OP_STAT;
1323         PL_laststatval = PerlLIO_stat(s, &PL_statcache);
1324         if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(s, '\n'))
1325             Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
1326         return PL_laststatval;
1327     }
1328 }
1329
1330
1331 I32
1332 Perl_my_lstat_flags(pTHX_ const U32 flags)
1333 {
1334     dVAR;
1335     static const char* const no_prev_lstat = "The stat preceding -l _ wasn't an lstat";
1336     dSP;
1337     const char *file;
1338     SV* const sv = TOPs;
1339     bool isio = FALSE;
1340     if (PL_op->op_flags & OPf_REF) {
1341         if (cGVOP_gv == PL_defgv) {
1342             if (PL_laststype != OP_LSTAT)
1343                 Perl_croak(aTHX_ "%s", no_prev_lstat);
1344             return PL_laststatval;
1345         }
1346         PL_laststatval = -1;
1347         if (ckWARN(WARN_IO)) {
1348             /* diag_listed_as: Use of -l on filehandle%s */
1349             Perl_warner(aTHX_ packWARN(WARN_IO),
1350                              "Use of -l on filehandle %"HEKf,
1351                               HEKfARG(GvENAME_HEK(cGVOP_gv)));
1352         }
1353         return -1;
1354     }
1355     if ((PL_op->op_private & (OPpFT_STACKED|OPpFT_AFTER_t))
1356              == OPpFT_STACKED) {
1357       if (PL_laststype != OP_LSTAT)
1358         Perl_croak(aTHX_ "%s", no_prev_lstat);
1359       return PL_laststatval;
1360     }
1361
1362     PL_laststype = OP_LSTAT;
1363     PL_statgv = NULL;
1364     if ( (  (SvROK(sv) && (  isGV_with_GP(SvRV(sv))
1365                           || (isio = SvTYPE(SvRV(sv)) == SVt_PVIO)  )
1366             )
1367          || isGV_with_GP(sv)
1368          )
1369       && ckWARN(WARN_IO)) {
1370         if (isio)
1371             /* diag_listed_as: Use of -l on filehandle%s */
1372             Perl_warner(aTHX_ packWARN(WARN_IO),
1373                              "Use of -l on filehandle");
1374         else
1375             /* diag_listed_as: Use of -l on filehandle%s */
1376             Perl_warner(aTHX_ packWARN(WARN_IO),
1377                              "Use of -l on filehandle %"HEKf,
1378                               GvENAME_HEK((const GV *)
1379                                           (SvROK(sv) ? SvRV(sv) : sv)));
1380     }
1381     file = SvPV_flags_const_nolen(sv, flags);
1382     sv_setpv(PL_statname,file);
1383     PL_laststatval = PerlLIO_lstat(file,&PL_statcache);
1384     if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(file, '\n'))
1385         Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "lstat");
1386     return PL_laststatval;
1387 }
1388
1389 static void
1390 S_exec_failed(pTHX_ const char *cmd, int fd, int do_report)
1391 {
1392     const int e = errno;
1393     PERL_ARGS_ASSERT_EXEC_FAILED;
1394     if (ckWARN(WARN_EXEC))
1395         Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't exec \"%s\": %s",
1396                     cmd, Strerror(e));
1397     if (do_report) {
1398         (void)PerlLIO_write(fd, (void*)&e, sizeof(int));
1399         PerlLIO_close(fd);
1400     }
1401 }
1402
1403 bool
1404 Perl_do_aexec5(pTHX_ SV *really, SV **mark, SV **sp,
1405                int fd, int do_report)
1406 {
1407     dVAR;
1408     PERL_ARGS_ASSERT_DO_AEXEC5;
1409 #if defined(__SYMBIAN32__) || defined(__LIBCATAMOUNT__)
1410     Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system");
1411 #else
1412     if (sp > mark) {
1413         const char **a;
1414         const char *tmps = NULL;
1415         Newx(PL_Argv, sp - mark + 1, const char*);
1416         a = PL_Argv;
1417
1418         while (++mark <= sp) {
1419             if (*mark)
1420                 *a++ = SvPV_nolen_const(*mark);
1421             else
1422                 *a++ = "";
1423         }
1424         *a = NULL;
1425         if (really)
1426             tmps = SvPV_nolen_const(really);
1427         if ((!really && *PL_Argv[0] != '/') ||
1428             (really && *tmps != '/'))           /* will execvp use PATH? */
1429             TAINT_ENV();                /* testing IFS here is overkill, probably */
1430         PERL_FPU_PRE_EXEC
1431         if (really && *tmps)
1432             PerlProc_execvp(tmps,EXEC_ARGV_CAST(PL_Argv));
1433         else
1434             PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
1435         PERL_FPU_POST_EXEC
1436         S_exec_failed(aTHX_ (really ? tmps : PL_Argv[0]), fd, do_report);
1437     }
1438     do_execfree();
1439 #endif
1440     return FALSE;
1441 }
1442
1443 void
1444 Perl_do_execfree(pTHX)
1445 {
1446     dVAR;
1447     Safefree(PL_Argv);
1448     PL_Argv = NULL;
1449     Safefree(PL_Cmd);
1450     PL_Cmd = NULL;
1451 }
1452
1453 #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
1454
1455 bool
1456 Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report)
1457 {
1458     dVAR;
1459     const char **a;
1460     char *s;
1461     char *buf;
1462     char *cmd;
1463     /* Make a copy so we can change it */
1464     const Size_t cmdlen = strlen(incmd) + 1;
1465
1466     PERL_ARGS_ASSERT_DO_EXEC3;
1467
1468     Newx(buf, cmdlen, char);
1469     cmd = buf;
1470     memcpy(cmd, incmd, cmdlen);
1471
1472     while (*cmd && isSPACE(*cmd))
1473         cmd++;
1474
1475     /* save an extra exec if possible */
1476
1477 #ifdef CSH
1478     {
1479         char flags[PERL_FLAGS_MAX];
1480         if (strnEQ(cmd,PL_cshname,PL_cshlen) &&
1481             strnEQ(cmd+PL_cshlen," -c",3)) {
1482           my_strlcpy(flags, "-c", PERL_FLAGS_MAX);
1483           s = cmd+PL_cshlen+3;
1484           if (*s == 'f') {
1485               s++;
1486               my_strlcat(flags, "f", PERL_FLAGS_MAX - 2);
1487           }
1488           if (*s == ' ')
1489               s++;
1490           if (*s++ == '\'') {
1491               char * const ncmd = s;
1492
1493               while (*s)
1494                   s++;
1495               if (s[-1] == '\n')
1496                   *--s = '\0';
1497               if (s[-1] == '\'') {
1498                   *--s = '\0';
1499                   PERL_FPU_PRE_EXEC
1500                   PerlProc_execl(PL_cshname, "csh", flags, ncmd, (char*)NULL);
1501                   PERL_FPU_POST_EXEC
1502                   *s = '\'';
1503                   S_exec_failed(aTHX_ PL_cshname, fd, do_report);
1504                   Safefree(buf);
1505                   return FALSE;
1506               }
1507           }
1508         }
1509     }
1510 #endif /* CSH */
1511
1512     /* see if there are shell metacharacters in it */
1513
1514     if (*cmd == '.' && isSPACE(cmd[1]))
1515         goto doshell;
1516
1517     if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1518         goto doshell;
1519
1520     s = cmd;
1521     while (isWORDCHAR(*s))
1522         s++;    /* catch VAR=val gizmo */
1523     if (*s == '=')
1524         goto doshell;
1525
1526     for (s = cmd; *s; s++) {
1527         if (*s != ' ' && !isALPHA(*s) &&
1528             strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
1529             if (*s == '\n' && !s[1]) {
1530                 *s = '\0';
1531                 break;
1532             }
1533             /* handle the 2>&1 construct at the end */
1534             if (*s == '>' && s[1] == '&' && s[2] == '1'
1535                 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1536                 && (!s[3] || isSPACE(s[3])))
1537             {
1538                 const char *t = s + 3;
1539
1540                 while (*t && isSPACE(*t))
1541                     ++t;
1542                 if (!*t && (PerlLIO_dup2(1,2) != -1)) {
1543                     s[-2] = '\0';
1544                     break;
1545                 }
1546             }
1547           doshell:
1548             PERL_FPU_PRE_EXEC
1549             PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char *)NULL);
1550             PERL_FPU_POST_EXEC
1551             S_exec_failed(aTHX_ PL_sh_path, fd, do_report);
1552             Safefree(buf);
1553             return FALSE;
1554         }
1555     }
1556
1557     Newx(PL_Argv, (s - cmd) / 2 + 2, const char*);
1558     PL_Cmd = savepvn(cmd, s-cmd);
1559     a = PL_Argv;
1560     for (s = PL_Cmd; *s;) {
1561         while (isSPACE(*s))
1562             s++;
1563         if (*s)
1564             *(a++) = s;
1565         while (*s && !isSPACE(*s))
1566             s++;
1567         if (*s)
1568             *s++ = '\0';
1569     }
1570     *a = NULL;
1571     if (PL_Argv[0]) {
1572         PERL_FPU_PRE_EXEC
1573         PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
1574         PERL_FPU_POST_EXEC
1575         if (errno == ENOEXEC) {         /* for system V NIH syndrome */
1576             do_execfree();
1577             goto doshell;
1578         }
1579         S_exec_failed(aTHX_ PL_Argv[0], fd, do_report);
1580     }
1581     do_execfree();
1582     Safefree(buf);
1583     return FALSE;
1584 }
1585
1586 #endif /* OS2 || WIN32 */
1587
1588 #ifdef VMS
1589 #include <starlet.h> /* for sys$delprc */
1590 #endif
1591
1592 I32
1593 Perl_apply(pTHX_ I32 type, SV **mark, SV **sp)
1594 {
1595     dVAR;
1596     I32 val;
1597     I32 tot = 0;
1598     const char *const what = PL_op_name[type];
1599     const char *s;
1600     STRLEN len;
1601     SV ** const oldmark = mark;
1602     bool killgp = FALSE;
1603
1604     PERL_ARGS_ASSERT_APPLY;
1605
1606     PERL_UNUSED_VAR(what); /* may not be used depending on compile options */
1607
1608     /* Doing this ahead of the switch statement preserves the old behaviour,
1609        where attempting to use kill as a taint test test would fail on
1610        platforms where kill was not defined.  */
1611 #ifndef HAS_KILL
1612     if (type == OP_KILL)
1613         Perl_die(aTHX_ PL_no_func, what);
1614 #endif
1615 #ifndef HAS_CHOWN
1616     if (type == OP_CHOWN)
1617         Perl_die(aTHX_ PL_no_func, what);
1618 #endif
1619
1620
1621 #define APPLY_TAINT_PROPER() \
1622     STMT_START {                                                        \
1623         if (TAINT_get) { TAINT_PROPER(what); }                          \
1624     } STMT_END
1625
1626     /* This is a first heuristic; it doesn't catch tainting magic. */
1627     if (TAINTING_get) {
1628         while (++mark <= sp) {
1629             if (SvTAINTED(*mark)) {
1630                 TAINT;
1631                 break;
1632             }
1633         }
1634         mark = oldmark;
1635     }
1636     switch (type) {
1637     case OP_CHMOD:
1638         APPLY_TAINT_PROPER();
1639         if (++mark <= sp) {
1640             val = SvIV(*mark);
1641             APPLY_TAINT_PROPER();
1642             tot = sp - mark;
1643             while (++mark <= sp) {
1644                 GV* gv;
1645                 if ((gv = MAYBE_DEREF_GV(*mark))) {
1646                     if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1647 #ifdef HAS_FCHMOD
1648                         APPLY_TAINT_PROPER();
1649                         if (fchmod(PerlIO_fileno(IoIFP(GvIOn(gv))), val))
1650                             tot--;
1651 #else
1652                         Perl_die(aTHX_ PL_no_func, "fchmod");
1653 #endif
1654                     }
1655                     else {
1656                         tot--;
1657                     }
1658                 }
1659                 else {
1660                     const char *name = SvPV_nomg_const(*mark, len);
1661                     APPLY_TAINT_PROPER();
1662                     if (!IS_SAFE_PATHNAME(name, len, "chmod") ||
1663                         PerlLIO_chmod(name, val)) {
1664                         tot--;
1665                     }
1666                 }
1667             }
1668         }
1669         break;
1670 #ifdef HAS_CHOWN
1671     case OP_CHOWN:
1672         APPLY_TAINT_PROPER();
1673         if (sp - mark > 2) {
1674             I32 val2;
1675             val = SvIVx(*++mark);
1676             val2 = SvIVx(*++mark);
1677             APPLY_TAINT_PROPER();
1678             tot = sp - mark;
1679             while (++mark <= sp) {
1680                 GV* gv;
1681                 if ((gv = MAYBE_DEREF_GV(*mark))) {
1682                     if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1683 #ifdef HAS_FCHOWN
1684                         APPLY_TAINT_PROPER();
1685                         if (fchown(PerlIO_fileno(IoIFP(GvIOn(gv))), val, val2))
1686                             tot--;
1687 #else
1688                         Perl_die(aTHX_ PL_no_func, "fchown");
1689 #endif
1690                     }
1691                     else {
1692                         tot--;
1693                     }
1694                 }
1695                 else {
1696                     const char *name = SvPV_nomg_const(*mark, len);
1697                     APPLY_TAINT_PROPER();
1698                     if (!IS_SAFE_PATHNAME(name, len, "chown") ||
1699                         PerlLIO_chown(name, val, val2)) {
1700                         tot--;
1701                     }
1702                 }
1703             }
1704         }
1705         break;
1706 #endif
1707 /*
1708 XXX Should we make lchown() directly available from perl?
1709 For now, we'll let Configure test for HAS_LCHOWN, but do
1710 nothing in the core.
1711     --AD  5/1998
1712 */
1713 #ifdef HAS_KILL
1714     case OP_KILL:
1715         APPLY_TAINT_PROPER();
1716         if (mark == sp)
1717             break;
1718         s = SvPVx_const(*++mark, len);
1719         if (*s == '-' && isALPHA(s[1]))
1720         {
1721             s++;
1722             len--;
1723             killgp = TRUE;
1724         }
1725         if (isALPHA(*s)) {
1726             if (*s == 'S' && s[1] == 'I' && s[2] == 'G') {
1727                 s += 3;
1728                 len -= 3;
1729             }
1730            if ((val = whichsig_pvn(s, len)) < 0)
1731                Perl_croak(aTHX_ "Unrecognized signal name \"%"SVf"\"", SVfARG(*mark));
1732         }
1733         else
1734         {
1735             val = SvIV(*mark);
1736             if (val < 0)
1737             {
1738                 killgp = TRUE;
1739                 val = -val;
1740             }
1741         }
1742         APPLY_TAINT_PROPER();
1743         tot = sp - mark;
1744 #ifdef VMS
1745         /* kill() doesn't do process groups (job trees?) under VMS */
1746         if (val == SIGKILL) {
1747             /* Use native sys$delprc() to insure that target process is
1748              * deleted; supervisor-mode images don't pay attention to
1749              * CRTL's emulation of Unix-style signals and kill()
1750              */
1751             while (++mark <= sp) {
1752                 I32 proc;
1753                 unsigned long int __vmssts;
1754                 SvGETMAGIC(*mark);
1755                 if (!(SvIOK(*mark) || SvNOK(*mark) || looks_like_number(*mark)))
1756                     Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
1757                 proc = SvIV_nomg(*mark);
1758                 APPLY_TAINT_PROPER();
1759                 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1760                     tot--;
1761                     switch (__vmssts) {
1762                         case SS$_NONEXPR:
1763                         case SS$_NOSUCHNODE:
1764                             SETERRNO(ESRCH,__vmssts);
1765                             break;
1766                         case SS$_NOPRIV:
1767                             SETERRNO(EPERM,__vmssts);
1768                             break;
1769                         default:
1770                             SETERRNO(EVMSERR,__vmssts);
1771                     }
1772                 }
1773             }
1774             PERL_ASYNC_CHECK();
1775             break;
1776         }
1777 #endif
1778         while (++mark <= sp) {
1779             Pid_t proc;
1780             SvGETMAGIC(*mark);
1781             if (!(SvNIOK(*mark) || looks_like_number(*mark)))
1782                 Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
1783             proc = SvIV_nomg(*mark);
1784             if (killgp)
1785             {
1786                 proc = -proc;
1787             }
1788             APPLY_TAINT_PROPER();
1789             if (PerlProc_kill(proc, val))
1790                 tot--;
1791         }
1792         PERL_ASYNC_CHECK();
1793         break;
1794 #endif
1795     case OP_UNLINK:
1796         APPLY_TAINT_PROPER();
1797         tot = sp - mark;
1798         while (++mark <= sp) {
1799             s = SvPV_const(*mark, len);
1800             APPLY_TAINT_PROPER();
1801             if (!IS_SAFE_PATHNAME(s, len, "unlink")) {
1802                 tot--;
1803             }
1804             else if (PerlProc_geteuid() || PL_unsafe) {
1805                 if (UNLINK(s))
1806                     tot--;
1807             }
1808             else {      /* don't let root wipe out directories without -U */
1809                 if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode))
1810                     tot--;
1811                 else {
1812                     if (UNLINK(s))
1813                         tot--;
1814                 }
1815             }
1816         }
1817         break;
1818 #if defined(HAS_UTIME) || defined(HAS_FUTIMES)
1819     case OP_UTIME:
1820         APPLY_TAINT_PROPER();
1821         if (sp - mark > 2) {
1822 #if defined(HAS_FUTIMES)
1823             struct timeval utbuf[2];
1824             void *utbufp = utbuf;
1825 #elif defined(I_UTIME) || defined(VMS)
1826             struct utimbuf utbuf;
1827             struct utimbuf *utbufp = &utbuf;
1828 #else
1829             struct {
1830                 Time_t  actime;
1831                 Time_t  modtime;
1832             } utbuf;
1833             void *utbufp = &utbuf;
1834 #endif
1835
1836            SV* const accessed = *++mark;
1837            SV* const modified = *++mark;
1838
1839            /* Be like C, and if both times are undefined, let the C
1840             * library figure out what to do.  This usually means
1841             * "current time". */
1842
1843            if ( accessed == &PL_sv_undef && modified == &PL_sv_undef )
1844                 utbufp = NULL;
1845            else {
1846                 Zero(&utbuf, sizeof utbuf, char);
1847 #ifdef HAS_FUTIMES
1848                 utbuf[0].tv_sec = (long)SvIV(accessed);  /* time accessed */
1849                 utbuf[0].tv_usec = 0;
1850                 utbuf[1].tv_sec = (long)SvIV(modified);  /* time modified */
1851                 utbuf[1].tv_usec = 0;
1852 #elif defined(BIG_TIME)
1853                 utbuf.actime = (Time_t)SvNV(accessed);  /* time accessed */
1854                 utbuf.modtime = (Time_t)SvNV(modified); /* time modified */
1855 #else
1856                 utbuf.actime = (Time_t)SvIV(accessed);  /* time accessed */
1857                 utbuf.modtime = (Time_t)SvIV(modified); /* time modified */
1858 #endif
1859             }
1860             APPLY_TAINT_PROPER();
1861             tot = sp - mark;
1862             while (++mark <= sp) {
1863                 GV* gv;
1864                 if ((gv = MAYBE_DEREF_GV(*mark))) {
1865                     if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1866 #ifdef HAS_FUTIMES
1867                         APPLY_TAINT_PROPER();
1868                         if (futimes(PerlIO_fileno(IoIFP(GvIOn(gv))),
1869                             (struct timeval *) utbufp))
1870                             tot--;
1871 #else
1872                         Perl_die(aTHX_ PL_no_func, "futimes");
1873 #endif
1874                     }
1875                     else {
1876                         tot--;
1877                     }
1878                 }
1879                 else {
1880                     const char * const name = SvPV_nomg_const(*mark, len);
1881                     APPLY_TAINT_PROPER();
1882                     if (!IS_SAFE_PATHNAME(name, len, "utime")) {
1883                         tot--;
1884                     }
1885                     else
1886 #ifdef HAS_FUTIMES
1887                     if (utimes(name, (struct timeval *)utbufp))
1888 #else
1889                     if (PerlLIO_utime(name, utbufp))
1890 #endif
1891                         tot--;
1892                 }
1893
1894             }
1895         }
1896         else
1897             tot = 0;
1898         break;
1899 #endif
1900     }
1901     return tot;
1902
1903 #undef APPLY_TAINT_PROPER
1904 }
1905
1906 /* Do the permissions allow some operation?  Assumes statcache already set. */
1907 #ifndef VMS /* VMS' cando is in vms.c */
1908 bool
1909 Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t *statbufp)
1910 /* effective is a flag, true for EUID, or for checking if the effective gid
1911  *  is in the list of groups returned from getgroups().
1912  */
1913 {
1914     dVAR;
1915
1916     PERL_ARGS_ASSERT_CANDO;
1917
1918 #ifdef DOSISH
1919     /* [Comments and code from Len Reed]
1920      * MS-DOS "user" is similar to UNIX's "superuser," but can't write
1921      * to write-protected files.  The execute permission bit is set
1922      * by the Microsoft C library stat() function for the following:
1923      *          .exe files
1924      *          .com files
1925      *          .bat files
1926      *          directories
1927      * All files and directories are readable.
1928      * Directories and special files, e.g. "CON", cannot be
1929      * write-protected.
1930      * [Comment by Tom Dinger -- a directory can have the write-protect
1931      *          bit set in the file system, but DOS permits changes to
1932      *          the directory anyway.  In addition, all bets are off
1933      *          here for networked software, such as Novell and
1934      *          Sun's PC-NFS.]
1935      */
1936
1937      /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
1938       * too so it will actually look into the files for magic numbers
1939       */
1940      return (mode & statbufp->st_mode) ? TRUE : FALSE;
1941
1942 #else /* ! DOSISH */
1943 # ifdef __CYGWIN__
1944     if (ingroup(544,effective)) {     /* member of Administrators */
1945 # else
1946     if ((effective ? PerlProc_geteuid() : PerlProc_getuid()) == 0) {    /* root is special */
1947 # endif
1948         if (mode == S_IXUSR) {
1949             if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
1950                 return TRUE;
1951         }
1952         else
1953             return TRUE;                /* root reads and writes anything */
1954         return FALSE;
1955     }
1956     if (statbufp->st_uid == (effective ? PerlProc_geteuid() : PerlProc_getuid()) ) {
1957         if (statbufp->st_mode & mode)
1958             return TRUE;        /* ok as "user" */
1959     }
1960     else if (ingroup(statbufp->st_gid,effective)) {
1961         if (statbufp->st_mode & mode >> 3)
1962             return TRUE;        /* ok as "group" */
1963     }
1964     else if (statbufp->st_mode & mode >> 6)
1965         return TRUE;    /* ok as "other" */
1966     return FALSE;
1967 #endif /* ! DOSISH */
1968 }
1969 #endif /* ! VMS */
1970
1971 static bool
1972 S_ingroup(pTHX_ Gid_t testgid, bool effective)
1973 {
1974     dVAR;
1975     if (testgid == (effective ? PerlProc_getegid() : PerlProc_getgid()))
1976         return TRUE;
1977 #ifdef HAS_GETGROUPS
1978     {
1979         Groups_t *gary = NULL;
1980         I32 anum;
1981         bool rc = FALSE;
1982
1983         anum = getgroups(0, gary);
1984         Newx(gary, anum, Groups_t);
1985         anum = getgroups(anum, gary);
1986         while (--anum >= 0)
1987             if (gary[anum] == testgid) {
1988                 rc = TRUE;
1989                 break;
1990             }
1991
1992         Safefree(gary);
1993         return rc;
1994     }
1995 #else
1996     return FALSE;
1997 #endif
1998 }
1999
2000 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
2001
2002 I32
2003 Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
2004 {
2005     dVAR;
2006     const key_t key = (key_t)SvNVx(*++mark);
2007     SV *nsv = optype == OP_MSGGET ? NULL : *++mark;
2008     const I32 flags = SvIVx(*++mark);
2009
2010     PERL_ARGS_ASSERT_DO_IPCGET;
2011     PERL_UNUSED_ARG(sp);
2012
2013     SETERRNO(0,0);
2014     switch (optype)
2015     {
2016 #ifdef HAS_MSG
2017     case OP_MSGGET:
2018         return msgget(key, flags);
2019 #endif
2020 #ifdef HAS_SEM
2021     case OP_SEMGET:
2022         return semget(key, (int) SvIV(nsv), flags);
2023 #endif
2024 #ifdef HAS_SHM
2025     case OP_SHMGET:
2026         return shmget(key, (size_t) SvUV(nsv), flags);
2027 #endif
2028 #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
2029     default:
2030         /* diag_listed_as: msg%s not implemented */
2031         Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2032 #endif
2033     }
2034     return -1;                  /* should never happen */
2035 }
2036
2037 I32
2038 Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
2039 {
2040     dVAR;
2041     char *a;
2042     I32 ret = -1;
2043     const I32 id  = SvIVx(*++mark);
2044 #ifdef Semctl
2045     const I32 n   = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
2046 #endif
2047     const I32 cmd = SvIVx(*++mark);
2048     SV * const astr = *++mark;
2049     STRLEN infosize = 0;
2050     I32 getinfo = (cmd == IPC_STAT);
2051
2052     PERL_ARGS_ASSERT_DO_IPCCTL;
2053     PERL_UNUSED_ARG(sp);
2054
2055     switch (optype)
2056     {
2057 #ifdef HAS_MSG
2058     case OP_MSGCTL:
2059         if (cmd == IPC_STAT || cmd == IPC_SET)
2060             infosize = sizeof(struct msqid_ds);
2061         break;
2062 #endif
2063 #ifdef HAS_SHM
2064     case OP_SHMCTL:
2065         if (cmd == IPC_STAT || cmd == IPC_SET)
2066             infosize = sizeof(struct shmid_ds);
2067         break;
2068 #endif
2069 #ifdef HAS_SEM
2070     case OP_SEMCTL:
2071 #ifdef Semctl
2072         if (cmd == IPC_STAT || cmd == IPC_SET)
2073             infosize = sizeof(struct semid_ds);
2074         else if (cmd == GETALL || cmd == SETALL)
2075         {
2076             struct semid_ds semds;
2077             union semun semun;
2078 #ifdef EXTRA_F_IN_SEMUN_BUF
2079             semun.buff = &semds;
2080 #else
2081             semun.buf = &semds;
2082 #endif
2083             getinfo = (cmd == GETALL);
2084             if (Semctl(id, 0, IPC_STAT, semun) == -1)
2085                 return -1;
2086             infosize = semds.sem_nsems * sizeof(short);
2087                 /* "short" is technically wrong but much more portable
2088                    than guessing about u_?short(_t)? */
2089         }
2090 #else
2091         /* diag_listed_as: sem%s not implemented */
2092         Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2093 #endif
2094         break;
2095 #endif
2096 #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
2097     default:
2098         /* diag_listed_as: shm%s not implemented */
2099         Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2100 #endif
2101     }
2102
2103     if (infosize)
2104     {
2105         if (getinfo)
2106         {
2107             SvPV_force_nolen(astr);
2108             a = SvGROW(astr, infosize+1);
2109         }
2110         else
2111         {
2112             STRLEN len;
2113             a = SvPV(astr, len);
2114             if (len != infosize)
2115                 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
2116                       PL_op_desc[optype],
2117                       (unsigned long)len,
2118                       (long)infosize);
2119         }
2120     }
2121     else
2122     {
2123         const IV i = SvIV(astr);
2124         a = INT2PTR(char *,i);          /* ouch */
2125     }
2126     SETERRNO(0,0);
2127     switch (optype)
2128     {
2129 #ifdef HAS_MSG
2130     case OP_MSGCTL:
2131         ret = msgctl(id, cmd, (struct msqid_ds *)a);
2132         break;
2133 #endif
2134 #ifdef HAS_SEM
2135     case OP_SEMCTL: {
2136 #ifdef Semctl
2137             union semun unsemds;
2138
2139 #ifdef EXTRA_F_IN_SEMUN_BUF
2140             unsemds.buff = (struct semid_ds *)a;
2141 #else
2142             unsemds.buf = (struct semid_ds *)a;
2143 #endif
2144             ret = Semctl(id, n, cmd, unsemds);
2145 #else
2146             /* diag_listed_as: sem%s not implemented */
2147             Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2148 #endif
2149         }
2150         break;
2151 #endif
2152 #ifdef HAS_SHM
2153     case OP_SHMCTL:
2154         ret = shmctl(id, cmd, (struct shmid_ds *)a);
2155         break;
2156 #endif
2157     }
2158     if (getinfo && ret >= 0) {
2159         SvCUR_set(astr, infosize);
2160         *SvEND(astr) = '\0';
2161         SvSETMAGIC(astr);
2162     }
2163     return ret;
2164 }
2165
2166 I32
2167 Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
2168 {
2169     dVAR;
2170 #ifdef HAS_MSG
2171     STRLEN len;
2172     const I32 id = SvIVx(*++mark);
2173     SV * const mstr = *++mark;
2174     const I32 flags = SvIVx(*++mark);
2175     const char * const mbuf = SvPV_const(mstr, len);
2176     const I32 msize = len - sizeof(long);
2177
2178     PERL_ARGS_ASSERT_DO_MSGSND;
2179     PERL_UNUSED_ARG(sp);
2180
2181     if (msize < 0)
2182         Perl_croak(aTHX_ "Arg too short for msgsnd");
2183     SETERRNO(0,0);
2184     return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
2185 #else
2186     PERL_UNUSED_ARG(sp);
2187     PERL_UNUSED_ARG(mark);
2188     /* diag_listed_as: msg%s not implemented */
2189     Perl_croak(aTHX_ "msgsnd not implemented");
2190     return -1;
2191 #endif
2192 }
2193
2194 I32
2195 Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
2196 {
2197 #ifdef HAS_MSG
2198     dVAR;
2199     char *mbuf;
2200     long mtype;
2201     I32 msize, flags, ret;
2202     const I32 id = SvIVx(*++mark);
2203     SV * const mstr = *++mark;
2204
2205     PERL_ARGS_ASSERT_DO_MSGRCV;
2206     PERL_UNUSED_ARG(sp);
2207
2208     /* suppress warning when reading into undef var --jhi */
2209     if (! SvOK(mstr))
2210         sv_setpvs(mstr, "");
2211     msize = SvIVx(*++mark);
2212     mtype = (long)SvIVx(*++mark);
2213     flags = SvIVx(*++mark);
2214     SvPV_force_nolen(mstr);
2215     mbuf = SvGROW(mstr, sizeof(long)+msize+1);
2216
2217     SETERRNO(0,0);
2218     ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
2219     if (ret >= 0) {
2220         SvCUR_set(mstr, sizeof(long)+ret);
2221         *SvEND(mstr) = '\0';
2222         /* who knows who has been playing with this message? */
2223         SvTAINTED_on(mstr);
2224     }
2225     return ret;
2226 #else
2227     PERL_UNUSED_ARG(sp);
2228     PERL_UNUSED_ARG(mark);
2229     /* diag_listed_as: msg%s not implemented */
2230     Perl_croak(aTHX_ "msgrcv not implemented");
2231     return -1;
2232 #endif
2233 }
2234
2235 I32
2236 Perl_do_semop(pTHX_ SV **mark, SV **sp)
2237 {
2238 #ifdef HAS_SEM
2239     dVAR;
2240     STRLEN opsize;
2241     const I32 id = SvIVx(*++mark);
2242     SV * const opstr = *++mark;
2243     const char * const opbuf = SvPV_const(opstr, opsize);
2244
2245     PERL_ARGS_ASSERT_DO_SEMOP;
2246     PERL_UNUSED_ARG(sp);
2247
2248     if (opsize < 3 * SHORTSIZE
2249         || (opsize % (3 * SHORTSIZE))) {
2250         SETERRNO(EINVAL,LIB_INVARG);
2251         return -1;
2252     }
2253     SETERRNO(0,0);
2254     /* We can't assume that sizeof(struct sembuf) == 3 * sizeof(short). */
2255     {
2256         const int nsops  = opsize / (3 * sizeof (short));
2257         int i      = nsops;
2258         short * const ops = (short *) opbuf;
2259         short *o   = ops;
2260         struct sembuf *temps, *t;
2261         I32 result;
2262
2263         Newx (temps, nsops, struct sembuf);
2264         t = temps;
2265         while (i--) {
2266             t->sem_num = *o++;
2267             t->sem_op  = *o++;
2268             t->sem_flg = *o++;
2269             t++;
2270         }
2271         result = semop(id, temps, nsops);
2272         t = temps;
2273         o = ops;
2274         i = nsops;
2275         while (i--) {
2276             *o++ = t->sem_num;
2277             *o++ = t->sem_op;
2278             *o++ = t->sem_flg;
2279             t++;
2280         }
2281         Safefree(temps);
2282         return result;
2283     }
2284 #else
2285     /* diag_listed_as: sem%s not implemented */
2286     Perl_croak(aTHX_ "semop not implemented");
2287 #endif
2288 }
2289
2290 I32
2291 Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
2292 {
2293 #ifdef HAS_SHM
2294     dVAR;
2295     char *shm;
2296     struct shmid_ds shmds;
2297     const I32 id = SvIVx(*++mark);
2298     SV * const mstr = *++mark;
2299     const I32 mpos = SvIVx(*++mark);
2300     const I32 msize = SvIVx(*++mark);
2301
2302     PERL_ARGS_ASSERT_DO_SHMIO;
2303     PERL_UNUSED_ARG(sp);
2304
2305     SETERRNO(0,0);
2306     if (shmctl(id, IPC_STAT, &shmds) == -1)
2307         return -1;
2308     if (mpos < 0 || msize < 0
2309         || (size_t)mpos + msize > (size_t)shmds.shm_segsz) {
2310         SETERRNO(EFAULT,SS_ACCVIO);             /* can't do as caller requested */
2311         return -1;
2312     }
2313     shm = (char *)shmat(id, NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
2314     if (shm == (char *)-1)      /* I hate System V IPC, I really do */
2315         return -1;
2316     if (optype == OP_SHMREAD) {
2317         char *mbuf;
2318         /* suppress warning when reading into undef var (tchrist 3/Mar/00) */
2319         SvGETMAGIC(mstr);
2320         SvUPGRADE(mstr, SVt_PV);
2321         if (! SvOK(mstr))
2322             sv_setpvs(mstr, "");
2323         SvPOK_only(mstr);
2324         mbuf = SvGROW(mstr, (STRLEN)msize+1);
2325
2326         Copy(shm + mpos, mbuf, msize, char);
2327         SvCUR_set(mstr, msize);
2328         *SvEND(mstr) = '\0';
2329         SvSETMAGIC(mstr);
2330         /* who knows who has been playing with this shared memory? */
2331         SvTAINTED_on(mstr);
2332     }
2333     else {
2334         STRLEN len;
2335
2336         const char *mbuf = SvPV_const(mstr, len);
2337         const I32 n = ((I32)len > msize) ? msize : (I32)len;
2338         Copy(mbuf, shm + mpos, n, char);
2339         if (n < msize)
2340             memzero(shm + mpos + n, msize - n);
2341     }
2342     return shmdt(shm);
2343 #else
2344     /* diag_listed_as: shm%s not implemented */
2345     Perl_croak(aTHX_ "shm I/O not implemented");
2346     return -1;
2347 #endif
2348 }
2349
2350 #endif /* SYSV IPC */
2351
2352 /*
2353 =head1 IO Functions
2354
2355 =for apidoc start_glob
2356
2357 Function called by C<do_readline> to spawn a glob (or do the glob inside
2358 perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
2359 this glob starter is only used by miniperl during the build process.
2360 Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
2361
2362 =cut
2363 */
2364
2365 PerlIO *
2366 Perl_start_glob (pTHX_ SV *tmpglob, IO *io)
2367 {
2368     dVAR;
2369     SV * const tmpcmd = newSV(0);
2370     PerlIO *fp;
2371     STRLEN len;
2372     const char *s = SvPV(tmpglob, len);
2373
2374     PERL_ARGS_ASSERT_START_GLOB;
2375
2376     if (!IS_SAFE_SYSCALL(s, len, "pattern", "glob"))
2377         return NULL;
2378
2379     ENTER;
2380     SAVEFREESV(tmpcmd);
2381 #ifdef VMS /* expand the wildcards right here, rather than opening a pipe, */
2382            /* since spawning off a process is a real performance hit */
2383
2384 PerlIO * 
2385 Perl_vms_start_glob
2386    (pTHX_ SV *tmpglob,
2387     IO *io);
2388
2389     fp = Perl_vms_start_glob(aTHX_ tmpglob, io);
2390
2391 #else /* !VMS */
2392 #ifdef DOSISH
2393 #ifdef OS2
2394     sv_setpv(tmpcmd, "for a in ");
2395     sv_catsv(tmpcmd, tmpglob);
2396     sv_catpv(tmpcmd, "; do echo \"$a\\0\\c\"; done |");
2397 #else
2398 #ifdef DJGPP
2399     sv_setpv(tmpcmd, "/dev/dosglob/"); /* File System Extension */
2400     sv_catsv(tmpcmd, tmpglob);
2401 #else
2402     sv_setpv(tmpcmd, "perlglob ");
2403     sv_catsv(tmpcmd, tmpglob);
2404     sv_catpv(tmpcmd, " |");
2405 #endif /* !DJGPP */
2406 #endif /* !OS2 */
2407 #else /* !DOSISH */
2408 #if defined(CSH)
2409     sv_setpvn(tmpcmd, PL_cshname, PL_cshlen);
2410     sv_catpv(tmpcmd, " -cf 'set nonomatch; glob ");
2411     sv_catsv(tmpcmd, tmpglob);
2412     sv_catpv(tmpcmd, "' 2>/dev/null |");
2413 #else
2414     sv_setpv(tmpcmd, "echo ");
2415     sv_catsv(tmpcmd, tmpglob);
2416 #if 'z' - 'a' == 25
2417     sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\012\\012\\012\\012'|");
2418 #else
2419     sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\n\\n\\n\\n'|");
2420 #endif
2421 #endif /* !CSH */
2422 #endif /* !DOSISH */
2423     {
2424         GV * const envgv = gv_fetchpvs("ENV", 0, SVt_PVHV);
2425         SV ** const home = hv_fetchs(GvHV(envgv), "HOME", 0);
2426         SV ** const path = hv_fetchs(GvHV(envgv), "PATH", 0);
2427         if (home && *home) SvGETMAGIC(*home);
2428         if (path && *path) SvGETMAGIC(*path);
2429         save_hash(gv_fetchpvs("ENV", 0, SVt_PVHV));
2430         if (home && *home) SvSETMAGIC(*home);
2431         if (path && *path) SvSETMAGIC(*path);
2432     }
2433     (void)do_open(PL_last_in_gv, (char*)SvPVX_const(tmpcmd), SvCUR(tmpcmd),
2434                   FALSE, O_RDONLY, 0, NULL);
2435     fp = IoIFP(io);
2436 #endif /* !VMS */
2437     LEAVE;
2438
2439     if (!fp && ckWARN(WARN_GLOB)) {
2440         Perl_warner(aTHX_ packWARN(WARN_GLOB), "glob failed (can't start child: %s)",
2441                     Strerror(errno));
2442     }
2443
2444     return fp;
2445 }
2446
2447 /*
2448  * Local variables:
2449  * c-indentation-style: bsd
2450  * c-basic-offset: 4
2451  * indent-tabs-mode: nil
2452  * End:
2453  *
2454  * ex: set ts=8 sts=4 sw=4 et:
2455  */