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