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