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