3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
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.
17 * [p.684 of _The Lord of the Rings_, IV/vi: "The Forbidden Pool"]
20 /* This file contains functions that do the actual I/O on behalf of ops.
21 * For example, pp_print() calls the do_print() function in this file for
22 * each argument needing printing.
26 #define PERL_IN_DOIO_C
29 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
38 # ifndef HAS_SHMAT_PROTOTYPE
39 extern Shmat_t shmat (int, char *, int);
45 # if defined(_MSC_VER) || defined(__MINGW32__)
46 # include <sys/utime.h>
53 # define OPEN_EXCL O_EXCL
58 #define PERL_MODE_MAX 8
59 #define PERL_FLAGS_MAX 10
64 S_openn_setup(pTHX_ GV *gv, char *mode, PerlIO **saveifp, PerlIO **saveofp,
65 int *savefd, char *savetype)
67 IO * const io = GvIOn(gv);
69 PERL_ARGS_ASSERT_OPENN_SETUP;
74 *savetype = IoTYPE_CLOSED;
76 Zero(mode,sizeof(mode),char);
77 PL_forkprocess = 1; /* assume true if no fork */
79 /* If currently open - close before we re-open */
81 if (IoTYPE(io) == IoTYPE_STD) {
82 /* This is a clone of one of STD* handles */
85 const int old_fd = PerlIO_fileno(IoIFP(io));
87 if (old_fd >= 0 && old_fd <= PL_maxsysfd) {
88 /* This is one of the original STD* handles */
91 *savetype = IoTYPE(io);
97 if (IoTYPE(io) == IoTYPE_PIPE)
98 result = PerlProc_pclose(IoIFP(io));
99 else if (IoIFP(io) != IoOFP(io)) {
101 result = PerlIO_close(IoOFP(io));
102 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
105 result = PerlIO_close(IoIFP(io));
108 result = PerlIO_close(IoIFP(io));
110 if (result == EOF && old_fd > PL_maxsysfd) {
111 /* Why is this not Perl_warn*() call ? */
112 PerlIO_printf(Perl_error_log,
113 "Warning: unable to close filehandle %"HEKf" properly.\n",
114 HEKfARG(GvENAME_HEK(gv))
119 IoOFP(io) = IoIFP(io) = NULL;
125 Perl_do_openn(pTHX_ GV *gv, const char *oname, I32 len, int as_raw,
126 int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp,
129 PERL_ARGS_ASSERT_DO_OPENN;
132 /* sysopen style args, i.e. integer mode and permissions */
135 Perl_croak(aTHX_ "panic: sysopen with multiple args, num_svs=%ld",
138 return do_open_raw(gv, oname, len, rawmode, rawperm);
140 return do_open6(gv, oname, len, supplied_fp, svp, num_svs);
144 Perl_do_open_raw(pTHX_ GV *gv, const char *oname, STRLEN len,
145 int rawmode, int rawperm)
151 char mode[PERL_MODE_MAX]; /* file mode ("r\0", "rb\0", "ab\0" etc.) */
152 IO * const io = openn_setup(gv, mode, &saveifp, &saveofp, &savefd, &savetype);
156 PERL_ARGS_ASSERT_DO_OPEN_RAW;
158 /* For ease of blame back to 5.000, keep the existing indenting. */
160 /* sysopen style args, i.e. integer mode and permissions */
162 const int appendtrunc =
164 #ifdef O_APPEND /* Not fully portable. */
167 #ifdef O_TRUNC /* Not fully portable. */
171 const int modifyingmode = O_WRONLY|O_RDWR|O_CREAT|appendtrunc;
181 It might be (in OS/390 and Mac OS Classic it is)
187 This means that simple & with O_RDWR would look
188 like O_RDONLY is present. Therefore we have to
191 if ((ismodifying = (rawmode & modifyingmode))) {
192 if ((ismodifying & O_WRONLY) == O_WRONLY ||
193 (ismodifying & O_RDWR) == O_RDWR ||
194 (ismodifying & (O_CREAT|appendtrunc)))
195 TAINT_PROPER("sysopen");
197 mode[ix++] = IoTYPE_NUMERIC; /* Marker to openn to use numeric "sysopen" */
199 #if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE)
200 rawmode |= O_LARGEFILE; /* Transparently largefiley. */
203 IoTYPE(io) = PerlIO_intmode2str(rawmode, &mode[ix], &writing);
205 namesv = newSVpvn_flags(oname, len, SVs_TEMP);
206 fp = PerlIO_openn(aTHX_ NULL, mode, -1, rawmode, rawperm, NULL, 1, &namesv);
208 return openn_cleanup(gv, io, fp, mode, oname, saveifp, saveofp, savefd,
209 savetype, writing, 0, NULL);
213 Perl_do_open6(pTHX_ GV *gv, const char *oname, STRLEN len,
214 PerlIO *supplied_fp, SV **svp, U32 num_svs)
220 char mode[PERL_MODE_MAX]; /* file mode ("r\0", "rb\0", "ab\0" etc.) */
221 IO * const io = openn_setup(gv, mode, &saveifp, &saveofp, &savefd, &savetype);
224 bool was_fdopen = FALSE;
227 PERL_ARGS_ASSERT_DO_OPEN6;
229 /* For ease of blame back to 5.000, keep the existing indenting. */
231 /* Regular (non-sys) open */
236 bool in_raw = 0, in_crlf = 0, out_raw = 0, out_crlf = 0;
238 /* Collect default raw/crlf info from the op */
239 if (PL_op && PL_op->op_type == OP_OPEN) {
240 /* set up IO layers */
241 const U8 flags = PL_op->op_private;
242 in_raw = (flags & OPpOPEN_IN_RAW);
243 in_crlf = (flags & OPpOPEN_IN_CRLF);
244 out_raw = (flags & OPpOPEN_OUT_RAW);
245 out_crlf = (flags & OPpOPEN_OUT_CRLF);
248 type = savepvn(oname, len);
252 /* Lose leading and trailing white space */
253 while (isSPACE(*type))
255 while (tend > type && isSPACE(tend[-1]))
261 /* New style explicit name, type is just mode and layer info */
263 if (SvROK(*svp) && !strchr(oname,'&')) {
265 Perl_warner(aTHX_ packWARN(WARN_IO),
266 "Can't open a reference");
267 SETERRNO(EINVAL, LIB_INVARG);
271 #endif /* USE_STDIO */
272 p = (SvOK(*svp) || SvGMAGICAL(*svp)) ? SvPV(*svp, nlen) : NULL;
274 if (p && !IS_SAFE_PATHNAME(p, nlen, "open")) {
279 name = p ? savepvn(p, nlen) : savepvs("");
288 if ((*type == IoTYPE_RDWR) && /* scary */
289 (*(type+1) == IoTYPE_RDONLY || *(type+1) == IoTYPE_WRONLY) &&
290 ((!num_svs || (tend > type+1 && tend[-1] != IoTYPE_PIPE)))) {
291 TAINT_PROPER("open");
296 if (*type == IoTYPE_PIPE) {
298 if (type[1] != IoTYPE_STD) {
300 Perl_croak(aTHX_ "Unknown open() mode '%.*s'", (int)olen, oname);
306 } while (isSPACE(*type));
312 /* command is missing 19990114 */
313 if (ckWARN(WARN_PIPE))
314 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
319 if (!(*name == '-' && name[1] == '\0') || num_svs)
321 TAINT_PROPER("piped open");
322 if (!num_svs && name[len-1] == '|') {
324 if (ckWARN(WARN_PIPE))
325 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Can't open bidirectional pipe");
334 fp = PerlProc_popen_list(mode, num_svs, svp);
337 fp = PerlProc_popen(name,mode);
341 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
348 else if (*type == IoTYPE_WRONLY) {
349 TAINT_PROPER("open");
351 if (*type == IoTYPE_WRONLY) {
352 /* Two IoTYPE_WRONLYs in a row make for an IoTYPE_APPEND. */
353 mode[0] = IoTYPE(io) = IoTYPE_APPEND;
367 dodup = PERLIO_DUP_FD;
373 if (!num_svs && !*type && supplied_fp) {
374 /* "<+&" etc. is used by typemaps */
378 PerlIO *that_fp = NULL;
382 /* diag_listed_as: More than one argument to '%s' open */
383 Perl_croak(aTHX_ "More than one argument to '%c&' open",IoTYPE(io));
385 while (isSPACE(*type))
389 || (SvPOKp(*svp) && looks_like_number(*svp))
391 wanted_fd = SvUV(*svp);
394 else if (isDIGIT(*type)
395 && grok_atoUV(type, &uv, NULL)
403 thatio = sv_2io(*svp);
406 GV * const thatgv = gv_fetchpvn_flags(type, tend - type,
408 thatio = GvIO(thatgv);
412 SETERRNO(EINVAL,SS_IVCHAN);
417 if ((that_fp = IoIFP(thatio))) {
418 /* Flush stdio buffer before dup. --mjd
419 * Unfortunately SEEK_CURing 0 seems to
420 * be optimized away on most platforms;
421 * only Solaris and Linux seem to flush
423 /* On the other hand, do all platforms
424 * take gracefully to flushing a read-only
425 * filehandle? Perhaps we should do
426 * fsetpos(src)+fgetpos(dst)? --nik */
427 PerlIO_flush(that_fp);
428 wanted_fd = PerlIO_fileno(that_fp);
429 /* When dup()ing STDIN, STDOUT or STDERR
430 * explicitly set appropriate access mode */
431 if (that_fp == PerlIO_stdout()
432 || that_fp == PerlIO_stderr())
433 IoTYPE(io) = IoTYPE_WRONLY;
434 else if (that_fp == PerlIO_stdin())
435 IoTYPE(io) = IoTYPE_RDONLY;
436 /* When dup()ing a socket, say result is
438 else if (IoTYPE(thatio) == IoTYPE_SOCKET)
439 IoTYPE(io) = IoTYPE_SOCKET;
442 SETERRNO(EBADF, RMS_IFI);
450 fp = PerlIO_fdupopen(aTHX_ that_fp, NULL, dodup);
454 wanted_fd = PerlLIO_dup(wanted_fd);
457 if (!(fp = PerlIO_openn(aTHX_ type,mode,wanted_fd,0,0,NULL,num_svs,svp))) {
458 if (dodup && wanted_fd >= 0)
459 PerlLIO_close(wanted_fd);
465 while (isSPACE(*type))
467 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
469 fp = PerlIO_stdout();
470 IoTYPE(io) = IoTYPE_STD;
472 /* diag_listed_as: More than one argument to '%s' open */
473 Perl_croak(aTHX_ "More than one argument to '>%c' open",IoTYPE_STD);
478 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
481 SV *namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
483 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,1,&namesv);
487 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
488 goto unknown_open_mode;
489 } /* IoTYPE_WRONLY */
490 else if (*type == IoTYPE_RDONLY) {
493 } while (isSPACE(*type));
502 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
505 IoTYPE(io) = IoTYPE_STD;
507 /* diag_listed_as: More than one argument to '%s' open */
508 Perl_croak(aTHX_ "More than one argument to '<%c' open",IoTYPE_STD);
513 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
516 SV *namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
518 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,1,&namesv);
521 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
522 goto unknown_open_mode;
523 } /* IoTYPE_RDONLY */
524 else if ((num_svs && /* '-|...' or '...|' */
525 type[0] == IoTYPE_STD && type[1] == IoTYPE_PIPE) ||
526 (!num_svs && tend > type+1 && tend[-1] == IoTYPE_PIPE)) {
528 type += 2; /* skip over '-|' */
532 while (tend > type && isSPACE(tend[-1]))
534 for (; isSPACE(*type); type++)
540 /* command is missing 19990114 */
541 if (ckWARN(WARN_PIPE))
542 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
547 if (!(*name == '-' && name[1] == '\0') || num_svs)
549 TAINT_PROPER("piped open");
558 fp = PerlProc_popen_list(mode,num_svs,svp);
561 fp = PerlProc_popen(name,mode);
563 IoTYPE(io) = IoTYPE_PIPE;
565 while (isSPACE(*type))
568 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
575 else { /* layer(Args) */
577 goto unknown_open_mode;
579 IoTYPE(io) = IoTYPE_RDONLY;
580 for (; isSPACE(*name); name++)
589 if (*name == '-' && name[1] == '\0') {
591 IoTYPE(io) = IoTYPE_STD;
595 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
598 SV *namesv = newSVpvn_flags(type, tend - type, SVs_TEMP);
600 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,1,&namesv);
607 return openn_cleanup(gv, io, fp, mode, oname, saveifp, saveofp, savefd,
608 savetype, writing, was_fdopen, type);
611 /* Yes, this is ugly, but it's private, and I don't see a cleaner way to
612 simplify the two-headed public interface of do_openn. */
614 S_openn_cleanup(pTHX_ GV *gv, IO *io, PerlIO *fp, char *mode, const char *oname,
615 PerlIO *saveifp, PerlIO *saveofp, int savefd, char savetype,
616 int writing, bool was_fdopen, const char *type)
620 PERL_ARGS_ASSERT_OPENN_CLEANUP;
623 if (IoTYPE(io) == IoTYPE_RDONLY && ckWARN(WARN_NEWLINE)
624 && should_warn_nl(oname)
628 GCC_DIAG_IGNORE(-Wformat-nonliteral); /* PL_warn_nl is constant */
629 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
635 if (ckWARN(WARN_IO)) {
636 if ((IoTYPE(io) == IoTYPE_RDONLY) &&
637 (fp == PerlIO_stdout() || fp == PerlIO_stderr())) {
638 Perl_warner(aTHX_ packWARN(WARN_IO),
639 "Filehandle STD%s reopened as %"HEKf
641 ((fp == PerlIO_stdout()) ? "OUT" : "ERR"),
642 HEKfARG(GvENAME_HEK(gv)));
644 else if ((IoTYPE(io) == IoTYPE_WRONLY) && fp == PerlIO_stdin()) {
645 Perl_warner(aTHX_ packWARN(WARN_IO),
646 "Filehandle STDIN reopened as %"HEKf" only for output",
647 HEKfARG(GvENAME_HEK(gv))
652 fd = PerlIO_fileno(fp);
653 /* Do NOT do: "if (fd < 0) goto say_false;" here. If there is no
654 * fd assume it isn't a socket - this covers PerlIO::scalar -
655 * otherwise unless we "know" the type probe for socket-ness.
657 if (IoTYPE(io) && IoTYPE(io) != IoTYPE_PIPE && IoTYPE(io) != IoTYPE_STD && fd >= 0) {
658 if (PerlLIO_fstat(fd,&PL_statbuf) < 0) {
659 /* If PerlIO claims to have fd we had better be able to fstat() it. */
660 (void) PerlIO_close(fp);
664 if (S_ISSOCK(PL_statbuf.st_mode))
665 IoTYPE(io) = IoTYPE_SOCKET; /* in case a socket was passed in to us */
668 !(PL_statbuf.st_mode & S_IFMT)
669 && IoTYPE(io) != IoTYPE_WRONLY /* Dups of STD* filehandles already have */
670 && IoTYPE(io) != IoTYPE_RDONLY /* type so they aren't marked as sockets */
671 ) { /* on OS's that return 0 on fstat()ed pipe */
673 Sock_size_t buflen = sizeof tmpbuf;
674 if (PerlSock_getsockname(fd, (struct sockaddr *)tmpbuf, &buflen) >= 0
675 || errno != ENOTSOCK)
676 IoTYPE(io) = IoTYPE_SOCKET; /* some OS's return 0 on fstat()ed socket */
677 /* but some return 0 for streams too, sigh */
679 #endif /* HAS_SOCKET */
680 #endif /* !PERL_MICRO */
684 * If this is a standard handle we discard all the layer stuff
685 * and just dup the fd into whatever was on the handle before !
688 if (saveifp) { /* must use old fp? */
689 /* If fd is less that PL_maxsysfd i.e. STDIN..STDERR
690 then dup the new fileno down
693 PerlIO_flush(saveofp); /* emulate PerlIO_close() */
694 if (saveofp != saveifp) { /* was a socket? */
695 PerlIO_close(saveofp);
699 /* Still a small can-of-worms here if (say) PerlIO::scalar
700 is assigned to (say) STDOUT - for now let dup2() fail
701 and provide the error
704 SETERRNO(EBADF,RMS_IFI);
706 } else if (PerlLIO_dup2(fd, savefd) < 0) {
707 (void)PerlIO_close(fp);
711 if (savefd != PerlIO_fileno(PerlIO_stdin())) {
712 char newname[FILENAME_MAX+1];
713 if (PerlIO_getname(fp, newname)) {
714 if (fd == PerlIO_fileno(PerlIO_stdout()))
715 vmssetuserlnm("SYS$OUTPUT", newname);
716 if (fd == PerlIO_fileno(PerlIO_stderr()))
717 vmssetuserlnm("SYS$ERROR", newname);
723 /* PL_fdpid isn't used on Windows, so avoid this useless work.
724 * XXX Probably the same for a lot of other places. */
729 sv = *av_fetch(PL_fdpid,fd,TRUE);
730 SvUPGRADE(sv, SVt_IV);
733 sv = *av_fetch(PL_fdpid,savefd,TRUE);
734 SvUPGRADE(sv, SVt_IV);
740 /* need to close fp without closing underlying fd */
741 int ofd = PerlIO_fileno(fp);
742 int dupfd = ofd >= 0 ? PerlLIO_dup(ofd) : -1;
743 #if defined(HAS_FCNTL) && defined(F_SETFD)
744 /* Assume if we have F_SETFD we have F_GETFD. */
745 /* Get a copy of all the fd flags. */
746 int fd_flags = ofd >= 0 ? fcntl(ofd, F_GETFD) : -1;
749 PerlLIO_close(dupfd);
753 if (ofd < 0 || dupfd < 0) {
755 PerlLIO_close(dupfd);
759 PerlLIO_dup2(dupfd, ofd);
760 #if defined(HAS_FCNTL) && defined(F_SETFD)
761 /* The dup trick has lost close-on-exec on ofd,
762 * and possibly any other flags, so restore them. */
763 fcntl(ofd,F_SETFD, fd_flags);
765 PerlLIO_close(dupfd);
772 fd = PerlIO_fileno(fp);
774 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
775 if (fd > PL_maxsysfd && fcntl(fd, F_SETFD, FD_CLOEXEC) < 0) {
782 IoFLAGS(io) &= ~IOf_NOLINE;
784 if (IoTYPE(io) == IoTYPE_SOCKET
785 || (IoTYPE(io) == IoTYPE_WRONLY && fd >= 0 && S_ISCHR(PL_statbuf.st_mode)) ) {
787 if (*s == IoTYPE_IMPLICIT || *s == IoTYPE_NUMERIC)
790 if (!(IoOFP(io) = PerlIO_openn(aTHX_ type,s,fd,0,0,NULL,0,NULL))) {
803 IoTYPE(io) = savetype;
808 Perl_nextargv(pTHX_ GV *gv, bool nomagicopen)
810 IO * const io = GvIOp(gv);
812 PERL_ARGS_ASSERT_NEXTARGV;
815 PL_argvoutgv = gv_fetchpvs("ARGVOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO);
816 if (io && (IoFLAGS(io) & (IOf_ARGV|IOf_START)) == (IOf_ARGV|IOf_START)) {
817 IoFLAGS(io) &= ~IOf_START;
820 Perl_av_create_and_push(aTHX_ &PL_argvout_stack,
821 SvREFCNT_inc_simple_NN(PL_defoutgv));
824 if (PL_filemode & (S_ISUID|S_ISGID)) {
825 PerlIO_flush(IoIFP(GvIOn(PL_argvoutgv))); /* chmod must follow last write */
828 (void)fchmod(PL_lastfd,PL_filemode);
830 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
837 while (av_tindex(GvAV(gv)) >= 0) {
839 SV *const sv = av_shift(GvAV(gv));
841 SvTAINTED_off(GvSVn(gv)); /* previous tainting irrelevant */
842 sv_setsv(GvSVn(gv),sv);
843 SvSETMAGIC(GvSV(gv));
844 PL_oldname = SvPVx(GvSV(gv), oldlen);
845 if (LIKELY(!PL_inplace)) {
847 ? do_open6(gv, "<", 1, NULL, &GvSV(gv), 1)
848 : do_open6(gv, PL_oldname, oldlen, NULL, NULL, 0)
850 return IoIFP(GvIOp(gv));
854 /* This very long block ends with return IoIFP(GvIOp(gv));
855 Both this block and the block above fall through on open
856 failure to the warning code, and then the while loop above tries
858 if (do_open_raw(gv, PL_oldname, oldlen, O_RDONLY, 0)) {
859 #ifndef FLEXFILENAMES
866 TAINT_PROPER("inplace open");
867 if (oldlen == 1 && *PL_oldname == '-') {
868 setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL,
870 return IoIFP(GvIOp(gv));
872 #ifndef FLEXFILENAMES
873 filedev = PL_statbuf.st_dev;
874 fileino = PL_statbuf.st_ino;
876 PL_filemode = PL_statbuf.st_mode;
877 fileuid = PL_statbuf.st_uid;
878 filegid = PL_statbuf.st_gid;
879 if (!S_ISREG(PL_filemode)) {
880 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
881 "Can't do inplace edit: %s is not a regular file",
886 if (*PL_inplace && strNE(PL_inplace, "*")) {
887 const char *star = strchr(PL_inplace, '*');
889 const char *begin = PL_inplace;
892 sv_catpvn(sv, begin, star - begin);
893 sv_catpvn(sv, PL_oldname, oldlen);
895 } while ((star = strchr(begin, '*')));
900 sv_catpv(sv,PL_inplace);
902 #ifndef FLEXFILENAMES
903 if ((PerlLIO_stat(SvPVX_const(sv),&PL_statbuf) >= 0
904 && PL_statbuf.st_dev == filedev
905 && PL_statbuf.st_ino == fileino)
907 || ((_djstat_fail_bits & _STFAIL_TRUENAME)!=0)
911 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
912 "Can't do inplace edit: %"SVf" would not be unique",
919 #if !defined(DOSISH) && !defined(__CYGWIN__)
920 if (PerlLIO_rename(PL_oldname,SvPVX_const(sv)) < 0) {
921 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
922 "Can't rename %s to %"SVf": %s, skipping file",
923 PL_oldname, SVfARG(sv), Strerror(errno));
929 (void)PerlLIO_unlink(SvPVX_const(sv));
930 (void)PerlLIO_rename(PL_oldname,SvPVX_const(sv));
931 do_open_raw(gv, SvPVX_const(sv), SvCUR(sv), O_RDONLY, 0);
934 (void)UNLINK(SvPVX_const(sv));
935 if (link(PL_oldname,SvPVX_const(sv)) < 0) {
936 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
937 "Can't rename %s to %"SVf": %s, skipping file",
938 PL_oldname, SVfARG(sv), Strerror(errno) );
942 (void)UNLINK(PL_oldname);
946 #if !defined(DOSISH) && !defined(AMIGAOS)
947 # ifndef VMS /* Don't delete; use automatic file versioning */
948 if (UNLINK(PL_oldname) < 0) {
949 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
950 "Can't remove %s: %s, skipping file",
951 PL_oldname, Strerror(errno) );
957 Perl_croak(aTHX_ "Can't do inplace edit without backup");
961 sv_setpvn(sv,PL_oldname,oldlen);
962 SETERRNO(0,0); /* in case sprintf set errno */
963 if (!Perl_do_open_raw(aTHX_ PL_argvoutgv, SvPVX_const(sv),
966 O_WRONLY|O_CREAT|O_TRUNC, 0
968 O_WRONLY|O_CREAT|OPEN_EXCL, 0600
971 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE), "Can't do inplace edit on %s: %s",
972 PL_oldname, Strerror(errno) );
976 setdefout(PL_argvoutgv);
977 PL_lastfd = PerlIO_fileno(IoIFP(GvIOp(PL_argvoutgv)));
978 if (PL_lastfd >= 0) {
979 (void)PerlLIO_fstat(PL_lastfd,&PL_statbuf);
981 (void)fchmod(PL_lastfd,PL_filemode);
983 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
985 if (fileuid != PL_statbuf.st_uid || filegid != PL_statbuf.st_gid) {
986 /* XXX silently ignore failures */
988 PERL_UNUSED_RESULT(fchown(PL_lastfd,fileuid,filegid));
991 PERL_UNUSED_RESULT(PerlLIO_chown(PL_oldname,fileuid,filegid));
996 return IoIFP(GvIOp(gv));
998 } /* successful do_open_raw(), PL_inplace non-NULL */
1000 if (ckWARN_d(WARN_INPLACE)) {
1001 const int eno = errno;
1002 if (PerlLIO_stat(PL_oldname, &PL_statbuf) >= 0
1003 && !S_ISREG(PL_statbuf.st_mode)) {
1004 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
1005 "Can't do inplace edit: %s is not a regular file",
1009 Perl_warner(aTHX_ packWARN(WARN_INPLACE), "Can't open %s: %s",
1010 PL_oldname, Strerror(eno));
1014 if (io && (IoFLAGS(io) & IOf_ARGV))
1015 IoFLAGS(io) |= IOf_START;
1017 (void)do_close(PL_argvoutgv,FALSE);
1018 if (io && (IoFLAGS(io) & IOf_ARGV)
1019 && PL_argvout_stack && AvFILLp(PL_argvout_stack) >= 0)
1021 GV * const oldout = MUTABLE_GV(av_pop(PL_argvout_stack));
1023 SvREFCNT_dec_NN(oldout);
1026 setdefout(gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO));
1031 /* explicit renamed to avoid C++ conflict -- kja */
1033 Perl_do_close(pTHX_ GV *gv, bool not_implicit)
1040 if (!gv || !isGV_with_GP(gv)) {
1042 SETERRNO(EBADF,SS_IVCHAN);
1046 if (!io) { /* never opened */
1049 SETERRNO(EBADF,SS_IVCHAN);
1053 retval = io_close(io, NULL, not_implicit, FALSE);
1057 IoLINES_LEFT(io) = IoPAGE_LEN(io);
1059 IoTYPE(io) = IoTYPE_CLOSED;
1064 Perl_io_close(pTHX_ IO *io, GV *gv, bool not_implicit, bool warn_on_fail)
1066 bool retval = FALSE;
1068 PERL_ARGS_ASSERT_IO_CLOSE;
1071 if (IoTYPE(io) == IoTYPE_PIPE) {
1072 const int status = PerlProc_pclose(IoIFP(io));
1074 STATUS_NATIVE_CHILD_SET(status);
1075 retval = (STATUS_UNIX == 0);
1078 retval = (status != -1);
1081 else if (IoTYPE(io) == IoTYPE_STD)
1084 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { /* a socket */
1085 const bool prev_err = PerlIO_error(IoOFP(io));
1088 PerlIO_restore_errno(IoOFP(io));
1090 retval = (PerlIO_close(IoOFP(io)) != EOF && !prev_err);
1091 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
1094 const bool prev_err = PerlIO_error(IoIFP(io));
1097 PerlIO_restore_errno(IoIFP(io));
1099 retval = (PerlIO_close(IoIFP(io)) != EOF && !prev_err);
1102 IoOFP(io) = IoIFP(io) = NULL;
1104 if (warn_on_fail && !retval) {
1106 Perl_ck_warner_d(aTHX_ packWARN(WARN_IO),
1107 "Warning: unable to close filehandle %"
1108 HEKf" properly: %"SVf,
1109 HEKfARG(GvNAME_HEK(gv)),
1110 SVfARG(get_sv("!",GV_ADD)));
1112 Perl_ck_warner_d(aTHX_ packWARN(WARN_IO),
1113 "Warning: unable to close filehandle "
1115 SVfARG(get_sv("!",GV_ADD)));
1118 else if (not_implicit) {
1119 SETERRNO(EBADF,SS_IVCHAN);
1126 Perl_do_eof(pTHX_ GV *gv)
1128 IO * const io = GvIO(gv);
1130 PERL_ARGS_ASSERT_DO_EOF;
1134 else if (IoTYPE(io) == IoTYPE_WRONLY)
1135 report_wrongway_fh(gv, '>');
1138 if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */
1139 if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */
1140 return FALSE; /* this is the most usual case */
1144 /* getc and ungetc can stomp on errno */
1146 const int ch = PerlIO_getc(IoIFP(io));
1148 (void)PerlIO_ungetc(IoIFP(io),ch);
1155 if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
1156 if (PerlIO_get_cnt(IoIFP(io)) < -1)
1157 PerlIO_set_cnt(IoIFP(io),-1);
1159 if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
1160 if (gv != PL_argvgv || !nextargv(gv, FALSE)) /* get another fp handy */
1164 return TRUE; /* normal fp, definitely end of file */
1170 Perl_do_tell(pTHX_ GV *gv)
1172 IO *const io = GvIO(gv);
1175 PERL_ARGS_ASSERT_DO_TELL;
1177 if (io && (fp = IoIFP(io))) {
1178 return PerlIO_tell(fp);
1181 SETERRNO(EBADF,RMS_IFI);
1186 Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence)
1188 IO *const io = GvIO(gv);
1191 if (io && (fp = IoIFP(io))) {
1192 return PerlIO_seek(fp, pos, whence) >= 0;
1195 SETERRNO(EBADF,RMS_IFI);
1200 Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence)
1202 IO *const io = GvIO(gv);
1205 PERL_ARGS_ASSERT_DO_SYSSEEK;
1207 if (io && (fp = IoIFP(io))) {
1208 int fd = PerlIO_fileno(fp);
1209 if (fd < 0 || (whence == SEEK_SET && pos < 0)) {
1210 SETERRNO(EINVAL,LIB_INVARG);
1213 return PerlLIO_lseek(fd, pos, whence);
1217 SETERRNO(EBADF,RMS_IFI);
1222 Perl_mode_from_discipline(pTHX_ const char *s, STRLEN len)
1224 int mode = O_BINARY;
1225 PERL_UNUSED_CONTEXT;
1231 if (s[2] == 'a' && s[3] == 'w'
1232 && (!s[4] || s[4] == ':' || isSPACE(s[4])))
1241 if (s[2] == 'r' && s[3] == 'l' && s[4] == 'f'
1242 && (!s[5] || s[5] == ':' || isSPACE(s[5])))
1251 goto fail_discipline;
1254 else if (isSPACE(*s)) {
1261 end = strchr(s+1, ':');
1264 #ifndef PERLIO_LAYERS
1265 Perl_croak(aTHX_ "IO layers (like '%.*s') unavailable", end-s, s);
1276 #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE)
1278 my_chsize(int fd, Off_t length)
1281 /* code courtesy of William Kucharski */
1286 if (PerlLIO_fstat(fd, &filebuf) < 0)
1289 if (filebuf.st_size < length) {
1291 /* extend file length */
1293 if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0)
1296 /* write a "0" byte */
1298 if ((PerlLIO_write(fd, "", 1)) != 1)
1302 /* truncate length */
1306 fl.l_start = length;
1307 fl.l_type = F_WRLCK; /* write lock on file space */
1310 * This relies on the UNDOCUMENTED F_FREESP argument to
1311 * fcntl(2), which truncates the file so that it ends at the
1312 * position indicated by fl.l_start.
1314 * Will minor miracles never cease?
1317 if (fcntl(fd, F_FREESP, &fl) < 0)
1323 Perl_croak_nocontext("truncate not implemented");
1324 #endif /* F_FREESP */
1327 #endif /* !HAS_TRUNCATE && !HAS_CHSIZE */
1330 Perl_do_print(pTHX_ SV *sv, PerlIO *fp)
1332 PERL_ARGS_ASSERT_DO_PRINT;
1334 /* assuming fp is checked earlier */
1337 if (SvTYPE(sv) == SVt_IV && SvIOK(sv)) {
1338 assert(!SvGMAGICAL(sv));
1340 PerlIO_printf(fp, "%"UVuf, (UV)SvUVX(sv));
1342 PerlIO_printf(fp, "%"IVdf, (IV)SvIVX(sv));
1343 return !PerlIO_error(fp);
1347 /* Do this first to trigger any overloading. */
1348 const char *tmps = SvPV_const(sv, len);
1352 if (PerlIO_isutf8(fp)) { /* If the stream is utf8 ... */
1353 if (!SvUTF8(sv)) { /* Convert to utf8 if necessary */
1354 /* We don't modify the original scalar. */
1355 tmpbuf = bytes_to_utf8((const U8*) tmps, &len);
1356 tmps = (char *) tmpbuf;
1358 else if (ckWARN4_d(WARN_UTF8, WARN_SURROGATE, WARN_NON_UNICODE, WARN_NONCHAR)) {
1359 (void) check_utf8_print((const U8*) tmps, len);
1361 } /* else stream isn't utf8 */
1362 else if (DO_UTF8(sv)) { /* But if is utf8 internally, attempt to
1364 STRLEN tmplen = len;
1366 U8 * const result = bytes_from_utf8((const U8*) tmps, &tmplen, &utf8);
1369 /* Here, succeeded in downgrading from utf8. Set up to below
1370 * output the converted value */
1372 tmps = (char *) tmpbuf;
1375 else { /* Non-utf8 output stream, but string only representable in
1377 assert((char *)result == tmps);
1378 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1379 "Wide character in %s",
1380 PL_op ? OP_DESC(PL_op) : "print"
1382 /* Could also check that isn't one of the things to avoid
1383 * in utf8 by using check_utf8_print(), but not doing so,
1384 * since the stream isn't a UTF8 stream */
1387 /* To detect whether the process is about to overstep its
1388 * filesize limit we would need getrlimit(). We could then
1389 * also transparently raise the limit with setrlimit() --
1390 * but only until the system hard limit/the filesystem limit,
1391 * at which we would get EPERM. Note that when using buffered
1392 * io the write failure can be delayed until the flush/close. --jhi */
1393 if (len && (PerlIO_write(fp,tmps,len) == 0))
1396 return happy ? !PerlIO_error(fp) : FALSE;
1401 Perl_my_stat_flags(pTHX_ const U32 flags)
1407 if (PL_op->op_flags & OPf_REF) {
1411 return PL_laststatval;
1414 PL_laststype = OP_STAT;
1415 PL_statgv = gv ? gv : (GV *)io;
1416 sv_setpvs(PL_statname, "");
1419 int fd = PerlIO_fileno(IoIFP(io));
1421 /* E.g. PerlIO::scalar has no real fd. */
1422 return (PL_laststatval = -1);
1424 return (PL_laststatval = PerlLIO_fstat(fd, &PL_statcache));
1426 } else if (IoDIRP(io)) {
1427 return (PL_laststatval = PerlLIO_fstat(my_dirfd(IoDIRP(io)), &PL_statcache));
1430 PL_laststatval = -1;
1434 else if ((PL_op->op_private & (OPpFT_STACKED|OPpFT_AFTER_t))
1436 return PL_laststatval;
1438 SV* const sv = TOPs;
1441 if ((gv = MAYBE_DEREF_GV_flags(sv,flags))) {
1444 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
1445 io = MUTABLE_IO(SvRV(sv));
1447 goto do_fstat_have_io;
1450 s = SvPV_flags_const(sv, len, flags);
1452 sv_setpvn(PL_statname, s, len);
1453 s = SvPVX_const(PL_statname); /* s now NUL-terminated */
1454 PL_laststype = OP_STAT;
1455 PL_laststatval = PerlLIO_stat(s, &PL_statcache);
1456 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && should_warn_nl(s)) {
1457 GCC_DIAG_IGNORE(-Wformat-nonliteral); /* PL_warn_nl is constant */
1458 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
1461 return PL_laststatval;
1467 Perl_my_lstat_flags(pTHX_ const U32 flags)
1469 static const char* const no_prev_lstat = "The stat preceding -l _ wasn't an lstat";
1472 SV* const sv = TOPs;
1474 if (PL_op->op_flags & OPf_REF) {
1475 if (cGVOP_gv == PL_defgv) {
1476 if (PL_laststype != OP_LSTAT)
1477 Perl_croak(aTHX_ "%s", no_prev_lstat);
1478 return PL_laststatval;
1480 PL_laststatval = -1;
1481 if (ckWARN(WARN_IO)) {
1482 /* diag_listed_as: Use of -l on filehandle%s */
1483 Perl_warner(aTHX_ packWARN(WARN_IO),
1484 "Use of -l on filehandle %"HEKf,
1485 HEKfARG(GvENAME_HEK(cGVOP_gv)));
1489 if ((PL_op->op_private & (OPpFT_STACKED|OPpFT_AFTER_t))
1491 if (PL_laststype != OP_LSTAT)
1492 Perl_croak(aTHX_ "%s", no_prev_lstat);
1493 return PL_laststatval;
1496 PL_laststype = OP_LSTAT;
1498 if ( ( (SvROK(sv) && ( isGV_with_GP(SvRV(sv))
1499 || (isio = SvTYPE(SvRV(sv)) == SVt_PVIO) )
1503 && ckWARN(WARN_IO)) {
1505 /* diag_listed_as: Use of -l on filehandle%s */
1506 Perl_warner(aTHX_ packWARN(WARN_IO),
1507 "Use of -l on filehandle");
1509 /* diag_listed_as: Use of -l on filehandle%s */
1510 Perl_warner(aTHX_ packWARN(WARN_IO),
1511 "Use of -l on filehandle %"HEKf,
1512 HEKfARG(GvENAME_HEK((const GV *)
1513 (SvROK(sv) ? SvRV(sv) : sv))));
1515 file = SvPV_flags_const_nolen(sv, flags);
1516 sv_setpv(PL_statname,file);
1517 PL_laststatval = PerlLIO_lstat(file,&PL_statcache);
1518 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && should_warn_nl(file)) {
1519 GCC_DIAG_IGNORE(-Wformat-nonliteral); /* PL_warn_nl is constant */
1520 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "lstat");
1523 return PL_laststatval;
1527 S_exec_failed(pTHX_ const char *cmd, int fd, int do_report)
1529 const int e = errno;
1530 PERL_ARGS_ASSERT_EXEC_FAILED;
1531 if (ckWARN(WARN_EXEC))
1532 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't exec \"%s\": %s",
1535 /* XXX silently ignore failures */
1536 PERL_UNUSED_RESULT(PerlLIO_write(fd, (void*)&e, sizeof(int)));
1542 Perl_do_aexec5(pTHX_ SV *really, SV **mark, SV **sp,
1543 int fd, int do_report)
1546 PERL_ARGS_ASSERT_DO_AEXEC5;
1547 #if defined(__SYMBIAN32__) || defined(__LIBCATAMOUNT__)
1548 Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system");
1552 const char *tmps = NULL;
1553 Newx(PL_Argv, sp - mark + 1, const char*);
1556 while (++mark <= sp) {
1558 *a++ = SvPV_nolen_const(*mark);
1564 tmps = SvPV_nolen_const(really);
1565 if ((!really && *PL_Argv[0] != '/') ||
1566 (really && *tmps != '/')) /* will execvp use PATH? */
1567 TAINT_ENV(); /* testing IFS here is overkill, probably */
1569 if (really && *tmps)
1570 PerlProc_execvp(tmps,EXEC_ARGV_CAST(PL_Argv));
1572 PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
1574 S_exec_failed(aTHX_ (really ? tmps : PL_Argv[0]), fd, do_report);
1582 Perl_do_execfree(pTHX)
1590 #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
1593 Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report)
1600 /* Make a copy so we can change it */
1601 const Size_t cmdlen = strlen(incmd) + 1;
1603 PERL_ARGS_ASSERT_DO_EXEC3;
1605 Newx(buf, cmdlen, char);
1607 memcpy(cmd, incmd, cmdlen);
1609 while (*cmd && isSPACE(*cmd))
1612 /* save an extra exec if possible */
1616 char flags[PERL_FLAGS_MAX];
1617 if (strnEQ(cmd,PL_cshname,PL_cshlen) &&
1618 strnEQ(cmd+PL_cshlen," -c",3)) {
1619 my_strlcpy(flags, "-c", PERL_FLAGS_MAX);
1620 s = cmd+PL_cshlen+3;
1623 my_strlcat(flags, "f", PERL_FLAGS_MAX - 2);
1628 char * const ncmd = s;
1634 if (s[-1] == '\'') {
1637 PerlProc_execl(PL_cshname, "csh", flags, ncmd, (char*)NULL);
1640 S_exec_failed(aTHX_ PL_cshname, fd, do_report);
1649 /* see if there are shell metacharacters in it */
1651 if (*cmd == '.' && isSPACE(cmd[1]))
1654 if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1658 while (isWORDCHAR(*s))
1659 s++; /* catch VAR=val gizmo */
1663 for (s = cmd; *s; s++) {
1664 if (*s != ' ' && !isALPHA(*s) &&
1665 strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
1666 if (*s == '\n' && !s[1]) {
1670 /* handle the 2>&1 construct at the end */
1671 if (*s == '>' && s[1] == '&' && s[2] == '1'
1672 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1673 && (!s[3] || isSPACE(s[3])))
1675 const char *t = s + 3;
1677 while (*t && isSPACE(*t))
1679 if (!*t && (PerlLIO_dup2(1,2) != -1)) {
1686 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char *)NULL);
1688 S_exec_failed(aTHX_ PL_sh_path, fd, do_report);
1694 Newx(PL_Argv, (s - cmd) / 2 + 2, const char*);
1695 PL_Cmd = savepvn(cmd, s-cmd);
1697 for (s = PL_Cmd; *s;) {
1702 while (*s && !isSPACE(*s))
1710 PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
1712 if (errno == ENOEXEC) { /* for system V NIH syndrome */
1716 S_exec_failed(aTHX_ PL_Argv[0], fd, do_report);
1723 #endif /* OS2 || WIN32 */
1726 #include <starlet.h> /* for sys$delprc */
1730 Perl_apply(pTHX_ I32 type, SV **mark, SV **sp)
1734 const char *const what = PL_op_name[type];
1737 SV ** const oldmark = mark;
1738 bool killgp = FALSE;
1740 PERL_ARGS_ASSERT_APPLY;
1742 PERL_UNUSED_VAR(what); /* may not be used depending on compile options */
1744 /* Doing this ahead of the switch statement preserves the old behaviour,
1745 where attempting to use kill as a taint test test would fail on
1746 platforms where kill was not defined. */
1748 if (type == OP_KILL)
1749 Perl_die(aTHX_ PL_no_func, what);
1752 if (type == OP_CHOWN)
1753 Perl_die(aTHX_ PL_no_func, what);
1757 #define APPLY_TAINT_PROPER() \
1759 if (TAINT_get) { TAINT_PROPER(what); } \
1762 /* This is a first heuristic; it doesn't catch tainting magic. */
1764 while (++mark <= sp) {
1765 if (SvTAINTED(*mark)) {
1774 APPLY_TAINT_PROPER();
1777 APPLY_TAINT_PROPER();
1779 while (++mark <= sp) {
1781 if ((gv = MAYBE_DEREF_GV(*mark))) {
1782 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1784 int fd = PerlIO_fileno(IoIFP(GvIOn(gv)));
1785 APPLY_TAINT_PROPER();
1787 SETERRNO(EBADF,RMS_IFI);
1789 } else if (fchmod(fd, val))
1792 Perl_die(aTHX_ PL_no_func, "fchmod");
1796 SETERRNO(EBADF,RMS_IFI);
1801 const char *name = SvPV_nomg_const(*mark, len);
1802 APPLY_TAINT_PROPER();
1803 if (!IS_SAFE_PATHNAME(name, len, "chmod") ||
1804 PerlLIO_chmod(name, val)) {
1813 APPLY_TAINT_PROPER();
1814 if (sp - mark > 2) {
1816 val = SvIVx(*++mark);
1817 val2 = SvIVx(*++mark);
1818 APPLY_TAINT_PROPER();
1820 while (++mark <= sp) {
1822 if ((gv = MAYBE_DEREF_GV(*mark))) {
1823 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1825 int fd = PerlIO_fileno(IoIFP(GvIOn(gv)));
1826 APPLY_TAINT_PROPER();
1828 SETERRNO(EBADF,RMS_IFI);
1830 } else if (fchown(fd, val, val2))
1833 Perl_die(aTHX_ PL_no_func, "fchown");
1837 SETERRNO(EBADF,RMS_IFI);
1842 const char *name = SvPV_nomg_const(*mark, len);
1843 APPLY_TAINT_PROPER();
1844 if (!IS_SAFE_PATHNAME(name, len, "chown") ||
1845 PerlLIO_chown(name, val, val2)) {
1854 XXX Should we make lchown() directly available from perl?
1855 For now, we'll let Configure test for HAS_LCHOWN, but do
1856 nothing in the core.
1861 APPLY_TAINT_PROPER();
1864 s = SvPVx_const(*++mark, len);
1865 if (*s == '-' && isALPHA(s[1]))
1872 if (*s == 'S' && s[1] == 'I' && s[2] == 'G') {
1876 if ((val = whichsig_pvn(s, len)) < 0)
1877 Perl_croak(aTHX_ "Unrecognized signal name \"%"SVf"\"", SVfARG(*mark));
1888 APPLY_TAINT_PROPER();
1891 /* kill() doesn't do process groups (job trees?) under VMS */
1892 if (val == SIGKILL) {
1893 /* Use native sys$delprc() to insure that target process is
1894 * deleted; supervisor-mode images don't pay attention to
1895 * CRTL's emulation of Unix-style signals and kill()
1897 while (++mark <= sp) {
1899 unsigned long int __vmssts;
1901 if (!(SvIOK(*mark) || SvNOK(*mark) || looks_like_number(*mark)))
1902 Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
1903 proc = SvIV_nomg(*mark);
1904 APPLY_TAINT_PROPER();
1905 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1909 case SS$_NOSUCHNODE:
1910 SETERRNO(ESRCH,__vmssts);
1913 SETERRNO(EPERM,__vmssts);
1916 SETERRNO(EVMSERR,__vmssts);
1924 while (++mark <= sp) {
1927 if (!(SvNIOK(*mark) || looks_like_number(*mark)))
1928 Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
1929 proc = SvIV_nomg(*mark);
1930 APPLY_TAINT_PROPER();
1932 /* use killpg in preference, as the killpg() wrapper for Win32
1933 * understands process groups, but the kill() wrapper doesn't */
1934 if (killgp ? PerlProc_killpg(proc, val)
1935 : PerlProc_kill(proc, val))
1937 if (PerlProc_kill(killgp ? -proc: proc, val))
1945 APPLY_TAINT_PROPER();
1947 while (++mark <= sp) {
1948 s = SvPV_const(*mark, len);
1949 APPLY_TAINT_PROPER();
1950 if (!IS_SAFE_PATHNAME(s, len, "unlink")) {
1953 else if (PL_unsafe) {
1957 else { /* don't let root wipe out directories without -U */
1958 if (PerlLIO_lstat(s,&PL_statbuf) < 0)
1960 else if (S_ISDIR(PL_statbuf.st_mode)) {
1962 SETERRNO(EISDIR, SS_NOPRIV);
1971 #if defined(HAS_UTIME) || defined(HAS_FUTIMES)
1973 APPLY_TAINT_PROPER();
1974 if (sp - mark > 2) {
1975 #if defined(HAS_FUTIMES)
1976 struct timeval utbuf[2];
1977 void *utbufp = utbuf;
1978 #elif defined(I_UTIME) || defined(VMS)
1979 struct utimbuf utbuf;
1980 struct utimbuf *utbufp = &utbuf;
1986 void *utbufp = &utbuf;
1989 SV* const accessed = *++mark;
1990 SV* const modified = *++mark;
1992 /* Be like C, and if both times are undefined, let the C
1993 * library figure out what to do. This usually means
1994 * "current time". */
1996 if ( accessed == &PL_sv_undef && modified == &PL_sv_undef )
1999 Zero(&utbuf, sizeof utbuf, char);
2001 utbuf[0].tv_sec = (long)SvIV(accessed); /* time accessed */
2002 utbuf[0].tv_usec = 0;
2003 utbuf[1].tv_sec = (long)SvIV(modified); /* time modified */
2004 utbuf[1].tv_usec = 0;
2005 #elif defined(BIG_TIME)
2006 utbuf.actime = (Time_t)SvNV(accessed); /* time accessed */
2007 utbuf.modtime = (Time_t)SvNV(modified); /* time modified */
2009 utbuf.actime = (Time_t)SvIV(accessed); /* time accessed */
2010 utbuf.modtime = (Time_t)SvIV(modified); /* time modified */
2013 APPLY_TAINT_PROPER();
2015 while (++mark <= sp) {
2017 if ((gv = MAYBE_DEREF_GV(*mark))) {
2018 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
2020 int fd = PerlIO_fileno(IoIFP(GvIOn(gv)));
2021 APPLY_TAINT_PROPER();
2023 SETERRNO(EBADF,RMS_IFI);
2025 } else if (futimes(fd, (struct timeval *) utbufp))
2028 Perl_die(aTHX_ PL_no_func, "futimes");
2036 const char * const name = SvPV_nomg_const(*mark, len);
2037 APPLY_TAINT_PROPER();
2038 if (!IS_SAFE_PATHNAME(name, len, "utime")) {
2043 if (utimes(name, (struct timeval *)utbufp))
2045 if (PerlLIO_utime(name, utbufp))
2059 #undef APPLY_TAINT_PROPER
2062 /* Do the permissions allow some operation? Assumes statcache already set. */
2063 #ifndef VMS /* VMS' cando is in vms.c */
2065 Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t *statbufp)
2066 /* effective is a flag, true for EUID, or for checking if the effective gid
2067 * is in the list of groups returned from getgroups().
2070 PERL_ARGS_ASSERT_CANDO;
2071 PERL_UNUSED_CONTEXT;
2074 /* [Comments and code from Len Reed]
2075 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
2076 * to write-protected files. The execute permission bit is set
2077 * by the Microsoft C library stat() function for the following:
2082 * All files and directories are readable.
2083 * Directories and special files, e.g. "CON", cannot be
2085 * [Comment by Tom Dinger -- a directory can have the write-protect
2086 * bit set in the file system, but DOS permits changes to
2087 * the directory anyway. In addition, all bets are off
2088 * here for networked software, such as Novell and
2092 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
2093 * too so it will actually look into the files for magic numbers
2095 return (mode & statbufp->st_mode) ? TRUE : FALSE;
2097 #else /* ! DOSISH */
2099 if (ingroup(544,effective)) { /* member of Administrators */
2101 if ((effective ? PerlProc_geteuid() : PerlProc_getuid()) == 0) { /* root is special */
2103 if (mode == S_IXUSR) {
2104 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
2108 return TRUE; /* root reads and writes anything */
2111 if (statbufp->st_uid == (effective ? PerlProc_geteuid() : PerlProc_getuid()) ) {
2112 if (statbufp->st_mode & mode)
2113 return TRUE; /* ok as "user" */
2115 else if (ingroup(statbufp->st_gid,effective)) {
2116 if (statbufp->st_mode & mode >> 3)
2117 return TRUE; /* ok as "group" */
2119 else if (statbufp->st_mode & mode >> 6)
2120 return TRUE; /* ok as "other" */
2122 #endif /* ! DOSISH */
2127 S_ingroup(pTHX_ Gid_t testgid, bool effective)
2129 #ifndef PERL_IMPLICIT_SYS
2130 /* PERL_IMPLICIT_SYS like Win32: getegid() etc. require the context. */
2131 PERL_UNUSED_CONTEXT;
2133 if (testgid == (effective ? PerlProc_getegid() : PerlProc_getgid()))
2135 #ifdef HAS_GETGROUPS
2137 Groups_t *gary = NULL;
2141 anum = getgroups(0, gary);
2143 Newx(gary, anum, Groups_t);
2144 anum = getgroups(anum, gary);
2146 if (gary[anum] == testgid) {
2160 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
2163 Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
2165 const key_t key = (key_t)SvNVx(*++mark);
2166 SV *nsv = optype == OP_MSGGET ? NULL : *++mark;
2167 const I32 flags = SvIVx(*++mark);
2169 PERL_ARGS_ASSERT_DO_IPCGET;
2170 PERL_UNUSED_ARG(sp);
2177 return msgget(key, flags);
2181 return semget(key, (int) SvIV(nsv), flags);
2185 return shmget(key, (size_t) SvUV(nsv), flags);
2187 #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
2189 /* diag_listed_as: msg%s not implemented */
2190 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2193 return -1; /* should never happen */
2197 Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
2201 const I32 id = SvIVx(*++mark);
2203 const I32 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
2205 const I32 cmd = SvIVx(*++mark);
2206 SV * const astr = *++mark;
2207 STRLEN infosize = 0;
2208 I32 getinfo = (cmd == IPC_STAT);
2210 PERL_ARGS_ASSERT_DO_IPCCTL;
2211 PERL_UNUSED_ARG(sp);
2217 if (cmd == IPC_STAT || cmd == IPC_SET)
2218 infosize = sizeof(struct msqid_ds);
2223 if (cmd == IPC_STAT || cmd == IPC_SET)
2224 infosize = sizeof(struct shmid_ds);
2230 if (cmd == IPC_STAT || cmd == IPC_SET)
2231 infosize = sizeof(struct semid_ds);
2232 else if (cmd == GETALL || cmd == SETALL)
2234 struct semid_ds semds;
2236 #ifdef EXTRA_F_IN_SEMUN_BUF
2237 semun.buff = &semds;
2241 getinfo = (cmd == GETALL);
2242 if (Semctl(id, 0, IPC_STAT, semun) == -1)
2244 infosize = semds.sem_nsems * sizeof(short);
2245 /* "short" is technically wrong but much more portable
2246 than guessing about u_?short(_t)? */
2249 /* diag_listed_as: sem%s not implemented */
2250 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2254 #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
2256 /* diag_listed_as: shm%s not implemented */
2257 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2265 SvPV_force_nolen(astr);
2266 a = SvGROW(astr, infosize+1);
2271 a = SvPV(astr, len);
2272 if (len != infosize)
2273 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
2281 const IV i = SvIV(astr);
2282 a = INT2PTR(char *,i); /* ouch */
2289 ret = msgctl(id, cmd, (struct msqid_ds *)a);
2295 union semun unsemds;
2298 unsemds.val = PTR2nat(a);
2301 #ifdef EXTRA_F_IN_SEMUN_BUF
2302 unsemds.buff = (struct semid_ds *)a;
2304 unsemds.buf = (struct semid_ds *)a;
2307 ret = Semctl(id, n, cmd, unsemds);
2309 /* diag_listed_as: sem%s not implemented */
2310 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
2317 ret = shmctl(id, cmd, (struct shmid_ds *)a);
2321 if (getinfo && ret >= 0) {
2322 SvCUR_set(astr, infosize);
2323 *SvEND(astr) = '\0';
2330 Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
2334 const I32 id = SvIVx(*++mark);
2335 SV * const mstr = *++mark;
2336 const I32 flags = SvIVx(*++mark);
2337 const char * const mbuf = SvPV_const(mstr, len);
2338 const I32 msize = len - sizeof(long);
2340 PERL_ARGS_ASSERT_DO_MSGSND;
2341 PERL_UNUSED_ARG(sp);
2344 Perl_croak(aTHX_ "Arg too short for msgsnd");
2346 if (id >= 0 && flags >= 0) {
2347 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
2349 SETERRNO(EINVAL,LIB_INVARG);
2353 PERL_UNUSED_ARG(sp);
2354 PERL_UNUSED_ARG(mark);
2355 /* diag_listed_as: msg%s not implemented */
2356 Perl_croak(aTHX_ "msgsnd not implemented");
2362 Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
2367 I32 msize, flags, ret;
2368 const I32 id = SvIVx(*++mark);
2369 SV * const mstr = *++mark;
2371 PERL_ARGS_ASSERT_DO_MSGRCV;
2372 PERL_UNUSED_ARG(sp);
2374 /* suppress warning when reading into undef var --jhi */
2376 sv_setpvs(mstr, "");
2377 msize = SvIVx(*++mark);
2378 mtype = (long)SvIVx(*++mark);
2379 flags = SvIVx(*++mark);
2380 SvPV_force_nolen(mstr);
2381 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
2384 if (id >= 0 && msize >= 0 && flags >= 0) {
2385 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
2387 SETERRNO(EINVAL,LIB_INVARG);
2391 SvCUR_set(mstr, sizeof(long)+ret);
2392 *SvEND(mstr) = '\0';
2393 /* who knows who has been playing with this message? */
2398 PERL_UNUSED_ARG(sp);
2399 PERL_UNUSED_ARG(mark);
2400 /* diag_listed_as: msg%s not implemented */
2401 Perl_croak(aTHX_ "msgrcv not implemented");
2407 Perl_do_semop(pTHX_ SV **mark, SV **sp)
2411 const I32 id = SvIVx(*++mark);
2412 SV * const opstr = *++mark;
2413 const char * const opbuf = SvPV_const(opstr, opsize);
2415 PERL_ARGS_ASSERT_DO_SEMOP;
2416 PERL_UNUSED_ARG(sp);
2418 if (opsize < 3 * SHORTSIZE
2419 || (opsize % (3 * SHORTSIZE))) {
2420 SETERRNO(EINVAL,LIB_INVARG);
2424 /* We can't assume that sizeof(struct sembuf) == 3 * sizeof(short). */
2426 const int nsops = opsize / (3 * sizeof (short));
2428 short * const ops = (short *) opbuf;
2430 struct sembuf *temps, *t;
2433 Newx (temps, nsops, struct sembuf);
2441 result = semop(id, temps, nsops);
2446 /* diag_listed_as: sem%s not implemented */
2447 Perl_croak(aTHX_ "semop not implemented");
2452 Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
2456 struct shmid_ds shmds;
2457 const I32 id = SvIVx(*++mark);
2458 SV * const mstr = *++mark;
2459 const I32 mpos = SvIVx(*++mark);
2460 const I32 msize = SvIVx(*++mark);
2462 PERL_ARGS_ASSERT_DO_SHMIO;
2463 PERL_UNUSED_ARG(sp);
2466 if (shmctl(id, IPC_STAT, &shmds) == -1)
2468 if (mpos < 0 || msize < 0
2469 || (size_t)mpos + msize > (size_t)shmds.shm_segsz) {
2470 SETERRNO(EFAULT,SS_ACCVIO); /* can't do as caller requested */
2474 shm = (char *)shmat(id, NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
2476 SETERRNO(EINVAL,LIB_INVARG);
2479 if (shm == (char *)-1) /* I hate System V IPC, I really do */
2481 if (optype == OP_SHMREAD) {
2483 /* suppress warning when reading into undef var (tchrist 3/Mar/00) */
2485 SvUPGRADE(mstr, SVt_PV);
2487 sv_setpvs(mstr, "");
2489 mbuf = SvGROW(mstr, (STRLEN)msize+1);
2491 Copy(shm + mpos, mbuf, msize, char);
2492 SvCUR_set(mstr, msize);
2493 *SvEND(mstr) = '\0';
2495 /* who knows who has been playing with this shared memory? */
2501 const char *mbuf = SvPV_const(mstr, len);
2502 const I32 n = ((I32)len > msize) ? msize : (I32)len;
2503 Copy(mbuf, shm + mpos, n, char);
2505 memzero(shm + mpos + n, msize - n);
2509 /* diag_listed_as: shm%s not implemented */
2510 Perl_croak(aTHX_ "shm I/O not implemented");
2515 #endif /* SYSV IPC */
2520 =for apidoc start_glob
2522 Function called by C<do_readline> to spawn a glob (or do the glob inside
2523 perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
2524 this glob starter is only used by miniperl during the build process.
2525 Moving it away shrinks F<pp_hot.c>; shrinking F<pp_hot.c> helps speed perl up.
2531 Perl_start_glob (pTHX_ SV *tmpglob, IO *io)
2533 SV * const tmpcmd = newSV(0);
2536 const char *s = SvPV(tmpglob, len);
2538 PERL_ARGS_ASSERT_START_GLOB;
2540 if (!IS_SAFE_SYSCALL(s, len, "pattern", "glob"))
2545 #ifdef VMS /* expand the wildcards right here, rather than opening a pipe, */
2546 /* since spawning off a process is a real performance hit */
2553 fp = Perl_vms_start_glob(aTHX_ tmpglob, io);
2558 sv_setpv(tmpcmd, "for a in ");
2559 sv_catsv(tmpcmd, tmpglob);
2560 sv_catpv(tmpcmd, "; do echo \"$a\\0\\c\"; done |");
2563 sv_setpv(tmpcmd, "/dev/dosglob/"); /* File System Extension */
2564 sv_catsv(tmpcmd, tmpglob);
2566 sv_setpv(tmpcmd, "perlglob ");
2567 sv_catsv(tmpcmd, tmpglob);
2568 sv_catpv(tmpcmd, " |");
2573 sv_setpvn(tmpcmd, PL_cshname, PL_cshlen);
2574 sv_catpv(tmpcmd, " -cf 'set nonomatch; glob ");
2575 sv_catsv(tmpcmd, tmpglob);
2576 sv_catpv(tmpcmd, "' 2>/dev/null |");
2578 sv_setpv(tmpcmd, "echo ");
2579 sv_catsv(tmpcmd, tmpglob);
2580 sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\n\\n\\n\\n'|");
2582 #endif /* !DOSISH */
2584 GV * const envgv = gv_fetchpvs("ENV", 0, SVt_PVHV);
2585 SV ** const home = hv_fetchs(GvHV(envgv), "HOME", 0);
2586 SV ** const path = hv_fetchs(GvHV(envgv), "PATH", 0);
2587 if (home && *home) SvGETMAGIC(*home);
2588 if (path && *path) SvGETMAGIC(*path);
2589 save_hash(gv_fetchpvs("ENV", 0, SVt_PVHV));
2590 if (home && *home) SvSETMAGIC(*home);
2591 if (path && *path) SvSETMAGIC(*path);
2593 (void)do_open6(PL_last_in_gv, SvPVX_const(tmpcmd), SvCUR(tmpcmd),
2599 if (!fp && ckWARN(WARN_GLOB)) {
2600 Perl_warner(aTHX_ packWARN(WARN_GLOB), "glob failed (can't start child: %s)",
2608 * ex: set ts=8 sts=4 sw=4 et: