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