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