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