This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perform system() arg processing before fork
[perl5.git] / pp_sys.c
1 /*    pp_sys.c
2  *
3  *    Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4  *    2004, 2005, 2006, 2007, 2008 by Larry Wall and others
5  *
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.
8  *
9  */
10
11 /*
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.
16  *
17  *     [p.945 of _The Lord of the Rings_, VI/iii: "Mount Doom"]
18  */
19
20 /* This file contains system pp ("push/pop") functions that
21  * execute the opcodes that make up a perl program. A typical pp function
22  * expects to find its arguments on the stack, and usually pushes its
23  * results onto the stack, hence the 'pp' terminology. Each OP structure
24  * contains a pointer to the relevant pp_foo() function.
25  *
26  * By 'system', we mean ops which interact with the OS, such as pp_open().
27  */
28
29 #include "EXTERN.h"
30 #define PERL_IN_PP_SYS_C
31 #include "perl.h"
32 #include "time64.h"
33
34 #ifdef I_SHADOW
35 /* Shadow password support for solaris - pdo@cs.umd.edu
36  * Not just Solaris: at least HP-UX, IRIX, Linux.
37  * The API is from SysV.
38  *
39  * There are at least two more shadow interfaces,
40  * see the comments in pp_gpwent().
41  *
42  * --jhi */
43 #   ifdef __hpux__
44 /* There is a MAXINT coming from <shadow.h> <- <hpsecurity.h> <- <values.h>
45  * and another MAXINT from "perl.h" <- <sys/param.h>. */
46 #       undef MAXINT
47 #   endif
48 #   include <shadow.h>
49 #endif
50
51 #ifdef I_SYS_RESOURCE
52 # include <sys/resource.h>
53 #endif
54
55 #ifdef NETWARE
56 NETDB_DEFINE_CONTEXT
57 #endif
58
59 #ifdef HAS_SELECT
60 # ifdef I_SYS_SELECT
61 #  include <sys/select.h>
62 # endif
63 #endif
64
65 /* XXX Configure test needed.
66    h_errno might not be a simple 'int', especially for multi-threaded
67    applications, see "extern int errno in perl.h".  Creating such
68    a test requires taking into account the differences between
69    compiling multithreaded and singlethreaded ($ccflags et al).
70    HOST_NOT_FOUND is typically defined in <netdb.h>.
71 */
72 #if defined(HOST_NOT_FOUND) && !defined(h_errno) && !defined(__CYGWIN__)
73 extern int h_errno;
74 #endif
75
76 #ifdef HAS_PASSWD
77 # ifdef I_PWD
78 #  include <pwd.h>
79 # elif !defined(VMS)
80     struct passwd *getpwnam (char *);
81     struct passwd *getpwuid (Uid_t);
82 # endif
83 # ifdef HAS_GETPWENT
84 #  ifndef getpwent
85   struct passwd *getpwent (void);
86 #  elif defined (VMS) && defined (my_getpwent)
87   struct passwd *Perl_my_getpwent (pTHX);
88 #  endif
89 # endif
90 #endif
91
92 #ifdef HAS_GROUP
93 # ifdef I_GRP
94 #  include <grp.h>
95 # else
96     struct group *getgrnam (char *);
97     struct group *getgrgid (Gid_t);
98 # endif
99 # ifdef HAS_GETGRENT
100 #  ifndef getgrent
101     struct group *getgrent (void);
102 #  endif
103 # endif
104 #endif
105
106 #ifdef I_UTIME
107 #  if defined(_MSC_VER) || defined(__MINGW32__)
108 #    include <sys/utime.h>
109 #  else
110 #    include <utime.h>
111 #  endif
112 #endif
113
114 #ifdef HAS_CHSIZE
115 # ifdef my_chsize  /* Probably #defined to Perl_my_chsize in embed.h */
116 #   undef my_chsize
117 # endif
118 # define my_chsize PerlLIO_chsize
119 #elif defined(HAS_TRUNCATE)
120 # define my_chsize PerlLIO_chsize
121 #else
122 I32 my_chsize(int fd, Off_t length);
123 #endif
124
125 #ifdef HAS_FLOCK
126 #  define FLOCK flock
127 #else /* no flock() */
128
129    /* fcntl.h might not have been included, even if it exists, because
130       the current Configure only sets I_FCNTL if it's needed to pick up
131       the *_OK constants.  Make sure it has been included before testing
132       the fcntl() locking constants. */
133 #  if defined(HAS_FCNTL) && !defined(I_FCNTL)
134 #    include <fcntl.h>
135 #  endif
136
137 #  if defined(HAS_FCNTL) && defined(FCNTL_CAN_LOCK)
138 #    define FLOCK fcntl_emulate_flock
139 #    define FCNTL_EMULATE_FLOCK
140 #  elif defined(HAS_LOCKF)
141 #    define FLOCK lockf_emulate_flock
142 #    define LOCKF_EMULATE_FLOCK
143 #  endif
144
145 #  ifdef FLOCK
146      static int FLOCK (int, int);
147
148     /*
149      * These are the flock() constants.  Since this sytems doesn't have
150      * flock(), the values of the constants are probably not available.
151      */
152 #    ifndef LOCK_SH
153 #      define LOCK_SH 1
154 #    endif
155 #    ifndef LOCK_EX
156 #      define LOCK_EX 2
157 #    endif
158 #    ifndef LOCK_NB
159 #      define LOCK_NB 4
160 #    endif
161 #    ifndef LOCK_UN
162 #      define LOCK_UN 8
163 #    endif
164 #  endif /* emulating flock() */
165
166 #endif /* no flock() */
167
168 #define ZBTLEN 10
169 static const char zero_but_true[ZBTLEN + 1] = "0 but true";
170
171 #if defined(I_SYS_ACCESS) && !defined(R_OK)
172 #  include <sys/access.h>
173 #endif
174
175 #include "reentr.h"
176
177 #ifdef __Lynx__
178 /* Missing protos on LynxOS */
179 void sethostent(int);
180 void endhostent(void);
181 void setnetent(int);
182 void endnetent(void);
183 void setprotoent(int);
184 void endprotoent(void);
185 void setservent(int);
186 void endservent(void);
187 #endif
188
189 #ifdef __amigaos4__
190 #  include "amigaos4/amigaio.h"
191 #endif
192
193 #undef PERL_EFF_ACCESS  /* EFFective uid/gid ACCESS */
194
195 /* F_OK unused: if stat() cannot find it... */
196
197 #if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESS) && defined(EFF_ONLY_OK) && !defined(NO_EFF_ONLY_OK)
198     /* Digital UNIX (when the EFF_ONLY_OK gets fixed), UnixWare */
199 #   define PERL_EFF_ACCESS(p,f) (access((p), (f) | EFF_ONLY_OK))
200 #endif
201
202 #if !defined(PERL_EFF_ACCESS) && defined(HAS_EACCESS)
203 #   ifdef I_SYS_SECURITY
204 #       include <sys/security.h>
205 #   endif
206 #   ifdef ACC_SELF
207         /* HP SecureWare */
208 #       define PERL_EFF_ACCESS(p,f) (eaccess((p), (f), ACC_SELF))
209 #   else
210         /* SCO */
211 #       define PERL_EFF_ACCESS(p,f) (eaccess((p), (f)))
212 #   endif
213 #endif
214
215 #if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESSX) && defined(ACC_SELF)
216     /* AIX */
217 #   define PERL_EFF_ACCESS(p,f) (accessx((p), (f), ACC_SELF))
218 #endif
219
220
221 #if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESS)    \
222     && (defined(HAS_SETREUID) || defined(HAS_SETRESUID)         \
223         || defined(HAS_SETREGID) || defined(HAS_SETRESGID))
224 /* The Hard Way. */
225 STATIC int
226 S_emulate_eaccess(pTHX_ const char* path, Mode_t mode)
227 {
228     const Uid_t ruid = getuid();
229     const Uid_t euid = geteuid();
230     const Gid_t rgid = getgid();
231     const Gid_t egid = getegid();
232     int res;
233
234 #if !defined(HAS_SETREUID) && !defined(HAS_SETRESUID)
235     Perl_croak(aTHX_ "switching effective uid is not implemented");
236 #else
237 #  ifdef HAS_SETREUID
238     if (setreuid(euid, ruid))
239 #  elif defined(HAS_SETRESUID)
240     if (setresuid(euid, ruid, (Uid_t)-1))
241 #  endif
242         /* diag_listed_as: entering effective %s failed */
243         Perl_croak(aTHX_ "entering effective uid failed");
244 #endif
245
246 #if !defined(HAS_SETREGID) && !defined(HAS_SETRESGID)
247     Perl_croak(aTHX_ "switching effective gid is not implemented");
248 #else
249 #  ifdef HAS_SETREGID
250     if (setregid(egid, rgid))
251 #  elif defined(HAS_SETRESGID)
252     if (setresgid(egid, rgid, (Gid_t)-1))
253 #  endif
254         /* diag_listed_as: entering effective %s failed */
255         Perl_croak(aTHX_ "entering effective gid failed");
256 #endif
257
258     res = access(path, mode);
259
260 #ifdef HAS_SETREUID
261     if (setreuid(ruid, euid))
262 #elif defined(HAS_SETRESUID)
263     if (setresuid(ruid, euid, (Uid_t)-1))
264 #endif
265         /* diag_listed_as: leaving effective %s failed */
266         Perl_croak(aTHX_ "leaving effective uid failed");
267
268 #ifdef HAS_SETREGID
269     if (setregid(rgid, egid))
270 #elif defined(HAS_SETRESGID)
271     if (setresgid(rgid, egid, (Gid_t)-1))
272 #endif
273         /* diag_listed_as: leaving effective %s failed */
274         Perl_croak(aTHX_ "leaving effective gid failed");
275
276     return res;
277 }
278 #   define PERL_EFF_ACCESS(p,f) (S_emulate_eaccess(aTHX_ (p), (f)))
279 #endif
280
281 PP(pp_backtick)
282 {
283     dSP; dTARGET;
284     PerlIO *fp;
285     const char * const tmps = POPpconstx;
286     const U8 gimme = GIMME_V;
287     const char *mode = "r";
288
289     TAINT_PROPER("``");
290     if (PL_op->op_private & OPpOPEN_IN_RAW)
291         mode = "rb";
292     else if (PL_op->op_private & OPpOPEN_IN_CRLF)
293         mode = "rt";
294     fp = PerlProc_popen(tmps, mode);
295     if (fp) {
296         const char * const type = Perl_PerlIO_context_layers(aTHX_ NULL);
297         if (type && *type)
298             PerlIO_apply_layers(aTHX_ fp,mode,type);
299
300         if (gimme == G_VOID) {
301             char tmpbuf[256];
302             while (PerlIO_read(fp, tmpbuf, sizeof tmpbuf) > 0)
303                 NOOP;
304         }
305         else if (gimme == G_SCALAR) {
306             ENTER_with_name("backtick");
307             SAVESPTR(PL_rs);
308             PL_rs = &PL_sv_undef;
309             SvPVCLEAR(TARG);        /* note that this preserves previous buffer */
310             while (sv_gets(TARG, fp, SvCUR(TARG)) != NULL)
311                 NOOP;
312             LEAVE_with_name("backtick");
313             XPUSHs(TARG);
314             SvTAINTED_on(TARG);
315         }
316         else {
317             for (;;) {
318                 SV * const sv = newSV(79);
319                 if (sv_gets(sv, fp, 0) == NULL) {
320                     SvREFCNT_dec(sv);
321                     break;
322                 }
323                 mXPUSHs(sv);
324                 if (SvLEN(sv) - SvCUR(sv) > 20) {
325                     SvPV_shrink_to_cur(sv);
326                 }
327                 SvTAINTED_on(sv);
328             }
329         }
330         STATUS_NATIVE_CHILD_SET(PerlProc_pclose(fp));
331         TAINT;          /* "I believe that this is not gratuitous!" */
332     }
333     else {
334         STATUS_NATIVE_CHILD_SET(-1);
335         if (gimme == G_SCALAR)
336             RETPUSHUNDEF;
337     }
338
339     RETURN;
340 }
341
342 PP(pp_glob)
343 {
344     OP *result;
345     dSP;
346     GV * const gv = (PL_op->op_flags & OPf_SPECIAL) ? NULL : (GV *)POPs;
347
348     PUTBACK;
349
350     /* make a copy of the pattern if it is gmagical, to ensure that magic
351      * is called once and only once */
352     if (SvGMAGICAL(TOPs)) TOPs = sv_2mortal(newSVsv(TOPs));
353
354     tryAMAGICunTARGETlist(iter_amg, (PL_op->op_flags & OPf_SPECIAL));
355
356     if (PL_op->op_flags & OPf_SPECIAL) {
357         /* call Perl-level glob function instead. Stack args are:
358          * MARK, wildcard
359          * and following OPs should be: gv(CORE::GLOBAL::glob), entersub
360          * */
361         return NORMAL;
362     }
363     if (PL_globhook) {
364         PL_globhook(aTHX);
365         return NORMAL;
366     }
367
368     /* Note that we only ever get here if File::Glob fails to load
369      * without at the same time croaking, for some reason, or if
370      * perl was built with PERL_EXTERNAL_GLOB */
371
372     ENTER_with_name("glob");
373
374 #ifndef VMS
375     if (TAINTING_get) {
376         /*
377          * The external globbing program may use things we can't control,
378          * so for security reasons we must assume the worst.
379          */
380         TAINT;
381         taint_proper(PL_no_security, "glob");
382     }
383 #endif /* !VMS */
384
385     SAVESPTR(PL_last_in_gv);    /* We don't want this to be permanent. */
386     PL_last_in_gv = gv;
387
388     SAVESPTR(PL_rs);            /* This is not permanent, either. */
389     PL_rs = newSVpvs_flags("\000", SVs_TEMP);
390 #ifndef DOSISH
391 #ifndef CSH
392     *SvPVX(PL_rs) = '\n';
393 #endif  /* !CSH */
394 #endif  /* !DOSISH */
395
396     result = do_readline();
397     LEAVE_with_name("glob");
398     return result;
399 }
400
401 PP(pp_rcatline)
402 {
403     PL_last_in_gv = cGVOP_gv;
404     return do_readline();
405 }
406
407 PP(pp_warn)
408 {
409     dSP; dMARK;
410     SV *exsv;
411     STRLEN len;
412     if (SP - MARK > 1) {
413         dTARGET;
414         do_join(TARG, &PL_sv_no, MARK, SP);
415         exsv = TARG;
416         SP = MARK + 1;
417     }
418     else if (SP == MARK) {
419         exsv = &PL_sv_no;
420         EXTEND(SP, 1);
421         SP = MARK + 1;
422     }
423     else {
424         exsv = TOPs;
425         if (SvGMAGICAL(exsv)) exsv = sv_mortalcopy(exsv);
426     }
427
428     if (SvROK(exsv) || (SvPV_const(exsv, len), len)) {
429         /* well-formed exception supplied */
430     }
431     else {
432       SV * const errsv = ERRSV;
433       SvGETMAGIC(errsv);
434       if (SvROK(errsv)) {
435         if (SvGMAGICAL(errsv)) {
436             exsv = sv_newmortal();
437             sv_setsv_nomg(exsv, errsv);
438         }
439         else exsv = errsv;
440       }
441       else if (SvPOKp(errsv) ? SvCUR(errsv) : SvNIOKp(errsv)) {
442         exsv = sv_newmortal();
443         sv_setsv_nomg(exsv, errsv);
444         sv_catpvs(exsv, "\t...caught");
445       }
446       else {
447         exsv = newSVpvs_flags("Warning: something's wrong", SVs_TEMP);
448       }
449     }
450     if (SvROK(exsv) && !PL_warnhook)
451          Perl_warn(aTHX_ "%" SVf, SVfARG(exsv));
452     else warn_sv(exsv);
453     RETSETYES;
454 }
455
456 PP(pp_die)
457 {
458     dSP; dMARK;
459     SV *exsv;
460     STRLEN len;
461 #ifdef VMS
462     VMSISH_HUSHED  =
463         VMSISH_HUSHED || (PL_curcop->op_private & OPpHUSH_VMSISH);
464 #endif
465     if (SP - MARK != 1) {
466         dTARGET;
467         do_join(TARG, &PL_sv_no, MARK, SP);
468         exsv = TARG;
469         SP = MARK + 1;
470     }
471     else {
472         exsv = TOPs;
473     }
474
475     if (SvROK(exsv) || (SvPV_const(exsv, len), len)) {
476         /* well-formed exception supplied */
477     }
478     else {
479         SV * const errsv = ERRSV;
480         SvGETMAGIC(errsv);
481         if (SvROK(errsv)) {
482             exsv = errsv;
483             if (sv_isobject(exsv)) {
484                 HV * const stash = SvSTASH(SvRV(exsv));
485                 GV * const gv = gv_fetchmethod(stash, "PROPAGATE");
486                 if (gv) {
487                     SV * const file = sv_2mortal(newSVpv(CopFILE(PL_curcop),0));
488                     SV * const line = sv_2mortal(newSVuv(CopLINE(PL_curcop)));
489                     EXTEND(SP, 3);
490                     PUSHMARK(SP);
491                     PUSHs(exsv);
492                     PUSHs(file);
493                     PUSHs(line);
494                     PUTBACK;
495                     call_sv(MUTABLE_SV(GvCV(gv)),
496                             G_SCALAR|G_EVAL|G_KEEPERR);
497                     exsv = sv_mortalcopy(*PL_stack_sp--);
498                 }
499             }
500         }
501         else if (SvPOK(errsv) && SvCUR(errsv)) {
502             exsv = sv_mortalcopy(errsv);
503             sv_catpvs(exsv, "\t...propagated");
504         }
505         else {
506             exsv = newSVpvs_flags("Died", SVs_TEMP);
507         }
508     }
509     die_sv(exsv);
510     NOT_REACHED; /* NOTREACHED */
511     return NULL; /* avoid missing return from non-void function warning */
512 }
513
514 /* I/O. */
515
516 OP *
517 Perl_tied_method(pTHX_ SV *methname, SV **sp, SV *const sv,
518                  const MAGIC *const mg, const U32 flags, U32 argc, ...)
519 {
520     SV **orig_sp = sp;
521     I32 ret_args;
522     SSize_t extend_size;
523
524     PERL_ARGS_ASSERT_TIED_METHOD;
525
526     /* Ensure that our flag bits do not overlap.  */
527     STATIC_ASSERT_STMT((TIED_METHOD_MORTALIZE_NOT_NEEDED & G_WANT) == 0);
528     STATIC_ASSERT_STMT((TIED_METHOD_ARGUMENTS_ON_STACK & G_WANT) == 0);
529     STATIC_ASSERT_STMT((TIED_METHOD_SAY & G_WANT) == 0);
530
531     PUTBACK; /* sp is at *foot* of args, so this pops args from old stack */
532     PUSHSTACKi(PERLSI_MAGIC);
533     /* extend for object + args. If argc might wrap/truncate when cast
534      * to SSize_t and incremented, set to -1, which will trigger a panic in
535      * EXTEND().
536      * The weird way this is written is because g++ is dumb enough to
537      * warn "comparison is always false" on something like:
538      *
539      * sizeof(a) >= sizeof(b) && a >= B_t_MAX -1
540      *
541      * (where the LH condition is false)
542      */
543     extend_size =
544         (argc > (sizeof(argc) >= sizeof(SSize_t) ? SSize_t_MAX - 1 : argc))
545             ? -1 : (SSize_t)argc + 1;
546     EXTEND(SP, extend_size);
547     PUSHMARK(sp);
548     PUSHs(SvTIED_obj(sv, mg));
549     if (flags & TIED_METHOD_ARGUMENTS_ON_STACK) {
550         Copy(orig_sp + 2, sp + 1, argc, SV*); /* copy args to new stack */
551         sp += argc;
552     }
553     else if (argc) {
554         const U32 mortalize_not_needed
555             = flags & TIED_METHOD_MORTALIZE_NOT_NEEDED;
556         va_list args;
557         va_start(args, argc);
558         do {
559             SV *const arg = va_arg(args, SV *);
560             if(mortalize_not_needed)
561                 PUSHs(arg);
562             else
563                 mPUSHs(arg);
564         } while (--argc);
565         va_end(args);
566     }
567
568     PUTBACK;
569     ENTER_with_name("call_tied_method");
570     if (flags & TIED_METHOD_SAY) {
571         /* local $\ = "\n" */
572         SAVEGENERICSV(PL_ors_sv);
573         PL_ors_sv = newSVpvs("\n");
574     }
575     ret_args = call_sv(methname, (flags & G_WANT)|G_METHOD_NAMED);
576     SPAGAIN;
577     orig_sp = sp;
578     POPSTACK;
579     SPAGAIN;
580     if (ret_args) { /* copy results back to original stack */
581         EXTEND(sp, ret_args);
582         Copy(orig_sp - ret_args + 1, sp + 1, ret_args, SV*);
583         sp += ret_args;
584         PUTBACK;
585     }
586     LEAVE_with_name("call_tied_method");
587     return NORMAL;
588 }
589
590 #define tied_method0(a,b,c,d)           \
591     Perl_tied_method(aTHX_ a,b,c,d,G_SCALAR,0)
592 #define tied_method1(a,b,c,d,e)         \
593     Perl_tied_method(aTHX_ a,b,c,d,G_SCALAR,1,e)
594 #define tied_method2(a,b,c,d,e,f)       \
595     Perl_tied_method(aTHX_ a,b,c,d,G_SCALAR,2,e,f)
596
597 PP(pp_open)
598 {
599     dSP;
600     dMARK; dORIGMARK;
601     dTARGET;
602     SV *sv;
603     IO *io;
604     const char *tmps;
605     STRLEN len;
606     bool  ok;
607
608     GV * const gv = MUTABLE_GV(*++MARK);
609
610     if (!isGV(gv) && !(SvTYPE(gv) == SVt_PVLV && isGV_with_GP(gv)))
611         DIE(aTHX_ PL_no_usym, "filehandle");
612
613     if ((io = GvIOp(gv))) {
614         const MAGIC *mg;
615         IoFLAGS(GvIOp(gv)) &= ~IOf_UNTAINT;
616
617         if (IoDIRP(io))
618             Perl_croak(aTHX_ "Cannot open %" HEKf " as a filehandle: it is already open as a dirhandle",
619                              HEKfARG(GvENAME_HEK(gv)));
620
621         mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
622         if (mg) {
623             /* Method's args are same as ours ... */
624             /* ... except handle is replaced by the object */
625             return Perl_tied_method(aTHX_ SV_CONST(OPEN), mark - 1, MUTABLE_SV(io), mg,
626                                     G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK,
627                                     sp - mark);
628         }
629     }
630
631     if (MARK < SP) {
632         sv = *++MARK;
633     }
634     else {
635         sv = GvSVn(gv);
636     }
637
638     tmps = SvPV_const(sv, len);
639     ok = do_open6(gv, tmps, len, NULL, MARK+1, (SP-MARK));
640     SP = ORIGMARK;
641     if (ok)
642         PUSHi( (I32)PL_forkprocess );
643     else if (PL_forkprocess == 0)               /* we are a new child */
644         PUSHs(&PL_sv_zero);
645     else
646         RETPUSHUNDEF;
647     RETURN;
648 }
649
650 PP(pp_close)
651 {
652     dSP;
653     /* pp_coreargs pushes a NULL to indicate no args passed to
654      * CORE::close() */
655     GV * const gv =
656         MAXARG == 0 || (!TOPs && !POPs) ? PL_defoutgv : MUTABLE_GV(POPs);
657
658     if (MAXARG == 0)
659         EXTEND(SP, 1);
660
661     if (gv) {
662         IO * const io = GvIO(gv);
663         if (io) {
664             const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
665             if (mg) {
666                 return tied_method0(SV_CONST(CLOSE), SP, MUTABLE_SV(io), mg);
667             }
668         }
669     }
670     PUSHs(boolSV(do_close(gv, TRUE)));
671     RETURN;
672 }
673
674 PP(pp_pipe_op)
675 {
676 #ifdef HAS_PIPE
677     dSP;
678     IO *rstio;
679     IO *wstio;
680     int fd[2];
681
682     GV * const wgv = MUTABLE_GV(POPs);
683     GV * const rgv = MUTABLE_GV(POPs);
684
685     rstio = GvIOn(rgv);
686     if (IoIFP(rstio))
687         do_close(rgv, FALSE);
688
689     wstio = GvIOn(wgv);
690     if (IoIFP(wstio))
691         do_close(wgv, FALSE);
692
693     if (PerlProc_pipe(fd) < 0)
694         goto badexit;
695
696     IoIFP(rstio) = PerlIO_fdopen(fd[0], "r" PIPE_OPEN_MODE);
697     IoOFP(wstio) = PerlIO_fdopen(fd[1], "w" PIPE_OPEN_MODE);
698     IoOFP(rstio) = IoIFP(rstio);
699     IoIFP(wstio) = IoOFP(wstio);
700     IoTYPE(rstio) = IoTYPE_RDONLY;
701     IoTYPE(wstio) = IoTYPE_WRONLY;
702
703     if (!IoIFP(rstio) || !IoOFP(wstio)) {
704         if (IoIFP(rstio))
705             PerlIO_close(IoIFP(rstio));
706         else
707             PerlLIO_close(fd[0]);
708         if (IoOFP(wstio))
709             PerlIO_close(IoOFP(wstio));
710         else
711             PerlLIO_close(fd[1]);
712         goto badexit;
713     }
714 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
715     /* ensure close-on-exec */
716     if ((fd[0] > PL_maxsysfd && fcntl(fd[0], F_SETFD, FD_CLOEXEC) < 0) ||
717         (fd[1] > PL_maxsysfd && fcntl(fd[1], F_SETFD, FD_CLOEXEC) < 0))
718         goto badexit;
719 #endif
720     RETPUSHYES;
721
722   badexit:
723     RETPUSHUNDEF;
724 #else
725     DIE(aTHX_ PL_no_func, "pipe");
726 #endif
727 }
728
729 PP(pp_fileno)
730 {
731     dSP; dTARGET;
732     GV *gv;
733     IO *io;
734     PerlIO *fp;
735     const MAGIC *mg;
736
737     if (MAXARG < 1)
738         RETPUSHUNDEF;
739     gv = MUTABLE_GV(POPs);
740     io = GvIO(gv);
741
742     if (io
743         && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
744     {
745         return tied_method0(SV_CONST(FILENO), SP, MUTABLE_SV(io), mg);
746     }
747
748     if (io && IoDIRP(io)) {
749 #if defined(HAS_DIRFD) || defined(HAS_DIR_DD_FD)
750         PUSHi(my_dirfd(IoDIRP(io)));
751         RETURN;
752 #elif defined(ENOTSUP)
753         errno = ENOTSUP;        /* Operation not supported */
754         RETPUSHUNDEF;
755 #elif defined(EOPNOTSUPP)
756         errno = EOPNOTSUPP;     /* Operation not supported on socket */
757         RETPUSHUNDEF;
758 #else
759         errno = EINVAL;         /* Invalid argument */
760         RETPUSHUNDEF;
761 #endif
762     }
763
764     if (!io || !(fp = IoIFP(io))) {
765         /* Can't do this because people seem to do things like
766            defined(fileno($foo)) to check whether $foo is a valid fh.
767
768            report_evil_fh(gv);
769             */
770         RETPUSHUNDEF;
771     }
772
773     PUSHi(PerlIO_fileno(fp));
774     RETURN;
775 }
776
777 PP(pp_umask)
778 {
779     dSP;
780 #ifdef HAS_UMASK
781     dTARGET;
782     Mode_t anum;
783
784     if (MAXARG < 1 || (!TOPs && !POPs)) {
785         anum = PerlLIO_umask(022);
786         /* setting it to 022 between the two calls to umask avoids
787          * to have a window where the umask is set to 0 -- meaning
788          * that another thread could create world-writeable files. */
789         if (anum != 022)
790             (void)PerlLIO_umask(anum);
791     }
792     else
793         anum = PerlLIO_umask(POPi);
794     TAINT_PROPER("umask");
795     XPUSHi(anum);
796 #else
797     /* Only DIE if trying to restrict permissions on "user" (self).
798      * Otherwise it's harmless and more useful to just return undef
799      * since 'group' and 'other' concepts probably don't exist here. */
800     if (MAXARG >= 1 && (TOPs||POPs) && (POPi & 0700))
801         DIE(aTHX_ "umask not implemented");
802     XPUSHs(&PL_sv_undef);
803 #endif
804     RETURN;
805 }
806
807 PP(pp_binmode)
808 {
809     dSP;
810     GV *gv;
811     IO *io;
812     PerlIO *fp;
813     SV *discp = NULL;
814
815     if (MAXARG < 1)
816         RETPUSHUNDEF;
817     if (MAXARG > 1) {
818         discp = POPs;
819     }
820
821     gv = MUTABLE_GV(POPs);
822     io = GvIO(gv);
823
824     if (io) {
825         const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
826         if (mg) {
827             /* This takes advantage of the implementation of the varargs
828                function, which I don't think that the optimiser will be able to
829                figure out. Although, as it's a static function, in theory it
830                could.  */
831             return Perl_tied_method(aTHX_ SV_CONST(BINMODE), SP, MUTABLE_SV(io), mg,
832                                     G_SCALAR|TIED_METHOD_MORTALIZE_NOT_NEEDED,
833                                     discp ? 1 : 0, discp);
834         }
835     }
836
837     if (!io || !(fp = IoIFP(io))) {
838         report_evil_fh(gv);
839         SETERRNO(EBADF,RMS_IFI);
840         RETPUSHUNDEF;
841     }
842
843     PUTBACK;
844     {
845         STRLEN len = 0;
846         const char *d = NULL;
847         int mode;
848         if (discp)
849             d = SvPV_const(discp, len);
850         mode = mode_from_discipline(d, len);
851         if (PerlIO_binmode(aTHX_ fp, IoTYPE(io), mode, d)) {
852             if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {
853                 if (!PerlIO_binmode(aTHX_ IoOFP(io), IoTYPE(io), mode, d)) {
854                     SPAGAIN;
855                     RETPUSHUNDEF;
856                 }
857             }
858             SPAGAIN;
859             RETPUSHYES;
860         }
861         else {
862             SPAGAIN;
863             RETPUSHUNDEF;
864         }
865     }
866 }
867
868 PP(pp_tie)
869 {
870     dSP; dMARK;
871     HV* stash;
872     GV *gv = NULL;
873     SV *sv;
874     const I32 markoff = MARK - PL_stack_base;
875     const char *methname;
876     int how = PERL_MAGIC_tied;
877     U32 items;
878     SV *varsv = *++MARK;
879
880     switch(SvTYPE(varsv)) {
881         case SVt_PVHV:
882         {
883             HE *entry;
884             methname = "TIEHASH";
885             if (HvLAZYDEL(varsv) && (entry = HvEITER((HV *)varsv))) {
886                 HvLAZYDEL_off(varsv);
887                 hv_free_ent((HV *)varsv, entry);
888             }
889             HvEITER_set(MUTABLE_HV(varsv), 0);
890             break;
891         }
892         case SVt_PVAV:
893             methname = "TIEARRAY";
894             if (!AvREAL(varsv)) {
895                 if (!AvREIFY(varsv))
896                     Perl_croak(aTHX_ "Cannot tie unreifiable array");
897                 av_clear((AV *)varsv);
898                 AvREIFY_off(varsv);
899                 AvREAL_on(varsv);
900             }
901             break;
902         case SVt_PVGV:
903         case SVt_PVLV:
904             if (isGV_with_GP(varsv) && !SvFAKE(varsv)) {
905                 methname = "TIEHANDLE";
906                 how = PERL_MAGIC_tiedscalar;
907                 /* For tied filehandles, we apply tiedscalar magic to the IO
908                    slot of the GP rather than the GV itself. AMS 20010812 */
909                 if (!GvIOp(varsv))
910                     GvIOp(varsv) = newIO();
911                 varsv = MUTABLE_SV(GvIOp(varsv));
912                 break;
913             }
914             if (SvTYPE(varsv) == SVt_PVLV && LvTYPE(varsv) == 'y') {
915                 vivify_defelem(varsv);
916                 varsv = LvTARG(varsv);
917             }
918             /* FALLTHROUGH */
919         default:
920             methname = "TIESCALAR";
921             how = PERL_MAGIC_tiedscalar;
922             break;
923     }
924     items = SP - MARK++;
925     if (sv_isobject(*MARK)) { /* Calls GET magic. */
926         ENTER_with_name("call_TIE");
927         PUSHSTACKi(PERLSI_MAGIC);
928         PUSHMARK(SP);
929         EXTEND(SP,(I32)items);
930         while (items--)
931             PUSHs(*MARK++);
932         PUTBACK;
933         call_method(methname, G_SCALAR);
934     }
935     else {
936         /* Can't use call_method here, else this: fileno FOO; tie @a, "FOO"
937          * will attempt to invoke IO::File::TIEARRAY, with (best case) the
938          * wrong error message, and worse case, supreme action at a distance.
939          * (Sorry obfuscation writers. You're not going to be given this one.)
940          */
941        stash = gv_stashsv(*MARK, 0);
942        if (!stash) {
943            if (SvROK(*MARK))
944                DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" SVf "\"",
945                    methname, SVfARG(*MARK));
946            else if (isGV(*MARK)) {
947                /* If the glob doesn't name an existing package, using
948                 * SVfARG(*MARK) would yield "*Foo::Bar" or *main::Foo. So
949                 * generate the name for the error message explicitly. */
950                SV *stashname = sv_2mortal(newSV(0));
951                gv_fullname4(stashname, (GV *) *MARK, NULL, FALSE);
952                DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" SVf "\"",
953                    methname, SVfARG(stashname));
954            }
955            else {
956                SV *stashname = !SvPOK(*MARK) ? &PL_sv_no
957                              : SvCUR(*MARK)  ? *MARK
958                              :                 sv_2mortal(newSVpvs("main"));
959                DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" SVf "\""
960                    " (perhaps you forgot to load \"%" SVf "\"?)",
961                    methname, SVfARG(stashname), SVfARG(stashname));
962            }
963        }
964        else if (!(gv = gv_fetchmethod(stash, methname))) {
965            /* The effective name can only be NULL for stashes that have
966             * been deleted from the symbol table, which this one can't
967             * be, since we just looked it up by name.
968             */
969            DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" HEKf "\"",
970                methname, HvENAME_HEK_NN(stash));
971        }
972         ENTER_with_name("call_TIE");
973         PUSHSTACKi(PERLSI_MAGIC);
974         PUSHMARK(SP);
975         EXTEND(SP,(I32)items);
976         while (items--)
977             PUSHs(*MARK++);
978         PUTBACK;
979         call_sv(MUTABLE_SV(GvCV(gv)), G_SCALAR);
980     }
981     SPAGAIN;
982
983     sv = TOPs;
984     POPSTACK;
985     if (sv_isobject(sv)) {
986         sv_unmagic(varsv, how);
987         /* Croak if a self-tie on an aggregate is attempted. */
988         if (varsv == SvRV(sv) &&
989             (SvTYPE(varsv) == SVt_PVAV ||
990              SvTYPE(varsv) == SVt_PVHV))
991             Perl_croak(aTHX_
992                        "Self-ties of arrays and hashes are not supported");
993         sv_magic(varsv, (SvRV(sv) == varsv ? NULL : sv), how, NULL, 0);
994     }
995     LEAVE_with_name("call_TIE");
996     SP = PL_stack_base + markoff;
997     PUSHs(sv);
998     RETURN;
999 }
1000
1001
1002 /* also used for: pp_dbmclose() */
1003
1004 PP(pp_untie)
1005 {
1006     dSP;
1007     MAGIC *mg;
1008     SV *sv = POPs;
1009     const char how = (SvTYPE(sv) == SVt_PVHV || SvTYPE(sv) == SVt_PVAV)
1010                 ? PERL_MAGIC_tied : PERL_MAGIC_tiedscalar;
1011
1012     if (isGV_with_GP(sv) && !SvFAKE(sv) && !(sv = MUTABLE_SV(GvIOp(sv))))
1013         RETPUSHYES;
1014
1015     if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y' &&
1016         !(sv = defelem_target(sv, NULL))) RETPUSHUNDEF;
1017
1018     if ((mg = SvTIED_mg(sv, how))) {
1019         SV * const obj = SvRV(SvTIED_obj(sv, mg));
1020         if (obj && SvSTASH(obj)) {
1021             GV * const gv = gv_fetchmethod_autoload(SvSTASH(obj), "UNTIE", FALSE);
1022             CV *cv;
1023             if (gv && isGV(gv) && (cv = GvCV(gv))) {
1024                PUSHMARK(SP);
1025                PUSHs(SvTIED_obj(MUTABLE_SV(gv), mg));
1026                mXPUSHi(SvREFCNT(obj) - 1);
1027                PUTBACK;
1028                ENTER_with_name("call_UNTIE");
1029                call_sv(MUTABLE_SV(cv), G_VOID);
1030                LEAVE_with_name("call_UNTIE");
1031                SPAGAIN;
1032             }
1033             else if (mg && SvREFCNT(obj) > 1) {
1034                 Perl_ck_warner(aTHX_ packWARN(WARN_UNTIE),
1035                                "untie attempted while %" UVuf " inner references still exist",
1036                                (UV)SvREFCNT(obj) - 1 ) ;
1037             }
1038         }
1039     }
1040     sv_unmagic(sv, how) ;
1041     RETPUSHYES;
1042 }
1043
1044 PP(pp_tied)
1045 {
1046     dSP;
1047     const MAGIC *mg;
1048     dTOPss;
1049     const char how = (SvTYPE(sv) == SVt_PVHV || SvTYPE(sv) == SVt_PVAV)
1050                 ? PERL_MAGIC_tied : PERL_MAGIC_tiedscalar;
1051
1052     if (isGV_with_GP(sv) && !SvFAKE(sv) && !(sv = MUTABLE_SV(GvIOp(sv))))
1053         goto ret_undef;
1054
1055     if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y' &&
1056         !(sv = defelem_target(sv, NULL))) goto ret_undef;
1057
1058     if ((mg = SvTIED_mg(sv, how))) {
1059         SETs(SvTIED_obj(sv, mg));
1060         return NORMAL; /* PUTBACK not needed, pp_tied never moves SP */
1061     }
1062     ret_undef:
1063     SETs(&PL_sv_undef);
1064     return NORMAL;
1065 }
1066
1067 PP(pp_dbmopen)
1068 {
1069     dSP;
1070     dPOPPOPssrl;
1071     HV* stash;
1072     GV *gv = NULL;
1073
1074     HV * const hv = MUTABLE_HV(POPs);
1075     SV * const sv = newSVpvs_flags("AnyDBM_File", SVs_TEMP);
1076     stash = gv_stashsv(sv, 0);
1077     if (!stash || !(gv = gv_fetchmethod(stash, "TIEHASH"))) {
1078         PUTBACK;
1079         require_pv("AnyDBM_File.pm");
1080         SPAGAIN;
1081         if (!stash || !(gv = gv_fetchmethod(stash, "TIEHASH")))
1082             DIE(aTHX_ "No dbm on this machine");
1083     }
1084
1085     ENTER;
1086     PUSHMARK(SP);
1087
1088     EXTEND(SP, 5);
1089     PUSHs(sv);
1090     PUSHs(left);
1091     if (SvIV(right))
1092         mPUSHu(O_RDWR|O_CREAT);
1093     else
1094     {
1095         mPUSHu(O_RDWR);
1096         if (!SvOK(right)) right = &PL_sv_no;
1097     }
1098     PUSHs(right);
1099     PUTBACK;
1100     call_sv(MUTABLE_SV(GvCV(gv)), G_SCALAR);
1101     SPAGAIN;
1102
1103     if (!sv_isobject(TOPs)) {
1104         SP--;
1105         PUSHMARK(SP);
1106         PUSHs(sv);
1107         PUSHs(left);
1108         mPUSHu(O_RDONLY);
1109         PUSHs(right);
1110         PUTBACK;
1111         call_sv(MUTABLE_SV(GvCV(gv)), G_SCALAR);
1112         SPAGAIN;
1113         if (sv_isobject(TOPs))
1114             goto retie;
1115     }
1116     else {
1117         retie:
1118         sv_unmagic(MUTABLE_SV(hv), PERL_MAGIC_tied);
1119         sv_magic(MUTABLE_SV(hv), TOPs, PERL_MAGIC_tied, NULL, 0);
1120     }
1121     LEAVE;
1122     RETURN;
1123 }
1124
1125 PP(pp_sselect)
1126 {
1127 #ifdef HAS_SELECT
1128     dSP; dTARGET;
1129     I32 i;
1130     I32 j;
1131     char *s;
1132     SV *sv;
1133     NV value;
1134     I32 maxlen = 0;
1135     I32 nfound;
1136     struct timeval timebuf;
1137     struct timeval *tbuf = &timebuf;
1138     I32 growsize;
1139     char *fd_sets[4];
1140     SV *svs[4];
1141 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1142         I32 masksize;
1143         I32 offset;
1144         I32 k;
1145
1146 #   if BYTEORDER & 0xf0000
1147 #       define ORDERBYTE (0x88888888 - BYTEORDER)
1148 #   else
1149 #       define ORDERBYTE (0x4444 - BYTEORDER)
1150 #   endif
1151
1152 #endif
1153
1154     SP -= 4;
1155     for (i = 1; i <= 3; i++) {
1156         SV * const sv = svs[i] = SP[i];
1157         SvGETMAGIC(sv);
1158         if (!SvOK(sv))
1159             continue;
1160         if (SvREADONLY(sv)) {
1161             if (!(SvPOK(sv) && SvCUR(sv) == 0))
1162                 Perl_croak_no_modify();
1163         }
1164         else if (SvIsCOW(sv)) sv_force_normal_flags(sv, 0);
1165         if (!SvPOK(sv)) {
1166             if (!SvPOKp(sv))
1167                 Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
1168                                     "Non-string passed as bitmask");
1169             if (SvGAMAGIC(sv)) {
1170                 svs[i] = sv_newmortal();
1171                 sv_copypv_nomg(svs[i], sv);
1172             }
1173             else
1174                 SvPV_force_nomg_nolen(sv); /* force string conversion */
1175         }
1176         j = SvCUR(svs[i]);
1177         if (maxlen < j)
1178             maxlen = j;
1179     }
1180
1181 /* little endians can use vecs directly */
1182 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1183 #  ifdef NFDBITS
1184
1185 #    ifndef NBBY
1186 #     define NBBY 8
1187 #    endif
1188
1189     masksize = NFDBITS / NBBY;
1190 #  else
1191     masksize = sizeof(long);    /* documented int, everyone seems to use long */
1192 #  endif
1193     Zero(&fd_sets[0], 4, char*);
1194 #endif
1195
1196 #  if SELECT_MIN_BITS == 1
1197     growsize = sizeof(fd_set);
1198 #  else
1199 #   if defined(__GLIBC__) && defined(__FD_SETSIZE)
1200 #      undef SELECT_MIN_BITS
1201 #      define SELECT_MIN_BITS __FD_SETSIZE
1202 #   endif
1203     /* If SELECT_MIN_BITS is greater than one we most probably will want
1204      * to align the sizes with SELECT_MIN_BITS/8 because for example
1205      * in many little-endian (Intel, Alpha) systems (Linux, OS/2, Digital
1206      * UNIX, Solaris, Darwin) the smallest quantum select() operates
1207      * on (sets/tests/clears bits) is 32 bits.  */
1208     growsize = maxlen + (SELECT_MIN_BITS/8 - (maxlen % (SELECT_MIN_BITS/8)));
1209 #  endif
1210
1211     sv = SP[4];
1212     SvGETMAGIC(sv);
1213     if (SvOK(sv)) {
1214         value = SvNV_nomg(sv);
1215         if (value < 0.0)
1216             value = 0.0;
1217         timebuf.tv_sec = (long)value;
1218         value -= (NV)timebuf.tv_sec;
1219         timebuf.tv_usec = (long)(value * 1000000.0);
1220     }
1221     else
1222         tbuf = NULL;
1223
1224     for (i = 1; i <= 3; i++) {
1225         sv = svs[i];
1226         if (!SvOK(sv) || SvCUR(sv) == 0) {
1227             fd_sets[i] = 0;
1228             continue;
1229         }
1230         assert(SvPOK(sv));
1231         j = SvLEN(sv);
1232         if (j < growsize) {
1233             Sv_Grow(sv, growsize);
1234         }
1235         j = SvCUR(sv);
1236         s = SvPVX(sv) + j;
1237         while (++j <= growsize) {
1238             *s++ = '\0';
1239         }
1240
1241 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1242         s = SvPVX(sv);
1243         Newx(fd_sets[i], growsize, char);
1244         for (offset = 0; offset < growsize; offset += masksize) {
1245             for (j = 0, k=ORDERBYTE; j < masksize; j++, (k >>= 4))
1246                 fd_sets[i][j+offset] = s[(k % masksize) + offset];
1247         }
1248 #else
1249         fd_sets[i] = SvPVX(sv);
1250 #endif
1251     }
1252
1253 #ifdef PERL_IRIX5_SELECT_TIMEVAL_VOID_CAST
1254     /* Can't make just the (void*) conditional because that would be
1255      * cpp #if within cpp macro, and not all compilers like that. */
1256     nfound = PerlSock_select(
1257         maxlen * 8,
1258         (Select_fd_set_t) fd_sets[1],
1259         (Select_fd_set_t) fd_sets[2],
1260         (Select_fd_set_t) fd_sets[3],
1261         (void*) tbuf); /* Workaround for compiler bug. */
1262 #else
1263     nfound = PerlSock_select(
1264         maxlen * 8,
1265         (Select_fd_set_t) fd_sets[1],
1266         (Select_fd_set_t) fd_sets[2],
1267         (Select_fd_set_t) fd_sets[3],
1268         tbuf);
1269 #endif
1270     for (i = 1; i <= 3; i++) {
1271         if (fd_sets[i]) {
1272             sv = svs[i];
1273 #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678
1274             s = SvPVX(sv);
1275             for (offset = 0; offset < growsize; offset += masksize) {
1276                 for (j = 0, k=ORDERBYTE; j < masksize; j++, (k >>= 4))
1277                     s[(k % masksize) + offset] = fd_sets[i][j+offset];
1278             }
1279             Safefree(fd_sets[i]);
1280 #endif
1281             if (sv != SP[i])
1282                 SvSetMagicSV(SP[i], sv);
1283             else
1284                 SvSETMAGIC(sv);
1285         }
1286     }
1287
1288     PUSHi(nfound);
1289     if (GIMME_V == G_ARRAY && tbuf) {
1290         value = (NV)(timebuf.tv_sec) +
1291                 (NV)(timebuf.tv_usec) / 1000000.0;
1292         mPUSHn(value);
1293     }
1294     RETURN;
1295 #else
1296     DIE(aTHX_ "select not implemented");
1297 #endif
1298 }
1299
1300 /*
1301
1302 =head1 GV Functions
1303
1304 =for apidoc setdefout
1305
1306 Sets C<PL_defoutgv>, the default file handle for output, to the passed in
1307 typeglob.  As C<PL_defoutgv> "owns" a reference on its typeglob, the reference
1308 count of the passed in typeglob is increased by one, and the reference count
1309 of the typeglob that C<PL_defoutgv> points to is decreased by one.
1310
1311 =cut
1312 */
1313
1314 void
1315 Perl_setdefout(pTHX_ GV *gv)
1316 {
1317     GV *oldgv = PL_defoutgv;
1318
1319     PERL_ARGS_ASSERT_SETDEFOUT;
1320
1321     SvREFCNT_inc_simple_void_NN(gv);
1322     PL_defoutgv = gv;
1323     SvREFCNT_dec(oldgv);
1324 }
1325
1326 PP(pp_select)
1327 {
1328     dSP; dTARGET;
1329     HV *hv;
1330     GV * const newdefout = (PL_op->op_private > 0) ? (MUTABLE_GV(POPs)) : NULL;
1331     GV * egv = GvEGVx(PL_defoutgv);
1332     GV * const *gvp;
1333
1334     if (!egv)
1335         egv = PL_defoutgv;
1336     hv = isGV_with_GP(egv) ? GvSTASH(egv) : NULL;
1337     gvp = hv && HvENAME(hv)
1338                 ? (GV**)hv_fetch(hv, GvNAME(egv), HEK_UTF8(GvNAME_HEK(egv)) ? -GvNAMELEN(egv) : GvNAMELEN(egv), FALSE)
1339                 : NULL;
1340     if (gvp && *gvp == egv) {
1341             gv_efullname4(TARG, PL_defoutgv, NULL, TRUE);
1342             XPUSHTARG;
1343     }
1344     else {
1345             mXPUSHs(newRV(MUTABLE_SV(egv)));
1346     }
1347
1348     if (newdefout) {
1349         if (!GvIO(newdefout))
1350             gv_IOadd(newdefout);
1351         setdefout(newdefout);
1352     }
1353
1354     RETURN;
1355 }
1356
1357 PP(pp_getc)
1358 {
1359     dSP; dTARGET;
1360     /* pp_coreargs pushes a NULL to indicate no args passed to
1361      * CORE::getc() */
1362     GV * const gv =
1363         MAXARG==0 || (!TOPs && !POPs) ? PL_stdingv : MUTABLE_GV(POPs);
1364     IO *const io = GvIO(gv);
1365
1366     if (MAXARG == 0)
1367         EXTEND(SP, 1);
1368
1369     if (io) {
1370         const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
1371         if (mg) {
1372             const U8 gimme = GIMME_V;
1373             Perl_tied_method(aTHX_ SV_CONST(GETC), SP, MUTABLE_SV(io), mg, gimme, 0);
1374             if (gimme == G_SCALAR) {
1375                 SPAGAIN;
1376                 SvSetMagicSV_nosteal(TARG, TOPs);
1377             }
1378             return NORMAL;
1379         }
1380     }
1381     if (!gv || do_eof(gv)) { /* make sure we have fp with something */
1382         if (!io || (!IoIFP(io) && IoTYPE(io) != IoTYPE_WRONLY))
1383             report_evil_fh(gv);
1384         SETERRNO(EBADF,RMS_IFI);
1385         RETPUSHUNDEF;
1386     }
1387     TAINT;
1388     sv_setpvs(TARG, " ");
1389     *SvPVX(TARG) = PerlIO_getc(IoIFP(GvIOp(gv))); /* should never be EOF */
1390     if (PerlIO_isutf8(IoIFP(GvIOp(gv)))) {
1391         /* Find out how many bytes the char needs */
1392         Size_t len = UTF8SKIP(SvPVX_const(TARG));
1393         if (len > 1) {
1394             SvGROW(TARG,len+1);
1395             len = PerlIO_read(IoIFP(GvIOp(gv)),SvPVX(TARG)+1,len-1);
1396             SvCUR_set(TARG,1+len);
1397         }
1398         SvUTF8_on(TARG);
1399     }
1400     else SvUTF8_off(TARG);
1401     PUSHTARG;
1402     RETURN;
1403 }
1404
1405 STATIC OP *
1406 S_doform(pTHX_ CV *cv, GV *gv, OP *retop)
1407 {
1408     PERL_CONTEXT *cx;
1409     const U8 gimme = GIMME_V;
1410
1411     PERL_ARGS_ASSERT_DOFORM;
1412
1413     if (CvCLONE(cv))
1414         cv = MUTABLE_CV(sv_2mortal(MUTABLE_SV(cv_clone(cv))));
1415
1416     cx = cx_pushblock(CXt_FORMAT, gimme, PL_stack_sp, PL_savestack_ix);
1417     cx_pushformat(cx, cv, retop, gv);
1418     if (CvDEPTH(cv) >= 2)
1419         pad_push(CvPADLIST(cv), CvDEPTH(cv));
1420     PAD_SET_CUR_NOSAVE(CvPADLIST(cv), CvDEPTH(cv));
1421
1422     setdefout(gv);          /* locally select filehandle so $% et al work */
1423     return CvSTART(cv);
1424 }
1425
1426 PP(pp_enterwrite)
1427 {
1428     dSP;
1429     GV *gv;
1430     IO *io;
1431     GV *fgv;
1432     CV *cv = NULL;
1433
1434     if (MAXARG == 0) {
1435         EXTEND(SP, 1);
1436         gv = PL_defoutgv;
1437     }
1438     else {
1439         gv = MUTABLE_GV(POPs);
1440         if (!gv)
1441             gv = PL_defoutgv;
1442     }
1443     io = GvIO(gv);
1444     if (!io) {
1445         RETPUSHNO;
1446     }
1447     if (IoFMT_GV(io))
1448         fgv = IoFMT_GV(io);
1449     else
1450         fgv = gv;
1451
1452     assert(fgv);
1453
1454     cv = GvFORM(fgv);
1455     if (!cv) {
1456         SV * const tmpsv = sv_newmortal();
1457         gv_efullname4(tmpsv, fgv, NULL, FALSE);
1458         DIE(aTHX_ "Undefined format \"%" SVf "\" called", SVfARG(tmpsv));
1459     }
1460     IoFLAGS(io) &= ~IOf_DIDTOP;
1461     RETURNOP(doform(cv,gv,PL_op->op_next));
1462 }
1463
1464 PP(pp_leavewrite)
1465 {
1466     dSP;
1467     GV * const gv = CX_CUR()->blk_format.gv;
1468     IO * const io = GvIOp(gv);
1469     PerlIO *ofp;
1470     PerlIO *fp;
1471     PERL_CONTEXT *cx;
1472     OP *retop;
1473     bool is_return = cBOOL(PL_op->op_type == OP_RETURN);
1474
1475     if (is_return || !io || !(ofp = IoOFP(io)))
1476         goto forget_top;
1477
1478     DEBUG_f(PerlIO_printf(Perl_debug_log, "left=%ld, todo=%ld\n",
1479           (long)IoLINES_LEFT(io), (long)FmLINES(PL_formtarget)));
1480
1481     if (IoLINES_LEFT(io) < FmLINES(PL_formtarget) &&
1482         PL_formtarget != PL_toptarget)
1483     {
1484         GV *fgv;
1485         CV *cv;
1486         if (!IoTOP_GV(io)) {
1487             GV *topgv;
1488
1489             if (!IoTOP_NAME(io)) {
1490                 SV *topname;
1491                 if (!IoFMT_NAME(io))
1492                     IoFMT_NAME(io) = savepv(GvNAME(gv));
1493                 topname = sv_2mortal(Perl_newSVpvf(aTHX_ "%" HEKf "_TOP",
1494                                         HEKfARG(GvNAME_HEK(gv))));
1495                 topgv = gv_fetchsv(topname, 0, SVt_PVFM);
1496                 if ((topgv && GvFORM(topgv)) ||
1497                   !gv_fetchpvs("top", GV_NOTQUAL, SVt_PVFM))
1498                     IoTOP_NAME(io) = savesvpv(topname);
1499                 else
1500                     IoTOP_NAME(io) = savepvs("top");
1501             }
1502             topgv = gv_fetchpv(IoTOP_NAME(io), 0, SVt_PVFM);
1503             if (!topgv || !GvFORM(topgv)) {
1504                 IoLINES_LEFT(io) = IoPAGE_LEN(io);
1505                 goto forget_top;
1506             }
1507             IoTOP_GV(io) = topgv;
1508         }
1509         if (IoFLAGS(io) & IOf_DIDTOP) { /* Oh dear.  It still doesn't fit. */
1510             I32 lines = IoLINES_LEFT(io);
1511             const char *s = SvPVX_const(PL_formtarget);
1512             const char *e = SvEND(PL_formtarget);
1513             if (lines <= 0)             /* Yow, header didn't even fit!!! */
1514                 goto forget_top;
1515             while (lines-- > 0) {
1516                 s = (char *) memchr(s, '\n', e - s);
1517                 if (!s)
1518                     break;
1519                 s++;
1520             }
1521             if (s) {
1522                 const STRLEN save = SvCUR(PL_formtarget);
1523                 SvCUR_set(PL_formtarget, s - SvPVX_const(PL_formtarget));
1524                 do_print(PL_formtarget, ofp);
1525                 SvCUR_set(PL_formtarget, save);
1526                 sv_chop(PL_formtarget, s);
1527                 FmLINES(PL_formtarget) -= IoLINES_LEFT(io);
1528             }
1529         }
1530         if (IoLINES_LEFT(io) >= 0 && IoPAGE(io) > 0)
1531             do_print(GvSV(gv_fetchpvs("\f", GV_ADD, SVt_PV)), ofp);
1532         IoLINES_LEFT(io) = IoPAGE_LEN(io);
1533         IoPAGE(io)++;
1534         PL_formtarget = PL_toptarget;
1535         IoFLAGS(io) |= IOf_DIDTOP;
1536         fgv = IoTOP_GV(io);
1537         assert(fgv); /* IoTOP_GV(io) should have been set above */
1538         cv = GvFORM(fgv);
1539         if (!cv) {
1540             SV * const sv = sv_newmortal();
1541             gv_efullname4(sv, fgv, NULL, FALSE);
1542             DIE(aTHX_ "Undefined top format \"%" SVf "\" called", SVfARG(sv));
1543         }
1544         return doform(cv, gv, PL_op);
1545     }
1546
1547   forget_top:
1548     cx = CX_CUR();
1549     assert(CxTYPE(cx) == CXt_FORMAT);
1550     SP = PL_stack_base + cx->blk_oldsp; /* ignore retval of formline */
1551     CX_LEAVE_SCOPE(cx);
1552     cx_popformat(cx);
1553     cx_popblock(cx);
1554     retop = cx->blk_sub.retop;
1555     CX_POP(cx);
1556
1557     EXTEND(SP, 1);
1558
1559     if (is_return)
1560         /* XXX the semantics of doing 'return' in a format aren't documented.
1561          * Currently we ignore any args to 'return' and just return
1562          * a single undef in both scalar and list contexts
1563          */
1564         PUSHs(&PL_sv_undef);
1565     else if (!io || !(fp = IoOFP(io))) {
1566         if (io && IoIFP(io))
1567             report_wrongway_fh(gv, '<');
1568         else
1569             report_evil_fh(gv);
1570         PUSHs(&PL_sv_no);
1571     }
1572     else {
1573         if ((IoLINES_LEFT(io) -= FmLINES(PL_formtarget)) < 0) {
1574             Perl_ck_warner(aTHX_ packWARN(WARN_IO), "page overflow");
1575         }
1576         if (!do_print(PL_formtarget, fp))
1577             PUSHs(&PL_sv_no);
1578         else {
1579             FmLINES(PL_formtarget) = 0;
1580             SvCUR_set(PL_formtarget, 0);
1581             *SvEND(PL_formtarget) = '\0';
1582             if (IoFLAGS(io) & IOf_FLUSH)
1583                 (void)PerlIO_flush(fp);
1584             PUSHs(&PL_sv_yes);
1585         }
1586     }
1587     PL_formtarget = PL_bodytarget;
1588     RETURNOP(retop);
1589 }
1590
1591 PP(pp_prtf)
1592 {
1593     dSP; dMARK; dORIGMARK;
1594     PerlIO *fp;
1595
1596     GV * const gv
1597         = (PL_op->op_flags & OPf_STACKED) ? MUTABLE_GV(*++MARK) : PL_defoutgv;
1598     IO *const io = GvIO(gv);
1599
1600     /* Treat empty list as "" */
1601     if (MARK == SP) XPUSHs(&PL_sv_no);
1602
1603     if (io) {
1604         const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
1605         if (mg) {
1606             if (MARK == ORIGMARK) {
1607                 MEXTEND(SP, 1);
1608                 ++MARK;
1609                 Move(MARK, MARK + 1, (SP - MARK) + 1, SV*);
1610                 ++SP;
1611             }
1612             return Perl_tied_method(aTHX_ SV_CONST(PRINTF), mark - 1, MUTABLE_SV(io),
1613                                     mg,
1614                                     G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK,
1615                                     sp - mark);
1616         }
1617     }
1618
1619     if (!io) {
1620         report_evil_fh(gv);
1621         SETERRNO(EBADF,RMS_IFI);
1622         goto just_say_no;
1623     }
1624     else if (!(fp = IoOFP(io))) {
1625         if (IoIFP(io))
1626             report_wrongway_fh(gv, '<');
1627         else if (ckWARN(WARN_CLOSED))
1628             report_evil_fh(gv);
1629         SETERRNO(EBADF,IoIFP(io)?RMS_FAC:RMS_IFI);
1630         goto just_say_no;
1631     }
1632     else {
1633         SV *sv = sv_newmortal();
1634         do_sprintf(sv, SP - MARK, MARK + 1);
1635         if (!do_print(sv, fp))
1636             goto just_say_no;
1637
1638         if (IoFLAGS(io) & IOf_FLUSH)
1639             if (PerlIO_flush(fp) == EOF)
1640                 goto just_say_no;
1641     }
1642     SP = ORIGMARK;
1643     PUSHs(&PL_sv_yes);
1644     RETURN;
1645
1646   just_say_no:
1647     SP = ORIGMARK;
1648     PUSHs(&PL_sv_undef);
1649     RETURN;
1650 }
1651
1652 PP(pp_sysopen)
1653 {
1654     dSP;
1655     const int perm = (MAXARG > 3 && (TOPs || POPs)) ? POPi : 0666;
1656     const int mode = POPi;
1657     SV * const sv = POPs;
1658     GV * const gv = MUTABLE_GV(POPs);
1659     STRLEN len;
1660
1661     /* Need TIEHANDLE method ? */
1662     const char * const tmps = SvPV_const(sv, len);
1663     if (do_open_raw(gv, tmps, len, mode, perm, NULL)) {
1664         IoLINES(GvIOp(gv)) = 0;
1665         PUSHs(&PL_sv_yes);
1666     }
1667     else {
1668         PUSHs(&PL_sv_undef);
1669     }
1670     RETURN;
1671 }
1672
1673
1674 /* also used for: pp_read() and pp_recv() (where supported) */
1675
1676 PP(pp_sysread)
1677 {
1678     dSP; dMARK; dORIGMARK; dTARGET;
1679     SSize_t offset;
1680     IO *io;
1681     char *buffer;
1682     STRLEN orig_size;
1683     SSize_t length;
1684     SSize_t count;
1685     SV *bufsv;
1686     STRLEN blen;
1687     int fp_utf8;
1688     int buffer_utf8;
1689     SV *read_target;
1690     Size_t got = 0;
1691     Size_t wanted;
1692     bool charstart = FALSE;
1693     STRLEN charskip = 0;
1694     STRLEN skip = 0;
1695     GV * const gv = MUTABLE_GV(*++MARK);
1696     int fd;
1697
1698     if ((PL_op->op_type == OP_READ || PL_op->op_type == OP_SYSREAD)
1699         && gv && (io = GvIO(gv)) )
1700     {
1701         const MAGIC *const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
1702         if (mg) {
1703             return Perl_tied_method(aTHX_ SV_CONST(READ), mark - 1, MUTABLE_SV(io), mg,
1704                                     G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK,
1705                                     sp - mark);
1706         }
1707     }
1708
1709     if (!gv)
1710         goto say_undef;
1711     bufsv = *++MARK;
1712     if (! SvOK(bufsv))
1713         SvPVCLEAR(bufsv);
1714     length = SvIVx(*++MARK);
1715     if (length < 0)
1716         DIE(aTHX_ "Negative length");
1717     SETERRNO(0,0);
1718     if (MARK < SP)
1719         offset = SvIVx(*++MARK);
1720     else
1721         offset = 0;
1722     io = GvIO(gv);
1723     if (!io || !IoIFP(io)) {
1724         report_evil_fh(gv);
1725         SETERRNO(EBADF,RMS_IFI);
1726         goto say_undef;
1727     }
1728
1729     /* Note that fd can here validly be -1, don't check it yet. */
1730     fd = PerlIO_fileno(IoIFP(io));
1731
1732     if ((fp_utf8 = PerlIO_isutf8(IoIFP(io))) && !IN_BYTES) {
1733         if (PL_op->op_type == OP_SYSREAD || PL_op->op_type == OP_RECV) {
1734             Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED),
1735                              "%s() is deprecated on :utf8 handles. "
1736                              "This will be a fatal error in Perl 5.30",
1737                              OP_DESC(PL_op));
1738         }
1739         buffer = SvPVutf8_force(bufsv, blen);
1740         /* UTF-8 may not have been set if they are all low bytes */
1741         SvUTF8_on(bufsv);
1742         buffer_utf8 = 0;
1743     }
1744     else {
1745         buffer = SvPV_force(bufsv, blen);
1746         buffer_utf8 = !IN_BYTES && SvUTF8(bufsv);
1747     }
1748     if (DO_UTF8(bufsv)) {
1749         blen = sv_len_utf8_nomg(bufsv);
1750     }
1751
1752     charstart = TRUE;
1753     charskip  = 0;
1754     skip = 0;
1755     wanted = length;
1756
1757 #ifdef HAS_SOCKET
1758     if (PL_op->op_type == OP_RECV) {
1759         Sock_size_t bufsize;
1760         char namebuf[MAXPATHLEN];
1761         if (fd < 0) {
1762             SETERRNO(EBADF,SS_IVCHAN);
1763             goto say_undef;
1764         }
1765 #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(__QNXNTO__)
1766         bufsize = sizeof (struct sockaddr_in);
1767 #else
1768         bufsize = sizeof namebuf;
1769 #endif
1770 #ifdef OS2      /* At least Warp3+IAK: only the first byte of bufsize set */
1771         if (bufsize >= 256)
1772             bufsize = 255;
1773 #endif
1774         buffer = SvGROW(bufsv, (STRLEN)(length+1));
1775         /* 'offset' means 'flags' here */
1776         count = PerlSock_recvfrom(fd, buffer, length, offset,
1777                                   (struct sockaddr *)namebuf, &bufsize);
1778         if (count < 0)
1779             goto say_undef;
1780         /* MSG_TRUNC can give oversized count; quietly lose it */
1781         if (count > length)
1782             count = length;
1783         SvCUR_set(bufsv, count);
1784         *SvEND(bufsv) = '\0';
1785         (void)SvPOK_only(bufsv);
1786         if (fp_utf8)
1787             SvUTF8_on(bufsv);
1788         SvSETMAGIC(bufsv);
1789         /* This should not be marked tainted if the fp is marked clean */
1790         if (!(IoFLAGS(io) & IOf_UNTAINT))
1791             SvTAINTED_on(bufsv);
1792         SP = ORIGMARK;
1793 #if defined(__CYGWIN__)
1794         /* recvfrom() on cygwin doesn't set bufsize at all for
1795            connected sockets, leaving us with trash in the returned
1796            name, so use the same test as the Win32 code to check if it
1797            wasn't set, and set it [perl #118843] */
1798         if (bufsize == sizeof namebuf)
1799             bufsize = 0;
1800 #endif
1801         sv_setpvn(TARG, namebuf, bufsize);
1802         PUSHs(TARG);
1803         RETURN;
1804     }
1805 #endif
1806     if (offset < 0) {
1807         if (-offset > (SSize_t)blen)
1808             DIE(aTHX_ "Offset outside string");
1809         offset += blen;
1810     }
1811     if (DO_UTF8(bufsv)) {
1812         /* convert offset-as-chars to offset-as-bytes */
1813         if (offset >= (SSize_t)blen)
1814             offset += SvCUR(bufsv) - blen;
1815         else
1816             offset = utf8_hop((U8 *)buffer,offset) - (U8 *) buffer;
1817     }
1818
1819  more_bytes:
1820     /* Reestablish the fd in case it shifted from underneath us. */
1821     fd = PerlIO_fileno(IoIFP(io));
1822
1823     orig_size = SvCUR(bufsv);
1824     /* Allocating length + offset + 1 isn't perfect in the case of reading
1825        bytes from a byte file handle into a UTF8 buffer, but it won't harm us
1826        unduly.
1827        (should be 2 * length + offset + 1, or possibly something longer if
1828        IN_ENCODING Is true) */
1829     buffer  = SvGROW(bufsv, (STRLEN)(length+offset+1));
1830     if (offset > 0 && offset > (SSize_t)orig_size) { /* Zero any newly allocated space */
1831         Zero(buffer+orig_size, offset-orig_size, char);
1832     }
1833     buffer = buffer + offset;
1834     if (!buffer_utf8) {
1835         read_target = bufsv;
1836     } else {
1837         /* Best to read the bytes into a new SV, upgrade that to UTF8, then
1838            concatenate it to the current buffer.  */
1839
1840         /* Truncate the existing buffer to the start of where we will be
1841            reading to:  */
1842         SvCUR_set(bufsv, offset);
1843
1844         read_target = sv_newmortal();
1845         SvUPGRADE(read_target, SVt_PV);
1846         buffer = SvGROW(read_target, (STRLEN)(length + 1));
1847     }
1848
1849     if (PL_op->op_type == OP_SYSREAD) {
1850 #ifdef PERL_SOCK_SYSREAD_IS_RECV
1851         if (IoTYPE(io) == IoTYPE_SOCKET) {
1852             if (fd < 0) {
1853                 SETERRNO(EBADF,SS_IVCHAN);
1854                 count = -1;
1855             }
1856             else
1857                 count = PerlSock_recv(fd, buffer, length, 0);
1858         }
1859         else
1860 #endif
1861         {
1862             if (fd < 0) {
1863                 SETERRNO(EBADF,RMS_IFI);
1864                 count = -1;
1865             }
1866             else
1867                 count = PerlLIO_read(fd, buffer, length);
1868         }
1869     }
1870     else
1871     {
1872         count = PerlIO_read(IoIFP(io), buffer, length);
1873         /* PerlIO_read() - like fread() returns 0 on both error and EOF */
1874         if (count == 0 && PerlIO_error(IoIFP(io)))
1875             count = -1;
1876     }
1877     if (count < 0) {
1878         if (IoTYPE(io) == IoTYPE_WRONLY)
1879             report_wrongway_fh(gv, '>');
1880         goto say_undef;
1881     }
1882     SvCUR_set(read_target, count+(buffer - SvPVX_const(read_target)));
1883     *SvEND(read_target) = '\0';
1884     (void)SvPOK_only(read_target);
1885     if (fp_utf8 && !IN_BYTES) {
1886         /* Look at utf8 we got back and count the characters */
1887         const char *bend = buffer + count;
1888         while (buffer < bend) {
1889             if (charstart) {
1890                 skip = UTF8SKIP(buffer);
1891                 charskip = 0;
1892             }
1893             if (buffer - charskip + skip > bend) {
1894                 /* partial character - try for rest of it */
1895                 length = skip - (bend-buffer);
1896                 offset = bend - SvPVX_const(bufsv);
1897                 charstart = FALSE;
1898                 charskip += count;
1899                 goto more_bytes;
1900             }
1901             else {
1902                 got++;
1903                 buffer += skip;
1904                 charstart = TRUE;
1905                 charskip  = 0;
1906             }
1907         }
1908         /* If we have not 'got' the number of _characters_ we 'wanted' get some more
1909            provided amount read (count) was what was requested (length)
1910          */
1911         if (got < wanted && count == length) {
1912             length = wanted - got;
1913             offset = bend - SvPVX_const(bufsv);
1914             goto more_bytes;
1915         }
1916         /* return value is character count */
1917         count = got;
1918         SvUTF8_on(bufsv);
1919     }
1920     else if (buffer_utf8) {
1921         /* Let svcatsv upgrade the bytes we read in to utf8.
1922            The buffer is a mortal so will be freed soon.  */
1923         sv_catsv_nomg(bufsv, read_target);
1924     }
1925     SvSETMAGIC(bufsv);
1926     /* This should not be marked tainted if the fp is marked clean */
1927     if (!(IoFLAGS(io) & IOf_UNTAINT))
1928         SvTAINTED_on(bufsv);
1929     SP = ORIGMARK;
1930     PUSHi(count);
1931     RETURN;
1932
1933   say_undef:
1934     SP = ORIGMARK;
1935     RETPUSHUNDEF;
1936 }
1937
1938
1939 /* also used for: pp_send() where defined */
1940
1941 PP(pp_syswrite)
1942 {
1943     dSP; dMARK; dORIGMARK; dTARGET;
1944     SV *bufsv;
1945     const char *buffer;
1946     SSize_t retval;
1947     STRLEN blen;
1948     STRLEN orig_blen_bytes;
1949     const int op_type = PL_op->op_type;
1950     bool doing_utf8;
1951     U8 *tmpbuf = NULL;
1952     GV *const gv = MUTABLE_GV(*++MARK);
1953     IO *const io = GvIO(gv);
1954     int fd;
1955
1956     if (op_type == OP_SYSWRITE && io) {
1957         const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
1958         if (mg) {
1959             if (MARK == SP - 1) {
1960                 SV *sv = *SP;
1961                 mXPUSHi(sv_len(sv));
1962                 PUTBACK;
1963             }
1964
1965             return Perl_tied_method(aTHX_ SV_CONST(WRITE), mark - 1, MUTABLE_SV(io), mg,
1966                                     G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK,
1967                                     sp - mark);
1968         }
1969     }
1970     if (!gv)
1971         goto say_undef;
1972
1973     bufsv = *++MARK;
1974
1975     SETERRNO(0,0);
1976     if (!io || !IoIFP(io) || IoTYPE(io) == IoTYPE_RDONLY) {
1977         retval = -1;
1978         if (io && IoIFP(io))
1979             report_wrongway_fh(gv, '<');
1980         else
1981             report_evil_fh(gv);
1982         SETERRNO(EBADF,RMS_IFI);
1983         goto say_undef;
1984     }
1985     fd = PerlIO_fileno(IoIFP(io));
1986     if (fd < 0) {
1987         SETERRNO(EBADF,SS_IVCHAN);
1988         retval = -1;
1989         goto say_undef;
1990     }
1991
1992     /* Do this first to trigger any overloading.  */
1993     buffer = SvPV_const(bufsv, blen);
1994     orig_blen_bytes = blen;
1995     doing_utf8 = DO_UTF8(bufsv);
1996
1997     if (PerlIO_isutf8(IoIFP(io))) {
1998         Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED),
1999                          "%s() is deprecated on :utf8 handles. "
2000                          "This will be a fatal error in Perl 5.30",
2001                          OP_DESC(PL_op));
2002         if (!SvUTF8(bufsv)) {
2003             /* We don't modify the original scalar.  */
2004             tmpbuf = bytes_to_utf8((const U8*) buffer, &blen);
2005             buffer = (char *) tmpbuf;
2006             doing_utf8 = TRUE;
2007         }
2008     }
2009     else if (doing_utf8) {
2010         STRLEN tmplen = blen;
2011         U8 * const result = bytes_from_utf8((const U8*) buffer, &tmplen, &doing_utf8);
2012         if (!doing_utf8) {
2013             tmpbuf = result;
2014             buffer = (char *) tmpbuf;
2015             blen = tmplen;
2016         }
2017         else {
2018             assert((char *)result == buffer);
2019             Perl_croak(aTHX_ "Wide character in %s", OP_DESC(PL_op));
2020         }
2021     }
2022
2023 #ifdef HAS_SOCKET
2024     if (op_type == OP_SEND) {
2025         const int flags = SvIVx(*++MARK);
2026         if (SP > MARK) {
2027             STRLEN mlen;
2028             char * const sockbuf = SvPVx(*++MARK, mlen);
2029             retval = PerlSock_sendto(fd, buffer, blen,
2030                                      flags, (struct sockaddr *)sockbuf, mlen);
2031         }
2032         else {
2033             retval = PerlSock_send(fd, buffer, blen, flags);
2034         }
2035     }
2036     else
2037 #endif
2038     {
2039         Size_t length = 0; /* This length is in characters.  */
2040         STRLEN blen_chars;
2041         IV offset;
2042
2043         if (doing_utf8) {
2044             if (tmpbuf) {
2045                 /* The SV is bytes, and we've had to upgrade it.  */
2046                 blen_chars = orig_blen_bytes;
2047             } else {
2048                 /* The SV really is UTF-8.  */
2049                 /* Don't call sv_len_utf8 on a magical or overloaded
2050                    scalar, as we might get back a different result.  */
2051                 blen_chars = sv_or_pv_len_utf8(bufsv, buffer, blen);
2052             }
2053         } else {
2054             blen_chars = blen;
2055         }
2056
2057         if (MARK >= SP) {
2058             length = blen_chars;
2059         } else {
2060 #if Size_t_size > IVSIZE
2061             length = (Size_t)SvNVx(*++MARK);
2062 #else
2063             length = (Size_t)SvIVx(*++MARK);
2064 #endif
2065             if ((SSize_t)length < 0) {
2066                 Safefree(tmpbuf);
2067                 DIE(aTHX_ "Negative length");
2068             }
2069         }
2070
2071         if (MARK < SP) {
2072             offset = SvIVx(*++MARK);
2073             if (offset < 0) {
2074                 if (-offset > (IV)blen_chars) {
2075                     Safefree(tmpbuf);
2076                     DIE(aTHX_ "Offset outside string");
2077                 }
2078                 offset += blen_chars;
2079             } else if (offset > (IV)blen_chars) {
2080                 Safefree(tmpbuf);
2081                 DIE(aTHX_ "Offset outside string");
2082             }
2083         } else
2084             offset = 0;
2085         if (length > blen_chars - offset)
2086             length = blen_chars - offset;
2087         if (doing_utf8) {
2088             /* Here we convert length from characters to bytes.  */
2089             if (tmpbuf || SvGMAGICAL(bufsv) || SvAMAGIC(bufsv)) {
2090                 /* Either we had to convert the SV, or the SV is magical, or
2091                    the SV has overloading, in which case we can't or mustn't
2092                    or mustn't call it again.  */
2093
2094                 buffer = (const char*)utf8_hop((const U8 *)buffer, offset);
2095                 length = utf8_hop((U8 *)buffer, length) - (U8 *)buffer;
2096             } else {
2097                 /* It's a real UTF-8 SV, and it's not going to change under
2098                    us.  Take advantage of any cache.  */
2099                 I32 start = offset;
2100                 I32 len_I32 = length;
2101
2102                 /* Convert the start and end character positions to bytes.
2103                    Remember that the second argument to sv_pos_u2b is relative
2104                    to the first.  */
2105                 sv_pos_u2b(bufsv, &start, &len_I32);
2106
2107                 buffer += start;
2108                 length = len_I32;
2109             }
2110         }
2111         else {
2112             buffer = buffer+offset;
2113         }
2114 #ifdef PERL_SOCK_SYSWRITE_IS_SEND
2115         if (IoTYPE(io) == IoTYPE_SOCKET) {
2116             retval = PerlSock_send(fd, buffer, length, 0);
2117         }
2118         else
2119 #endif
2120         {
2121             /* See the note at doio.c:do_print about filesize limits. --jhi */
2122             retval = PerlLIO_write(fd, buffer, length);
2123         }
2124     }
2125
2126     if (retval < 0)
2127         goto say_undef;
2128     SP = ORIGMARK;
2129     if (doing_utf8)
2130         retval = utf8_length((U8*)buffer, (U8*)buffer + retval);
2131
2132     Safefree(tmpbuf);
2133 #if Size_t_size > IVSIZE
2134     PUSHn(retval);
2135 #else
2136     PUSHi(retval);
2137 #endif
2138     RETURN;
2139
2140   say_undef:
2141     Safefree(tmpbuf);
2142     SP = ORIGMARK;
2143     RETPUSHUNDEF;
2144 }
2145
2146 PP(pp_eof)
2147 {
2148     dSP;
2149     GV *gv;
2150     IO *io;
2151     const MAGIC *mg;
2152     /*
2153      * in Perl 5.12 and later, the additional parameter is a bitmask:
2154      * 0 = eof
2155      * 1 = eof(FH)
2156      * 2 = eof()  <- ARGV magic
2157      *
2158      * I'll rely on the compiler's trace flow analysis to decide whether to
2159      * actually assign this out here, or punt it into the only block where it is
2160      * used. Doing it out here is DRY on the condition logic.
2161      */
2162     unsigned int which;
2163
2164     if (MAXARG) {
2165         gv = PL_last_in_gv = MUTABLE_GV(POPs);  /* eof(FH) */
2166         which = 1;
2167     }
2168     else {
2169         EXTEND(SP, 1);
2170
2171         if (PL_op->op_flags & OPf_SPECIAL) {
2172             gv = PL_last_in_gv = GvEGVx(PL_argvgv);     /* eof() - ARGV magic */
2173             which = 2;
2174         }
2175         else {
2176             gv = PL_last_in_gv;                 /* eof */
2177             which = 0;
2178         }
2179     }
2180
2181     if (!gv)
2182         RETPUSHNO;
2183
2184     if ((io = GvIO(gv)) && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar))) {
2185         return tied_method1(SV_CONST(EOF), SP, MUTABLE_SV(io), mg, newSVuv(which));
2186     }
2187
2188     if (!MAXARG && (PL_op->op_flags & OPf_SPECIAL)) {   /* eof() */
2189         if (io && !IoIFP(io)) {
2190             if ((IoFLAGS(io) & IOf_START) && av_tindex(GvAVn(gv)) < 0) {
2191                 SV ** svp;
2192                 IoLINES(io) = 0;
2193                 IoFLAGS(io) &= ~IOf_START;
2194                 do_open6(gv, "-", 1, NULL, NULL, 0);
2195                 svp = &GvSV(gv);
2196                 if (*svp) {
2197                     SV * sv = *svp;
2198                     sv_setpvs(sv, "-");
2199                     SvSETMAGIC(sv);
2200                 }
2201                 else
2202                     *svp = newSVpvs("-");
2203             }
2204             else if (!nextargv(gv, FALSE))
2205                 RETPUSHYES;
2206         }
2207     }
2208
2209     PUSHs(boolSV(do_eof(gv)));
2210     RETURN;
2211 }
2212
2213 PP(pp_tell)
2214 {
2215     dSP; dTARGET;
2216     GV *gv;
2217     IO *io;
2218
2219     if (MAXARG != 0 && (TOPs || POPs))
2220         PL_last_in_gv = MUTABLE_GV(POPs);
2221     else
2222         EXTEND(SP, 1);
2223     gv = PL_last_in_gv;
2224
2225     io = GvIO(gv);
2226     if (io) {
2227         const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
2228         if (mg) {
2229             return tied_method0(SV_CONST(TELL), SP, MUTABLE_SV(io), mg);
2230         }
2231     }
2232     else if (!gv) {
2233         if (!errno)
2234             SETERRNO(EBADF,RMS_IFI);
2235         PUSHi(-1);
2236         RETURN;
2237     }
2238
2239 #if LSEEKSIZE > IVSIZE
2240     PUSHn( do_tell(gv) );
2241 #else
2242     PUSHi( do_tell(gv) );
2243 #endif
2244     RETURN;
2245 }
2246
2247
2248 /* also used for: pp_seek() */
2249
2250 PP(pp_sysseek)
2251 {
2252     dSP;
2253     const int whence = POPi;
2254 #if LSEEKSIZE > IVSIZE
2255     const Off_t offset = (Off_t)SvNVx(POPs);
2256 #else
2257     const Off_t offset = (Off_t)SvIVx(POPs);
2258 #endif
2259
2260     GV * const gv = PL_last_in_gv = MUTABLE_GV(POPs);
2261     IO *const io = GvIO(gv);
2262
2263     if (io) {
2264         const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
2265         if (mg) {
2266 #if LSEEKSIZE > IVSIZE
2267             SV *const offset_sv = newSVnv((NV) offset);
2268 #else
2269             SV *const offset_sv = newSViv(offset);
2270 #endif
2271
2272             return tied_method2(SV_CONST(SEEK), SP, MUTABLE_SV(io), mg, offset_sv,
2273                                 newSViv(whence));
2274         }
2275     }
2276
2277     if (PL_op->op_type == OP_SEEK)
2278         PUSHs(boolSV(do_seek(gv, offset, whence)));
2279     else {
2280         const Off_t sought = do_sysseek(gv, offset, whence);
2281         if (sought < 0)
2282             PUSHs(&PL_sv_undef);
2283         else {
2284             SV* const sv = sought ?
2285 #if LSEEKSIZE > IVSIZE
2286                 newSVnv((NV)sought)
2287 #else
2288                 newSViv(sought)
2289 #endif
2290                 : newSVpvn(zero_but_true, ZBTLEN);
2291             mPUSHs(sv);
2292         }
2293     }
2294     RETURN;
2295 }
2296
2297 PP(pp_truncate)
2298 {
2299     dSP;
2300     /* There seems to be no consensus on the length type of truncate()
2301      * and ftruncate(), both off_t and size_t have supporters. In
2302      * general one would think that when using large files, off_t is
2303      * at least as wide as size_t, so using an off_t should be okay. */
2304     /* XXX Configure probe for the length type of *truncate() needed XXX */
2305     Off_t len;
2306
2307 #if Off_t_size > IVSIZE
2308     len = (Off_t)POPn;
2309 #else
2310     len = (Off_t)POPi;
2311 #endif
2312     /* Checking for length < 0 is problematic as the type might or
2313      * might not be signed: if it is not, clever compilers will moan. */
2314     /* XXX Configure probe for the signedness of the length type of *truncate() needed? XXX */
2315     SETERRNO(0,0);
2316     {
2317         SV * const sv = POPs;
2318         int result = 1;
2319         GV *tmpgv;
2320         IO *io;
2321
2322         if (PL_op->op_flags & OPf_SPECIAL
2323                        ? (tmpgv = gv_fetchsv(sv, 0, SVt_PVIO), 1)
2324                        : !!(tmpgv = MAYBE_DEREF_GV(sv)) ) {
2325             io = GvIO(tmpgv);
2326             if (!io)
2327                 result = 0;
2328             else {
2329                 PerlIO *fp;
2330             do_ftruncate_io:
2331                 TAINT_PROPER("truncate");
2332                 if (!(fp = IoIFP(io))) {
2333                     result = 0;
2334                 }
2335                 else {
2336                     int fd = PerlIO_fileno(fp);
2337                     if (fd < 0) {
2338                         SETERRNO(EBADF,RMS_IFI);
2339                         result = 0;
2340                     } else {
2341                         if (len < 0) {
2342                             SETERRNO(EINVAL, LIB_INVARG);
2343                             result = 0;
2344                         } else {
2345                            PerlIO_flush(fp);
2346 #ifdef HAS_TRUNCATE
2347                            if (ftruncate(fd, len) < 0)
2348 #else
2349                            if (my_chsize(fd, len) < 0)
2350 #endif
2351                                result = 0;
2352                         }
2353                     }
2354                 }
2355             }
2356         }
2357         else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
2358                 io = MUTABLE_IO(SvRV(sv)); /* *main::FRED{IO} for example */
2359                 goto do_ftruncate_io;
2360         }
2361         else {
2362             const char * const name = SvPV_nomg_const_nolen(sv);
2363             TAINT_PROPER("truncate");
2364 #ifdef HAS_TRUNCATE
2365             if (truncate(name, len) < 0)
2366                 result = 0;
2367 #else
2368             {
2369                 int mode = O_RDWR;
2370                 int tmpfd;
2371
2372 #if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE)
2373                 mode |= O_LARGEFILE;    /* Transparently largefiley. */
2374 #endif
2375 #ifdef O_BINARY
2376                 /* On open(), the Win32 CRT tries to seek around text
2377                  * files using 32-bit offsets, which causes the open()
2378                  * to fail on large files, so open in binary mode.
2379                  */
2380                 mode |= O_BINARY;
2381 #endif
2382                 tmpfd = PerlLIO_open(name, mode);
2383
2384                 if (tmpfd < 0) {
2385                     result = 0;
2386                 } else {
2387                     if (my_chsize(tmpfd, len) < 0)
2388                         result = 0;
2389                     PerlLIO_close(tmpfd);
2390                 }
2391             }
2392 #endif
2393         }
2394
2395         if (result)
2396             RETPUSHYES;
2397         if (!errno)
2398             SETERRNO(EBADF,RMS_IFI);
2399         RETPUSHUNDEF;
2400     }
2401 }
2402
2403
2404 /* also used for: pp_fcntl() */
2405
2406 PP(pp_ioctl)
2407 {
2408     dSP; dTARGET;
2409     SV * const argsv = POPs;
2410     const unsigned int func = POPu;
2411     int optype;
2412     GV * const gv = MUTABLE_GV(POPs);
2413     IO * const io = GvIOn(gv);
2414     char *s;
2415     IV retval;
2416
2417     if (!IoIFP(io)) {
2418         report_evil_fh(gv);
2419         SETERRNO(EBADF,RMS_IFI);        /* well, sort of... */
2420         RETPUSHUNDEF;
2421     }
2422
2423     if (SvPOK(argsv) || !SvNIOK(argsv)) {
2424         STRLEN len;
2425         STRLEN need;
2426         s = SvPV_force(argsv, len);
2427         need = IOCPARM_LEN(func);
2428         if (len < need) {
2429             s = Sv_Grow(argsv, need + 1);
2430             SvCUR_set(argsv, need);
2431         }
2432
2433         s[SvCUR(argsv)] = 17;   /* a little sanity check here */
2434     }
2435     else {
2436         retval = SvIV(argsv);
2437         s = INT2PTR(char*,retval);              /* ouch */
2438     }
2439
2440     optype = PL_op->op_type;
2441     TAINT_PROPER(PL_op_desc[optype]);
2442
2443     if (optype == OP_IOCTL)
2444 #ifdef HAS_IOCTL
2445         retval = PerlLIO_ioctl(PerlIO_fileno(IoIFP(io)), func, s);
2446 #else
2447         DIE(aTHX_ "ioctl is not implemented");
2448 #endif
2449     else
2450 #ifndef HAS_FCNTL
2451       DIE(aTHX_ "fcntl is not implemented");
2452 #elif defined(OS2) && defined(__EMX__)
2453         retval = fcntl(PerlIO_fileno(IoIFP(io)), func, (int)s);
2454 #else
2455         retval = fcntl(PerlIO_fileno(IoIFP(io)), func, s);
2456 #endif
2457
2458 #if defined(HAS_IOCTL) || defined(HAS_FCNTL)
2459     if (SvPOK(argsv)) {
2460         if (s[SvCUR(argsv)] != 17)
2461             DIE(aTHX_ "Possible memory corruption: %s overflowed 3rd argument",
2462                 OP_NAME(PL_op));
2463         s[SvCUR(argsv)] = 0;            /* put our null back */
2464         SvSETMAGIC(argsv);              /* Assume it has changed */
2465     }
2466
2467     if (retval == -1)
2468         RETPUSHUNDEF;
2469     if (retval != 0) {
2470         PUSHi(retval);
2471     }
2472     else {
2473         PUSHp(zero_but_true, ZBTLEN);
2474     }
2475 #endif
2476     RETURN;
2477 }
2478
2479 PP(pp_flock)
2480 {
2481 #ifdef FLOCK
2482     dSP; dTARGET;
2483     I32 value;
2484     const int argtype = POPi;
2485     GV * const gv = MUTABLE_GV(POPs);
2486     IO *const io = GvIO(gv);
2487     PerlIO *const fp = io ? IoIFP(io) : NULL;
2488
2489     /* XXX Looks to me like io is always NULL at this point */
2490     if (fp) {
2491         (void)PerlIO_flush(fp);
2492         value = (I32)(PerlLIO_flock(PerlIO_fileno(fp), argtype) >= 0);
2493     }
2494     else {
2495         report_evil_fh(gv);
2496         value = 0;
2497         SETERRNO(EBADF,RMS_IFI);
2498     }
2499     PUSHi(value);
2500     RETURN;
2501 #else
2502     DIE(aTHX_ PL_no_func, "flock");
2503 #endif
2504 }
2505
2506 /* Sockets. */
2507
2508 #ifdef HAS_SOCKET
2509
2510 PP(pp_socket)
2511 {
2512     dSP;
2513     const int protocol = POPi;
2514     const int type = POPi;
2515     const int domain = POPi;
2516     GV * const gv = MUTABLE_GV(POPs);
2517     IO * const io = GvIOn(gv);
2518     int fd;
2519
2520     if (IoIFP(io))
2521         do_close(gv, FALSE);
2522
2523     TAINT_PROPER("socket");
2524     fd = PerlSock_socket(domain, type, protocol);
2525     if (fd < 0) {
2526         RETPUSHUNDEF;
2527     }
2528     IoIFP(io) = PerlIO_fdopen(fd, "r" SOCKET_OPEN_MODE); /* stdio gets confused about sockets */
2529     IoOFP(io) = PerlIO_fdopen(fd, "w" SOCKET_OPEN_MODE);
2530     IoTYPE(io) = IoTYPE_SOCKET;
2531     if (!IoIFP(io) || !IoOFP(io)) {
2532         if (IoIFP(io)) PerlIO_close(IoIFP(io));
2533         if (IoOFP(io)) PerlIO_close(IoOFP(io));
2534         if (!IoIFP(io) && !IoOFP(io)) PerlLIO_close(fd);
2535         RETPUSHUNDEF;
2536     }
2537 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
2538     /* ensure close-on-exec */
2539     if (fd > PL_maxsysfd && fcntl(fd, F_SETFD, FD_CLOEXEC) < 0)
2540         RETPUSHUNDEF;
2541 #endif
2542
2543     RETPUSHYES;
2544 }
2545 #endif
2546
2547 PP(pp_sockpair)
2548 {
2549 #if defined (HAS_SOCKETPAIR) || (defined (HAS_SOCKET) && defined(SOCK_DGRAM) && defined(AF_INET) && defined(PF_INET))
2550     dSP;
2551     int fd[2];
2552     const int protocol = POPi;
2553     const int type = POPi;
2554     const int domain = POPi;
2555
2556     GV * const gv2 = MUTABLE_GV(POPs);
2557     IO * const io2 = GvIOn(gv2);
2558     GV * const gv1 = MUTABLE_GV(POPs);
2559     IO * const io1 = GvIOn(gv1);
2560
2561     if (IoIFP(io1))
2562         do_close(gv1, FALSE);
2563     if (IoIFP(io2))
2564         do_close(gv2, FALSE);
2565
2566     TAINT_PROPER("socketpair");
2567     if (PerlSock_socketpair(domain, type, protocol, fd) < 0)
2568         RETPUSHUNDEF;
2569     IoIFP(io1) = PerlIO_fdopen(fd[0], "r" SOCKET_OPEN_MODE);
2570     IoOFP(io1) = PerlIO_fdopen(fd[0], "w" SOCKET_OPEN_MODE);
2571     IoTYPE(io1) = IoTYPE_SOCKET;
2572     IoIFP(io2) = PerlIO_fdopen(fd[1], "r" SOCKET_OPEN_MODE);
2573     IoOFP(io2) = PerlIO_fdopen(fd[1], "w" SOCKET_OPEN_MODE);
2574     IoTYPE(io2) = IoTYPE_SOCKET;
2575     if (!IoIFP(io1) || !IoOFP(io1) || !IoIFP(io2) || !IoOFP(io2)) {
2576         if (IoIFP(io1)) PerlIO_close(IoIFP(io1));
2577         if (IoOFP(io1)) PerlIO_close(IoOFP(io1));
2578         if (!IoIFP(io1) && !IoOFP(io1)) PerlLIO_close(fd[0]);
2579         if (IoIFP(io2)) PerlIO_close(IoIFP(io2));
2580         if (IoOFP(io2)) PerlIO_close(IoOFP(io2));
2581         if (!IoIFP(io2) && !IoOFP(io2)) PerlLIO_close(fd[1]);
2582         RETPUSHUNDEF;
2583     }
2584 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
2585     /* ensure close-on-exec */
2586     if ((fd[0] > PL_maxsysfd && fcntl(fd[0], F_SETFD, FD_CLOEXEC) < 0) ||
2587         (fd[1] > PL_maxsysfd && fcntl(fd[1], F_SETFD, FD_CLOEXEC) < 0))
2588         RETPUSHUNDEF;
2589 #endif
2590
2591     RETPUSHYES;
2592 #else
2593     DIE(aTHX_ PL_no_sock_func, "socketpair");
2594 #endif
2595 }
2596
2597 #ifdef HAS_SOCKET
2598
2599 /* also used for: pp_connect() */
2600
2601 PP(pp_bind)
2602 {
2603     dSP;
2604     SV * const addrsv = POPs;
2605     /* OK, so on what platform does bind modify addr?  */
2606     const char *addr;
2607     GV * const gv = MUTABLE_GV(POPs);
2608     IO * const io = GvIOn(gv);
2609     STRLEN len;
2610     int op_type;
2611     int fd;
2612
2613     if (!IoIFP(io))
2614         goto nuts;
2615     fd = PerlIO_fileno(IoIFP(io));
2616     if (fd < 0)
2617         goto nuts;
2618
2619     addr = SvPV_const(addrsv, len);
2620     op_type = PL_op->op_type;
2621     TAINT_PROPER(PL_op_desc[op_type]);
2622     if ((op_type == OP_BIND
2623          ? PerlSock_bind(fd, (struct sockaddr *)addr, len)
2624          : PerlSock_connect(fd, (struct sockaddr *)addr, len))
2625         >= 0)
2626         RETPUSHYES;
2627     else
2628         RETPUSHUNDEF;
2629
2630   nuts:
2631     report_evil_fh(gv);
2632     SETERRNO(EBADF,SS_IVCHAN);
2633     RETPUSHUNDEF;
2634 }
2635
2636 PP(pp_listen)
2637 {
2638     dSP;
2639     const int backlog = POPi;
2640     GV * const gv = MUTABLE_GV(POPs);
2641     IO * const io = GvIOn(gv);
2642
2643     if (!IoIFP(io))
2644         goto nuts;
2645
2646     if (PerlSock_listen(PerlIO_fileno(IoIFP(io)), backlog) >= 0)
2647         RETPUSHYES;
2648     else
2649         RETPUSHUNDEF;
2650
2651   nuts:
2652     report_evil_fh(gv);
2653     SETERRNO(EBADF,SS_IVCHAN);
2654     RETPUSHUNDEF;
2655 }
2656
2657 PP(pp_accept)
2658 {
2659     dSP; dTARGET;
2660     IO *nstio;
2661     char namebuf[MAXPATHLEN];
2662 #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(__QNXNTO__)
2663     Sock_size_t len = sizeof (struct sockaddr_in);
2664 #else
2665     Sock_size_t len = sizeof namebuf;
2666 #endif
2667     GV * const ggv = MUTABLE_GV(POPs);
2668     GV * const ngv = MUTABLE_GV(POPs);
2669     int fd;
2670
2671     IO * const gstio = GvIO(ggv);
2672     if (!gstio || !IoIFP(gstio))
2673         goto nuts;
2674
2675     nstio = GvIOn(ngv);
2676     fd = PerlSock_accept(PerlIO_fileno(IoIFP(gstio)), (struct sockaddr *) namebuf, &len);
2677 #if defined(OEMVS)
2678     if (len == 0) {
2679         /* Some platforms indicate zero length when an AF_UNIX client is
2680          * not bound. Simulate a non-zero-length sockaddr structure in
2681          * this case. */
2682         namebuf[0] = 0;        /* sun_len */
2683         namebuf[1] = AF_UNIX;  /* sun_family */
2684         len = 2;
2685     }
2686 #endif
2687
2688     if (fd < 0)
2689         goto badexit;
2690     if (IoIFP(nstio))
2691         do_close(ngv, FALSE);
2692     IoIFP(nstio) = PerlIO_fdopen(fd, "r" SOCKET_OPEN_MODE);
2693     IoOFP(nstio) = PerlIO_fdopen(fd, "w" SOCKET_OPEN_MODE);
2694     IoTYPE(nstio) = IoTYPE_SOCKET;
2695     if (!IoIFP(nstio) || !IoOFP(nstio)) {
2696         if (IoIFP(nstio)) PerlIO_close(IoIFP(nstio));
2697         if (IoOFP(nstio)) PerlIO_close(IoOFP(nstio));
2698         if (!IoIFP(nstio) && !IoOFP(nstio)) PerlLIO_close(fd);
2699         goto badexit;
2700     }
2701 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
2702     /* ensure close-on-exec */
2703     if (fd > PL_maxsysfd && fcntl(fd, F_SETFD, FD_CLOEXEC) < 0)
2704         goto badexit;
2705 #endif
2706
2707 #ifdef __SCO_VERSION__
2708     len = sizeof (struct sockaddr_in); /* OpenUNIX 8 somehow truncates info */
2709 #endif
2710
2711     PUSHp(namebuf, len);
2712     RETURN;
2713
2714   nuts:
2715     report_evil_fh(ggv);
2716     SETERRNO(EBADF,SS_IVCHAN);
2717
2718   badexit:
2719     RETPUSHUNDEF;
2720
2721 }
2722
2723 PP(pp_shutdown)
2724 {
2725     dSP; dTARGET;
2726     const int how = POPi;
2727     GV * const gv = MUTABLE_GV(POPs);
2728     IO * const io = GvIOn(gv);
2729
2730     if (!IoIFP(io))
2731         goto nuts;
2732
2733     PUSHi( PerlSock_shutdown(PerlIO_fileno(IoIFP(io)), how) >= 0 );
2734     RETURN;
2735
2736   nuts:
2737     report_evil_fh(gv);
2738     SETERRNO(EBADF,SS_IVCHAN);
2739     RETPUSHUNDEF;
2740 }
2741
2742
2743 /* also used for: pp_gsockopt() */
2744
2745 PP(pp_ssockopt)
2746 {
2747     dSP;
2748     const int optype = PL_op->op_type;
2749     SV * const sv = (optype == OP_GSOCKOPT) ? sv_2mortal(newSV(257)) : POPs;
2750     const unsigned int optname = (unsigned int) POPi;
2751     const unsigned int lvl = (unsigned int) POPi;
2752     GV * const gv = MUTABLE_GV(POPs);
2753     IO * const io = GvIOn(gv);
2754     int fd;
2755     Sock_size_t len;
2756
2757     if (!IoIFP(io))
2758         goto nuts;
2759
2760     fd = PerlIO_fileno(IoIFP(io));
2761     if (fd < 0)
2762         goto nuts;
2763     switch (optype) {
2764     case OP_GSOCKOPT:
2765         SvGROW(sv, 257);
2766         (void)SvPOK_only(sv);
2767         SvCUR_set(sv,256);
2768         *SvEND(sv) ='\0';
2769         len = SvCUR(sv);
2770         if (PerlSock_getsockopt(fd, lvl, optname, SvPVX(sv), &len) < 0)
2771             goto nuts2;
2772 #if defined(_AIX)
2773         /* XXX Configure test: does getsockopt set the length properly? */
2774         if (len == 256)
2775             len = sizeof(int);
2776 #endif
2777         SvCUR_set(sv, len);
2778         *SvEND(sv) ='\0';
2779         PUSHs(sv);
2780         break;
2781     case OP_SSOCKOPT: {
2782 #if defined(__SYMBIAN32__)
2783 # define SETSOCKOPT_OPTION_VALUE_T void *
2784 #else
2785 # define SETSOCKOPT_OPTION_VALUE_T const char *
2786 #endif
2787         /* XXX TODO: We need to have a proper type (a Configure probe,
2788          * etc.) for what the C headers think of the third argument of
2789          * setsockopt(), the option_value read-only buffer: is it
2790          * a "char *", or a "void *", const or not.  Some compilers
2791          * don't take kindly to e.g. assuming that "char *" implicitly
2792          * promotes to a "void *", or to explicitly promoting/demoting
2793          * consts to non/vice versa.  The "const void *" is the SUS
2794          * definition, but that does not fly everywhere for the above
2795          * reasons. */
2796             SETSOCKOPT_OPTION_VALUE_T buf;
2797             int aint;
2798             if (SvPOKp(sv)) {
2799                 STRLEN l;
2800                 buf = (SETSOCKOPT_OPTION_VALUE_T) SvPV_const(sv, l);
2801                 len = l;
2802             }
2803             else {
2804                 aint = (int)SvIV(sv);
2805                 buf = (SETSOCKOPT_OPTION_VALUE_T) &aint;
2806                 len = sizeof(int);
2807             }
2808             if (PerlSock_setsockopt(fd, lvl, optname, buf, len) < 0)
2809                 goto nuts2;
2810             PUSHs(&PL_sv_yes);
2811         }
2812         break;
2813     }
2814     RETURN;
2815
2816   nuts:
2817     report_evil_fh(gv);
2818     SETERRNO(EBADF,SS_IVCHAN);
2819   nuts2:
2820     RETPUSHUNDEF;
2821
2822 }
2823
2824
2825 /* also used for: pp_getsockname() */
2826
2827 PP(pp_getpeername)
2828 {
2829     dSP;
2830     const int optype = PL_op->op_type;
2831     GV * const gv = MUTABLE_GV(POPs);
2832     IO * const io = GvIOn(gv);
2833     Sock_size_t len;
2834     SV *sv;
2835     int fd;
2836
2837     if (!IoIFP(io))
2838         goto nuts;
2839
2840     sv = sv_2mortal(newSV(257));
2841     (void)SvPOK_only(sv);
2842     len = 256;
2843     SvCUR_set(sv, len);
2844     *SvEND(sv) ='\0';
2845     fd = PerlIO_fileno(IoIFP(io));
2846     if (fd < 0)
2847         goto nuts;
2848     switch (optype) {
2849     case OP_GETSOCKNAME:
2850         if (PerlSock_getsockname(fd, (struct sockaddr *)SvPVX(sv), &len) < 0)
2851             goto nuts2;
2852         break;
2853     case OP_GETPEERNAME:
2854         if (PerlSock_getpeername(fd, (struct sockaddr *)SvPVX(sv), &len) < 0)
2855             goto nuts2;
2856 #if defined(VMS_DO_SOCKETS) && defined (DECCRTL_SOCKETS)
2857         {
2858             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";
2859             /* If the call succeeded, make sure we don't have a zeroed port/addr */
2860             if (((struct sockaddr *)SvPVX_const(sv))->sa_family == AF_INET &&
2861                 !memcmp(SvPVX_const(sv) + sizeof(u_short), nowhere,
2862                         sizeof(u_short) + sizeof(struct in_addr))) {
2863                 goto nuts2;     
2864             }
2865         }
2866 #endif
2867         break;
2868     }
2869 #ifdef BOGUS_GETNAME_RETURN
2870     /* Interactive Unix, getpeername() and getsockname()
2871       does not return valid namelen */
2872     if (len == BOGUS_GETNAME_RETURN)
2873         len = sizeof(struct sockaddr);
2874 #endif
2875     SvCUR_set(sv, len);
2876     *SvEND(sv) ='\0';
2877     PUSHs(sv);
2878     RETURN;
2879
2880   nuts:
2881     report_evil_fh(gv);
2882     SETERRNO(EBADF,SS_IVCHAN);
2883   nuts2:
2884     RETPUSHUNDEF;
2885 }
2886
2887 #endif
2888
2889 /* Stat calls. */
2890
2891 /* also used for: pp_lstat() */
2892
2893 PP(pp_stat)
2894 {
2895     dSP;
2896     GV *gv = NULL;
2897     IO *io = NULL;
2898     U8 gimme;
2899     I32 max = 13;
2900     SV* sv;
2901
2902     if (PL_op->op_flags & OPf_REF ? (gv = cGVOP_gv, 1)
2903                                   : !!(sv=POPs, gv = MAYBE_DEREF_GV(sv))) {
2904         if (PL_op->op_type == OP_LSTAT) {
2905             if (gv != PL_defgv) {
2906             do_fstat_warning_check:
2907                 Perl_ck_warner(aTHX_ packWARN(WARN_IO),
2908                                "lstat() on filehandle%s%" SVf,
2909                                 gv ? " " : "",
2910                                 SVfARG(gv
2911                                         ? sv_2mortal(newSVhek(GvENAME_HEK(gv)))
2912                                         : &PL_sv_no));
2913             } else if (PL_laststype != OP_LSTAT)
2914                 /* diag_listed_as: The stat preceding %s wasn't an lstat */
2915                 Perl_croak(aTHX_ "The stat preceding lstat() wasn't an lstat");
2916         }
2917
2918         if (gv == PL_defgv) {
2919             if (PL_laststatval < 0)
2920                 SETERRNO(EBADF,RMS_IFI);
2921         } else {
2922           do_fstat_have_io:
2923             PL_laststype = OP_STAT;
2924             PL_statgv = gv ? gv : (GV *)io;
2925             SvPVCLEAR(PL_statname);
2926             if(gv) {
2927                 io = GvIO(gv);
2928             }
2929             if (io) {
2930                     if (IoIFP(io)) {
2931                         int fd = PerlIO_fileno(IoIFP(io));
2932                         if (fd < 0) {
2933                             report_evil_fh(gv);
2934                             PL_laststatval = -1;
2935                             SETERRNO(EBADF,RMS_IFI);
2936                         } else {
2937                             PL_laststatval = PerlLIO_fstat(fd, &PL_statcache);
2938                         }
2939                     } else if (IoDIRP(io)) {
2940                         PL_laststatval =
2941                             PerlLIO_fstat(my_dirfd(IoDIRP(io)), &PL_statcache);
2942                     } else {
2943                         report_evil_fh(gv);
2944                         PL_laststatval = -1;
2945                         SETERRNO(EBADF,RMS_IFI);
2946                     }
2947             } else {
2948                 report_evil_fh(gv);
2949                 PL_laststatval = -1;
2950                 SETERRNO(EBADF,RMS_IFI);
2951             }
2952         }
2953
2954         if (PL_laststatval < 0) {
2955             max = 0;
2956         }
2957     }
2958     else {
2959         const char *file;
2960         const char *temp;
2961         STRLEN len;
2962         if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) { 
2963             io = MUTABLE_IO(SvRV(sv));
2964             if (PL_op->op_type == OP_LSTAT)
2965                 goto do_fstat_warning_check;
2966             goto do_fstat_have_io; 
2967         }
2968         SvTAINTED_off(PL_statname); /* previous tainting irrelevant */
2969         temp = SvPV_nomg_const(sv, len);
2970         sv_setpv(PL_statname, temp);
2971         PL_statgv = NULL;
2972         PL_laststype = PL_op->op_type;
2973         file = SvPV_nolen_const(PL_statname);
2974         if (!IS_SAFE_PATHNAME(temp, len, OP_NAME(PL_op))) {
2975             PL_laststatval = -1;
2976         }
2977         else if (PL_op->op_type == OP_LSTAT)
2978             PL_laststatval = PerlLIO_lstat(file, &PL_statcache);
2979         else
2980             PL_laststatval = PerlLIO_stat(file, &PL_statcache);
2981         if (PL_laststatval < 0) {
2982             if (ckWARN(WARN_NEWLINE) && should_warn_nl(file)) {
2983                 /* PL_warn_nl is constant */
2984                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
2985                 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
2986                 GCC_DIAG_RESTORE;
2987             }
2988             max = 0;
2989         }
2990     }
2991
2992     gimme = GIMME_V;
2993     if (gimme != G_ARRAY) {
2994         if (gimme != G_VOID)
2995             XPUSHs(boolSV(max));
2996         RETURN;
2997     }
2998     if (max) {
2999         EXTEND(SP, max);
3000         EXTEND_MORTAL(max);
3001         mPUSHi(PL_statcache.st_dev);
3002         {
3003             /*
3004              * We try to represent st_ino as a native IV or UV where
3005              * possible, but fall back to a decimal string where
3006              * necessary.  The code to generate these decimal strings
3007              * is quite obtuse, because (a) we're portable to non-POSIX
3008              * platforms where st_ino might be signed; (b) we didn't
3009              * necessarily detect at Configure time whether st_ino is
3010              * signed; (c) we're portable to non-POSIX platforms where
3011              * ino_t isn't defined, so have no name for the type of
3012              * st_ino; and (d) sprintf() doesn't necessarily support
3013              * integers as large as st_ino.
3014              */
3015             bool neg;
3016             Stat_t s;
3017             CLANG_DIAG_IGNORE(-Wtautological-compare);
3018             GCC_DIAG_IGNORE(-Wtype-limits);
3019             neg = PL_statcache.st_ino < 0;
3020             GCC_DIAG_RESTORE;
3021             CLANG_DIAG_RESTORE;
3022             if (neg) {
3023                 s.st_ino = (IV)PL_statcache.st_ino;
3024                 if (LIKELY(s.st_ino == PL_statcache.st_ino)) {
3025                     mPUSHi(s.st_ino);
3026                 } else {
3027                     char buf[sizeof(s.st_ino)*3+1], *p;
3028                     s.st_ino = PL_statcache.st_ino;
3029                     for (p = buf + sizeof(buf); p != buf+1; ) {
3030                         Stat_t t;
3031                         t.st_ino = s.st_ino / 10;
3032                         *--p = '0' + (int)(t.st_ino*10 - s.st_ino);
3033                         s.st_ino = t.st_ino;
3034                     }
3035                     while (*p == '0')
3036                         p++;
3037                     *--p = '-';
3038                     mPUSHp(p, buf+sizeof(buf) - p);
3039                 }
3040             } else {
3041                 s.st_ino = (UV)PL_statcache.st_ino;
3042                 if (LIKELY(s.st_ino == PL_statcache.st_ino)) {
3043                     mPUSHu(s.st_ino);
3044                 } else {
3045                     char buf[sizeof(s.st_ino)*3], *p;
3046                     s.st_ino = PL_statcache.st_ino;
3047                     for (p = buf + sizeof(buf); p != buf; ) {
3048                         Stat_t t;
3049                         t.st_ino = s.st_ino / 10;
3050                         *--p = '0' + (int)(s.st_ino - t.st_ino*10);
3051                         s.st_ino = t.st_ino;
3052                     }
3053                     while (*p == '0')
3054                         p++;
3055                     mPUSHp(p, buf+sizeof(buf) - p);
3056                 }
3057             }
3058         }
3059         mPUSHu(PL_statcache.st_mode);
3060         mPUSHu(PL_statcache.st_nlink);
3061         
3062         sv_setuid(PUSHmortal, PL_statcache.st_uid);
3063         sv_setgid(PUSHmortal, PL_statcache.st_gid);
3064
3065 #ifdef USE_STAT_RDEV
3066         mPUSHi(PL_statcache.st_rdev);
3067 #else
3068         PUSHs(newSVpvs_flags("", SVs_TEMP));
3069 #endif
3070 #if Off_t_size > IVSIZE
3071         mPUSHn(PL_statcache.st_size);
3072 #else
3073         mPUSHi(PL_statcache.st_size);
3074 #endif
3075 #ifdef BIG_TIME
3076         mPUSHn(PL_statcache.st_atime);
3077         mPUSHn(PL_statcache.st_mtime);
3078         mPUSHn(PL_statcache.st_ctime);
3079 #else
3080         mPUSHi(PL_statcache.st_atime);
3081         mPUSHi(PL_statcache.st_mtime);
3082         mPUSHi(PL_statcache.st_ctime);
3083 #endif
3084 #ifdef USE_STAT_BLOCKS
3085         mPUSHu(PL_statcache.st_blksize);
3086         mPUSHu(PL_statcache.st_blocks);
3087 #else
3088         PUSHs(newSVpvs_flags("", SVs_TEMP));
3089         PUSHs(newSVpvs_flags("", SVs_TEMP));
3090 #endif
3091     }
3092     RETURN;
3093 }
3094
3095 /* All filetest ops avoid manipulating the perl stack pointer in their main
3096    bodies (since commit d2c4d2d1e22d3125), and return using either
3097    S_ft_return_false() or S_ft_return_true().  These two helper functions are
3098    the only two which manipulate the perl stack.  To ensure that no stack
3099    manipulation macros are used, the filetest ops avoid defining a local copy
3100    of the stack pointer with dSP.  */
3101
3102 /* If the next filetest is stacked up with this one
3103    (PL_op->op_private & OPpFT_STACKING), we leave
3104    the original argument on the stack for success,
3105    and skip the stacked operators on failure.
3106    The next few macros/functions take care of this.
3107 */
3108
3109 static OP *
3110 S_ft_return_false(pTHX_ SV *ret) {
3111     OP *next = NORMAL;
3112     dSP;
3113
3114     if (PL_op->op_flags & OPf_REF) XPUSHs(ret);
3115     else                           SETs(ret);
3116     PUTBACK;
3117
3118     if (PL_op->op_private & OPpFT_STACKING) {
3119         while (next && OP_IS_FILETEST(next->op_type)
3120                && next->op_private & OPpFT_STACKED)
3121             next = next->op_next;
3122     }
3123     return next;
3124 }
3125
3126 PERL_STATIC_INLINE OP *
3127 S_ft_return_true(pTHX_ SV *ret) {
3128     dSP;
3129     if (PL_op->op_flags & OPf_REF)
3130         XPUSHs(PL_op->op_private & OPpFT_STACKING ? (SV *)cGVOP_gv : (ret));
3131     else if (!(PL_op->op_private & OPpFT_STACKING))
3132         SETs(ret);
3133     PUTBACK;
3134     return NORMAL;
3135 }
3136
3137 #define FT_RETURNNO     return S_ft_return_false(aTHX_ &PL_sv_no)
3138 #define FT_RETURNUNDEF  return S_ft_return_false(aTHX_ &PL_sv_undef)
3139 #define FT_RETURNYES    return S_ft_return_true(aTHX_ &PL_sv_yes)
3140
3141 #define tryAMAGICftest_MG(chr) STMT_START { \
3142         if ( (SvFLAGS(*PL_stack_sp) & (SVf_ROK|SVs_GMG)) \
3143                 && PL_op->op_flags & OPf_KIDS) {     \
3144             OP *next = S_try_amagic_ftest(aTHX_ chr);   \
3145             if (next) return next;                        \
3146         }                                                  \
3147     } STMT_END
3148
3149 STATIC OP *
3150 S_try_amagic_ftest(pTHX_ char chr) {
3151     SV *const arg = *PL_stack_sp;
3152
3153     assert(chr != '?');
3154     if (!(PL_op->op_private & OPpFT_STACKING)) SvGETMAGIC(arg);
3155
3156     if (SvAMAGIC(arg))
3157     {
3158         const char tmpchr = chr;
3159         SV * const tmpsv = amagic_call(arg,
3160                                 newSVpvn_flags(&tmpchr, 1, SVs_TEMP),
3161                                 ftest_amg, AMGf_unary);
3162
3163         if (!tmpsv)
3164             return NULL;
3165
3166         return SvTRUE(tmpsv)
3167             ? S_ft_return_true(aTHX_ tmpsv) : S_ft_return_false(aTHX_ tmpsv);
3168     }
3169     return NULL;
3170 }
3171
3172
3173 /* also used for: pp_fteexec() pp_fteread() pp_ftewrite() pp_ftrexec()
3174  *                pp_ftrwrite() */
3175
3176 PP(pp_ftrread)
3177 {
3178     I32 result;
3179     /* Not const, because things tweak this below. Not bool, because there's
3180        no guarantee that OPpFT_ACCESS is <= CHAR_MAX  */
3181 #if defined(HAS_ACCESS) || defined (PERL_EFF_ACCESS)
3182     I32 use_access = PL_op->op_private & OPpFT_ACCESS;
3183     /* Giving some sort of initial value silences compilers.  */
3184 #  ifdef R_OK
3185     int access_mode = R_OK;
3186 #  else
3187     int access_mode = 0;
3188 #  endif
3189 #else
3190     /* access_mode is never used, but leaving use_access in makes the
3191        conditional compiling below much clearer.  */
3192     I32 use_access = 0;
3193 #endif
3194     Mode_t stat_mode = S_IRUSR;
3195
3196     bool effective = FALSE;
3197     char opchar = '?';
3198
3199     switch (PL_op->op_type) {
3200     case OP_FTRREAD:    opchar = 'R'; break;
3201     case OP_FTRWRITE:   opchar = 'W'; break;
3202     case OP_FTREXEC:    opchar = 'X'; break;
3203     case OP_FTEREAD:    opchar = 'r'; break;
3204     case OP_FTEWRITE:   opchar = 'w'; break;
3205     case OP_FTEEXEC:    opchar = 'x'; break;
3206     }
3207     tryAMAGICftest_MG(opchar);
3208
3209     switch (PL_op->op_type) {
3210     case OP_FTRREAD:
3211 #if !(defined(HAS_ACCESS) && defined(R_OK))
3212         use_access = 0;
3213 #endif
3214         break;
3215
3216     case OP_FTRWRITE:
3217 #if defined(HAS_ACCESS) && defined(W_OK)
3218         access_mode = W_OK;
3219 #else
3220         use_access = 0;
3221 #endif
3222         stat_mode = S_IWUSR;
3223         break;
3224
3225     case OP_FTREXEC:
3226 #if defined(HAS_ACCESS) && defined(X_OK)
3227         access_mode = X_OK;
3228 #else
3229         use_access = 0;
3230 #endif
3231         stat_mode = S_IXUSR;
3232         break;
3233
3234     case OP_FTEWRITE:
3235 #ifdef PERL_EFF_ACCESS
3236         access_mode = W_OK;
3237 #endif
3238         stat_mode = S_IWUSR;
3239         /* FALLTHROUGH */
3240
3241     case OP_FTEREAD:
3242 #ifndef PERL_EFF_ACCESS
3243         use_access = 0;
3244 #endif
3245         effective = TRUE;
3246         break;
3247
3248     case OP_FTEEXEC:
3249 #ifdef PERL_EFF_ACCESS
3250         access_mode = X_OK;
3251 #else
3252         use_access = 0;
3253 #endif
3254         stat_mode = S_IXUSR;
3255         effective = TRUE;
3256         break;
3257     }
3258
3259     if (use_access) {
3260 #if defined(HAS_ACCESS) || defined (PERL_EFF_ACCESS)
3261         STRLEN len;
3262         const char *name = SvPV(*PL_stack_sp, len);
3263         if (!IS_SAFE_PATHNAME(name, len, OP_NAME(PL_op))) {
3264             result = -1;
3265         }
3266         else if (effective) {
3267 #  ifdef PERL_EFF_ACCESS
3268             result = PERL_EFF_ACCESS(name, access_mode);
3269 #  else
3270             DIE(aTHX_ "panic: attempt to call PERL_EFF_ACCESS in %s",
3271                 OP_NAME(PL_op));
3272 #  endif
3273         }
3274         else {
3275 #  ifdef HAS_ACCESS
3276             result = access(name, access_mode);
3277 #  else
3278             DIE(aTHX_ "panic: attempt to call access() in %s", OP_NAME(PL_op));
3279 #  endif
3280         }
3281         if (result == 0)
3282             FT_RETURNYES;
3283         if (result < 0)
3284             FT_RETURNUNDEF;
3285         FT_RETURNNO;
3286 #endif
3287     }
3288
3289     result = my_stat_flags(0);
3290     if (result < 0)
3291         FT_RETURNUNDEF;
3292     if (cando(stat_mode, effective, &PL_statcache))
3293         FT_RETURNYES;
3294     FT_RETURNNO;
3295 }
3296
3297
3298 /* also used for: pp_ftatime() pp_ftctime() pp_ftmtime() pp_ftsize() */
3299
3300 PP(pp_ftis)
3301 {
3302     I32 result;
3303     const int op_type = PL_op->op_type;
3304     char opchar = '?';
3305
3306     switch (op_type) {
3307     case OP_FTIS:       opchar = 'e'; break;
3308     case OP_FTSIZE:     opchar = 's'; break;
3309     case OP_FTMTIME:    opchar = 'M'; break;
3310     case OP_FTCTIME:    opchar = 'C'; break;
3311     case OP_FTATIME:    opchar = 'A'; break;
3312     }
3313     tryAMAGICftest_MG(opchar);
3314
3315     result = my_stat_flags(0);
3316     if (result < 0)
3317         FT_RETURNUNDEF;
3318     if (op_type == OP_FTIS)
3319         FT_RETURNYES;
3320     {
3321         /* You can't dTARGET inside OP_FTIS, because you'll get
3322            "panic: pad_sv po" - the op is not flagged to have a target.  */
3323         dTARGET;
3324         switch (op_type) {
3325         case OP_FTSIZE:
3326 #if Off_t_size > IVSIZE
3327             sv_setnv(TARG, (NV)PL_statcache.st_size);
3328 #else
3329             sv_setiv(TARG, (IV)PL_statcache.st_size);
3330 #endif
3331             break;
3332         case OP_FTMTIME:
3333             sv_setnv(TARG,
3334                     ((NV)PL_basetime - PL_statcache.st_mtime) / 86400.0 );
3335             break;
3336         case OP_FTATIME:
3337             sv_setnv(TARG,
3338                     ((NV)PL_basetime - PL_statcache.st_atime) / 86400.0 );
3339             break;
3340         case OP_FTCTIME:
3341             sv_setnv(TARG,
3342                     ((NV)PL_basetime - PL_statcache.st_ctime) / 86400.0 );
3343             break;
3344         }
3345         SvSETMAGIC(TARG);
3346         return SvTRUE_nomg_NN(TARG)
3347             ? S_ft_return_true(aTHX_ TARG) : S_ft_return_false(aTHX_ TARG);
3348     }
3349 }
3350
3351
3352 /* also used for: pp_ftblk() pp_ftchr() pp_ftdir() pp_fteowned()
3353  *                pp_ftfile() pp_ftpipe() pp_ftsgid() pp_ftsock()
3354  *                pp_ftsuid() pp_ftsvtx() pp_ftzero() */
3355
3356 PP(pp_ftrowned)
3357 {
3358     I32 result;
3359     char opchar = '?';
3360
3361     switch (PL_op->op_type) {
3362     case OP_FTROWNED:   opchar = 'O'; break;
3363     case OP_FTEOWNED:   opchar = 'o'; break;
3364     case OP_FTZERO:     opchar = 'z'; break;
3365     case OP_FTSOCK:     opchar = 'S'; break;
3366     case OP_FTCHR:      opchar = 'c'; break;
3367     case OP_FTBLK:      opchar = 'b'; break;
3368     case OP_FTFILE:     opchar = 'f'; break;
3369     case OP_FTDIR:      opchar = 'd'; break;
3370     case OP_FTPIPE:     opchar = 'p'; break;
3371     case OP_FTSUID:     opchar = 'u'; break;
3372     case OP_FTSGID:     opchar = 'g'; break;
3373     case OP_FTSVTX:     opchar = 'k'; break;
3374     }
3375     tryAMAGICftest_MG(opchar);
3376
3377     result = my_stat_flags(0);
3378     if (result < 0)
3379         FT_RETURNUNDEF;
3380     switch (PL_op->op_type) {
3381     case OP_FTROWNED:
3382         if (PL_statcache.st_uid == PerlProc_getuid())
3383             FT_RETURNYES;
3384         break;
3385     case OP_FTEOWNED:
3386         if (PL_statcache.st_uid == PerlProc_geteuid())
3387             FT_RETURNYES;
3388         break;
3389     case OP_FTZERO:
3390         if (PL_statcache.st_size == 0)
3391             FT_RETURNYES;
3392         break;
3393     case OP_FTSOCK:
3394         if (S_ISSOCK(PL_statcache.st_mode))
3395             FT_RETURNYES;
3396         break;
3397     case OP_FTCHR:
3398         if (S_ISCHR(PL_statcache.st_mode))
3399             FT_RETURNYES;
3400         break;
3401     case OP_FTBLK:
3402         if (S_ISBLK(PL_statcache.st_mode))
3403             FT_RETURNYES;
3404         break;
3405     case OP_FTFILE:
3406         if (S_ISREG(PL_statcache.st_mode))
3407             FT_RETURNYES;
3408         break;
3409     case OP_FTDIR:
3410         if (S_ISDIR(PL_statcache.st_mode))
3411             FT_RETURNYES;
3412         break;
3413     case OP_FTPIPE:
3414         if (S_ISFIFO(PL_statcache.st_mode))
3415             FT_RETURNYES;
3416         break;
3417 #ifdef S_ISUID
3418     case OP_FTSUID:
3419         if (PL_statcache.st_mode & S_ISUID)
3420             FT_RETURNYES;
3421         break;
3422 #endif
3423 #ifdef S_ISGID
3424     case OP_FTSGID:
3425         if (PL_statcache.st_mode & S_ISGID)
3426             FT_RETURNYES;
3427         break;
3428 #endif
3429 #ifdef S_ISVTX
3430     case OP_FTSVTX:
3431         if (PL_statcache.st_mode & S_ISVTX)
3432             FT_RETURNYES;
3433         break;
3434 #endif
3435     }
3436     FT_RETURNNO;
3437 }
3438
3439 PP(pp_ftlink)
3440 {
3441     I32 result;
3442
3443     tryAMAGICftest_MG('l');
3444     result = my_lstat_flags(0);
3445
3446     if (result < 0)
3447         FT_RETURNUNDEF;
3448     if (S_ISLNK(PL_statcache.st_mode))
3449         FT_RETURNYES;
3450     FT_RETURNNO;
3451 }
3452
3453 PP(pp_fttty)
3454 {
3455     int fd;
3456     GV *gv;
3457     char *name = NULL;
3458     STRLEN namelen;
3459     UV uv;
3460
3461     tryAMAGICftest_MG('t');
3462
3463     if (PL_op->op_flags & OPf_REF)
3464         gv = cGVOP_gv;
3465     else {
3466       SV *tmpsv = *PL_stack_sp;
3467       if (!(gv = MAYBE_DEREF_GV_nomg(tmpsv))) {
3468         name = SvPV_nomg(tmpsv, namelen);
3469         gv = gv_fetchpvn_flags(name, namelen, SvUTF8(tmpsv), SVt_PVIO);
3470       }
3471     }
3472
3473     if (GvIO(gv) && IoIFP(GvIOp(gv)))
3474         fd = PerlIO_fileno(IoIFP(GvIOp(gv)));
3475     else if (name && isDIGIT(*name) && grok_atoUV(name, &uv, NULL) && uv <= PERL_INT_MAX)
3476         fd = (int)uv;
3477     else
3478         fd = -1;
3479     if (fd < 0) {
3480         SETERRNO(EBADF,RMS_IFI);
3481         FT_RETURNUNDEF;
3482     }
3483     if (PerlLIO_isatty(fd))
3484         FT_RETURNYES;
3485     FT_RETURNNO;
3486 }
3487
3488
3489 /* also used for: pp_ftbinary() */
3490
3491 PP(pp_fttext)
3492 {
3493     I32 i;
3494     SSize_t len;
3495     I32 odd = 0;
3496     STDCHAR tbuf[512];
3497     STDCHAR *s;
3498     IO *io;
3499     SV *sv = NULL;
3500     GV *gv;
3501     PerlIO *fp;
3502     const U8 * first_variant;
3503
3504     tryAMAGICftest_MG(PL_op->op_type == OP_FTTEXT ? 'T' : 'B');
3505
3506     if (PL_op->op_flags & OPf_REF)
3507         gv = cGVOP_gv;
3508     else if ((PL_op->op_private & (OPpFT_STACKED|OPpFT_AFTER_t))
3509              == OPpFT_STACKED)
3510         gv = PL_defgv;
3511     else {
3512         sv = *PL_stack_sp;
3513         gv = MAYBE_DEREF_GV_nomg(sv);
3514     }
3515
3516     if (gv) {
3517         if (gv == PL_defgv) {
3518             if (PL_statgv)
3519                 io = SvTYPE(PL_statgv) == SVt_PVIO
3520                     ? (IO *)PL_statgv
3521                     : GvIO(PL_statgv);
3522             else {
3523                 goto really_filename;
3524             }
3525         }
3526         else {
3527             PL_statgv = gv;
3528             SvPVCLEAR(PL_statname);
3529             io = GvIO(PL_statgv);
3530         }
3531         PL_laststatval = -1;
3532         PL_laststype = OP_STAT;
3533         if (io && IoIFP(io)) {
3534             int fd;
3535             if (! PerlIO_has_base(IoIFP(io)))
3536                 DIE(aTHX_ "-T and -B not implemented on filehandles");
3537             fd = PerlIO_fileno(IoIFP(io));
3538             if (fd < 0) {
3539                 SETERRNO(EBADF,RMS_IFI);
3540                 FT_RETURNUNDEF;
3541             }
3542             PL_laststatval = PerlLIO_fstat(fd, &PL_statcache);
3543             if (PL_laststatval < 0)
3544                 FT_RETURNUNDEF;
3545             if (S_ISDIR(PL_statcache.st_mode)) { /* handle NFS glitch */
3546                 if (PL_op->op_type == OP_FTTEXT)
3547                     FT_RETURNNO;
3548                 else
3549                     FT_RETURNYES;
3550             }
3551             if (PerlIO_get_cnt(IoIFP(io)) <= 0) {
3552                 i = PerlIO_getc(IoIFP(io));
3553                 if (i != EOF)
3554                     (void)PerlIO_ungetc(IoIFP(io),i);
3555                 else
3556                     /* null file is anything */
3557                     FT_RETURNYES;
3558             }
3559             len = PerlIO_get_bufsiz(IoIFP(io));
3560             s = (STDCHAR *) PerlIO_get_base(IoIFP(io));
3561             /* sfio can have large buffers - limit to 512 */
3562             if (len > 512)
3563                 len = 512;
3564         }
3565         else {
3566             SETERRNO(EBADF,RMS_IFI);
3567             report_evil_fh(gv);
3568             SETERRNO(EBADF,RMS_IFI);
3569             FT_RETURNUNDEF;
3570         }
3571     }
3572     else {
3573         const char *file;
3574         const char *temp;
3575         STRLEN temp_len;
3576         int fd; 
3577
3578         assert(sv);
3579         temp = SvPV_nomg_const(sv, temp_len);
3580         sv_setpv(PL_statname, temp);
3581         if (!IS_SAFE_PATHNAME(temp, temp_len, OP_NAME(PL_op))) {
3582             PL_laststatval = -1;
3583             PL_laststype = OP_STAT;
3584             FT_RETURNUNDEF;
3585         }
3586       really_filename:
3587         file = SvPVX_const(PL_statname);
3588         PL_statgv = NULL;
3589         if (!(fp = PerlIO_open(file, "r"))) {
3590             if (!gv) {
3591                 PL_laststatval = -1;
3592                 PL_laststype = OP_STAT;
3593             }
3594             if (ckWARN(WARN_NEWLINE) && should_warn_nl(file)) {
3595                 /* PL_warn_nl is constant */
3596                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
3597                 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
3598                 GCC_DIAG_RESTORE;
3599             }
3600             FT_RETURNUNDEF;
3601         }
3602         PL_laststype = OP_STAT;
3603         fd = PerlIO_fileno(fp);
3604         if (fd < 0) {
3605             (void)PerlIO_close(fp);
3606             SETERRNO(EBADF,RMS_IFI);
3607             FT_RETURNUNDEF;
3608         }
3609         PL_laststatval = PerlLIO_fstat(fd, &PL_statcache);
3610         if (PL_laststatval < 0) {
3611             dSAVE_ERRNO;
3612             (void)PerlIO_close(fp);
3613             RESTORE_ERRNO;
3614             FT_RETURNUNDEF;
3615         }
3616         PerlIO_binmode(aTHX_ fp, '<', O_BINARY, NULL);
3617         len = PerlIO_read(fp, tbuf, sizeof(tbuf));
3618         (void)PerlIO_close(fp);
3619         if (len <= 0) {
3620             if (S_ISDIR(PL_statcache.st_mode) && PL_op->op_type == OP_FTTEXT)
3621                 FT_RETURNNO;            /* special case NFS directories */
3622             FT_RETURNYES;               /* null file is anything */
3623         }
3624         s = tbuf;
3625     }
3626
3627     /* now scan s to look for textiness */
3628
3629 #if defined(DOSISH) || defined(USEMYBINMODE)
3630     /* ignore trailing ^Z on short files */
3631     if (len && len < (I32)sizeof(tbuf) && tbuf[len-1] == 26)
3632         --len;
3633 #endif
3634
3635     assert(len);
3636     if (! is_utf8_invariant_string_loc((U8 *) s, len, &first_variant)) {
3637
3638         /* Here contains a variant under UTF-8 .  See if the entire string is
3639          * UTF-8. */
3640         if (is_utf8_fixed_width_buf_flags(first_variant,
3641                                           len - ((char *) first_variant - (char *) s),
3642                                           0))
3643         {
3644             if (PL_op->op_type == OP_FTTEXT) {
3645                 FT_RETURNYES;
3646             }
3647             else {
3648                 FT_RETURNNO;
3649             }
3650         }
3651     }
3652
3653     /* Here, is not UTF-8 or is entirely ASCII.  Look through the buffer for
3654      * things that wouldn't be in ASCII text or rich ASCII text.  Count these
3655      * in 'odd' */
3656     for (i = 0; i < len; i++, s++) {
3657         if (!*s) {                      /* null never allowed in text */
3658             odd += len;
3659             break;
3660         }
3661 #ifdef USE_LOCALE_CTYPE
3662         if (IN_LC_RUNTIME(LC_CTYPE)) {
3663             if ( isPRINT_LC(*s) || isSPACE_LC(*s)) {
3664                 continue;
3665             }
3666         }
3667         else
3668 #endif
3669              if (  isPRINT_A(*s)
3670                     /* VT occurs so rarely in text, that we consider it odd */
3671                  || (isSPACE_A(*s) && *s != VT_NATIVE)
3672
3673                     /* But there is a fair amount of backspaces and escapes in
3674                      * some text */
3675                  || *s == '\b'
3676                  || *s == ESC_NATIVE)
3677         {
3678             continue;
3679         }
3680         odd++;
3681     }
3682
3683     if ((odd * 3 > len) == (PL_op->op_type == OP_FTTEXT)) /* allow 1/3 odd */
3684         FT_RETURNNO;
3685     else
3686         FT_RETURNYES;
3687 }
3688
3689 /* File calls. */
3690
3691 PP(pp_chdir)
3692 {
3693     dSP; dTARGET;
3694     const char *tmps = NULL;
3695     GV *gv = NULL;
3696
3697     if( MAXARG == 1 ) {
3698         SV * const sv = POPs;
3699         if (PL_op->op_flags & OPf_SPECIAL) {
3700             gv = gv_fetchsv(sv, 0, SVt_PVIO);
3701             if (!gv) {
3702                 if (ckWARN(WARN_UNOPENED)) {
3703                     Perl_warner(aTHX_ packWARN(WARN_UNOPENED),
3704                                 "chdir() on unopened filehandle %" SVf, sv);
3705                 }
3706                 SETERRNO(EBADF,RMS_IFI);
3707                 PUSHs(&PL_sv_zero);
3708                 TAINT_PROPER("chdir");
3709                 RETURN;
3710             }
3711         }
3712         else if (!(gv = MAYBE_DEREF_GV(sv)))
3713                 tmps = SvPV_nomg_const_nolen(sv);
3714     }
3715     else {
3716         HV * const table = GvHVn(PL_envgv);
3717         SV **svp;
3718
3719         EXTEND(SP, 1);
3720         if (    (svp = hv_fetchs(table, "HOME", FALSE))
3721              || (svp = hv_fetchs(table, "LOGDIR", FALSE))
3722 #ifdef VMS
3723              || (svp = hv_fetchs(table, "SYS$LOGIN", FALSE))
3724 #endif
3725            )
3726         {
3727             tmps = SvPV_nolen_const(*svp);
3728         }
3729         else {
3730             PUSHs(&PL_sv_zero);
3731             SETERRNO(EINVAL, LIB_INVARG);
3732             TAINT_PROPER("chdir");
3733             RETURN;
3734         }
3735     }
3736
3737     TAINT_PROPER("chdir");
3738     if (gv) {
3739 #ifdef HAS_FCHDIR
3740         IO* const io = GvIO(gv);
3741         if (io) {
3742             if (IoDIRP(io)) {
3743                 PUSHi(fchdir(my_dirfd(IoDIRP(io))) >= 0);
3744             } else if (IoIFP(io)) {
3745                 int fd = PerlIO_fileno(IoIFP(io));
3746                 if (fd < 0) {
3747                     goto nuts;
3748                 }
3749                 PUSHi(fchdir(fd) >= 0);
3750             }
3751             else {
3752                 goto nuts;
3753             }
3754         } else {
3755             goto nuts;
3756         }
3757
3758 #else
3759         DIE(aTHX_ PL_no_func, "fchdir");
3760 #endif
3761     }
3762     else 
3763         PUSHi( PerlDir_chdir(tmps) >= 0 );
3764 #ifdef VMS
3765     /* Clear the DEFAULT element of ENV so we'll get the new value
3766      * in the future. */
3767     hv_delete(GvHVn(PL_envgv),"DEFAULT",7,G_DISCARD);
3768 #endif
3769     RETURN;
3770
3771 #ifdef HAS_FCHDIR
3772  nuts:
3773     report_evil_fh(gv);
3774     SETERRNO(EBADF,RMS_IFI);
3775     PUSHs(&PL_sv_zero);
3776     RETURN;
3777 #endif
3778 }
3779
3780
3781 /* also used for: pp_chmod() pp_kill() pp_unlink() pp_utime() */
3782
3783 PP(pp_chown)
3784 {
3785     dSP; dMARK; dTARGET;
3786     const I32 value = (I32)apply(PL_op->op_type, MARK, SP);
3787
3788     SP = MARK;
3789     XPUSHi(value);
3790     RETURN;
3791 }
3792
3793 PP(pp_chroot)
3794 {
3795 #ifdef HAS_CHROOT
3796     dSP; dTARGET;
3797     char * const tmps = POPpx;
3798     TAINT_PROPER("chroot");
3799     PUSHi( chroot(tmps) >= 0 );
3800     RETURN;
3801 #else
3802     DIE(aTHX_ PL_no_func, "chroot");
3803 #endif
3804 }
3805
3806 PP(pp_rename)
3807 {
3808     dSP; dTARGET;
3809     int anum;
3810 #ifndef HAS_RENAME
3811     Stat_t statbuf;
3812 #endif
3813     const char * const tmps2 = POPpconstx;
3814     const char * const tmps = SvPV_nolen_const(TOPs);
3815     TAINT_PROPER("rename");
3816 #ifdef HAS_RENAME
3817     anum = PerlLIO_rename(tmps, tmps2);
3818 #else
3819     if (!(anum = PerlLIO_stat(tmps, &statbuf))) {
3820         if (same_dirent(tmps2, tmps))   /* can always rename to same name */
3821             anum = 1;
3822         else {
3823             if (PerlProc_geteuid() || PerlLIO_stat(tmps2, &statbuf) < 0 || !S_ISDIR(statbuf.st_mode))
3824                 (void)UNLINK(tmps2);
3825             if (!(anum = link(tmps, tmps2)))
3826                 anum = UNLINK(tmps);
3827         }
3828     }
3829 #endif
3830     SETi( anum >= 0 );
3831     RETURN;
3832 }
3833
3834
3835 /* also used for: pp_symlink() */
3836
3837 #if defined(HAS_LINK) || defined(HAS_SYMLINK)
3838 PP(pp_link)
3839 {
3840     dSP; dTARGET;
3841     const int op_type = PL_op->op_type;
3842     int result;
3843
3844 #  ifndef HAS_LINK
3845     if (op_type == OP_LINK)
3846         DIE(aTHX_ PL_no_func, "link");
3847 #  endif
3848 #  ifndef HAS_SYMLINK
3849     if (op_type == OP_SYMLINK)
3850         DIE(aTHX_ PL_no_func, "symlink");
3851 #  endif
3852
3853     {
3854         const char * const tmps2 = POPpconstx;
3855         const char * const tmps = SvPV_nolen_const(TOPs);
3856         TAINT_PROPER(PL_op_desc[op_type]);
3857         result =
3858 #  if defined(HAS_LINK) && defined(HAS_SYMLINK)
3859             /* Both present - need to choose which.  */
3860             (op_type == OP_LINK) ?
3861             PerlLIO_link(tmps, tmps2) : symlink(tmps, tmps2);
3862 #  elif defined(HAS_LINK)
3863     /* Only have link, so calls to pp_symlink will have DIE()d above.  */
3864         PerlLIO_link(tmps, tmps2);
3865 #  elif defined(HAS_SYMLINK)
3866     /* Only have symlink, so calls to pp_link will have DIE()d above.  */
3867         symlink(tmps, tmps2);
3868 #  endif
3869     }
3870
3871     SETi( result >= 0 );
3872     RETURN;
3873 }
3874 #else
3875
3876 /* also used for: pp_symlink() */
3877
3878 PP(pp_link)
3879 {
3880     /* Have neither.  */
3881     DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
3882 }
3883 #endif
3884
3885 PP(pp_readlink)
3886 {
3887     dSP;
3888 #ifdef HAS_SYMLINK
3889     dTARGET;
3890     const char *tmps;
3891     char buf[MAXPATHLEN];
3892     SSize_t len;
3893
3894     TAINT;
3895     tmps = POPpconstx;
3896     /* NOTE: if the length returned by readlink() is sizeof(buf) - 1,
3897      * it is impossible to know whether the result was truncated. */
3898     len = readlink(tmps, buf, sizeof(buf) - 1);
3899     if (len < 0)
3900         RETPUSHUNDEF;
3901     if (len != -1)
3902         buf[len] = '\0';
3903     PUSHp(buf, len);
3904     RETURN;
3905 #else
3906     EXTEND(SP, 1);
3907     RETSETUNDEF;                /* just pretend it's a normal file */
3908 #endif
3909 }
3910
3911 #if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
3912 STATIC int
3913 S_dooneliner(pTHX_ const char *cmd, const char *filename)
3914 {
3915     char * const save_filename = filename;
3916     char *cmdline;
3917     char *s;
3918     PerlIO *myfp;
3919     int anum = 1;
3920     Size_t size = strlen(cmd) + (strlen(filename) * 2) + 10;
3921
3922     PERL_ARGS_ASSERT_DOONELINER;
3923
3924     Newx(cmdline, size, char);
3925     my_strlcpy(cmdline, cmd, size);
3926     my_strlcat(cmdline, " ", size);
3927     for (s = cmdline + strlen(cmdline); *filename; ) {
3928         *s++ = '\\';
3929         *s++ = *filename++;
3930     }
3931     if (s - cmdline < size)
3932         my_strlcpy(s, " 2>&1", size - (s - cmdline));
3933     myfp = PerlProc_popen(cmdline, "r");
3934     Safefree(cmdline);
3935
3936     if (myfp) {
3937         SV * const tmpsv = sv_newmortal();
3938         /* Need to save/restore 'PL_rs' ?? */
3939         s = sv_gets(tmpsv, myfp, 0);
3940         (void)PerlProc_pclose(myfp);
3941         if (s != NULL) {
3942             int e;
3943             for (e = 1;
3944 #ifdef HAS_SYS_ERRLIST
3945                  e <= sys_nerr
3946 #endif
3947                  ; e++)
3948             {
3949                 /* you don't see this */
3950                 const char * const errmsg = Strerror(e) ;
3951                 if (!errmsg)
3952                     break;
3953                 if (instr(s, errmsg)) {
3954                     SETERRNO(e,0);
3955                     return 0;
3956                 }
3957             }
3958             SETERRNO(0,0);
3959 #ifndef EACCES
3960 #define EACCES EPERM
3961 #endif
3962             if (instr(s, "cannot make"))
3963                 SETERRNO(EEXIST,RMS_FEX);
3964             else if (instr(s, "existing file"))
3965                 SETERRNO(EEXIST,RMS_FEX);
3966             else if (instr(s, "ile exists"))
3967                 SETERRNO(EEXIST,RMS_FEX);
3968             else if (instr(s, "non-exist"))
3969                 SETERRNO(ENOENT,RMS_FNF);
3970             else if (instr(s, "does not exist"))
3971                 SETERRNO(ENOENT,RMS_FNF);
3972             else if (instr(s, "not empty"))
3973                 SETERRNO(EBUSY,SS_DEVOFFLINE);
3974             else if (instr(s, "cannot access"))
3975                 SETERRNO(EACCES,RMS_PRV);
3976             else
3977                 SETERRNO(EPERM,RMS_PRV);
3978             return 0;
3979         }
3980         else {  /* some mkdirs return no failure indication */
3981             Stat_t statbuf;
3982             anum = (PerlLIO_stat(save_filename, &statbuf) >= 0);
3983             if (PL_op->op_type == OP_RMDIR)
3984                 anum = !anum;
3985             if (anum)
3986                 SETERRNO(0,0);
3987             else
3988                 SETERRNO(EACCES,RMS_PRV);       /* a guess */
3989         }
3990         return anum;
3991     }
3992     else
3993         return 0;
3994 }
3995 #endif
3996
3997 /* This macro removes trailing slashes from a directory name.
3998  * Different operating and file systems take differently to
3999  * trailing slashes.  According to POSIX 1003.1 1996 Edition
4000  * any number of trailing slashes should be allowed.
4001  * Thusly we snip them away so that even non-conforming
4002  * systems are happy.
4003  * We should probably do this "filtering" for all
4004  * the functions that expect (potentially) directory names:
4005  * -d, chdir(), chmod(), chown(), chroot(), fcntl()?,
4006  * (mkdir()), opendir(), rename(), rmdir(), stat(). --jhi */
4007
4008 #define TRIMSLASHES(tmps,len,copy) (tmps) = SvPV_const(TOPs, (len)); \
4009     if ((len) > 1 && (tmps)[(len)-1] == '/') { \
4010         do { \
4011             (len)--; \
4012         } while ((len) > 1 && (tmps)[(len)-1] == '/'); \
4013         (tmps) = savepvn((tmps), (len)); \
4014         (copy) = TRUE; \
4015     }
4016
4017 PP(pp_mkdir)
4018 {
4019     dSP; dTARGET;
4020     STRLEN len;
4021     const char *tmps;
4022     bool copy = FALSE;
4023     const unsigned int mode = (MAXARG > 1 && (TOPs||((void)POPs,0))) ? POPu : 0777;
4024
4025     TRIMSLASHES(tmps,len,copy);
4026
4027     TAINT_PROPER("mkdir");
4028 #ifdef HAS_MKDIR
4029     SETi( PerlDir_mkdir(tmps, mode) >= 0 );
4030 #else
4031     {
4032     int oldumask;
4033     SETi( dooneliner("mkdir", tmps) );
4034     oldumask = PerlLIO_umask(0);
4035     PerlLIO_umask(oldumask);
4036     PerlLIO_chmod(tmps, (mode & ~oldumask) & 0777);
4037     }
4038 #endif
4039     if (copy)
4040         Safefree(tmps);
4041     RETURN;
4042 }
4043
4044 PP(pp_rmdir)
4045 {
4046     dSP; dTARGET;
4047     STRLEN len;
4048     const char *tmps;
4049     bool copy = FALSE;
4050
4051     TRIMSLASHES(tmps,len,copy);
4052     TAINT_PROPER("rmdir");
4053 #ifdef HAS_RMDIR
4054     SETi( PerlDir_rmdir(tmps) >= 0 );
4055 #else
4056     SETi( dooneliner("rmdir", tmps) );
4057 #endif
4058     if (copy)
4059         Safefree(tmps);
4060     RETURN;
4061 }
4062
4063 /* Directory calls. */
4064
4065 PP(pp_open_dir)
4066 {
4067 #if defined(Direntry_t) && defined(HAS_READDIR)
4068     dSP;
4069     const char * const dirname = POPpconstx;
4070     GV * const gv = MUTABLE_GV(POPs);
4071     IO * const io = GvIOn(gv);
4072
4073     if ((IoIFP(io) || IoOFP(io)))
4074         Perl_croak(aTHX_ "Cannot open %" HEKf " as a dirhandle: it is already open as a filehandle",
4075                          HEKfARG(GvENAME_HEK(gv)));
4076     if (IoDIRP(io))
4077         PerlDir_close(IoDIRP(io));
4078     if (!(IoDIRP(io) = PerlDir_open(dirname)))
4079         goto nope;
4080
4081     RETPUSHYES;
4082   nope:
4083     if (!errno)
4084         SETERRNO(EBADF,RMS_DIR);
4085     RETPUSHUNDEF;
4086 #else
4087     DIE(aTHX_ PL_no_dir_func, "opendir");
4088 #endif
4089 }
4090
4091 PP(pp_readdir)
4092 {
4093 #if !defined(Direntry_t) || !defined(HAS_READDIR)
4094     DIE(aTHX_ PL_no_dir_func, "readdir");
4095 #else
4096 #if !defined(I_DIRENT) && !defined(VMS)
4097     Direntry_t *readdir (DIR *);
4098 #endif
4099     dSP;
4100
4101     SV *sv;
4102     const U8 gimme = GIMME_V;
4103     GV * const gv = MUTABLE_GV(POPs);
4104     const Direntry_t *dp;
4105     IO * const io = GvIOn(gv);
4106
4107     if (!IoDIRP(io)) {
4108         Perl_ck_warner(aTHX_ packWARN(WARN_IO),
4109                        "readdir() attempted on invalid dirhandle %" HEKf,
4110                             HEKfARG(GvENAME_HEK(gv)));
4111         goto nope;
4112     }
4113
4114     do {
4115         dp = (Direntry_t *)PerlDir_read(IoDIRP(io));
4116         if (!dp)
4117             break;
4118 #ifdef DIRNAMLEN
4119         sv = newSVpvn(dp->d_name, dp->d_namlen);
4120 #else
4121         sv = newSVpv(dp->d_name, 0);
4122 #endif
4123         if (!(IoFLAGS(io) & IOf_UNTAINT))
4124             SvTAINTED_on(sv);
4125         mXPUSHs(sv);
4126     } while (gimme == G_ARRAY);
4127
4128     if (!dp && gimme != G_ARRAY)
4129         RETPUSHUNDEF;
4130
4131     RETURN;
4132
4133   nope:
4134     if (!errno)
4135         SETERRNO(EBADF,RMS_ISI);
4136     if (gimme == G_ARRAY)
4137         RETURN;
4138     else
4139         RETPUSHUNDEF;
4140 #endif
4141 }
4142
4143 PP(pp_telldir)
4144 {
4145 #if defined(HAS_TELLDIR) || defined(telldir)
4146     dSP; dTARGET;
4147  /* XXX does _anyone_ need this? --AD 2/20/1998 */
4148  /* XXX netbsd still seemed to.
4149     XXX HAS_TELLDIR_PROTO is new style, NEED_TELLDIR_PROTO is old style.
4150     --JHI 1999-Feb-02 */
4151 # if !defined(HAS_TELLDIR_PROTO) || defined(NEED_TELLDIR_PROTO)
4152     long telldir (DIR *);
4153 # endif
4154     GV * const gv = MUTABLE_GV(POPs);
4155     IO * const io = GvIOn(gv);
4156
4157     if (!IoDIRP(io)) {
4158         Perl_ck_warner(aTHX_ packWARN(WARN_IO),
4159                        "telldir() attempted on invalid dirhandle %" HEKf,
4160                             HEKfARG(GvENAME_HEK(gv)));
4161         goto nope;
4162     }
4163
4164     PUSHi( PerlDir_tell(IoDIRP(io)) );
4165     RETURN;
4166   nope:
4167     if (!errno)
4168         SETERRNO(EBADF,RMS_ISI);
4169     RETPUSHUNDEF;
4170 #else
4171     DIE(aTHX_ PL_no_dir_func, "telldir");
4172 #endif
4173 }
4174
4175 PP(pp_seekdir)
4176 {
4177 #if defined(HAS_SEEKDIR) || defined(seekdir)
4178     dSP;
4179     const long along = POPl;
4180     GV * const gv = MUTABLE_GV(POPs);
4181     IO * const io = GvIOn(gv);
4182
4183     if (!IoDIRP(io)) {
4184         Perl_ck_warner(aTHX_ packWARN(WARN_IO),
4185                        "seekdir() attempted on invalid dirhandle %" HEKf,
4186                                 HEKfARG(GvENAME_HEK(gv)));
4187         goto nope;
4188     }
4189     (void)PerlDir_seek(IoDIRP(io), along);
4190
4191     RETPUSHYES;
4192   nope:
4193     if (!errno)
4194         SETERRNO(EBADF,RMS_ISI);
4195     RETPUSHUNDEF;
4196 #else
4197     DIE(aTHX_ PL_no_dir_func, "seekdir");
4198 #endif
4199 }
4200
4201 PP(pp_rewinddir)
4202 {
4203 #if defined(HAS_REWINDDIR) || defined(rewinddir)
4204     dSP;
4205     GV * const gv = MUTABLE_GV(POPs);
4206     IO * const io = GvIOn(gv);
4207
4208     if (!IoDIRP(io)) {
4209         Perl_ck_warner(aTHX_ packWARN(WARN_IO),
4210                        "rewinddir() attempted on invalid dirhandle %" HEKf,
4211                                 HEKfARG(GvENAME_HEK(gv)));
4212         goto nope;
4213     }
4214     (void)PerlDir_rewind(IoDIRP(io));
4215     RETPUSHYES;
4216   nope:
4217     if (!errno)
4218         SETERRNO(EBADF,RMS_ISI);
4219     RETPUSHUNDEF;
4220 #else
4221     DIE(aTHX_ PL_no_dir_func, "rewinddir");
4222 #endif
4223 }
4224
4225 PP(pp_closedir)
4226 {
4227 #if defined(Direntry_t) && defined(HAS_READDIR)
4228     dSP;
4229     GV * const gv = MUTABLE_GV(POPs);
4230     IO * const io = GvIOn(gv);
4231
4232     if (!IoDIRP(io)) {
4233         Perl_ck_warner(aTHX_ packWARN(WARN_IO),
4234                        "closedir() attempted on invalid dirhandle %" HEKf,
4235                                 HEKfARG(GvENAME_HEK(gv)));
4236         goto nope;
4237     }
4238 #ifdef VOID_CLOSEDIR
4239     PerlDir_close(IoDIRP(io));
4240 #else
4241     if (PerlDir_close(IoDIRP(io)) < 0) {
4242         IoDIRP(io) = 0; /* Don't try to close again--coredumps on SysV */
4243         goto nope;
4244     }
4245 #endif
4246     IoDIRP(io) = 0;
4247
4248     RETPUSHYES;
4249   nope:
4250     if (!errno)
4251         SETERRNO(EBADF,RMS_IFI);
4252     RETPUSHUNDEF;
4253 #else
4254     DIE(aTHX_ PL_no_dir_func, "closedir");
4255 #endif
4256 }
4257
4258 /* Process control. */
4259
4260 PP(pp_fork)
4261 {
4262 #ifdef HAS_FORK
4263     dSP; dTARGET;
4264     Pid_t childpid;
4265 #ifdef HAS_SIGPROCMASK
4266     sigset_t oldmask, newmask;
4267 #endif
4268
4269     EXTEND(SP, 1);
4270     PERL_FLUSHALL_FOR_CHILD;
4271 #ifdef HAS_SIGPROCMASK
4272     sigfillset(&newmask);
4273     sigprocmask(SIG_SETMASK, &newmask, &oldmask);
4274 #endif
4275     childpid = PerlProc_fork();
4276     if (childpid == 0) {
4277         int sig;
4278         PL_sig_pending = 0;
4279         if (PL_psig_pend)
4280             for (sig = 1; sig < SIG_SIZE; sig++)
4281                 PL_psig_pend[sig] = 0;
4282     }
4283 #ifdef HAS_SIGPROCMASK
4284     {
4285         dSAVE_ERRNO;
4286         sigprocmask(SIG_SETMASK, &oldmask, NULL);
4287         RESTORE_ERRNO;
4288     }
4289 #endif
4290     if (childpid < 0)
4291         RETPUSHUNDEF;
4292     if (!childpid) {
4293 #ifdef PERL_USES_PL_PIDSTATUS
4294         hv_clear(PL_pidstatus); /* no kids, so don't wait for 'em */
4295 #endif
4296     }
4297     PUSHi(childpid);
4298     RETURN;
4299 #elif (defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)) || defined(__amigaos4__)
4300     dSP; dTARGET;
4301     Pid_t childpid;
4302
4303     EXTEND(SP, 1);
4304     PERL_FLUSHALL_FOR_CHILD;
4305     childpid = PerlProc_fork();
4306     if (childpid == -1)
4307         RETPUSHUNDEF;
4308     PUSHi(childpid);
4309     RETURN;
4310 #else
4311     DIE(aTHX_ PL_no_func, "fork");
4312 #endif
4313 }
4314
4315 PP(pp_wait)
4316 {
4317 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(__LIBCATAMOUNT__)
4318     dSP; dTARGET;
4319     Pid_t childpid;
4320     int argflags;
4321
4322     if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
4323         childpid = wait4pid(-1, &argflags, 0);
4324     else {
4325         while ((childpid = wait4pid(-1, &argflags, 0)) == -1 &&
4326                errno == EINTR) {
4327           PERL_ASYNC_CHECK();
4328         }
4329     }
4330 #  if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
4331     /* 0 and -1 are both error returns (the former applies to WNOHANG case) */
4332     STATUS_NATIVE_CHILD_SET((childpid && childpid != -1) ? argflags : -1);
4333 #  else
4334     STATUS_NATIVE_CHILD_SET((childpid > 0) ? argflags : -1);
4335 #  endif
4336     XPUSHi(childpid);
4337     RETURN;
4338 #else
4339     DIE(aTHX_ PL_no_func, "wait");
4340 #endif
4341 }
4342
4343 PP(pp_waitpid)
4344 {
4345 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(__LIBCATAMOUNT__)
4346     dSP; dTARGET;
4347     const int optype = POPi;
4348     const Pid_t pid = TOPi;
4349     Pid_t result;
4350 #ifdef __amigaos4__
4351     int argflags = 0;
4352     result = amigaos_waitpid(aTHX_ optype, pid, &argflags);
4353     STATUS_NATIVE_CHILD_SET((result >= 0) ? argflags : -1);
4354     result = result == 0 ? pid : -1;
4355 #else
4356     int argflags;
4357
4358     if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
4359         result = wait4pid(pid, &argflags, optype);
4360     else {
4361         while ((result = wait4pid(pid, &argflags, optype)) == -1 &&
4362                errno == EINTR) {
4363           PERL_ASYNC_CHECK();
4364         }
4365     }
4366 #  if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
4367     /* 0 and -1 are both error returns (the former applies to WNOHANG case) */
4368     STATUS_NATIVE_CHILD_SET((result && result != -1) ? argflags : -1);
4369 #  else
4370     STATUS_NATIVE_CHILD_SET((result > 0) ? argflags : -1);
4371 #  endif
4372 # endif /* __amigaos4__ */
4373     SETi(result);
4374     RETURN;
4375 #else
4376     DIE(aTHX_ PL_no_func, "waitpid");
4377 #endif
4378 }
4379
4380 PP(pp_system)
4381 {
4382     dSP; dMARK; dORIGMARK; dTARGET;
4383 #if defined(__LIBCATAMOUNT__)
4384     PL_statusvalue = -1;
4385     SP = ORIGMARK;
4386     XPUSHi(-1);
4387 #else
4388     I32 value;
4389 # ifdef __amigaos4__
4390     void * result;
4391 # else
4392     int result;
4393 # endif
4394
4395     while (++MARK <= SP) {
4396         SV *origsv = *MARK;
4397         STRLEN len;
4398         char *pv;
4399         pv = SvPV(origsv, len);
4400         *MARK = newSVpvn_flags(pv, len,
4401                     (SvFLAGS(origsv) & SVf_UTF8) | SVs_TEMP);
4402     }
4403     MARK = ORIGMARK;
4404
4405     if (TAINTING_get) {
4406         TAINT_ENV();
4407         TAINT_PROPER("system");
4408     }
4409     PERL_FLUSHALL_FOR_CHILD;
4410 #if (defined(HAS_FORK) || defined(__amigaos4__)) && !defined(VMS) && !defined(OS2) || defined(PERL_MICRO)
4411     {
4412 #ifdef __amigaos4__
4413         struct UserData userdata;
4414         pthread_t proc;
4415 #else
4416         Pid_t childpid;
4417 #endif
4418         int pp[2];
4419         I32 did_pipes = 0;
4420         bool child_success = FALSE;
4421 #ifdef HAS_SIGPROCMASK
4422         sigset_t newset, oldset;
4423 #endif
4424
4425         if (PerlProc_pipe(pp) >= 0)
4426             did_pipes = 1;
4427 #ifdef __amigaos4__
4428         amigaos_fork_set_userdata(aTHX_
4429                                   &userdata,
4430                                   did_pipes,
4431                                   pp[1],
4432                                   SP,
4433                                   mark);
4434         pthread_create(&proc,NULL,amigaos_system_child,(void *)&userdata);
4435         child_success = proc > 0;
4436 #else
4437 #ifdef HAS_SIGPROCMASK
4438         sigemptyset(&newset);
4439         sigaddset(&newset, SIGCHLD);
4440         sigprocmask(SIG_BLOCK, &newset, &oldset);
4441 #endif
4442         while ((childpid = PerlProc_fork()) == -1) {
4443             if (errno != EAGAIN) {
4444                 value = -1;
4445                 SP = ORIGMARK;
4446                 XPUSHi(value);
4447                 if (did_pipes) {
4448                     PerlLIO_close(pp[0]);
4449                     PerlLIO_close(pp[1]);
4450                 }
4451 #ifdef HAS_SIGPROCMASK
4452                 sigprocmask(SIG_SETMASK, &oldset, NULL);
4453 #endif
4454                 RETURN;
4455             }
4456             sleep(5);
4457         }
4458         child_success = childpid > 0;
4459 #endif
4460         if (child_success) {
4461             Sigsave_t ihand,qhand; /* place to save signals during system() */
4462             int status;
4463
4464 #ifndef __amigaos4__
4465             if (did_pipes)
4466                 PerlLIO_close(pp[1]);
4467 #endif
4468 #ifndef PERL_MICRO
4469             rsignal_save(SIGINT,  (Sighandler_t) SIG_IGN, &ihand);
4470             rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qhand);
4471 #endif
4472 #ifdef __amigaos4__
4473             result = pthread_join(proc, (void **)&status);
4474 #else
4475             do {
4476                 result = wait4pid(childpid, &status, 0);
4477             } while (result == -1 && errno == EINTR);
4478 #endif
4479 #ifndef PERL_MICRO
4480 #ifdef HAS_SIGPROCMASK
4481             sigprocmask(SIG_SETMASK, &oldset, NULL);
4482 #endif
4483             (void)rsignal_restore(SIGINT, &ihand);
4484             (void)rsignal_restore(SIGQUIT, &qhand);
4485 #endif
4486             STATUS_NATIVE_CHILD_SET(result == -1 ? -1 : status);
4487             SP = ORIGMARK;
4488             if (did_pipes) {
4489                 int errkid;
4490                 unsigned n = 0;
4491
4492                 while (n < sizeof(int)) {
4493                     const SSize_t n1 = PerlLIO_read(pp[0],
4494                                       (void*)(((char*)&errkid)+n),
4495                                       (sizeof(int)) - n);
4496                     if (n1 <= 0)
4497                         break;
4498                     n += n1;
4499                 }
4500                 PerlLIO_close(pp[0]);
4501                 if (n) {                        /* Error */
4502                     if (n != sizeof(int))
4503                         DIE(aTHX_ "panic: kid popen errno read, n=%u", n);
4504                     errno = errkid;             /* Propagate errno from kid */
4505 #ifdef __amigaos4__
4506                     /* The pipe always has something in it
4507                      * so n alone is not enough. */
4508                     if (errno > 0)
4509 #endif
4510                     {
4511                         STATUS_NATIVE_CHILD_SET(-1);
4512                     }
4513                 }
4514             }
4515             XPUSHi(STATUS_CURRENT);
4516             RETURN;
4517         }
4518 #ifndef __amigaos4__
4519 #ifdef HAS_SIGPROCMASK
4520         sigprocmask(SIG_SETMASK, &oldset, NULL);
4521 #endif
4522         if (did_pipes) {
4523             PerlLIO_close(pp[0]);
4524 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
4525             if (fcntl(pp[1], F_SETFD, FD_CLOEXEC) < 0)
4526                 RETPUSHUNDEF;
4527 #endif
4528         }
4529         if (PL_op->op_flags & OPf_STACKED) {
4530             SV * const really = *++MARK;
4531             value = (I32)do_aexec5(really, MARK, SP, pp[1], did_pipes);
4532         }
4533         else if (SP - MARK != 1)
4534             value = (I32)do_aexec5(NULL, MARK, SP, pp[1], did_pipes);
4535         else {
4536             value = (I32)do_exec3(SvPVx_nolen(sv_mortalcopy(*SP)), pp[1], did_pipes);
4537         }
4538 #endif /* __amigaos4__ */
4539         PerlProc__exit(-1);
4540     }
4541 #else /* ! FORK or VMS or OS/2 */
4542     PL_statusvalue = 0;
4543     result = 0;
4544     if (PL_op->op_flags & OPf_STACKED) {
4545         SV * const really = *++MARK;
4546 #  if defined(WIN32) || defined(OS2) || defined(__SYMBIAN32__) || defined(__VMS)
4547         value = (I32)do_aspawn(really, MARK, SP);
4548 #  else
4549         value = (I32)do_aspawn(really, (void **)MARK, (void **)SP);
4550 #  endif
4551     }
4552     else if (SP - MARK != 1) {
4553 #  if defined(WIN32) || defined(OS2) || defined(__SYMBIAN32__) || defined(__VMS)
4554         value = (I32)do_aspawn(NULL, MARK, SP);
4555 #  else
4556         value = (I32)do_aspawn(NULL, (void **)MARK, (void **)SP);
4557 #  endif
4558     }
4559     else {
4560         value = (I32)do_spawn(SvPVx_nolen(sv_mortalcopy(*SP)));
4561     }
4562     if (PL_statusvalue == -1)   /* hint that value must be returned as is */
4563         result = 1;
4564     STATUS_NATIVE_CHILD_SET(value);
4565     SP = ORIGMARK;
4566     XPUSHi(result ? value : STATUS_CURRENT);
4567 #endif /* !FORK or VMS or OS/2 */
4568 #endif
4569     RETURN;
4570 }
4571
4572 PP(pp_exec)
4573 {
4574     dSP; dMARK; dORIGMARK; dTARGET;
4575     I32 value;
4576
4577     if (TAINTING_get) {
4578         TAINT_ENV();
4579         while (++MARK <= SP) {
4580             (void)SvPV_nolen_const(*MARK);      /* stringify for taint check */
4581             if (TAINT_get)
4582                 break;
4583         }
4584         MARK = ORIGMARK;
4585         TAINT_PROPER("exec");
4586     }
4587
4588     PERL_FLUSHALL_FOR_CHILD;
4589     if (PL_op->op_flags & OPf_STACKED) {
4590         SV * const really = *++MARK;
4591         value = (I32)do_aexec(really, MARK, SP);
4592     }
4593     else if (SP - MARK != 1)
4594 #ifdef VMS
4595         value = (I32)vms_do_aexec(NULL, MARK, SP);
4596 #else
4597         value = (I32)do_aexec(NULL, MARK, SP);
4598 #endif
4599     else {
4600 #ifdef VMS
4601         value = (I32)vms_do_exec(SvPVx_nolen(sv_mortalcopy(*SP)));
4602 #else
4603         value = (I32)do_exec(SvPVx_nolen(sv_mortalcopy(*SP)));
4604 #endif
4605     }
4606     SP = ORIGMARK;
4607     XPUSHi(value);
4608     RETURN;
4609 }
4610
4611 PP(pp_getppid)
4612 {
4613 #ifdef HAS_GETPPID
4614     dSP; dTARGET;
4615     XPUSHi( getppid() );
4616     RETURN;
4617 #else
4618     DIE(aTHX_ PL_no_func, "getppid");
4619 #endif
4620 }
4621
4622 PP(pp_getpgrp)
4623 {
4624 #ifdef HAS_GETPGRP
4625     dSP; dTARGET;
4626     Pid_t pgrp;
4627     const Pid_t pid =
4628         (MAXARG < 1) ? 0 : TOPs ? SvIVx(POPs) : ((void)POPs, 0);
4629
4630 #ifdef BSD_GETPGRP
4631     pgrp = (I32)BSD_GETPGRP(pid);
4632 #else
4633     if (pid != 0 && pid != PerlProc_getpid())
4634         DIE(aTHX_ "POSIX getpgrp can't take an argument");
4635     pgrp = getpgrp();
4636 #endif
4637     XPUSHi(pgrp);
4638     RETURN;
4639 #else
4640     DIE(aTHX_ PL_no_func, "getpgrp");
4641 #endif
4642 }
4643
4644 PP(pp_setpgrp)
4645 {
4646 #ifdef HAS_SETPGRP
4647     dSP; dTARGET;
4648     Pid_t pgrp;
4649     Pid_t pid;
4650     pgrp = MAXARG == 2 && (TOPs||POPs) ? POPi : 0;
4651     if (MAXARG > 0) pid = TOPs ? TOPi : 0;
4652     else {
4653         pid = 0;
4654         EXTEND(SP,1);
4655         SP++;
4656     }
4657
4658     TAINT_PROPER("setpgrp");
4659 #ifdef BSD_SETPGRP
4660     SETi( BSD_SETPGRP(pid, pgrp) >= 0 );
4661 #else
4662     if ((pgrp != 0 && pgrp != PerlProc_getpid())
4663         || (pid != 0 && pid != PerlProc_getpid()))
4664     {
4665         DIE(aTHX_ "setpgrp can't take arguments");
4666     }
4667     SETi( setpgrp() >= 0 );
4668 #endif /* USE_BSDPGRP */
4669     RETURN;
4670 #else
4671     DIE(aTHX_ PL_no_func, "setpgrp");
4672 #endif
4673 }
4674
4675 #if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3) || (__GLIBC__ > 2))
4676 #  define PRIORITY_WHICH_T(which) (__priority_which_t)which
4677 #else
4678 #  define PRIORITY_WHICH_T(which) which
4679 #endif
4680
4681 PP(pp_getpriority)
4682 {
4683 #ifdef HAS_GETPRIORITY
4684     dSP; dTARGET;
4685     const int who = POPi;
4686     const int which = TOPi;
4687     SETi( getpriority(PRIORITY_WHICH_T(which), who) );
4688     RETURN;
4689 #else
4690     DIE(aTHX_ PL_no_func, "getpriority");
4691 #endif
4692 }
4693
4694 PP(pp_setpriority)
4695 {
4696 #ifdef HAS_SETPRIORITY
4697     dSP; dTARGET;
4698     const int niceval = POPi;
4699     const int who = POPi;
4700     const int which = TOPi;
4701     TAINT_PROPER("setpriority");
4702     SETi( setpriority(PRIORITY_WHICH_T(which), who, niceval) >= 0 );
4703     RETURN;
4704 #else
4705     DIE(aTHX_ PL_no_func, "setpriority");
4706 #endif
4707 }
4708
4709 #undef PRIORITY_WHICH_T
4710
4711 /* Time calls. */
4712
4713 PP(pp_time)
4714 {
4715     dSP; dTARGET;
4716 #ifdef BIG_TIME
4717     XPUSHn( time(NULL) );
4718 #else
4719     XPUSHi( time(NULL) );
4720 #endif
4721     RETURN;
4722 }
4723
4724 PP(pp_tms)
4725 {
4726 #ifdef HAS_TIMES
4727     dSP;
4728     struct tms timesbuf;
4729
4730     EXTEND(SP, 4);
4731     (void)PerlProc_times(&timesbuf);
4732
4733     mPUSHn(((NV)timesbuf.tms_utime)/(NV)PL_clocktick);
4734     if (GIMME_V == G_ARRAY) {
4735         mPUSHn(((NV)timesbuf.tms_stime)/(NV)PL_clocktick);
4736         mPUSHn(((NV)timesbuf.tms_cutime)/(NV)PL_clocktick);
4737         mPUSHn(((NV)timesbuf.tms_cstime)/(NV)PL_clocktick);
4738     }
4739     RETURN;
4740 #elif defined(PERL_MICRO)
4741     dSP;
4742     mPUSHn(0.0);
4743     EXTEND(SP, 4);
4744     if (GIMME_V == G_ARRAY) {
4745          mPUSHn(0.0);
4746          mPUSHn(0.0);
4747          mPUSHn(0.0);
4748     }
4749     RETURN;
4750 #else
4751     DIE(aTHX_ "times not implemented");
4752 #endif /* HAS_TIMES */
4753 }
4754
4755 /* The 32 bit int year limits the times we can represent to these
4756    boundaries with a few days wiggle room to account for time zone
4757    offsets
4758 */
4759 /* Sat Jan  3 00:00:00 -2147481748 */
4760 #define TIME_LOWER_BOUND -67768100567755200.0
4761 /* Sun Dec 29 12:00:00  2147483647 */
4762 #define TIME_UPPER_BOUND  67767976233316800.0
4763
4764
4765 /* also used for: pp_localtime() */
4766
4767 PP(pp_gmtime)
4768 {
4769     dSP;
4770     Time64_T when;
4771     struct TM tmbuf;
4772     struct TM *err;
4773     const char *opname = PL_op->op_type == OP_LOCALTIME ? "localtime" : "gmtime";
4774     static const char * const dayname[] =
4775         {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
4776     static const char * const monname[] =
4777         {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
4778          "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
4779
4780     if (MAXARG < 1 || (!TOPs && ((void)POPs, 1))) {
4781         time_t now;
4782         (void)time(&now);
4783         when = (Time64_T)now;
4784     }
4785     else {
4786         NV input = Perl_floor(POPn);
4787         const bool pl_isnan = Perl_isnan(input);
4788         when = (Time64_T)input;
4789         if (UNLIKELY(pl_isnan || when != input)) {
4790             /* diag_listed_as: gmtime(%f) too large */
4791             Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4792                            "%s(%.0" NVff ") too large", opname, input);
4793             if (pl_isnan) {
4794                 err = NULL;
4795                 goto failed;
4796             }
4797         }
4798     }
4799
4800     if ( TIME_LOWER_BOUND > when ) {
4801         /* diag_listed_as: gmtime(%f) too small */
4802         Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4803                        "%s(%.0" NVff ") too small", opname, when);
4804         err = NULL;
4805     }
4806     else if( when > TIME_UPPER_BOUND ) {
4807         /* diag_listed_as: gmtime(%f) too small */
4808         Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4809                        "%s(%.0" NVff ") too large", opname, when);
4810         err = NULL;
4811     }
4812     else {
4813         if (PL_op->op_type == OP_LOCALTIME)
4814             err = Perl_localtime64_r(&when, &tmbuf);
4815         else
4816             err = Perl_gmtime64_r(&when, &tmbuf);
4817     }
4818
4819     if (err == NULL) {
4820         /* diag_listed_as: gmtime(%f) failed */
4821         /* XXX %lld broken for quads */
4822       failed:
4823         Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4824                        "%s(%.0" NVff ") failed", opname, when);
4825     }
4826
4827     if (GIMME_V != G_ARRAY) {   /* scalar context */
4828         EXTEND(SP, 1);
4829         if (err == NULL)
4830             RETPUSHUNDEF;
4831        else {
4832            dTARGET;
4833            PUSHs(TARG);
4834            Perl_sv_setpvf_mg(aTHX_ TARG, "%s %s %2d %02d:%02d:%02d %" IVdf,
4835                                 dayname[tmbuf.tm_wday],
4836                                 monname[tmbuf.tm_mon],
4837                                 tmbuf.tm_mday,
4838                                 tmbuf.tm_hour,
4839                                 tmbuf.tm_min,
4840                                 tmbuf.tm_sec,
4841                                 (IV)tmbuf.tm_year + 1900);
4842         }
4843     }
4844     else {                      /* list context */
4845         if ( err == NULL )
4846             RETURN;
4847
4848         EXTEND(SP, 9);
4849         EXTEND_MORTAL(9);
4850         mPUSHi(tmbuf.tm_sec);
4851         mPUSHi(tmbuf.tm_min);
4852         mPUSHi(tmbuf.tm_hour);
4853         mPUSHi(tmbuf.tm_mday);
4854         mPUSHi(tmbuf.tm_mon);
4855         mPUSHn(tmbuf.tm_year);
4856         mPUSHi(tmbuf.tm_wday);
4857         mPUSHi(tmbuf.tm_yday);
4858         mPUSHi(tmbuf.tm_isdst);
4859     }
4860     RETURN;
4861 }
4862
4863 PP(pp_alarm)
4864 {
4865 #ifdef HAS_ALARM
4866     dSP; dTARGET;
4867     /* alarm() takes an unsigned int number of seconds, and return the
4868      * unsigned int number of seconds remaining in the previous alarm
4869      * (alarms don't stack).  Therefore negative return values are not
4870      * possible. */
4871     int anum = POPi;
4872     if (anum < 0) {
4873         /* Note that while the C library function alarm() as such has
4874          * no errors defined (or in other words, properly behaving client
4875          * code shouldn't expect any), alarm() being obsoleted by
4876          * setitimer() and often being implemented in terms of
4877          * setitimer(), can fail. */
4878         /* diag_listed_as: %s() with negative argument */
4879         Perl_ck_warner_d(aTHX_ packWARN(WARN_MISC),
4880                          "alarm() with negative argument");
4881         SETERRNO(EINVAL, LIB_INVARG);
4882         RETPUSHUNDEF;
4883     }
4884     else {
4885         unsigned int retval = alarm(anum);
4886         if ((int)retval < 0) /* Strictly speaking "cannot happen". */
4887             RETPUSHUNDEF;
4888         PUSHu(retval);
4889         RETURN;
4890     }
4891 #else
4892     DIE(aTHX_ PL_no_func, "alarm");
4893 #endif
4894 }
4895
4896 PP(pp_sleep)
4897 {
4898     dSP; dTARGET;
4899     Time_t lasttime;
4900     Time_t when;
4901
4902     (void)time(&lasttime);
4903     if (MAXARG < 1 || (!TOPs && !POPs))
4904         PerlProc_pause();
4905     else {
4906         const I32 duration = POPi;
4907         if (duration < 0) {
4908           /* diag_listed_as: %s() with negative argument */
4909           Perl_ck_warner_d(aTHX_ packWARN(WARN_MISC),
4910                            "sleep() with negative argument");
4911           SETERRNO(EINVAL, LIB_INVARG);
4912           XPUSHs(&PL_sv_zero);
4913           RETURN;
4914         } else {
4915           PerlProc_sleep((unsigned int)duration);
4916         }
4917     }
4918     (void)time(&when);
4919     XPUSHi(when - lasttime);
4920     RETURN;
4921 }
4922
4923 /* Shared memory. */
4924 /* Merged with some message passing. */
4925
4926 /* also used for: pp_msgrcv() pp_msgsnd() pp_semop() pp_shmread() */
4927
4928 PP(pp_shmwrite)
4929 {
4930 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4931     dSP; dMARK; dTARGET;
4932     const int op_type = PL_op->op_type;
4933     I32 value;
4934
4935     switch (op_type) {
4936     case OP_MSGSND:
4937         value = (I32)(do_msgsnd(MARK, SP) >= 0);
4938         break;
4939     case OP_MSGRCV:
4940         value = (I32)(do_msgrcv(MARK, SP) >= 0);
4941         break;
4942     case OP_SEMOP:
4943         value = (I32)(do_semop(MARK, SP) >= 0);
4944         break;
4945     default:
4946         value = (I32)(do_shmio(op_type, MARK, SP) >= 0);
4947         break;
4948     }
4949
4950     SP = MARK;
4951     PUSHi(value);
4952     RETURN;
4953 #else
4954     return Perl_pp_semget(aTHX);
4955 #endif
4956 }
4957
4958 /* Semaphores. */
4959
4960 /* also used for: pp_msgget() pp_shmget() */
4961
4962 PP(pp_semget)
4963 {
4964 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4965     dSP; dMARK; dTARGET;
4966     const int anum = do_ipcget(PL_op->op_type, MARK, SP);
4967     SP = MARK;
4968     if (anum == -1)
4969         RETPUSHUNDEF;
4970     PUSHi(anum);
4971     RETURN;
4972 #else
4973     DIE(aTHX_ "System V IPC is not implemented on this machine");
4974 #endif
4975 }
4976
4977 /* also used for: pp_msgctl() pp_shmctl() */
4978
4979 PP(pp_semctl)
4980 {
4981 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4982     dSP; dMARK; dTARGET;
4983     const int anum = do_ipcctl(PL_op->op_type, MARK, SP);
4984     SP = MARK;
4985     if (anum == -1)
4986         RETPUSHUNDEF;
4987     if (anum != 0) {
4988         PUSHi(anum);
4989     }
4990     else {
4991         PUSHp(zero_but_true, ZBTLEN);
4992     }
4993     RETURN;
4994 #else
4995     return Perl_pp_semget(aTHX);
4996 #endif
4997 }
4998
4999 /* I can't const this further without getting warnings about the types of
5000    various arrays passed in from structures.  */
5001 static SV *
5002 S_space_join_names_mortal(pTHX_ char *const *array)
5003 {
5004     SV *target;
5005
5006     if (array && *array) {
5007         target = newSVpvs_flags("", SVs_TEMP);
5008         while (1) {
5009             sv_catpv(target, *array);
5010             if (!*++array)
5011                 break;
5012             sv_catpvs(target, " ");
5013         }
5014     } else {
5015         target = sv_mortalcopy(&PL_sv_no);
5016     }
5017     return target;
5018 }
5019
5020 /* Get system info. */
5021
5022 /* also used for: pp_ghbyaddr() pp_ghbyname() */
5023
5024 PP(pp_ghostent)
5025 {
5026 #if defined(HAS_GETHOSTBYNAME) || defined(HAS_GETHOSTBYADDR) || defined(HAS_GETHOSTENT)
5027     dSP;
5028     I32 which = PL_op->op_type;
5029     char **elem;
5030     SV *sv;
5031 #ifndef HAS_GETHOST_PROTOS /* XXX Do we need individual probes? */
5032     struct hostent *gethostbyaddr(Netdb_host_t, Netdb_hlen_t, int);
5033     struct hostent *gethostbyname(Netdb_name_t);
5034     struct hostent *gethostent(void);
5035 #endif
5036     struct hostent *hent = NULL;
5037     unsigned long len;
5038
5039     EXTEND(SP, 10);
5040     if (which == OP_GHBYNAME) {
5041 #ifdef HAS_GETHOSTBYNAME
5042         const char* const name = POPpbytex;
5043         hent = PerlSock_gethostbyname(name);
5044 #else
5045         DIE(aTHX_ PL_no_sock_func, "gethostbyname");
5046 #endif
5047     }
5048     else if (which == OP_GHBYADDR) {
5049 #ifdef HAS_GETHOSTBYADDR
5050         const int addrtype = POPi;
5051         SV * const addrsv = POPs;
5052         STRLEN addrlen;
5053         const char *addr = (char *)SvPVbyte(addrsv, addrlen);
5054
5055         hent = PerlSock_gethostbyaddr(addr, (Netdb_hlen_t) addrlen, addrtype);
5056 #else
5057         DIE(aTHX_ PL_no_sock_func, "gethostbyaddr");
5058 #endif
5059     }
5060     else
5061 #ifdef HAS_GETHOSTENT
5062         hent = PerlSock_gethostent();
5063 #else
5064         DIE(aTHX_ PL_no_sock_func, "gethostent");
5065 #endif
5066
5067 #ifdef HOST_NOT_FOUND
5068         if (!hent) {
5069 #ifdef USE_REENTRANT_API
5070 #   ifdef USE_GETHOSTENT_ERRNO
5071             h_errno = PL_reentrant_buffer->_gethostent_errno;
5072 #   endif
5073 #endif
5074             STATUS_UNIX_SET(h_errno);
5075         }
5076 #endif
5077
5078     if (GIMME_V != G_ARRAY) {
5079         PUSHs(sv = sv_newmortal());
5080         if (hent) {
5081             if (which == OP_GHBYNAME) {
5082                 if (hent->h_addr)
5083                     sv_setpvn(sv, hent->h_addr, hent->h_length);
5084             }
5085             else
5086                 sv_setpv(sv, (char*)hent->h_name);
5087         }
5088         RETURN;
5089     }
5090
5091     if (hent) {
5092         mPUSHs(newSVpv((char*)hent->h_name, 0));
5093         PUSHs(space_join_names_mortal(hent->h_aliases));
5094         mPUSHi(hent->h_addrtype);
5095         len = hent->h_length;
5096         mPUSHi(len);
5097 #ifdef h_addr
5098         for (elem = hent->h_addr_list; elem && *elem; elem++) {
5099             mXPUSHp(*elem, len);
5100         }
5101 #else
5102         if (hent->h_addr)
5103             mPUSHp(hent->h_addr, len);
5104         else
5105             PUSHs(sv_mortalcopy(&PL_sv_no));
5106 #endif /* h_addr */
5107     }
5108     RETURN;
5109 #else
5110     DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5111 #endif
5112 }
5113
5114 /* also used for: pp_gnbyaddr() pp_gnbyname() */
5115
5116 PP(pp_gnetent)
5117 {
5118 #if defined(HAS_GETNETBYNAME) || defined(HAS_GETNETBYADDR) || defined(HAS_GETNETENT)
5119     dSP;
5120     I32 which = PL_op->op_type;
5121     SV *sv;
5122 #ifndef HAS_GETNET_PROTOS /* XXX Do we need individual probes? */
5123     struct netent *getnetbyaddr(Netdb_net_t, int);
5124     struct netent *getnetbyname(Netdb_name_t);
5125     struct netent *getnetent(void);
5126 #endif
5127     struct netent *nent;
5128
5129     if (which == OP_GNBYNAME){
5130 #ifdef HAS_GETNETBYNAME
5131         const char * const name = POPpbytex;
5132         nent = PerlSock_getnetbyname(name);
5133 #else
5134         DIE(aTHX_ PL_no_sock_func, "getnetbyname");
5135 #endif
5136     }
5137     else if (which == OP_GNBYADDR) {
5138 #ifdef HAS_GETNETBYADDR
5139         const int addrtype = POPi;
5140         const Netdb_net_t addr = (Netdb_net_t) (U32)POPu;
5141         nent = PerlSock_getnetbyaddr(addr, addrtype);
5142 #else
5143         DIE(aTHX_ PL_no_sock_func, "getnetbyaddr");
5144 #endif
5145     }
5146     else
5147 #ifdef HAS_GETNETENT
5148         nent = PerlSock_getnetent();
5149 #else
5150         DIE(aTHX_ PL_no_sock_func, "getnetent");
5151 #endif
5152
5153 #ifdef HOST_NOT_FOUND
5154         if (!nent) {
5155 #ifdef USE_REENTRANT_API
5156 #   ifdef USE_GETNETENT_ERRNO
5157              h_errno = PL_reentrant_buffer->_getnetent_errno;
5158 #   endif
5159 #endif
5160             STATUS_UNIX_SET(h_errno);
5161         }
5162 #endif
5163
5164     EXTEND(SP, 4);
5165     if (GIMME_V != G_ARRAY) {
5166         PUSHs(sv = sv_newmortal());
5167         if (nent) {
5168             if (which == OP_GNBYNAME)
5169                 sv_setiv(sv, (IV)nent->n_net);
5170             else
5171                 sv_setpv(sv, nent->n_name);
5172         }
5173         RETURN;
5174     }
5175
5176     if (nent) {
5177         mPUSHs(newSVpv(nent->n_name, 0));
5178         PUSHs(space_join_names_mortal(nent->n_aliases));
5179         mPUSHi(nent->n_addrtype);
5180         mPUSHi(nent->n_net);
5181     }
5182
5183     RETURN;
5184 #else
5185     DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5186 #endif
5187 }
5188
5189
5190 /* also used for: pp_gpbyname() pp_gpbynumber() */
5191
5192 PP(pp_gprotoent)
5193 {
5194 #if defined(HAS_GETPROTOBYNAME) || defined(HAS_GETPROTOBYNUMBER) || defined(HAS_GETPROTOENT)
5195     dSP;
5196     I32 which = PL_op->op_type;
5197     SV *sv;
5198 #ifndef HAS_GETPROTO_PROTOS /* XXX Do we need individual probes? */
5199     struct protoent *getprotobyname(Netdb_name_t);
5200     struct protoent *getprotobynumber(int);
5201     struct protoent *getprotoent(void);
5202 #endif
5203     struct protoent *pent;
5204
5205     if (which == OP_GPBYNAME) {
5206 #ifdef HAS_GETPROTOBYNAME
5207         const char* const name = POPpbytex;
5208         pent = PerlSock_getprotobyname(name);
5209 #else
5210         DIE(aTHX_ PL_no_sock_func, "getprotobyname");
5211 #endif
5212     }
5213     else if (which == OP_GPBYNUMBER) {
5214 #ifdef HAS_GETPROTOBYNUMBER
5215         const int number = POPi;
5216         pent = PerlSock_getprotobynumber(number);
5217 #else
5218         DIE(aTHX_ PL_no_sock_func, "getprotobynumber");
5219 #endif
5220     }
5221     else
5222 #ifdef HAS_GETPROTOENT
5223         pent = PerlSock_getprotoent();
5224 #else
5225         DIE(aTHX_ PL_no_sock_func, "getprotoent");
5226 #endif
5227
5228     EXTEND(SP, 3);
5229     if (GIMME_V != G_ARRAY) {
5230         PUSHs(sv = sv_newmortal());
5231         if (pent) {
5232             if (which == OP_GPBYNAME)
5233                 sv_setiv(sv, (IV)pent->p_proto);
5234             else
5235                 sv_setpv(sv, pent->p_name);
5236         }
5237         RETURN;
5238     }
5239
5240     if (pent) {
5241         mPUSHs(newSVpv(pent->p_name, 0));
5242         PUSHs(space_join_names_mortal(pent->p_aliases));
5243         mPUSHi(pent->p_proto);
5244     }
5245
5246     RETURN;
5247 #else
5248     DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5249 #endif
5250 }
5251
5252
5253 /* also used for: pp_gsbyname() pp_gsbyport() */
5254
5255 PP(pp_gservent)
5256 {
5257 #if defined(HAS_GETSERVBYNAME) || defined(HAS_GETSERVBYPORT) || defined(HAS_GETSERVENT)
5258     dSP;
5259     I32 which = PL_op->op_type;
5260     SV *sv;
5261 #ifndef HAS_GETSERV_PROTOS /* XXX Do we need individual probes? */
5262     struct servent *getservbyname(Netdb_name_t, Netdb_name_t);
5263     struct servent *getservbyport(int, Netdb_name_t);
5264     struct servent *getservent(void);
5265 #endif
5266     struct servent *sent;
5267
5268     if (which == OP_GSBYNAME) {
5269 #ifdef HAS_GETSERVBYNAME
5270         const char * const proto = POPpbytex;
5271         const char * const name = POPpbytex;
5272         sent = PerlSock_getservbyname(name, (proto && !*proto) ? NULL : proto);
5273 #else
5274         DIE(aTHX_ PL_no_sock_func, "getservbyname");
5275 #endif
5276     }
5277     else if (which == OP_GSBYPORT) {
5278 #ifdef HAS_GETSERVBYPORT
5279         const char * const proto = POPpbytex;
5280         unsigned short port = (unsigned short)POPu;
5281         port = PerlSock_htons(port);
5282         sent = PerlSock_getservbyport(port, (proto && !*proto) ? NULL : proto);
5283 #else
5284         DIE(aTHX_ PL_no_sock_func, "getservbyport");
5285 #endif
5286     }
5287     else
5288 #ifdef HAS_GETSERVENT
5289         sent = PerlSock_getservent();
5290 #else
5291         DIE(aTHX_ PL_no_sock_func, "getservent");
5292 #endif
5293
5294     EXTEND(SP, 4);
5295     if (GIMME_V != G_ARRAY) {
5296         PUSHs(sv = sv_newmortal());
5297         if (sent) {
5298             if (which == OP_GSBYNAME) {
5299                 sv_setiv(sv, (IV)PerlSock_ntohs(sent->s_port));
5300             }
5301             else
5302                 sv_setpv(sv, sent->s_name);
5303         }
5304         RETURN;
5305     }
5306
5307     if (sent) {
5308         mPUSHs(newSVpv(sent->s_name, 0));
5309         PUSHs(space_join_names_mortal(sent->s_aliases));
5310         mPUSHi(PerlSock_ntohs(sent->s_port));
5311         mPUSHs(newSVpv(sent->s_proto, 0));
5312     }
5313
5314     RETURN;
5315 #else
5316     DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5317 #endif
5318 }
5319
5320
5321 /* also used for: pp_snetent() pp_sprotoent() pp_sservent() */
5322
5323 PP(pp_shostent)
5324 {
5325     dSP;
5326     const int stayopen = TOPi;
5327     switch(PL_op->op_type) {
5328     case OP_SHOSTENT:
5329 #ifdef HAS_SETHOSTENT
5330         PerlSock_sethostent(stayopen);
5331 #else
5332         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5333 #endif
5334         break;
5335 #ifdef HAS_SETNETENT
5336     case OP_SNETENT:
5337         PerlSock_setnetent(stayopen);
5338 #else
5339         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5340 #endif
5341         break;
5342     case OP_SPROTOENT:
5343 #ifdef HAS_SETPROTOENT
5344         PerlSock_setprotoent(stayopen);
5345 #else
5346         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5347 #endif
5348         break;
5349     case OP_SSERVENT:
5350 #ifdef HAS_SETSERVENT
5351         PerlSock_setservent(stayopen);
5352 #else
5353         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5354 #endif
5355         break;
5356     }
5357     RETSETYES;
5358 }
5359
5360
5361 /* also used for: pp_egrent() pp_enetent() pp_eprotoent() pp_epwent()
5362  *                pp_eservent() pp_sgrent() pp_spwent() */
5363
5364 PP(pp_ehostent)
5365 {
5366     dSP;
5367     switch(PL_op->op_type) {
5368     case OP_EHOSTENT:
5369 #ifdef HAS_ENDHOSTENT
5370         PerlSock_endhostent();
5371 #else
5372         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5373 #endif
5374         break;
5375     case OP_ENETENT:
5376 #ifdef HAS_ENDNETENT
5377         PerlSock_endnetent();
5378 #else
5379         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5380 #endif
5381         break;
5382     case OP_EPROTOENT:
5383 #ifdef HAS_ENDPROTOENT
5384         PerlSock_endprotoent();
5385 #else
5386         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5387 #endif
5388         break;
5389     case OP_ESERVENT:
5390 #ifdef HAS_ENDSERVENT
5391         PerlSock_endservent();
5392 #else
5393         DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
5394 #endif
5395         break;
5396     case OP_SGRENT:
5397 #if defined(HAS_GROUP) && defined(HAS_SETGRENT)
5398         setgrent();
5399 #else
5400         DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5401 #endif
5402         break;
5403     case OP_EGRENT:
5404 #if defined(HAS_GROUP) && defined(HAS_ENDGRENT)
5405         endgrent();
5406 #else
5407         DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5408 #endif
5409         break;
5410     case OP_SPWENT:
5411 #if defined(HAS_PASSWD) && defined(HAS_SETPWENT)
5412         setpwent();
5413 #else
5414         DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5415 #endif
5416         break;
5417     case OP_EPWENT:
5418 #if defined(HAS_PASSWD) && defined(HAS_ENDPWENT)
5419         endpwent();
5420 #else
5421         DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5422 #endif
5423         break;
5424     }
5425     EXTEND(SP,1);
5426     RETPUSHYES;
5427 }
5428
5429
5430 /* also used for: pp_gpwnam() pp_gpwuid() */
5431
5432 PP(pp_gpwent)
5433 {
5434 #ifdef HAS_PASSWD
5435     dSP;
5436     I32 which = PL_op->op_type;
5437     SV *sv;
5438     struct passwd *pwent  = NULL;
5439     /*
5440      * We currently support only the SysV getsp* shadow password interface.
5441      * The interface is declared in <shadow.h> and often one needs to link
5442      * with -lsecurity or some such.
5443      * This interface is used at least by Solaris, HP-UX, IRIX, and Linux.
5444      * (and SCO?)
5445      *
5446      * AIX getpwnam() is clever enough to return the encrypted password
5447      * only if the caller (euid?) is root.
5448      *
5449      * There are at least three other shadow password APIs.  Many platforms
5450      * seem to contain more than one interface for accessing the shadow
5451      * password databases, possibly for compatibility reasons.
5452      * The getsp*() is by far he simplest one, the other two interfaces
5453      * are much more complicated, but also very similar to each other.
5454      *
5455      * <sys/types.h>
5456      * <sys/security.h>
5457      * <prot.h>
5458      * struct pr_passwd *getprpw*();
5459      * The password is in
5460      * char getprpw*(...).ufld.fd_encrypt[]
5461      * Mention HAS_GETPRPWNAM here so that Configure probes for it.
5462      *
5463      * <sys/types.h>
5464      * <sys/security.h>
5465      * <prot.h>
5466      * struct es_passwd *getespw*();
5467      * The password is in
5468      * char *(getespw*(...).ufld.fd_encrypt)
5469      * Mention HAS_GETESPWNAM here so that Configure probes for it.
5470      *
5471      * <userpw.h> (AIX)
5472      * struct userpw *getuserpw();
5473      * The password is in
5474      * char *(getuserpw(...)).spw_upw_passwd
5475      * (but the de facto standard getpwnam() should work okay)
5476      *
5477      * Mention I_PROT here so that Configure probes for it.
5478      *
5479      * In HP-UX for getprpw*() the manual page claims that one should include
5480      * <hpsecurity.h> instead of <sys/security.h>, but that is not needed
5481      * if one includes <shadow.h> as that includes <hpsecurity.h>,
5482      * and pp_sys.c already includes <shadow.h> if there is such.
5483      *
5484      * Note that <sys/security.h> is already probed for, but currently
5485      * it is only included in special cases.
5486      *
5487      * In Digital UNIX/Tru64 if using the getespw*() (which seems to be
5488      * be preferred interface, even though also the getprpw*() interface
5489      * is available) one needs to link with -lsecurity -ldb -laud -lm.
5490      * One also needs to call set_auth_parameters() in main() before
5491      * doing anything else, whether one is using getespw*() or getprpw*().
5492      *
5493      * Note that accessing the shadow databases can be magnitudes
5494      * slower than accessing the standard databases.
5495      *
5496      * --jhi
5497      */
5498
5499 #   if defined(__CYGWIN__) && defined(USE_REENTRANT_API)
5500     /* Cygwin 1.5.3-1 has buggy getpwnam_r() and getpwuid_r():
5501      * the pw_comment is left uninitialized. */
5502     PL_reentrant_buffer->_pwent_struct.pw_comment = NULL;
5503 #   endif
5504
5505     switch (which) {
5506     case OP_GPWNAM:
5507       {
5508         const char* const name = POPpbytex;
5509         pwent  = getpwnam(name);
5510       }
5511       break;
5512     case OP_GPWUID:
5513       {
5514         Uid_t uid = POPi;
5515         pwent = getpwuid(uid);
5516       }
5517         break;
5518     case OP_GPWENT:
5519 #   ifdef HAS_GETPWENT
5520         pwent  = getpwent();
5521 #ifdef POSIX_BC   /* In some cases pw_passwd has invalid addresses */
5522         if (pwent) pwent = getpwnam(pwent->pw_name);
5523 #endif
5524 #   else
5525         DIE(aTHX_ PL_no_func, "getpwent");
5526 #   endif
5527         break;
5528     }
5529
5530     EXTEND(SP, 10);
5531     if (GIMME_V != G_ARRAY) {
5532         PUSHs(sv = sv_newmortal());
5533         if (pwent) {
5534             if (which == OP_GPWNAM)
5535                 sv_setuid(sv, pwent->pw_uid);
5536             else
5537                 sv_setpv(sv, pwent->pw_name);
5538         }
5539         RETURN;
5540     }
5541
5542     if (pwent) {
5543         mPUSHs(newSVpv(pwent->pw_name, 0));
5544
5545         sv = newSViv(0);
5546         mPUSHs(sv);
5547         /* If we have getspnam(), we try to dig up the shadow
5548          * password.  If we are underprivileged, the shadow
5549          * interface will set the errno to EACCES or similar,
5550          * and return a null pointer.  If this happens, we will
5551          * use the dummy password (usually "*" or "x") from the
5552          * standard password database.
5553          *
5554          * In theory we could skip the shadow call completely
5555          * if euid != 0 but in practice we cannot know which
5556          * security measures are guarding the shadow databases
5557          * on a random platform.
5558          *
5559          * Resist the urge to use additional shadow interfaces.
5560          * Divert the urge to writing an extension instead.
5561          *
5562          * --jhi */
5563         /* Some AIX setups falsely(?) detect some getspnam(), which
5564          * has a different API than the Solaris/IRIX one. */
5565 #   if defined(HAS_GETSPNAM) && !defined(_AIX)
5566         {
5567             dSAVE_ERRNO;
5568             const struct spwd * const spwent = getspnam(pwent->pw_name);
5569                           /* Save and restore errno so that
5570                            * underprivileged attempts seem
5571                            * to have never made the unsuccessful
5572                            * attempt to retrieve the shadow password. */
5573             RESTORE_ERRNO;
5574             if (spwent && spwent->sp_pwdp)
5575                 sv_setpv(sv, spwent->sp_pwdp);
5576         }
5577 #   endif
5578 #   ifdef PWPASSWD
5579         if (!SvPOK(sv)) /* Use the standard password, then. */
5580             sv_setpv(sv, pwent->pw_passwd);
5581 #   endif
5582
5583         /* passwd is tainted because user himself can diddle with it.
5584          * admittedly not much and in a very limited way, but nevertheless. */
5585         SvTAINTED_on(sv);
5586
5587         sv_setuid(PUSHmortal, pwent->pw_uid);
5588         sv_setgid(PUSHmortal, pwent->pw_gid);
5589
5590         /* pw_change, pw_quota, and pw_age are mutually exclusive--
5591          * because of the poor interface of the Perl getpw*(),
5592          * not because there's some standard/convention saying so.
5593          * A better interface would have been to return a hash,
5594          * but we are accursed by our history, alas. --jhi.  */
5595 #   ifdef PWCHANGE
5596         mPUSHi(pwent->pw_change);
5597 #   elif defined(PWQUOTA)
5598         mPUSHi(pwent->pw_quota);
5599 #   elif defined(PWAGE)
5600         mPUSHs(newSVpv(pwent->pw_age, 0));
5601 #   else
5602         /* I think that you can never get this compiled, but just in case.  */
5603         PUSHs(sv_mortalcopy(&PL_sv_no));
5604 #   endif
5605
5606         /* pw_class and pw_comment are mutually exclusive--.
5607          * see the above note for pw_change, pw_quota, and pw_age. */
5608 #   ifdef PWCLASS
5609         mPUSHs(newSVpv(pwent->pw_class, 0));
5610 #   elif defined(PWCOMMENT)
5611         mPUSHs(newSVpv(pwent->pw_comment, 0));
5612 #   else
5613         /* I think that you can never get this compiled, but just in case.  */
5614         PUSHs(sv_mortalcopy(&PL_sv_no));
5615 #   endif
5616
5617 #   ifdef PWGECOS
5618         PUSHs(sv = sv_2mortal(newSVpv(pwent->pw_gecos, 0)));
5619 #   else
5620         PUSHs(sv = sv_mortalcopy(&PL_sv_no));
5621 #   endif
5622         /* pw_gecos is tainted because user himself can diddle with it. */
5623         SvTAINTED_on(sv);
5624
5625         mPUSHs(newSVpv(pwent->pw_dir, 0));
5626
5627         PUSHs(sv = sv_2mortal(newSVpv(pwent->pw_shell, 0)));
5628         /* pw_shell is tainted because user himself can diddle with it. */
5629         SvTAINTED_on(sv);
5630
5631 #   ifdef PWEXPIRE
5632         mPUSHi(pwent->pw_expire);
5633 #   endif
5634     }
5635     RETURN;
5636 #else
5637     DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5638 #endif
5639 }
5640
5641
5642 /* also used for: pp_ggrgid() pp_ggrnam() */
5643
5644 PP(pp_ggrent)
5645 {
5646 #ifdef HAS_GROUP
5647     dSP;
5648     const I32 which = PL_op->op_type;
5649     const struct group *grent;
5650
5651     if (which == OP_GGRNAM) {
5652         const char* const name = POPpbytex;
5653         grent = (const struct group *)getgrnam(name);
5654     }
5655     else if (which == OP_GGRGID) {
5656 #if Gid_t_sign == 1
5657         const Gid_t gid = POPu;
5658 #elif Gid_t_sign == -1
5659         const Gid_t gid = POPi;
5660 #else
5661 #  error "Unexpected Gid_t_sign"
5662 #endif
5663         grent = (const struct group *)getgrgid(gid);
5664     }
5665     else
5666 #ifdef HAS_GETGRENT
5667         grent = (struct group *)getgrent();
5668 #else
5669         DIE(aTHX_ PL_no_func, "getgrent");
5670 #endif
5671
5672     EXTEND(SP, 4);
5673     if (GIMME_V != G_ARRAY) {
5674         SV * const sv = sv_newmortal();
5675
5676         PUSHs(sv);
5677         if (grent) {
5678             if (which == OP_GGRNAM)
5679                 sv_setgid(sv, grent->gr_gid);
5680             else
5681                 sv_setpv(sv, grent->gr_name);
5682         }
5683         RETURN;
5684     }
5685
5686     if (grent) {
5687         mPUSHs(newSVpv(grent->gr_name, 0));
5688
5689 #ifdef GRPASSWD
5690         mPUSHs(newSVpv(grent->gr_passwd, 0));
5691 #else
5692         PUSHs(sv_mortalcopy(&PL_sv_no));
5693 #endif
5694
5695         sv_setgid(PUSHmortal, grent->gr_gid);
5696
5697 #if !(defined(_CRAYMPP) && defined(USE_REENTRANT_API))
5698         /* In UNICOS/mk (_CRAYMPP) the multithreading
5699          * versions (getgrnam_r, getgrgid_r)
5700          * seem to return an illegal pointer
5701          * as the group members list, gr_mem.
5702          * getgrent() doesn't even have a _r version
5703          * but the gr_mem is poisonous anyway.
5704          * So yes, you cannot get the list of group
5705          * members if building multithreaded in UNICOS/mk. */
5706         PUSHs(space_join_names_mortal(grent->gr_mem));
5707 #endif
5708     }
5709
5710     RETURN;
5711 #else
5712     DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5713 #endif
5714 }
5715
5716 PP(pp_getlogin)
5717 {
5718 #ifdef HAS_GETLOGIN
5719     dSP; dTARGET;
5720     char *tmps;
5721     EXTEND(SP, 1);
5722     if (!(tmps = PerlProc_getlogin()))
5723         RETPUSHUNDEF;
5724     sv_setpv_mg(TARG, tmps);
5725     PUSHs(TARG);
5726     RETURN;
5727 #else
5728     DIE(aTHX_ PL_no_func, "getlogin");
5729 #endif
5730 }
5731
5732 /* Miscellaneous. */
5733
5734 PP(pp_syscall)
5735 {
5736 #ifdef HAS_SYSCALL
5737     dSP; dMARK; dORIGMARK; dTARGET;
5738     I32 items = SP - MARK;
5739     unsigned long a[20];
5740     I32 i = 0;
5741     IV retval = -1;
5742
5743     if (TAINTING_get) {
5744         while (++MARK <= SP) {
5745             if (SvTAINTED(*MARK)) {
5746                 TAINT;
5747                 break;
5748             }
5749         }
5750         MARK = ORIGMARK;
5751         TAINT_PROPER("syscall");
5752     }
5753
5754     /* This probably won't work on machines where sizeof(long) != sizeof(int)
5755      * or where sizeof(long) != sizeof(char*).  But such machines will
5756      * not likely have syscall implemented either, so who cares?
5757      */
5758     while (++MARK <= SP) {
5759         if (SvNIOK(*MARK) || !i)
5760             a[i++] = SvIV(*MARK);
5761         else if (*MARK == &PL_sv_undef)
5762             a[i++] = 0;
5763         else
5764             a[i++] = (unsigned long)SvPV_force_nolen(*MARK);
5765         if (i > 15)
5766             break;
5767     }
5768     switch (items) {
5769     default:
5770         DIE(aTHX_ "Too many args to syscall");
5771     case 0:
5772         DIE(aTHX_ "Too few args to syscall");
5773     case 1:
5774         retval = syscall(a[0]);
5775         break;
5776     case 2:
5777         retval = syscall(a[0],a[1]);
5778         break;
5779     case 3:
5780         retval = syscall(a[0],a[1],a[2]);
5781         break;
5782     case 4:
5783         retval = syscall(a[0],a[1],a[2],a[3]);
5784         break;
5785     case 5:
5786         retval = syscall(a[0],a[1],a[2],a[3],a[4]);
5787         break;
5788     case 6:
5789         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5]);
5790         break;
5791     case 7:
5792         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6]);
5793         break;
5794     case 8:
5795         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7]);
5796         break;
5797     }
5798     SP = ORIGMARK;
5799     PUSHi(retval);
5800     RETURN;
5801 #else
5802     DIE(aTHX_ PL_no_func, "syscall");
5803 #endif
5804 }
5805
5806 #ifdef FCNTL_EMULATE_FLOCK
5807
5808 /*  XXX Emulate flock() with fcntl().
5809     What's really needed is a good file locking module.
5810 */
5811
5812 static int
5813 fcntl_emulate_flock(int fd, int operation)
5814 {
5815     int res;
5816     struct flock flock;
5817
5818     switch (operation & ~LOCK_NB) {
5819     case LOCK_SH:
5820         flock.l_type = F_RDLCK;
5821         break;
5822     case LOCK_EX:
5823         flock.l_type = F_WRLCK;
5824         break;
5825     case LOCK_UN:
5826         flock.l_type = F_UNLCK;
5827         break;
5828     default:
5829         errno = EINVAL;
5830         return -1;
5831     }
5832     flock.l_whence = SEEK_SET;
5833     flock.l_start = flock.l_len = (Off_t)0;
5834
5835     res = fcntl(fd, (operation & LOCK_NB) ? F_SETLK : F_SETLKW, &flock);
5836     if (res == -1 && ((errno == EAGAIN) || (errno == EACCES)))
5837         errno = EWOULDBLOCK;
5838     return res;
5839 }
5840
5841 #endif /* FCNTL_EMULATE_FLOCK */
5842
5843 #ifdef LOCKF_EMULATE_FLOCK
5844
5845 /*  XXX Emulate flock() with lockf().  This is just to increase
5846     portability of scripts.  The calls are not completely
5847     interchangeable.  What's really needed is a good file
5848     locking module.
5849 */
5850
5851 /*  The lockf() constants might have been defined in <unistd.h>.
5852     Unfortunately, <unistd.h> causes troubles on some mixed
5853     (BSD/POSIX) systems, such as SunOS 4.1.3.
5854
5855    Further, the lockf() constants aren't POSIX, so they might not be
5856    visible if we're compiling with _POSIX_SOURCE defined.  Thus, we'll
5857    just stick in the SVID values and be done with it.  Sigh.
5858 */
5859
5860 # ifndef F_ULOCK
5861 #  define F_ULOCK       0       /* Unlock a previously locked region */
5862 # endif
5863 # ifndef F_LOCK
5864 #  define F_LOCK        1       /* Lock a region for exclusive use */
5865 # endif
5866 # ifndef F_TLOCK
5867 #  define F_TLOCK       2       /* Test and lock a region for exclusive use */
5868 # endif
5869 # ifndef F_TEST
5870 #  define F_TEST        3       /* Test a region for other processes locks */
5871 # endif
5872
5873 static int
5874 lockf_emulate_flock(int fd, int operation)
5875 {
5876     int i;
5877     Off_t pos;
5878     dSAVE_ERRNO;
5879
5880     /* flock locks entire file so for lockf we need to do the same      */
5881     pos = PerlLIO_lseek(fd, (Off_t)0, SEEK_CUR);    /* get pos to restore later */
5882     if (pos > 0)        /* is seekable and needs to be repositioned     */
5883         if (PerlLIO_lseek(fd, (Off_t)0, SEEK_SET) < 0)
5884             pos = -1;   /* seek failed, so don't seek back afterwards   */
5885     RESTORE_ERRNO;
5886
5887     switch (operation) {
5888
5889         /* LOCK_SH - get a shared lock */
5890         case LOCK_SH:
5891         /* LOCK_EX - get an exclusive lock */
5892         case LOCK_EX:
5893             i = lockf (fd, F_LOCK, 0);
5894             break;
5895
5896         /* LOCK_SH|LOCK_NB - get a non-blocking shared lock */
5897         case LOCK_SH|LOCK_NB:
5898         /* LOCK_EX|LOCK_NB - get a non-blocking exclusive lock */
5899         case LOCK_EX|LOCK_NB:
5900             i = lockf (fd, F_TLOCK, 0);
5901             if (i == -1)
5902                 if ((errno == EAGAIN) || (errno == EACCES))
5903                     errno = EWOULDBLOCK;
5904             break;
5905
5906         /* LOCK_UN - unlock (non-blocking is a no-op) */
5907         case LOCK_UN:
5908         case LOCK_UN|LOCK_NB:
5909             i = lockf (fd, F_ULOCK, 0);
5910             break;
5911
5912         /* Default - can't decipher operation */
5913         default:
5914             i = -1;
5915             errno = EINVAL;
5916             break;
5917     }
5918
5919     if (pos > 0)      /* need to restore position of the handle */
5920         PerlLIO_lseek(fd, pos, SEEK_SET);       /* ignore error here    */
5921
5922     return (i);
5923 }
5924
5925 #endif /* LOCKF_EMULATE_FLOCK */
5926
5927 /*
5928  * ex: set ts=8 sts=4 sw=4 et:
5929  */