3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, by Larry Wall and others
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
12 * "Far below them they saw the white waters pour into a foaming bowl, and
13 * then swirl darkly about a deep oval basin in the rocks, until they found
14 * their way out again through a narrow gate, and flowed away, fuming and
15 * chattering, into calmer and more level reaches."
18 /* This file contains functions that do the actual I/O on behalf of ops.
19 * For example, pp_print() calls the do_print() function in this file for
20 * each argument needing printing.
24 #define PERL_IN_DOIO_C
27 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
36 # ifndef HAS_SHMAT_PROTOTYPE
37 extern Shmat_t shmat (int, char *, int);
43 # if defined(_MSC_VER) || defined(__MINGW32__)
44 # include <sys/utime.h>
51 # define OPEN_EXCL O_EXCL
56 #define PERL_MODE_MAX 8
57 #define PERL_FLAGS_MAX 10
62 Perl_do_openn(pTHX_ GV *gv, register const char *oname, I32 len, int as_raw,
63 int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp,
67 register IO * const io = GvIOn(gv);
68 PerlIO *saveifp = NULL;
69 PerlIO *saveofp = NULL;
71 char savetype = IoTYPE_CLOSED;
76 bool was_fdopen = FALSE;
77 bool in_raw = 0, in_crlf = 0, out_raw = 0, out_crlf = 0;
79 char mode[PERL_MODE_MAX]; /* file mode ("r\0", "rb\0", "ab\0" etc.) */
82 Zero(mode,sizeof(mode),char);
83 PL_forkprocess = 1; /* assume true if no fork */
85 /* Collect default raw/crlf info from the op */
86 if (PL_op && PL_op->op_type == OP_OPEN) {
87 /* set up IO layers */
88 const U8 flags = PL_op->op_private;
89 in_raw = (flags & OPpOPEN_IN_RAW);
90 in_crlf = (flags & OPpOPEN_IN_CRLF);
91 out_raw = (flags & OPpOPEN_OUT_RAW);
92 out_crlf = (flags & OPpOPEN_OUT_CRLF);
95 /* If currently open - close before we re-open */
97 fd = PerlIO_fileno(IoIFP(io));
98 if (IoTYPE(io) == IoTYPE_STD) {
99 /* This is a clone of one of STD* handles */
102 else if (fd >= 0 && fd <= PL_maxsysfd) {
103 /* This is one of the original STD* handles */
106 savetype = IoTYPE(io);
110 else if (IoTYPE(io) == IoTYPE_PIPE)
111 result = PerlProc_pclose(IoIFP(io));
112 else if (IoIFP(io) != IoOFP(io)) {
114 result = PerlIO_close(IoOFP(io));
115 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
118 result = PerlIO_close(IoIFP(io));
121 result = PerlIO_close(IoIFP(io));
122 if (result == EOF && fd > PL_maxsysfd) {
123 /* Why is this not Perl_warn*() call ? */
124 PerlIO_printf(Perl_error_log,
125 "Warning: unable to close filehandle %s properly.\n",
128 IoOFP(io) = IoIFP(io) = NULL;
132 /* sysopen style args, i.e. integer mode and permissions */
134 const int appendtrunc =
136 #ifdef O_APPEND /* Not fully portable. */
139 #ifdef O_TRUNC /* Not fully portable. */
143 const int modifyingmode = O_WRONLY|O_RDWR|O_CREAT|appendtrunc;
147 Perl_croak(aTHX_ "panic: sysopen with multiple args");
155 It might be (in OS/390 and Mac OS Classic it is)
161 This means that simple & with O_RDWR would look
162 like O_RDONLY is present. Therefore we have to
165 if ((ismodifying = (rawmode & modifyingmode))) {
166 if ((ismodifying & O_WRONLY) == O_WRONLY ||
167 (ismodifying & O_RDWR) == O_RDWR ||
168 (ismodifying & (O_CREAT|appendtrunc)))
169 TAINT_PROPER("sysopen");
171 mode[ix++] = IoTYPE_NUMERIC; /* Marker to openn to use numeric "sysopen" */
173 #if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE)
174 rawmode |= O_LARGEFILE; /* Transparently largefiley. */
177 IoTYPE(io) = PerlIO_intmode2str(rawmode, &mode[ix], &writing);
179 namesv = sv_2mortal(newSVpv(oname,0));
183 fp = PerlIO_openn(aTHX_ type, mode, -1, rawmode, rawperm, NULL, num_svs, svp);
186 /* Regular (non-sys) open */
192 type = savepvn(oname, len);
196 /* Lose leading and trailing white space */
197 while (isSPACE(*type))
199 while (tend > type && isSPACE(tend[-1]))
203 /* New style explicit name, type is just mode and layer info */
205 if (SvROK(*svp) && !strchr(oname,'&')) {
207 Perl_warner(aTHX_ packWARN(WARN_IO),
208 "Can't open a reference");
209 SETERRNO(EINVAL, LIB_INVARG);
212 #endif /* USE_STDIO */
213 name = SvOK(*svp) ? savesvpv (*svp) : savepvn ("", 0);
221 if ((*type == IoTYPE_RDWR) && /* scary */
222 (*(type+1) == IoTYPE_RDONLY || *(type+1) == IoTYPE_WRONLY) &&
223 ((!num_svs || (tend > type+1 && tend[-1] != IoTYPE_PIPE)))) {
224 TAINT_PROPER("open");
229 if (*type == IoTYPE_PIPE) {
231 if (type[1] != IoTYPE_STD) {
233 Perl_croak(aTHX_ "Unknown open() mode '%.*s'", (int)olen, oname);
239 } while (isSPACE(*type));
245 /* command is missing 19990114 */
246 if (ckWARN(WARN_PIPE))
247 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
251 if (!(*name == '-' && name[1] == '\0') || num_svs)
253 TAINT_PROPER("piped open");
254 if (!num_svs && name[len-1] == '|') {
256 if (ckWARN(WARN_PIPE))
257 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Can't open bidirectional pipe");
262 my_strlcat(mode, "b", PERL_MODE_MAX - 1);
264 my_strlcat(mode, "t", PERL_MODE_MAX - 1);
266 fp = PerlProc_popen_list(mode, num_svs, svp);
269 fp = PerlProc_popen(name,mode);
273 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
279 else if (*type == IoTYPE_WRONLY) {
280 TAINT_PROPER("open");
282 if (*type == IoTYPE_WRONLY) {
283 /* Two IoTYPE_WRONLYs in a row make for an IoTYPE_APPEND. */
284 mode[0] = IoTYPE(io) = IoTYPE_APPEND;
293 my_strlcat(mode, "b", PERL_MODE_MAX - 1);
295 my_strlcat(mode, "t", PERL_MODE_MAX - 1);
298 dodup = PERLIO_DUP_FD;
304 if (!num_svs && !*type && supplied_fp) {
305 /* "<+&" etc. is used by typemaps */
309 PerlIO *that_fp = NULL;
311 Perl_croak(aTHX_ "More than one argument to '%c&' open",IoTYPE(io));
313 while (isSPACE(*type))
315 if (num_svs && (SvIOK(*svp) || (SvPOK(*svp) && looks_like_number(*svp)))) {
319 else if (isDIGIT(*type)) {
325 thatio = sv_2io(*svp);
328 GV * const thatgv = gv_fetchpvn_flags(type, tend - type,
330 thatio = GvIO(thatgv);
334 SETERRNO(EINVAL,SS_IVCHAN);
338 if ((that_fp = IoIFP(thatio))) {
339 /* Flush stdio buffer before dup. --mjd
340 * Unfortunately SEEK_CURing 0 seems to
341 * be optimized away on most platforms;
342 * only Solaris and Linux seem to flush
345 /* sfio fails to clear error on next
346 sfwrite, contrary to documentation.
348 if (PerlIO_seek(that_fp, 0, SEEK_CUR) == -1)
349 PerlIO_clearerr(that_fp);
351 /* On the other hand, do all platforms
352 * take gracefully to flushing a read-only
353 * filehandle? Perhaps we should do
354 * fsetpos(src)+fgetpos(dst)? --nik */
355 PerlIO_flush(that_fp);
356 fd = PerlIO_fileno(that_fp);
357 /* When dup()ing STDIN, STDOUT or STDERR
358 * explicitly set appropriate access mode */
359 if (that_fp == PerlIO_stdout()
360 || that_fp == PerlIO_stderr())
361 IoTYPE(io) = IoTYPE_WRONLY;
362 else if (that_fp == PerlIO_stdin())
363 IoTYPE(io) = IoTYPE_RDONLY;
364 /* When dup()ing a socket, say result is
366 else if (IoTYPE(thatio) == IoTYPE_SOCKET)
367 IoTYPE(io) = IoTYPE_SOCKET;
375 fp = PerlIO_fdupopen(aTHX_ that_fp, NULL, dodup);
379 fd = PerlLIO_dup(fd);
382 if (!(fp = PerlIO_openn(aTHX_ type,mode,fd,0,0,NULL,num_svs,svp))) {
383 if (dodup && fd >= 0)
390 while (isSPACE(*type))
392 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
394 fp = PerlIO_stdout();
395 IoTYPE(io) = IoTYPE_STD;
397 Perl_croak(aTHX_ "More than one argument to '>%c' open",IoTYPE_STD);
402 namesv = sv_2mortal(newSVpvn(type,tend - type));
407 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
410 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
411 goto unknown_open_mode;
412 } /* IoTYPE_WRONLY */
413 else if (*type == IoTYPE_RDONLY) {
416 } while (isSPACE(*type));
419 my_strlcat(mode, "b", PERL_MODE_MAX - 1);
421 my_strlcat(mode, "t", PERL_MODE_MAX - 1);
425 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
428 IoTYPE(io) = IoTYPE_STD;
430 Perl_croak(aTHX_ "More than one argument to '<%c' open",IoTYPE_STD);
435 namesv = sv_2mortal(newSVpvn(type,tend - type));
440 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
442 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
443 goto unknown_open_mode;
444 } /* IoTYPE_RDONLY */
445 else if ((num_svs && /* '-|...' or '...|' */
446 type[0] == IoTYPE_STD && type[1] == IoTYPE_PIPE) ||
447 (!num_svs && tend > type+1 && tend[-1] == IoTYPE_PIPE)) {
449 type += 2; /* skip over '-|' */
453 while (tend > type && isSPACE(tend[-1]))
455 for (; isSPACE(*type); type++)
461 /* command is missing 19990114 */
462 if (ckWARN(WARN_PIPE))
463 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
467 if (!(*name == '-' && name[1] == '\0') || num_svs)
469 TAINT_PROPER("piped open");
473 my_strlcat(mode, "b", PERL_MODE_MAX - 1);
475 my_strlcat(mode, "t", PERL_MODE_MAX - 1);
478 fp = PerlProc_popen_list(mode,num_svs,svp);
481 fp = PerlProc_popen(name,mode);
483 IoTYPE(io) = IoTYPE_PIPE;
485 while (isSPACE(*type))
488 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
494 else { /* layer(Args) */
496 goto unknown_open_mode;
498 IoTYPE(io) = IoTYPE_RDONLY;
499 for (; isSPACE(*name); name++)
504 my_strlcat(mode, "b", PERL_MODE_MAX - 1);
506 my_strlcat(mode, "t", PERL_MODE_MAX - 1);
508 if (*name == '-' && name[1] == '\0') {
510 IoTYPE(io) = IoTYPE_STD;
514 namesv = sv_2mortal(newSVpvn(type,tend - type));
519 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
524 if (IoTYPE(io) == IoTYPE_RDONLY && ckWARN(WARN_NEWLINE)
525 && strchr(oname, '\n')
528 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
532 if (ckWARN(WARN_IO)) {
533 if ((IoTYPE(io) == IoTYPE_RDONLY) &&
534 (fp == PerlIO_stdout() || fp == PerlIO_stderr())) {
535 Perl_warner(aTHX_ packWARN(WARN_IO),
536 "Filehandle STD%s reopened as %s only for input",
537 ((fp == PerlIO_stdout()) ? "OUT" : "ERR"),
540 else if ((IoTYPE(io) == IoTYPE_WRONLY) && fp == PerlIO_stdin()) {
541 Perl_warner(aTHX_ packWARN(WARN_IO),
542 "Filehandle STDIN reopened as %s only for output",
547 fd = PerlIO_fileno(fp);
548 /* If there is no fd (e.g. PerlIO::scalar) assume it isn't a
549 * socket - this covers PerlIO::scalar - otherwise unless we "know" the
550 * type probe for socket-ness.
552 if (IoTYPE(io) && IoTYPE(io) != IoTYPE_PIPE && IoTYPE(io) != IoTYPE_STD && fd >= 0) {
553 if (PerlLIO_fstat(fd,&PL_statbuf) < 0) {
554 /* If PerlIO claims to have fd we had better be able to fstat() it. */
555 (void) PerlIO_close(fp);
559 if (S_ISSOCK(PL_statbuf.st_mode))
560 IoTYPE(io) = IoTYPE_SOCKET; /* in case a socket was passed in to us */
564 !(PL_statbuf.st_mode & S_IFMT)
568 && IoTYPE(io) != IoTYPE_WRONLY /* Dups of STD* filehandles already have */
569 && IoTYPE(io) != IoTYPE_RDONLY /* type so they aren't marked as sockets */
570 ) { /* on OS's that return 0 on fstat()ed pipe */
572 Sock_size_t buflen = sizeof tmpbuf;
573 if (PerlSock_getsockname(fd, (struct sockaddr *)tmpbuf, &buflen) >= 0
574 || errno != ENOTSOCK)
575 IoTYPE(io) = IoTYPE_SOCKET; /* some OS's return 0 on fstat()ed socket */
576 /* but some return 0 for streams too, sigh */
578 #endif /* HAS_SOCKET */
579 #endif /* !PERL_MICRO */
583 * If this is a standard handle we discard all the layer stuff
584 * and just dup the fd into whatever was on the handle before !
587 if (saveifp) { /* must use old fp? */
588 /* If fd is less that PL_maxsysfd i.e. STDIN..STDERR
589 then dup the new fileno down
592 PerlIO_flush(saveofp); /* emulate PerlIO_close() */
593 if (saveofp != saveifp) { /* was a socket? */
594 PerlIO_close(saveofp);
598 /* Still a small can-of-worms here if (say) PerlIO::scalar
599 is assigned to (say) STDOUT - for now let dup2() fail
600 and provide the error
602 if (PerlLIO_dup2(fd, savefd) < 0) {
603 (void)PerlIO_close(fp);
607 if (savefd != PerlIO_fileno(PerlIO_stdin())) {
608 char newname[FILENAME_MAX+1];
609 if (PerlIO_getname(fp, newname)) {
610 if (fd == PerlIO_fileno(PerlIO_stdout()))
611 Perl_vmssetuserlnm(aTHX_ "SYS$OUTPUT", newname);
612 if (fd == PerlIO_fileno(PerlIO_stderr()))
613 Perl_vmssetuserlnm(aTHX_ "SYS$ERROR", newname);
619 /* PL_fdpid isn't used on Windows, so avoid this useless work.
620 * XXX Probably the same for a lot of other places. */
626 sv = *av_fetch(PL_fdpid,fd,TRUE);
627 SvUPGRADE(sv, SVt_IV);
630 sv = *av_fetch(PL_fdpid,savefd,TRUE);
631 SvUPGRADE(sv, SVt_IV);
638 /* need to close fp without closing underlying fd */
639 int ofd = PerlIO_fileno(fp);
640 int dupfd = PerlLIO_dup(ofd);
641 #if defined(HAS_FCNTL) && defined(F_SETFD)
642 /* Assume if we have F_SETFD we have F_GETFD */
643 int coe = fcntl(ofd,F_GETFD);
646 PerlLIO_dup2(dupfd,ofd);
647 #if defined(HAS_FCNTL) && defined(F_SETFD)
648 /* The dup trick has lost close-on-exec on ofd */
649 fcntl(ofd,F_SETFD, coe);
651 PerlLIO_close(dupfd);
658 fd = PerlIO_fileno(fp);
660 #if defined(HAS_FCNTL) && defined(F_SETFD)
662 const int save_errno = errno;
663 fcntl(fd,F_SETFD,fd > PL_maxsysfd); /* can change errno */
669 IoFLAGS(io) &= ~IOf_NOLINE;
671 if (IoTYPE(io) == IoTYPE_SOCKET
672 || (IoTYPE(io) == IoTYPE_WRONLY && fd >= 0 && S_ISCHR(PL_statbuf.st_mode)) ) {
674 if (*s == IoTYPE_IMPLICIT || *s == IoTYPE_NUMERIC)
677 if (!(IoOFP(io) = PerlIO_openn(aTHX_ type,s,fd,0,0,NULL,0,svp))) {
691 IoTYPE(io) = savetype;
696 Perl_nextargv(pTHX_ register GV *gv)
700 #ifndef FLEXFILENAMES
706 IO * const io = GvIOp(gv);
709 PL_argvoutgv = gv_fetchpvs("ARGVOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO);
710 if (io && (IoFLAGS(io) & IOf_ARGV) && (IoFLAGS(io) & IOf_START)) {
711 IoFLAGS(io) &= ~IOf_START;
714 Perl_av_create_and_push(aTHX_ &PL_argvout_stack,
715 SvREFCNT_inc_simple_NN(PL_defoutgv));
718 if (PL_filemode & (S_ISUID|S_ISGID)) {
719 PerlIO_flush(IoIFP(GvIOn(PL_argvoutgv))); /* chmod must follow last write */
722 (void)fchmod(PL_lastfd,PL_filemode);
724 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
731 while (av_len(GvAV(gv)) >= 0) {
733 sv = av_shift(GvAV(gv));
735 sv_setsv(GvSVn(gv),sv);
736 SvSETMAGIC(GvSV(gv));
737 PL_oldname = SvPVx(GvSV(gv), oldlen);
738 if (do_open(gv,PL_oldname,oldlen,PL_inplace!=0,O_RDONLY,0,NULL)) {
740 TAINT_PROPER("inplace open");
741 if (oldlen == 1 && *PL_oldname == '-') {
742 setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL,
744 return IoIFP(GvIOp(gv));
746 #ifndef FLEXFILENAMES
747 filedev = PL_statbuf.st_dev;
748 fileino = PL_statbuf.st_ino;
750 PL_filemode = PL_statbuf.st_mode;
751 fileuid = PL_statbuf.st_uid;
752 filegid = PL_statbuf.st_gid;
753 if (!S_ISREG(PL_filemode)) {
754 if (ckWARN_d(WARN_INPLACE))
755 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
756 "Can't do inplace edit: %s is not a regular file",
762 const char *star = strchr(PL_inplace, '*');
764 const char *begin = PL_inplace;
765 sv_setpvn(sv, "", 0);
767 sv_catpvn(sv, begin, star - begin);
768 sv_catpvn(sv, PL_oldname, oldlen);
770 } while ((star = strchr(begin, '*')));
775 sv_catpv(sv,PL_inplace);
777 #ifndef FLEXFILENAMES
778 if ((PerlLIO_stat(SvPVX_const(sv),&PL_statbuf) >= 0
779 && PL_statbuf.st_dev == filedev
780 && PL_statbuf.st_ino == fileino)
782 || ((_djstat_fail_bits & _STFAIL_TRUENAME)!=0)
786 if (ckWARN_d(WARN_INPLACE))
787 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
788 "Can't do inplace edit: %"SVf" would not be unique",
795 #if !defined(DOSISH) && !defined(__CYGWIN__) && !defined(EPOC)
796 if (PerlLIO_rename(PL_oldname,SvPVX_const(sv)) < 0) {
797 if (ckWARN_d(WARN_INPLACE))
798 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
799 "Can't rename %s to %"SVf": %s, skipping file",
800 PL_oldname, SVfARG(sv), Strerror(errno));
806 (void)PerlLIO_unlink(SvPVX_const(sv));
807 (void)PerlLIO_rename(PL_oldname,SvPVX_const(sv));
808 do_open(gv,(char*)SvPVX_const(sv),SvCUR(sv),PL_inplace!=0,
812 (void)UNLINK(SvPVX_const(sv));
813 if (link(PL_oldname,SvPVX_const(sv)) < 0) {
814 if (ckWARN_d(WARN_INPLACE))
815 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
816 "Can't rename %s to %"SVf": %s, skipping file",
817 PL_oldname, SVfARG(sv), Strerror(errno) );
821 (void)UNLINK(PL_oldname);
825 #if !defined(DOSISH) && !defined(AMIGAOS)
826 # ifndef VMS /* Don't delete; use automatic file versioning */
827 if (UNLINK(PL_oldname) < 0) {
828 if (ckWARN_d(WARN_INPLACE))
829 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
830 "Can't remove %s: %s, skipping file",
831 PL_oldname, Strerror(errno) );
837 Perl_croak(aTHX_ "Can't do inplace edit without backup");
841 sv_setpvn(sv,">",!PL_inplace);
842 sv_catpvn(sv,PL_oldname,oldlen);
843 SETERRNO(0,0); /* in case sprintf set errno */
845 if (!do_open(PL_argvoutgv,(char*)SvPVX_const(sv),SvCUR(sv),
846 PL_inplace!=0,O_WRONLY|O_CREAT|O_TRUNC,0,NULL))
848 if (!do_open(PL_argvoutgv,(char*)SvPVX_const(sv),SvCUR(sv),
849 PL_inplace!=0,O_WRONLY|O_CREAT|OPEN_EXCL,0666,
853 if (ckWARN_d(WARN_INPLACE))
854 Perl_warner(aTHX_ packWARN(WARN_INPLACE), "Can't do inplace edit on %s: %s",
855 PL_oldname, Strerror(errno) );
859 setdefout(PL_argvoutgv);
860 PL_lastfd = PerlIO_fileno(IoIFP(GvIOp(PL_argvoutgv)));
861 (void)PerlLIO_fstat(PL_lastfd,&PL_statbuf);
863 (void)fchmod(PL_lastfd,PL_filemode);
865 # if !(defined(WIN32) && defined(__BORLANDC__))
866 /* Borland runtime creates a readonly file! */
867 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
870 if (fileuid != PL_statbuf.st_uid || filegid != PL_statbuf.st_gid) {
872 (void)fchown(PL_lastfd,fileuid,filegid);
875 (void)PerlLIO_chown(PL_oldname,fileuid,filegid);
880 return IoIFP(GvIOp(gv));
883 if (ckWARN_d(WARN_INPLACE)) {
884 const int eno = errno;
885 if (PerlLIO_stat(PL_oldname, &PL_statbuf) >= 0
886 && !S_ISREG(PL_statbuf.st_mode))
888 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
889 "Can't do inplace edit: %s is not a regular file",
893 Perl_warner(aTHX_ packWARN(WARN_INPLACE), "Can't open %s: %s",
894 PL_oldname, Strerror(eno));
898 if (io && (IoFLAGS(io) & IOf_ARGV))
899 IoFLAGS(io) |= IOf_START;
901 (void)do_close(PL_argvoutgv,FALSE);
902 if (io && (IoFLAGS(io) & IOf_ARGV)
903 && PL_argvout_stack && AvFILLp(PL_argvout_stack) >= 0)
905 GV * const oldout = (GV*)av_pop(PL_argvout_stack);
907 SvREFCNT_dec(oldout);
910 setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO));
915 /* explicit renamed to avoid C++ conflict -- kja */
917 Perl_do_close(pTHX_ GV *gv, bool not_implicit)
925 if (!gv || SvTYPE(gv) != SVt_PVGV) {
927 SETERRNO(EBADF,SS_IVCHAN);
931 if (!io) { /* never opened */
933 if (ckWARN(WARN_UNOPENED)) /* no check for closed here */
934 report_evil_fh(gv, io, PL_op->op_type);
935 SETERRNO(EBADF,SS_IVCHAN);
939 retval = io_close(io, not_implicit);
943 IoLINES_LEFT(io) = IoPAGE_LEN(io);
945 IoTYPE(io) = IoTYPE_CLOSED;
950 Perl_io_close(pTHX_ IO *io, bool not_implicit)
956 if (IoTYPE(io) == IoTYPE_PIPE) {
957 const int status = PerlProc_pclose(IoIFP(io));
959 STATUS_NATIVE_CHILD_SET(status);
960 retval = (STATUS_UNIX == 0);
963 retval = (status != -1);
966 else if (IoTYPE(io) == IoTYPE_STD)
969 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { /* a socket */
970 const bool prev_err = PerlIO_error(IoOFP(io));
971 retval = (PerlIO_close(IoOFP(io)) != EOF && !prev_err);
972 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
975 const bool prev_err = PerlIO_error(IoIFP(io));
976 retval = (PerlIO_close(IoIFP(io)) != EOF && !prev_err);
979 IoOFP(io) = IoIFP(io) = NULL;
981 else if (not_implicit) {
982 SETERRNO(EBADF,SS_IVCHAN);
989 Perl_do_eof(pTHX_ GV *gv)
992 register IO * const io = GvIO(gv);
996 else if ((IoTYPE(io) == IoTYPE_WRONLY) && ckWARN(WARN_IO))
997 report_evil_fh(gv, io, OP_phoney_OUTPUT_ONLY);
1000 if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */
1001 if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */
1002 return FALSE; /* this is the most usual case */
1006 /* getc and ungetc can stomp on errno */
1007 const int saverrno = errno;
1008 const int ch = PerlIO_getc(IoIFP(io));
1010 (void)PerlIO_ungetc(IoIFP(io),ch);
1017 if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
1018 if (PerlIO_get_cnt(IoIFP(io)) < -1)
1019 PerlIO_set_cnt(IoIFP(io),-1);
1021 if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
1022 if (gv != PL_argvgv || !nextargv(gv)) /* get another fp handy */
1026 return TRUE; /* normal fp, definitely end of file */
1032 Perl_do_tell(pTHX_ GV *gv)
1035 register IO *io = NULL;
1036 register PerlIO *fp;
1038 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
1039 #ifdef ULTRIX_STDIO_BOTCH
1041 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
1043 return PerlIO_tell(fp);
1045 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1046 report_evil_fh(gv, io, PL_op->op_type);
1047 SETERRNO(EBADF,RMS_IFI);
1052 Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence)
1055 register IO *io = NULL;
1056 register PerlIO *fp;
1058 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
1059 #ifdef ULTRIX_STDIO_BOTCH
1061 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
1063 return PerlIO_seek(fp, pos, whence) >= 0;
1065 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1066 report_evil_fh(gv, io, PL_op->op_type);
1067 SETERRNO(EBADF,RMS_IFI);
1072 Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence)
1075 register IO *io = NULL;
1076 register PerlIO *fp;
1078 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io)))
1079 return PerlLIO_lseek(PerlIO_fileno(fp), pos, whence);
1080 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1081 report_evil_fh(gv, io, PL_op->op_type);
1082 SETERRNO(EBADF,RMS_IFI);
1087 Perl_mode_from_discipline(pTHX_ SV *discp)
1089 int mode = O_BINARY;
1092 const char *s = SvPV_const(discp,len);
1097 if (s[2] == 'a' && s[3] == 'w'
1098 && (!s[4] || s[4] == ':' || isSPACE(s[4])))
1107 if (s[2] == 'r' && s[3] == 'l' && s[4] == 'f'
1108 && (!s[5] || s[5] == ':' || isSPACE(s[5])))
1117 goto fail_discipline;
1120 else if (isSPACE(*s)) {
1127 end = strchr(s+1, ':');
1130 #ifndef PERLIO_LAYERS
1131 Perl_croak(aTHX_ "IO layers (like '%.*s') unavailable", end-s, s);
1142 #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE)
1144 my_chsize(int fd, Off_t length)
1147 /* code courtesy of William Kucharski */
1152 if (PerlLIO_fstat(fd, &filebuf) < 0)
1155 if (filebuf.st_size < length) {
1157 /* extend file length */
1159 if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0)
1162 /* write a "0" byte */
1164 if ((PerlLIO_write(fd, "", 1)) != 1)
1168 /* truncate length */
1172 fl.l_start = length;
1173 fl.l_type = F_WRLCK; /* write lock on file space */
1176 * This relies on the UNDOCUMENTED F_FREESP argument to
1177 * fcntl(2), which truncates the file so that it ends at the
1178 * position indicated by fl.l_start.
1180 * Will minor miracles never cease?
1183 if (fcntl(fd, F_FREESP, &fl) < 0)
1189 Perl_croak_nocontext("truncate not implemented");
1190 #endif /* F_FREESP */
1193 #endif /* !HAS_TRUNCATE && !HAS_CHSIZE */
1196 Perl_do_print(pTHX_ register SV *sv, PerlIO *fp)
1199 /* assuming fp is checked earlier */
1202 if (SvTYPE(sv) == SVt_IV && SvIOK(sv)) {
1203 assert(!SvGMAGICAL(sv));
1205 PerlIO_printf(fp, "%"UVuf, (UV)SvUVX(sv));
1207 PerlIO_printf(fp, "%"IVdf, (IV)SvIVX(sv));
1208 return !PerlIO_error(fp);
1212 /* Do this first to trigger any overloading. */
1213 const char *tmps = SvPV_const(sv, len);
1217 if (PerlIO_isutf8(fp)) {
1219 /* We don't modify the original scalar. */
1220 tmpbuf = bytes_to_utf8((const U8*) tmps, &len);
1221 tmps = (char *) tmpbuf;
1224 else if (DO_UTF8(sv)) {
1225 STRLEN tmplen = len;
1227 U8 * const result = bytes_from_utf8((const U8*) tmps, &tmplen, &utf8);
1230 tmps = (char *) tmpbuf;
1234 assert((char *)result == tmps);
1235 if (ckWARN_d(WARN_UTF8)) {
1236 Perl_warner(aTHX_ packWARN(WARN_UTF8),
1237 "Wide character in print");
1241 /* To detect whether the process is about to overstep its
1242 * filesize limit we would need getrlimit(). We could then
1243 * also transparently raise the limit with setrlimit() --
1244 * but only until the system hard limit/the filesystem limit,
1245 * at which we would get EPERM. Note that when using buffered
1246 * io the write failure can be delayed until the flush/close. --jhi */
1247 if (len && (PerlIO_write(fp,tmps,len) == 0))
1250 return happy ? !PerlIO_error(fp) : FALSE;
1262 if (PL_op->op_flags & OPf_REF) {
1267 return PL_laststatval;
1270 PL_laststype = OP_STAT;
1272 sv_setpvn(PL_statname, "", 0);
1275 return (PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache));
1276 } else if (IoDIRP(io)) {
1278 return (PL_laststatval = PerlLIO_fstat(dirfd(IoDIRP(io)), &PL_statcache));
1280 Perl_die(aTHX_ PL_no_func, "dirfd");
1283 /* Can't use NORETURN_FUNCTION_END because Perl_die is not
1284 * __attribute__noreturn__
1285 * Can't use DIE because that does not return an integer
1289 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1290 report_evil_fh(gv, io, PL_op->op_type);
1291 return (PL_laststatval = -1);
1294 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1295 report_evil_fh(gv, io, PL_op->op_type);
1296 return (PL_laststatval = -1);
1299 else if (PL_op->op_private & OPpFT_STACKED) {
1300 return PL_laststatval;
1303 SV* const sv = POPs;
1307 if (SvTYPE(sv) == SVt_PVGV) {
1311 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
1315 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
1318 goto do_fstat_have_io;
1321 s = SvPV_const(sv, len);
1323 sv_setpvn(PL_statname, s, len);
1324 s = SvPVX_const(PL_statname); /* s now NUL-terminated */
1325 PL_laststype = OP_STAT;
1326 PL_laststatval = PerlLIO_stat(s, &PL_statcache);
1327 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(s, '\n'))
1328 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
1329 return PL_laststatval;
1338 static const char no_prev_lstat[] = "The stat preceding -l _ wasn't an lstat";
1341 if (PL_op->op_flags & OPf_REF) {
1343 if (cGVOP_gv == PL_defgv) {
1344 if (PL_laststype != OP_LSTAT)
1345 Perl_croak(aTHX_ no_prev_lstat);
1346 return PL_laststatval;
1348 if (ckWARN(WARN_IO)) {
1349 Perl_warner(aTHX_ packWARN(WARN_IO), "Use of -l on filehandle %s",
1351 return (PL_laststatval = -1);
1354 else if (PL_laststype != OP_LSTAT
1355 && (PL_op->op_private & OPpFT_STACKED) && ckWARN(WARN_IO))
1356 Perl_croak(aTHX_ no_prev_lstat);
1358 PL_laststype = OP_LSTAT;
1362 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV && ckWARN(WARN_IO)) {
1363 Perl_warner(aTHX_ packWARN(WARN_IO), "Use of -l on filehandle %s",
1364 GvENAME((GV*) SvRV(sv)));
1365 return (PL_laststatval = -1);
1367 /* XXX Do really need to be calling SvPV() all these times? */
1368 sv_setpv(PL_statname,SvPV_nolen_const(sv));
1369 PL_laststatval = PerlLIO_lstat(SvPV_nolen_const(sv),&PL_statcache);
1370 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(SvPV_nolen_const(sv), '\n'))
1371 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "lstat");
1372 return PL_laststatval;
1376 S_exec_failed(pTHX_ const char *cmd, int fd, int do_report)
1378 const int e = errno;
1379 if (ckWARN(WARN_EXEC))
1380 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't exec \"%s\": %s",
1383 PerlLIO_write(fd, (void*)&e, sizeof(int));
1389 Perl_do_aexec5(pTHX_ SV *really, register SV **mark, register SV **sp,
1390 int fd, int do_report)
1393 #if defined(MACOS_TRADITIONAL) || defined(__SYMBIAN32__)
1394 Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system");
1398 const char *tmps = NULL;
1399 Newx(PL_Argv, sp - mark + 1, char*);
1402 while (++mark <= sp) {
1404 *a++ = (char*)SvPV_nolen_const(*mark);
1410 tmps = SvPV_nolen_const(really);
1411 if ((!really && *PL_Argv[0] != '/') ||
1412 (really && *tmps != '/')) /* will execvp use PATH? */
1413 TAINT_ENV(); /* testing IFS here is overkill, probably */
1415 if (really && *tmps)
1416 PerlProc_execvp(tmps,EXEC_ARGV_CAST(PL_Argv));
1418 PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
1420 S_exec_failed(aTHX_ (really ? tmps : PL_Argv[0]), fd, do_report);
1428 Perl_do_execfree(pTHX)
1437 #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
1440 Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report)
1448 /* Make a copy so we can change it */
1449 const Size_t cmdlen = strlen(incmd) + 1;
1450 Newx(buf, cmdlen, char);
1452 my_strlcpy(cmd, incmd, cmdlen);
1454 while (*cmd && isSPACE(*cmd))
1457 /* save an extra exec if possible */
1461 char flags[PERL_FLAGS_MAX];
1462 if (strnEQ(cmd,PL_cshname,PL_cshlen) &&
1463 strnEQ(cmd+PL_cshlen," -c",3)) {
1464 my_strlcpy(flags, "-c", PERL_FLAGS_MAX);
1465 s = cmd+PL_cshlen+3;
1468 my_strlcat(flags, "f", PERL_FLAGS_MAX - 2);
1473 char * const ncmd = s;
1479 if (s[-1] == '\'') {
1482 PerlProc_execl(PL_cshname, "csh", flags, ncmd, (char*)NULL);
1485 S_exec_failed(aTHX_ PL_cshname, fd, do_report);
1494 /* see if there are shell metacharacters in it */
1496 if (*cmd == '.' && isSPACE(cmd[1]))
1499 if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1504 s++; /* catch VAR=val gizmo */
1508 for (s = cmd; *s; s++) {
1509 if (*s != ' ' && !isALPHA(*s) &&
1510 strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
1511 if (*s == '\n' && !s[1]) {
1515 /* handle the 2>&1 construct at the end */
1516 if (*s == '>' && s[1] == '&' && s[2] == '1'
1517 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1518 && (!s[3] || isSPACE(s[3])))
1520 const char *t = s + 3;
1522 while (*t && isSPACE(*t))
1524 if (!*t && (PerlLIO_dup2(1,2) != -1)) {
1531 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char *)NULL);
1533 S_exec_failed(aTHX_ PL_sh_path, fd, do_report);
1539 Newx(PL_Argv, (s - cmd) / 2 + 2, char*);
1540 PL_Cmd = savepvn(cmd, s-cmd);
1542 for (s = PL_Cmd; *s;) {
1547 while (*s && !isSPACE(*s))
1555 PerlProc_execvp(PL_Argv[0],PL_Argv);
1557 if (errno == ENOEXEC) { /* for system V NIH syndrome */
1561 S_exec_failed(aTHX_ PL_Argv[0], fd, do_report);
1568 #endif /* OS2 || WIN32 */
1571 Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp)
1575 register I32 tot = 0;
1576 const char *const what = PL_op_name[type];
1578 SV ** const oldmark = mark;
1580 /* Doing this ahead of the switch statement preserves the old behaviour,
1581 where attempting to use kill as a taint test test would fail on
1582 platforms where kill was not defined. */
1584 if (type == OP_KILL)
1585 Perl_die(aTHX_ PL_no_func, what);
1588 if (type == OP_CHOWN)
1589 Perl_die(aTHX_ PL_no_func, what);
1593 #define APPLY_TAINT_PROPER() \
1595 if (PL_tainted) { TAINT_PROPER(what); } \
1598 /* This is a first heuristic; it doesn't catch tainting magic. */
1600 while (++mark <= sp) {
1601 if (SvTAINTED(*mark)) {
1610 APPLY_TAINT_PROPER();
1613 APPLY_TAINT_PROPER();
1615 while (++mark <= sp) {
1617 if (SvTYPE(*mark) == SVt_PVGV) {
1620 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1622 APPLY_TAINT_PROPER();
1623 if (fchmod(PerlIO_fileno(IoIFP(GvIOn(gv))), val))
1626 Perl_die(aTHX_ PL_no_func, "fchmod");
1633 else if (SvROK(*mark) && SvTYPE(SvRV(*mark)) == SVt_PVGV) {
1634 gv = (GV*)SvRV(*mark);
1638 const char *name = SvPV_nolen_const(*mark);
1639 APPLY_TAINT_PROPER();
1640 if (PerlLIO_chmod(name, val))
1648 APPLY_TAINT_PROPER();
1649 if (sp - mark > 2) {
1651 val = SvIVx(*++mark);
1652 val2 = SvIVx(*++mark);
1653 APPLY_TAINT_PROPER();
1655 while (++mark <= sp) {
1657 if (SvTYPE(*mark) == SVt_PVGV) {
1660 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1662 APPLY_TAINT_PROPER();
1663 if (fchown(PerlIO_fileno(IoIFP(GvIOn(gv))), val, val2))
1666 Perl_die(aTHX_ PL_no_func, "fchown");
1673 else if (SvROK(*mark) && SvTYPE(SvRV(*mark)) == SVt_PVGV) {
1674 gv = (GV*)SvRV(*mark);
1678 const char *name = SvPV_nolen_const(*mark);
1679 APPLY_TAINT_PROPER();
1680 if (PerlLIO_chown(name, val, val2))
1688 XXX Should we make lchown() directly available from perl?
1689 For now, we'll let Configure test for HAS_LCHOWN, but do
1690 nothing in the core.
1695 APPLY_TAINT_PROPER();
1698 s = SvPVx_nolen_const(*++mark);
1700 if (*s == 'S' && s[1] == 'I' && s[2] == 'G')
1702 if ((val = whichsig(s)) < 0)
1703 Perl_croak(aTHX_ "Unrecognized signal name \"%s\"",s);
1707 APPLY_TAINT_PROPER();
1710 /* kill() doesn't do process groups (job trees?) under VMS */
1711 if (val < 0) val = -val;
1712 if (val == SIGKILL) {
1713 # include <starlet.h>
1714 /* Use native sys$delprc() to insure that target process is
1715 * deleted; supervisor-mode images don't pay attention to
1716 * CRTL's emulation of Unix-style signals and kill()
1718 while (++mark <= sp) {
1719 I32 proc = SvIVx(*mark);
1720 register unsigned long int __vmssts;
1721 APPLY_TAINT_PROPER();
1722 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1726 case SS$_NOSUCHNODE:
1727 SETERRNO(ESRCH,__vmssts);
1730 SETERRNO(EPERM,__vmssts);
1733 SETERRNO(EVMSERR,__vmssts);
1742 while (++mark <= sp) {
1743 const I32 proc = SvIVx(*mark);
1744 APPLY_TAINT_PROPER();
1746 if (PerlProc_killpg(proc,val)) /* BSD */
1748 if (PerlProc_kill(-proc,val)) /* SYSV */
1754 while (++mark <= sp) {
1755 const I32 proc = SvIVx(*mark);
1756 APPLY_TAINT_PROPER();
1757 if (PerlProc_kill(proc, val))
1764 APPLY_TAINT_PROPER();
1766 while (++mark <= sp) {
1767 s = SvPV_nolen_const(*mark);
1768 APPLY_TAINT_PROPER();
1769 if (PL_euid || PL_unsafe) {
1773 else { /* don't let root wipe out directories without -U */
1774 if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode))
1783 #if defined(HAS_UTIME) || defined(HAS_FUTIMES)
1785 APPLY_TAINT_PROPER();
1786 if (sp - mark > 2) {
1787 #if defined(HAS_FUTIMES)
1788 struct timeval utbuf[2];
1789 void *utbufp = utbuf;
1790 #elif defined(I_UTIME) || defined(VMS)
1791 struct utimbuf utbuf;
1792 struct utimbuf *utbufp = &utbuf;
1798 void *utbufp = &utbuf;
1801 SV* const accessed = *++mark;
1802 SV* const modified = *++mark;
1804 /* Be like C, and if both times are undefined, let the C
1805 * library figure out what to do. This usually means
1806 * "current time". */
1808 if ( accessed == &PL_sv_undef && modified == &PL_sv_undef )
1811 Zero(&utbuf, sizeof utbuf, char);
1813 utbuf[0].tv_sec = (long)SvIVx(accessed); /* time accessed */
1814 utbuf[0].tv_usec = 0;
1815 utbuf[1].tv_sec = (long)SvIVx(modified); /* time modified */
1816 utbuf[1].tv_usec = 0;
1817 #elif defined(BIG_TIME)
1818 utbuf.actime = (Time_t)SvNVx(accessed); /* time accessed */
1819 utbuf.modtime = (Time_t)SvNVx(modified); /* time modified */
1821 utbuf.actime = (Time_t)SvIVx(accessed); /* time accessed */
1822 utbuf.modtime = (Time_t)SvIVx(modified); /* time modified */
1825 APPLY_TAINT_PROPER();
1827 while (++mark <= sp) {
1829 if (SvTYPE(*mark) == SVt_PVGV) {
1832 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1834 APPLY_TAINT_PROPER();
1835 if (futimes(PerlIO_fileno(IoIFP(GvIOn(gv))), utbufp))
1838 Perl_die(aTHX_ PL_no_func, "futimes");
1845 else if (SvROK(*mark) && SvTYPE(SvRV(*mark)) == SVt_PVGV) {
1846 gv = (GV*)SvRV(*mark);
1850 const char * const name = SvPV_nolen_const(*mark);
1851 APPLY_TAINT_PROPER();
1853 if (utimes(name, utbufp))
1855 if (PerlLIO_utime(name, utbufp))
1869 #undef APPLY_TAINT_PROPER
1872 /* Do the permissions allow some operation? Assumes statcache already set. */
1873 #ifndef VMS /* VMS' cando is in vms.c */
1875 Perl_cando(pTHX_ Mode_t mode, bool effective, register const Stat_t *statbufp)
1876 /* effective is a flag, true for EUID, or for checking if the effective gid
1877 * is in the list of groups returned from getgroups().
1882 /* [Comments and code from Len Reed]
1883 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
1884 * to write-protected files. The execute permission bit is set
1885 * by the Miscrosoft C library stat() function for the following:
1890 * All files and directories are readable.
1891 * Directories and special files, e.g. "CON", cannot be
1893 * [Comment by Tom Dinger -- a directory can have the write-protect
1894 * bit set in the file system, but DOS permits changes to
1895 * the directory anyway. In addition, all bets are off
1896 * here for networked software, such as Novell and
1900 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
1901 * too so it will actually look into the files for magic numbers
1903 return (mode & statbufp->st_mode) ? TRUE : FALSE;
1905 #else /* ! DOSISH */
1906 if ((effective ? PL_euid : PL_uid) == 0) { /* root is special */
1907 if (mode == S_IXUSR) {
1908 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
1912 return TRUE; /* root reads and writes anything */
1915 if (statbufp->st_uid == (effective ? PL_euid : PL_uid) ) {
1916 if (statbufp->st_mode & mode)
1917 return TRUE; /* ok as "user" */
1919 else if (ingroup(statbufp->st_gid,effective)) {
1920 if (statbufp->st_mode & mode >> 3)
1921 return TRUE; /* ok as "group" */
1923 else if (statbufp->st_mode & mode >> 6)
1924 return TRUE; /* ok as "other" */
1926 #endif /* ! DOSISH */
1931 Perl_ingroup(pTHX_ Gid_t testgid, bool effective)
1933 #ifdef MACOS_TRADITIONAL
1934 /* This is simply not correct for AppleShare, but fix it yerself. */
1938 if (testgid == (effective ? PL_egid : PL_gid))
1940 #ifdef HAS_GETGROUPS
1942 Groups_t *gary = NULL;
1946 anum = getgroups(0, gary);
1947 Newx(gary, anum, Groups_t);
1948 anum = getgroups(anum, gary);
1950 if (gary[anum] == testgid) {
1964 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
1967 Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
1970 const key_t key = (key_t)SvNVx(*++mark);
1971 const I32 n = (optype == OP_MSGGET) ? 0 : SvIVx(*++mark);
1972 const I32 flags = SvIVx(*++mark);
1974 PERL_UNUSED_ARG(sp);
1981 return msgget(key, flags);
1985 return semget(key, n, flags);
1989 return shmget(key, n, flags);
1991 #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
1993 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
1996 return -1; /* should never happen */
2000 Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
2005 const I32 id = SvIVx(*++mark);
2007 const I32 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
2009 const I32 cmd = SvIVx(*++mark);
2010 SV * const astr = *++mark;
2011 STRLEN infosize = 0;
2012 I32 getinfo = (cmd == IPC_STAT);
2014 PERL_UNUSED_ARG(sp);
2020 if (cmd == IPC_STAT || cmd == IPC_SET)
2021 infosize = sizeof(struct msqid_ds);
2026 if (cmd == IPC_STAT || cmd == IPC_SET)
2027 infosize = sizeof(struct shmid_ds);
2033 if (cmd == IPC_STAT || cmd == IPC_SET)
2034 infosize = sizeof(struct semid_ds);
2035 else if (cmd == GETALL || cmd == SETALL)
2037 struct semid_ds semds;
2039 #ifdef EXTRA_F_IN_SEMUN_BUF
2040 semun.buff = &semds;
2044 getinfo = (cmd == GETALL);
2045 if (Semctl(id, 0, IPC_STAT, semun) == -1)
2047 infosize = semds.sem_nsems * sizeof(short);
2048 /* "short" is technically wrong but much more portable
2049 than guessing about u_?short(_t)? */
2052 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2056 #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
2058 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2066 SvPV_force_nolen(astr);
2067 a = SvGROW(astr, infosize+1);
2072 a = SvPV(astr, len);
2073 if (len != infosize)
2074 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
2082 const IV i = SvIV(astr);
2083 a = INT2PTR(char *,i); /* ouch */
2090 ret = msgctl(id, cmd, (struct msqid_ds *)a);
2096 union semun unsemds;
2098 #ifdef EXTRA_F_IN_SEMUN_BUF
2099 unsemds.buff = (struct semid_ds *)a;
2101 unsemds.buf = (struct semid_ds *)a;
2103 ret = Semctl(id, n, cmd, unsemds);
2105 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2112 ret = shmctl(id, cmd, (struct shmid_ds *)a);
2116 if (getinfo && ret >= 0) {
2117 SvCUR_set(astr, infosize);
2118 *SvEND(astr) = '\0';
2125 Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
2130 const I32 id = SvIVx(*++mark);
2131 SV * const mstr = *++mark;
2132 const I32 flags = SvIVx(*++mark);
2133 const char * const mbuf = SvPV_const(mstr, len);
2134 const I32 msize = len - sizeof(long);
2136 PERL_UNUSED_ARG(sp);
2139 Perl_croak(aTHX_ "Arg too short for msgsnd");
2141 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
2143 Perl_croak(aTHX_ "msgsnd not implemented");
2148 Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
2154 I32 msize, flags, ret;
2155 const I32 id = SvIVx(*++mark);
2156 SV * const mstr = *++mark;
2157 PERL_UNUSED_ARG(sp);
2159 /* suppress warning when reading into undef var --jhi */
2161 sv_setpvn(mstr, "", 0);
2162 msize = SvIVx(*++mark);
2163 mtype = (long)SvIVx(*++mark);
2164 flags = SvIVx(*++mark);
2165 SvPV_force_nolen(mstr);
2166 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
2169 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
2171 SvCUR_set(mstr, sizeof(long)+ret);
2172 *SvEND(mstr) = '\0';
2173 #ifndef INCOMPLETE_TAINTS
2174 /* who knows who has been playing with this message? */
2180 Perl_croak(aTHX_ "msgrcv not implemented");
2185 Perl_do_semop(pTHX_ SV **mark, SV **sp)
2190 const I32 id = SvIVx(*++mark);
2191 SV * const opstr = *++mark;
2192 const char * const opbuf = SvPV_const(opstr, opsize);
2193 PERL_UNUSED_ARG(sp);
2195 if (opsize < 3 * SHORTSIZE
2196 || (opsize % (3 * SHORTSIZE))) {
2197 SETERRNO(EINVAL,LIB_INVARG);
2201 /* We can't assume that sizeof(struct sembuf) == 3 * sizeof(short). */
2203 const int nsops = opsize / (3 * sizeof (short));
2205 short * const ops = (short *) opbuf;
2207 struct sembuf *temps, *t;
2210 Newx (temps, nsops, struct sembuf);
2218 result = semop(id, temps, nsops);
2232 Perl_croak(aTHX_ "semop not implemented");
2237 Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
2242 struct shmid_ds shmds;
2243 const I32 id = SvIVx(*++mark);
2244 SV * const mstr = *++mark;
2245 const I32 mpos = SvIVx(*++mark);
2246 const I32 msize = SvIVx(*++mark);
2247 PERL_UNUSED_ARG(sp);
2250 if (shmctl(id, IPC_STAT, &shmds) == -1)
2252 if (mpos < 0 || msize < 0
2253 || (size_t)mpos + msize > (size_t)shmds.shm_segsz) {
2254 SETERRNO(EFAULT,SS_ACCVIO); /* can't do as caller requested */
2257 shm = (char *)shmat(id, NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
2258 if (shm == (char *)-1) /* I hate System V IPC, I really do */
2260 if (optype == OP_SHMREAD) {
2262 /* suppress warning when reading into undef var (tchrist 3/Mar/00) */
2264 sv_setpvn(mstr, "", 0);
2265 SvPV_force_nolen(mstr);
2266 mbuf = SvGROW(mstr, (STRLEN)msize+1);
2268 Copy(shm + mpos, mbuf, msize, char);
2269 SvCUR_set(mstr, msize);
2270 *SvEND(mstr) = '\0';
2272 #ifndef INCOMPLETE_TAINTS
2273 /* who knows who has been playing with this shared memory? */
2280 const char *mbuf = SvPV_const(mstr, len);
2281 const I32 n = ((I32)len > msize) ? msize : (I32)len;
2282 Copy(mbuf, shm + mpos, n, char);
2284 memzero(shm + mpos + n, msize - n);
2288 Perl_croak(aTHX_ "shm I/O not implemented");
2292 #endif /* SYSV IPC */
2297 =for apidoc start_glob
2299 Function called by C<do_readline> to spawn a glob (or do the glob inside
2300 perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
2301 this glob starter is only used by miniperl during the build process.
2302 Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
2308 Perl_start_glob (pTHX_ SV *tmpglob, IO *io)
2311 SV * const tmpcmd = newSV(0);
2315 #ifdef VMS /* expand the wildcards right here, rather than opening a pipe, */
2316 /* since spawning off a process is a real performance hit */
2323 fp = Perl_vms_start_glob(aTHX_ tmpglob, io);
2326 #ifdef MACOS_TRADITIONAL
2327 sv_setpv(tmpcmd, "glob ");
2328 sv_catsv(tmpcmd, tmpglob);
2329 sv_catpv(tmpcmd, " |");
2333 sv_setpv(tmpcmd, "for a in ");
2334 sv_catsv(tmpcmd, tmpglob);
2335 sv_catpv(tmpcmd, "; do echo \"$a\\0\\c\"; done |");
2338 sv_setpv(tmpcmd, "/dev/dosglob/"); /* File System Extension */
2339 sv_catsv(tmpcmd, tmpglob);
2341 sv_setpv(tmpcmd, "perlglob ");
2342 sv_catsv(tmpcmd, tmpglob);
2343 sv_catpv(tmpcmd, " |");
2348 sv_setpvn(tmpcmd, PL_cshname, PL_cshlen);
2349 sv_catpv(tmpcmd, " -cf 'set nonomatch; glob ");
2350 sv_catsv(tmpcmd, tmpglob);
2351 sv_catpv(tmpcmd, "' 2>/dev/null |");
2353 sv_setpv(tmpcmd, "echo ");
2354 sv_catsv(tmpcmd, tmpglob);
2356 sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\012\\012\\012\\012'|");
2358 sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\n\\n\\n\\n'|");
2361 #endif /* !DOSISH */
2362 #endif /* MACOS_TRADITIONAL */
2363 (void)do_open(PL_last_in_gv, (char*)SvPVX_const(tmpcmd), SvCUR(tmpcmd),
2364 FALSE, O_RDONLY, 0, NULL);
2373 * c-indentation-style: bsd
2375 * indent-tabs-mode: t
2378 * ex: set ts=8 sts=4 sw=4 noet: