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