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