3 * Copyright (C) 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, 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 * But only a short way ahead its floor and the walls on either side were
13 * cloven by a great fissure, out of which the red glare came, now leaping
14 * up, now dying down into darkness; and all the while far below there was
15 * a rumour and a trouble as of great engines throbbing and labouring.
18 /* This file contains system pp ("push/pop") functions that
19 * execute the opcodes that make up a perl program. A typical pp function
20 * expects to find its arguments on the stack, and usually pushes its
21 * results onto the stack, hence the 'pp' terminology. Each OP structure
22 * contains a pointer to the relevant pp_foo() function.
24 * By 'system', we mean ops which interact with the OS, such as pp_open().
28 #define PERL_IN_PP_SYS_C
32 /* Shadow password support for solaris - pdo@cs.umd.edu
33 * Not just Solaris: at least HP-UX, IRIX, Linux.
34 * The API is from SysV.
36 * There are at least two more shadow interfaces,
37 * see the comments in pp_gpwent().
41 /* There is a MAXINT coming from <shadow.h> <- <hpsecurity.h> <- <values.h>
42 * and another MAXINT from "perl.h" <- <sys/param.h>. */
49 # include <sys/wait.h>
53 # include <sys/resource.h>
62 # include <sys/select.h>
66 /* XXX Configure test needed.
67 h_errno might not be a simple 'int', especially for multi-threaded
68 applications, see "extern int errno in perl.h". Creating such
69 a test requires taking into account the differences between
70 compiling multithreaded and singlethreaded ($ccflags et al).
71 HOST_NOT_FOUND is typically defined in <netdb.h>.
73 #if defined(HOST_NOT_FOUND) && !defined(h_errno) && !defined(__CYGWIN__)
82 struct passwd *getpwnam (char *);
83 struct passwd *getpwuid (Uid_t);
88 struct passwd *getpwent (void);
89 #elif defined (VMS) && defined (my_getpwent)
90 struct passwd *Perl_my_getpwent (pTHX);
99 struct group *getgrnam (char *);
100 struct group *getgrgid (Gid_t);
104 struct group *getgrent (void);
110 # if defined(_MSC_VER) || defined(__MINGW32__)
111 # include <sys/utime.h>
118 # ifdef my_chsize /* Probably #defined to Perl_my_chsize in embed.h */
121 # define my_chsize PerlLIO_chsize
124 # define my_chsize PerlLIO_chsize
126 I32 my_chsize(int fd, Off_t length);
132 #else /* no flock() */
134 /* fcntl.h might not have been included, even if it exists, because
135 the current Configure only sets I_FCNTL if it's needed to pick up
136 the *_OK constants. Make sure it has been included before testing
137 the fcntl() locking constants. */
138 # if defined(HAS_FCNTL) && !defined(I_FCNTL)
142 # if defined(HAS_FCNTL) && defined(FCNTL_CAN_LOCK)
143 # define FLOCK fcntl_emulate_flock
144 # define FCNTL_EMULATE_FLOCK
145 # else /* no flock() or fcntl(F_SETLK,...) */
147 # define FLOCK lockf_emulate_flock
148 # define LOCKF_EMULATE_FLOCK
150 # endif /* no flock() or fcntl(F_SETLK,...) */
153 static int FLOCK (int, int);
156 * These are the flock() constants. Since this sytems doesn't have
157 * flock(), the values of the constants are probably not available.
171 # endif /* emulating flock() */
173 #endif /* no flock() */
176 static const char zero_but_true[ZBTLEN + 1] = "0 but true";
178 #if defined(I_SYS_ACCESS) && !defined(R_OK)
179 # include <sys/access.h>
182 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
183 # define FD_CLOEXEC 1 /* NeXT needs this */
189 /* Missing protos on LynxOS */
190 void sethostent(int);
191 void endhostent(void);
193 void endnetent(void);
194 void setprotoent(int);
195 void endprotoent(void);
196 void setservent(int);
197 void endservent(void);
200 #undef PERL_EFF_ACCESS_R_OK /* EFFective uid/gid ACCESS R_OK */
201 #undef PERL_EFF_ACCESS_W_OK
202 #undef PERL_EFF_ACCESS_X_OK
204 /* AIX 5.2 and below use mktime for localtime, and defines the edge case
205 * for time 0x7fffffff to be valid only in UTC. AIX 5.3 provides localtime64
206 * available in the 32bit environment, which could warrant Configure
207 * checks in the future.
210 #define LOCALTIME_EDGECASE_BROKEN
213 /* F_OK unused: if stat() cannot find it... */
215 #if !defined(PERL_EFF_ACCESS_R_OK) && defined(HAS_ACCESS) && defined(EFF_ONLY_OK) && !defined(NO_EFF_ONLY_OK)
216 /* Digital UNIX (when the EFF_ONLY_OK gets fixed), UnixWare */
217 # define PERL_EFF_ACCESS_R_OK(p) (access((p), R_OK | EFF_ONLY_OK))
218 # define PERL_EFF_ACCESS_W_OK(p) (access((p), W_OK | EFF_ONLY_OK))
219 # define PERL_EFF_ACCESS_X_OK(p) (access((p), X_OK | EFF_ONLY_OK))
222 #if !defined(PERL_EFF_ACCESS_R_OK) && defined(HAS_EACCESS)
223 # ifdef I_SYS_SECURITY
224 # include <sys/security.h>
228 # define PERL_EFF_ACCESS_R_OK(p) (eaccess((p), R_OK, ACC_SELF))
229 # define PERL_EFF_ACCESS_W_OK(p) (eaccess((p), W_OK, ACC_SELF))
230 # define PERL_EFF_ACCESS_X_OK(p) (eaccess((p), X_OK, ACC_SELF))
233 # define PERL_EFF_ACCESS_R_OK(p) (eaccess((p), R_OK))
234 # define PERL_EFF_ACCESS_W_OK(p) (eaccess((p), W_OK))
235 # define PERL_EFF_ACCESS_X_OK(p) (eaccess((p), X_OK))
239 #if !defined(PERL_EFF_ACCESS_R_OK) && defined(HAS_ACCESSX) && defined(ACC_SELF)
241 # define PERL_EFF_ACCESS_R_OK(p) (accessx((p), R_OK, ACC_SELF))
242 # define PERL_EFF_ACCESS_W_OK(p) (accessx((p), W_OK, ACC_SELF))
243 # define PERL_EFF_ACCESS_X_OK(p) (accessx((p), X_OK, ACC_SELF))
246 #if !defined(PERL_EFF_ACCESS_R_OK) && defined(HAS_ACCESS) \
247 && (defined(HAS_SETREUID) || defined(HAS_SETRESUID) \
248 || defined(HAS_SETREGID) || defined(HAS_SETRESGID))
251 S_emulate_eaccess(pTHX_ const char* path, Mode_t mode)
253 const Uid_t ruid = getuid();
254 const Uid_t euid = geteuid();
255 const Gid_t rgid = getgid();
256 const Gid_t egid = getegid();
260 #if !defined(HAS_SETREUID) && !defined(HAS_SETRESUID)
261 Perl_croak(aTHX_ "switching effective uid is not implemented");
264 if (setreuid(euid, ruid))
267 if (setresuid(euid, ruid, (Uid_t)-1))
270 Perl_croak(aTHX_ "entering effective uid failed");
273 #if !defined(HAS_SETREGID) && !defined(HAS_SETRESGID)
274 Perl_croak(aTHX_ "switching effective gid is not implemented");
277 if (setregid(egid, rgid))
280 if (setresgid(egid, rgid, (Gid_t)-1))
283 Perl_croak(aTHX_ "entering effective gid failed");
286 res = access(path, mode);
289 if (setreuid(ruid, euid))
292 if (setresuid(ruid, euid, (Uid_t)-1))
295 Perl_croak(aTHX_ "leaving effective uid failed");
298 if (setregid(rgid, egid))
301 if (setresgid(rgid, egid, (Gid_t)-1))
304 Perl_croak(aTHX_ "leaving effective gid failed");
309 # define PERL_EFF_ACCESS_R_OK(p) (emulate_eaccess((p), R_OK))
310 # define PERL_EFF_ACCESS_W_OK(p) (emulate_eaccess((p), W_OK))
311 # define PERL_EFF_ACCESS_X_OK(p) (emulate_eaccess((p), X_OK))
314 #if !defined(PERL_EFF_ACCESS_R_OK)
315 /* With it or without it: anyway you get a warning: either that
316 it is unused, or it is declared static and never defined.
319 S_emulate_eaccess(pTHX_ const char* path, Mode_t mode)
323 Perl_croak(aTHX_ "switching effective uid is not implemented");
333 const char * const tmps = POPpconstx;
334 const I32 gimme = GIMME_V;
335 const char *mode = "r";
338 if (PL_op->op_private & OPpOPEN_IN_RAW)
340 else if (PL_op->op_private & OPpOPEN_IN_CRLF)
342 fp = PerlProc_popen(tmps, mode);
344 const char *type = NULL;
345 if (PL_curcop->cop_io) {
346 type = SvPV_nolen_const(PL_curcop->cop_io);
349 PerlIO_apply_layers(aTHX_ fp,mode,type);
351 if (gimme == G_VOID) {
353 while (PerlIO_read(fp, tmpbuf, sizeof tmpbuf) > 0)
356 else if (gimme == G_SCALAR) {
359 PL_rs = &PL_sv_undef;
360 sv_setpvn(TARG, "", 0); /* note that this preserves previous buffer */
361 while (sv_gets(TARG, fp, SvCUR(TARG)) != Nullch)
369 SV * const sv = NEWSV(56, 79);
370 if (sv_gets(sv, fp, 0) == Nullch) {
374 XPUSHs(sv_2mortal(sv));
375 if (SvLEN(sv) - SvCUR(sv) > 20) {
376 SvPV_shrink_to_cur(sv);
381 STATUS_NATIVE_CHILD_SET(PerlProc_pclose(fp));
382 TAINT; /* "I believe that this is not gratuitous!" */
385 STATUS_NATIVE_CHILD_SET(-1);
386 if (gimme == G_SCALAR)
397 tryAMAGICunTARGET(iter, -1);
399 /* Note that we only ever get here if File::Glob fails to load
400 * without at the same time croaking, for some reason, or if
401 * perl was built with PERL_EXTERNAL_GLOB */
408 * The external globbing program may use things we can't control,
409 * so for security reasons we must assume the worst.
412 taint_proper(PL_no_security, "glob");
416 SAVESPTR(PL_last_in_gv); /* We don't want this to be permanent. */
417 PL_last_in_gv = (GV*)*PL_stack_sp--;
419 SAVESPTR(PL_rs); /* This is not permanent, either. */
420 PL_rs = sv_2mortal(newSVpvn("\000", 1));
423 *SvPVX(PL_rs) = '\n';
427 result = do_readline();
434 PL_last_in_gv = cGVOP_gv;
435 return do_readline();
444 if (SP - MARK != 1) {
446 do_join(TARG, &PL_sv_no, MARK, SP);
453 tmps = SvPV_const(tmpsv, len);
454 if ((!tmps || !len) && PL_errgv) {
455 SV * const error = ERRSV;
456 SvUPGRADE(error, SVt_PV);
457 if (SvPOK(error) && SvCUR(error))
458 sv_catpv(error, "\t...caught");
460 tmps = SvPV_const(tmpsv, len);
463 tmpsv = sv_2mortal(newSVpvn("Warning: something's wrong", 26));
465 Perl_warn(aTHX_ "%"SVf, tmpsv);
477 VMSISH_HUSHED = VMSISH_HUSHED || (PL_op->op_private & OPpHUSH_VMSISH);
479 if (SP - MARK != 1) {
481 do_join(TARG, &PL_sv_no, MARK, SP);
483 tmps = SvPV_const(tmpsv, len);
489 tmps = SvROK(tmpsv) ? Nullch : SvPV_const(tmpsv, len);
493 SvUPGRADE(error, SVt_PV);
494 if (multiarg ? SvROK(error) : SvROK(tmpsv)) {
496 SvSetSV(error,tmpsv);
497 else if (sv_isobject(error)) {
498 HV *stash = SvSTASH(SvRV(error));
499 GV *gv = gv_fetchmethod(stash, "PROPAGATE");
501 SV *file = sv_2mortal(newSVpv(CopFILE(PL_curcop),0));
502 SV *line = sv_2mortal(newSVuv(CopLINE(PL_curcop)));
509 call_sv((SV*)GvCV(gv),
510 G_SCALAR|G_EVAL|G_KEEPERR);
511 sv_setsv(error,*PL_stack_sp--);
517 if (SvPOK(error) && SvCUR(error))
518 sv_catpv(error, "\t...propagated");
521 tmps = SvPV_const(tmpsv, len);
527 tmpsv = sv_2mortal(newSVpvn("Died", 4));
529 DIE(aTHX_ "%"SVf, tmpsv);
545 GV * const gv = (GV *)*++MARK;
548 DIE(aTHX_ PL_no_usym, "filehandle");
549 if ((io = GvIOp(gv)))
550 IoFLAGS(GvIOp(gv)) &= ~IOf_UNTAINT;
553 MAGIC * const mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar);
555 /* Method's args are same as ours ... */
556 /* ... except handle is replaced by the object */
557 *MARK-- = SvTIED_obj((SV*)io, mg);
561 call_method("OPEN", G_SCALAR);
575 tmps = SvPV_const(sv, len);
576 ok = do_openn(gv, tmps, len, FALSE, O_RDONLY, 0, Nullfp, MARK+1, (SP-MARK));
579 PUSHi( (I32)PL_forkprocess );
580 else if (PL_forkprocess == 0) /* we are a new child */
592 GV * const gv = (MAXARG == 0) ? PL_defoutgv : (GV*)POPs;
594 if (gv && (io = GvIO(gv))
595 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
598 XPUSHs(SvTIED_obj((SV*)io, mg));
601 call_method("CLOSE", G_SCALAR);
607 PUSHs(boolSV(do_close(gv, TRUE)));
619 GV * const wgv = (GV*)POPs;
620 GV * const rgv = (GV*)POPs;
625 if (SvTYPE(rgv) != SVt_PVGV || SvTYPE(wgv) != SVt_PVGV)
626 DIE(aTHX_ PL_no_usym, "filehandle");
631 do_close(rgv, FALSE);
633 do_close(wgv, FALSE);
635 if (PerlProc_pipe(fd) < 0)
638 IoIFP(rstio) = PerlIO_fdopen(fd[0], "r"PIPE_OPEN_MODE);
639 IoOFP(wstio) = PerlIO_fdopen(fd[1], "w"PIPE_OPEN_MODE);
640 IoOFP(rstio) = IoIFP(rstio);
641 IoIFP(wstio) = IoOFP(wstio);
642 IoTYPE(rstio) = IoTYPE_RDONLY;
643 IoTYPE(wstio) = IoTYPE_WRONLY;
645 if (!IoIFP(rstio) || !IoOFP(wstio)) {
646 if (IoIFP(rstio)) PerlIO_close(IoIFP(rstio));
647 else PerlLIO_close(fd[0]);
648 if (IoOFP(wstio)) PerlIO_close(IoOFP(wstio));
649 else PerlLIO_close(fd[1]);
652 #if defined(HAS_FCNTL) && defined(F_SETFD)
653 fcntl(fd[0],F_SETFD,fd[0] > PL_maxsysfd); /* ensure close-on-exec */
654 fcntl(fd[1],F_SETFD,fd[1] > PL_maxsysfd); /* ensure close-on-exec */
661 DIE(aTHX_ PL_no_func, "pipe");
677 if (gv && (io = GvIO(gv))
678 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
681 XPUSHs(SvTIED_obj((SV*)io, mg));
684 call_method("FILENO", G_SCALAR);
690 if (!gv || !(io = GvIO(gv)) || !(fp = IoIFP(io))) {
691 /* Can't do this because people seem to do things like
692 defined(fileno($foo)) to check whether $foo is a valid fh.
693 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
694 report_evil_fh(gv, io, PL_op->op_type);
699 PUSHi(PerlIO_fileno(fp));
711 anum = PerlLIO_umask(0);
712 (void)PerlLIO_umask(anum);
715 anum = PerlLIO_umask(POPi);
716 TAINT_PROPER("umask");
719 /* Only DIE if trying to restrict permissions on "user" (self).
720 * Otherwise it's harmless and more useful to just return undef
721 * since 'group' and 'other' concepts probably don't exist here. */
722 if (MAXARG >= 1 && (POPi & 0700))
723 DIE(aTHX_ "umask not implemented");
724 XPUSHs(&PL_sv_undef);
746 if (gv && (io = GvIO(gv))
747 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
750 XPUSHs(SvTIED_obj((SV*)io, mg));
755 call_method("BINMODE", G_SCALAR);
762 if (!(io = GvIO(gv)) || !(fp = IoIFP(io))) {
763 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
764 report_evil_fh(gv, io, PL_op->op_type);
765 SETERRNO(EBADF,RMS_IFI);
770 if (PerlIO_binmode(aTHX_ fp,IoTYPE(io),mode_from_discipline(discp),
771 (discp) ? SvPV_nolen_const(discp) : Nullch)) {
772 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {
773 if (!PerlIO_binmode(aTHX_ IoOFP(io),IoTYPE(io),
774 mode_from_discipline(discp),
775 (discp) ? SvPV_nolen_const(discp) : Nullch)) {
795 const I32 markoff = MARK - PL_stack_base;
796 const char *methname;
797 int how = PERL_MAGIC_tied;
801 switch(SvTYPE(varsv)) {
803 methname = "TIEHASH";
804 HvEITER_set((HV *)varsv, 0);
807 methname = "TIEARRAY";
810 #ifdef GV_UNIQUE_CHECK
811 if (GvUNIQUE((GV*)varsv)) {
812 Perl_croak(aTHX_ "Attempt to tie unique GV");
815 methname = "TIEHANDLE";
816 how = PERL_MAGIC_tiedscalar;
817 /* For tied filehandles, we apply tiedscalar magic to the IO
818 slot of the GP rather than the GV itself. AMS 20010812 */
820 GvIOp(varsv) = newIO();
821 varsv = (SV *)GvIOp(varsv);
824 methname = "TIESCALAR";
825 how = PERL_MAGIC_tiedscalar;
829 if (sv_isobject(*MARK)) {
831 PUSHSTACKi(PERLSI_MAGIC);
833 EXTEND(SP,(I32)items);
837 call_method(methname, G_SCALAR);
840 /* Not clear why we don't call call_method here too.
841 * perhaps to get different error message ?
843 stash = gv_stashsv(*MARK, FALSE);
844 if (!stash || !(gv = gv_fetchmethod(stash, methname))) {
845 DIE(aTHX_ "Can't locate object method \"%s\" via package \"%"SVf"\"",
849 PUSHSTACKi(PERLSI_MAGIC);
851 EXTEND(SP,(I32)items);
855 call_sv((SV*)GvCV(gv), G_SCALAR);
861 if (sv_isobject(sv)) {
862 sv_unmagic(varsv, how);
863 /* Croak if a self-tie on an aggregate is attempted. */
864 if (varsv == SvRV(sv) &&
865 (SvTYPE(varsv) == SVt_PVAV ||
866 SvTYPE(varsv) == SVt_PVHV))
868 "Self-ties of arrays and hashes are not supported");
869 sv_magic(varsv, (SvRV(sv) == varsv ? Nullsv : sv), how, Nullch, 0);
872 SP = PL_stack_base + markoff;
882 const char how = (SvTYPE(sv) == SVt_PVHV || SvTYPE(sv) == SVt_PVAV)
883 ? PERL_MAGIC_tied : PERL_MAGIC_tiedscalar;
885 if (SvTYPE(sv) == SVt_PVGV && !(sv = (SV *)GvIOp(sv)))
888 if ((mg = SvTIED_mg(sv, how))) {
889 SV * const obj = SvRV(SvTIED_obj(sv, mg));
892 GV * const gv = gv_fetchmethod_autoload(SvSTASH(obj), "UNTIE", FALSE);
893 if (gv && isGV(gv) && (cv = GvCV(gv))) {
895 XPUSHs(SvTIED_obj((SV*)gv, mg));
896 XPUSHs(sv_2mortal(newSViv(SvREFCNT(obj)-1)));
899 call_sv((SV *)cv, G_VOID);
903 else if (mg && SvREFCNT(obj) > 1 && ckWARN(WARN_UNTIE)) {
904 Perl_warner(aTHX_ packWARN(WARN_UNTIE),
905 "untie attempted while %"UVuf" inner references still exist",
906 (UV)SvREFCNT(obj) - 1 ) ;
910 sv_unmagic(sv, how) ;
919 const char how = (SvTYPE(sv) == SVt_PVHV || SvTYPE(sv) == SVt_PVAV)
920 ? PERL_MAGIC_tied : PERL_MAGIC_tiedscalar;
922 if (SvTYPE(sv) == SVt_PVGV && !(sv = (SV *)GvIOp(sv)))
925 if ((mg = SvTIED_mg(sv, how))) {
926 SV *osv = SvTIED_obj(sv, mg);
927 if (osv == mg->mg_obj)
928 osv = sv_mortalcopy(osv);
942 HV * const hv = (HV*)POPs;
943 SV * const sv = sv_mortalcopy(&PL_sv_no);
945 sv_setpv(sv, "AnyDBM_File");
946 stash = gv_stashsv(sv, FALSE);
947 if (!stash || !(gv = gv_fetchmethod(stash, "TIEHASH"))) {
949 require_pv("AnyDBM_File.pm");
951 if (!(gv = gv_fetchmethod(stash, "TIEHASH")))
952 DIE(aTHX_ "No dbm on this machine");
962 PUSHs(sv_2mortal(newSVuv(O_RDWR|O_CREAT)));
964 PUSHs(sv_2mortal(newSVuv(O_RDWR)));
967 call_sv((SV*)GvCV(gv), G_SCALAR);
970 if (!sv_isobject(TOPs)) {
975 PUSHs(sv_2mortal(newSVuv(O_RDONLY)));
978 call_sv((SV*)GvCV(gv), G_SCALAR);
982 if (sv_isobject(TOPs)) {
983 sv_unmagic((SV *) hv, PERL_MAGIC_tied);
984 sv_magic((SV*)hv, TOPs, PERL_MAGIC_tied, Nullch, 0);
1001 struct timeval timebuf;
1002 struct timeval *tbuf = &timebuf;
1005 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1010 # if BYTEORDER & 0xf0000
1011 # define ORDERBYTE (0x88888888 - BYTEORDER)
1013 # define ORDERBYTE (0x4444 - BYTEORDER)
1019 for (i = 1; i <= 3; i++) {
1020 SV * const sv = SP[i];
1023 if (SvREADONLY(sv)) {
1025 sv_force_normal_flags(sv, 0);
1026 if (SvREADONLY(sv) && !(SvPOK(sv) && SvCUR(sv) == 0))
1027 DIE(aTHX_ PL_no_modify);
1030 if (ckWARN(WARN_MISC))
1031 Perl_warner(aTHX_ packWARN(WARN_MISC), "Non-string passed as bitmask");
1032 SvPV_force_nolen(sv); /* force string conversion */
1039 /* little endians can use vecs directly */
1040 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1047 masksize = NFDBITS / NBBY;
1049 masksize = sizeof(long); /* documented int, everyone seems to use long */
1051 Zero(&fd_sets[0], 4, char*);
1054 # if SELECT_MIN_BITS == 1
1055 growsize = sizeof(fd_set);
1057 # if defined(__GLIBC__) && defined(__FD_SETSIZE)
1058 # undef SELECT_MIN_BITS
1059 # define SELECT_MIN_BITS __FD_SETSIZE
1061 /* If SELECT_MIN_BITS is greater than one we most probably will want
1062 * to align the sizes with SELECT_MIN_BITS/8 because for example
1063 * in many little-endian (Intel, Alpha) systems (Linux, OS/2, Digital
1064 * UNIX, Solaris, NeXT, Darwin) the smallest quantum select() operates
1065 * on (sets/tests/clears bits) is 32 bits. */
1066 growsize = maxlen + (SELECT_MIN_BITS/8 - (maxlen % (SELECT_MIN_BITS/8)));
1074 timebuf.tv_sec = (long)value;
1075 value -= (NV)timebuf.tv_sec;
1076 timebuf.tv_usec = (long)(value * 1000000.0);
1079 tbuf = Null(struct timeval*);
1081 for (i = 1; i <= 3; i++) {
1083 if (!SvOK(sv) || SvCUR(sv) == 0) {
1090 Sv_Grow(sv, growsize);
1094 while (++j <= growsize) {
1098 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1100 Newx(fd_sets[i], growsize, char);
1101 for (offset = 0; offset < growsize; offset += masksize) {
1102 for (j = 0, k=ORDERBYTE; j < masksize; j++, (k >>= 4))
1103 fd_sets[i][j+offset] = s[(k % masksize) + offset];
1106 fd_sets[i] = SvPVX(sv);
1110 #ifdef PERL_IRIX5_SELECT_TIMEVAL_VOID_CAST
1111 /* Can't make just the (void*) conditional because that would be
1112 * cpp #if within cpp macro, and not all compilers like that. */
1113 nfound = PerlSock_select(
1115 (Select_fd_set_t) fd_sets[1],
1116 (Select_fd_set_t) fd_sets[2],
1117 (Select_fd_set_t) fd_sets[3],
1118 (void*) tbuf); /* Workaround for compiler bug. */
1120 nfound = PerlSock_select(
1122 (Select_fd_set_t) fd_sets[1],
1123 (Select_fd_set_t) fd_sets[2],
1124 (Select_fd_set_t) fd_sets[3],
1127 for (i = 1; i <= 3; i++) {
1130 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1132 for (offset = 0; offset < growsize; offset += masksize) {
1133 for (j = 0, k=ORDERBYTE; j < masksize; j++, (k >>= 4))
1134 s[(k % masksize) + offset] = fd_sets[i][j+offset];
1136 Safefree(fd_sets[i]);
1143 if (GIMME == G_ARRAY && tbuf) {
1144 value = (NV)(timebuf.tv_sec) +
1145 (NV)(timebuf.tv_usec) / 1000000.0;
1146 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
1147 sv_setnv(sv, value);
1151 DIE(aTHX_ "select not implemented");
1156 Perl_setdefout(pTHX_ GV *gv)
1159 (void)SvREFCNT_inc(gv);
1161 SvREFCNT_dec(PL_defoutgv);
1171 GV * const newdefout = (PL_op->op_private > 0) ? ((GV *) POPs) : (GV *) NULL;
1173 egv = GvEGV(PL_defoutgv);
1178 XPUSHs(&PL_sv_undef);
1180 GV * const * const gvp = (GV**)hv_fetch(hv, GvNAME(egv), GvNAMELEN(egv), FALSE);
1181 if (gvp && *gvp == egv) {
1182 gv_efullname4(TARG, PL_defoutgv, Nullch, TRUE);
1186 XPUSHs(sv_2mortal(newRV((SV*)egv)));
1191 if (!GvIO(newdefout))
1192 gv_IOadd(newdefout);
1193 setdefout(newdefout);
1204 GV * const gv = (MAXARG==0) ? PL_stdingv : (GV*)POPs;
1206 if (gv && (io = GvIO(gv))
1207 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1209 const I32 gimme = GIMME_V;
1211 XPUSHs(SvTIED_obj((SV*)io, mg));
1214 call_method("GETC", gimme);
1217 if (gimme == G_SCALAR)
1218 SvSetMagicSV_nosteal(TARG, TOPs);
1221 if (!gv || do_eof(gv)) { /* make sure we have fp with something */
1222 if ((!io || (!IoIFP(io) && IoTYPE(io) != IoTYPE_WRONLY))
1223 && ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1224 report_evil_fh(gv, io, PL_op->op_type);
1225 SETERRNO(EBADF,RMS_IFI);
1229 sv_setpvn(TARG, " ", 1);
1230 *SvPVX(TARG) = PerlIO_getc(IoIFP(GvIOp(gv))); /* should never be EOF */
1231 if (PerlIO_isutf8(IoIFP(GvIOp(gv)))) {
1232 /* Find out how many bytes the char needs */
1233 Size_t len = UTF8SKIP(SvPVX_const(TARG));
1236 len = PerlIO_read(IoIFP(GvIOp(gv)),SvPVX(TARG)+1,len-1);
1237 SvCUR_set(TARG,1+len);
1246 S_doform(pTHX_ CV *cv, GV *gv, OP *retop)
1249 register PERL_CONTEXT *cx;
1250 const I32 gimme = GIMME_V;
1255 PUSHBLOCK(cx, CXt_FORMAT, PL_stack_sp);
1257 cx->blk_sub.retop = retop;
1259 PAD_SET_CUR_NOSAVE(CvPADLIST(cv), 1);
1261 setdefout(gv); /* locally select filehandle so $% et al work */
1293 SV * const tmpsv = sv_newmortal();
1295 gv_efullname4(tmpsv, fgv, Nullch, FALSE);
1296 name = SvPV_nolen_const(tmpsv);
1298 DIE(aTHX_ "Undefined format \"%s\" called", name);
1300 DIE(aTHX_ "Not a format reference");
1303 cv = (CV*)sv_2mortal((SV*)cv_clone(cv));
1305 IoFLAGS(io) &= ~IOf_DIDTOP;
1306 return doform(cv,gv,PL_op->op_next);
1312 GV * const gv = cxstack[cxstack_ix].blk_sub.gv;
1313 register IO * const io = GvIOp(gv);
1314 PerlIO * const ofp = IoOFP(io);
1318 register PERL_CONTEXT *cx;
1320 DEBUG_f(PerlIO_printf(Perl_debug_log, "left=%ld, todo=%ld\n",
1321 (long)IoLINES_LEFT(io), (long)FmLINES(PL_formtarget)));
1324 if (IoLINES_LEFT(io) < FmLINES(PL_formtarget) &&
1325 PL_formtarget != PL_toptarget)
1329 if (!IoTOP_GV(io)) {
1332 if (!IoTOP_NAME(io)) {
1334 if (!IoFMT_NAME(io))
1335 IoFMT_NAME(io) = savepv(GvNAME(gv));
1336 topname = sv_2mortal(Perl_newSVpvf(aTHX_ "%s_TOP", GvNAME(gv)));
1337 topgv = gv_fetchsv(topname, FALSE, SVt_PVFM);
1338 if ((topgv && GvFORM(topgv)) ||
1339 !gv_fetchpv("top",FALSE,SVt_PVFM))
1340 IoTOP_NAME(io) = savesvpv(topname);
1342 IoTOP_NAME(io) = savepvn("top", 3);
1344 topgv = gv_fetchpv(IoTOP_NAME(io),FALSE, SVt_PVFM);
1345 if (!topgv || !GvFORM(topgv)) {
1346 IoLINES_LEFT(io) = IoPAGE_LEN(io);
1349 IoTOP_GV(io) = topgv;
1351 if (IoFLAGS(io) & IOf_DIDTOP) { /* Oh dear. It still doesn't fit. */
1352 I32 lines = IoLINES_LEFT(io);
1353 const char *s = SvPVX_const(PL_formtarget);
1354 if (lines <= 0) /* Yow, header didn't even fit!!! */
1356 while (lines-- > 0) {
1357 s = strchr(s, '\n');
1363 const STRLEN save = SvCUR(PL_formtarget);
1364 SvCUR_set(PL_formtarget, s - SvPVX_const(PL_formtarget));
1365 do_print(PL_formtarget, ofp);
1366 SvCUR_set(PL_formtarget, save);
1367 sv_chop(PL_formtarget, s);
1368 FmLINES(PL_formtarget) -= IoLINES_LEFT(io);
1371 if (IoLINES_LEFT(io) >= 0 && IoPAGE(io) > 0)
1372 do_print(PL_formfeed, ofp);
1373 IoLINES_LEFT(io) = IoPAGE_LEN(io);
1375 PL_formtarget = PL_toptarget;
1376 IoFLAGS(io) |= IOf_DIDTOP;
1379 DIE(aTHX_ "bad top format reference");
1382 SV * const sv = sv_newmortal();
1384 gv_efullname4(sv, fgv, Nullch, FALSE);
1385 name = SvPV_nolen_const(sv);
1387 DIE(aTHX_ "Undefined top format \"%s\" called",name);
1391 DIE(aTHX_ "Undefined top format called");
1394 cv = (CV*)sv_2mortal((SV*)cv_clone(cv));
1395 return doform(cv,gv,PL_op);
1399 POPBLOCK(cx,PL_curpm);
1405 if (ckWARN2(WARN_CLOSED,WARN_IO)) {
1407 report_evil_fh(gv, io, OP_phoney_INPUT_ONLY);
1408 else if (ckWARN(WARN_CLOSED))
1409 report_evil_fh(gv, io, PL_op->op_type);
1414 if ((IoLINES_LEFT(io) -= FmLINES(PL_formtarget)) < 0) {
1415 if (ckWARN(WARN_IO))
1416 Perl_warner(aTHX_ packWARN(WARN_IO), "page overflow");
1418 if (!do_print(PL_formtarget, fp))
1421 FmLINES(PL_formtarget) = 0;
1422 SvCUR_set(PL_formtarget, 0);
1423 *SvEND(PL_formtarget) = '\0';
1424 if (IoFLAGS(io) & IOf_FLUSH)
1425 (void)PerlIO_flush(fp);
1430 PL_formtarget = PL_bodytarget;
1432 PERL_UNUSED_VAR(newsp);
1433 PERL_UNUSED_VAR(gimme);
1434 return cx->blk_sub.retop;
1439 dVAR; dSP; dMARK; dORIGMARK;
1445 GV * const gv = (PL_op->op_flags & OPf_STACKED) ? (GV*)*++MARK : PL_defoutgv;
1447 if (gv && (io = GvIO(gv))
1448 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1450 if (MARK == ORIGMARK) {
1453 Move(MARK, MARK + 1, (SP - MARK) + 1, SV*);
1457 *MARK = SvTIED_obj((SV*)io, mg);
1460 call_method("PRINTF", G_SCALAR);
1463 MARK = ORIGMARK + 1;
1470 if (!(io = GvIO(gv))) {
1471 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1472 report_evil_fh(gv, io, PL_op->op_type);
1473 SETERRNO(EBADF,RMS_IFI);
1476 else if (!(fp = IoOFP(io))) {
1477 if (ckWARN2(WARN_CLOSED,WARN_IO)) {
1479 report_evil_fh(gv, io, OP_phoney_INPUT_ONLY);
1480 else if (ckWARN(WARN_CLOSED))
1481 report_evil_fh(gv, io, PL_op->op_type);
1483 SETERRNO(EBADF,IoIFP(io)?RMS_FAC:RMS_IFI);
1487 do_sprintf(sv, SP - MARK, MARK + 1);
1488 if (!do_print(sv, fp))
1491 if (IoFLAGS(io) & IOf_FLUSH)
1492 if (PerlIO_flush(fp) == EOF)
1503 PUSHs(&PL_sv_undef);
1510 const int perm = (MAXARG > 3) ? POPi : 0666;
1511 const int mode = POPi;
1512 SV * const sv = POPs;
1513 GV * const gv = (GV *)POPs;
1516 /* Need TIEHANDLE method ? */
1517 const char * const tmps = SvPV_const(sv, len);
1518 /* FIXME? do_open should do const */
1519 if (do_open(gv, tmps, len, TRUE, mode, perm, Nullfp)) {
1520 IoLINES(GvIOp(gv)) = 0;
1524 PUSHs(&PL_sv_undef);
1531 dVAR; dSP; dMARK; dORIGMARK; dTARGET;
1537 Sock_size_t bufsize;
1545 bool charstart = FALSE;
1546 STRLEN charskip = 0;
1549 GV * const gv = (GV*)*++MARK;
1550 if ((PL_op->op_type == OP_READ || PL_op->op_type == OP_SYSREAD)
1551 && gv && (io = GvIO(gv)) )
1553 const MAGIC * mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar);
1557 *MARK = SvTIED_obj((SV*)io, mg);
1559 call_method("READ", G_SCALAR);
1573 sv_setpvn(bufsv, "", 0);
1574 length = SvIVx(*++MARK);
1577 offset = SvIVx(*++MARK);
1581 if (!io || !IoIFP(io)) {
1582 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1583 report_evil_fh(gv, io, PL_op->op_type);
1584 SETERRNO(EBADF,RMS_IFI);
1587 if ((fp_utf8 = PerlIO_isutf8(IoIFP(io))) && !IN_BYTES) {
1588 buffer = SvPVutf8_force(bufsv, blen);
1589 /* UTF-8 may not have been set if they are all low bytes */
1594 buffer = SvPV_force(bufsv, blen);
1595 buffer_utf8 = !IN_BYTES && SvUTF8(bufsv);
1598 DIE(aTHX_ "Negative length");
1606 if (PL_op->op_type == OP_RECV) {
1607 char namebuf[MAXPATHLEN];
1608 #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) || defined(__QNXNTO__)
1609 bufsize = sizeof (struct sockaddr_in);
1611 bufsize = sizeof namebuf;
1613 #ifdef OS2 /* At least Warp3+IAK: only the first byte of bufsize set */
1617 buffer = SvGROW(bufsv, (STRLEN)(length+1));
1618 /* 'offset' means 'flags' here */
1619 count = PerlSock_recvfrom(PerlIO_fileno(IoIFP(io)), buffer, length, offset,
1620 (struct sockaddr *)namebuf, &bufsize);
1624 /* Bogus return without padding */
1625 bufsize = sizeof (struct sockaddr_in);
1627 SvCUR_set(bufsv, count);
1628 *SvEND(bufsv) = '\0';
1629 (void)SvPOK_only(bufsv);
1633 /* This should not be marked tainted if the fp is marked clean */
1634 if (!(IoFLAGS(io) & IOf_UNTAINT))
1635 SvTAINTED_on(bufsv);
1637 sv_setpvn(TARG, namebuf, bufsize);
1642 if (PL_op->op_type == OP_RECV)
1643 DIE(aTHX_ PL_no_sock_func, "recv");
1645 if (DO_UTF8(bufsv)) {
1646 /* offset adjust in characters not bytes */
1647 blen = sv_len_utf8(bufsv);
1650 if (-offset > (int)blen)
1651 DIE(aTHX_ "Offset outside string");
1654 if (DO_UTF8(bufsv)) {
1655 /* convert offset-as-chars to offset-as-bytes */
1656 if (offset >= (int)blen)
1657 offset += SvCUR(bufsv) - blen;
1659 offset = utf8_hop((U8 *)buffer,offset) - (U8 *) buffer;
1662 bufsize = SvCUR(bufsv);
1663 /* Allocating length + offset + 1 isn't perfect in the case of reading
1664 bytes from a byte file handle into a UTF8 buffer, but it won't harm us
1666 (should be 2 * length + offset + 1, or possibly something longer if
1667 PL_encoding is true) */
1668 buffer = SvGROW(bufsv, (STRLEN)(length+offset+1));
1669 if (offset > 0 && (Sock_size_t)offset > bufsize) { /* Zero any newly allocated space */
1670 Zero(buffer+bufsize, offset-bufsize, char);
1672 buffer = buffer + offset;
1674 read_target = bufsv;
1676 /* Best to read the bytes into a new SV, upgrade that to UTF8, then
1677 concatenate it to the current buffer. */
1679 /* Truncate the existing buffer to the start of where we will be
1681 SvCUR_set(bufsv, offset);
1683 read_target = sv_newmortal();
1684 SvUPGRADE(read_target, SVt_PV);
1685 buffer = SvGROW(read_target, (STRLEN)(length + 1));
1688 if (PL_op->op_type == OP_SYSREAD) {
1689 #ifdef PERL_SOCK_SYSREAD_IS_RECV
1690 if (IoTYPE(io) == IoTYPE_SOCKET) {
1691 count = PerlSock_recv(PerlIO_fileno(IoIFP(io)),
1697 count = PerlLIO_read(PerlIO_fileno(IoIFP(io)),
1702 #ifdef HAS_SOCKET__bad_code_maybe
1703 if (IoTYPE(io) == IoTYPE_SOCKET) {
1704 char namebuf[MAXPATHLEN];
1705 #if defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)
1706 bufsize = sizeof (struct sockaddr_in);
1708 bufsize = sizeof namebuf;
1710 count = PerlSock_recvfrom(PerlIO_fileno(IoIFP(io)), buffer, length, 0,
1711 (struct sockaddr *)namebuf, &bufsize);
1716 count = PerlIO_read(IoIFP(io), buffer, length);
1717 /* PerlIO_read() - like fread() returns 0 on both error and EOF */
1718 if (count == 0 && PerlIO_error(IoIFP(io)))
1722 if ((IoTYPE(io) == IoTYPE_WRONLY) && ckWARN(WARN_IO))
1723 report_evil_fh(gv, io, OP_phoney_OUTPUT_ONLY);
1726 SvCUR_set(read_target, count+(buffer - SvPVX_const(read_target)));
1727 *SvEND(read_target) = '\0';
1728 (void)SvPOK_only(read_target);
1729 if (fp_utf8 && !IN_BYTES) {
1730 /* Look at utf8 we got back and count the characters */
1731 const char *bend = buffer + count;
1732 while (buffer < bend) {
1734 skip = UTF8SKIP(buffer);
1737 if (buffer - charskip + skip > bend) {
1738 /* partial character - try for rest of it */
1739 length = skip - (bend-buffer);
1740 offset = bend - SvPVX_const(bufsv);
1752 /* If we have not 'got' the number of _characters_ we 'wanted' get some more
1753 provided amount read (count) was what was requested (length)
1755 if (got < wanted && count == length) {
1756 length = wanted - got;
1757 offset = bend - SvPVX_const(bufsv);
1760 /* return value is character count */
1764 else if (buffer_utf8) {
1765 /* Let svcatsv upgrade the bytes we read in to utf8.
1766 The buffer is a mortal so will be freed soon. */
1767 sv_catsv_nomg(bufsv, read_target);
1770 /* This should not be marked tainted if the fp is marked clean */
1771 if (!(IoFLAGS(io) & IOf_UNTAINT))
1772 SvTAINTED_on(bufsv);
1785 const int items = (SP - PL_stack_base) - TOPMARK;
1789 sv = sv_2mortal(newSViv(sv_len(*SP)));
1798 dVAR; dSP; dMARK; dORIGMARK; dTARGET;
1809 if (PL_op->op_type == OP_SYSWRITE
1810 && gv && (io = GvIO(gv))
1811 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1816 *MARK = SvTIED_obj((SV*)io, mg);
1818 call_method("WRITE", G_SCALAR);
1829 #if Size_t_size > IVSIZE
1830 length = (Size_t)SvNVx(*++MARK);
1832 length = (Size_t)SvIVx(*++MARK);
1834 if ((SSize_t)length < 0)
1835 DIE(aTHX_ "Negative length");
1838 if (!io || !IoIFP(io)) {
1840 if (ckWARN(WARN_CLOSED))
1841 report_evil_fh(gv, io, PL_op->op_type);
1842 SETERRNO(EBADF,RMS_IFI);
1846 if (PerlIO_isutf8(IoIFP(io))) {
1847 if (!SvUTF8(bufsv)) {
1848 bufsv = sv_2mortal(newSVsv(bufsv));
1849 buffer = sv_2pvutf8(bufsv, &blen);
1851 buffer = SvPV_const(bufsv, blen);
1854 if (DO_UTF8(bufsv)) {
1855 /* Not modifying source SV, so making a temporary copy. */
1856 bufsv = sv_2mortal(newSVsv(bufsv));
1857 sv_utf8_downgrade(bufsv, FALSE);
1859 buffer = SvPV_const(bufsv, blen);
1862 if (PL_op->op_type == OP_SYSWRITE) {
1864 if (DO_UTF8(bufsv)) {
1865 /* length and offset are in chars */
1866 blen = sv_len_utf8(bufsv);
1869 offset = SvIVx(*++MARK);
1871 if (-offset > (IV)blen)
1872 DIE(aTHX_ "Offset outside string");
1874 } else if (offset >= (IV)blen && blen > 0)
1875 DIE(aTHX_ "Offset outside string");
1878 if (length > blen - offset)
1879 length = blen - offset;
1880 if (DO_UTF8(bufsv)) {
1881 buffer = (const char*)utf8_hop((const U8 *)buffer, offset);
1882 length = utf8_hop((U8 *)buffer, length) - (U8 *)buffer;
1885 buffer = buffer+offset;
1887 #ifdef PERL_SOCK_SYSWRITE_IS_SEND
1888 if (IoTYPE(io) == IoTYPE_SOCKET) {
1889 retval = PerlSock_send(PerlIO_fileno(IoIFP(io)),
1895 /* See the note at doio.c:do_print about filesize limits. --jhi */
1896 retval = PerlLIO_write(PerlIO_fileno(IoIFP(io)),
1901 else if (SP > MARK) {
1903 char * const sockbuf = SvPVx(*++MARK, mlen);
1904 /* length is really flags */
1905 retval = PerlSock_sendto(PerlIO_fileno(IoIFP(io)), buffer, blen,
1906 length, (struct sockaddr *)sockbuf, mlen);
1909 /* length is really flags */
1910 retval = PerlSock_send(PerlIO_fileno(IoIFP(io)), buffer, blen, length);
1913 DIE(aTHX_ PL_no_sock_func, "send");
1919 retval = utf8_length((U8*)buffer, (U8*)buffer + retval);
1920 #if Size_t_size > IVSIZE
1940 if (PL_op->op_flags & OPf_SPECIAL) { /* eof() */
1942 gv = PL_last_in_gv = GvEGV(PL_argvgv);
1944 if (io && !IoIFP(io)) {
1945 if ((IoFLAGS(io) & IOf_START) && av_len(GvAVn(gv)) < 0) {
1947 IoFLAGS(io) &= ~IOf_START;
1948 do_open(gv, "-", 1, FALSE, O_RDONLY, 0, Nullfp);
1949 sv_setpvn(GvSV(gv), "-", 1);
1950 SvSETMAGIC(GvSV(gv));
1952 else if (!nextargv(gv))
1957 gv = PL_last_in_gv; /* eof */
1960 gv = PL_last_in_gv = (GV*)POPs; /* eof(FH) */
1962 if (gv && (io = GvIO(gv))
1963 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1966 XPUSHs(SvTIED_obj((SV*)io, mg));
1969 call_method("EOF", G_SCALAR);
1975 PUSHs(boolSV(!gv || do_eof(gv)));
1987 PL_last_in_gv = (GV*)POPs;
1990 if (gv && (io = GvIO(gv))
1991 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1994 XPUSHs(SvTIED_obj((SV*)io, mg));
1997 call_method("TELL", G_SCALAR);
2003 #if LSEEKSIZE > IVSIZE
2004 PUSHn( do_tell(gv) );
2006 PUSHi( do_tell(gv) );
2016 const int whence = POPi;
2017 #if LSEEKSIZE > IVSIZE
2018 Off_t offset = (Off_t)SvNVx(POPs);
2020 Off_t offset = (Off_t)SvIVx(POPs);
2024 gv = PL_last_in_gv = (GV*)POPs;
2026 if (gv && (io = GvIO(gv))
2027 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
2030 XPUSHs(SvTIED_obj((SV*)io, mg));
2031 #if LSEEKSIZE > IVSIZE
2032 XPUSHs(sv_2mortal(newSVnv((NV) offset)));
2034 XPUSHs(sv_2mortal(newSViv(offset)));
2036 XPUSHs(sv_2mortal(newSViv(whence)));
2039 call_method("SEEK", G_SCALAR);
2045 if (PL_op->op_type == OP_SEEK)
2046 PUSHs(boolSV(do_seek(gv, offset, whence)));
2048 Off_t sought = do_sysseek(gv, offset, whence);
2050 PUSHs(&PL_sv_undef);
2053 #if LSEEKSIZE > IVSIZE
2058 : newSVpvn(zero_but_true, ZBTLEN);
2059 PUSHs(sv_2mortal(sv));
2068 /* There seems to be no consensus on the length type of truncate()
2069 * and ftruncate(), both off_t and size_t have supporters. In
2070 * general one would think that when using large files, off_t is
2071 * at least as wide as size_t, so using an off_t should be okay. */
2072 /* XXX Configure probe for the length type of *truncate() needed XXX */
2075 #if Off_t_size > IVSIZE
2080 /* Checking for length < 0 is problematic as the type might or
2081 * might not be signed: if it is not, clever compilers will moan. */
2082 /* XXX Configure probe for the signedness of the length type of *truncate() needed? XXX */
2089 if (PL_op->op_flags & OPf_SPECIAL) {
2090 tmpgv = gv_fetchsv(POPs, FALSE, SVt_PVIO);
2099 TAINT_PROPER("truncate");
2100 if (!(fp = IoIFP(io))) {
2106 if (ftruncate(PerlIO_fileno(fp), len) < 0)
2108 if (my_chsize(PerlIO_fileno(fp), len) < 0)
2118 if (SvTYPE(sv) == SVt_PVGV) {
2119 tmpgv = (GV*)sv; /* *main::FRED for example */
2120 goto do_ftruncate_gv;
2122 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
2123 tmpgv = (GV*) SvRV(sv); /* \*main::FRED for example */
2124 goto do_ftruncate_gv;
2126 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
2127 io = (IO*) SvRV(sv); /* *main::FRED{IO} for example */
2128 goto do_ftruncate_io;
2131 name = SvPV_nolen_const(sv);
2132 TAINT_PROPER("truncate");
2134 if (truncate(name, len) < 0)
2140 if ((tmpfd = PerlLIO_open(name, O_RDWR)) < 0)
2143 if (my_chsize(tmpfd, len) < 0)
2145 PerlLIO_close(tmpfd);
2154 SETERRNO(EBADF,RMS_IFI);
2163 const unsigned int func = POPu;
2164 const int optype = PL_op->op_type;
2168 IO *io = gv ? GvIOn(gv) : 0;
2170 if (!io || !argsv || !IoIFP(io)) {
2171 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2172 report_evil_fh(gv, io, PL_op->op_type);
2173 SETERRNO(EBADF,RMS_IFI); /* well, sort of... */
2177 if (SvPOK(argsv) || !SvNIOK(argsv)) {
2180 s = SvPV_force(argsv, len);
2181 need = IOCPARM_LEN(func);
2183 s = Sv_Grow(argsv, need + 1);
2184 SvCUR_set(argsv, need);
2187 s[SvCUR(argsv)] = 17; /* a little sanity check here */
2190 retval = SvIV(argsv);
2191 s = INT2PTR(char*,retval); /* ouch */
2194 TAINT_PROPER(optype == OP_IOCTL ? "ioctl" : "fcntl");
2196 if (optype == OP_IOCTL)
2198 retval = PerlLIO_ioctl(PerlIO_fileno(IoIFP(io)), func, s);
2200 DIE(aTHX_ "ioctl is not implemented");
2204 DIE(aTHX_ "fcntl is not implemented");
2206 #if defined(OS2) && defined(__EMX__)
2207 retval = fcntl(PerlIO_fileno(IoIFP(io)), func, (int)s);
2209 retval = fcntl(PerlIO_fileno(IoIFP(io)), func, s);
2213 #if defined(HAS_IOCTL) || defined(HAS_FCNTL)
2215 if (s[SvCUR(argsv)] != 17)
2216 DIE(aTHX_ "Possible memory corruption: %s overflowed 3rd argument",
2218 s[SvCUR(argsv)] = 0; /* put our null back */
2219 SvSETMAGIC(argsv); /* Assume it has changed */
2228 PUSHp(zero_but_true, ZBTLEN);
2249 if (gv && (io = GvIO(gv)))
2256 (void)PerlIO_flush(fp);
2257 value = (I32)(PerlLIO_flock(PerlIO_fileno(fp), argtype) >= 0);
2260 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2261 report_evil_fh(gv, io, PL_op->op_type);
2263 SETERRNO(EBADF,RMS_IFI);
2268 DIE(aTHX_ PL_no_func, "flock()");
2280 int protocol = POPi;
2286 io = gv ? GvIOn(gv) : NULL;
2289 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2290 report_evil_fh(gv, io, PL_op->op_type);
2292 do_close(gv, FALSE);
2293 SETERRNO(EBADF,LIB_INVARG);
2298 do_close(gv, FALSE);
2300 TAINT_PROPER("socket");
2301 fd = PerlSock_socket(domain, type, protocol);
2304 IoIFP(io) = PerlIO_fdopen(fd, "r"SOCKET_OPEN_MODE); /* stdio gets confused about sockets */
2305 IoOFP(io) = PerlIO_fdopen(fd, "w"SOCKET_OPEN_MODE);
2306 IoTYPE(io) = IoTYPE_SOCKET;
2307 if (!IoIFP(io) || !IoOFP(io)) {
2308 if (IoIFP(io)) PerlIO_close(IoIFP(io));
2309 if (IoOFP(io)) PerlIO_close(IoOFP(io));
2310 if (!IoIFP(io) && !IoOFP(io)) PerlLIO_close(fd);
2313 #if defined(HAS_FCNTL) && defined(F_SETFD)
2314 fcntl(fd, F_SETFD, fd > PL_maxsysfd); /* ensure close-on-exec */
2318 setbuf( IoIFP(io), NULL); /* EPOC gets confused about sockets */
2323 DIE(aTHX_ PL_no_sock_func, "socket");
2329 #if defined (HAS_SOCKETPAIR) || (defined (HAS_SOCKET) && defined(SOCK_DGRAM) && defined(AF_INET) && defined(PF_INET))
2335 int protocol = POPi;
2342 io1 = gv1 ? GvIOn(gv1) : NULL;
2343 io2 = gv2 ? GvIOn(gv2) : NULL;
2344 if (!gv1 || !gv2 || !io1 || !io2) {
2345 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) {
2347 report_evil_fh(gv1, io1, PL_op->op_type);
2349 report_evil_fh(gv1, io2, PL_op->op_type);
2352 do_close(gv1, FALSE);
2354 do_close(gv2, FALSE);
2359 do_close(gv1, FALSE);
2361 do_close(gv2, FALSE);
2363 TAINT_PROPER("socketpair");
2364 if (PerlSock_socketpair(domain, type, protocol, fd) < 0)
2366 IoIFP(io1) = PerlIO_fdopen(fd[0], "r"SOCKET_OPEN_MODE);
2367 IoOFP(io1) = PerlIO_fdopen(fd[0], "w"SOCKET_OPEN_MODE);
2368 IoTYPE(io1) = IoTYPE_SOCKET;
2369 IoIFP(io2) = PerlIO_fdopen(fd[1], "r"SOCKET_OPEN_MODE);
2370 IoOFP(io2) = PerlIO_fdopen(fd[1], "w"SOCKET_OPEN_MODE);
2371 IoTYPE(io2) = IoTYPE_SOCKET;
2372 if (!IoIFP(io1) || !IoOFP(io1) || !IoIFP(io2) || !IoOFP(io2)) {
2373 if (IoIFP(io1)) PerlIO_close(IoIFP(io1));
2374 if (IoOFP(io1)) PerlIO_close(IoOFP(io1));
2375 if (!IoIFP(io1) && !IoOFP(io1)) PerlLIO_close(fd[0]);
2376 if (IoIFP(io2)) PerlIO_close(IoIFP(io2));
2377 if (IoOFP(io2)) PerlIO_close(IoOFP(io2));
2378 if (!IoIFP(io2) && !IoOFP(io2)) PerlLIO_close(fd[1]);
2381 #if defined(HAS_FCNTL) && defined(F_SETFD)
2382 fcntl(fd[0],F_SETFD,fd[0] > PL_maxsysfd); /* ensure close-on-exec */
2383 fcntl(fd[1],F_SETFD,fd[1] > PL_maxsysfd); /* ensure close-on-exec */
2388 DIE(aTHX_ PL_no_sock_func, "socketpair");
2396 #ifdef MPE /* Requires PRIV mode to bind() to ports < 1024 */
2397 extern void GETPRIVMODE();
2398 extern void GETUSERMODE();
2401 /* OK, so on what platform does bind modify addr? */
2404 register IO *io = GvIOn(gv);
2408 int mpeprivmode = 0;
2411 if (!io || !IoIFP(io))
2414 addr = SvPV_const(addrsv, len);
2415 TAINT_PROPER("bind");
2416 #ifdef MPE /* Deal with MPE bind() peculiarities */
2417 if (((struct sockaddr *)addr)->sa_family == AF_INET) {
2418 /* The address *MUST* stupidly be zero. */
2419 ((struct sockaddr_in *)addr)->sin_addr.s_addr = INADDR_ANY;
2420 /* PRIV mode is required to bind() to ports < 1024. */
2421 if (((struct sockaddr_in *)addr)->sin_port < 1024 &&
2422 ((struct sockaddr_in *)addr)->sin_port > 0) {
2423 GETPRIVMODE(); /* If this fails, we are aborted by MPE/iX. */
2428 if (PerlSock_bind(PerlIO_fileno(IoIFP(io)),
2429 (struct sockaddr *)addr, len) >= 0)
2432 #ifdef MPE /* Switch back to USER mode */
2443 if (ckWARN(WARN_CLOSED))
2444 report_evil_fh(gv, io, PL_op->op_type);
2445 SETERRNO(EBADF,SS_IVCHAN);
2448 DIE(aTHX_ PL_no_sock_func, "bind");
2459 register IO *io = GvIOn(gv);
2462 if (!io || !IoIFP(io))
2465 addr = SvPV_const(addrsv, len);
2466 TAINT_PROPER("connect");
2467 if (PerlSock_connect(PerlIO_fileno(IoIFP(io)), (struct sockaddr *)addr, len) >= 0)
2473 if (ckWARN(WARN_CLOSED))
2474 report_evil_fh(gv, io, PL_op->op_type);
2475 SETERRNO(EBADF,SS_IVCHAN);
2478 DIE(aTHX_ PL_no_sock_func, "connect");
2488 register IO *io = gv ? GvIOn(gv) : NULL;
2490 if (!gv || !io || !IoIFP(io))
2493 if (PerlSock_listen(PerlIO_fileno(IoIFP(io)), backlog) >= 0)
2499 if (ckWARN(WARN_CLOSED))
2500 report_evil_fh(gv, io, PL_op->op_type);
2501 SETERRNO(EBADF,SS_IVCHAN);
2504 DIE(aTHX_ PL_no_sock_func, "listen");
2516 char namebuf[MAXPATHLEN];
2517 #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) || defined(__QNXNTO__)
2518 Sock_size_t len = sizeof (struct sockaddr_in);
2520 Sock_size_t len = sizeof namebuf;
2533 if (!gstio || !IoIFP(gstio))
2537 fd = PerlSock_accept(PerlIO_fileno(IoIFP(gstio)), (struct sockaddr *) namebuf, &len);
2541 do_close(ngv, FALSE);
2542 IoIFP(nstio) = PerlIO_fdopen(fd, "r"SOCKET_OPEN_MODE);
2543 IoOFP(nstio) = PerlIO_fdopen(fd, "w"SOCKET_OPEN_MODE);
2544 IoTYPE(nstio) = IoTYPE_SOCKET;
2545 if (!IoIFP(nstio) || !IoOFP(nstio)) {
2546 if (IoIFP(nstio)) PerlIO_close(IoIFP(nstio));
2547 if (IoOFP(nstio)) PerlIO_close(IoOFP(nstio));
2548 if (!IoIFP(nstio) && !IoOFP(nstio)) PerlLIO_close(fd);
2551 #if defined(HAS_FCNTL) && defined(F_SETFD)
2552 fcntl(fd, F_SETFD, fd > PL_maxsysfd); /* ensure close-on-exec */
2556 len = sizeof (struct sockaddr_in); /* EPOC somehow truncates info */
2557 setbuf( IoIFP(nstio), NULL); /* EPOC gets confused about sockets */
2559 #ifdef __SCO_VERSION__
2560 len = sizeof (struct sockaddr_in); /* OpenUNIX 8 somehow truncates info */
2563 PUSHp(namebuf, len);
2567 if (ckWARN(WARN_CLOSED))
2568 report_evil_fh(ggv, ggv ? GvIO(ggv) : 0, PL_op->op_type);
2569 SETERRNO(EBADF,SS_IVCHAN);
2575 DIE(aTHX_ PL_no_sock_func, "accept");
2585 register IO *io = GvIOn(gv);
2587 if (!io || !IoIFP(io))
2590 PUSHi( PerlSock_shutdown(PerlIO_fileno(IoIFP(io)), how) >= 0 );
2594 if (ckWARN(WARN_CLOSED))
2595 report_evil_fh(gv, io, PL_op->op_type);
2596 SETERRNO(EBADF,SS_IVCHAN);
2599 DIE(aTHX_ PL_no_sock_func, "shutdown");
2607 int optype = PL_op->op_type;
2610 unsigned int optname;
2616 if (optype == OP_GSOCKOPT)
2617 sv = sv_2mortal(NEWSV(22, 257));
2620 optname = (unsigned int) POPi;
2621 lvl = (unsigned int) POPi;
2625 if (!io || !IoIFP(io))
2628 fd = PerlIO_fileno(IoIFP(io));
2632 (void)SvPOK_only(sv);
2636 if (PerlSock_getsockopt(fd, lvl, optname, SvPVX(sv), &len) < 0)
2643 #if defined(__SYMBIAN32__)
2644 # define SETSOCKOPT_OPTION_VALUE_T void *
2646 # define SETSOCKOPT_OPTION_VALUE_T const char *
2648 /* XXX TODO: We need to have a proper type (a Configure probe,
2649 * etc.) for what the C headers think of the third argument of
2650 * setsockopt(), the option_value read-only buffer: is it
2651 * a "char *", or a "void *", const or not. Some compilers
2652 * don't take kindly to e.g. assuming that "char *" implicitly
2653 * promotes to a "void *", or to explicitly promoting/demoting
2654 * consts to non/vice versa. The "const void *" is the SUS
2655 * definition, but that does not fly everywhere for the above
2657 SETSOCKOPT_OPTION_VALUE_T buf;
2661 buf = (SETSOCKOPT_OPTION_VALUE_T) SvPV_const(sv, l);
2665 aint = (int)SvIV(sv);
2666 buf = (SETSOCKOPT_OPTION_VALUE_T) &aint;
2669 if (PerlSock_setsockopt(fd, lvl, optname, buf, len) < 0)
2678 if (ckWARN(WARN_CLOSED))
2679 report_evil_fh(gv, io, optype);
2680 SETERRNO(EBADF,SS_IVCHAN);
2685 DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
2693 int optype = PL_op->op_type;
2697 register IO *io = GvIOn(gv);
2700 if (!io || !IoIFP(io))
2703 sv = sv_2mortal(NEWSV(22, 257));
2704 (void)SvPOK_only(sv);
2708 fd = PerlIO_fileno(IoIFP(io));
2710 case OP_GETSOCKNAME:
2711 if (PerlSock_getsockname(fd, (struct sockaddr *)SvPVX(sv), &len) < 0)
2714 case OP_GETPEERNAME:
2715 if (PerlSock_getpeername(fd, (struct sockaddr *)SvPVX(sv), &len) < 0)
2717 #if defined(VMS_DO_SOCKETS) && defined (DECCRTL_SOCKETS)
2719 static const char nowhere[] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
2720 /* If the call succeeded, make sure we don't have a zeroed port/addr */
2721 if (((struct sockaddr *)SvPVX_const(sv))->sa_family == AF_INET &&
2722 !memcmp(SvPVX_const(sv) + sizeof(u_short), nowhere,
2723 sizeof(u_short) + sizeof(struct in_addr))) {
2730 #ifdef BOGUS_GETNAME_RETURN
2731 /* Interactive Unix, getpeername() and getsockname()
2732 does not return valid namelen */
2733 if (len == BOGUS_GETNAME_RETURN)
2734 len = sizeof(struct sockaddr);
2742 if (ckWARN(WARN_CLOSED))
2743 report_evil_fh(gv, io, optype);
2744 SETERRNO(EBADF,SS_IVCHAN);
2749 DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
2762 if (PL_op->op_flags & OPf_REF) {
2764 if (PL_op->op_type == OP_LSTAT) {
2765 if (gv != PL_defgv) {
2766 if (ckWARN(WARN_IO))
2767 Perl_warner(aTHX_ packWARN(WARN_IO),
2768 "lstat() on filehandle %s", GvENAME(gv));
2769 } else if (PL_laststype != OP_LSTAT)
2770 Perl_croak(aTHX_ "The stat preceding lstat() wasn't an lstat");
2774 if (gv != PL_defgv) {
2775 PL_laststype = OP_STAT;
2777 sv_setpvn(PL_statname, "", 0);
2778 PL_laststatval = (GvIO(gv) && IoIFP(GvIOp(gv))
2779 ? PerlLIO_fstat(PerlIO_fileno(IoIFP(GvIOn(gv))), &PL_statcache) : -1);
2781 if (PL_laststatval < 0) {
2782 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2783 report_evil_fh(gv, GvIO(gv), PL_op->op_type);
2789 if (SvTYPE(sv) == SVt_PVGV) {
2793 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
2795 if (PL_op->op_type == OP_LSTAT && ckWARN(WARN_IO))
2796 Perl_warner(aTHX_ packWARN(WARN_IO),
2797 "lstat() on filehandle %s", GvENAME(gv));
2800 sv_setpv(PL_statname, SvPV_nolen_const(sv));
2802 PL_laststype = PL_op->op_type;
2803 if (PL_op->op_type == OP_LSTAT)
2804 PL_laststatval = PerlLIO_lstat(SvPV_nolen_const(PL_statname), &PL_statcache);
2806 PL_laststatval = PerlLIO_stat(SvPV_nolen_const(PL_statname), &PL_statcache);
2807 if (PL_laststatval < 0) {
2808 if (ckWARN(WARN_NEWLINE) && strchr(SvPV_nolen_const(PL_statname), '\n'))
2809 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
2815 if (gimme != G_ARRAY) {
2816 if (gimme != G_VOID)
2817 XPUSHs(boolSV(max));
2823 PUSHs(sv_2mortal(newSViv(PL_statcache.st_dev)));
2824 PUSHs(sv_2mortal(newSViv(PL_statcache.st_ino)));
2825 PUSHs(sv_2mortal(newSVuv(PL_statcache.st_mode)));
2826 PUSHs(sv_2mortal(newSVuv(PL_statcache.st_nlink)));
2827 #if Uid_t_size > IVSIZE
2828 PUSHs(sv_2mortal(newSVnv(PL_statcache.st_uid)));
2830 # if Uid_t_sign <= 0
2831 PUSHs(sv_2mortal(newSViv(PL_statcache.st_uid)));
2833 PUSHs(sv_2mortal(newSVuv(PL_statcache.st_uid)));
2836 #if Gid_t_size > IVSIZE
2837 PUSHs(sv_2mortal(newSVnv(PL_statcache.st_gid)));
2839 # if Gid_t_sign <= 0
2840 PUSHs(sv_2mortal(newSViv(PL_statcache.st_gid)));
2842 PUSHs(sv_2mortal(newSVuv(PL_statcache.st_gid)));
2845 #ifdef USE_STAT_RDEV
2846 PUSHs(sv_2mortal(newSViv(PL_statcache.st_rdev)));
2848 PUSHs(sv_2mortal(newSVpvn("", 0)));
2850 #if Off_t_size > IVSIZE
2851 PUSHs(sv_2mortal(newSVnv((NV)PL_statcache.st_size)));
2853 PUSHs(sv_2mortal(newSViv(PL_statcache.st_size)));
2856 PUSHs(sv_2mortal(newSVnv(PL_statcache.st_atime)));
2857 PUSHs(sv_2mortal(newSVnv(PL_statcache.st_mtime)));
2858 PUSHs(sv_2mortal(newSVnv(PL_statcache.st_ctime)));
2860 PUSHs(sv_2mortal(newSViv(PL_statcache.st_atime)));
2861 PUSHs(sv_2mortal(newSViv(PL_statcache.st_mtime)));
2862 PUSHs(sv_2mortal(newSViv(PL_statcache.st_ctime)));
2864 #ifdef USE_STAT_BLOCKS
2865 PUSHs(sv_2mortal(newSVuv(PL_statcache.st_blksize)));
2866 PUSHs(sv_2mortal(newSVuv(PL_statcache.st_blocks)));
2868 PUSHs(sv_2mortal(newSVpvn("", 0)));
2869 PUSHs(sv_2mortal(newSVpvn("", 0)));
2875 /* This macro is used by the stacked filetest operators :
2876 * if the previous filetest failed, short-circuit and pass its value.
2877 * Else, discard it from the stack and continue. --rgs
2879 #define STACKED_FTEST_CHECK if (PL_op->op_private & OPpFT_STACKED) { \
2880 if (TOPs == &PL_sv_no || TOPs == &PL_sv_undef) { RETURN; } \
2881 else { (void)POPs; PUTBACK; } \
2888 STACKED_FTEST_CHECK;
2889 #if defined(HAS_ACCESS) && defined(R_OK)
2890 if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
2891 result = access(POPpx, R_OK);
2906 if (cando(S_IRUSR, 0, &PL_statcache))
2915 STACKED_FTEST_CHECK;
2916 #if defined(HAS_ACCESS) && defined(W_OK)
2917 if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
2918 result = access(POPpx, W_OK);
2933 if (cando(S_IWUSR, 0, &PL_statcache))
2942 STACKED_FTEST_CHECK;
2943 #if defined(HAS_ACCESS) && defined(X_OK)
2944 if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
2945 result = access(POPpx, X_OK);
2960 if (cando(S_IXUSR, 0, &PL_statcache))
2969 STACKED_FTEST_CHECK;
2970 #ifdef PERL_EFF_ACCESS_R_OK
2971 if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
2972 result = PERL_EFF_ACCESS_R_OK(POPpx);
2987 if (cando(S_IRUSR, 1, &PL_statcache))
2996 STACKED_FTEST_CHECK;
2997 #ifdef PERL_EFF_ACCESS_W_OK
2998 if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
2999 result = PERL_EFF_ACCESS_W_OK(POPpx);
3014 if (cando(S_IWUSR, 1, &PL_statcache))
3023 STACKED_FTEST_CHECK;
3024 #ifdef PERL_EFF_ACCESS_X_OK
3025 if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
3026 result = PERL_EFF_ACCESS_X_OK(POPpx);
3041 if (cando(S_IXUSR, 1, &PL_statcache))
3049 const int op_type = PL_op->op_type;
3051 STACKED_FTEST_CHECK;
3056 if (op_type == OP_FTIS)
3059 /* You can't dTARGET inside OP_FTIS, because you'll get
3060 "panic: pad_sv po" - the op is not flagged to have a target. */
3064 #if Off_t_size > IVSIZE
3065 PUSHn(PL_statcache.st_size);
3067 PUSHi(PL_statcache.st_size);
3071 PUSHn( (((NV)PL_basetime - PL_statcache.st_mtime)) / 86400.0 );
3074 PUSHn( (((NV)PL_basetime - PL_statcache.st_atime)) / 86400.0 );
3077 PUSHn( (((NV)PL_basetime - PL_statcache.st_ctime)) / 86400.0 );
3089 /* I believe that all these three are likely to be defined on most every
3090 system these days. */
3092 if(PL_op->op_type == OP_FTSUID)
3096 if(PL_op->op_type == OP_FTSGID)
3100 if(PL_op->op_type == OP_FTSVTX)
3104 STACKED_FTEST_CHECK;
3109 switch (PL_op->op_type) {
3111 if (PL_statcache.st_uid == PL_uid);
3115 if (PL_statcache.st_uid == PL_euid)
3119 if (PL_statcache.st_size == 0)
3123 if (S_ISSOCK(PL_statcache.st_mode))
3127 if (S_ISCHR(PL_statcache.st_mode))
3131 if (S_ISBLK(PL_statcache.st_mode))
3135 if (S_ISREG(PL_statcache.st_mode))
3139 if (S_ISDIR(PL_statcache.st_mode))
3143 if (S_ISFIFO(PL_statcache.st_mode))
3148 if (PL_statcache.st_mode & S_ISUID)
3154 if (PL_statcache.st_mode & S_ISGID)
3160 if (PL_statcache.st_mode & S_ISVTX)
3170 I32 result = my_lstat();
3174 if (S_ISLNK(PL_statcache.st_mode))
3186 STACKED_FTEST_CHECK;
3188 if (PL_op->op_flags & OPf_REF)
3190 else if (isGV(TOPs))
3192 else if (SvROK(TOPs) && isGV(SvRV(TOPs)))
3193 gv = (GV*)SvRV(POPs);
3195 gv = gv_fetchsv(tmpsv = POPs, FALSE, SVt_PVIO);
3197 if (GvIO(gv) && IoIFP(GvIOp(gv)))
3198 fd = PerlIO_fileno(IoIFP(GvIOp(gv)));
3199 else if (tmpsv && SvOK(tmpsv)) {
3200 const char *tmps = SvPV_nolen_const(tmpsv);
3208 if (PerlLIO_isatty(fd))
3213 #if defined(atarist) /* this will work with atariST. Configure will
3214 make guesses for other systems. */
3215 # define FILE_base(f) ((f)->_base)
3216 # define FILE_ptr(f) ((f)->_ptr)
3217 # define FILE_cnt(f) ((f)->_cnt)
3218 # define FILE_bufsiz(f) ((f)->_cnt + ((f)->_ptr - (f)->_base))
3228 register STDCHAR *s;
3234 STACKED_FTEST_CHECK;
3236 if (PL_op->op_flags & OPf_REF)
3238 else if (isGV(TOPs))
3240 else if (SvROK(TOPs) && isGV(SvRV(TOPs)))
3241 gv = (GV*)SvRV(POPs);
3247 if (gv == PL_defgv) {
3249 io = GvIO(PL_statgv);
3252 goto really_filename;
3257 PL_laststatval = -1;
3258 sv_setpvn(PL_statname, "", 0);
3259 io = GvIO(PL_statgv);
3261 if (io && IoIFP(io)) {
3262 if (! PerlIO_has_base(IoIFP(io)))
3263 DIE(aTHX_ "-T and -B not implemented on filehandles");
3264 PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache);
3265 if (PL_laststatval < 0)
3267 if (S_ISDIR(PL_statcache.st_mode)) { /* handle NFS glitch */
3268 if (PL_op->op_type == OP_FTTEXT)
3273 if (PerlIO_get_cnt(IoIFP(io)) <= 0) {
3274 i = PerlIO_getc(IoIFP(io));
3276 (void)PerlIO_ungetc(IoIFP(io),i);
3278 if (PerlIO_get_cnt(IoIFP(io)) <= 0) /* null file is anything */
3280 len = PerlIO_get_bufsiz(IoIFP(io));
3281 s = (STDCHAR *) PerlIO_get_base(IoIFP(io));
3282 /* sfio can have large buffers - limit to 512 */
3287 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) {
3289 report_evil_fh(gv, GvIO(gv), PL_op->op_type);
3291 SETERRNO(EBADF,RMS_IFI);
3299 PL_laststype = OP_STAT;
3300 sv_setpv(PL_statname, SvPV_nolen_const(sv));
3301 if (!(fp = PerlIO_open(SvPVX_const(PL_statname), "r"))) {
3302 if (ckWARN(WARN_NEWLINE) && strchr(SvPV_nolen_const(PL_statname),
3304 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
3307 PL_laststatval = PerlLIO_fstat(PerlIO_fileno(fp), &PL_statcache);
3308 if (PL_laststatval < 0) {
3309 (void)PerlIO_close(fp);
3312 PerlIO_binmode(aTHX_ fp, '<', O_BINARY, Nullch);
3313 len = PerlIO_read(fp, tbuf, sizeof(tbuf));
3314 (void)PerlIO_close(fp);
3316 if (S_ISDIR(PL_statcache.st_mode) && PL_op->op_type == OP_FTTEXT)
3317 RETPUSHNO; /* special case NFS directories */
3318 RETPUSHYES; /* null file is anything */
3323 /* now scan s to look for textiness */
3324 /* XXX ASCII dependent code */
3326 #if defined(DOSISH) || defined(USEMYBINMODE)
3327 /* ignore trailing ^Z on short files */
3328 if (len && len < sizeof(tbuf) && tbuf[len-1] == 26)
3332 for (i = 0; i < len; i++, s++) {
3333 if (!*s) { /* null never allowed in text */
3338 else if (!(isPRINT(*s) || isSPACE(*s)))
3341 else if (*s & 128) {
3343 if (IN_LOCALE_RUNTIME && isALPHA_LC(*s))
3346 /* utf8 characters don't count as odd */
3347 if (UTF8_IS_START(*s)) {
3348 int ulen = UTF8SKIP(s);
3349 if (ulen < len - i) {
3351 for (j = 1; j < ulen; j++) {
3352 if (!UTF8_IS_CONTINUATION(s[j]))
3355 --ulen; /* loop does extra increment */
3365 *s != '\n' && *s != '\r' && *s != '\b' &&
3366 *s != '\t' && *s != '\f' && *s != 27)
3371 if ((odd * 3 > len) == (PL_op->op_type == OP_FTTEXT)) /* allow 1/3 odd */
3382 const char *tmps = 0;
3386 SV * const sv = POPs;
3387 if (SvTYPE(sv) == SVt_PVGV) {
3390 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
3394 tmps = SvPVx_nolen_const(sv);
3398 if( !gv && (!tmps || !*tmps) ) {
3399 HV * const table = GvHVn(PL_envgv);
3402 if ( (svp = hv_fetch(table, "HOME", 4, FALSE))
3403 || (svp = hv_fetch(table, "LOGDIR", 6, FALSE))
3405 || (svp = hv_fetch(table, "SYS$LOGIN", 9, FALSE))
3410 deprecate("chdir('') or chdir(undef) as chdir()");
3411 tmps = SvPV_nolen_const(*svp);
3415 TAINT_PROPER("chdir");
3420 TAINT_PROPER("chdir");
3423 IO* const io = GvIO(gv);
3426 PUSHi(fchdir(PerlIO_fileno(IoIFP(io))) >= 0);
3428 else if (IoDIRP(io)) {
3430 PUSHi(fchdir(dirfd(IoDIRP(io))) >= 0);
3432 DIE(aTHX_ PL_no_func, "dirfd");
3443 DIE(aTHX_ PL_no_func, "fchdir");
3447 PUSHi( PerlDir_chdir(tmps) >= 0 );
3449 /* Clear the DEFAULT element of ENV so we'll get the new value
3451 hv_delete(GvHVn(PL_envgv),"DEFAULT",7,G_DISCARD);
3458 dSP; dMARK; dTARGET;
3459 const I32 value = (I32)apply(PL_op->op_type, MARK, SP);
3471 TAINT_PROPER("chroot");
3472 PUSHi( chroot(tmps) >= 0 );
3475 DIE(aTHX_ PL_no_func, "chroot");
3483 const char *tmps2 = POPpconstx;
3484 const char *tmps = SvPV_nolen_const(TOPs);
3485 TAINT_PROPER("rename");
3487 anum = PerlLIO_rename(tmps, tmps2);
3489 if (!(anum = PerlLIO_stat(tmps, &PL_statbuf))) {
3490 if (same_dirent(tmps2, tmps)) /* can always rename to same name */
3493 if (PL_euid || PerlLIO_stat(tmps2, &PL_statbuf) < 0 || !S_ISDIR(PL_statbuf.st_mode))
3494 (void)UNLINK(tmps2);
3495 if (!(anum = link(tmps, tmps2)))
3496 anum = UNLINK(tmps);
3508 const char *tmps2 = POPpconstx;
3509 const char *tmps = SvPV_nolen_const(TOPs);
3510 TAINT_PROPER("link");
3511 SETi( PerlLIO_link(tmps, tmps2) >= 0 );
3514 DIE(aTHX_ PL_no_func, "link");
3522 const char *tmps2 = POPpconstx;
3523 const char *tmps = SvPV_nolen_const(TOPs);
3524 TAINT_PROPER("symlink");
3525 SETi( symlink(tmps, tmps2) >= 0 );
3528 DIE(aTHX_ PL_no_func, "symlink");
3538 char buf[MAXPATHLEN];
3541 #ifndef INCOMPLETE_TAINTS
3545 len = readlink(tmps, buf, sizeof(buf) - 1);
3553 RETSETUNDEF; /* just pretend it's a normal file */
3557 #if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
3559 S_dooneliner(pTHX_ const char *cmd, const char *filename)
3561 char * const save_filename = filename;
3567 Newx(cmdline, strlen(cmd) + (strlen(filename) * 2) + 10, char);
3568 strcpy(cmdline, cmd);
3569 strcat(cmdline, " ");
3570 for (s = cmdline + strlen(cmdline); *filename; ) {
3575 myfp = PerlProc_popen(cmdline, "r");
3579 SV *tmpsv = sv_newmortal();
3580 /* Need to save/restore 'PL_rs' ?? */
3581 s = sv_gets(tmpsv, myfp, 0);
3582 (void)PerlProc_pclose(myfp);
3586 #ifdef HAS_SYS_ERRLIST
3591 /* you don't see this */
3593 #ifdef HAS_SYS_ERRLIST
3601 if (instr(s, errmsg)) {
3608 #define EACCES EPERM
3610 if (instr(s, "cannot make"))
3611 SETERRNO(EEXIST,RMS_FEX);
3612 else if (instr(s, "existing file"))
3613 SETERRNO(EEXIST,RMS_FEX);
3614 else if (instr(s, "ile exists"))
3615 SETERRNO(EEXIST,RMS_FEX);
3616 else if (instr(s, "non-exist"))
3617 SETERRNO(ENOENT,RMS_FNF);
3618 else if (instr(s, "does not exist"))
3619 SETERRNO(ENOENT,RMS_FNF);
3620 else if (instr(s, "not empty"))
3621 SETERRNO(EBUSY,SS_DEVOFFLINE);
3622 else if (instr(s, "cannot access"))
3623 SETERRNO(EACCES,RMS_PRV);
3625 SETERRNO(EPERM,RMS_PRV);
3628 else { /* some mkdirs return no failure indication */
3629 anum = (PerlLIO_stat(save_filename, &PL_statbuf) >= 0);
3630 if (PL_op->op_type == OP_RMDIR)
3635 SETERRNO(EACCES,RMS_PRV); /* a guess */
3644 /* This macro removes trailing slashes from a directory name.
3645 * Different operating and file systems take differently to
3646 * trailing slashes. According to POSIX 1003.1 1996 Edition
3647 * any number of trailing slashes should be allowed.
3648 * Thusly we snip them away so that even non-conforming
3649 * systems are happy.
3650 * We should probably do this "filtering" for all
3651 * the functions that expect (potentially) directory names:
3652 * -d, chdir(), chmod(), chown(), chroot(), fcntl()?,
3653 * (mkdir()), opendir(), rename(), rmdir(), stat(). --jhi */
3655 #define TRIMSLASHES(tmps,len,copy) (tmps) = SvPV_const(TOPs, (len)); \
3656 if ((len) > 1 && (tmps)[(len)-1] == '/') { \
3659 } while ((len) > 1 && (tmps)[(len)-1] == '/'); \
3660 (tmps) = savepvn((tmps), (len)); \
3680 TRIMSLASHES(tmps,len,copy);
3682 TAINT_PROPER("mkdir");
3684 SETi( PerlDir_mkdir(tmps, mode) >= 0 );
3686 SETi( dooneliner("mkdir", tmps) );
3687 oldumask = PerlLIO_umask(0);
3688 PerlLIO_umask(oldumask);
3689 PerlLIO_chmod(tmps, (mode & ~oldumask) & 0777);
3703 TRIMSLASHES(tmps,len,copy);
3704 TAINT_PROPER("rmdir");
3706 SETi( PerlDir_rmdir(tmps) >= 0 );
3708 SETi( dooneliner("rmdir", tmps) );
3715 /* Directory calls. */
3719 #if defined(Direntry_t) && defined(HAS_READDIR)
3721 const char *dirname = POPpconstx;
3723 register IO *io = GvIOn(gv);
3729 PerlDir_close(IoDIRP(io));
3730 if (!(IoDIRP(io) = PerlDir_open(dirname)))
3736 SETERRNO(EBADF,RMS_DIR);
3739 DIE(aTHX_ PL_no_dir_func, "opendir");
3745 #if !defined(Direntry_t) || !defined(HAS_READDIR)
3746 DIE(aTHX_ PL_no_dir_func, "readdir");
3748 #if !defined(I_DIRENT) && !defined(VMS)
3749 Direntry_t *readdir (DIR *);
3754 const I32 gimme = GIMME;
3755 GV *gv = (GV *)POPs;
3756 register Direntry_t *dp;
3757 register IO *io = GvIOn(gv);
3759 if (!io || !IoDIRP(io))
3763 dp = (Direntry_t *)PerlDir_read(IoDIRP(io));
3767 sv = newSVpvn(dp->d_name, dp->d_namlen);
3769 sv = newSVpv(dp->d_name, 0);
3771 #ifndef INCOMPLETE_TAINTS
3772 if (!(IoFLAGS(io) & IOf_UNTAINT))
3775 XPUSHs(sv_2mortal(sv));
3777 while (gimme == G_ARRAY);
3779 if (!dp && gimme != G_ARRAY)
3786 SETERRNO(EBADF,RMS_ISI);
3787 if (GIMME == G_ARRAY)
3796 #if defined(HAS_TELLDIR) || defined(telldir)
3798 /* XXX does _anyone_ need this? --AD 2/20/1998 */
3799 /* XXX netbsd still seemed to.
3800 XXX HAS_TELLDIR_PROTO is new style, NEED_TELLDIR_PROTO is old style.
3801 --JHI 1999-Feb-02 */
3802 # if !defined(HAS_TELLDIR_PROTO) || defined(NEED_TELLDIR_PROTO)
3803 long telldir (DIR *);
3806 register IO *io = GvIOn(gv);
3808 if (!io || !IoDIRP(io))
3811 PUSHi( PerlDir_tell(IoDIRP(io)) );
3815 SETERRNO(EBADF,RMS_ISI);
3818 DIE(aTHX_ PL_no_dir_func, "telldir");
3824 #if defined(HAS_SEEKDIR) || defined(seekdir)
3828 register IO *io = GvIOn(gv);
3830 if (!io || !IoDIRP(io))
3833 (void)PerlDir_seek(IoDIRP(io), along);
3838 SETERRNO(EBADF,RMS_ISI);
3841 DIE(aTHX_ PL_no_dir_func, "seekdir");
3847 #if defined(HAS_REWINDDIR) || defined(rewinddir)
3850 register IO *io = GvIOn(gv);
3852 if (!io || !IoDIRP(io))
3855 (void)PerlDir_rewind(IoDIRP(io));
3859 SETERRNO(EBADF,RMS_ISI);
3862 DIE(aTHX_ PL_no_dir_func, "rewinddir");
3868 #if defined(Direntry_t) && defined(HAS_READDIR)
3871 register IO *io = GvIOn(gv);
3873 if (!io || !IoDIRP(io))
3876 #ifdef VOID_CLOSEDIR
3877 PerlDir_close(IoDIRP(io));
3879 if (PerlDir_close(IoDIRP(io)) < 0) {
3880 IoDIRP(io) = 0; /* Don't try to close again--coredumps on SysV */
3889 SETERRNO(EBADF,RMS_IFI);
3892 DIE(aTHX_ PL_no_dir_func, "closedir");
3896 /* Process control. */
3906 PERL_FLUSHALL_FOR_CHILD;
3907 childpid = PerlProc_fork();
3911 if ((tmpgv = gv_fetchpv("$", TRUE, SVt_PV))) {
3912 SvREADONLY_off(GvSV(tmpgv));
3913 sv_setiv(GvSV(tmpgv), (IV)PerlProc_getpid());
3914 SvREADONLY_on(GvSV(tmpgv));
3916 #ifdef THREADS_HAVE_PIDS
3917 PL_ppid = (IV)getppid();
3919 #ifdef PERL_USES_PL_PIDSTATUS
3920 hv_clear(PL_pidstatus); /* no kids, so don't wait for 'em */
3926 # if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
3931 PERL_FLUSHALL_FOR_CHILD;
3932 childpid = PerlProc_fork();
3938 DIE(aTHX_ PL_no_func, "fork");
3945 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
3950 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
3951 childpid = wait4pid(-1, &argflags, 0);
3953 while ((childpid = wait4pid(-1, &argflags, 0)) == -1 &&
3958 # if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
3959 /* 0 and -1 are both error returns (the former applies to WNOHANG case) */
3960 STATUS_NATIVE_CHILD_SET((childpid && childpid != -1) ? argflags : -1);
3962 STATUS_NATIVE_CHILD_SET((childpid > 0) ? argflags : -1);
3967 DIE(aTHX_ PL_no_func, "wait");
3973 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
3982 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
3983 result = wait4pid(pid, &argflags, optype);
3985 while ((result = wait4pid(pid, &argflags, optype)) == -1 &&
3990 # if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
3991 /* 0 and -1 are both error returns (the former applies to WNOHANG case) */
3992 STATUS_NATIVE_CHILD_SET((result && result != -1) ? argflags : -1);
3994 STATUS_NATIVE_CHILD_SET((result > 0) ? argflags : -1);
3999 DIE(aTHX_ PL_no_func, "waitpid");
4005 dSP; dMARK; dORIGMARK; dTARGET;
4011 while (++MARK <= SP) {
4012 (void)SvPV_nolen_const(*MARK); /* stringify for taint check */
4017 TAINT_PROPER("system");
4019 PERL_FLUSHALL_FOR_CHILD;
4020 #if (defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(OS2) || defined(PERL_MICRO)
4026 if (PerlProc_pipe(pp) >= 0)
4028 while ((childpid = PerlProc_fork()) == -1) {
4029 if (errno != EAGAIN) {
4034 PerlLIO_close(pp[0]);
4035 PerlLIO_close(pp[1]);
4042 Sigsave_t ihand,qhand; /* place to save signals during system() */
4046 PerlLIO_close(pp[1]);
4048 rsignal_save(SIGINT, (Sighandler_t) SIG_IGN, &ihand);
4049 rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qhand);
4052 result = wait4pid(childpid, &status, 0);
4053 } while (result == -1 && errno == EINTR);
4055 (void)rsignal_restore(SIGINT, &ihand);
4056 (void)rsignal_restore(SIGQUIT, &qhand);
4058 STATUS_NATIVE_CHILD_SET(result == -1 ? -1 : status);
4059 do_execfree(); /* free any memory child malloced on fork */
4065 while (n < sizeof(int)) {
4066 n1 = PerlLIO_read(pp[0],
4067 (void*)(((char*)&errkid)+n),
4073 PerlLIO_close(pp[0]);
4074 if (n) { /* Error */
4075 if (n != sizeof(int))
4076 DIE(aTHX_ "panic: kid popen errno read");
4077 errno = errkid; /* Propagate errno from kid */
4078 STATUS_NATIVE_CHILD_SET(-1);
4081 PUSHi(STATUS_CURRENT);
4085 PerlLIO_close(pp[0]);
4086 #if defined(HAS_FCNTL) && defined(F_SETFD)
4087 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
4090 if (PL_op->op_flags & OPf_STACKED) {
4091 SV *really = *++MARK;
4092 value = (I32)do_aexec5(really, MARK, SP, pp[1], did_pipes);
4094 else if (SP - MARK != 1)
4095 value = (I32)do_aexec5(Nullsv, MARK, SP, pp[1], did_pipes);
4097 value = (I32)do_exec3(SvPVx_nolen(sv_mortalcopy(*SP)), pp[1], did_pipes);
4101 #else /* ! FORK or VMS or OS/2 */
4104 if (PL_op->op_flags & OPf_STACKED) {
4105 SV *really = *++MARK;
4106 # if defined(WIN32) || defined(OS2) || defined(__SYMBIAN32__)
4107 value = (I32)do_aspawn(really, MARK, SP);
4109 value = (I32)do_aspawn(really, (void **)MARK, (void **)SP);
4112 else if (SP - MARK != 1) {
4113 # if defined(WIN32) || defined(OS2) || defined(__SYMBIAN32__)
4114 value = (I32)do_aspawn(Nullsv, MARK, SP);
4116 value = (I32)do_aspawn(Nullsv, (void **)MARK, (void **)SP);
4120 value = (I32)do_spawn(SvPVx_nolen(sv_mortalcopy(*SP)));
4122 if (PL_statusvalue == -1) /* hint that value must be returned as is */
4124 STATUS_NATIVE_CHILD_SET(value);
4127 PUSHi(result ? value : STATUS_CURRENT);
4128 #endif /* !FORK or VMS */
4134 dSP; dMARK; dORIGMARK; dTARGET;
4139 while (++MARK <= SP) {
4140 (void)SvPV_nolen_const(*MARK); /* stringify for taint check */
4145 TAINT_PROPER("exec");
4147 PERL_FLUSHALL_FOR_CHILD;
4148 if (PL_op->op_flags & OPf_STACKED) {
4149 SV *really = *++MARK;
4150 value = (I32)do_aexec(really, MARK, SP);
4152 else if (SP - MARK != 1)
4154 value = (I32)vms_do_aexec(Nullsv, MARK, SP);
4158 (void ) do_aspawn(Nullsv, MARK, SP);
4162 value = (I32)do_aexec(Nullsv, MARK, SP);
4167 value = (I32)vms_do_exec(SvPVx_nolen(sv_mortalcopy(*SP)));
4170 (void) do_spawn(SvPVx_nolen(sv_mortalcopy(*SP)));
4173 value = (I32)do_exec(SvPVx_nolen(sv_mortalcopy(*SP)));
4187 # ifdef THREADS_HAVE_PIDS
4188 if (PL_ppid != 1 && getppid() == 1)
4189 /* maybe the parent process has died. Refresh ppid cache */
4193 XPUSHi( getppid() );
4197 DIE(aTHX_ PL_no_func, "getppid");
4213 pgrp = (I32)BSD_GETPGRP(pid);
4215 if (pid != 0 && pid != PerlProc_getpid())
4216 DIE(aTHX_ "POSIX getpgrp can't take an argument");
4222 DIE(aTHX_ PL_no_func, "getpgrp()");
4241 TAINT_PROPER("setpgrp");
4243 SETi( BSD_SETPGRP(pid, pgrp) >= 0 );
4245 if ((pgrp != 0 && pgrp != PerlProc_getpid())
4246 || (pid != 0 && pid != PerlProc_getpid()))
4248 DIE(aTHX_ "setpgrp can't take arguments");
4250 SETi( setpgrp() >= 0 );
4251 #endif /* USE_BSDPGRP */
4254 DIE(aTHX_ PL_no_func, "setpgrp()");
4260 #ifdef HAS_GETPRIORITY
4264 SETi( getpriority(which, who) );
4267 DIE(aTHX_ PL_no_func, "getpriority()");
4273 #ifdef HAS_SETPRIORITY
4278 TAINT_PROPER("setpriority");
4279 SETi( setpriority(which, who, niceval) >= 0 );
4282 DIE(aTHX_ PL_no_func, "setpriority()");
4292 XPUSHn( time(Null(Time_t*)) );
4294 XPUSHi( time(Null(Time_t*)) );
4305 (void)PerlProc_times(&PL_timesbuf);
4307 (void)PerlProc_times((tbuffer_t *)&PL_timesbuf); /* time.h uses different name for */
4308 /* struct tms, though same data */
4312 PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_utime)/(NV)PL_clocktick)));
4313 if (GIMME == G_ARRAY) {
4314 PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_stime)/(NV)PL_clocktick)));
4315 PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_cutime)/(NV)PL_clocktick)));
4316 PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_cstime)/(NV)PL_clocktick)));
4322 PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4324 if (GIMME == G_ARRAY) {
4325 PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4326 PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4327 PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4331 DIE(aTHX_ "times not implemented");
4333 #endif /* HAS_TIMES */
4336 #ifdef LOCALTIME_EDGECASE_BROKEN
4337 static struct tm *S_my_localtime (pTHX_ Time_t *tp)
4342 /* No workarounds in the valid range */
4343 if (!tp || *tp < 0x7fff573f || *tp >= 0x80000000)
4344 return (localtime (tp));
4346 /* This edge case is to workaround the undefined behaviour, where the
4347 * TIMEZONE makes the time go beyond the defined range.
4348 * gmtime (0x7fffffff) => 2038-01-19 03:14:07
4349 * If there is a negative offset in TZ, like MET-1METDST, some broken
4350 * implementations of localtime () (like AIX 5.2) barf with bogus
4352 * 0x7fffffff gmtime 2038-01-19 03:14:07
4353 * 0x7fffffff localtime 1901-12-13 21:45:51
4354 * 0x7fffffff mylocaltime 2038-01-19 04:14:07
4355 * 0x3c19137f gmtime 2001-12-13 20:45:51
4356 * 0x3c19137f localtime 2001-12-13 21:45:51
4357 * 0x3c19137f mylocaltime 2001-12-13 21:45:51
4358 * Given that legal timezones are typically between GMT-12 and GMT+12
4359 * we turn back the clock 23 hours before calling the localtime
4360 * function, and add those to the return value. This will never cause
4361 * day wrapping problems, since the edge case is Tue Jan *19*
4363 T = *tp - 82800; /* 23 hour. allows up to GMT-23 */
4366 if (P->tm_hour >= 24) {
4368 P->tm_mday++; /* 18 -> 19 */
4369 P->tm_wday++; /* Mon -> Tue */
4370 P->tm_yday++; /* 18 -> 19 */
4373 } /* S_my_localtime */
4380 const struct tm *tmbuf;
4381 static const char * const dayname[] =
4382 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
4383 static const char * const monname[] =
4384 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
4385 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
4391 when = (Time_t)SvNVx(POPs);
4393 when = (Time_t)SvIVx(POPs);
4396 if (PL_op->op_type == OP_LOCALTIME)
4397 #ifdef LOCALTIME_EDGECASE_BROKEN
4398 tmbuf = S_my_localtime(aTHX_ &when);
4400 tmbuf = localtime(&when);
4403 tmbuf = gmtime(&when);
4405 if (GIMME != G_ARRAY) {
4411 tsv = Perl_newSVpvf(aTHX_ "%s %s %2d %02d:%02d:%02d %d",
4412 dayname[tmbuf->tm_wday],
4413 monname[tmbuf->tm_mon],
4418 tmbuf->tm_year + 1900);
4419 PUSHs(sv_2mortal(tsv));
4424 PUSHs(sv_2mortal(newSViv(tmbuf->tm_sec)));
4425 PUSHs(sv_2mortal(newSViv(tmbuf->tm_min)));
4426 PUSHs(sv_2mortal(newSViv(tmbuf->tm_hour)));
4427 PUSHs(sv_2mortal(newSViv(tmbuf->tm_mday)));
4428 PUSHs(sv_2mortal(newSViv(tmbuf->tm_mon)));
4429 PUSHs(sv_2mortal(newSViv(tmbuf->tm_year)));
4430 PUSHs(sv_2mortal(newSViv(tmbuf->tm_wday)));
4431 PUSHs(sv_2mortal(newSViv(tmbuf->tm_yday)));
4432 PUSHs(sv_2mortal(newSViv(tmbuf->tm_isdst)));
4443 anum = alarm((unsigned int)anum);
4450 DIE(aTHX_ PL_no_func, "alarm");
4461 (void)time(&lasttime);
4466 PerlProc_sleep((unsigned int)duration);
4469 XPUSHi(when - lasttime);
4473 /* Shared memory. */
4477 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4478 dSP; dMARK; dTARGET;
4479 I32 value = (I32)(do_shmio(PL_op->op_type, MARK, SP) >= 0);
4488 /* Message passing. */
4492 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4493 dSP; dMARK; dTARGET;
4494 I32 value = (I32)(do_msgsnd(MARK, SP) >= 0);
4505 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4506 dSP; dMARK; dTARGET;
4507 I32 value = (I32)(do_msgrcv(MARK, SP) >= 0);
4520 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4521 dSP; dMARK; dTARGET;
4522 int anum = do_ipcget(PL_op->op_type, MARK, SP);
4529 DIE(aTHX_ "System V IPC is not implemented on this machine");
4535 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4536 dSP; dMARK; dTARGET;
4537 int anum = do_ipcctl(PL_op->op_type, MARK, SP);
4545 PUSHp(zero_but_true, ZBTLEN);
4555 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4556 dSP; dMARK; dTARGET;
4557 I32 value = (I32)(do_semop(MARK, SP) >= 0);
4566 /* Get system info. */
4570 #if defined(HAS_GETHOSTBYNAME) || defined(HAS_GETHOSTBYADDR) || defined(HAS_GETHOSTENT)
4572 I32 which = PL_op->op_type;
4573 register char **elem;
4575 #ifndef HAS_GETHOST_PROTOS /* XXX Do we need individual probes? */
4576 struct hostent *gethostbyaddr(Netdb_host_t, Netdb_hlen_t, int);
4577 struct hostent *gethostbyname(Netdb_name_t);
4578 struct hostent *gethostent(void);
4580 struct hostent *hent;
4584 if (which == OP_GHBYNAME) {
4585 #ifdef HAS_GETHOSTBYNAME
4586 char* name = POPpbytex;
4587 hent = PerlSock_gethostbyname(name);
4589 DIE(aTHX_ PL_no_sock_func, "gethostbyname");
4592 else if (which == OP_GHBYADDR) {
4593 #ifdef HAS_GETHOSTBYADDR
4594 int addrtype = POPi;
4597 Netdb_host_t addr = (Netdb_host_t) SvPVbyte(addrsv, addrlen);
4599 hent = PerlSock_gethostbyaddr(addr, (Netdb_hlen_t) addrlen, addrtype);
4601 DIE(aTHX_ PL_no_sock_func, "gethostbyaddr");
4605 #ifdef HAS_GETHOSTENT
4606 hent = PerlSock_gethostent();
4608 DIE(aTHX_ PL_no_sock_func, "gethostent");
4611 #ifdef HOST_NOT_FOUND
4613 #ifdef USE_REENTRANT_API
4614 # ifdef USE_GETHOSTENT_ERRNO
4615 h_errno = PL_reentrant_buffer->_gethostent_errno;
4618 STATUS_UNIX_SET(h_errno);
4622 if (GIMME != G_ARRAY) {
4623 PUSHs(sv = sv_newmortal());
4625 if (which == OP_GHBYNAME) {
4627 sv_setpvn(sv, hent->h_addr, hent->h_length);
4630 sv_setpv(sv, (char*)hent->h_name);
4636 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4637 sv_setpv(sv, (char*)hent->h_name);
4638 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4639 for (elem = hent->h_aliases; elem && *elem; elem++) {
4640 sv_catpv(sv, *elem);
4642 sv_catpvn(sv, " ", 1);
4644 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4645 sv_setiv(sv, (IV)hent->h_addrtype);
4646 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4647 len = hent->h_length;
4648 sv_setiv(sv, (IV)len);
4650 for (elem = hent->h_addr_list; elem && *elem; elem++) {
4651 XPUSHs(sv = sv_mortalcopy(&PL_sv_no));
4652 sv_setpvn(sv, *elem, len);
4655 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4657 sv_setpvn(sv, hent->h_addr, len);
4662 DIE(aTHX_ PL_no_sock_func, "gethostent");
4668 #if defined(HAS_GETNETBYNAME) || defined(HAS_GETNETBYADDR) || defined(HAS_GETNETENT)
4670 I32 which = PL_op->op_type;
4671 register char **elem;
4673 #ifndef HAS_GETNET_PROTOS /* XXX Do we need individual probes? */
4674 struct netent *getnetbyaddr(Netdb_net_t, int);
4675 struct netent *getnetbyname(Netdb_name_t);
4676 struct netent *getnetent(void);
4678 struct netent *nent;
4680 if (which == OP_GNBYNAME){
4681 #ifdef HAS_GETNETBYNAME
4682 char *name = POPpbytex;
4683 nent = PerlSock_getnetbyname(name);
4685 DIE(aTHX_ PL_no_sock_func, "getnetbyname");
4688 else if (which == OP_GNBYADDR) {
4689 #ifdef HAS_GETNETBYADDR
4690 int addrtype = POPi;
4691 Netdb_net_t addr = (Netdb_net_t) (U32)POPu;
4692 nent = PerlSock_getnetbyaddr(addr, addrtype);
4694 DIE(aTHX_ PL_no_sock_func, "getnetbyaddr");
4698 #ifdef HAS_GETNETENT
4699 nent = PerlSock_getnetent();
4701 DIE(aTHX_ PL_no_sock_func, "getnetent");
4704 #ifdef HOST_NOT_FOUND
4706 #ifdef USE_REENTRANT_API
4707 # ifdef USE_GETNETENT_ERRNO
4708 h_errno = PL_reentrant_buffer->_getnetent_errno;
4711 STATUS_UNIX_SET(h_errno);
4716 if (GIMME != G_ARRAY) {
4717 PUSHs(sv = sv_newmortal());
4719 if (which == OP_GNBYNAME)
4720 sv_setiv(sv, (IV)nent->n_net);
4722 sv_setpv(sv, nent->n_name);
4728 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4729 sv_setpv(sv, nent->n_name);
4730 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4731 for (elem = nent->n_aliases; elem && *elem; elem++) {
4732 sv_catpv(sv, *elem);
4734 sv_catpvn(sv, " ", 1);
4736 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4737 sv_setiv(sv, (IV)nent->n_addrtype);
4738 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4739 sv_setiv(sv, (IV)nent->n_net);
4744 DIE(aTHX_ PL_no_sock_func, "getnetent");
4750 #if defined(HAS_GETPROTOBYNAME) || defined(HAS_GETPROTOBYNUMBER) || defined(HAS_GETPROTOENT)
4752 I32 which = PL_op->op_type;
4753 register char **elem;
4755 #ifndef HAS_GETPROTO_PROTOS /* XXX Do we need individual probes? */
4756 struct protoent *getprotobyname(Netdb_name_t);
4757 struct protoent *getprotobynumber(int);
4758 struct protoent *getprotoent(void);
4760 struct protoent *pent;
4762 if (which == OP_GPBYNAME) {
4763 #ifdef HAS_GETPROTOBYNAME
4764 char* name = POPpbytex;
4765 pent = PerlSock_getprotobyname(name);
4767 DIE(aTHX_ PL_no_sock_func, "getprotobyname");
4770 else if (which == OP_GPBYNUMBER) {
4771 #ifdef HAS_GETPROTOBYNUMBER
4773 pent = PerlSock_getprotobynumber(number);
4775 DIE(aTHX_ PL_no_sock_func, "getprotobynumber");
4779 #ifdef HAS_GETPROTOENT
4780 pent = PerlSock_getprotoent();
4782 DIE(aTHX_ PL_no_sock_func, "getprotoent");
4786 if (GIMME != G_ARRAY) {
4787 PUSHs(sv = sv_newmortal());
4789 if (which == OP_GPBYNAME)
4790 sv_setiv(sv, (IV)pent->p_proto);
4792 sv_setpv(sv, pent->p_name);
4798 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4799 sv_setpv(sv, pent->p_name);
4800 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4801 for (elem = pent->p_aliases; elem && *elem; elem++) {
4802 sv_catpv(sv, *elem);
4804 sv_catpvn(sv, " ", 1);
4806 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4807 sv_setiv(sv, (IV)pent->p_proto);
4812 DIE(aTHX_ PL_no_sock_func, "getprotoent");
4818 #if defined(HAS_GETSERVBYNAME) || defined(HAS_GETSERVBYPORT) || defined(HAS_GETSERVENT)
4820 I32 which = PL_op->op_type;
4821 register char **elem;
4823 #ifndef HAS_GETSERV_PROTOS /* XXX Do we need individual probes? */
4824 struct servent *getservbyname(Netdb_name_t, Netdb_name_t);
4825 struct servent *getservbyport(int, Netdb_name_t);
4826 struct servent *getservent(void);
4828 struct servent *sent;
4830 if (which == OP_GSBYNAME) {
4831 #ifdef HAS_GETSERVBYNAME
4832 char *proto = POPpbytex;
4833 char *name = POPpbytex;
4835 if (proto && !*proto)
4838 sent = PerlSock_getservbyname(name, proto);
4840 DIE(aTHX_ PL_no_sock_func, "getservbyname");
4843 else if (which == OP_GSBYPORT) {
4844 #ifdef HAS_GETSERVBYPORT
4845 char *proto = POPpbytex;
4846 unsigned short port = (unsigned short)POPu;
4848 if (proto && !*proto)
4852 port = PerlSock_htons(port);
4854 sent = PerlSock_getservbyport(port, proto);
4856 DIE(aTHX_ PL_no_sock_func, "getservbyport");
4860 #ifdef HAS_GETSERVENT
4861 sent = PerlSock_getservent();
4863 DIE(aTHX_ PL_no_sock_func, "getservent");
4867 if (GIMME != G_ARRAY) {
4868 PUSHs(sv = sv_newmortal());
4870 if (which == OP_GSBYNAME) {
4872 sv_setiv(sv, (IV)PerlSock_ntohs(sent->s_port));
4874 sv_setiv(sv, (IV)(sent->s_port));
4878 sv_setpv(sv, sent->s_name);
4884 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4885 sv_setpv(sv, sent->s_name);
4886 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4887 for (elem = sent->s_aliases; elem && *elem; elem++) {
4888 sv_catpv(sv, *elem);
4890 sv_catpvn(sv, " ", 1);
4892 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4894 sv_setiv(sv, (IV)PerlSock_ntohs(sent->s_port));
4896 sv_setiv(sv, (IV)(sent->s_port));
4898 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
4899 sv_setpv(sv, sent->s_proto);
4904 DIE(aTHX_ PL_no_sock_func, "getservent");
4910 #ifdef HAS_SETHOSTENT
4912 PerlSock_sethostent(TOPi);
4915 DIE(aTHX_ PL_no_sock_func, "sethostent");
4921 #ifdef HAS_SETNETENT
4923 PerlSock_setnetent(TOPi);
4926 DIE(aTHX_ PL_no_sock_func, "setnetent");
4932 #ifdef HAS_SETPROTOENT
4934 PerlSock_setprotoent(TOPi);
4937 DIE(aTHX_ PL_no_sock_func, "setprotoent");
4943 #ifdef HAS_SETSERVENT
4945 PerlSock_setservent(TOPi);
4948 DIE(aTHX_ PL_no_sock_func, "setservent");
4954 #ifdef HAS_ENDHOSTENT
4956 PerlSock_endhostent();
4960 DIE(aTHX_ PL_no_sock_func, "endhostent");
4966 #ifdef HAS_ENDNETENT
4968 PerlSock_endnetent();
4972 DIE(aTHX_ PL_no_sock_func, "endnetent");
4978 #ifdef HAS_ENDPROTOENT
4980 PerlSock_endprotoent();
4984 DIE(aTHX_ PL_no_sock_func, "endprotoent");
4990 #ifdef HAS_ENDSERVENT
4992 PerlSock_endservent();
4996 DIE(aTHX_ PL_no_sock_func, "endservent");
5004 I32 which = PL_op->op_type;
5006 struct passwd *pwent = NULL;
5008 * We currently support only the SysV getsp* shadow password interface.
5009 * The interface is declared in <shadow.h> and often one needs to link
5010 * with -lsecurity or some such.
5011 * This interface is used at least by Solaris, HP-UX, IRIX, and Linux.
5014 * AIX getpwnam() is clever enough to return the encrypted password
5015 * only if the caller (euid?) is root.
5017 * There are at least three other shadow password APIs. Many platforms
5018 * seem to contain more than one interface for accessing the shadow
5019 * password databases, possibly for compatibility reasons.
5020 * The getsp*() is by far he simplest one, the other two interfaces
5021 * are much more complicated, but also very similar to each other.
5026 * struct pr_passwd *getprpw*();
5027 * The password is in
5028 * char getprpw*(...).ufld.fd_encrypt[]
5029 * Mention HAS_GETPRPWNAM here so that Configure probes for it.
5034 * struct es_passwd *getespw*();
5035 * The password is in
5036 * char *(getespw*(...).ufld.fd_encrypt)
5037 * Mention HAS_GETESPWNAM here so that Configure probes for it.
5040 * struct userpw *getuserpw();
5041 * The password is in
5042 * char *(getuserpw(...)).spw_upw_passwd
5043 * (but the de facto standard getpwnam() should work okay)
5045 * Mention I_PROT here so that Configure probes for it.
5047 * In HP-UX for getprpw*() the manual page claims that one should include
5048 * <hpsecurity.h> instead of <sys/security.h>, but that is not needed
5049 * if one includes <shadow.h> as that includes <hpsecurity.h>,
5050 * and pp_sys.c already includes <shadow.h> if there is such.
5052 * Note that <sys/security.h> is already probed for, but currently
5053 * it is only included in special cases.
5055 * In Digital UNIX/Tru64 if using the getespw*() (which seems to be
5056 * be preferred interface, even though also the getprpw*() interface
5057 * is available) one needs to link with -lsecurity -ldb -laud -lm.
5058 * One also needs to call set_auth_parameters() in main() before
5059 * doing anything else, whether one is using getespw*() or getprpw*().
5061 * Note that accessing the shadow databases can be magnitudes
5062 * slower than accessing the standard databases.
5067 # if defined(__CYGWIN__) && defined(USE_REENTRANT_API)
5068 /* Cygwin 1.5.3-1 has buggy getpwnam_r() and getpwuid_r():
5069 * the pw_comment is left uninitialized. */
5070 PL_reentrant_buffer->_pwent_struct.pw_comment = NULL;
5076 char* name = POPpbytex;
5077 pwent = getpwnam(name);
5083 pwent = getpwuid(uid);
5087 # ifdef HAS_GETPWENT
5089 #ifdef POSIX_BC /* In some cases pw_passwd has invalid addresses */
5090 if (pwent) pwent = getpwnam(pwent->pw_name);
5093 DIE(aTHX_ PL_no_func, "getpwent");
5099 if (GIMME != G_ARRAY) {
5100 PUSHs(sv = sv_newmortal());
5102 if (which == OP_GPWNAM)
5103 # if Uid_t_sign <= 0
5104 sv_setiv(sv, (IV)pwent->pw_uid);
5106 sv_setuv(sv, (UV)pwent->pw_uid);
5109 sv_setpv(sv, pwent->pw_name);
5115 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
5116 sv_setpv(sv, pwent->pw_name);
5118 PUSHs(sv = sv_mortalcopy(&PL_sv_no));
5120 /* If we have getspnam(), we try to dig up the shadow
5121 * password. If we are underprivileged, the shadow
5122 * interface will set the errno to EACCES or similar,
5123 * and return a null pointer. If this happens, we will
5124 * use the dummy password (usually "*" or "x") from the
5125 * standard password database.
5127 * In theory we could skip the shadow call completely
5128 * if euid != 0 but in practice we cannot know which
5129 * security measures are guarding the shadow databases
5130 * on a random platform.
5132 * Resist the urge to use additional shadow interfaces.
5133 * Divert the urge to writing an extension instead.
5136 /* Some AIX setups falsely(?) detect some getspnam(), which
5137 * has a different API than the Solaris/IRIX one. */
5138 # if defined(HAS_GETSPNAM) && !defined(_AIX)