This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Merge the cut & paste code from Perl_call_sv/Perl_fold_constants with
[perl5.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         }
1379         /* why no:
1380         else
1381             DIE(aTHX_ "Undefined top format called");
1382         ?*/
1383         if (CvCLONE(cv))
1384             cv = (CV*)sv_2mortal((SV*)cv_clone(cv));
1385         return doform(cv,gv,PL_op);
1386     }
1387
1388   forget_top:
1389     POPBLOCK(cx,PL_curpm);
1390     POPFORMAT(cx);
1391     LEAVE;
1392
1393     fp = IoOFP(io);
1394     if (!fp) {
1395         if (ckWARN2(WARN_CLOSED,WARN_IO)) {
1396             if (IoIFP(io))
1397                 report_evil_fh(gv, io, OP_phoney_INPUT_ONLY);
1398             else if (ckWARN(WARN_CLOSED))
1399                 report_evil_fh(gv, io, PL_op->op_type);
1400         }
1401         PUSHs(&PL_sv_no);
1402     }
1403     else {
1404         if ((IoLINES_LEFT(io) -= FmLINES(PL_formtarget)) < 0) {
1405             if (ckWARN(WARN_IO))
1406                 Perl_warner(aTHX_ packWARN(WARN_IO), "page overflow");
1407         }
1408         if (!do_print(PL_formtarget, fp))
1409             PUSHs(&PL_sv_no);
1410         else {
1411             FmLINES(PL_formtarget) = 0;
1412             SvCUR_set(PL_formtarget, 0);
1413             *SvEND(PL_formtarget) = '\0';
1414             if (IoFLAGS(io) & IOf_FLUSH)
1415                 (void)PerlIO_flush(fp);
1416             PUSHs(&PL_sv_yes);
1417         }
1418     }
1419     /* bad_ofp: */
1420     PL_formtarget = PL_bodytarget;
1421     PUTBACK;
1422     PERL_UNUSED_VAR(newsp);
1423     PERL_UNUSED_VAR(gimme);
1424     return cx->blk_sub.retop;
1425 }
1426
1427 PP(pp_prtf)
1428 {
1429     dVAR; dSP; dMARK; dORIGMARK;
1430     IO *io;
1431     PerlIO *fp;
1432     SV *sv;
1433     MAGIC *mg;
1434
1435     GV * const gv = (PL_op->op_flags & OPf_STACKED) ? (GV*)*++MARK : PL_defoutgv;
1436
1437     if (gv && (io = GvIO(gv))
1438         && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1439     {
1440         if (MARK == ORIGMARK) {
1441             MEXTEND(SP, 1);
1442             ++MARK;
1443             Move(MARK, MARK + 1, (SP - MARK) + 1, SV*);
1444             ++SP;
1445         }
1446         PUSHMARK(MARK - 1);
1447         *MARK = SvTIED_obj((SV*)io, mg);
1448         PUTBACK;
1449         ENTER;
1450         call_method("PRINTF", G_SCALAR);
1451         LEAVE;
1452         SPAGAIN;
1453         MARK = ORIGMARK + 1;
1454         *MARK = *SP;
1455         SP = MARK;
1456         RETURN;
1457     }
1458
1459     sv = newSV(0);
1460     if (!(io = GvIO(gv))) {
1461         if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1462             report_evil_fh(gv, io, PL_op->op_type);
1463         SETERRNO(EBADF,RMS_IFI);
1464         goto just_say_no;
1465     }
1466     else if (!(fp = IoOFP(io))) {
1467         if (ckWARN2(WARN_CLOSED,WARN_IO))  {
1468             if (IoIFP(io))
1469                 report_evil_fh(gv, io, OP_phoney_INPUT_ONLY);
1470             else if (ckWARN(WARN_CLOSED))
1471                 report_evil_fh(gv, io, PL_op->op_type);
1472         }
1473         SETERRNO(EBADF,IoIFP(io)?RMS_FAC:RMS_IFI);
1474         goto just_say_no;
1475     }
1476     else {
1477         do_sprintf(sv, SP - MARK, MARK + 1);
1478         if (!do_print(sv, fp))
1479             goto just_say_no;
1480
1481         if (IoFLAGS(io) & IOf_FLUSH)
1482             if (PerlIO_flush(fp) == EOF)
1483                 goto just_say_no;
1484     }
1485     SvREFCNT_dec(sv);
1486     SP = ORIGMARK;
1487     PUSHs(&PL_sv_yes);
1488     RETURN;
1489
1490   just_say_no:
1491     SvREFCNT_dec(sv);
1492     SP = ORIGMARK;
1493     PUSHs(&PL_sv_undef);
1494     RETURN;
1495 }
1496
1497 PP(pp_sysopen)
1498 {
1499     dVAR;
1500     dSP;
1501     const int perm = (MAXARG > 3) ? POPi : 0666;
1502     const int mode = POPi;
1503     SV * const sv = POPs;
1504     GV * const gv = (GV *)POPs;
1505     STRLEN len;
1506
1507     /* Need TIEHANDLE method ? */
1508     const char * const tmps = SvPV_const(sv, len);
1509     /* FIXME? do_open should do const  */
1510     if (do_open(gv, tmps, len, TRUE, mode, perm, NULL)) {
1511         IoLINES(GvIOp(gv)) = 0;
1512         PUSHs(&PL_sv_yes);
1513     }
1514     else {
1515         PUSHs(&PL_sv_undef);
1516     }
1517     RETURN;
1518 }
1519
1520 PP(pp_sysread)
1521 {
1522     dVAR; dSP; dMARK; dORIGMARK; dTARGET;
1523     int offset;
1524     IO *io;
1525     char *buffer;
1526     SSize_t length;
1527     SSize_t count;
1528     Sock_size_t bufsize;
1529     SV *bufsv;
1530     STRLEN blen;
1531     int fp_utf8;
1532     int buffer_utf8;
1533     SV *read_target;
1534     Size_t got = 0;
1535     Size_t wanted;
1536     bool charstart = FALSE;
1537     STRLEN charskip = 0;
1538     STRLEN skip = 0;
1539
1540     GV * const gv = (GV*)*++MARK;
1541     if ((PL_op->op_type == OP_READ || PL_op->op_type == OP_SYSREAD)
1542         && gv && (io = GvIO(gv)) )
1543     {
1544         const MAGIC * mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar);
1545         if (mg) {
1546             SV *sv;
1547             PUSHMARK(MARK-1);
1548             *MARK = SvTIED_obj((SV*)io, mg);
1549             ENTER;
1550             call_method("READ", G_SCALAR);
1551             LEAVE;
1552             SPAGAIN;
1553             sv = POPs;
1554             SP = ORIGMARK;
1555             PUSHs(sv);
1556             RETURN;
1557         }
1558     }
1559
1560     if (!gv)
1561         goto say_undef;
1562     bufsv = *++MARK;
1563     if (! SvOK(bufsv))
1564         sv_setpvn(bufsv, "", 0);
1565     length = SvIVx(*++MARK);
1566     SETERRNO(0,0);
1567     if (MARK < SP)
1568         offset = SvIVx(*++MARK);
1569     else
1570         offset = 0;
1571     io = GvIO(gv);
1572     if (!io || !IoIFP(io)) {
1573         if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1574             report_evil_fh(gv, io, PL_op->op_type);
1575         SETERRNO(EBADF,RMS_IFI);
1576         goto say_undef;
1577     }
1578     if ((fp_utf8 = PerlIO_isutf8(IoIFP(io))) && !IN_BYTES) {
1579         buffer = SvPVutf8_force(bufsv, blen);
1580         /* UTF-8 may not have been set if they are all low bytes */
1581         SvUTF8_on(bufsv);
1582         buffer_utf8 = 0;
1583     }
1584     else {
1585         buffer = SvPV_force(bufsv, blen);
1586         buffer_utf8 = !IN_BYTES && SvUTF8(bufsv);
1587     }
1588     if (length < 0)
1589         DIE(aTHX_ "Negative length");
1590     wanted = length;
1591
1592     charstart = TRUE;
1593     charskip  = 0;
1594     skip = 0;
1595
1596 #ifdef HAS_SOCKET
1597     if (PL_op->op_type == OP_RECV) {
1598         char namebuf[MAXPATHLEN];
1599 #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) || defined(__QNXNTO__)
1600         bufsize = sizeof (struct sockaddr_in);
1601 #else
1602         bufsize = sizeof namebuf;
1603 #endif
1604 #ifdef OS2      /* At least Warp3+IAK: only the first byte of bufsize set */
1605         if (bufsize >= 256)
1606             bufsize = 255;
1607 #endif
1608         buffer = SvGROW(bufsv, (STRLEN)(length+1));
1609         /* 'offset' means 'flags' here */
1610         count = PerlSock_recvfrom(PerlIO_fileno(IoIFP(io)), buffer, length, offset,
1611                           (struct sockaddr *)namebuf, &bufsize);
1612         if (count < 0)
1613             RETPUSHUNDEF;
1614 #ifdef EPOC
1615         /* Bogus return without padding */
1616         bufsize = sizeof (struct sockaddr_in);
1617 #endif
1618         SvCUR_set(bufsv, count);
1619         *SvEND(bufsv) = '\0';
1620         (void)SvPOK_only(bufsv);
1621         if (fp_utf8)
1622             SvUTF8_on(bufsv);
1623         SvSETMAGIC(bufsv);
1624         /* This should not be marked tainted if the fp is marked clean */
1625         if (!(IoFLAGS(io) & IOf_UNTAINT))
1626             SvTAINTED_on(bufsv);
1627         SP = ORIGMARK;
1628         sv_setpvn(TARG, namebuf, bufsize);
1629         PUSHs(TARG);
1630         RETURN;
1631     }
1632 #else
1633     if (PL_op->op_type == OP_RECV)
1634         DIE(aTHX_ PL_no_sock_func, "recv");
1635 #endif
1636     if (DO_UTF8(bufsv)) {
1637         /* offset adjust in characters not bytes */
1638         blen = sv_len_utf8(bufsv);
1639     }
1640     if (offset < 0) {
1641         if (-offset > (int)blen)
1642             DIE(aTHX_ "Offset outside string");
1643         offset += blen;
1644     }
1645     if (DO_UTF8(bufsv)) {
1646         /* convert offset-as-chars to offset-as-bytes */
1647         if (offset >= (int)blen)
1648             offset += SvCUR(bufsv) - blen;
1649         else
1650             offset = utf8_hop((U8 *)buffer,offset) - (U8 *) buffer;
1651     }
1652  more_bytes:
1653     bufsize = SvCUR(bufsv);
1654     /* Allocating length + offset + 1 isn't perfect in the case of reading
1655        bytes from a byte file handle into a UTF8 buffer, but it won't harm us
1656        unduly.
1657        (should be 2 * length + offset + 1, or possibly something longer if
1658        PL_encoding is true) */
1659     buffer  = SvGROW(bufsv, (STRLEN)(length+offset+1));
1660     if (offset > 0 && (Sock_size_t)offset > bufsize) { /* Zero any newly allocated space */
1661         Zero(buffer+bufsize, offset-bufsize, char);
1662     }
1663     buffer = buffer + offset;
1664     if (!buffer_utf8) {
1665         read_target = bufsv;
1666     } else {
1667         /* Best to read the bytes into a new SV, upgrade that to UTF8, then
1668            concatenate it to the current buffer.  */
1669
1670         /* Truncate the existing buffer to the start of where we will be
1671            reading to:  */
1672         SvCUR_set(bufsv, offset);
1673
1674         read_target = sv_newmortal();
1675         SvUPGRADE(read_target, SVt_PV);
1676         buffer = SvGROW(read_target, (STRLEN)(length + 1));
1677     }
1678
1679     if (PL_op->op_type == OP_SYSREAD) {
1680 #ifdef PERL_SOCK_SYSREAD_IS_RECV
1681         if (IoTYPE(io) == IoTYPE_SOCKET) {
1682             count = PerlSock_recv(PerlIO_fileno(IoIFP(io)),
1683                                    buffer, length, 0);
1684         }
1685         else
1686 #endif
1687         {
1688             count = PerlLIO_read(PerlIO_fileno(IoIFP(io)),
1689                                   buffer, length);
1690         }
1691     }
1692     else
1693 #ifdef HAS_SOCKET__bad_code_maybe
1694     if (IoTYPE(io) == IoTYPE_SOCKET) {
1695         char namebuf[MAXPATHLEN];
1696 #if defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)
1697         bufsize = sizeof (struct sockaddr_in);
1698 #else
1699         bufsize = sizeof namebuf;
1700 #endif
1701         count = PerlSock_recvfrom(PerlIO_fileno(IoIFP(io)), buffer, length, 0,
1702                           (struct sockaddr *)namebuf, &bufsize);
1703     }
1704     else
1705 #endif
1706     {
1707         count = PerlIO_read(IoIFP(io), buffer, length);
1708         /* PerlIO_read() - like fread() returns 0 on both error and EOF */
1709         if (count == 0 && PerlIO_error(IoIFP(io)))
1710             count = -1;
1711     }
1712     if (count < 0) {
1713         if ((IoTYPE(io) == IoTYPE_WRONLY) && ckWARN(WARN_IO))
1714                 report_evil_fh(gv, io, OP_phoney_OUTPUT_ONLY);
1715         goto say_undef;
1716     }
1717     SvCUR_set(read_target, count+(buffer - SvPVX_const(read_target)));
1718     *SvEND(read_target) = '\0';
1719     (void)SvPOK_only(read_target);
1720     if (fp_utf8 && !IN_BYTES) {
1721         /* Look at utf8 we got back and count the characters */
1722         const char *bend = buffer + count;
1723         while (buffer < bend) {
1724             if (charstart) {
1725                 skip = UTF8SKIP(buffer);
1726                 charskip = 0;
1727             }
1728             if (buffer - charskip + skip > bend) {
1729                 /* partial character - try for rest of it */
1730                 length = skip - (bend-buffer);
1731                 offset = bend - SvPVX_const(bufsv);
1732                 charstart = FALSE;
1733                 charskip += count;
1734                 goto more_bytes;
1735             }
1736             else {
1737                 got++;
1738                 buffer += skip;
1739                 charstart = TRUE;
1740                 charskip  = 0;
1741             }
1742         }
1743         /* If we have not 'got' the number of _characters_ we 'wanted' get some more
1744            provided amount read (count) was what was requested (length)
1745          */
1746         if (got < wanted && count == length) {
1747             length = wanted - got;
1748             offset = bend - SvPVX_const(bufsv);
1749             goto more_bytes;
1750         }
1751         /* return value is character count */
1752         count = got;
1753         SvUTF8_on(bufsv);
1754     }
1755     else if (buffer_utf8) {
1756         /* Let svcatsv upgrade the bytes we read in to utf8.
1757            The buffer is a mortal so will be freed soon.  */
1758         sv_catsv_nomg(bufsv, read_target);
1759     }
1760     SvSETMAGIC(bufsv);
1761     /* This should not be marked tainted if the fp is marked clean */
1762     if (!(IoFLAGS(io) & IOf_UNTAINT))
1763         SvTAINTED_on(bufsv);
1764     SP = ORIGMARK;
1765     PUSHi(count);
1766     RETURN;
1767
1768   say_undef:
1769     SP = ORIGMARK;
1770     RETPUSHUNDEF;
1771 }
1772
1773 PP(pp_send)
1774 {
1775     dVAR; dSP; dMARK; dORIGMARK; dTARGET;
1776     IO *io;
1777     SV *bufsv;
1778     const char *buffer;
1779     Size_t length = 0;
1780     SSize_t retval;
1781     STRLEN blen;
1782     MAGIC *mg;
1783     const int op_type = PL_op->op_type;
1784     
1785     GV *const gv = (GV*)*++MARK;
1786     if (PL_op->op_type == OP_SYSWRITE
1787         && gv && (io = GvIO(gv))
1788         && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1789     {
1790         SV *sv;
1791
1792         if (MARK == SP - 1) {
1793             EXTEND(SP, 1000);
1794             sv = sv_2mortal(newSViv(sv_len(*SP)));
1795             PUSHs(sv);
1796             PUTBACK;
1797         }
1798         
1799         PUSHMARK(ORIGMARK);
1800         *(ORIGMARK+1) = SvTIED_obj((SV*)io, mg);
1801         ENTER;
1802         call_method("WRITE", G_SCALAR);
1803         LEAVE;
1804         SPAGAIN;
1805         sv = POPs;
1806         SP = ORIGMARK;
1807         PUSHs(sv);
1808         RETURN;
1809     }
1810     if (!gv)
1811         goto say_undef;
1812
1813     bufsv = *++MARK;
1814
1815     if (op_type == OP_SYSWRITE) {
1816         if (MARK >= SP) {
1817             length = (Size_t) sv_len(bufsv);
1818         } else {
1819 #if Size_t_size > IVSIZE
1820             length = (Size_t)SvNVx(*++MARK);
1821 #else
1822             length = (Size_t)SvIVx(*++MARK);
1823 #endif
1824             if ((SSize_t)length < 0)
1825                 DIE(aTHX_ "Negative length");
1826         }
1827     }
1828     SETERRNO(0,0);
1829     io = GvIO(gv);
1830     if (!io || !IoIFP(io)) {
1831         retval = -1;
1832         if (ckWARN(WARN_CLOSED))
1833             report_evil_fh(gv, io, PL_op->op_type);
1834         SETERRNO(EBADF,RMS_IFI);
1835         goto say_undef;
1836     }
1837
1838     if (PerlIO_isutf8(IoIFP(io))) {
1839         if (!SvUTF8(bufsv)) {
1840             bufsv = sv_2mortal(newSVsv(bufsv));
1841             buffer = sv_2pvutf8(bufsv, &blen);
1842         } else
1843             buffer = SvPV_const(bufsv, blen);
1844     }
1845     else {
1846          if (DO_UTF8(bufsv)) {
1847               /* Not modifying source SV, so making a temporary copy. */
1848               bufsv = sv_2mortal(newSVsv(bufsv));
1849               sv_utf8_downgrade(bufsv, FALSE);
1850          }
1851          buffer = SvPV_const(bufsv, blen);
1852     }
1853
1854     if (op_type == OP_SYSWRITE) {
1855         IV offset;
1856         if (DO_UTF8(bufsv)) {
1857             /* length and offset are in chars */
1858             blen   = sv_len_utf8(bufsv);
1859         }
1860         if (MARK < SP) {
1861             offset = SvIVx(*++MARK);
1862             if (offset < 0) {
1863                 if (-offset > (IV)blen)
1864                     DIE(aTHX_ "Offset outside string");
1865                 offset += blen;
1866             } else if (offset >= (IV)blen && blen > 0)
1867                 DIE(aTHX_ "Offset outside string");
1868         } else
1869             offset = 0;
1870         if (length > blen - offset)
1871             length = blen - offset;
1872         if (DO_UTF8(bufsv)) {
1873             buffer = (const char*)utf8_hop((const U8 *)buffer, offset);
1874             length = utf8_hop((U8 *)buffer, length) - (U8 *)buffer;
1875         }
1876         else {
1877             buffer = buffer+offset;
1878         }
1879 #ifdef PERL_SOCK_SYSWRITE_IS_SEND
1880         if (IoTYPE(io) == IoTYPE_SOCKET) {
1881             retval = PerlSock_send(PerlIO_fileno(IoIFP(io)),
1882                                    buffer, length, 0);
1883         }
1884         else
1885 #endif
1886         {
1887             /* See the note at doio.c:do_print about filesize limits. --jhi */
1888             retval = PerlLIO_write(PerlIO_fileno(IoIFP(io)),
1889                                    buffer, length);
1890         }
1891     }
1892 #ifdef HAS_SOCKET
1893     else {
1894         const int flags = SvIVx(*++MARK);
1895         if (SP > MARK) {
1896             STRLEN mlen;
1897             char * const sockbuf = SvPVx(*++MARK, mlen);
1898             retval = PerlSock_sendto(PerlIO_fileno(IoIFP(io)), buffer, blen,
1899                                      flags, (struct sockaddr *)sockbuf, mlen);
1900         }
1901         else {
1902             retval
1903                 = PerlSock_send(PerlIO_fileno(IoIFP(io)), buffer, blen, flags);
1904         }
1905     }
1906 #else
1907     else
1908         DIE(aTHX_ PL_no_sock_func, "send");
1909 #endif
1910     if (retval < 0)
1911         goto say_undef;
1912     SP = ORIGMARK;
1913     if (DO_UTF8(bufsv))
1914         retval = utf8_length((U8*)buffer, (U8*)buffer + retval);
1915 #if Size_t_size > IVSIZE
1916     PUSHn(retval);
1917 #else
1918     PUSHi(retval);
1919 #endif
1920     RETURN;
1921
1922   say_undef:
1923     SP = ORIGMARK;
1924     RETPUSHUNDEF;
1925 }
1926
1927 PP(pp_eof)
1928 {
1929     dVAR; dSP;
1930     GV *gv;
1931
1932     if (MAXARG == 0) {
1933         if (PL_op->op_flags & OPf_SPECIAL) {    /* eof() */
1934             IO *io;
1935             gv = PL_last_in_gv = GvEGV(PL_argvgv);
1936             io = GvIO(gv);
1937             if (io && !IoIFP(io)) {
1938                 if ((IoFLAGS(io) & IOf_START) && av_len(GvAVn(gv)) < 0) {
1939                     IoLINES(io) = 0;
1940                     IoFLAGS(io) &= ~IOf_START;
1941                     do_open(gv, "-", 1, FALSE, O_RDONLY, 0, NULL);
1942                     sv_setpvn(GvSV(gv), "-", 1);
1943                     SvSETMAGIC(GvSV(gv));
1944                 }
1945                 else if (!nextargv(gv))
1946                     RETPUSHYES;
1947             }
1948         }
1949         else
1950             gv = PL_last_in_gv;                 /* eof */
1951     }
1952     else
1953         gv = PL_last_in_gv = (GV*)POPs;         /* eof(FH) */
1954
1955     if (gv) {
1956         IO * const io = GvIO(gv);
1957         MAGIC * mg;
1958         if (io && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar))) {
1959             PUSHMARK(SP);
1960             XPUSHs(SvTIED_obj((SV*)io, mg));
1961             PUTBACK;
1962             ENTER;
1963             call_method("EOF", G_SCALAR);
1964             LEAVE;
1965             SPAGAIN;
1966             RETURN;
1967         }
1968     }
1969
1970     PUSHs(boolSV(!gv || do_eof(gv)));
1971     RETURN;
1972 }
1973
1974 PP(pp_tell)
1975 {
1976     dVAR; dSP; dTARGET;
1977     GV *gv;
1978     IO *io;
1979     MAGIC *mg;
1980
1981     if (MAXARG != 0)
1982         PL_last_in_gv = (GV*)POPs;
1983     gv = PL_last_in_gv;
1984
1985     if (gv && (io = GvIO(gv))
1986         && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1987     {
1988         PUSHMARK(SP);
1989         XPUSHs(SvTIED_obj((SV*)io, mg));
1990         PUTBACK;
1991         ENTER;
1992         call_method("TELL", G_SCALAR);
1993         LEAVE;
1994         SPAGAIN;
1995         RETURN;
1996     }
1997
1998 #if LSEEKSIZE > IVSIZE
1999     PUSHn( do_tell(gv) );
2000 #else
2001     PUSHi( do_tell(gv) );
2002 #endif
2003     RETURN;
2004 }
2005
2006 PP(pp_sysseek)
2007 {
2008     dVAR; dSP;
2009     IO *io;
2010     const int whence = POPi;
2011 #if LSEEKSIZE > IVSIZE
2012     const Off_t offset = (Off_t)SvNVx(POPs);
2013 #else
2014     const Off_t offset = (Off_t)SvIVx(POPs);
2015 #endif
2016     MAGIC *mg;
2017
2018     GV * const gv = PL_last_in_gv = (GV*)POPs;
2019
2020     if (gv && (io = GvIO(gv))
2021         && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
2022     {
2023         PUSHMARK(SP);
2024         XPUSHs(SvTIED_obj((SV*)io, mg));
2025 #if LSEEKSIZE > IVSIZE
2026         XPUSHs(sv_2mortal(newSVnv((NV) offset)));
2027 #else
2028         XPUSHs(sv_2mortal(newSViv(offset)));
2029 #endif
2030         XPUSHs(sv_2mortal(newSViv(whence)));
2031         PUTBACK;
2032         ENTER;
2033         call_method("SEEK", G_SCALAR);
2034         LEAVE;
2035         SPAGAIN;
2036         RETURN;
2037     }
2038
2039     if (PL_op->op_type == OP_SEEK)
2040         PUSHs(boolSV(do_seek(gv, offset, whence)));
2041     else {
2042         const Off_t sought = do_sysseek(gv, offset, whence);
2043         if (sought < 0)
2044             PUSHs(&PL_sv_undef);
2045         else {
2046             SV* const sv = sought ?
2047 #if LSEEKSIZE > IVSIZE
2048                 newSVnv((NV)sought)
2049 #else
2050                 newSViv(sought)
2051 #endif
2052                 : newSVpvn(zero_but_true, ZBTLEN);
2053             PUSHs(sv_2mortal(sv));
2054         }
2055     }
2056     RETURN;
2057 }
2058
2059 PP(pp_truncate)
2060 {
2061     dVAR;
2062     dSP;
2063     /* There seems to be no consensus on the length type of truncate()
2064      * and ftruncate(), both off_t and size_t have supporters. In
2065      * general one would think that when using large files, off_t is
2066      * at least as wide as size_t, so using an off_t should be okay. */
2067     /* XXX Configure probe for the length type of *truncate() needed XXX */
2068     Off_t len;
2069
2070 #if Off_t_size > IVSIZE
2071     len = (Off_t)POPn;
2072 #else
2073     len = (Off_t)POPi;
2074 #endif
2075     /* Checking for length < 0 is problematic as the type might or
2076      * might not be signed: if it is not, clever compilers will moan. */
2077     /* XXX Configure probe for the signedness of the length type of *truncate() needed? XXX */
2078     SETERRNO(0,0);
2079     {
2080         int result = 1;
2081         GV *tmpgv;
2082         IO *io;
2083
2084         if (PL_op->op_flags & OPf_SPECIAL) {
2085             tmpgv = gv_fetchsv(POPs, 0, SVt_PVIO);
2086
2087         do_ftruncate_gv:
2088             if (!GvIO(tmpgv))
2089                 result = 0;
2090             else {
2091                 PerlIO *fp;
2092                 io = GvIOp(tmpgv);
2093             do_ftruncate_io:
2094                 TAINT_PROPER("truncate");
2095                 if (!(fp = IoIFP(io))) {
2096                     result = 0;
2097                 }
2098                 else {
2099                     PerlIO_flush(fp);
2100 #ifdef HAS_TRUNCATE
2101                     if (ftruncate(PerlIO_fileno(fp), len) < 0)
2102 #else
2103                     if (my_chsize(PerlIO_fileno(fp), len) < 0)
2104 #endif
2105                         result = 0;
2106                 }
2107             }
2108         }
2109         else {
2110             SV * const sv = POPs;
2111             const char *name;
2112
2113             if (SvTYPE(sv) == SVt_PVGV) {
2114                 tmpgv = (GV*)sv;                /* *main::FRED for example */
2115                 goto do_ftruncate_gv;
2116             }
2117             else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
2118                 tmpgv = (GV*) SvRV(sv); /* \*main::FRED for example */
2119                 goto do_ftruncate_gv;
2120             }
2121             else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
2122                 io = (IO*) SvRV(sv); /* *main::FRED{IO} for example */
2123                 goto do_ftruncate_io;
2124             }
2125
2126             name = SvPV_nolen_const(sv);
2127             TAINT_PROPER("truncate");
2128 #ifdef HAS_TRUNCATE
2129             if (truncate(name, len) < 0)
2130                 result = 0;
2131 #else
2132             {
2133                 const int tmpfd = PerlLIO_open(name, O_RDWR);
2134
2135                 if (tmpfd < 0)
2136                     result = 0;
2137                 else {
2138                     if (my_chsize(tmpfd, len) < 0)
2139                         result = 0;
2140                     PerlLIO_close(tmpfd);
2141                 }
2142             }
2143 #endif
2144         }
2145
2146         if (result)
2147             RETPUSHYES;
2148         if (!errno)
2149             SETERRNO(EBADF,RMS_IFI);
2150         RETPUSHUNDEF;
2151     }
2152 }
2153
2154 PP(pp_ioctl)
2155 {
2156     dVAR; dSP; dTARGET;
2157     SV * const argsv = POPs;
2158     const unsigned int func = POPu;
2159     const int optype = PL_op->op_type;
2160     GV * const gv = (GV*)POPs;
2161     IO * const io = gv ? GvIOn(gv) : NULL;
2162     char *s;
2163     IV retval;
2164
2165     if (!io || !argsv || !IoIFP(io)) {
2166         if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2167             report_evil_fh(gv, io, PL_op->op_type);
2168         SETERRNO(EBADF,RMS_IFI);        /* well, sort of... */
2169         RETPUSHUNDEF;
2170     }
2171
2172     if (SvPOK(argsv) || !SvNIOK(argsv)) {
2173         STRLEN len;
2174         STRLEN need;
2175         s = SvPV_force(argsv, len);
2176         need = IOCPARM_LEN(func);
2177         if (len < need) {
2178             s = Sv_Grow(argsv, need + 1);
2179             SvCUR_set(argsv, need);
2180         }
2181
2182         s[SvCUR(argsv)] = 17;   /* a little sanity check here */
2183     }
2184     else {
2185         retval = SvIV(argsv);
2186         s = INT2PTR(char*,retval);              /* ouch */
2187     }
2188
2189     TAINT_PROPER(PL_op_desc[optype]);
2190
2191     if (optype == OP_IOCTL)
2192 #ifdef HAS_IOCTL
2193         retval = PerlLIO_ioctl(PerlIO_fileno(IoIFP(io)), func, s);
2194 #else
2195         DIE(aTHX_ "ioctl is not implemented");
2196 #endif
2197     else
2198 #ifndef HAS_FCNTL
2199       DIE(aTHX_ "fcntl is not implemented");
2200 #else
2201 #if defined(OS2) && defined(__EMX__)
2202         retval = fcntl(PerlIO_fileno(IoIFP(io)), func, (int)s);
2203 #else
2204         retval = fcntl(PerlIO_fileno(IoIFP(io)), func, s);
2205 #endif
2206 #endif
2207
2208 #if defined(HAS_IOCTL) || defined(HAS_FCNTL)
2209     if (SvPOK(argsv)) {
2210         if (s[SvCUR(argsv)] != 17)
2211             DIE(aTHX_ "Possible memory corruption: %s overflowed 3rd argument",
2212                 OP_NAME(PL_op));
2213         s[SvCUR(argsv)] = 0;            /* put our null back */
2214         SvSETMAGIC(argsv);              /* Assume it has changed */
2215     }
2216
2217     if (retval == -1)
2218         RETPUSHUNDEF;
2219     if (retval != 0) {
2220         PUSHi(retval);
2221     }
2222     else {
2223         PUSHp(zero_but_true, ZBTLEN);
2224     }
2225 #endif
2226     RETURN;
2227 }
2228
2229 PP(pp_flock)
2230 {
2231 #ifdef FLOCK
2232     dVAR; dSP; dTARGET;
2233     I32 value;
2234     IO *io = NULL;
2235     PerlIO *fp;
2236     const int argtype = POPi;
2237     GV * const gv = (MAXARG == 0) ? PL_last_in_gv : (GV*)POPs;
2238
2239     if (gv && (io = GvIO(gv)))
2240         fp = IoIFP(io);
2241     else {
2242         fp = NULL;
2243         io = NULL;
2244     }
2245     /* XXX Looks to me like io is always NULL at this point */
2246     if (fp) {
2247         (void)PerlIO_flush(fp);
2248         value = (I32)(PerlLIO_flock(PerlIO_fileno(fp), argtype) >= 0);
2249     }
2250     else {
2251         if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2252             report_evil_fh(gv, io, PL_op->op_type);
2253         value = 0;
2254         SETERRNO(EBADF,RMS_IFI);
2255     }
2256     PUSHi(value);
2257     RETURN;
2258 #else
2259     DIE(aTHX_ PL_no_func, "flock()");
2260 #endif
2261 }
2262
2263 /* Sockets. */
2264
2265 PP(pp_socket)
2266 {
2267 #ifdef HAS_SOCKET
2268     dVAR; dSP;
2269     const int protocol = POPi;
2270     const int type = POPi;
2271     const int domain = POPi;
2272     GV * const gv = (GV*)POPs;
2273     register IO * const io = gv ? GvIOn(gv) : NULL;
2274     int fd;
2275
2276     if (!gv || !io) {
2277         if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2278             report_evil_fh(gv, io, PL_op->op_type);
2279         if (IoIFP(io))
2280             do_close(gv, FALSE);
2281         SETERRNO(EBADF,LIB_INVARG);
2282         RETPUSHUNDEF;
2283     }
2284
2285     if (IoIFP(io))
2286         do_close(gv, FALSE);
2287
2288     TAINT_PROPER("socket");
2289     fd = PerlSock_socket(domain, type, protocol);
2290     if (fd < 0)
2291         RETPUSHUNDEF;
2292     IoIFP(io) = PerlIO_fdopen(fd, "r"SOCKET_OPEN_MODE); /* stdio gets confused about sockets */
2293     IoOFP(io) = PerlIO_fdopen(fd, "w"SOCKET_OPEN_MODE);
2294     IoTYPE(io) = IoTYPE_SOCKET;
2295     if (!IoIFP(io) || !IoOFP(io)) {
2296         if (IoIFP(io)) PerlIO_close(IoIFP(io));
2297         if (IoOFP(io)) PerlIO_close(IoOFP(io));
2298         if (!IoIFP(io) && !IoOFP(io)) PerlLIO_close(fd);
2299         RETPUSHUNDEF;
2300     }
2301 #if defined(HAS_FCNTL) && defined(F_SETFD)
2302     fcntl(fd, F_SETFD, fd > PL_maxsysfd);       /* ensure close-on-exec */
2303 #endif
2304
2305 #ifdef EPOC
2306     setbuf( IoIFP(io), NULL); /* EPOC gets confused about sockets */
2307 #endif
2308
2309     RETPUSHYES;
2310 #else
2311     DIE(aTHX_ PL_no_sock_func, "socket");
2312 #endif
2313 }
2314
2315 PP(pp_sockpair)
2316 {
2317 #if defined (HAS_SOCKETPAIR) || (defined (HAS_SOCKET) && defined(SOCK_DGRAM) && defined(AF_INET) && defined(PF_INET))
2318     dVAR; dSP;
2319     const int protocol = POPi;
2320     const int type = POPi;
2321     const int domain = POPi;
2322     GV * const gv2 = (GV*)POPs;
2323     GV * const gv1 = (GV*)POPs;
2324     register IO * const io1 = gv1 ? GvIOn(gv1) : NULL;
2325     register IO * const io2 = gv2 ? GvIOn(gv2) : NULL;
2326     int fd[2];
2327
2328     if (!gv1 || !gv2 || !io1 || !io2) {
2329         if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) {
2330             if (!gv1 || !io1)
2331                 report_evil_fh(gv1, io1, PL_op->op_type);
2332             if (!gv2 || !io2)
2333                 report_evil_fh(gv1, io2, PL_op->op_type);
2334         }
2335         if (IoIFP(io1))
2336             do_close(gv1, FALSE);
2337         if (IoIFP(io2))
2338             do_close(gv2, FALSE);
2339         RETPUSHUNDEF;
2340     }
2341
2342     if (IoIFP(io1))
2343         do_close(gv1, FALSE);
2344     if (IoIFP(io2))
2345         do_close(gv2, FALSE);
2346
2347     TAINT_PROPER("socketpair");
2348     if (PerlSock_socketpair(domain, type, protocol, fd) < 0)
2349         RETPUSHUNDEF;
2350     IoIFP(io1) = PerlIO_fdopen(fd[0], "r"SOCKET_OPEN_MODE);
2351     IoOFP(io1) = PerlIO_fdopen(fd[0], "w"SOCKET_OPEN_MODE);
2352     IoTYPE(io1) = IoTYPE_SOCKET;
2353     IoIFP(io2) = PerlIO_fdopen(fd[1], "r"SOCKET_OPEN_MODE);
2354     IoOFP(io2) = PerlIO_fdopen(fd[1], "w"SOCKET_OPEN_MODE);
2355     IoTYPE(io2) = IoTYPE_SOCKET;
2356     if (!IoIFP(io1) || !IoOFP(io1) || !IoIFP(io2) || !IoOFP(io2)) {
2357         if (IoIFP(io1)) PerlIO_close(IoIFP(io1));
2358         if (IoOFP(io1)) PerlIO_close(IoOFP(io1));
2359         if (!IoIFP(io1) && !IoOFP(io1)) PerlLIO_close(fd[0]);
2360         if (IoIFP(io2)) PerlIO_close(IoIFP(io2));
2361         if (IoOFP(io2)) PerlIO_close(IoOFP(io2));
2362         if (!IoIFP(io2) && !IoOFP(io2)) PerlLIO_close(fd[1]);
2363         RETPUSHUNDEF;
2364     }
2365 #if defined(HAS_FCNTL) && defined(F_SETFD)
2366     fcntl(fd[0],F_SETFD,fd[0] > PL_maxsysfd);   /* ensure close-on-exec */
2367     fcntl(fd[1],F_SETFD,fd[1] > PL_maxsysfd);   /* ensure close-on-exec */
2368 #endif
2369
2370     RETPUSHYES;
2371 #else
2372     DIE(aTHX_ PL_no_sock_func, "socketpair");
2373 #endif
2374 }
2375
2376 PP(pp_bind)
2377 {
2378 #ifdef HAS_SOCKET
2379     dVAR; dSP;
2380     SV * const addrsv = POPs;
2381     /* OK, so on what platform does bind modify addr?  */
2382     const char *addr;
2383     GV * const gv = (GV*)POPs;
2384     register IO * const io = GvIOn(gv);
2385     STRLEN len;
2386     int bind_ok = 0;
2387
2388     if (!io || !IoIFP(io))
2389         goto nuts;
2390
2391     addr = SvPV_const(addrsv, len);
2392     TAINT_PROPER("bind");
2393     if (PerlSock_bind(PerlIO_fileno(IoIFP(io)),
2394                       (struct sockaddr *)addr, len) >= 0)
2395         bind_ok = 1;
2396
2397
2398     if (bind_ok)
2399         RETPUSHYES;
2400     else
2401         RETPUSHUNDEF;
2402
2403 nuts:
2404     if (ckWARN(WARN_CLOSED))
2405         report_evil_fh(gv, io, PL_op->op_type);
2406     SETERRNO(EBADF,SS_IVCHAN);
2407     RETPUSHUNDEF;
2408 #else
2409     DIE(aTHX_ PL_no_sock_func, "bind");
2410 #endif
2411 }
2412
2413 PP(pp_connect)
2414 {
2415 #ifdef HAS_SOCKET
2416     dVAR; dSP;
2417     SV * const addrsv = POPs;
2418     GV * const gv = (GV*)POPs;
2419     register IO * const io = GvIOn(gv);
2420     const char *addr;
2421     STRLEN len;
2422
2423     if (!io || !IoIFP(io))
2424         goto nuts;
2425
2426     addr = SvPV_const(addrsv, len);
2427     TAINT_PROPER("connect");
2428     if (PerlSock_connect(PerlIO_fileno(IoIFP(io)), (struct sockaddr *)addr, len) >= 0)
2429         RETPUSHYES;
2430     else
2431         RETPUSHUNDEF;
2432
2433 nuts:
2434     if (ckWARN(WARN_CLOSED))
2435         report_evil_fh(gv, io, PL_op->op_type);
2436     SETERRNO(EBADF,SS_IVCHAN);
2437     RETPUSHUNDEF;
2438 #else
2439     DIE(aTHX_ PL_no_sock_func, "connect");
2440 #endif
2441 }
2442
2443 PP(pp_listen)
2444 {
2445 #ifdef HAS_SOCKET
2446     dVAR; dSP;
2447     const int backlog = POPi;
2448     GV * const gv = (GV*)POPs;
2449     register IO * const io = gv ? GvIOn(gv) : NULL;
2450
2451     if (!gv || !io || !IoIFP(io))
2452         goto nuts;
2453
2454     if (PerlSock_listen(PerlIO_fileno(IoIFP(io)), backlog) >= 0)
2455         RETPUSHYES;
2456     else
2457         RETPUSHUNDEF;
2458
2459 nuts:
2460     if (ckWARN(WARN_CLOSED))
2461         report_evil_fh(gv, io, PL_op->op_type);
2462     SETERRNO(EBADF,SS_IVCHAN);
2463     RETPUSHUNDEF;
2464 #else
2465     DIE(aTHX_ PL_no_sock_func, "listen");
2466 #endif
2467 }
2468
2469 PP(pp_accept)
2470 {
2471 #ifdef HAS_SOCKET
2472     dVAR; dSP; dTARGET;
2473     register IO *nstio;
2474     register IO *gstio;
2475     char namebuf[MAXPATHLEN];
2476 #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) || defined(__QNXNTO__)
2477     Sock_size_t len = sizeof (struct sockaddr_in);
2478 #else
2479     Sock_size_t len = sizeof namebuf;
2480 #endif
2481     GV * const ggv = (GV*)POPs;
2482     GV * const ngv = (GV*)POPs;
2483     int fd;
2484
2485     if (!ngv)
2486         goto badexit;
2487     if (!ggv)
2488         goto nuts;
2489
2490     gstio = GvIO(ggv);
2491     if (!gstio || !IoIFP(gstio))
2492         goto nuts;
2493
2494     nstio = GvIOn(ngv);
2495     fd = PerlSock_accept(PerlIO_fileno(IoIFP(gstio)), (struct sockaddr *) namebuf, &len);
2496     if (fd < 0)
2497         goto badexit;
2498     if (IoIFP(nstio))
2499         do_close(ngv, FALSE);
2500     IoIFP(nstio) = PerlIO_fdopen(fd, "r"SOCKET_OPEN_MODE);
2501     IoOFP(nstio) = PerlIO_fdopen(fd, "w"SOCKET_OPEN_MODE);
2502     IoTYPE(nstio) = IoTYPE_SOCKET;
2503     if (!IoIFP(nstio) || !IoOFP(nstio)) {
2504         if (IoIFP(nstio)) PerlIO_close(IoIFP(nstio));
2505         if (IoOFP(nstio)) PerlIO_close(IoOFP(nstio));
2506         if (!IoIFP(nstio) && !IoOFP(nstio)) PerlLIO_close(fd);
2507         goto badexit;
2508     }
2509 #if defined(HAS_FCNTL) && defined(F_SETFD)
2510     fcntl(fd, F_SETFD, fd > PL_maxsysfd);       /* ensure close-on-exec */
2511 #endif
2512
2513 #ifdef EPOC
2514     len = sizeof (struct sockaddr_in); /* EPOC somehow truncates info */
2515     setbuf( IoIFP(nstio), NULL); /* EPOC gets confused about sockets */
2516 #endif
2517 #ifdef __SCO_VERSION__
2518     len = sizeof (struct sockaddr_in); /* OpenUNIX 8 somehow truncates info */
2519 #endif
2520
2521     PUSHp(namebuf, len);
2522     RETURN;
2523
2524 nuts:
2525     if (ckWARN(WARN_CLOSED))
2526         report_evil_fh(ggv, ggv ? GvIO(ggv) : 0, PL_op->op_type);
2527     SETERRNO(EBADF,SS_IVCHAN);
2528
2529 badexit:
2530     RETPUSHUNDEF;
2531
2532 #else
2533     DIE(aTHX_ PL_no_sock_func, "accept");
2534 #endif
2535 }
2536
2537 PP(pp_shutdown)
2538 {
2539 #ifdef HAS_SOCKET
2540     dVAR; dSP; dTARGET;
2541     const int how = POPi;
2542     GV * const gv = (GV*)POPs;
2543     register IO * const io = GvIOn(gv);
2544
2545     if (!io || !IoIFP(io))
2546         goto nuts;
2547
2548     PUSHi( PerlSock_shutdown(PerlIO_fileno(IoIFP(io)), how) >= 0 );
2549     RETURN;
2550
2551 nuts:
2552     if (ckWARN(WARN_CLOSED))
2553         report_evil_fh(gv, io, PL_op->op_type);
2554     SETERRNO(EBADF,SS_IVCHAN);
2555     RETPUSHUNDEF;
2556 #else
2557     DIE(aTHX_ PL_no_sock_func, "shutdown");
2558 #endif
2559 }
2560
2561 PP(pp_ssockopt)
2562 {
2563 #ifdef HAS_SOCKET
2564     dVAR; dSP;
2565     const int optype = PL_op->op_type;
2566     SV * const sv = (optype == OP_GSOCKOPT) ? sv_2mortal(newSV(257)) : POPs;
2567     const unsigned int optname = (unsigned int) POPi;
2568     const unsigned int lvl = (unsigned int) POPi;
2569     GV * const gv = (GV*)POPs;
2570     register IO * const io = GvIOn(gv);
2571     int fd;
2572     Sock_size_t len;
2573
2574     if (!io || !IoIFP(io))
2575         goto nuts;
2576
2577     fd = PerlIO_fileno(IoIFP(io));
2578     switch (optype) {
2579     case OP_GSOCKOPT:
2580         SvGROW(sv, 257);
2581         (void)SvPOK_only(sv);
2582         SvCUR_set(sv,256);
2583         *SvEND(sv) ='\0';
2584         len = SvCUR(sv);
2585         if (PerlSock_getsockopt(fd, lvl, optname, SvPVX(sv), &len) < 0)
2586             goto nuts2;
2587         SvCUR_set(sv, len);
2588         *SvEND(sv) ='\0';
2589         PUSHs(sv);
2590         break;
2591     case OP_SSOCKOPT: {
2592 #if defined(__SYMBIAN32__)
2593 # define SETSOCKOPT_OPTION_VALUE_T void *
2594 #else
2595 # define SETSOCKOPT_OPTION_VALUE_T const char *
2596 #endif
2597         /* XXX TODO: We need to have a proper type (a Configure probe,
2598          * etc.) for what the C headers think of the third argument of
2599          * setsockopt(), the option_value read-only buffer: is it
2600          * a "char *", or a "void *", const or not.  Some compilers
2601          * don't take kindly to e.g. assuming that "char *" implicitly
2602          * promotes to a "void *", or to explicitly promoting/demoting
2603          * consts to non/vice versa.  The "const void *" is the SUS
2604          * definition, but that does not fly everywhere for the above
2605          * reasons. */
2606             SETSOCKOPT_OPTION_VALUE_T buf;
2607             int aint;
2608             if (SvPOKp(sv)) {
2609                 STRLEN l;
2610                 buf = (SETSOCKOPT_OPTION_VALUE_T) SvPV_const(sv, l);
2611                 len = l;
2612             }
2613             else {
2614                 aint = (int)SvIV(sv);
2615                 buf = (SETSOCKOPT_OPTION_VALUE_T) &aint;
2616                 len = sizeof(int);
2617             }
2618             if (PerlSock_setsockopt(fd, lvl, optname, buf, len) < 0)
2619                 goto nuts2;
2620             PUSHs(&PL_sv_yes);
2621         }
2622         break;
2623     }
2624     RETURN;
2625
2626 nuts:
2627     if (ckWARN(WARN_CLOSED))
2628         report_evil_fh(gv, io, optype);
2629     SETERRNO(EBADF,SS_IVCHAN);
2630 nuts2:
2631     RETPUSHUNDEF;
2632
2633 #else
2634     DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
2635 #endif
2636 }
2637
2638 PP(pp_getpeername)
2639 {
2640 #ifdef HAS_SOCKET
2641     dVAR; dSP;
2642     const int optype = PL_op->op_type;
2643     GV * const gv = (GV*)POPs;
2644     register IO * const io = GvIOn(gv);
2645     Sock_size_t len;
2646     SV *sv;
2647     int fd;
2648
2649     if (!io || !IoIFP(io))
2650         goto nuts;
2651
2652     sv = sv_2mortal(newSV(257));
2653     (void)SvPOK_only(sv);
2654     len = 256;
2655     SvCUR_set(sv, len);
2656     *SvEND(sv) ='\0';
2657     fd = PerlIO_fileno(IoIFP(io));
2658     switch (optype) {
2659     case OP_GETSOCKNAME:
2660         if (PerlSock_getsockname(fd, (struct sockaddr *)SvPVX(sv), &len) < 0)
2661             goto nuts2;
2662         break;
2663     case OP_GETPEERNAME:
2664         if (PerlSock_getpeername(fd, (struct sockaddr *)SvPVX(sv), &len) < 0)
2665             goto nuts2;
2666 #if defined(VMS_DO_SOCKETS) && defined (DECCRTL_SOCKETS)
2667         {
2668             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";
2669             /* If the call succeeded, make sure we don't have a zeroed port/addr */
2670             if (((struct sockaddr *)SvPVX_const(sv))->sa_family == AF_INET &&
2671                 !memcmp(SvPVX_const(sv) + sizeof(u_short), nowhere,
2672                         sizeof(u_short) + sizeof(struct in_addr))) {
2673                 goto nuts2;     
2674             }
2675         }
2676 #endif
2677         break;
2678     }
2679 #ifdef BOGUS_GETNAME_RETURN
2680     /* Interactive Unix, getpeername() and getsockname()
2681       does not return valid namelen */
2682     if (len == BOGUS_GETNAME_RETURN)
2683         len = sizeof(struct sockaddr);
2684 #endif
2685     SvCUR_set(sv, len);
2686     *SvEND(sv) ='\0';
2687     PUSHs(sv);
2688     RETURN;
2689
2690 nuts:
2691     if (ckWARN(WARN_CLOSED))
2692         report_evil_fh(gv, io, optype);
2693     SETERRNO(EBADF,SS_IVCHAN);
2694 nuts2:
2695     RETPUSHUNDEF;
2696
2697 #else
2698     DIE(aTHX_ PL_no_sock_func, PL_op_desc[PL_op->op_type]);
2699 #endif
2700 }
2701
2702 /* Stat calls. */
2703
2704 PP(pp_stat)
2705 {
2706     dVAR;
2707     dSP;
2708     GV *gv;
2709     I32 gimme;
2710     I32 max = 13;
2711
2712     if (PL_op->op_flags & OPf_REF) {
2713         gv = cGVOP_gv;
2714         if (PL_op->op_type == OP_LSTAT) {
2715             if (gv != PL_defgv) {
2716             do_fstat_warning_check:
2717                 if (ckWARN(WARN_IO))
2718                     Perl_warner(aTHX_ packWARN(WARN_IO),
2719                         "lstat() on filehandle %s", GvENAME(gv));
2720             } else if (PL_laststype != OP_LSTAT)
2721                 Perl_croak(aTHX_ "The stat preceding lstat() wasn't an lstat");
2722         }
2723
2724       do_fstat:
2725         if (gv != PL_defgv) {
2726             PL_laststype = OP_STAT;
2727             PL_statgv = gv;
2728             sv_setpvn(PL_statname, "", 0);
2729             PL_laststatval = (GvIO(gv) && IoIFP(GvIOp(gv))
2730                 ? PerlLIO_fstat(PerlIO_fileno(IoIFP(GvIOn(gv))), &PL_statcache) : -1);
2731         }
2732         if (PL_laststatval < 0) {
2733             if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
2734                 report_evil_fh(gv, GvIO(gv), PL_op->op_type);
2735             max = 0;
2736         }
2737     }
2738     else {
2739         SV* const sv = POPs;
2740         if (SvTYPE(sv) == SVt_PVGV) {
2741             gv = (GV*)sv;
2742             goto do_fstat;
2743         }
2744         else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
2745             gv = (GV*)SvRV(sv);
2746             if (PL_op->op_type == OP_LSTAT)
2747                 goto do_fstat_warning_check;
2748             goto do_fstat;
2749         }
2750         sv_setpv(PL_statname, SvPV_nolen_const(sv));
2751         PL_statgv = NULL;
2752         PL_laststype = PL_op->op_type;
2753         if (PL_op->op_type == OP_LSTAT)
2754             PL_laststatval = PerlLIO_lstat(SvPV_nolen_const(PL_statname), &PL_statcache);
2755         else
2756             PL_laststatval = PerlLIO_stat(SvPV_nolen_const(PL_statname), &PL_statcache);
2757         if (PL_laststatval < 0) {
2758             if (ckWARN(WARN_NEWLINE) && strchr(SvPV_nolen_const(PL_statname), '\n'))
2759                 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
2760             max = 0;
2761         }
2762     }
2763
2764     gimme = GIMME_V;
2765     if (gimme != G_ARRAY) {
2766         if (gimme != G_VOID)
2767             XPUSHs(boolSV(max));
2768         RETURN;
2769     }
2770     if (max) {
2771         EXTEND(SP, max);
2772         EXTEND_MORTAL(max);
2773         PUSHs(sv_2mortal(newSViv(PL_statcache.st_dev)));
2774         PUSHs(sv_2mortal(newSViv(PL_statcache.st_ino)));
2775         PUSHs(sv_2mortal(newSVuv(PL_statcache.st_mode)));
2776         PUSHs(sv_2mortal(newSVuv(PL_statcache.st_nlink)));
2777 #if Uid_t_size > IVSIZE
2778         PUSHs(sv_2mortal(newSVnv(PL_statcache.st_uid)));
2779 #else
2780 #   if Uid_t_sign <= 0
2781         PUSHs(sv_2mortal(newSViv(PL_statcache.st_uid)));
2782 #   else
2783         PUSHs(sv_2mortal(newSVuv(PL_statcache.st_uid)));
2784 #   endif
2785 #endif
2786 #if Gid_t_size > IVSIZE
2787         PUSHs(sv_2mortal(newSVnv(PL_statcache.st_gid)));
2788 #else
2789 #   if Gid_t_sign <= 0
2790         PUSHs(sv_2mortal(newSViv(PL_statcache.st_gid)));
2791 #   else
2792         PUSHs(sv_2mortal(newSVuv(PL_statcache.st_gid)));
2793 #   endif
2794 #endif
2795 #ifdef USE_STAT_RDEV
2796         PUSHs(sv_2mortal(newSViv(PL_statcache.st_rdev)));
2797 #else
2798         PUSHs(sv_2mortal(newSVpvs("")));
2799 #endif
2800 #if Off_t_size > IVSIZE
2801         PUSHs(sv_2mortal(newSVnv((NV)PL_statcache.st_size)));
2802 #else
2803         PUSHs(sv_2mortal(newSViv(PL_statcache.st_size)));
2804 #endif
2805 #ifdef BIG_TIME
2806         PUSHs(sv_2mortal(newSVnv(PL_statcache.st_atime)));
2807         PUSHs(sv_2mortal(newSVnv(PL_statcache.st_mtime)));
2808         PUSHs(sv_2mortal(newSVnv(PL_statcache.st_ctime)));
2809 #else
2810         PUSHs(sv_2mortal(newSViv(PL_statcache.st_atime)));
2811         PUSHs(sv_2mortal(newSViv(PL_statcache.st_mtime)));
2812         PUSHs(sv_2mortal(newSViv(PL_statcache.st_ctime)));
2813 #endif
2814 #ifdef USE_STAT_BLOCKS
2815         PUSHs(sv_2mortal(newSVuv(PL_statcache.st_blksize)));
2816         PUSHs(sv_2mortal(newSVuv(PL_statcache.st_blocks)));
2817 #else
2818         PUSHs(sv_2mortal(newSVpvs("")));
2819         PUSHs(sv_2mortal(newSVpvs("")));
2820 #endif
2821     }
2822     RETURN;
2823 }
2824
2825 /* This macro is used by the stacked filetest operators :
2826  * if the previous filetest failed, short-circuit and pass its value.
2827  * Else, discard it from the stack and continue. --rgs
2828  */
2829 #define STACKED_FTEST_CHECK if (PL_op->op_private & OPpFT_STACKED) { \
2830         if (TOPs == &PL_sv_no || TOPs == &PL_sv_undef) { RETURN; } \
2831         else { (void)POPs; PUTBACK; } \
2832     }
2833
2834 PP(pp_ftrread)
2835 {
2836     dVAR;
2837     I32 result;
2838     /* Not const, because things tweak this below. Not bool, because there's
2839        no guarantee that OPp_FT_ACCESS is <= CHAR_MAX  */
2840 #if defined(HAS_ACCESS) || defined (PERL_EFF_ACCESS)
2841     I32 use_access = PL_op->op_private & OPpFT_ACCESS;
2842     /* Giving some sort of initial value silences compilers.  */
2843 #  ifdef R_OK
2844     int access_mode = R_OK;
2845 #  else
2846     int access_mode = 0;
2847 #  endif
2848 #else
2849     /* access_mode is never used, but leaving use_access in makes the
2850        conditional compiling below much clearer.  */
2851     I32 use_access = 0;
2852 #endif
2853     int stat_mode = S_IRUSR;
2854
2855     bool effective = FALSE;
2856     dSP;
2857
2858     STACKED_FTEST_CHECK;
2859
2860     switch (PL_op->op_type) {
2861     case OP_FTRREAD:
2862 #if !(defined(HAS_ACCESS) && defined(R_OK))
2863         use_access = 0;
2864 #endif
2865         break;
2866
2867     case OP_FTRWRITE:
2868 #if defined(HAS_ACCESS) && defined(W_OK)
2869         access_mode = W_OK;
2870 #else
2871         use_access = 0;
2872 #endif
2873         stat_mode = S_IWUSR;
2874         break;
2875
2876     case OP_FTREXEC:
2877 #if defined(HAS_ACCESS) && defined(X_OK)
2878         access_mode = X_OK;
2879 #else
2880         use_access = 0;
2881 #endif
2882         stat_mode = S_IXUSR;
2883         break;
2884
2885     case OP_FTEWRITE:
2886 #ifdef PERL_EFF_ACCESS
2887         access_mode = W_OK;
2888 #endif
2889         stat_mode = S_IWUSR;
2890         /* Fall through  */
2891
2892     case OP_FTEREAD:
2893 #ifndef PERL_EFF_ACCESS
2894         use_access = 0;
2895 #endif
2896         effective = TRUE;
2897         break;
2898
2899
2900     case OP_FTEEXEC:
2901 #ifdef PERL_EFF_ACCESS
2902         access_mode = W_OK;
2903 #else
2904         use_access = 0;
2905 #endif
2906         stat_mode = S_IXUSR;
2907         effective = TRUE;
2908         break;
2909     }
2910
2911     if (use_access) {
2912 #if defined(HAS_ACCESS) || defined (PERL_EFF_ACCESS)
2913         const char *const name = POPpx;
2914         if (effective) {
2915 #  ifdef PERL_EFF_ACCESS
2916             result = PERL_EFF_ACCESS(name, access_mode);
2917 #  else
2918             DIE(aTHX_ "panic: attempt to call PERL_EFF_ACCESS in %s",
2919                 OP_NAME(PL_op));
2920 #  endif
2921         }
2922         else {
2923 #  ifdef HAS_ACCESS
2924             result = access(name, access_mode);
2925 #  else
2926             DIE(aTHX_ "panic: attempt to call access() in %s", OP_NAME(PL_op));
2927 #  endif
2928         }
2929         if (result == 0)
2930             RETPUSHYES;
2931         if (result < 0)
2932             RETPUSHUNDEF;
2933         RETPUSHNO;
2934 #endif
2935     }
2936
2937     result = my_stat();
2938     SPAGAIN;
2939     if (result < 0)
2940         RETPUSHUNDEF;
2941     if (cando(stat_mode, effective, &PL_statcache))
2942         RETPUSHYES;
2943     RETPUSHNO;
2944 }
2945
2946 PP(pp_ftis)
2947 {
2948     dVAR;
2949     I32 result;
2950     const int op_type = PL_op->op_type;
2951     dSP;
2952     STACKED_FTEST_CHECK;
2953     result = my_stat();
2954     SPAGAIN;
2955     if (result < 0)
2956         RETPUSHUNDEF;
2957     if (op_type == OP_FTIS)
2958         RETPUSHYES;
2959     {
2960         /* You can't dTARGET inside OP_FTIS, because you'll get
2961            "panic: pad_sv po" - the op is not flagged to have a target.  */
2962         dTARGET;
2963         switch (op_type) {
2964         case OP_FTSIZE:
2965 #if Off_t_size > IVSIZE
2966             PUSHn(PL_statcache.st_size);
2967 #else
2968             PUSHi(PL_statcache.st_size);
2969 #endif
2970             break;
2971         case OP_FTMTIME:
2972             PUSHn( (((NV)PL_basetime - PL_statcache.st_mtime)) / 86400.0 );
2973             break;
2974         case OP_FTATIME:
2975             PUSHn( (((NV)PL_basetime - PL_statcache.st_atime)) / 86400.0 );
2976             break;
2977         case OP_FTCTIME:
2978             PUSHn( (((NV)PL_basetime - PL_statcache.st_ctime)) / 86400.0 );
2979             break;
2980         }
2981     }
2982     RETURN;
2983 }
2984
2985 PP(pp_ftrowned)
2986 {
2987     dVAR;
2988     I32 result;
2989     dSP;
2990
2991     /* I believe that all these three are likely to be defined on most every
2992        system these days.  */
2993 #ifndef S_ISUID
2994     if(PL_op->op_type == OP_FTSUID)
2995         RETPUSHNO;
2996 #endif
2997 #ifndef S_ISGID
2998     if(PL_op->op_type == OP_FTSGID)
2999         RETPUSHNO;
3000 #endif
3001 #ifndef S_ISVTX
3002     if(PL_op->op_type == OP_FTSVTX)
3003         RETPUSHNO;
3004 #endif
3005
3006     STACKED_FTEST_CHECK;
3007     result = my_stat();
3008     SPAGAIN;
3009     if (result < 0)
3010         RETPUSHUNDEF;
3011     switch (PL_op->op_type) {
3012     case OP_FTROWNED:
3013         if (PL_statcache.st_uid == PL_uid)
3014             RETPUSHYES;
3015         break;
3016     case OP_FTEOWNED:
3017         if (PL_statcache.st_uid == PL_euid)
3018             RETPUSHYES;
3019         break;
3020     case OP_FTZERO:
3021         if (PL_statcache.st_size == 0)
3022             RETPUSHYES;
3023         break;
3024     case OP_FTSOCK:
3025         if (S_ISSOCK(PL_statcache.st_mode))
3026             RETPUSHYES;
3027         break;
3028     case OP_FTCHR:
3029         if (S_ISCHR(PL_statcache.st_mode))
3030             RETPUSHYES;
3031         break;
3032     case OP_FTBLK:
3033         if (S_ISBLK(PL_statcache.st_mode))
3034             RETPUSHYES;
3035         break;
3036     case OP_FTFILE:
3037         if (S_ISREG(PL_statcache.st_mode))
3038             RETPUSHYES;
3039         break;
3040     case OP_FTDIR:
3041         if (S_ISDIR(PL_statcache.st_mode))
3042             RETPUSHYES;
3043         break;
3044     case OP_FTPIPE:
3045         if (S_ISFIFO(PL_statcache.st_mode))
3046             RETPUSHYES;
3047         break;
3048 #ifdef S_ISUID
3049     case OP_FTSUID:
3050         if (PL_statcache.st_mode & S_ISUID)
3051             RETPUSHYES;
3052         break;
3053 #endif
3054 #ifdef S_ISGID
3055     case OP_FTSGID:
3056         if (PL_statcache.st_mode & S_ISGID)
3057             RETPUSHYES;
3058         break;
3059 #endif
3060 #ifdef S_ISVTX
3061     case OP_FTSVTX:
3062         if (PL_statcache.st_mode & S_ISVTX)
3063             RETPUSHYES;
3064         break;
3065 #endif
3066     }
3067     RETPUSHNO;
3068 }
3069
3070 PP(pp_ftlink)
3071 {
3072     dVAR;
3073     I32 result = my_lstat();
3074     dSP;
3075     if (result < 0)
3076         RETPUSHUNDEF;
3077     if (S_ISLNK(PL_statcache.st_mode))
3078         RETPUSHYES;
3079     RETPUSHNO;
3080 }
3081
3082 PP(pp_fttty)
3083 {
3084     dVAR;
3085     dSP;
3086     int fd;
3087     GV *gv;
3088     SV *tmpsv = NULL;
3089
3090     STACKED_FTEST_CHECK;
3091
3092     if (PL_op->op_flags & OPf_REF)
3093         gv = cGVOP_gv;
3094     else if (isGV(TOPs))
3095         gv = (GV*)POPs;
3096     else if (SvROK(TOPs) && isGV(SvRV(TOPs)))
3097         gv = (GV*)SvRV(POPs);
3098     else
3099         gv = gv_fetchsv(tmpsv = POPs, 0, SVt_PVIO);
3100
3101     if (GvIO(gv) && IoIFP(GvIOp(gv)))
3102         fd = PerlIO_fileno(IoIFP(GvIOp(gv)));
3103     else if (tmpsv && SvOK(tmpsv)) {
3104         const char *tmps = SvPV_nolen_const(tmpsv);
3105         if (isDIGIT(*tmps))
3106             fd = atoi(tmps);
3107         else 
3108             RETPUSHUNDEF;
3109     }
3110     else
3111         RETPUSHUNDEF;
3112     if (PerlLIO_isatty(fd))
3113         RETPUSHYES;
3114     RETPUSHNO;
3115 }
3116
3117 #if defined(atarist) /* this will work with atariST. Configure will
3118                         make guesses for other systems. */
3119 # define FILE_base(f) ((f)->_base)
3120 # define FILE_ptr(f) ((f)->_ptr)
3121 # define FILE_cnt(f) ((f)->_cnt)
3122 # define FILE_bufsiz(f) ((f)->_cnt + ((f)->_ptr - (f)->_base))
3123 #endif
3124
3125 PP(pp_fttext)
3126 {
3127     dVAR;
3128     dSP;
3129     I32 i;
3130     I32 len;
3131     I32 odd = 0;
3132     STDCHAR tbuf[512];
3133     register STDCHAR *s;
3134     register IO *io;
3135     register SV *sv;
3136     GV *gv;
3137     PerlIO *fp;
3138
3139     STACKED_FTEST_CHECK;
3140
3141     if (PL_op->op_flags & OPf_REF)
3142         gv = cGVOP_gv;
3143     else if (isGV(TOPs))
3144         gv = (GV*)POPs;
3145     else if (SvROK(TOPs) && isGV(SvRV(TOPs)))
3146         gv = (GV*)SvRV(POPs);
3147     else
3148         gv = NULL;
3149
3150     if (gv) {
3151         EXTEND(SP, 1);
3152         if (gv == PL_defgv) {
3153             if (PL_statgv)
3154                 io = GvIO(PL_statgv);
3155             else {
3156                 sv = PL_statname;
3157                 goto really_filename;
3158             }
3159         }
3160         else {
3161             PL_statgv = gv;
3162             PL_laststatval = -1;
3163             sv_setpvn(PL_statname, "", 0);
3164             io = GvIO(PL_statgv);
3165         }
3166         if (io && IoIFP(io)) {
3167             if (! PerlIO_has_base(IoIFP(io)))
3168                 DIE(aTHX_ "-T and -B not implemented on filehandles");
3169             PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache);
3170             if (PL_laststatval < 0)
3171                 RETPUSHUNDEF;
3172             if (S_ISDIR(PL_statcache.st_mode)) { /* handle NFS glitch */
3173                 if (PL_op->op_type == OP_FTTEXT)
3174                     RETPUSHNO;
3175                 else
3176                     RETPUSHYES;
3177             }
3178             if (PerlIO_get_cnt(IoIFP(io)) <= 0) {
3179                 i = PerlIO_getc(IoIFP(io));
3180                 if (i != EOF)
3181                     (void)PerlIO_ungetc(IoIFP(io),i);
3182             }
3183             if (PerlIO_get_cnt(IoIFP(io)) <= 0) /* null file is anything */
3184                 RETPUSHYES;
3185             len = PerlIO_get_bufsiz(IoIFP(io));
3186             s = (STDCHAR *) PerlIO_get_base(IoIFP(io));
3187             /* sfio can have large buffers - limit to 512 */
3188             if (len > 512)
3189                 len = 512;
3190         }
3191         else {
3192             if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) {
3193                 gv = cGVOP_gv;
3194                 report_evil_fh(gv, GvIO(gv), PL_op->op_type);
3195             }
3196             SETERRNO(EBADF,RMS_IFI);
3197             RETPUSHUNDEF;
3198         }
3199     }
3200     else {
3201         sv = POPs;
3202       really_filename:
3203         PL_statgv = NULL;
3204         PL_laststype = OP_STAT;
3205         sv_setpv(PL_statname, SvPV_nolen_const(sv));
3206         if (!(fp = PerlIO_open(SvPVX_const(PL_statname), "r"))) {
3207             if (ckWARN(WARN_NEWLINE) && strchr(SvPV_nolen_const(PL_statname),
3208                                                '\n'))
3209                 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
3210             RETPUSHUNDEF;
3211         }
3212         PL_laststatval = PerlLIO_fstat(PerlIO_fileno(fp), &PL_statcache);
3213         if (PL_laststatval < 0) {
3214             (void)PerlIO_close(fp);
3215             RETPUSHUNDEF;
3216         }
3217         PerlIO_binmode(aTHX_ fp, '<', O_BINARY, NULL);
3218         len = PerlIO_read(fp, tbuf, sizeof(tbuf));
3219         (void)PerlIO_close(fp);
3220         if (len <= 0) {
3221             if (S_ISDIR(PL_statcache.st_mode) && PL_op->op_type == OP_FTTEXT)
3222                 RETPUSHNO;              /* special case NFS directories */
3223             RETPUSHYES;         /* null file is anything */
3224         }
3225         s = tbuf;
3226     }
3227
3228     /* now scan s to look for textiness */
3229     /*   XXX ASCII dependent code */
3230
3231 #if defined(DOSISH) || defined(USEMYBINMODE)
3232     /* ignore trailing ^Z on short files */
3233     if (len && len < sizeof(tbuf) && tbuf[len-1] == 26)
3234         --len;
3235 #endif
3236
3237     for (i = 0; i < len; i++, s++) {
3238         if (!*s) {                      /* null never allowed in text */
3239             odd += len;
3240             break;
3241         }
3242 #ifdef EBCDIC
3243         else if (!(isPRINT(*s) || isSPACE(*s)))
3244             odd++;
3245 #else
3246         else if (*s & 128) {
3247 #ifdef USE_LOCALE
3248             if (IN_LOCALE_RUNTIME && isALPHA_LC(*s))
3249                 continue;
3250 #endif
3251             /* utf8 characters don't count as odd */
3252             if (UTF8_IS_START(*s)) {
3253                 int ulen = UTF8SKIP(s);
3254                 if (ulen < len - i) {
3255                     int j;
3256                     for (j = 1; j < ulen; j++) {
3257                         if (!UTF8_IS_CONTINUATION(s[j]))
3258                             goto not_utf8;
3259                     }
3260                     --ulen;     /* loop does extra increment */
3261                     s += ulen;
3262                     i += ulen;
3263                     continue;
3264                 }
3265             }
3266           not_utf8:
3267             odd++;
3268         }
3269         else if (*s < 32 &&
3270           *s != '\n' && *s != '\r' && *s != '\b' &&
3271           *s != '\t' && *s != '\f' && *s != 27)
3272             odd++;
3273 #endif
3274     }
3275
3276     if ((odd * 3 > len) == (PL_op->op_type == OP_FTTEXT)) /* allow 1/3 odd */
3277         RETPUSHNO;
3278     else
3279         RETPUSHYES;
3280 }
3281
3282 /* File calls. */
3283
3284 PP(pp_chdir)
3285 {
3286     dVAR; dSP; dTARGET;
3287     const char *tmps = NULL;
3288     GV *gv = NULL;
3289
3290     if( MAXARG == 1 ) {
3291         SV * const sv = POPs;
3292         if (PL_op->op_flags & OPf_SPECIAL) {
3293             gv = gv_fetchsv(sv, 0, SVt_PVIO);
3294         }
3295         else if (SvTYPE(sv) == SVt_PVGV) {
3296             gv = (GV*)sv;
3297         }
3298         else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
3299             gv = (GV*)SvRV(sv);
3300         }
3301         else {
3302             tmps = SvPVx_nolen_const(sv);
3303         }
3304     }
3305
3306     if( !gv && (!tmps || !*tmps) ) {
3307         HV * const table = GvHVn(PL_envgv);
3308         SV **svp;
3309
3310         if (    (svp = hv_fetchs(table, "HOME", FALSE))
3311              || (svp = hv_fetchs(table, "LOGDIR", FALSE))
3312 #ifdef VMS
3313              || (svp = hv_fetchs(table, "SYS$LOGIN", FALSE))
3314 #endif
3315            )
3316         {
3317             if( MAXARG == 1 )
3318                 deprecate("chdir('') or chdir(undef) as chdir()");
3319             tmps = SvPV_nolen_const(*svp);
3320         }
3321         else {
3322             PUSHi(0);
3323             TAINT_PROPER("chdir");
3324             RETURN;
3325         }
3326     }
3327
3328     TAINT_PROPER("chdir");
3329     if (gv) {
3330 #ifdef HAS_FCHDIR
3331         IO* const io = GvIO(gv);
3332         if (io) {
3333             if (IoIFP(io)) {
3334                 PUSHi(fchdir(PerlIO_fileno(IoIFP(io))) >= 0);
3335             }
3336             else if (IoDIRP(io)) {
3337 #ifdef HAS_DIRFD
3338                 PUSHi(fchdir(dirfd(IoDIRP(io))) >= 0);
3339 #else
3340                 DIE(aTHX_ PL_no_func, "dirfd");
3341 #endif
3342             }
3343             else {
3344                 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
3345                     report_evil_fh(gv, io, PL_op->op_type);
3346                 SETERRNO(EBADF, RMS_IFI);
3347                 PUSHi(0);
3348             }
3349         }
3350         else {
3351             if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
3352                 report_evil_fh(gv, io, PL_op->op_type);
3353             SETERRNO(EBADF,RMS_IFI);
3354             PUSHi(0);
3355         }
3356 #else
3357         DIE(aTHX_ PL_no_func, "fchdir");
3358 #endif
3359     }
3360     else 
3361         PUSHi( PerlDir_chdir(tmps) >= 0 );
3362 #ifdef VMS
3363     /* Clear the DEFAULT element of ENV so we'll get the new value
3364      * in the future. */
3365     hv_delete(GvHVn(PL_envgv),"DEFAULT",7,G_DISCARD);
3366 #endif
3367     RETURN;
3368 }
3369
3370 PP(pp_chown)
3371 {
3372     dVAR; dSP; dMARK; dTARGET;
3373     const I32 value = (I32)apply(PL_op->op_type, MARK, SP);
3374
3375     SP = MARK;
3376     XPUSHi(value);
3377     RETURN;
3378 }
3379
3380 PP(pp_chroot)
3381 {
3382 #ifdef HAS_CHROOT
3383     dVAR; dSP; dTARGET;
3384     char * const tmps = POPpx;
3385     TAINT_PROPER("chroot");
3386     PUSHi( chroot(tmps) >= 0 );
3387     RETURN;
3388 #else
3389     DIE(aTHX_ PL_no_func, "chroot");
3390 #endif
3391 }
3392
3393 PP(pp_rename)
3394 {
3395     dVAR; dSP; dTARGET;
3396     int anum;
3397     const char * const tmps2 = POPpconstx;
3398     const char * const tmps = SvPV_nolen_const(TOPs);
3399     TAINT_PROPER("rename");
3400 #ifdef HAS_RENAME
3401     anum = PerlLIO_rename(tmps, tmps2);
3402 #else
3403     if (!(anum = PerlLIO_stat(tmps, &PL_statbuf))) {
3404         if (same_dirent(tmps2, tmps))   /* can always rename to same name */
3405             anum = 1;
3406         else {
3407             if (PL_euid || PerlLIO_stat(tmps2, &PL_statbuf) < 0 || !S_ISDIR(PL_statbuf.st_mode))
3408                 (void)UNLINK(tmps2);
3409             if (!(anum = link(tmps, tmps2)))
3410                 anum = UNLINK(tmps);
3411         }
3412     }
3413 #endif
3414     SETi( anum >= 0 );
3415     RETURN;
3416 }
3417
3418 #if defined(HAS_LINK) || defined(HAS_SYMLINK)
3419 PP(pp_link)
3420 {
3421     dVAR; dSP; dTARGET;
3422     const int op_type = PL_op->op_type;
3423     int result;
3424
3425 #  ifndef HAS_LINK
3426     if (op_type == OP_LINK)
3427         DIE(aTHX_ PL_no_func, "link");
3428 #  endif
3429 #  ifndef HAS_SYMLINK
3430     if (op_type == OP_SYMLINK)
3431         DIE(aTHX_ PL_no_func, "symlink");
3432 #  endif
3433
3434     {
3435         const char * const tmps2 = POPpconstx;
3436         const char * const tmps = SvPV_nolen_const(TOPs);
3437         TAINT_PROPER(PL_op_desc[op_type]);
3438         result =
3439 #  if defined(HAS_LINK)
3440 #    if defined(HAS_SYMLINK)
3441             /* Both present - need to choose which.  */
3442             (op_type == OP_LINK) ?
3443             PerlLIO_link(tmps, tmps2) : symlink(tmps, tmps2);
3444 #    else
3445     /* Only have link, so calls to pp_symlink will have DIE()d above.  */
3446         PerlLIO_link(tmps, tmps2);
3447 #    endif
3448 #  else
3449 #    if defined(HAS_SYMLINK)
3450     /* Only have symlink, so calls to pp_link will have DIE()d above.  */
3451         symlink(tmps, tmps2);
3452 #    endif
3453 #  endif
3454     }
3455
3456     SETi( result >= 0 );
3457     RETURN;
3458 }
3459 #else
3460 PP(pp_link)
3461 {
3462     /* Have neither.  */
3463     DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
3464 }
3465 #endif
3466
3467 PP(pp_readlink)
3468 {
3469     dVAR;
3470     dSP;
3471 #ifdef HAS_SYMLINK
3472     dTARGET;
3473     const char *tmps;
3474     char buf[MAXPATHLEN];
3475     int len;
3476
3477 #ifndef INCOMPLETE_TAINTS
3478     TAINT;
3479 #endif
3480     tmps = POPpconstx;
3481     len = readlink(tmps, buf, sizeof(buf) - 1);
3482     EXTEND(SP, 1);
3483     if (len < 0)
3484         RETPUSHUNDEF;
3485     PUSHp(buf, len);
3486     RETURN;
3487 #else
3488     EXTEND(SP, 1);
3489     RETSETUNDEF;                /* just pretend it's a normal file */
3490 #endif
3491 }
3492
3493 #if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
3494 STATIC int
3495 S_dooneliner(pTHX_ const char *cmd, const char *filename)
3496 {
3497     char * const save_filename = filename;
3498     char *cmdline;
3499     char *s;
3500     PerlIO *myfp;
3501     int anum = 1;
3502
3503     Newx(cmdline, strlen(cmd) + (strlen(filename) * 2) + 10, char);
3504     strcpy(cmdline, cmd);
3505     strcat(cmdline, " ");
3506     for (s = cmdline + strlen(cmdline); *filename; ) {
3507         *s++ = '\\';
3508         *s++ = *filename++;
3509     }
3510     strcpy(s, " 2>&1");
3511     myfp = PerlProc_popen(cmdline, "r");
3512     Safefree(cmdline);
3513
3514     if (myfp) {
3515         SV * const tmpsv = sv_newmortal();
3516         /* Need to save/restore 'PL_rs' ?? */
3517         s = sv_gets(tmpsv, myfp, 0);
3518         (void)PerlProc_pclose(myfp);
3519         if (s != NULL) {
3520             int e;
3521             for (e = 1;
3522 #ifdef HAS_SYS_ERRLIST
3523                  e <= sys_nerr
3524 #endif
3525                  ; e++)
3526             {
3527                 /* you don't see this */
3528                 const char * const errmsg =
3529 #ifdef HAS_SYS_ERRLIST
3530                     sys_errlist[e]
3531 #else
3532                     strerror(e)
3533 #endif
3534                     ;
3535                 if (!errmsg)
3536                     break;
3537                 if (instr(s, errmsg)) {
3538                     SETERRNO(e,0);
3539                     return 0;
3540                 }
3541             }
3542             SETERRNO(0,0);
3543 #ifndef EACCES
3544 #define EACCES EPERM
3545 #endif
3546             if (instr(s, "cannot make"))
3547                 SETERRNO(EEXIST,RMS_FEX);
3548             else if (instr(s, "existing file"))
3549                 SETERRNO(EEXIST,RMS_FEX);
3550             else if (instr(s, "ile exists"))
3551                 SETERRNO(EEXIST,RMS_FEX);
3552             else if (instr(s, "non-exist"))
3553                 SETERRNO(ENOENT,RMS_FNF);
3554             else if (instr(s, "does not exist"))
3555                 SETERRNO(ENOENT,RMS_FNF);
3556             else if (instr(s, "not empty"))
3557                 SETERRNO(EBUSY,SS_DEVOFFLINE);
3558             else if (instr(s, "cannot access"))
3559                 SETERRNO(EACCES,RMS_PRV);
3560             else
3561                 SETERRNO(EPERM,RMS_PRV);
3562             return 0;
3563         }
3564         else {  /* some mkdirs return no failure indication */
3565             anum = (PerlLIO_stat(save_filename, &PL_statbuf) >= 0);
3566             if (PL_op->op_type == OP_RMDIR)
3567                 anum = !anum;
3568             if (anum)
3569                 SETERRNO(0,0);
3570             else
3571                 SETERRNO(EACCES,RMS_PRV);       /* a guess */
3572         }
3573         return anum;
3574     }
3575     else
3576         return 0;
3577 }
3578 #endif
3579
3580 /* This macro removes trailing slashes from a directory name.
3581  * Different operating and file systems take differently to
3582  * trailing slashes.  According to POSIX 1003.1 1996 Edition
3583  * any number of trailing slashes should be allowed.
3584  * Thusly we snip them away so that even non-conforming
3585  * systems are happy.
3586  * We should probably do this "filtering" for all
3587  * the functions that expect (potentially) directory names:
3588  * -d, chdir(), chmod(), chown(), chroot(), fcntl()?,
3589  * (mkdir()), opendir(), rename(), rmdir(), stat(). --jhi */
3590
3591 #define TRIMSLASHES(tmps,len,copy) (tmps) = SvPV_const(TOPs, (len)); \
3592     if ((len) > 1 && (tmps)[(len)-1] == '/') { \
3593         do { \
3594             (len)--; \
3595         } while ((len) > 1 && (tmps)[(len)-1] == '/'); \
3596         (tmps) = savepvn((tmps), (len)); \
3597         (copy) = TRUE; \
3598     }
3599
3600 PP(pp_mkdir)
3601 {
3602     dVAR; dSP; dTARGET;
3603     STRLEN len;
3604     const char *tmps;
3605     bool copy = FALSE;
3606     const int mode = (MAXARG > 1) ? POPi : 0777;
3607
3608     TRIMSLASHES(tmps,len,copy);
3609
3610     TAINT_PROPER("mkdir");
3611 #ifdef HAS_MKDIR
3612     SETi( PerlDir_mkdir(tmps, mode) >= 0 );
3613 #else
3614     {
3615     int oldumask;
3616     SETi( dooneliner("mkdir", tmps) );
3617     oldumask = PerlLIO_umask(0);
3618     PerlLIO_umask(oldumask);
3619     PerlLIO_chmod(tmps, (mode & ~oldumask) & 0777);
3620     }
3621 #endif
3622     if (copy)
3623         Safefree(tmps);
3624     RETURN;
3625 }
3626
3627 PP(pp_rmdir)
3628 {
3629     dVAR; dSP; dTARGET;
3630     STRLEN len;
3631     const char *tmps;
3632     bool copy = FALSE;
3633
3634     TRIMSLASHES(tmps,len,copy);
3635     TAINT_PROPER("rmdir");
3636 #ifdef HAS_RMDIR
3637     SETi( PerlDir_rmdir(tmps) >= 0 );
3638 #else
3639     SETi( dooneliner("rmdir", tmps) );
3640 #endif
3641     if (copy)
3642         Safefree(tmps);
3643     RETURN;
3644 }
3645
3646 /* Directory calls. */
3647
3648 PP(pp_open_dir)
3649 {
3650 #if defined(Direntry_t) && defined(HAS_READDIR)
3651     dVAR; dSP;
3652     const char * const dirname = POPpconstx;
3653     GV * const gv = (GV*)POPs;
3654     register IO * const io = GvIOn(gv);
3655
3656     if (!io)
3657         goto nope;
3658
3659     if (IoDIRP(io))
3660         PerlDir_close(IoDIRP(io));
3661     if (!(IoDIRP(io) = PerlDir_open(dirname)))
3662         goto nope;
3663
3664     RETPUSHYES;
3665 nope:
3666     if (!errno)
3667         SETERRNO(EBADF,RMS_DIR);
3668     RETPUSHUNDEF;
3669 #else
3670     DIE(aTHX_ PL_no_dir_func, "opendir");
3671 #endif
3672 }
3673
3674 PP(pp_readdir)
3675 {
3676 #if !defined(Direntry_t) || !defined(HAS_READDIR)
3677     DIE(aTHX_ PL_no_dir_func, "readdir");
3678 #else
3679 #if !defined(I_DIRENT) && !defined(VMS)
3680     Direntry_t *readdir (DIR *);
3681 #endif
3682     dVAR;
3683     dSP;
3684
3685     SV *sv;
3686     const I32 gimme = GIMME;
3687     GV * const gv = (GV *)POPs;
3688     register const Direntry_t *dp;
3689     register IO * const io = GvIOn(gv);
3690
3691     if (!io || !IoDIRP(io)) {
3692         if(ckWARN(WARN_IO)) {
3693             Perl_warner(aTHX_ packWARN(WARN_IO),
3694                 "readdir() attempted on invalid dirhandle %s", GvENAME(gv));
3695         }
3696         goto nope;
3697     }
3698
3699     do {
3700         dp = (Direntry_t *)PerlDir_read(IoDIRP(io));
3701         if (!dp)
3702             break;
3703 #ifdef DIRNAMLEN
3704         sv = newSVpvn(dp->d_name, dp->d_namlen);
3705 #else
3706         sv = newSVpv(dp->d_name, 0);
3707 #endif
3708 #ifndef INCOMPLETE_TAINTS
3709         if (!(IoFLAGS(io) & IOf_UNTAINT))
3710             SvTAINTED_on(sv);
3711 #endif
3712         XPUSHs(sv_2mortal(sv));
3713     }
3714     while (gimme == G_ARRAY);
3715
3716     if (!dp && gimme != G_ARRAY)
3717         goto nope;
3718
3719     RETURN;
3720
3721 nope:
3722     if (!errno)
3723         SETERRNO(EBADF,RMS_ISI);
3724     if (GIMME == G_ARRAY)
3725         RETURN;
3726     else
3727         RETPUSHUNDEF;
3728 #endif
3729 }
3730
3731 PP(pp_telldir)
3732 {
3733 #if defined(HAS_TELLDIR) || defined(telldir)
3734     dVAR; dSP; dTARGET;
3735  /* XXX does _anyone_ need this? --AD 2/20/1998 */
3736  /* XXX netbsd still seemed to.
3737     XXX HAS_TELLDIR_PROTO is new style, NEED_TELLDIR_PROTO is old style.
3738     --JHI 1999-Feb-02 */
3739 # if !defined(HAS_TELLDIR_PROTO) || defined(NEED_TELLDIR_PROTO)
3740     long telldir (DIR *);
3741 # endif
3742     GV * const gv = (GV*)POPs;
3743     register IO * const io = GvIOn(gv);
3744
3745     if (!io || !IoDIRP(io)) {
3746         if(ckWARN(WARN_IO)) {
3747             Perl_warner(aTHX_ packWARN(WARN_IO),
3748                 "telldir() attempted on invalid dirhandle %s", GvENAME(gv));
3749         }
3750         goto nope;
3751     }
3752
3753     PUSHi( PerlDir_tell(IoDIRP(io)) );
3754     RETURN;
3755 nope:
3756     if (!errno)
3757         SETERRNO(EBADF,RMS_ISI);
3758     RETPUSHUNDEF;
3759 #else
3760     DIE(aTHX_ PL_no_dir_func, "telldir");
3761 #endif
3762 }
3763
3764 PP(pp_seekdir)
3765 {
3766 #if defined(HAS_SEEKDIR) || defined(seekdir)
3767     dVAR; dSP;
3768     const long along = POPl;
3769     GV * const gv = (GV*)POPs;
3770     register IO * const io = GvIOn(gv);
3771
3772     if (!io || !IoDIRP(io)) {
3773         if(ckWARN(WARN_IO)) {
3774             Perl_warner(aTHX_ packWARN(WARN_IO),
3775                 "seekdir() attempted on invalid dirhandle %s", GvENAME(gv));
3776         }
3777         goto nope;
3778     }
3779     (void)PerlDir_seek(IoDIRP(io), along);
3780
3781     RETPUSHYES;
3782 nope:
3783     if (!errno)
3784         SETERRNO(EBADF,RMS_ISI);
3785     RETPUSHUNDEF;
3786 #else
3787     DIE(aTHX_ PL_no_dir_func, "seekdir");
3788 #endif
3789 }
3790
3791 PP(pp_rewinddir)
3792 {
3793 #if defined(HAS_REWINDDIR) || defined(rewinddir)
3794     dVAR; dSP;
3795     GV * const gv = (GV*)POPs;
3796     register IO * const io = GvIOn(gv);
3797
3798     if (!io || !IoDIRP(io)) {
3799         if(ckWARN(WARN_IO)) {
3800             Perl_warner(aTHX_ packWARN(WARN_IO),
3801                 "rewinddir() attempted on invalid dirhandle %s", GvENAME(gv));
3802         }
3803         goto nope;
3804     }
3805     (void)PerlDir_rewind(IoDIRP(io));
3806     RETPUSHYES;
3807 nope:
3808     if (!errno)
3809         SETERRNO(EBADF,RMS_ISI);
3810     RETPUSHUNDEF;
3811 #else
3812     DIE(aTHX_ PL_no_dir_func, "rewinddir");
3813 #endif
3814 }
3815
3816 PP(pp_closedir)
3817 {
3818 #if defined(Direntry_t) && defined(HAS_READDIR)
3819     dVAR; dSP;
3820     GV * const gv = (GV*)POPs;
3821     register IO * const io = GvIOn(gv);
3822
3823     if (!io || !IoDIRP(io)) {
3824         if(ckWARN(WARN_IO)) {
3825             Perl_warner(aTHX_ packWARN(WARN_IO),
3826                 "closedir() attempted on invalid dirhandle %s", GvENAME(gv));
3827         }
3828         goto nope;
3829     }
3830 #ifdef VOID_CLOSEDIR
3831     PerlDir_close(IoDIRP(io));
3832 #else
3833     if (PerlDir_close(IoDIRP(io)) < 0) {
3834         IoDIRP(io) = 0; /* Don't try to close again--coredumps on SysV */
3835         goto nope;
3836     }
3837 #endif
3838     IoDIRP(io) = 0;
3839
3840     RETPUSHYES;
3841 nope:
3842     if (!errno)
3843         SETERRNO(EBADF,RMS_IFI);
3844     RETPUSHUNDEF;
3845 #else
3846     DIE(aTHX_ PL_no_dir_func, "closedir");
3847 #endif
3848 }
3849
3850 /* Process control. */
3851
3852 PP(pp_fork)
3853 {
3854 #ifdef HAS_FORK
3855     dVAR; dSP; dTARGET;
3856     Pid_t childpid;
3857
3858     EXTEND(SP, 1);
3859     PERL_FLUSHALL_FOR_CHILD;
3860     childpid = PerlProc_fork();
3861     if (childpid < 0)
3862         RETSETUNDEF;
3863     if (!childpid) {
3864         GV * const tmpgv = gv_fetchpvs("$", GV_ADD|GV_NOTQUAL, SVt_PV);
3865         if (tmpgv) {
3866             SvREADONLY_off(GvSV(tmpgv));
3867             sv_setiv(GvSV(tmpgv), (IV)PerlProc_getpid());
3868             SvREADONLY_on(GvSV(tmpgv));
3869         }
3870 #ifdef THREADS_HAVE_PIDS
3871         PL_ppid = (IV)getppid();
3872 #endif
3873 #ifdef PERL_USES_PL_PIDSTATUS
3874         hv_clear(PL_pidstatus); /* no kids, so don't wait for 'em */
3875 #endif
3876     }
3877     PUSHi(childpid);
3878     RETURN;
3879 #else
3880 #  if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
3881     dSP; dTARGET;
3882     Pid_t childpid;
3883
3884     EXTEND(SP, 1);
3885     PERL_FLUSHALL_FOR_CHILD;
3886     childpid = PerlProc_fork();
3887     if (childpid == -1)
3888         RETSETUNDEF;
3889     PUSHi(childpid);
3890     RETURN;
3891 #  else
3892     DIE(aTHX_ PL_no_func, "fork");
3893 #  endif
3894 #endif
3895 }
3896
3897 PP(pp_wait)
3898 {
3899 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
3900     dVAR; dSP; dTARGET;
3901     Pid_t childpid;
3902     int argflags;
3903
3904     if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
3905         childpid = wait4pid(-1, &argflags, 0);
3906     else {
3907         while ((childpid = wait4pid(-1, &argflags, 0)) == -1 &&
3908                errno == EINTR) {
3909           PERL_ASYNC_CHECK();
3910         }
3911     }
3912 #  if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
3913     /* 0 and -1 are both error returns (the former applies to WNOHANG case) */
3914     STATUS_NATIVE_CHILD_SET((childpid && childpid != -1) ? argflags : -1);
3915 #  else
3916     STATUS_NATIVE_CHILD_SET((childpid > 0) ? argflags : -1);
3917 #  endif
3918     XPUSHi(childpid);
3919     RETURN;
3920 #else
3921     DIE(aTHX_ PL_no_func, "wait");
3922 #endif
3923 }
3924
3925 PP(pp_waitpid)
3926 {
3927 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
3928     dVAR; dSP; dTARGET;
3929     const int optype = POPi;
3930     const Pid_t pid = TOPi;
3931     Pid_t result;
3932     int argflags;
3933
3934     if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
3935         result = wait4pid(pid, &argflags, optype);
3936     else {
3937         while ((result = wait4pid(pid, &argflags, optype)) == -1 &&
3938                errno == EINTR) {
3939           PERL_ASYNC_CHECK();
3940         }
3941     }
3942 #  if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
3943     /* 0 and -1 are both error returns (the former applies to WNOHANG case) */
3944     STATUS_NATIVE_CHILD_SET((result && result != -1) ? argflags : -1);
3945 #  else
3946     STATUS_NATIVE_CHILD_SET((result > 0) ? argflags : -1);
3947 #  endif
3948     SETi(result);
3949     RETURN;
3950 #else
3951     DIE(aTHX_ PL_no_func, "waitpid");
3952 #endif
3953 }
3954
3955 PP(pp_system)
3956 {
3957     dVAR; dSP; dMARK; dORIGMARK; dTARGET;
3958     I32 value;
3959     int result;
3960
3961     if (PL_tainting) {
3962         TAINT_ENV();
3963         while (++MARK <= SP) {
3964             (void)SvPV_nolen_const(*MARK);      /* stringify for taint check */
3965             if (PL_tainted)
3966                 break;
3967         }
3968         MARK = ORIGMARK;
3969         TAINT_PROPER("system");
3970     }
3971     PERL_FLUSHALL_FOR_CHILD;
3972 #if (defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(OS2) || defined(PERL_MICRO)
3973     {
3974         Pid_t childpid;
3975         int pp[2];
3976         I32 did_pipes = 0;
3977
3978         if (PerlProc_pipe(pp) >= 0)
3979             did_pipes = 1;
3980         while ((childpid = PerlProc_fork()) == -1) {
3981             if (errno != EAGAIN) {
3982                 value = -1;
3983                 SP = ORIGMARK;
3984                 XPUSHi(value);
3985                 if (did_pipes) {
3986                     PerlLIO_close(pp[0]);
3987                     PerlLIO_close(pp[1]);
3988                 }
3989                 RETURN;
3990             }
3991             sleep(5);
3992         }
3993         if (childpid > 0) {
3994             Sigsave_t ihand,qhand; /* place to save signals during system() */
3995             int status;
3996
3997             if (did_pipes)
3998                 PerlLIO_close(pp[1]);
3999 #ifndef PERL_MICRO
4000             rsignal_save(SIGINT,  (Sighandler_t) SIG_IGN, &ihand);
4001             rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qhand);
4002 #endif
4003             do {
4004                 result = wait4pid(childpid, &status, 0);
4005             } while (result == -1 && errno == EINTR);
4006 #ifndef PERL_MICRO
4007             (void)rsignal_restore(SIGINT, &ihand);
4008             (void)rsignal_restore(SIGQUIT, &qhand);
4009 #endif
4010             STATUS_NATIVE_CHILD_SET(result == -1 ? -1 : status);
4011             do_execfree();      /* free any memory child malloced on fork */
4012             SP = ORIGMARK;
4013             if (did_pipes) {
4014                 int errkid;
4015                 int n = 0, n1;
4016
4017                 while (n < sizeof(int)) {
4018                     n1 = PerlLIO_read(pp[0],
4019                                       (void*)(((char*)&errkid)+n),
4020                                       (sizeof(int)) - n);
4021                     if (n1 <= 0)
4022                         break;
4023                     n += n1;
4024                 }
4025                 PerlLIO_close(pp[0]);
4026                 if (n) {                        /* Error */
4027                     if (n != sizeof(int))
4028                         DIE(aTHX_ "panic: kid popen errno read");
4029                     errno = errkid;             /* Propagate errno from kid */
4030                     STATUS_NATIVE_CHILD_SET(-1);
4031                 }
4032             }
4033             XPUSHi(STATUS_CURRENT);
4034             RETURN;
4035         }
4036         if (did_pipes) {
4037             PerlLIO_close(pp[0]);
4038 #if defined(HAS_FCNTL) && defined(F_SETFD)
4039             fcntl(pp[1], F_SETFD, FD_CLOEXEC);
4040 #endif
4041         }
4042         if (PL_op->op_flags & OPf_STACKED) {
4043             SV * const really = *++MARK;
4044             value = (I32)do_aexec5(really, MARK, SP, pp[1], did_pipes);
4045         }
4046         else if (SP - MARK != 1)
4047             value = (I32)do_aexec5(NULL, MARK, SP, pp[1], did_pipes);
4048         else {
4049             value = (I32)do_exec3(SvPVx_nolen(sv_mortalcopy(*SP)), pp[1], did_pipes);
4050         }
4051         PerlProc__exit(-1);
4052     }
4053 #else /* ! FORK or VMS or OS/2 */
4054     PL_statusvalue = 0;
4055     result = 0;
4056     if (PL_op->op_flags & OPf_STACKED) {
4057         SV * const really = *++MARK;
4058 #  if defined(WIN32) || defined(OS2) || defined(__SYMBIAN32__)
4059         value = (I32)do_aspawn(really, MARK, SP);
4060 #  else
4061         value = (I32)do_aspawn(really, (void **)MARK, (void **)SP);
4062 #  endif
4063     }
4064     else if (SP - MARK != 1) {
4065 #  if defined(WIN32) || defined(OS2) || defined(__SYMBIAN32__)
4066         value = (I32)do_aspawn(NULL, MARK, SP);
4067 #  else
4068         value = (I32)do_aspawn(NULL, (void **)MARK, (void **)SP);
4069 #  endif
4070     }
4071     else {
4072         value = (I32)do_spawn(SvPVx_nolen(sv_mortalcopy(*SP)));
4073     }
4074     if (PL_statusvalue == -1)   /* hint that value must be returned as is */
4075         result = 1;
4076     STATUS_NATIVE_CHILD_SET(value);
4077     do_execfree();
4078     SP = ORIGMARK;
4079     XPUSHi(result ? value : STATUS_CURRENT);
4080 #endif /* !FORK or VMS */
4081     RETURN;
4082 }
4083
4084 PP(pp_exec)
4085 {
4086     dVAR; dSP; dMARK; dORIGMARK; dTARGET;
4087     I32 value;
4088
4089     if (PL_tainting) {
4090         TAINT_ENV();
4091         while (++MARK <= SP) {
4092             (void)SvPV_nolen_const(*MARK);      /* stringify for taint check */
4093             if (PL_tainted)
4094                 break;
4095         }
4096         MARK = ORIGMARK;
4097         TAINT_PROPER("exec");
4098     }
4099     PERL_FLUSHALL_FOR_CHILD;
4100     if (PL_op->op_flags & OPf_STACKED) {
4101         SV * const really = *++MARK;
4102         value = (I32)do_aexec(really, MARK, SP);
4103     }
4104     else if (SP - MARK != 1)
4105 #ifdef VMS
4106         value = (I32)vms_do_aexec(NULL, MARK, SP);
4107 #else
4108 #  ifdef __OPEN_VM
4109         {
4110            (void ) do_aspawn(NULL, MARK, SP);
4111            value = 0;
4112         }
4113 #  else
4114         value = (I32)do_aexec(NULL, MARK, SP);
4115 #  endif
4116 #endif
4117     else {
4118 #ifdef VMS
4119         value = (I32)vms_do_exec(SvPVx_nolen(sv_mortalcopy(*SP)));
4120 #else
4121 #  ifdef __OPEN_VM
4122         (void) do_spawn(SvPVx_nolen(sv_mortalcopy(*SP)));
4123         value = 0;
4124 #  else
4125         value = (I32)do_exec(SvPVx_nolen(sv_mortalcopy(*SP)));
4126 #  endif
4127 #endif
4128     }
4129
4130     SP = ORIGMARK;
4131     XPUSHi(value);
4132     RETURN;
4133 }
4134
4135 PP(pp_getppid)
4136 {
4137 #ifdef HAS_GETPPID
4138     dVAR; dSP; dTARGET;
4139 #   ifdef THREADS_HAVE_PIDS
4140     if (PL_ppid != 1 && getppid() == 1)
4141         /* maybe the parent process has died. Refresh ppid cache */
4142         PL_ppid = 1;
4143     XPUSHi( PL_ppid );
4144 #   else
4145     XPUSHi( getppid() );
4146 #   endif
4147     RETURN;
4148 #else
4149     DIE(aTHX_ PL_no_func, "getppid");
4150 #endif
4151 }
4152
4153 PP(pp_getpgrp)
4154 {
4155 #ifdef HAS_GETPGRP
4156     dVAR; dSP; dTARGET;
4157     Pid_t pgrp;
4158     const Pid_t pid = (MAXARG < 1) ? 0 : SvIVx(POPs);
4159
4160 #ifdef BSD_GETPGRP
4161     pgrp = (I32)BSD_GETPGRP(pid);
4162 #else
4163     if (pid != 0 && pid != PerlProc_getpid())
4164         DIE(aTHX_ "POSIX getpgrp can't take an argument");
4165     pgrp = getpgrp();
4166 #endif
4167     XPUSHi(pgrp);
4168     RETURN;
4169 #else
4170     DIE(aTHX_ PL_no_func, "getpgrp()");
4171 #endif
4172 }
4173
4174 PP(pp_setpgrp)
4175 {
4176 #ifdef HAS_SETPGRP
4177     dVAR; dSP; dTARGET;
4178     Pid_t pgrp;
4179     Pid_t pid;
4180     if (MAXARG < 2) {
4181         pgrp = 0;
4182         pid = 0;
4183     }
4184     else {
4185         pgrp = POPi;
4186         pid = TOPi;
4187     }
4188
4189     TAINT_PROPER("setpgrp");
4190 #ifdef BSD_SETPGRP
4191     SETi( BSD_SETPGRP(pid, pgrp) >= 0 );
4192 #else
4193     if ((pgrp != 0 && pgrp != PerlProc_getpid())
4194         || (pid != 0 && pid != PerlProc_getpid()))
4195     {
4196         DIE(aTHX_ "setpgrp can't take arguments");
4197     }
4198     SETi( setpgrp() >= 0 );
4199 #endif /* USE_BSDPGRP */
4200     RETURN;
4201 #else
4202     DIE(aTHX_ PL_no_func, "setpgrp()");
4203 #endif
4204 }
4205
4206 PP(pp_getpriority)
4207 {
4208 #ifdef HAS_GETPRIORITY
4209     dVAR; dSP; dTARGET;
4210     const int who = POPi;
4211     const int which = TOPi;
4212     SETi( getpriority(which, who) );
4213     RETURN;
4214 #else
4215     DIE(aTHX_ PL_no_func, "getpriority()");
4216 #endif
4217 }
4218
4219 PP(pp_setpriority)
4220 {
4221 #ifdef HAS_SETPRIORITY
4222     dVAR; dSP; dTARGET;
4223     const int niceval = POPi;
4224     const int who = POPi;
4225     const int which = TOPi;
4226     TAINT_PROPER("setpriority");
4227     SETi( setpriority(which, who, niceval) >= 0 );
4228     RETURN;
4229 #else
4230     DIE(aTHX_ PL_no_func, "setpriority()");
4231 #endif
4232 }
4233
4234 /* Time calls. */
4235
4236 PP(pp_time)
4237 {
4238     dVAR; dSP; dTARGET;
4239 #ifdef BIG_TIME
4240     XPUSHn( time(NULL) );
4241 #else
4242     XPUSHi( time(NULL) );
4243 #endif
4244     RETURN;
4245 }
4246
4247 PP(pp_tms)
4248 {
4249 #ifdef HAS_TIMES
4250     dVAR;
4251     dSP;
4252     EXTEND(SP, 4);
4253 #ifndef VMS
4254     (void)PerlProc_times(&PL_timesbuf);
4255 #else
4256     (void)PerlProc_times((tbuffer_t *)&PL_timesbuf);  /* time.h uses different name for */
4257                                                    /* struct tms, though same data   */
4258                                                    /* is returned.                   */
4259 #endif
4260
4261     PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_utime)/(NV)PL_clocktick)));
4262     if (GIMME == G_ARRAY) {
4263         PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_stime)/(NV)PL_clocktick)));
4264         PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_cutime)/(NV)PL_clocktick)));
4265         PUSHs(sv_2mortal(newSVnv(((NV)PL_timesbuf.tms_cstime)/(NV)PL_clocktick)));
4266     }
4267     RETURN;
4268 #else
4269 #   ifdef PERL_MICRO
4270     dSP;
4271     PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4272     EXTEND(SP, 4);
4273     if (GIMME == G_ARRAY) {
4274          PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4275          PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4276          PUSHs(sv_2mortal(newSVnv((NV)0.0)));
4277     }
4278     RETURN;
4279 #   else
4280     DIE(aTHX_ "times not implemented");
4281 #   endif
4282 #endif /* HAS_TIMES */
4283 }
4284
4285 #ifdef LOCALTIME_EDGECASE_BROKEN
4286 static struct tm *S_my_localtime (pTHX_ Time_t *tp)
4287 {
4288     auto time_t     T;
4289     auto struct tm *P;
4290
4291     /* No workarounds in the valid range */
4292     if (!tp || *tp < 0x7fff573f || *tp >= 0x80000000)
4293         return (localtime (tp));
4294
4295     /* This edge case is to workaround the undefined behaviour, where the
4296      * TIMEZONE makes the time go beyond the defined range.
4297      * gmtime (0x7fffffff) => 2038-01-19 03:14:07
4298      * If there is a negative offset in TZ, like MET-1METDST, some broken
4299      * implementations of localtime () (like AIX 5.2) barf with bogus
4300      * return values:
4301      * 0x7fffffff gmtime               2038-01-19 03:14:07
4302      * 0x7fffffff localtime            1901-12-13 21:45:51
4303      * 0x7fffffff mylocaltime          2038-01-19 04:14:07
4304      * 0x3c19137f gmtime               2001-12-13 20:45:51
4305      * 0x3c19137f localtime            2001-12-13 21:45:51
4306      * 0x3c19137f mylocaltime          2001-12-13 21:45:51
4307      * Given that legal timezones are typically between GMT-12 and GMT+12
4308      * we turn back the clock 23 hours before calling the localtime
4309      * function, and add those to the return value. This will never cause
4310      * day wrapping problems, since the edge case is Tue Jan *19*
4311      */
4312     T = *tp - 82800; /* 23 hour. allows up to GMT-23 */
4313     P = localtime (&T);
4314     P->tm_hour += 23;
4315     if (P->tm_hour >= 24) {
4316         P->tm_hour -= 24;
4317         P->tm_mday++;   /* 18  -> 19  */
4318         P->tm_wday++;   /* Mon -> Tue */
4319         P->tm_yday++;   /* 18  -> 19  */
4320     }
4321     return (P);
4322 } /* S_my_localtime */
4323 #endif
4324
4325 PP(pp_gmtime)
4326 {
4327     dVAR;
4328     dSP;
4329     Time_t when;
4330     const struct tm *tmbuf;
4331     static const char * const dayname[] =
4332         {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
4333     static const char * const monname[] =
4334         {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
4335          "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
4336
4337     if (MAXARG < 1)
4338         (void)time(&when);
4339     else
4340 #ifdef BIG_TIME
4341         when = (Time_t)SvNVx(POPs);
4342 #else
4343         when = (Time_t)SvIVx(POPs);
4344 #endif
4345
4346     if (PL_op->op_type == OP_LOCALTIME)
4347 #ifdef LOCALTIME_EDGECASE_BROKEN
4348         tmbuf = S_my_localtime(aTHX_ &when);
4349 #else
4350         tmbuf = localtime(&when);
4351 #endif
4352     else
4353         tmbuf = gmtime(&when);
4354
4355     if (GIMME != G_ARRAY) {
4356         SV *tsv;
4357         EXTEND(SP, 1);
4358         EXTEND_MORTAL(1);
4359         if (!tmbuf)
4360             RETPUSHUNDEF;
4361         tsv = Perl_newSVpvf(aTHX_ "%s %s %2d %02d:%02d:%02d %d",
4362                             dayname[tmbuf->tm_wday],
4363                             monname[tmbuf->tm_mon],
4364                             tmbuf->tm_mday,
4365                             tmbuf->tm_hour,
4366                             tmbuf->tm_min,
4367                             tmbuf->tm_sec,
4368                             tmbuf->tm_year + 1900);
4369         PUSHs(sv_2mortal(tsv));
4370     }
4371     else if (tmbuf) {
4372         EXTEND(SP, 9);
4373         EXTEND_MORTAL(9);
4374         PUSHs(sv_2mortal(newSViv(tmbuf->tm_sec)));
4375         PUSHs(sv_2mortal(newSViv(tmbuf->tm_min)));
4376         PUSHs(sv_2mortal(newSViv(tmbuf->tm_hour)));
4377         PUSHs(sv_2mortal(newSViv(tmbuf->tm_mday)));
4378         PUSHs(sv_2mortal(newSViv(tmbuf->tm_mon)));
4379         PUSHs(sv_2mortal(newSViv(tmbuf->tm_year)));
4380         PUSHs(sv_2mortal(newSViv(tmbuf->tm_wday)));
4381         PUSHs(sv_2mortal(newSViv(tmbuf->tm_yday)));
4382         PUSHs(sv_2mortal(newSViv(tmbuf->tm_isdst)));
4383     }
4384     RETURN;
4385 }
4386
4387 PP(pp_alarm)
4388 {
4389 #ifdef HAS_ALARM
4390     dVAR; dSP; dTARGET;
4391     int anum;
4392     anum = POPi;
4393     anum = alarm((unsigned int)anum);
4394     EXTEND(SP, 1);
4395     if (anum < 0)
4396         RETPUSHUNDEF;
4397     PUSHi(anum);
4398     RETURN;
4399 #else
4400     DIE(aTHX_ PL_no_func, "alarm");
4401 #endif
4402 }
4403
4404 PP(pp_sleep)
4405 {
4406     dVAR; dSP; dTARGET;
4407     I32 duration;
4408     Time_t lasttime;
4409     Time_t when;
4410
4411     (void)time(&lasttime);
4412     if (MAXARG < 1)
4413         PerlProc_pause();
4414     else {
4415         duration = POPi;
4416         PerlProc_sleep((unsigned int)duration);
4417     }
4418     (void)time(&when);
4419     XPUSHi(when - lasttime);
4420     RETURN;
4421 }
4422
4423 /* Shared memory. */
4424 /* Merged with some message passing. */
4425
4426 PP(pp_shmwrite)
4427 {
4428 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4429     dVAR; dSP; dMARK; dTARGET;
4430     const int op_type = PL_op->op_type;
4431     I32 value;
4432
4433     switch (op_type) {
4434     case OP_MSGSND:
4435         value = (I32)(do_msgsnd(MARK, SP) >= 0);
4436         break;
4437     case OP_MSGRCV:
4438         value = (I32)(do_msgrcv(MARK, SP) >= 0);
4439         break;
4440     case OP_SEMOP:
4441         value = (I32)(do_semop(MARK, SP) >= 0);
4442         break;
4443     default:
4444         value = (I32)(do_shmio(op_type, MARK, SP) >= 0);
4445         break;
4446     }
4447
4448     SP = MARK;
4449     PUSHi(value);
4450     RETURN;
4451 #else
4452     return pp_semget();
4453 #endif
4454 }
4455
4456 /* Semaphores. */
4457
4458 PP(pp_semget)
4459 {
4460 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4461     dVAR; dSP; dMARK; dTARGET;
4462     const int anum = do_ipcget(PL_op->op_type, MARK, SP);
4463     SP = MARK;
4464     if (anum == -1)
4465         RETPUSHUNDEF;
4466     PUSHi(anum);
4467     RETURN;
4468 #else
4469     DIE(aTHX_ "System V IPC is not implemented on this machine");
4470 #endif
4471 }
4472
4473 PP(pp_semctl)
4474 {
4475 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4476     dVAR; dSP; dMARK; dTARGET;
4477     const int anum = do_ipcctl(PL_op->op_type, MARK, SP);
4478     SP = MARK;
4479     if (anum == -1)
4480         RETSETUNDEF;
4481     if (anum != 0) {
4482         PUSHi(anum);
4483     }
4484     else {
4485         PUSHp(zero_but_true, ZBTLEN);
4486     }
4487     RETURN;
4488 #else
4489     return pp_semget();
4490 #endif
4491 }
4492
4493 /* I can't const this further without getting warnings about the types of
4494    various arrays passed in from structures.  */
4495 static SV *
4496 S_space_join_names_mortal(pTHX_ char *const *array)
4497 {
4498     SV *target;
4499
4500     if (array && *array) {
4501         target = sv_2mortal(newSVpvs(""));
4502         while (1) {
4503             sv_catpv(target, *array);
4504             if (!*++array)
4505                 break;
4506             sv_catpvs(target, " ");
4507         }
4508     } else {
4509         target = sv_mortalcopy(&PL_sv_no);
4510     }
4511     return target;
4512 }
4513
4514 /* Get system info. */
4515
4516 PP(pp_ghostent)
4517 {
4518 #if defined(HAS_GETHOSTBYNAME) || defined(HAS_GETHOSTBYADDR) || defined(HAS_GETHOSTENT)
4519     dVAR; dSP;
4520     I32 which = PL_op->op_type;
4521     register char **elem;
4522     register SV *sv;
4523 #ifndef HAS_GETHOST_PROTOS /* XXX Do we need individual probes? */
4524     struct hostent *gethostbyaddr(Netdb_host_t, Netdb_hlen_t, int);
4525     struct hostent *gethostbyname(Netdb_name_t);
4526     struct hostent *gethostent(void);
4527 #endif
4528     struct hostent *hent;
4529     unsigned long len;
4530
4531     EXTEND(SP, 10);
4532     if (which == OP_GHBYNAME) {
4533 #ifdef HAS_GETHOSTBYNAME
4534         const char* const name = POPpbytex;
4535         hent = PerlSock_gethostbyname(name);
4536 #else
4537         DIE(aTHX_ PL_no_sock_func, "gethostbyname");
4538 #endif
4539     }
4540     else if (which == OP_GHBYADDR) {
4541 #ifdef HAS_GETHOSTBYADDR
4542         const int addrtype = POPi;
4543         SV * const addrsv = POPs;
4544         STRLEN addrlen;
4545         Netdb_host_t addr = (Netdb_host_t) SvPVbyte(addrsv, addrlen);
4546
4547         hent = PerlSock_gethostbyaddr(addr, (Netdb_hlen_t) addrlen, addrtype);
4548 #else
4549         DIE(aTHX_ PL_no_sock_func, "gethostbyaddr");
4550 #endif
4551     }
4552     else
4553 #ifdef HAS_GETHOSTENT
4554         hent = PerlSock_gethostent();
4555 #else
4556         DIE(aTHX_ PL_no_sock_func, "gethostent");
4557 #endif
4558
4559 #ifdef HOST_NOT_FOUND
4560         if (!hent) {
4561 #ifdef USE_REENTRANT_API
4562 #   ifdef USE_GETHOSTENT_ERRNO
4563             h_errno = PL_reentrant_buffer->_gethostent_errno;
4564 #   endif
4565 #endif
4566             STATUS_UNIX_SET(h_errno);
4567         }
4568 #endif
4569
4570     if (GIMME != G_ARRAY) {
4571         PUSHs(sv = sv_newmortal());
4572         if (hent) {
4573             if (which == OP_GHBYNAME) {
4574                 if (hent->h_addr)
4575                     sv_setpvn(sv, hent->h_addr, hent->h_length);
4576             }
4577             else
4578                 sv_setpv(sv, (char*)hent->h_name);
4579         }
4580         RETURN;
4581     }
4582
4583     if (hent) {
4584         PUSHs(sv_2mortal(newSVpv((char*)hent->h_name, 0)));
4585         PUSHs(S_space_join_names_mortal(aTHX_ hent->h_aliases));
4586         PUSHs(sv_2mortal(newSViv((IV)hent->h_addrtype)));
4587         len = hent->h_length;
4588         PUSHs(sv_2mortal(newSViv((IV)len)));
4589 #ifdef h_addr
4590         for (elem = hent->h_addr_list; elem && *elem; elem++) {
4591             XPUSHs(sv_2mortal(newSVpvn(*elem, len)));
4592         }
4593 #else
4594         if (hent->h_addr)
4595             PUSHs(newSVpvn(hent->h_addr, len));
4596         else
4597             PUSHs(sv_mortalcopy(&PL_sv_no));
4598 #endif /* h_addr */
4599     }
4600     RETURN;
4601 #else
4602     DIE(aTHX_ PL_no_sock_func, "gethostent");
4603 #endif
4604 }
4605
4606 PP(pp_gnetent)
4607 {
4608 #if defined(HAS_GETNETBYNAME) || defined(HAS_GETNETBYADDR) || defined(HAS_GETNETENT)
4609     dVAR; dSP;
4610     I32 which = PL_op->op_type;
4611     register SV *sv;
4612 #ifndef HAS_GETNET_PROTOS /* XXX Do we need individual probes? */
4613     struct netent *getnetbyaddr(Netdb_net_t, int);
4614     struct netent *getnetbyname(Netdb_name_t);
4615     struct netent *getnetent(void);
4616 #endif
4617     struct netent *nent;
4618
4619     if (which == OP_GNBYNAME){
4620 #ifdef HAS_GETNETBYNAME
4621         const char * const name = POPpbytex;
4622         nent = PerlSock_getnetbyname(name);
4623 #else
4624         DIE(aTHX_ PL_no_sock_func, "getnetbyname");
4625 #endif
4626     }
4627     else if (which == OP_GNBYADDR) {
4628 #ifdef HAS_GETNETBYADDR
4629         const int addrtype = POPi;
4630         const Netdb_net_t addr = (Netdb_net_t) (U32)POPu;
4631         nent = PerlSock_getnetbyaddr(addr, addrtype);
4632 #else
4633         DIE(aTHX_ PL_no_sock_func, "getnetbyaddr");
4634 #endif
4635     }
4636     else
4637 #ifdef HAS_GETNETENT
4638         nent = PerlSock_getnetent();
4639 #else
4640         DIE(aTHX_ PL_no_sock_func, "getnetent");
4641 #endif
4642
4643 #ifdef HOST_NOT_FOUND
4644         if (!nent) {
4645 #ifdef USE_REENTRANT_API
4646 #   ifdef USE_GETNETENT_ERRNO
4647              h_errno = PL_reentrant_buffer->_getnetent_errno;
4648 #   endif
4649 #endif
4650             STATUS_UNIX_SET(h_errno);
4651         }
4652 #endif
4653
4654     EXTEND(SP, 4);
4655     if (GIMME != G_ARRAY) {
4656         PUSHs(sv = sv_newmortal());
4657         if (nent) {
4658             if (which == OP_GNBYNAME)
4659                 sv_setiv(sv, (IV)nent->n_net);
4660             else
4661                 sv_setpv(sv, nent->n_name);
4662         }
4663         RETURN;
4664     }
4665
4666     if (nent) {
4667         PUSHs(sv_2mortal(newSVpv(nent->n_name, 0)));
4668         PUSHs(S_space_join_names_mortal(aTHX_ nent->n_aliases));
4669         PUSHs(sv_2mortal(newSViv((IV)nent->n_addrtype)));
4670         PUSHs(sv_2mortal(newSViv((IV)nent->n_net)));
4671     }
4672
4673     RETURN;
4674 #else
4675     DIE(aTHX_ PL_no_sock_func, "getnetent");
4676 #endif
4677 }
4678
4679 PP(pp_gprotoent)
4680 {
4681 #if defined(HAS_GETPROTOBYNAME) || defined(HAS_GETPROTOBYNUMBER) || defined(HAS_GETPROTOENT)
4682     dVAR; dSP;
4683     I32 which = PL_op->op_type;
4684     register SV *sv;
4685 #ifndef HAS_GETPROTO_PROTOS /* XXX Do we need individual probes? */
4686     struct protoent *getprotobyname(Netdb_name_t);
4687     struct protoent *getprotobynumber(int);
4688     struct protoent *getprotoent(void);
4689 #endif
4690     struct protoent *pent;
4691
4692     if (which == OP_GPBYNAME) {
4693 #ifdef HAS_GETPROTOBYNAME
4694         const char* const name = POPpbytex;
4695         pent = PerlSock_getprotobyname(name);
4696 #else
4697         DIE(aTHX_ PL_no_sock_func, "getprotobyname");
4698 #endif
4699     }
4700     else if (which == OP_GPBYNUMBER) {
4701 #ifdef HAS_GETPROTOBYNUMBER
4702         const int number = POPi;
4703         pent = PerlSock_getprotobynumber(number);
4704 #else
4705         DIE(aTHX_ PL_no_sock_func, "getprotobynumber");
4706 #endif
4707     }
4708     else
4709 #ifdef HAS_GETPROTOENT
4710         pent = PerlSock_getprotoent();
4711 #else
4712         DIE(aTHX_ PL_no_sock_func, "getprotoent");
4713 #endif
4714
4715     EXTEND(SP, 3);
4716     if (GIMME != G_ARRAY) {
4717         PUSHs(sv = sv_newmortal());
4718         if (pent) {
4719             if (which == OP_GPBYNAME)
4720                 sv_setiv(sv, (IV)pent->p_proto);
4721             else
4722                 sv_setpv(sv, pent->p_name);
4723         }
4724         RETURN;
4725     }
4726
4727     if (pent) {
4728         PUSHs(sv_2mortal(newSVpv(pent->p_name, 0)));
4729         PUSHs(S_space_join_names_mortal(aTHX_ pent->p_aliases));
4730         PUSHs(sv_2mortal(newSViv((IV)pent->p_proto)));
4731     }
4732
4733     RETURN;
4734 #else
4735     DIE(aTHX_ PL_no_sock_func, "getprotoent");
4736 #endif
4737 }
4738
4739 PP(pp_gservent)
4740 {
4741 #if defined(HAS_GETSERVBYNAME) || defined(HAS_GETSERVBYPORT) || defined(HAS_GETSERVENT)
4742     dVAR; dSP;
4743     I32 which = PL_op->op_type;
4744     register SV *sv;
4745 #ifndef HAS_GETSERV_PROTOS /* XXX Do we need individual probes? */
4746     struct servent *getservbyname(Netdb_name_t, Netdb_name_t);
4747     struct servent *getservbyport(int, Netdb_name_t);
4748     struct servent *getservent(void);
4749 #endif
4750     struct servent *sent;
4751
4752     if (which == OP_GSBYNAME) {
4753 #ifdef HAS_GETSERVBYNAME
4754         const char * const proto = POPpbytex;
4755         const char * const name = POPpbytex;
4756         sent = PerlSock_getservbyname(name, (proto && !*proto) ? NULL : proto);
4757 #else
4758         DIE(aTHX_ PL_no_sock_func, "getservbyname");
4759 #endif
4760     }
4761     else if (which == OP_GSBYPORT) {
4762 #ifdef HAS_GETSERVBYPORT
4763         const char * const proto = POPpbytex;
4764         unsigned short port = (unsigned short)POPu;
4765 #ifdef HAS_HTONS
4766         port = PerlSock_htons(port);
4767 #endif
4768         sent = PerlSock_getservbyport(port, (proto && !*proto) ? NULL : proto);
4769 #else
4770         DIE(aTHX_ PL_no_sock_func, "getservbyport");
4771 #endif
4772     }
4773     else
4774 #ifdef HAS_GETSERVENT
4775         sent = PerlSock_getservent();
4776 #else
4777         DIE(aTHX_ PL_no_sock_func, "getservent");
4778 #endif
4779
4780     EXTEND(SP, 4);
4781     if (GIMME != G_ARRAY) {
4782         PUSHs(sv = sv_newmortal());
4783         if (sent) {
4784             if (which == OP_GSBYNAME) {
4785 #ifdef HAS_NTOHS
4786                 sv_setiv(sv, (IV)PerlSock_ntohs(sent->s_port));
4787 #else
4788                 sv_setiv(sv, (IV)(sent->s_port));
4789 #endif
4790             }
4791             else
4792                 sv_setpv(sv, sent->s_name);
4793         }
4794         RETURN;
4795     }
4796
4797     if (sent) {
4798         PUSHs(sv_2mortal(newSVpv(sent->s_name, 0)));
4799         PUSHs(S_space_join_names_mortal(aTHX_ sent->s_aliases));
4800 #ifdef HAS_NTOHS
4801         PUSHs(sv_2mortal(newSViv((IV)PerlSock_ntohs(sent->s_port))));
4802 #else
4803         PUSHs(sv_2mortal(newSViv((IV)(sent->s_port))));
4804 #endif
4805         PUSHs(sv_2mortal(newSVpv(sent->s_proto, 0)));
4806     }
4807
4808     RETURN;
4809 #else
4810     DIE(aTHX_ PL_no_sock_func, "getservent");
4811 #endif
4812 }
4813
4814 PP(pp_shostent)
4815 {
4816 #ifdef HAS_SETHOSTENT
4817     dVAR; dSP;
4818     PerlSock_sethostent(TOPi);
4819     RETSETYES;
4820 #else
4821     DIE(aTHX_ PL_no_sock_func, "sethostent");
4822 #endif
4823 }
4824
4825 PP(pp_snetent)
4826 {
4827 #ifdef HAS_SETNETENT
4828     dVAR; dSP;
4829     PerlSock_setnetent(TOPi);
4830     RETSETYES;
4831 #else
4832     DIE(aTHX_ PL_no_sock_func, "setnetent");
4833 #endif
4834 }
4835
4836 PP(pp_sprotoent)
4837 {
4838 #ifdef HAS_SETPROTOENT
4839     dVAR; dSP;
4840     PerlSock_setprotoent(TOPi);
4841     RETSETYES;
4842 #else
4843     DIE(aTHX_ PL_no_sock_func, "setprotoent");
4844 #endif
4845 }
4846
4847 PP(pp_sservent)
4848 {
4849 #ifdef HAS_SETSERVENT
4850     dVAR; dSP;
4851     PerlSock_setservent(TOPi);
4852     RETSETYES;
4853 #else
4854     DIE(aTHX_ PL_no_sock_func, "setservent");
4855 #endif
4856 }
4857
4858 PP(pp_ehostent)
4859 {
4860 #ifdef HAS_ENDHOSTENT
4861     dVAR; dSP;
4862     PerlSock_endhostent();
4863     EXTEND(SP,1);
4864     RETPUSHYES;
4865 #else
4866     DIE(aTHX_ PL_no_sock_func, "endhostent");
4867 #endif
4868 }
4869
4870 PP(pp_enetent)
4871 {
4872 #ifdef HAS_ENDNETENT
4873     dVAR; dSP;
4874     PerlSock_endnetent();
4875     EXTEND(SP,1);
4876     RETPUSHYES;
4877 #else
4878     DIE(aTHX_ PL_no_sock_func, "endnetent");
4879 #endif
4880 }
4881
4882 PP(pp_eprotoent)
4883 {
4884 #ifdef HAS_ENDPROTOENT
4885     dVAR; dSP;
4886     PerlSock_endprotoent();
4887     EXTEND(SP,1);
4888     RETPUSHYES;
4889 #else
4890     DIE(aTHX_ PL_no_sock_func, "endprotoent");
4891 #endif
4892 }
4893
4894 PP(pp_eservent)
4895 {
4896 #ifdef HAS_ENDSERVENT
4897     dVAR; dSP;
4898     PerlSock_endservent();
4899     EXTEND(SP,1);
4900     RETPUSHYES;
4901 #else
4902     DIE(aTHX_ PL_no_sock_func, "endservent");
4903 #endif
4904 }
4905
4906 PP(pp_gpwent)
4907 {
4908 #ifdef HAS_PASSWD
4909     dVAR; dSP;
4910     I32 which = PL_op->op_type;
4911     register SV *sv;
4912     struct passwd *pwent  = NULL;
4913     /*
4914      * We currently support only the SysV getsp* shadow password interface.
4915      * The interface is declared in <shadow.h> and often one needs to link
4916      * with -lsecurity or some such.
4917      * This interface is used at least by Solaris, HP-UX, IRIX, and Linux.
4918      * (and SCO?)
4919      *
4920      * AIX getpwnam() is clever enough to return the encrypted password
4921      * only if the caller (euid?) is root.
4922      *
4923      * There are at least three other shadow password APIs.  Many platforms
4924      * seem to contain more than one interface for accessing the shadow
4925      * password databases, possibly for compatibility reasons.
4926      * The getsp*() is by far he simplest one, the other two interfaces
4927      * are much more complicated, but also very similar to each other.
4928      *
4929      * <sys/types.h>
4930      * <sys/security.h>
4931      * <prot.h>
4932      * struct pr_passwd *getprpw*();
4933      * The password is in
4934      * char getprpw*(...).ufld.fd_encrypt[]
4935      * Mention HAS_GETPRPWNAM here so that Configure probes for it.
4936      *
4937      * <sys/types.h>
4938      * <sys/security.h>
4939      * <prot.h>
4940      * struct es_passwd *getespw*();
4941      * The password is in
4942      * char *(getespw*(...).ufld.fd_encrypt)
4943      * Mention HAS_GETESPWNAM here so that Configure probes for it.
4944      *
4945      * <userpw.h> (AIX)
4946      * struct userpw *getuserpw();
4947      * The password is in
4948      * char *(getuserpw(...)).spw_upw_passwd
4949      * (but the de facto standard getpwnam() should work okay)
4950      *
4951      * Mention I_PROT here so that Configure probes for it.
4952      *
4953      * In HP-UX for getprpw*() the manual page claims that one should include
4954      * <hpsecurity.h> instead of <sys/security.h>, but that is not needed
4955      * if one includes <shadow.h> as that includes <hpsecurity.h>,
4956      * and pp_sys.c already includes <shadow.h> if there is such.
4957      *
4958      * Note that <sys/security.h> is already probed for, but currently
4959      * it is only included in special cases.
4960      *
4961      * In Digital UNIX/Tru64 if using the getespw*() (which seems to be
4962      * be preferred interface, even though also the getprpw*() interface
4963      * is available) one needs to link with -lsecurity -ldb -laud -lm.
4964      * One also needs to call set_auth_parameters() in main() before
4965      * doing anything else, whether one is using getespw*() or getprpw*().
4966      *
4967      * Note that accessing the shadow databases can be magnitudes
4968      * slower than accessing the standard databases.
4969      *
4970      * --jhi
4971      */
4972
4973 #   if defined(__CYGWIN__) && defined(USE_REENTRANT_API)
4974     /* Cygwin 1.5.3-1 has buggy getpwnam_r() and getpwuid_r():
4975      * the pw_comment is left uninitialized. */
4976     PL_reentrant_buffer->_pwent_struct.pw_comment = NULL;
4977 #   endif
4978
4979     switch (which) {
4980     case OP_GPWNAM:
4981       {
4982         const char* const name = POPpbytex;
4983         pwent  = getpwnam(name);
4984       }
4985       break;
4986     case OP_GPWUID:
4987       {
4988         Uid_t uid = POPi;
4989         pwent = getpwuid(uid);
4990       }
4991         break;
4992     case OP_GPWENT:
4993 #   ifdef HAS_GETPWENT
4994         pwent  = getpwent();
4995 #ifdef POSIX_BC   /* In some cases pw_passwd has invalid addresses */
4996         if (pwent) pwent = getpwnam(pwent->pw_name);
4997 #endif
4998 #   else
4999         DIE(aTHX_ PL_no_func, "getpwent");
5000 #   endif
5001         break;
5002     }
5003
5004     EXTEND(SP, 10);
5005     if (GIMME != G_ARRAY) {
5006         PUSHs(sv = sv_newmortal());
5007         if (pwent) {
5008             if (which == OP_GPWNAM)
5009 #   if Uid_t_sign <= 0
5010                 sv_setiv(sv, (IV)pwent->pw_uid);
5011 #   else
5012                 sv_setuv(sv, (UV)pwent->pw_uid);
5013 #   endif
5014             else
5015                 sv_setpv(sv, pwent->pw_name);
5016         }
5017         RETURN;
5018     }
5019
5020     if (pwent) {
5021         PUSHs(sv_2mortal(newSVpv(pwent->pw_name, 0)));
5022
5023         PUSHs(sv = sv_2mortal(newSViv(0)));
5024         /* If we have getspnam(), we try to dig up the shadow
5025          * password.  If we are underprivileged, the shadow
5026          * interface will set the errno to EACCES or similar,
5027          * and return a null pointer.  If this happens, we will
5028          * use the dummy password (usually "*" or "x") from the
5029          * standard password database.
5030          *
5031          * In theory we could skip the shadow call completely
5032          * if euid != 0 but in practice we cannot know which
5033          * security measures are guarding the shadow databases
5034          * on a random platform.
5035          *
5036          * Resist the urge to use additional shadow interfaces.
5037          * Divert the urge to writing an extension instead.
5038          *
5039          * --jhi */
5040         /* Some AIX setups falsely(?) detect some getspnam(), which
5041          * has a different API than the Solaris/IRIX one. */
5042 #   if defined(HAS_GETSPNAM) && !defined(_AIX)
5043         {
5044             const int saverrno = errno;
5045             const struct spwd * const spwent = getspnam(pwent->pw_name);
5046                           /* Save and restore errno so that
5047                            * underprivileged attempts seem
5048                            * to have never made the unsccessful
5049                            * attempt to retrieve the shadow password. */
5050             errno = saverrno;
5051             if (spwent && spwent->sp_pwdp)
5052                 sv_setpv(sv, spwent->sp_pwdp);
5053         }
5054 #   endif
5055 #   ifdef PWPASSWD
5056         if (!SvPOK(sv)) /* Use the standard password, then. */
5057             sv_setpv(sv, pwent->pw_passwd);
5058 #   endif
5059
5060 #   ifndef INCOMPLETE_TAINTS
5061         /* passwd is tainted because user himself can diddle with it.
5062          * admittedly not much and in a very limited way, but nevertheless. */
5063         SvTAINTED_on(sv);
5064 #   endif
5065
5066 #   if Uid_t_sign <= 0
5067         PUSHs(sv_2mortal(newSViv((IV)pwent->pw_uid)));
5068 #   else
5069         PUSHs(sv_2mortal(newSVuv((UV)pwent->pw_uid)));
5070 #   endif
5071
5072 #   if Uid_t_sign <= 0
5073         PUSHs(sv_2mortal(newSViv((IV)pwent->pw_gid)));
5074 #   else
5075         PUSHs(sv_2mortal(newSVuv((UV)pwent->pw_gid)));
5076 #   endif
5077         /* pw_change, pw_quota, and pw_age are mutually exclusive--
5078          * because of the poor interface of the Perl getpw*(),
5079          * not because there's some standard/convention saying so.
5080          * A better interface would have been to return a hash,
5081          * but we are accursed by our history, alas. --jhi.  */
5082 #   ifdef PWCHANGE
5083         PUSHs(sv_2mortal(newSViv((IV)pwent->pw_change)));
5084 #   else
5085 #       ifdef PWQUOTA
5086         PUSHs(sv_2mortal(newSViv((IV)pwent->pw_quota)));
5087 #       else
5088 #           ifdef PWAGE
5089         PUSHs(sv_2mortal(newSVpv(pwent->pw_age, 0)));
5090 #           else
5091         /* I think that you can never get this compiled, but just in case.  */
5092         PUSHs(sv_mortalcopy(&PL_sv_no));
5093 #           endif
5094 #       endif
5095 #   endif
5096
5097         /* pw_class and pw_comment are mutually exclusive--.
5098          * see the above note for pw_change, pw_quota, and pw_age. */
5099 #   ifdef PWCLASS
5100         PUSHs(sv_2mortal(newSVpv(pwent->pw_class, 0)));
5101 #   else
5102 #       ifdef PWCOMMENT
5103         PUSHs(sv_2mortal(newSVpv(pwent->pw_comment, 0)));
5104 #       else
5105         /* I think that you can never get this compiled, but just in case.  */
5106         PUSHs(sv_mortalcopy(&PL_sv_no));
5107 #       endif
5108 #   endif
5109
5110 #   ifdef PWGECOS
5111         PUSHs(sv = sv_2mortal(newSVpv(pwent->pw_gecos, 0)));
5112 #   else
5113         PUSHs(sv_mortalcopy(&PL_sv_no));
5114 #   endif
5115 #   ifndef INCOMPLETE_TAINTS
5116         /* pw_gecos is tainted because user himself can diddle with it. */
5117         SvTAINTED_on(sv);
5118 #   endif
5119
5120         PUSHs(sv_2mortal(newSVpv(pwent->pw_dir, 0)));
5121
5122         PUSHs(sv = sv_2mortal(newSVpv(pwent->pw_shell, 0)));
5123 #   ifndef INCOMPLETE_TAINTS
5124         /* pw_shell is tainted because user himself can diddle with it. */
5125         SvTAINTED_on(sv);
5126 #   endif
5127
5128 #   ifdef PWEXPIRE
5129         PUSHs(sv_2mortal(newSViv((IV)pwent->pw_expire)));
5130 #   endif
5131     }
5132     RETURN;
5133 #else
5134     DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5135 #endif
5136 }
5137
5138 PP(pp_spwent)
5139 {
5140 #if defined(HAS_PASSWD) && defined(HAS_SETPWENT)
5141     dVAR; dSP;
5142     setpwent();
5143     RETPUSHYES;
5144 #else
5145     DIE(aTHX_ PL_no_func, "setpwent");
5146 #endif
5147 }
5148
5149 PP(pp_epwent)
5150 {
5151 #if defined(HAS_PASSWD) && defined(HAS_ENDPWENT)
5152     dVAR; dSP;
5153     endpwent();
5154     RETPUSHYES;
5155 #else
5156     DIE(aTHX_ PL_no_func, "endpwent");
5157 #endif
5158 }
5159
5160 PP(pp_ggrent)
5161 {
5162 #ifdef HAS_GROUP
5163     dVAR; dSP;
5164     const I32 which = PL_op->op_type;
5165     const struct group *grent;
5166
5167     if (which == OP_GGRNAM) {
5168         const char* const name = POPpbytex;
5169         grent = (const struct group *)getgrnam(name);
5170     }
5171     else if (which == OP_GGRGID) {
5172         const Gid_t gid = POPi;
5173         grent = (const struct group *)getgrgid(gid);
5174     }
5175     else
5176 #ifdef HAS_GETGRENT
5177         grent = (struct group *)getgrent();
5178 #else
5179         DIE(aTHX_ PL_no_func, "getgrent");
5180 #endif
5181
5182     EXTEND(SP, 4);
5183     if (GIMME != G_ARRAY) {
5184         SV * const sv = sv_newmortal();
5185
5186         PUSHs(sv);
5187         if (grent) {
5188             if (which == OP_GGRNAM)
5189                 sv_setiv(sv, (IV)grent->gr_gid);
5190             else
5191                 sv_setpv(sv, grent->gr_name);
5192         }
5193         RETURN;
5194     }
5195
5196     if (grent) {
5197         SV *sv;
5198         PUSHs(sv_2mortal(newSVpv(grent->gr_name, 0)));
5199
5200 #ifdef GRPASSWD
5201         PUSHs(sv_2mortal(newSVpv(grent->gr_passwd, 0)));
5202 #else
5203         PUSHs(sv_mortalcopy(&PL_sv_no));
5204 #endif
5205
5206         PUSHs(sv_2mortal(newSViv((IV)grent->gr_gid)));
5207
5208 #if !(defined(_CRAYMPP) && defined(USE_REENTRANT_API))
5209         /* In UNICOS/mk (_CRAYMPP) the multithreading
5210          * versions (getgrnam_r, getgrgid_r)
5211          * seem to return an illegal pointer
5212          * as the group members list, gr_mem.
5213          * getgrent() doesn't even have a _r version
5214          * but the gr_mem is poisonous anyway.
5215          * So yes, you cannot get the list of group
5216          * members if building multithreaded in UNICOS/mk. */
5217         PUSHs(S_space_join_names_mortal(aTHX_ grent->gr_mem));
5218 #endif
5219     }
5220
5221     RETURN;
5222 #else
5223     DIE(aTHX_ PL_no_func, PL_op_desc[PL_op->op_type]);
5224 #endif
5225 }
5226
5227 PP(pp_sgrent)
5228 {
5229 #if defined(HAS_GROUP) && defined(HAS_SETGRENT)
5230     dVAR; dSP;
5231     setgrent();
5232     RETPUSHYES;
5233 #else
5234     DIE(aTHX_ PL_no_func, "setgrent");
5235 #endif
5236 }
5237
5238 PP(pp_egrent)
5239 {
5240 #if defined(HAS_GROUP) && defined(HAS_ENDGRENT)
5241     dVAR; dSP;
5242     endgrent();
5243     RETPUSHYES;
5244 #else
5245     DIE(aTHX_ PL_no_func, "endgrent");
5246 #endif
5247 }
5248
5249 PP(pp_getlogin)
5250 {
5251 #ifdef HAS_GETLOGIN
5252     dVAR; dSP; dTARGET;
5253     char *tmps;
5254     EXTEND(SP, 1);
5255     if (!(tmps = PerlProc_getlogin()))
5256         RETPUSHUNDEF;
5257     PUSHp(tmps, strlen(tmps));
5258     RETURN;
5259 #else
5260     DIE(aTHX_ PL_no_func, "getlogin");
5261 #endif
5262 }
5263
5264 /* Miscellaneous. */
5265
5266 PP(pp_syscall)
5267 {
5268 #ifdef HAS_SYSCALL
5269     dVAR; dSP; dMARK; dORIGMARK; dTARGET;
5270     register I32 items = SP - MARK;
5271     unsigned long a[20];
5272     register I32 i = 0;
5273     I32 retval = -1;
5274
5275     if (PL_tainting) {
5276         while (++MARK <= SP) {
5277             if (SvTAINTED(*MARK)) {
5278                 TAINT;
5279                 break;
5280             }
5281         }
5282         MARK = ORIGMARK;
5283         TAINT_PROPER("syscall");
5284     }
5285
5286     /* This probably won't work on machines where sizeof(long) != sizeof(int)
5287      * or where sizeof(long) != sizeof(char*).  But such machines will
5288      * not likely have syscall implemented either, so who cares?
5289      */
5290     while (++MARK <= SP) {
5291         if (SvNIOK(*MARK) || !i)
5292             a[i++] = SvIV(*MARK);
5293         else if (*MARK == &PL_sv_undef)
5294             a[i++] = 0;
5295         else
5296             a[i++] = (unsigned long)SvPV_force_nolen(*MARK);
5297         if (i > 15)
5298             break;
5299     }
5300     switch (items) {
5301     default:
5302         DIE(aTHX_ "Too many args to syscall");
5303     case 0:
5304         DIE(aTHX_ "Too few args to syscall");
5305     case 1:
5306         retval = syscall(a[0]);
5307         break;
5308     case 2:
5309         retval = syscall(a[0],a[1]);
5310         break;
5311     case 3:
5312         retval = syscall(a[0],a[1],a[2]);
5313         break;
5314     case 4:
5315         retval = syscall(a[0],a[1],a[2],a[3]);
5316         break;
5317     case 5:
5318         retval = syscall(a[0],a[1],a[2],a[3],a[4]);
5319         break;
5320     case 6:
5321         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5]);
5322         break;
5323     case 7:
5324         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6]);
5325         break;
5326     case 8:
5327         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7]);
5328         break;
5329 #ifdef atarist
5330     case 9:
5331         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8]);
5332         break;
5333     case 10:
5334         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9]);
5335         break;
5336     case 11:
5337         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9],
5338           a[10]);
5339         break;
5340     case 12:
5341         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9],
5342           a[10],a[11]);
5343         break;
5344     case 13:
5345         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9],
5346           a[10],a[11],a[12]);
5347         break;
5348     case 14:
5349         retval = syscall(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9],
5350           a[10],a[11],a[12],a[13]);
5351         break;
5352 #endif /* atarist */
5353     }
5354     SP = ORIGMARK;
5355     PUSHi(retval);
5356     RETURN;
5357 #else
5358     DIE(aTHX_ PL_no_func, "syscall");
5359 #endif
5360 }
5361
5362 #ifdef FCNTL_EMULATE_FLOCK
5363
5364 /*  XXX Emulate flock() with fcntl().
5365     What's really needed is a good file locking module.
5366 */
5367
5368 static int
5369 fcntl_emulate_flock(int fd, int operation)
5370 {
5371     struct flock flock;
5372
5373     switch (operation & ~LOCK_NB) {
5374     case LOCK_SH:
5375         flock.l_type = F_RDLCK;
5376         break;
5377     case LOCK_EX:
5378         flock.l_type = F_WRLCK;
5379         break;
5380     case LOCK_UN:
5381         flock.l_type = F_UNLCK;
5382         break;
5383     default:
5384         errno = EINVAL;
5385         return -1;
5386     }
5387     flock.l_whence = SEEK_SET;
5388     flock.l_start = flock.l_len = (Off_t)0;
5389
5390     return fcntl(fd, (operation & LOCK_NB) ? F_SETLK : F_SETLKW, &flock);
5391 }
5392
5393 #endif /* FCNTL_EMULATE_FLOCK */
5394
5395 #ifdef LOCKF_EMULATE_FLOCK
5396
5397 /*  XXX Emulate flock() with lockf().  This is just to increase
5398     portability of scripts.  The calls are not completely
5399     interchangeable.  What's really needed is a good file
5400     locking module.
5401 */
5402
5403 /*  The lockf() constants might have been defined in <unistd.h>.
5404     Unfortunately, <unistd.h> causes troubles on some mixed
5405     (BSD/POSIX) systems, such as SunOS 4.1.3.
5406
5407    Further, the lockf() constants aren't POSIX, so they might not be
5408    visible if we're compiling with _POSIX_SOURCE defined.  Thus, we'll
5409    just stick in the SVID values and be done with it.  Sigh.
5410 */
5411
5412 # ifndef F_ULOCK
5413 #  define F_ULOCK       0       /* Unlock a previously locked region */
5414 # endif
5415 # ifndef F_LOCK
5416 #  define F_LOCK        1       /* Lock a region for exclusive use */
5417 # endif
5418 # ifndef F_TLOCK
5419 #  define F_TLOCK       2       /* Test and lock a region for exclusive use */
5420 # endif
5421 # ifndef F_TEST
5422 #  define F_TEST        3       /* Test a region for other processes locks */
5423 # endif
5424
5425 static int
5426 lockf_emulate_flock(int fd, int operation)
5427 {
5428     int i;
5429     const int save_errno = errno;
5430     Off_t pos;
5431
5432     /* flock locks entire file so for lockf we need to do the same      */
5433     pos = PerlLIO_lseek(fd, (Off_t)0, SEEK_CUR);    /* get pos to restore later */
5434     if (pos > 0)        /* is seekable and needs to be repositioned     */
5435         if (PerlLIO_lseek(fd, (Off_t)0, SEEK_SET) < 0)
5436             pos = -1;   /* seek failed, so don't seek back afterwards   */
5437     errno = save_errno;
5438
5439     switch (operation) {
5440
5441         /* LOCK_SH - get a shared lock */
5442         case LOCK_SH:
5443         /* LOCK_EX - get an exclusive lock */
5444         case LOCK_EX:
5445             i = lockf (fd, F_LOCK, 0);
5446             break;
5447
5448         /* LOCK_SH|LOCK_NB - get a non-blocking shared lock */
5449         case LOCK_SH|LOCK_NB:
5450         /* LOCK_EX|LOCK_NB - get a non-blocking exclusive lock */
5451         case LOCK_EX|LOCK_NB:
5452             i = lockf (fd, F_TLOCK, 0);
5453             if (i == -1)
5454                 if ((errno == EAGAIN) || (errno == EACCES))
5455                     errno = EWOULDBLOCK;
5456             break;
5457
5458         /* LOCK_UN - unlock (non-blocking is a no-op) */
5459         case LOCK_UN:
5460         case LOCK_UN|LOCK_NB:
5461             i = lockf (fd, F_ULOCK, 0);
5462             break;
5463
5464         /* Default - can't decipher operation */
5465         default:
5466             i = -1;
5467             errno = EINVAL;
5468             break;
5469     }
5470
5471     if (pos > 0)      /* need to restore position of the handle */
5472         PerlLIO_lseek(fd, pos, SEEK_SET);       /* ignore error here    */
5473
5474     return (i);
5475 }
5476
5477 #endif /* LOCKF_EMULATE_FLOCK */
5478
5479 /*
5480  * Local variables:
5481  * c-indentation-style: bsd
5482  * c-basic-offset: 4
5483  * indent-tabs-mode: t
5484  * End:
5485  *
5486  * ex: set ts=8 sts=4 sw=4 noet:
5487  */