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