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