7a1eadd9b953de0d9e070621916d88c53d1c91f0
[p5sagit/p5-mst-13.2.git] / perl.c
1 /*    perl.c
2  *
3  *    Copyright (C) 1993, 1994, 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  * "A ship then new they built for him/of mithril and of elven glass" --Bilbo
13  */
14
15 /* This file contains the top-level functions that are used to create, use
16  * and destroy a perl interpreter, plus the functions used by XS code to
17  * call back into perl. Note that it does not contain the actual main()
18  * function of the interpreter; that can be found in perlmain.c
19  */
20
21 /* PSz 12 Nov 03
22  * 
23  * Be proud that perl(1) may proclaim:
24  *   Setuid Perl scripts are safer than C programs ...
25  * Do not abandon (deprecate) suidperl. Do not advocate C wrappers.
26  * 
27  * The flow was: perl starts, notices script is suid, execs suidperl with same
28  * arguments; suidperl opens script, checks many things, sets itself with
29  * right UID, execs perl with similar arguments but with script pre-opened on
30  * /dev/fd/xxx; perl checks script is as should be and does work. This was
31  * insecure: see perlsec(1) for many problems with this approach.
32  * 
33  * The "correct" flow should be: perl starts, opens script and notices it is
34  * suid, checks many things, execs suidperl with similar arguments but with
35  * script on /dev/fd/xxx; suidperl checks script and /dev/fd/xxx object are
36  * same, checks arguments match #! line, sets itself with right UID, execs
37  * perl with same arguments; perl checks many things and does work.
38  * 
39  * (Opening the script in perl instead of suidperl, we "lose" scripts that
40  * are readable to the target UID but not to the invoker. Where did
41  * unreadable scripts work anyway?)
42  * 
43  * For now, suidperl and perl are pretty much the same large and cumbersome
44  * program, so suidperl can check its argument list (see comments elsewhere).
45  * 
46  * References:
47  * Original bug report:
48  *   http://bugs.perl.org/index.html?req=bug_id&bug_id=20010322.218
49  *   http://rt.perl.org/rt2/Ticket/Display.html?id=6511
50  * Comments and discussion with Debian:
51  *   http://bugs.debian.org/203426
52  *   http://bugs.debian.org/220486
53  * Debian Security Advisory DSA 431-1 (does not fully fix problem):
54  *   http://www.debian.org/security/2004/dsa-431
55  * CVE candidate:
56  *   http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0618
57  * Previous versions of this patch sent to perl5-porters:
58  *   http://www.mail-archive.com/perl5-porters@perl.org/msg71953.html
59  *   http://www.mail-archive.com/perl5-porters@perl.org/msg75245.html
60  *   http://www.mail-archive.com/perl5-porters@perl.org/msg75563.html
61  *   http://www.mail-archive.com/perl5-porters@perl.org/msg75635.html
62  * 
63 Paul Szabo - psz@maths.usyd.edu.au  http://www.maths.usyd.edu.au:8000/u/psz/
64 School of Mathematics and Statistics  University of Sydney   2006  Australia
65  * 
66  */
67 /* PSz 13 Nov 03
68  * Use truthful, neat, specific error messages.
69  * Cannot always hide the truth; security must not depend on doing so.
70  */
71
72 /* PSz 18 Feb 04
73  * Use global(?), thread-local fdscript for easier checks.
74  * (I do not understand how we could possibly get a thread race:
75  * do not all threads go through the same initialization? Or in
76  * fact, are not threads started only after we get the script and
77  * so know what to do? Oh well, make things super-safe...)
78  */
79
80 #include "EXTERN.h"
81 #define PERL_IN_PERL_C
82 #include "perl.h"
83 #include "patchlevel.h"                 /* for local_patches */
84
85 #ifdef NETWARE
86 #include "nwutil.h"     
87 char *nw_get_sitelib(const char *pl);
88 #endif
89
90 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
91 #ifdef I_UNISTD
92 #include <unistd.h>
93 #endif
94
95 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
96 #  ifdef I_SYS_WAIT
97 #   include <sys/wait.h>
98 #  endif
99 #  ifdef I_SYSUIO
100 #    include <sys/uio.h>
101 #  endif
102
103 union control_un {
104   struct cmsghdr cm;
105   char control[CMSG_SPACE(sizeof(int))];
106 };
107
108 #endif
109
110 #ifdef __BEOS__
111 #  define HZ 1000000
112 #endif
113
114 #ifndef HZ
115 #  ifdef CLK_TCK
116 #    define HZ CLK_TCK
117 #  else
118 #    define HZ 60
119 #  endif
120 #endif
121
122 #if !defined(STANDARD_C) && !defined(HAS_GETENV_PROTOTYPE) && !defined(PERL_MICRO)
123 char *getenv (char *); /* Usually in <stdlib.h> */
124 #endif
125
126 static I32 read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen);
127
128 #ifdef IAMSUID
129 #ifndef DOSUID
130 #define DOSUID
131 #endif
132 #endif /* IAMSUID */
133
134 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
135 #ifdef DOSUID
136 #undef DOSUID
137 #endif
138 #endif
139
140 static void
141 S_init_tls_and_interp(PerlInterpreter *my_perl)
142 {
143     dVAR;
144     if (!PL_curinterp) {                        
145         PERL_SET_INTERP(my_perl);
146 #if defined(USE_ITHREADS)
147         INIT_THREADS;
148         ALLOC_THREAD_KEY;
149         PERL_SET_THX(my_perl);
150         OP_REFCNT_INIT;
151         MUTEX_INIT(&PL_dollarzero_mutex);
152 #  endif
153 #ifdef PERL_IMPLICIT_CONTEXT
154         MUTEX_INIT(&PL_my_ctx_mutex);
155 #  endif
156     }
157     else {
158         PERL_SET_THX(my_perl);
159     }
160 }
161
162 #ifdef PERL_IMPLICIT_SYS
163 PerlInterpreter *
164 perl_alloc_using(struct IPerlMem* ipM, struct IPerlMem* ipMS,
165                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
166                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
167                  struct IPerlDir* ipD, struct IPerlSock* ipS,
168                  struct IPerlProc* ipP)
169 {
170     PerlInterpreter *my_perl;
171     /* Newx() needs interpreter, so call malloc() instead */
172     my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
173     S_init_tls_and_interp(my_perl);
174     Zero(my_perl, 1, PerlInterpreter);
175     PL_Mem = ipM;
176     PL_MemShared = ipMS;
177     PL_MemParse = ipMP;
178     PL_Env = ipE;
179     PL_StdIO = ipStd;
180     PL_LIO = ipLIO;
181     PL_Dir = ipD;
182     PL_Sock = ipS;
183     PL_Proc = ipP;
184
185     return my_perl;
186 }
187 #else
188
189 /*
190 =head1 Embedding Functions
191
192 =for apidoc perl_alloc
193
194 Allocates a new Perl interpreter.  See L<perlembed>.
195
196 =cut
197 */
198
199 PerlInterpreter *
200 perl_alloc(void)
201 {
202     PerlInterpreter *my_perl;
203
204     /* Newx() needs interpreter, so call malloc() instead */
205     my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
206
207     S_init_tls_and_interp(my_perl);
208     return (PerlInterpreter *) ZeroD(my_perl, 1, PerlInterpreter);
209 }
210 #endif /* PERL_IMPLICIT_SYS */
211
212 /*
213 =for apidoc perl_construct
214
215 Initializes a new Perl interpreter.  See L<perlembed>.
216
217 =cut
218 */
219
220 void
221 perl_construct(pTHXx)
222 {
223     dVAR;
224     PERL_UNUSED_ARG(my_perl);
225 #ifdef MULTIPLICITY
226     init_interp();
227     PL_perl_destruct_level = 1;
228 #else
229    if (PL_perl_destruct_level > 0)
230        init_interp();
231 #endif
232    /* Init the real globals (and main thread)? */
233     if (!PL_linestr) {
234         PL_curcop = &PL_compiling;      /* needed by ckWARN, right away */
235
236         PL_linestr = newSV(79);
237         sv_upgrade(PL_linestr,SVt_PVIV);
238
239         if (!SvREADONLY(&PL_sv_undef)) {
240             /* set read-only and try to insure than we wont see REFCNT==0
241                very often */
242
243             SvREADONLY_on(&PL_sv_undef);
244             SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
245
246             sv_setpv(&PL_sv_no,PL_No);
247             /* value lookup in void context - happens to have the side effect
248                of caching the numeric forms.  */
249             SvIV(&PL_sv_no);
250             SvNV(&PL_sv_no);
251             SvREADONLY_on(&PL_sv_no);
252             SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
253
254             sv_setpv(&PL_sv_yes,PL_Yes);
255             SvIV(&PL_sv_yes);
256             SvNV(&PL_sv_yes);
257             SvREADONLY_on(&PL_sv_yes);
258             SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;
259
260             SvREADONLY_on(&PL_sv_placeholder);
261             SvREFCNT(&PL_sv_placeholder) = (~(U32)0)/2;
262         }
263
264         PL_sighandlerp = (Sighandler_t) Perl_sighandler;
265 #ifdef PERL_USES_PL_PIDSTATUS
266         PL_pidstatus = newHV();
267 #endif
268     }
269
270     PL_rs = newSVpvs("\n");
271
272     init_stacks();
273
274     init_ids();
275     PL_lex_state = LEX_NOTPARSING;
276
277     JMPENV_BOOTSTRAP;
278     STATUS_ALL_SUCCESS;
279
280     init_i18nl10n(1);
281     SET_NUMERIC_STANDARD();
282
283 #if defined(LOCAL_PATCH_COUNT)
284     PL_localpatches = local_patches;    /* For possible -v */
285 #endif
286
287 #ifdef HAVE_INTERP_INTERN
288     sys_intern_init();
289 #endif
290
291     PerlIO_init(aTHX);                  /* Hook to IO system */
292
293     PL_fdpid = newAV();                 /* for remembering popen pids by fd */
294     PL_modglobal = newHV();             /* pointers to per-interpreter module globals */
295     PL_errors = newSVpvs("");
296     sv_setpvn(PERL_DEBUG_PAD(0), "", 0);        /* For regex debugging. */
297     sv_setpvn(PERL_DEBUG_PAD(1), "", 0);        /* ext/re needs these */
298     sv_setpvn(PERL_DEBUG_PAD(2), "", 0);        /* even without DEBUGGING. */
299 #ifdef USE_ITHREADS
300     PL_regex_padav = newAV();
301     av_push(PL_regex_padav,(SV*)newAV());    /* First entry is an array of empty elements */
302     PL_regex_pad = AvARRAY(PL_regex_padav);
303 #endif
304 #ifdef USE_REENTRANT_API
305     Perl_reentrant_init(aTHX);
306 #endif
307
308     /* Note that strtab is a rather special HV.  Assumptions are made
309        about not iterating on it, and not adding tie magic to it.
310        It is properly deallocated in perl_destruct() */
311     PL_strtab = newHV();
312
313     HvSHAREKEYS_off(PL_strtab);                 /* mandatory */
314     hv_ksplit(PL_strtab, 512);
315
316 #if defined(__DYNAMIC__) && (defined(NeXT) || defined(__NeXT__))
317     _dyld_lookup_and_bind
318         ("__environ", (unsigned long *) &environ_pointer, NULL);
319 #endif /* environ */
320
321 #ifndef PERL_MICRO
322 #   ifdef  USE_ENVIRON_ARRAY
323     PL_origenviron = environ;
324 #   endif
325 #endif
326
327     /* Use sysconf(_SC_CLK_TCK) if available, if not
328      * available or if the sysconf() fails, use the HZ.
329      * BeOS has those, but returns the wrong value.
330      * The HZ if not originally defined has been by now
331      * been defined as CLK_TCK, if available. */
332 #if defined(HAS_SYSCONF) && defined(_SC_CLK_TCK) && !defined(__BEOS__)
333     PL_clocktick = sysconf(_SC_CLK_TCK);
334     if (PL_clocktick <= 0)
335 #endif
336          PL_clocktick = HZ;
337
338     PL_stashcache = newHV();
339
340     PL_patchlevel = Perl_newSVpvf(aTHX_ "%d.%d.%d", (int)PERL_REVISION,
341                                   (int)PERL_VERSION, (int)PERL_SUBVERSION);
342
343 #ifdef HAS_MMAP
344     if (!PL_mmap_page_size) {
345 #if defined(HAS_SYSCONF) && (defined(_SC_PAGESIZE) || defined(_SC_MMAP_PAGE_SIZE))
346       {
347         SETERRNO(0, SS_NORMAL);
348 #   ifdef _SC_PAGESIZE
349         PL_mmap_page_size = sysconf(_SC_PAGESIZE);
350 #   else
351         PL_mmap_page_size = sysconf(_SC_MMAP_PAGE_SIZE);
352 #   endif
353         if ((long) PL_mmap_page_size < 0) {
354           if (errno) {
355             SV * const error = ERRSV;
356             (void) SvUPGRADE(error, SVt_PV);
357             Perl_croak(aTHX_ "panic: sysconf: %s", SvPV_nolen_const(error));
358           }
359           else
360             Perl_croak(aTHX_ "panic: sysconf: pagesize unknown");
361         }
362       }
363 #else
364 #   ifdef HAS_GETPAGESIZE
365       PL_mmap_page_size = getpagesize();
366 #   else
367 #       if defined(I_SYS_PARAM) && defined(PAGESIZE)
368       PL_mmap_page_size = PAGESIZE;       /* compiletime, bad */
369 #       endif
370 #   endif
371 #endif
372       if (PL_mmap_page_size <= 0)
373         Perl_croak(aTHX_ "panic: bad pagesize %" IVdf,
374                    (IV) PL_mmap_page_size);
375     }
376 #endif /* HAS_MMAP */
377
378 #if defined(HAS_TIMES) && defined(PERL_NEED_TIMESBASE)
379     PL_timesbase.tms_utime  = 0;
380     PL_timesbase.tms_stime  = 0;
381     PL_timesbase.tms_cutime = 0;
382     PL_timesbase.tms_cstime = 0;
383 #endif
384
385     ENTER;
386 }
387
388 /*
389 =for apidoc nothreadhook
390
391 Stub that provides thread hook for perl_destruct when there are
392 no threads.
393
394 =cut
395 */
396
397 int
398 Perl_nothreadhook(pTHX)
399 {
400     return 0;
401 }
402
403 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
404 void
405 Perl_dump_sv_child(pTHX_ SV *sv)
406 {
407     ssize_t got;
408     const int sock = PL_dumper_fd;
409     const int debug_fd = PerlIO_fileno(Perl_debug_log);
410     union control_un control;
411     struct msghdr msg;
412     struct iovec vec[2];
413     struct cmsghdr *cmptr;
414     int returned_errno;
415     unsigned char buffer[256];
416
417     if(sock == -1 || debug_fd == -1)
418         return;
419
420     PerlIO_flush(Perl_debug_log);
421
422     /* All these shenanigans are to pass a file descriptor over to our child for
423        it to dump out to.  We can't let it hold open the file descriptor when it
424        forks, as the file descriptor it will dump to can turn out to be one end
425        of pipe that some other process will wait on for EOF. (So as it would
426        be open, the wait would be forever.  */
427
428     msg.msg_control = control.control;
429     msg.msg_controllen = sizeof(control.control);
430     /* We're a connected socket so we don't need a destination  */
431     msg.msg_name = NULL;
432     msg.msg_namelen = 0;
433     msg.msg_iov = vec;
434     msg.msg_iovlen = 1;
435
436     cmptr = CMSG_FIRSTHDR(&msg);
437     cmptr->cmsg_len = CMSG_LEN(sizeof(int));
438     cmptr->cmsg_level = SOL_SOCKET;
439     cmptr->cmsg_type = SCM_RIGHTS;
440     *((int *)CMSG_DATA(cmptr)) = 1;
441
442     vec[0].iov_base = (void*)&sv;
443     vec[0].iov_len = sizeof(sv);
444     got = sendmsg(sock, &msg, 0);
445
446     if(got < 0) {
447         perror("Debug leaking scalars parent sendmsg failed");
448         abort();
449     }
450     if(got < sizeof(sv)) {
451         perror("Debug leaking scalars parent short sendmsg");
452         abort();
453     }
454
455     /* Return protocol is
456        int:             errno value
457        unsigned char:   length of location string (0 for empty)
458        unsigned char*:  string (not terminated)
459     */
460     vec[0].iov_base = (void*)&returned_errno;
461     vec[0].iov_len = sizeof(returned_errno);
462     vec[1].iov_base = buffer;
463     vec[1].iov_len = 1;
464
465     got = readv(sock, vec, 2);
466
467     if(got < 0) {
468         perror("Debug leaking scalars parent read failed");
469         PerlIO_flush(PerlIO_stderr());
470         abort();
471     }
472     if(got < sizeof(returned_errno) + 1) {
473         perror("Debug leaking scalars parent short read");
474         PerlIO_flush(PerlIO_stderr());
475         abort();
476     }
477
478     if (*buffer) {
479         got = read(sock, buffer + 1, *buffer);
480         if(got < 0) {
481             perror("Debug leaking scalars parent read 2 failed");
482             PerlIO_flush(PerlIO_stderr());
483             abort();
484         }
485
486         if(got < *buffer) {
487             perror("Debug leaking scalars parent short read 2");
488             PerlIO_flush(PerlIO_stderr());
489             abort();
490         }
491     }
492
493     if (returned_errno || *buffer) {
494         Perl_warn(aTHX_ "Debug leaking scalars child failed%s%.*s with errno"
495                   " %d: %s", (*buffer ? " at " : ""), (int) *buffer, buffer + 1,
496                   returned_errno, strerror(returned_errno));
497     }
498 }
499 #endif
500
501 /*
502 =for apidoc perl_destruct
503
504 Shuts down a Perl interpreter.  See L<perlembed>.
505
506 =cut
507 */
508
509 int
510 perl_destruct(pTHXx)
511 {
512     dVAR;
513     volatile int destruct_level;  /* 0=none, 1=full, 2=full with checks */
514     HV *hv;
515 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
516     pid_t child;
517 #endif
518
519     PERL_UNUSED_ARG(my_perl);
520
521     /* wait for all pseudo-forked children to finish */
522     PERL_WAIT_FOR_CHILDREN;
523
524     destruct_level = PL_perl_destruct_level;
525 #ifdef DEBUGGING
526     {
527         const char * const s = PerlEnv_getenv("PERL_DESTRUCT_LEVEL");
528         if (s) {
529             const int i = atoi(s);
530             if (destruct_level < i)
531                 destruct_level = i;
532         }
533     }
534 #endif
535
536     if (PL_exit_flags & PERL_EXIT_DESTRUCT_END) {
537         dJMPENV;
538         int x = 0;
539
540         JMPENV_PUSH(x);
541         PERL_UNUSED_VAR(x);
542         if (PL_endav && !PL_minus_c)
543             call_list(PL_scopestack_ix, PL_endav);
544         JMPENV_POP;
545     }
546     LEAVE;
547     FREETMPS;
548
549     /* Need to flush since END blocks can produce output */
550     my_fflush_all();
551
552     if (CALL_FPTR(PL_threadhook)(aTHX)) {
553         /* Threads hook has vetoed further cleanup */
554         return STATUS_EXIT;
555     }
556
557 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
558     if (destruct_level != 0) {
559         /* Fork here to create a child. Our child's job is to preserve the
560            state of scalars prior to destruction, so that we can instruct it
561            to dump any scalars that we later find have leaked.
562            There's no subtlety in this code - it assumes POSIX, and it doesn't
563            fail gracefully  */
564         int fd[2];
565
566         if(socketpair(AF_UNIX, SOCK_STREAM, 0, fd)) {
567             perror("Debug leaking scalars socketpair failed");
568             abort();
569         }
570
571         child = fork();
572         if(child == -1) {
573             perror("Debug leaking scalars fork failed");
574             abort();
575         }
576         if (!child) {
577             /* We are the child */
578             const int sock = fd[1];
579             const int debug_fd = PerlIO_fileno(Perl_debug_log);
580             int f;
581             const char *where;
582             /* Our success message is an integer 0, and a char 0  */
583             static const char success[sizeof(int) + 1];
584
585             close(fd[0]);
586
587             /* We need to close all other file descriptors otherwise we end up
588                with interesting hangs, where the parent closes its end of a
589                pipe, and sits waiting for (another) child to terminate. Only
590                that child never terminates, because it never gets EOF, because
591                we also have the far end of the pipe open.  We even need to
592                close the debugging fd, because sometimes it happens to be one
593                end of a pipe, and a process is waiting on the other end for
594                EOF. Normally it would be closed at some point earlier in
595                destruction, but if we happen to cause the pipe to remain open,
596                EOF never occurs, and we get an infinite hang. Hence all the
597                games to pass in a file descriptor if it's actually needed.  */
598
599             f = sysconf(_SC_OPEN_MAX);
600             if(f < 0) {
601                 where = "sysconf failed";
602                 goto abort;
603             }
604             while (f--) {
605                 if (f == sock)
606                     continue;
607                 close(f);
608             }
609
610             while (1) {
611                 SV *target;
612                 union control_un control;
613                 struct msghdr msg;
614                 struct iovec vec[1];
615                 struct cmsghdr *cmptr;
616                 ssize_t got;
617                 int got_fd;
618
619                 msg.msg_control = control.control;
620                 msg.msg_controllen = sizeof(control.control);
621                 /* We're a connected socket so we don't need a source  */
622                 msg.msg_name = NULL;
623                 msg.msg_namelen = 0;
624                 msg.msg_iov = vec;
625                 msg.msg_iovlen = sizeof(vec)/sizeof(vec[0]);
626
627                 vec[0].iov_base = (void*)&target;
628                 vec[0].iov_len = sizeof(target);
629       
630                 got = recvmsg(sock, &msg, 0);
631
632                 if(got == 0)
633                     break;
634                 if(got < 0) {
635                     where = "recv failed";
636                     goto abort;
637                 }
638                 if(got < sizeof(target)) {
639                     where = "short recv";
640                     goto abort;
641                 }
642
643                 if(!(cmptr = CMSG_FIRSTHDR(&msg))) {
644                     where = "no cmsg";
645                     goto abort;
646                 }
647                 if(cmptr->cmsg_len != CMSG_LEN(sizeof(int))) {
648                     where = "wrong cmsg_len";
649                     goto abort;
650                 }
651                 if(cmptr->cmsg_level != SOL_SOCKET) {
652                     where = "wrong cmsg_level";
653                     goto abort;
654                 }
655                 if(cmptr->cmsg_type != SCM_RIGHTS) {
656                     where = "wrong cmsg_type";
657                     goto abort;
658                 }
659
660                 got_fd = *(int*)CMSG_DATA(cmptr);
661                 /* For our last little bit of trickery, put the file descriptor
662                    back into Perl_debug_log, as if we never actually closed it
663                 */
664                 if(got_fd != debug_fd) {
665                     if (dup2(got_fd, debug_fd) == -1) {
666                         where = "dup2";
667                         goto abort;
668                     }
669                 }
670                 sv_dump(target);
671
672                 PerlIO_flush(Perl_debug_log);
673
674                 got = write(sock, &success, sizeof(success));
675
676                 if(got < 0) {
677                     where = "write failed";
678                     goto abort;
679                 }
680                 if(got < sizeof(success)) {
681                     where = "short write";
682                     goto abort;
683                 }
684             }
685             _exit(0);
686         abort:
687             {
688                 int send_errno = errno;
689                 unsigned char length = (unsigned char) strlen(where);
690                 struct iovec failure[3] = {
691                     {(void*)&send_errno, sizeof(send_errno)},
692                     {&length, 1},
693                     {(void*)where, length}
694                 };
695                 int got = writev(sock, failure, 3);
696                 /* Bad news travels fast. Faster than data. We'll get a SIGPIPE
697                    in the parent if we try to read from the socketpair after the
698                    child has exited, even if there was data to read.
699                    So sleep a bit to give the parent a fighting chance of
700                    reading the data.  */
701                 sleep(2);
702                 _exit((got == -1) ? errno : 0);
703             }
704             /* End of child.  */
705         }
706         PL_dumper_fd = fd[0];
707         close(fd[1]);
708     }
709 #endif
710     
711     /* We must account for everything.  */
712
713     /* Destroy the main CV and syntax tree */
714     /* Do this now, because destroying ops can cause new SVs to be generated
715        in Perl_pad_swipe, and when running with -DDEBUG_LEAKING_SCALARS they
716        PL_curcop to point to a valid op from which the filename structure
717        member is copied.  */
718     PL_curcop = &PL_compiling;
719     if (PL_main_root) {
720         /* ensure comppad/curpad to refer to main's pad */
721         if (CvPADLIST(PL_main_cv)) {
722             PAD_SET_CUR_NOSAVE(CvPADLIST(PL_main_cv), 1);
723         }
724         op_free(PL_main_root);
725         PL_main_root = Nullop;
726     }
727     PL_main_start = Nullop;
728     SvREFCNT_dec(PL_main_cv);
729     PL_main_cv = NULL;
730     PL_dirty = TRUE;
731
732     /* Tell PerlIO we are about to tear things apart in case
733        we have layers which are using resources that should
734        be cleaned up now.
735      */
736
737     PerlIO_destruct(aTHX);
738
739     if (PL_sv_objcount) {
740         /*
741          * Try to destruct global references.  We do this first so that the
742          * destructors and destructees still exist.  Some sv's might remain.
743          * Non-referenced objects are on their own.
744          */
745         sv_clean_objs();
746         PL_sv_objcount = 0;
747         if (PL_defoutgv && !SvREFCNT(PL_defoutgv))
748             PL_defoutgv = NULL; /* may have been freed */
749     }
750
751     /* unhook hooks which will soon be, or use, destroyed data */
752     SvREFCNT_dec(PL_warnhook);
753     PL_warnhook = NULL;
754     SvREFCNT_dec(PL_diehook);
755     PL_diehook = NULL;
756
757     /* call exit list functions */
758     while (PL_exitlistlen-- > 0)
759         PL_exitlist[PL_exitlistlen].fn(aTHX_ PL_exitlist[PL_exitlistlen].ptr);
760
761     Safefree(PL_exitlist);
762
763     PL_exitlist = NULL;
764     PL_exitlistlen = 0;
765
766     if (destruct_level == 0){
767
768         DEBUG_P(debprofdump());
769
770 #if defined(PERLIO_LAYERS)
771         /* No more IO - including error messages ! */
772         PerlIO_cleanup(aTHX);
773 #endif
774
775         /* The exit() function will do everything that needs doing. */
776         return STATUS_EXIT;
777     }
778
779     /* jettison our possibly duplicated environment */
780     /* if PERL_USE_SAFE_PUTENV is defined environ will not have been copied
781      * so we certainly shouldn't free it here
782      */
783 #ifndef PERL_MICRO
784 #if defined(USE_ENVIRON_ARRAY) && !defined(PERL_USE_SAFE_PUTENV)
785     if (environ != PL_origenviron && !PL_use_safe_putenv
786 #ifdef USE_ITHREADS
787         /* only main thread can free environ[0] contents */
788         && PL_curinterp == aTHX
789 #endif
790         )
791     {
792         I32 i;
793
794         for (i = 0; environ[i]; i++)
795             safesysfree(environ[i]);
796
797         /* Must use safesysfree() when working with environ. */
798         safesysfree(environ);           
799
800         environ = PL_origenviron;
801     }
802 #endif
803 #endif /* !PERL_MICRO */
804
805     /* reset so print() ends up where we expect */
806     setdefout(NULL);
807
808 #ifdef USE_ITHREADS
809     /* the syntax tree is shared between clones
810      * so op_free(PL_main_root) only ReREFCNT_dec's
811      * REGEXPs in the parent interpreter
812      * we need to manually ReREFCNT_dec for the clones
813      */
814     {
815         I32 i = AvFILLp(PL_regex_padav) + 1;
816         SV * const * const ary = AvARRAY(PL_regex_padav);
817
818         while (i) {
819             SV * const resv = ary[--i];
820
821             if (SvFLAGS(resv) & SVf_BREAK) {
822                 /* this is PL_reg_curpm, already freed
823                  * flag is set in regexec.c:S_regtry
824                  */
825                 SvFLAGS(resv) &= ~SVf_BREAK;
826             }
827             else if(SvREPADTMP(resv)) {
828               SvREPADTMP_off(resv);
829             }
830             else if(SvIOKp(resv)) {
831                 REGEXP *re = INT2PTR(REGEXP *,SvIVX(resv));
832                 ReREFCNT_dec(re);
833             }
834         }
835     }
836     SvREFCNT_dec(PL_regex_padav);
837     PL_regex_padav = NULL;
838     PL_regex_pad = NULL;
839 #endif
840
841     SvREFCNT_dec((SV*) PL_stashcache);
842     PL_stashcache = NULL;
843
844     /* loosen bonds of global variables */
845
846     if(PL_rsfp) {
847         (void)PerlIO_close(PL_rsfp);
848         PL_rsfp = Nullfp;
849     }
850
851     /* Filters for program text */
852     SvREFCNT_dec(PL_rsfp_filters);
853     PL_rsfp_filters = NULL;
854
855     /* switches */
856     PL_preprocess   = FALSE;
857     PL_minus_n      = FALSE;
858     PL_minus_p      = FALSE;
859     PL_minus_l      = FALSE;
860     PL_minus_a      = FALSE;
861     PL_minus_F      = FALSE;
862     PL_doswitches   = FALSE;
863     PL_dowarn       = G_WARN_OFF;
864     PL_doextract    = FALSE;
865     PL_sawampersand = FALSE;    /* must save all match strings */
866     PL_unsafe       = FALSE;
867
868     Safefree(PL_inplace);
869     PL_inplace = NULL;
870     SvREFCNT_dec(PL_patchlevel);
871
872     if (PL_e_script) {
873         SvREFCNT_dec(PL_e_script);
874         PL_e_script = NULL;
875     }
876
877     PL_perldb = 0;
878
879     /* magical thingies */
880
881     SvREFCNT_dec(PL_ofs_sv);    /* $, */
882     PL_ofs_sv = NULL;
883
884     SvREFCNT_dec(PL_ors_sv);    /* $\ */
885     PL_ors_sv = NULL;
886
887     SvREFCNT_dec(PL_rs);        /* $/ */
888     PL_rs = NULL;
889
890     PL_multiline = 0;           /* $* */
891     Safefree(PL_osname);        /* $^O */
892     PL_osname = NULL;
893
894     SvREFCNT_dec(PL_statname);
895     PL_statname = NULL;
896     PL_statgv = NULL;
897
898     /* defgv, aka *_ should be taken care of elsewhere */
899
900     /* clean up after study() */
901     SvREFCNT_dec(PL_lastscream);
902     PL_lastscream = NULL;
903     Safefree(PL_screamfirst);
904     PL_screamfirst = 0;
905     Safefree(PL_screamnext);
906     PL_screamnext  = 0;
907
908     /* float buffer */
909     Safefree(PL_efloatbuf);
910     PL_efloatbuf = NULL;
911     PL_efloatsize = 0;
912
913     /* startup and shutdown function lists */
914     SvREFCNT_dec(PL_beginav);
915     SvREFCNT_dec(PL_beginav_save);
916     SvREFCNT_dec(PL_endav);
917     SvREFCNT_dec(PL_checkav);
918     SvREFCNT_dec(PL_checkav_save);
919     SvREFCNT_dec(PL_initav);
920     PL_beginav = NULL;
921     PL_beginav_save = NULL;
922     PL_endav = NULL;
923     PL_checkav = NULL;
924     PL_checkav_save = NULL;
925     PL_initav = NULL;
926
927     /* shortcuts just get cleared */
928     PL_envgv = NULL;
929     PL_incgv = NULL;
930     PL_hintgv = NULL;
931     PL_errgv = NULL;
932     PL_argvgv = NULL;
933     PL_argvoutgv = NULL;
934     PL_stdingv = NULL;
935     PL_stderrgv = NULL;
936     PL_last_in_gv = NULL;
937     PL_replgv = NULL;
938     PL_DBgv = NULL;
939     PL_DBline = NULL;
940     PL_DBsub = NULL;
941     PL_DBsingle = NULL;
942     PL_DBtrace = NULL;
943     PL_DBsignal = NULL;
944     PL_DBassertion = NULL;
945     PL_DBcv = NULL;
946     PL_dbargs = NULL;
947     PL_debstash = NULL;
948
949     SvREFCNT_dec(PL_argvout_stack);
950     PL_argvout_stack = NULL;
951
952     SvREFCNT_dec(PL_modglobal);
953     PL_modglobal = NULL;
954     SvREFCNT_dec(PL_preambleav);
955     PL_preambleav = NULL;
956     SvREFCNT_dec(PL_subname);
957     PL_subname = NULL;
958     SvREFCNT_dec(PL_linestr);
959     PL_linestr = NULL;
960 #ifdef PERL_USES_PL_PIDSTATUS
961     SvREFCNT_dec(PL_pidstatus);
962     PL_pidstatus = NULL;
963 #endif
964     SvREFCNT_dec(PL_toptarget);
965     PL_toptarget = NULL;
966     SvREFCNT_dec(PL_bodytarget);
967     PL_bodytarget = NULL;
968     PL_formtarget = NULL;
969
970     /* free locale stuff */
971 #ifdef USE_LOCALE_COLLATE
972     Safefree(PL_collation_name);
973     PL_collation_name = NULL;
974 #endif
975
976 #ifdef USE_LOCALE_NUMERIC
977     Safefree(PL_numeric_name);
978     PL_numeric_name = NULL;
979     SvREFCNT_dec(PL_numeric_radix_sv);
980     PL_numeric_radix_sv = NULL;
981 #endif
982
983     /* clear utf8 character classes */
984     SvREFCNT_dec(PL_utf8_alnum);
985     SvREFCNT_dec(PL_utf8_alnumc);
986     SvREFCNT_dec(PL_utf8_ascii);
987     SvREFCNT_dec(PL_utf8_alpha);
988     SvREFCNT_dec(PL_utf8_space);
989     SvREFCNT_dec(PL_utf8_cntrl);
990     SvREFCNT_dec(PL_utf8_graph);
991     SvREFCNT_dec(PL_utf8_digit);
992     SvREFCNT_dec(PL_utf8_upper);
993     SvREFCNT_dec(PL_utf8_lower);
994     SvREFCNT_dec(PL_utf8_print);
995     SvREFCNT_dec(PL_utf8_punct);
996     SvREFCNT_dec(PL_utf8_xdigit);
997     SvREFCNT_dec(PL_utf8_mark);
998     SvREFCNT_dec(PL_utf8_toupper);
999     SvREFCNT_dec(PL_utf8_totitle);
1000     SvREFCNT_dec(PL_utf8_tolower);
1001     SvREFCNT_dec(PL_utf8_tofold);
1002     SvREFCNT_dec(PL_utf8_idstart);
1003     SvREFCNT_dec(PL_utf8_idcont);
1004     PL_utf8_alnum       = NULL;
1005     PL_utf8_alnumc      = NULL;
1006     PL_utf8_ascii       = NULL;
1007     PL_utf8_alpha       = NULL;
1008     PL_utf8_space       = NULL;
1009     PL_utf8_cntrl       = NULL;
1010     PL_utf8_graph       = NULL;
1011     PL_utf8_digit       = NULL;
1012     PL_utf8_upper       = NULL;
1013     PL_utf8_lower       = NULL;
1014     PL_utf8_print       = NULL;
1015     PL_utf8_punct       = NULL;
1016     PL_utf8_xdigit      = NULL;
1017     PL_utf8_mark        = NULL;
1018     PL_utf8_toupper     = NULL;
1019     PL_utf8_totitle     = NULL;
1020     PL_utf8_tolower     = NULL;
1021     PL_utf8_tofold      = NULL;
1022     PL_utf8_idstart     = NULL;
1023     PL_utf8_idcont      = NULL;
1024
1025     if (!specialWARN(PL_compiling.cop_warnings))
1026         SvREFCNT_dec(PL_compiling.cop_warnings);
1027     PL_compiling.cop_warnings = NULL;
1028     if (!specialCopIO(PL_compiling.cop_io))
1029         SvREFCNT_dec(PL_compiling.cop_io);
1030     PL_compiling.cop_io = NULL;
1031     CopFILE_free(&PL_compiling);
1032     CopSTASH_free(&PL_compiling);
1033
1034     /* Prepare to destruct main symbol table.  */
1035
1036     hv = PL_defstash;
1037     PL_defstash = 0;
1038     SvREFCNT_dec(hv);
1039     SvREFCNT_dec(PL_curstname);
1040     PL_curstname = NULL;
1041
1042     /* clear queued errors */
1043     SvREFCNT_dec(PL_errors);
1044     PL_errors = NULL;
1045
1046     FREETMPS;
1047     if (destruct_level >= 2 && ckWARN_d(WARN_INTERNAL)) {
1048         if (PL_scopestack_ix != 0)
1049             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
1050                  "Unbalanced scopes: %ld more ENTERs than LEAVEs\n",
1051                  (long)PL_scopestack_ix);
1052         if (PL_savestack_ix != 0)
1053             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
1054                  "Unbalanced saves: %ld more saves than restores\n",
1055                  (long)PL_savestack_ix);
1056         if (PL_tmps_floor != -1)
1057             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"Unbalanced tmps: %ld more allocs than frees\n",
1058                  (long)PL_tmps_floor + 1);
1059         if (cxstack_ix != -1)
1060             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"Unbalanced context: %ld more PUSHes than POPs\n",
1061                  (long)cxstack_ix + 1);
1062     }
1063
1064     /* Now absolutely destruct everything, somehow or other, loops or no. */
1065     SvFLAGS(PL_fdpid) |= SVTYPEMASK;            /* don't clean out pid table now */
1066     SvFLAGS(PL_strtab) |= SVTYPEMASK;           /* don't clean out strtab now */
1067
1068     /* the 2 is for PL_fdpid and PL_strtab */
1069     while (PL_sv_count > 2 && sv_clean_all())
1070         ;
1071
1072     SvFLAGS(PL_fdpid) &= ~SVTYPEMASK;
1073     SvFLAGS(PL_fdpid) |= SVt_PVAV;
1074     SvFLAGS(PL_strtab) &= ~SVTYPEMASK;
1075     SvFLAGS(PL_strtab) |= SVt_PVHV;
1076
1077     AvREAL_off(PL_fdpid);               /* no surviving entries */
1078     SvREFCNT_dec(PL_fdpid);             /* needed in io_close() */
1079     PL_fdpid = NULL;
1080
1081 #ifdef HAVE_INTERP_INTERN
1082     sys_intern_clear();
1083 #endif
1084
1085     /* Destruct the global string table. */
1086     {
1087         /* Yell and reset the HeVAL() slots that are still holding refcounts,
1088          * so that sv_free() won't fail on them.
1089          * Now that the global string table is using a single hunk of memory
1090          * for both HE and HEK, we either need to explicitly unshare it the
1091          * correct way, or actually free things here.
1092          */
1093         I32 riter = 0;
1094         const I32 max = HvMAX(PL_strtab);
1095         HE * const * const array = HvARRAY(PL_strtab);
1096         HE *hent = array[0];
1097
1098         for (;;) {
1099             if (hent && ckWARN_d(WARN_INTERNAL)) {
1100                 HE * const next = HeNEXT(hent);
1101                 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
1102                      "Unbalanced string table refcount: (%ld) for \"%s\"",
1103                      (long)hent->he_valu.hent_refcount, HeKEY(hent));
1104                 Safefree(hent);
1105                 hent = next;
1106             }
1107             if (!hent) {
1108                 if (++riter > max)
1109                     break;
1110                 hent = array[riter];
1111             }
1112         }
1113
1114         Safefree(array);
1115         HvARRAY(PL_strtab) = 0;
1116         HvTOTALKEYS(PL_strtab) = 0;
1117         HvFILL(PL_strtab) = 0;
1118     }
1119     SvREFCNT_dec(PL_strtab);
1120
1121 #ifdef USE_ITHREADS
1122     /* free the pointer tables used for cloning */
1123     ptr_table_free(PL_ptr_table);
1124     PL_ptr_table = (PTR_TBL_t*)NULL;
1125 #endif
1126
1127     /* free special SVs */
1128
1129     SvREFCNT(&PL_sv_yes) = 0;
1130     sv_clear(&PL_sv_yes);
1131     SvANY(&PL_sv_yes) = NULL;
1132     SvFLAGS(&PL_sv_yes) = 0;
1133
1134     SvREFCNT(&PL_sv_no) = 0;
1135     sv_clear(&PL_sv_no);
1136     SvANY(&PL_sv_no) = NULL;
1137     SvFLAGS(&PL_sv_no) = 0;
1138
1139     {
1140         int i;
1141         for (i=0; i<=2; i++) {
1142             SvREFCNT(PERL_DEBUG_PAD(i)) = 0;
1143             sv_clear(PERL_DEBUG_PAD(i));
1144             SvANY(PERL_DEBUG_PAD(i)) = NULL;
1145             SvFLAGS(PERL_DEBUG_PAD(i)) = 0;
1146         }
1147     }
1148
1149     if (PL_sv_count != 0 && ckWARN_d(WARN_INTERNAL))
1150         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"Scalars leaked: %ld\n", (long)PL_sv_count);
1151
1152 #ifdef DEBUG_LEAKING_SCALARS
1153     if (PL_sv_count != 0) {
1154         SV* sva;
1155         SV* sv;
1156         register SV* svend;
1157
1158         for (sva = PL_sv_arenaroot; sva; sva = (SV*)SvANY(sva)) {
1159             svend = &sva[SvREFCNT(sva)];
1160             for (sv = sva + 1; sv < svend; ++sv) {
1161                 if (SvTYPE(sv) != SVTYPEMASK) {
1162                     PerlIO_printf(Perl_debug_log, "leaked: sv=0x%p"
1163                         " flags=0x%"UVxf
1164                         " refcnt=%"UVuf pTHX__FORMAT "\n"
1165                         "\tallocated at %s:%d %s %s%s\n",
1166                         sv, sv->sv_flags, sv->sv_refcnt pTHX__VALUE,
1167                         sv->sv_debug_file ? sv->sv_debug_file : "(unknown)",
1168                         sv->sv_debug_line,
1169                         sv->sv_debug_inpad ? "for" : "by",
1170                         sv->sv_debug_optype ?
1171                             PL_op_name[sv->sv_debug_optype]: "(none)",
1172                         sv->sv_debug_cloned ? " (cloned)" : ""
1173                     );
1174 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
1175                     Perl_dump_sv_child(aTHX_ sv);
1176 #endif
1177                 }
1178             }
1179         }
1180     }
1181 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
1182     {
1183         int status;
1184         fd_set rset;
1185         /* Wait for up to 4 seconds for child to terminate.
1186            This seems to be the least effort way of timing out on reaping
1187            its exit status.  */
1188         struct timeval waitfor = {4, 0};
1189         int sock = PL_dumper_fd;
1190
1191         shutdown(sock, 1);
1192         FD_ZERO(&rset);
1193         FD_SET(sock, &rset);
1194         select(sock + 1, &rset, NULL, NULL, &waitfor);
1195         waitpid(child, &status, WNOHANG);
1196         close(sock);
1197     }
1198 #endif
1199 #endif
1200     PL_sv_count = 0;
1201
1202
1203 #if defined(PERLIO_LAYERS)
1204     /* No more IO - including error messages ! */
1205     PerlIO_cleanup(aTHX);
1206 #endif
1207
1208     /* sv_undef needs to stay immortal until after PerlIO_cleanup
1209        as currently layers use it rather than NULL as a marker
1210        for no arg - and will try and SvREFCNT_dec it.
1211      */
1212     SvREFCNT(&PL_sv_undef) = 0;
1213     SvREADONLY_off(&PL_sv_undef);
1214
1215     Safefree(PL_origfilename);
1216     PL_origfilename = NULL;
1217     Safefree(PL_reg_start_tmp);
1218     PL_reg_start_tmp = (char**)NULL;
1219     PL_reg_start_tmpl = 0;
1220     Safefree(PL_reg_curpm);
1221     Safefree(PL_reg_poscache);
1222     free_tied_hv_pool();
1223     Safefree(PL_op_mask);
1224     Safefree(PL_psig_ptr);
1225     PL_psig_ptr = (SV**)NULL;
1226     Safefree(PL_psig_name);
1227     PL_psig_name = (SV**)NULL;
1228     Safefree(PL_bitcount);
1229     PL_bitcount = NULL;
1230     Safefree(PL_psig_pend);
1231     PL_psig_pend = (int*)NULL;
1232     PL_formfeed = NULL;
1233     nuke_stacks();
1234     PL_tainting = FALSE;
1235     PL_taint_warn = FALSE;
1236     PL_hints = 0;               /* Reset hints. Should hints be per-interpreter ? */
1237     PL_debug = 0;
1238
1239     DEBUG_P(debprofdump());
1240
1241 #ifdef USE_REENTRANT_API
1242     Perl_reentrant_free(aTHX);
1243 #endif
1244
1245     sv_free_arenas();
1246
1247     /* As the absolutely last thing, free the non-arena SV for mess() */
1248
1249     if (PL_mess_sv) {
1250         /* we know that type == SVt_PVMG */
1251
1252         /* it could have accumulated taint magic */
1253         MAGIC* mg;
1254         MAGIC* moremagic;
1255         for (mg = SvMAGIC(PL_mess_sv); mg; mg = moremagic) {
1256             moremagic = mg->mg_moremagic;
1257             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global
1258                 && mg->mg_len >= 0)
1259                 Safefree(mg->mg_ptr);
1260             Safefree(mg);
1261         }
1262
1263         /* we know that type >= SVt_PV */
1264         SvPV_free(PL_mess_sv);
1265         Safefree(SvANY(PL_mess_sv));
1266         Safefree(PL_mess_sv);
1267         PL_mess_sv = NULL;
1268     }
1269     return STATUS_EXIT;
1270 }
1271
1272 /*
1273 =for apidoc perl_free
1274
1275 Releases a Perl interpreter.  See L<perlembed>.
1276
1277 =cut
1278 */
1279
1280 void
1281 perl_free(pTHXx)
1282 {
1283 #if defined(WIN32) || defined(NETWARE)
1284 #  if defined(PERL_IMPLICIT_SYS)
1285 #    ifdef NETWARE
1286     void *host = nw_internal_host;
1287 #    else
1288     void *host = w32_internal_host;
1289 #    endif
1290     PerlMem_free(aTHXx);
1291 #    ifdef NETWARE
1292     nw_delete_internal_host(host);
1293 #    else
1294     win32_delete_internal_host(host);
1295 #    endif
1296 #  else
1297     PerlMem_free(aTHXx);
1298 #  endif
1299 #else
1300     PerlMem_free(aTHXx);
1301 #endif
1302 }
1303
1304 #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
1305 /* provide destructors to clean up the thread key when libperl is unloaded */
1306 #ifndef WIN32 /* handled during DLL_PROCESS_DETACH in win32/perllib.c */
1307
1308 #if defined(__hpux) && __ux_version > 1020 && !defined(__GNUC__)
1309 #pragma fini "perl_fini"
1310 #endif
1311
1312 static void
1313 #if defined(__GNUC__)
1314 __attribute__((destructor))
1315 #endif
1316 perl_fini(void)
1317 {
1318     dVAR;
1319     if (PL_curinterp)
1320         FREE_THREAD_KEY;
1321 }
1322
1323 #endif /* WIN32 */
1324 #endif /* THREADS */
1325
1326 void
1327 Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr)
1328 {
1329     dVAR;
1330     Renew(PL_exitlist, PL_exitlistlen+1, PerlExitListEntry);
1331     PL_exitlist[PL_exitlistlen].fn = fn;
1332     PL_exitlist[PL_exitlistlen].ptr = ptr;
1333     ++PL_exitlistlen;
1334 }
1335
1336 #ifdef HAS_PROCSELFEXE
1337 /* This is a function so that we don't hold on to MAXPATHLEN
1338    bytes of stack longer than necessary
1339  */
1340 STATIC void
1341 S_procself_val(pTHX_ SV *sv, const char *arg0)
1342 {
1343     char buf[MAXPATHLEN];
1344     int len = readlink(PROCSELFEXE_PATH, buf, sizeof(buf) - 1);
1345
1346     /* On Playstation2 Linux V1.0 (kernel 2.2.1) readlink(/proc/self/exe)
1347        includes a spurious NUL which will cause $^X to fail in system
1348        or backticks (this will prevent extensions from being built and
1349        many tests from working). readlink is not meant to add a NUL.
1350        Normal readlink works fine.
1351      */
1352     if (len > 0 && buf[len-1] == '\0') {
1353       len--;
1354     }
1355
1356     /* FreeBSD's implementation is acknowledged to be imperfect, sometimes
1357        returning the text "unknown" from the readlink rather than the path
1358        to the executable (or returning an error from the readlink).  Any valid
1359        path has a '/' in it somewhere, so use that to validate the result.
1360        See http://www.freebsd.org/cgi/query-pr.cgi?pr=35703
1361     */
1362     if (len > 0 && memchr(buf, '/', len)) {
1363         sv_setpvn(sv,buf,len);
1364     }
1365     else {
1366         sv_setpv(sv,arg0);
1367     }
1368 }
1369 #endif /* HAS_PROCSELFEXE */
1370
1371 STATIC void
1372 S_set_caret_X(pTHX) {
1373     dVAR;
1374     GV* tmpgv = gv_fetchpvs("\030", GV_ADD|GV_NOTQUAL, SVt_PV); /* $^X */
1375     if (tmpgv) {
1376 #ifdef HAS_PROCSELFEXE
1377         S_procself_val(aTHX_ GvSV(tmpgv), PL_origargv[0]);
1378 #else
1379 #ifdef OS2
1380         sv_setpv(GvSVn(tmpgv), os2_execname(aTHX));
1381 #else
1382         sv_setpv(GvSVn(tmpgv),PL_origargv[0]);
1383 #endif
1384 #endif
1385     }
1386 }
1387
1388 /*
1389 =for apidoc perl_parse
1390
1391 Tells a Perl interpreter to parse a Perl script.  See L<perlembed>.
1392
1393 =cut
1394 */
1395
1396 int
1397 perl_parse(pTHXx_ XSINIT_t xsinit, int argc, char **argv, char **env)
1398 {
1399     dVAR;
1400     I32 oldscope;
1401     int ret;
1402     dJMPENV;
1403
1404     PERL_UNUSED_VAR(my_perl);
1405
1406 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
1407 #ifdef IAMSUID
1408 #undef IAMSUID
1409     Perl_croak(aTHX_ "suidperl is no longer needed since the kernel can now execute\n\
1410 setuid perl scripts securely.\n");
1411 #endif /* IAMSUID */
1412 #endif
1413
1414 #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT)
1415     /* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
1416      * This MUST be done before any hash stores or fetches take place.
1417      * If you set PL_rehash_seed (and assumedly also PL_rehash_seed_set)
1418      * yourself, it is your responsibility to provide a good random seed!
1419      * You can also define PERL_HASH_SEED in compile time, see hv.h. */
1420     if (!PL_rehash_seed_set)
1421          PL_rehash_seed = get_hash_seed();
1422     {
1423         const char * const s = PerlEnv_getenv("PERL_HASH_SEED_DEBUG");
1424
1425         if (s && (atoi(s) == 1))
1426             PerlIO_printf(Perl_debug_log, "HASH_SEED = %"UVuf"\n", PL_rehash_seed);
1427     }
1428 #endif /* #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT) */
1429
1430     PL_origargc = argc;
1431     PL_origargv = argv;
1432
1433     if (PL_origalen != 0) {
1434         PL_origalen = 1; /* don't use old PL_origalen if perl_parse() is called again */
1435     }
1436     else {
1437         /* Set PL_origalen be the sum of the contiguous argv[]
1438          * elements plus the size of the env in case that it is
1439          * contiguous with the argv[].  This is used in mg.c:Perl_magic_set()
1440          * as the maximum modifiable length of $0.  In the worst case
1441          * the area we are able to modify is limited to the size of
1442          * the original argv[0].  (See below for 'contiguous', though.)
1443          * --jhi */
1444          const char *s = NULL;
1445          int i;
1446          const UV mask =
1447            ~(UV)(PTRSIZE == 4 ? 3 : PTRSIZE == 8 ? 7 : PTRSIZE == 16 ? 15 : 0);
1448          /* Do the mask check only if the args seem like aligned. */
1449          const UV aligned =
1450            (mask < ~(UV)0) && ((PTR2UV(argv[0]) & mask) == PTR2UV(argv[0]));
1451
1452          /* See if all the arguments are contiguous in memory.  Note
1453           * that 'contiguous' is a loose term because some platforms
1454           * align the argv[] and the envp[].  If the arguments look
1455           * like non-aligned, assume that they are 'strictly' or
1456           * 'traditionally' contiguous.  If the arguments look like
1457           * aligned, we just check that they are within aligned
1458           * PTRSIZE bytes.  As long as no system has something bizarre
1459           * like the argv[] interleaved with some other data, we are
1460           * fine.  (Did I just evoke Murphy's Law?)  --jhi */
1461          if (PL_origargv && PL_origargc >= 1 && (s = PL_origargv[0])) {
1462               while (*s) s++;
1463               for (i = 1; i < PL_origargc; i++) {
1464                    if ((PL_origargv[i] == s + 1
1465 #ifdef OS2
1466                         || PL_origargv[i] == s + 2
1467 #endif 
1468                             )
1469                        ||
1470                        (aligned &&
1471                         (PL_origargv[i] >  s &&
1472                          PL_origargv[i] <=
1473                          INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1474                         )
1475                    {
1476                         s = PL_origargv[i];
1477                         while (*s) s++;
1478                    }
1479                    else
1480                         break;
1481               }
1482          }
1483          /* Can we grab env area too to be used as the area for $0? */
1484          if (s && PL_origenviron) {
1485               if ((PL_origenviron[0] == s + 1
1486 #ifdef OS2
1487                    || (PL_origenviron[0] == s + 9 && (s += 8))
1488 #endif 
1489                   )
1490                   ||
1491                   (aligned &&
1492                    (PL_origenviron[0] >  s &&
1493                     PL_origenviron[0] <=
1494                     INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1495                  )
1496               {
1497 #ifndef OS2
1498                    s = PL_origenviron[0];
1499                    while (*s) s++;
1500 #endif
1501                    my_setenv("NoNe  SuCh", NULL);
1502                    /* Force copy of environment. */
1503                    for (i = 1; PL_origenviron[i]; i++) {
1504                         if (PL_origenviron[i] == s + 1
1505                             ||
1506                             (aligned &&
1507                              (PL_origenviron[i] >  s &&
1508                               PL_origenviron[i] <=
1509                               INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1510                            )
1511                         {
1512                              s = PL_origenviron[i];
1513                              while (*s) s++;
1514                         }
1515                         else
1516                              break;
1517                    }
1518               }
1519          }
1520          PL_origalen = s ? s - PL_origargv[0] + 1 : 0;
1521     }
1522
1523     if (PL_do_undump) {
1524
1525         /* Come here if running an undumped a.out. */
1526
1527         PL_origfilename = savepv(argv[0]);
1528         PL_do_undump = FALSE;
1529         cxstack_ix = -1;                /* start label stack again */
1530         init_ids();
1531         assert (!PL_tainted);
1532         TAINT;
1533         S_set_caret_X(aTHX);
1534         TAINT_NOT;
1535         init_postdump_symbols(argc,argv,env);
1536         return 0;
1537     }
1538
1539     if (PL_main_root) {
1540         op_free(PL_main_root);
1541         PL_main_root = Nullop;
1542     }
1543     PL_main_start = Nullop;
1544     SvREFCNT_dec(PL_main_cv);
1545     PL_main_cv = NULL;
1546
1547     time(&PL_basetime);
1548     oldscope = PL_scopestack_ix;
1549     PL_dowarn = G_WARN_OFF;
1550
1551     JMPENV_PUSH(ret);
1552     switch (ret) {
1553     case 0:
1554         parse_body(env,xsinit);
1555         if (PL_checkav)
1556             call_list(oldscope, PL_checkav);
1557         ret = 0;
1558         break;
1559     case 1:
1560         STATUS_ALL_FAILURE;
1561         /* FALL THROUGH */
1562     case 2:
1563         /* my_exit() was called */
1564         while (PL_scopestack_ix > oldscope)
1565             LEAVE;
1566         FREETMPS;
1567         PL_curstash = PL_defstash;
1568         if (PL_checkav)
1569             call_list(oldscope, PL_checkav);
1570         ret = STATUS_EXIT;
1571         break;
1572     case 3:
1573         PerlIO_printf(Perl_error_log, "panic: top_env\n");
1574         ret = 1;
1575         break;
1576     }
1577     JMPENV_POP;
1578     return ret;
1579 }
1580
1581 STATIC void *
1582 S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
1583 {
1584     dVAR;
1585     int argc = PL_origargc;
1586     char **argv = PL_origargv;
1587     const char *scriptname = NULL;
1588     VOL bool dosearch = FALSE;
1589     const char *validarg = "";
1590     register SV *sv;
1591     register char *s;
1592     const char *cddir = NULL;
1593 #ifdef USE_SITECUSTOMIZE
1594     bool minus_f = FALSE;
1595 #endif
1596     int fdscript;
1597
1598     PL_suidscript = -1;
1599     sv_setpvn(PL_linestr,"",0);
1600     sv = newSVpvs("");          /* first used for -I flags */
1601     SAVEFREESV(sv);
1602     init_main_stash();
1603
1604     for (argc--,argv++; argc > 0; argc--,argv++) {
1605         if (argv[0][0] != '-' || !argv[0][1])
1606             break;
1607 #ifdef DOSUID
1608     if (*validarg)
1609         validarg = " PHOOEY ";
1610     else
1611         validarg = argv[0];
1612     /*
1613      * Can we rely on the kernel to start scripts with argv[1] set to
1614      * contain all #! line switches (the whole line)? (argv[0] is set to
1615      * the interpreter name, argv[2] to the script name; argv[3] and
1616      * above may contain other arguments.)
1617      */
1618 #endif
1619         s = argv[0]+1;
1620       reswitch:
1621         switch (*s) {
1622         case 'C':
1623 #ifndef PERL_STRICT_CR
1624         case '\r':
1625 #endif
1626         case ' ':
1627         case '0':
1628         case 'F':
1629         case 'a':
1630         case 'c':
1631         case 'd':
1632         case 'D':
1633         case 'h':
1634         case 'i':
1635         case 'l':
1636         case 'M':
1637         case 'm':
1638         case 'n':
1639         case 'p':
1640         case 's':
1641         case 'u':
1642         case 'U':
1643         case 'v':
1644         case 'W':
1645         case 'X':
1646         case 'w':
1647         case 'A':
1648             if ((s = moreswitches(s)))
1649                 goto reswitch;
1650             break;
1651
1652         case 't':
1653             CHECK_MALLOC_TOO_LATE_FOR('t');
1654             if( !PL_tainting ) {
1655                  PL_taint_warn = TRUE;
1656                  PL_tainting = TRUE;
1657             }
1658             s++;
1659             goto reswitch;
1660         case 'T':
1661             CHECK_MALLOC_TOO_LATE_FOR('T');
1662             PL_tainting = TRUE;
1663             PL_taint_warn = FALSE;
1664             s++;
1665             goto reswitch;
1666
1667         case 'E':
1668             PL_minus_E = TRUE;
1669             /* FALL THROUGH */
1670         case 'e':
1671 #ifdef MACOS_TRADITIONAL
1672             /* ignore -e for Dev:Pseudo argument */
1673             if (argv[1] && !strcmp(argv[1], "Dev:Pseudo"))
1674                 break;
1675 #endif
1676             forbid_setid("-e");
1677             if (!PL_e_script) {
1678                 PL_e_script = newSVpvs("");
1679                 filter_add(read_e_script, NULL);
1680             }
1681             if (*++s)
1682                 sv_catpv(PL_e_script, s);
1683             else if (argv[1]) {
1684                 sv_catpv(PL_e_script, argv[1]);
1685                 argc--,argv++;
1686             }
1687             else
1688                 Perl_croak(aTHX_ "No code specified for -%c", *s);
1689             sv_catpvs(PL_e_script, "\n");
1690             break;
1691
1692         case 'f':
1693 #ifdef USE_SITECUSTOMIZE
1694             minus_f = TRUE;
1695 #endif
1696             s++;
1697             goto reswitch;
1698
1699         case 'I':       /* -I handled both here and in moreswitches() */
1700             forbid_setid("-I");
1701             if (!*++s && (s=argv[1]) != NULL) {
1702                 argc--,argv++;
1703             }
1704             if (s && *s) {
1705                 STRLEN len = strlen(s);
1706                 const char * const p = savepvn(s, len);
1707                 incpush(p, TRUE, TRUE, FALSE, FALSE);
1708                 sv_catpvs(sv, "-I");
1709                 sv_catpvn(sv, p, len);
1710                 sv_catpvs(sv, " ");
1711                 Safefree(p);
1712             }
1713             else
1714                 Perl_croak(aTHX_ "No directory specified for -I");
1715             break;
1716         case 'P':
1717             forbid_setid("-P");
1718             PL_preprocess = TRUE;
1719             s++;
1720             goto reswitch;
1721         case 'S':
1722             forbid_setid("-S");
1723             dosearch = TRUE;
1724             s++;
1725             goto reswitch;
1726         case 'V':
1727             {
1728                 SV *opts_prog;
1729
1730                 if (!PL_preambleav)
1731                     PL_preambleav = newAV();
1732                 av_push(PL_preambleav,
1733                         newSVpvs("use Config;"));
1734                 if (*++s != ':')  {
1735                     STRLEN opts;
1736                 
1737                     opts_prog = newSVpvs("print Config::myconfig(),");
1738 #ifdef VMS
1739                     sv_catpvs(opts_prog,"\"\\nCharacteristics of this PERLSHR image: \\n\",");
1740 #else
1741                     sv_catpvs(opts_prog,"\"\\nCharacteristics of this binary (from libperl): \\n\",");
1742 #endif
1743                     opts = SvCUR(opts_prog);
1744
1745                     Perl_sv_catpv(aTHX_ opts_prog,"\"  Compile-time options:"
1746 #  ifdef DEBUGGING
1747                              " DEBUGGING"
1748 #  endif
1749 #  ifdef DEBUG_LEAKING_SCALARS
1750                              " DEBUG_LEAKING_SCALARS"
1751 #  endif
1752 #  ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
1753                              " DEBUG_LEAKING_SCALARS_FORK_DUMP"
1754 #  endif
1755 #  ifdef FAKE_THREADS
1756                              " FAKE_THREADS"
1757 #  endif
1758 #  ifdef MULTIPLICITY
1759                              " MULTIPLICITY"
1760 #  endif
1761 #  ifdef MYMALLOC
1762                              " MYMALLOC"
1763 #  endif
1764 #  ifdef NO_MATHOMS
1765                             " NO_MATHOMS"
1766 #  endif
1767 #  ifdef PERL_DONT_CREATE_GVSV
1768                              " PERL_DONT_CREATE_GVSV"
1769 #  endif
1770 #  ifdef PERL_GLOBAL_STRUCT
1771                              " PERL_GLOBAL_STRUCT"
1772 #  endif
1773 #  ifdef PERL_IMPLICIT_CONTEXT
1774                              " PERL_IMPLICIT_CONTEXT"
1775 #  endif
1776 #  ifdef PERL_IMPLICIT_SYS
1777                              " PERL_IMPLICIT_SYS"
1778 #  endif
1779 #  ifdef PERL_MALLOC_WRAP
1780                              " PERL_MALLOC_WRAP"
1781 #  endif
1782 #  ifdef PERL_NEED_APPCTX
1783                              " PERL_NEED_APPCTX"
1784 #  endif
1785 #  ifdef PERL_NEED_TIMESBASE
1786                              " PERL_NEED_TIMESBASE"
1787 #  endif
1788 #  ifdef PERL_OLD_COPY_ON_WRITE
1789                              " PERL_OLD_COPY_ON_WRITE"
1790 #  endif
1791 #  ifdef PERL_TRACK_MEMPOOL
1792                              " PERL_TRACK_MEMPOOL"
1793 #  endif
1794 #  ifdef PERL_USE_SAFE_PUTENV
1795                              " PERL_USE_SAFE_PUTENV"
1796 #  endif
1797 #ifdef PERL_USES_PL_PIDSTATUS
1798                              " PERL_USES_PL_PIDSTATUS"
1799 #endif
1800 #  ifdef PL_OP_SLAB_ALLOC
1801                              " PL_OP_SLAB_ALLOC"
1802 #  endif
1803 #  ifdef THREADS_HAVE_PIDS
1804                              " THREADS_HAVE_PIDS"
1805 #  endif
1806 #  ifdef USE_5005THREADS
1807                              " USE_5005THREADS"
1808 #  endif
1809 #  ifdef USE_64_BIT_ALL
1810                              " USE_64_BIT_ALL"
1811 #  endif
1812 #  ifdef USE_64_BIT_INT
1813                              " USE_64_BIT_INT"
1814 #  endif
1815 #  ifdef USE_ITHREADS
1816                              " USE_ITHREADS"
1817 #  endif
1818 #  ifdef USE_LARGE_FILES
1819                              " USE_LARGE_FILES"
1820 #  endif
1821 #  ifdef USE_LONG_DOUBLE
1822                              " USE_LONG_DOUBLE"
1823 #  endif
1824 #  ifdef USE_PERLIO
1825                              " USE_PERLIO"
1826 #  endif
1827 #  ifdef USE_REENTRANT_API
1828                              " USE_REENTRANT_API"
1829 #  endif
1830 #  ifdef USE_SFIO
1831                              " USE_SFIO"
1832 #  endif
1833 #  ifdef USE_SITECUSTOMIZE
1834                              " USE_SITECUSTOMIZE"
1835 #  endif               
1836 #  ifdef USE_SOCKS
1837                              " USE_SOCKS"
1838 #  endif
1839                              );
1840
1841                     while (SvCUR(opts_prog) > opts+76) {
1842                         /* find last space after "options: " and before col 76
1843                          */
1844
1845                         const char *space;
1846                         char * const pv = SvPV_nolen(opts_prog);
1847                         const char c = pv[opts+76];
1848                         pv[opts+76] = '\0';
1849                         space = strrchr(pv+opts+26, ' ');
1850                         pv[opts+76] = c;
1851                         if (!space) break; /* "Can't happen" */
1852
1853                         /* break the line before that space */
1854
1855                         opts = space - pv;
1856                         Perl_sv_insert(aTHX_ opts_prog, opts, 0,
1857                                   STR_WITH_LEN("\\n                       "));
1858                     }
1859
1860                     sv_catpvs(opts_prog,"\\n\",");
1861
1862 #if defined(LOCAL_PATCH_COUNT)
1863                     if (LOCAL_PATCH_COUNT > 0) {
1864                         int i;
1865                         sv_catpvs(opts_prog,
1866                                  "\"  Locally applied patches:\\n\",");
1867                         for (i = 1; i <= LOCAL_PATCH_COUNT; i++) {
1868                             if (PL_localpatches[i])
1869                                 Perl_sv_catpvf(aTHX_ opts_prog,"q%c\t%s\n%c,",
1870                                                0, PL_localpatches[i], 0);
1871                         }
1872                     }
1873 #endif
1874                     Perl_sv_catpvf(aTHX_ opts_prog,
1875                                    "\"  Built under %s\\n\"",OSNAME);
1876 #ifdef __DATE__
1877 #  ifdef __TIME__
1878                     Perl_sv_catpvf(aTHX_ opts_prog,
1879                                    ",\"  Compiled at %s %s\\n\"",__DATE__,
1880                                    __TIME__);
1881 #  else
1882                     Perl_sv_catpvf(aTHX_ opts_prog,",\"  Compiled on %s\\n\"",
1883                                    __DATE__);
1884 #  endif
1885 #endif
1886                     sv_catpvs(opts_prog, "; $\"=\"\\n    \"; "
1887                              "@env = map { \"$_=\\\"$ENV{$_}\\\"\" } "
1888                              "sort grep {/^PERL/} keys %ENV; ");
1889 #ifdef __CYGWIN__
1890                     sv_catpvs(opts_prog,
1891                              "push @env, \"CYGWIN=\\\"$ENV{CYGWIN}\\\"\";");
1892 #endif
1893                     sv_catpvs(opts_prog, 
1894                              "print \"  \\%ENV:\\n    @env\\n\" if @env;"
1895                              "print \"  \\@INC:\\n    @INC\\n\";");
1896                 }
1897                 else {
1898                     ++s;
1899                     opts_prog = Perl_newSVpvf(aTHX_
1900                                               "Config::config_vars(qw%c%s%c)",
1901                                               0, s, 0);
1902                     s += strlen(s);
1903                 }
1904                 av_push(PL_preambleav, opts_prog);
1905                 /* don't look for script or read stdin */
1906                 scriptname = BIT_BUCKET;
1907                 goto reswitch;
1908             }
1909         case 'x':
1910             PL_doextract = TRUE;
1911             s++;
1912             if (*s)
1913                 cddir = s;
1914             break;
1915         case 0:
1916             break;
1917         case '-':
1918             if (!*++s || isSPACE(*s)) {
1919                 argc--,argv++;
1920                 goto switch_end;
1921             }
1922             /* catch use of gnu style long options */
1923             if (strEQ(s, "version")) {
1924                 s = (char *)"v";
1925                 goto reswitch;
1926             }
1927             if (strEQ(s, "help")) {
1928                 s = (char *)"h";
1929                 goto reswitch;
1930             }
1931             s--;
1932             /* FALL THROUGH */
1933         default:
1934             Perl_croak(aTHX_ "Unrecognized switch: -%s  (-h will show valid options)",s);
1935         }
1936     }
1937   switch_end:
1938
1939     if (
1940 #ifndef SECURE_INTERNAL_GETENV
1941         !PL_tainting &&
1942 #endif
1943         (s = PerlEnv_getenv("PERL5OPT")))
1944     {
1945         const char *popt = s;
1946         while (isSPACE(*s))
1947             s++;
1948         if (*s == '-' && *(s+1) == 'T') {
1949             CHECK_MALLOC_TOO_LATE_FOR('T');
1950             PL_tainting = TRUE;
1951             PL_taint_warn = FALSE;
1952         }
1953         else {
1954             char *popt_copy = NULL;
1955             while (s && *s) {
1956                 char *d;
1957                 while (isSPACE(*s))
1958                     s++;
1959                 if (*s == '-') {
1960                     s++;
1961                     if (isSPACE(*s))
1962                         continue;
1963                 }
1964                 d = s;
1965                 if (!*s)
1966                     break;
1967                 if (!strchr("CDIMUdmtwA", *s))
1968                     Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s);
1969                 while (++s && *s) {
1970                     if (isSPACE(*s)) {
1971                         if (!popt_copy) {
1972                             popt_copy = SvPVX(sv_2mortal(newSVpv(popt,0)));
1973                             s = popt_copy + (s - popt);
1974                             d = popt_copy + (d - popt);
1975                         }
1976                         *s++ = '\0';
1977                         break;
1978                     }
1979                 }
1980                 if (*d == 't') {
1981                     if( !PL_tainting ) {
1982                         PL_taint_warn = TRUE;
1983                         PL_tainting = TRUE;
1984                     }
1985                 } else {
1986                     moreswitches(d);
1987                 }
1988             }
1989         }
1990     }
1991
1992 #ifdef USE_SITECUSTOMIZE
1993     if (!minus_f) {
1994         if (!PL_preambleav)
1995             PL_preambleav = newAV();
1996         av_unshift(PL_preambleav, 1);
1997         (void)av_store(PL_preambleav, 0, Perl_newSVpvf(aTHX_ "BEGIN { do '%s/sitecustomize.pl' }", SITELIB_EXP));
1998     }
1999 #endif
2000
2001     if (PL_taint_warn && PL_dowarn != G_WARN_ALL_OFF) {
2002        PL_compiling.cop_warnings = newSVpvn(WARN_TAINTstring, WARNsize);
2003     }
2004
2005     if (!scriptname)
2006         scriptname = argv[0];
2007     if (PL_e_script) {
2008         argc++,argv--;
2009         scriptname = BIT_BUCKET;        /* don't look for script or read stdin */
2010     }
2011     else if (scriptname == NULL) {
2012 #ifdef MSDOS
2013         if ( PerlLIO_isatty(PerlIO_fileno(PerlIO_stdin())) )
2014             moreswitches("h");
2015 #endif
2016         scriptname = "-";
2017     }
2018
2019     /* Set $^X early so that it can be used for relocatable paths in @INC  */
2020     assert (!PL_tainted);
2021     TAINT;
2022     S_set_caret_X(aTHX);
2023     TAINT_NOT;
2024     init_perllib();
2025
2026     fdscript = open_script(scriptname,dosearch,sv);
2027
2028     validate_suid(validarg, scriptname, fdscript);
2029
2030 #ifndef PERL_MICRO
2031 #if defined(SIGCHLD) || defined(SIGCLD)
2032     {
2033 #ifndef SIGCHLD
2034 #  define SIGCHLD SIGCLD
2035 #endif
2036         Sighandler_t sigstate = rsignal_state(SIGCHLD);
2037         if (sigstate == (Sighandler_t) SIG_IGN) {
2038             if (ckWARN(WARN_SIGNAL))
2039                 Perl_warner(aTHX_ packWARN(WARN_SIGNAL),
2040                             "Can't ignore signal CHLD, forcing to default");
2041             (void)rsignal(SIGCHLD, (Sighandler_t)SIG_DFL);
2042         }
2043     }
2044 #endif
2045 #endif
2046
2047 #ifdef MACOS_TRADITIONAL
2048     if (PL_doextract || gMacPerl_AlwaysExtract) {
2049 #else
2050     if (PL_doextract) {
2051 #endif
2052         find_beginning();
2053         if (cddir && PerlDir_chdir( (char *)cddir ) < 0)
2054             Perl_croak(aTHX_ "Can't chdir to %s",cddir);
2055
2056     }
2057
2058     PL_main_cv = PL_compcv = (CV*)newSV(0);
2059     sv_upgrade((SV *)PL_compcv, SVt_PVCV);
2060     CvUNIQUE_on(PL_compcv);
2061
2062     CvPADLIST(PL_compcv) = pad_new(0);
2063 #ifdef USE_5005THREADS
2064     CvOWNER(PL_compcv) = 0;
2065     Newx(CvMUTEXP(PL_compcv), 1, perl_mutex);
2066     MUTEX_INIT(CvMUTEXP(PL_compcv));
2067 #endif /* USE_5005THREADS */
2068
2069     boot_core_PerlIO();
2070     boot_core_UNIVERSAL();
2071     boot_core_xsutils();
2072
2073     if (xsinit)
2074         (*xsinit)(aTHX);        /* in case linked C routines want magical variables */
2075 #ifndef PERL_MICRO
2076 #if defined(VMS) || defined(WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(EPOC) || defined(SYMBIAN)
2077     init_os_extras();
2078 #endif
2079 #endif
2080
2081 #ifdef USE_SOCKS
2082 #   ifdef HAS_SOCKS5_INIT
2083     socks5_init(argv[0]);
2084 #   else
2085     SOCKSinit(argv[0]);
2086 #   endif
2087 #endif
2088
2089     init_predump_symbols();
2090     /* init_postdump_symbols not currently designed to be called */
2091     /* more than once (ENV isn't cleared first, for example)     */
2092     /* But running with -u leaves %ENV & @ARGV undefined!    XXX */
2093     if (!PL_do_undump)
2094         init_postdump_symbols(argc,argv,env);
2095
2096     /* PL_unicode is turned on by -C, or by $ENV{PERL_UNICODE},
2097      * or explicitly in some platforms.
2098      * locale.c:Perl_init_i18nl10n() if the environment
2099      * look like the user wants to use UTF-8. */
2100 #if defined(__SYMBIAN32__)
2101     PL_unicode = PERL_UNICODE_STD_FLAG; /* See PERL_SYMBIAN_CONSOLE_UTF8. */
2102 #endif
2103     if (PL_unicode) {
2104          /* Requires init_predump_symbols(). */
2105          if (!(PL_unicode & PERL_UNICODE_LOCALE_FLAG) || PL_utf8locale) {
2106               IO* io;
2107               PerlIO* fp;
2108               SV* sv;
2109
2110               /* Turn on UTF-8-ness on STDIN, STDOUT, STDERR
2111                * and the default open disciplines. */
2112               if ((PL_unicode & PERL_UNICODE_STDIN_FLAG) &&
2113                   PL_stdingv  && (io = GvIO(PL_stdingv)) &&
2114                   (fp = IoIFP(io)))
2115                    PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2116               if ((PL_unicode & PERL_UNICODE_STDOUT_FLAG) &&
2117                   PL_defoutgv && (io = GvIO(PL_defoutgv)) &&
2118                   (fp = IoOFP(io)))
2119                    PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2120               if ((PL_unicode & PERL_UNICODE_STDERR_FLAG) &&
2121                   PL_stderrgv && (io = GvIO(PL_stderrgv)) &&
2122                   (fp = IoOFP(io)))
2123                    PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2124               if ((PL_unicode & PERL_UNICODE_INOUT_FLAG) &&
2125                   (sv = GvSV(gv_fetchpvs("\017PEN", GV_ADD|GV_NOTQUAL,
2126                                          SVt_PV)))) {
2127                    U32 in  = PL_unicode & PERL_UNICODE_IN_FLAG;
2128                    U32 out = PL_unicode & PERL_UNICODE_OUT_FLAG;
2129                    if (in) {
2130                         if (out)
2131                              sv_setpvn(sv, ":utf8\0:utf8", 11);
2132                         else
2133                              sv_setpvn(sv, ":utf8\0", 6);
2134                    }
2135                    else if (out)
2136                         sv_setpvn(sv, "\0:utf8", 6);
2137                    SvSETMAGIC(sv);
2138               }
2139          }
2140     }
2141
2142     if ((s = PerlEnv_getenv("PERL_SIGNALS"))) {
2143          if (strEQ(s, "unsafe"))
2144               PL_signals |=  PERL_SIGNALS_UNSAFE_FLAG;
2145          else if (strEQ(s, "safe"))
2146               PL_signals &= ~PERL_SIGNALS_UNSAFE_FLAG;
2147          else
2148               Perl_croak(aTHX_ "PERL_SIGNALS illegal: \"%s\"", s);
2149     }
2150
2151     init_lexer();
2152
2153     /* now parse the script */
2154
2155     SETERRNO(0,SS_NORMAL);
2156     PL_error_count = 0;
2157 #ifdef MACOS_TRADITIONAL
2158     if (gMacPerl_SyntaxError = (yyparse() || PL_error_count)) {
2159         if (PL_minus_c)
2160             Perl_croak(aTHX_ "%s had compilation errors.\n", MacPerl_MPWFileName(PL_origfilename));
2161         else {
2162             Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
2163                        MacPerl_MPWFileName(PL_origfilename));
2164         }
2165     }
2166 #else
2167     if (yyparse() || PL_error_count) {
2168         if (PL_minus_c)
2169             Perl_croak(aTHX_ "%s had compilation errors.\n", PL_origfilename);
2170         else {
2171             Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
2172                        PL_origfilename);
2173         }
2174     }
2175 #endif
2176     CopLINE_set(PL_curcop, 0);
2177     PL_curstash = PL_defstash;
2178     PL_preprocess = FALSE;
2179     if (PL_e_script) {
2180         SvREFCNT_dec(PL_e_script);
2181         PL_e_script = NULL;
2182     }
2183
2184     if (PL_do_undump)
2185         my_unexec();
2186
2187     if (isWARN_ONCE) {
2188         SAVECOPFILE(PL_curcop);
2189         SAVECOPLINE(PL_curcop);
2190         gv_check(PL_defstash);
2191     }
2192
2193     LEAVE;
2194     FREETMPS;
2195
2196 #ifdef MYMALLOC
2197     if ((s=PerlEnv_getenv("PERL_DEBUG_MSTATS")) && atoi(s) >= 2)
2198         dump_mstats("after compilation:");
2199 #endif
2200
2201     ENTER;
2202     PL_restartop = 0;
2203     return NULL;
2204 }
2205
2206 /*
2207 =for apidoc perl_run
2208
2209 Tells a Perl interpreter to run.  See L<perlembed>.
2210
2211 =cut
2212 */
2213
2214 int
2215 perl_run(pTHXx)
2216 {
2217     dVAR;
2218     I32 oldscope;
2219     int ret = 0;
2220     dJMPENV;
2221
2222     PERL_UNUSED_ARG(my_perl);
2223
2224     oldscope = PL_scopestack_ix;
2225 #ifdef VMS
2226     VMSISH_HUSHED = 0;
2227 #endif
2228
2229     JMPENV_PUSH(ret);
2230     switch (ret) {
2231     case 1:
2232         cxstack_ix = -1;                /* start context stack again */
2233         goto redo_body;
2234     case 0:                             /* normal completion */
2235  redo_body:
2236         run_body(oldscope);
2237         /* FALL THROUGH */
2238     case 2:                             /* my_exit() */
2239         while (PL_scopestack_ix > oldscope)
2240             LEAVE;
2241         FREETMPS;
2242         PL_curstash = PL_defstash;
2243         if (!(PL_exit_flags & PERL_EXIT_DESTRUCT_END) &&
2244             PL_endav && !PL_minus_c)
2245             call_list(oldscope, PL_endav);
2246 #ifdef MYMALLOC
2247         if (PerlEnv_getenv("PERL_DEBUG_MSTATS"))
2248             dump_mstats("after execution:  ");
2249 #endif
2250         ret = STATUS_EXIT;
2251         break;
2252     case 3:
2253         if (PL_restartop) {
2254             POPSTACK_TO(PL_mainstack);
2255             goto redo_body;
2256         }
2257         PerlIO_printf(Perl_error_log, "panic: restartop\n");
2258         FREETMPS;
2259         ret = 1;
2260         break;
2261     }
2262
2263     JMPENV_POP;
2264     return ret;
2265 }
2266
2267
2268 STATIC void
2269 S_run_body(pTHX_ I32 oldscope)
2270 {
2271     dVAR;
2272     DEBUG_r(PerlIO_printf(Perl_debug_log, "%s $` $& $' support.\n",
2273                     PL_sawampersand ? "Enabling" : "Omitting"));
2274
2275     if (!PL_restartop) {
2276         DEBUG_x(dump_all());
2277 #ifdef DEBUGGING
2278         if (!DEBUG_q_TEST)
2279           PERL_DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n"));
2280 #endif
2281         DEBUG_S(PerlIO_printf(Perl_debug_log, "main thread is 0x%"UVxf"\n",
2282                               PTR2UV(thr)));
2283
2284         if (PL_minus_c) {
2285 #ifdef MACOS_TRADITIONAL
2286             PerlIO_printf(Perl_error_log, "%s%s syntax OK\n",
2287                 (gMacPerl_ErrorFormat ? "# " : ""),
2288                 MacPerl_MPWFileName(PL_origfilename));
2289 #else
2290             PerlIO_printf(Perl_error_log, "%s syntax OK\n", PL_origfilename);
2291 #endif
2292             my_exit(0);
2293         }
2294         if (PERLDB_SINGLE && PL_DBsingle)
2295             sv_setiv(PL_DBsingle, 1);
2296         if (PL_initav)
2297             call_list(oldscope, PL_initav);
2298     }
2299
2300     /* do it */
2301
2302     if (PL_restartop) {
2303         PL_op = PL_restartop;
2304         PL_restartop = 0;
2305         CALLRUNOPS(aTHX);
2306     }
2307     else if (PL_main_start) {
2308         CvDEPTH(PL_main_cv) = 1;
2309         PL_op = PL_main_start;
2310         CALLRUNOPS(aTHX);
2311     }
2312     my_exit(0);
2313     /* NOTREACHED */
2314 }
2315
2316 /*
2317 =head1 SV Manipulation Functions
2318
2319 =for apidoc p||get_sv
2320
2321 Returns the SV of the specified Perl scalar.  If C<create> is set and the
2322 Perl variable does not exist then it will be created.  If C<create> is not
2323 set and the variable does not exist then NULL is returned.
2324
2325 =cut
2326 */
2327
2328 SV*
2329 Perl_get_sv(pTHX_ const char *name, I32 create)
2330 {
2331     GV *gv;
2332 #ifdef USE_5005THREADS
2333     if (name[1] == '\0' && !isALPHA(name[0])) {
2334         PADOFFSET tmp = find_threadsv(name);
2335         if (tmp != NOT_IN_PAD)
2336             return THREADSV(tmp);
2337     }
2338 #endif /* USE_5005THREADS */
2339     gv = gv_fetchpv(name, create, SVt_PV);
2340     if (gv)
2341         return GvSV(gv);
2342     return NULL;
2343 }
2344
2345 /*
2346 =head1 Array Manipulation Functions
2347
2348 =for apidoc p||get_av
2349
2350 Returns the AV of the specified Perl array.  If C<create> is set and the
2351 Perl variable does not exist then it will be created.  If C<create> is not
2352 set and the variable does not exist then NULL is returned.
2353
2354 =cut
2355 */
2356
2357 AV*
2358 Perl_get_av(pTHX_ const char *name, I32 create)
2359 {
2360     GV* const gv = gv_fetchpv(name, create, SVt_PVAV);
2361     if (create)
2362         return GvAVn(gv);
2363     if (gv)
2364         return GvAV(gv);
2365     return NULL;
2366 }
2367
2368 /*
2369 =head1 Hash Manipulation Functions
2370
2371 =for apidoc p||get_hv
2372
2373 Returns the HV of the specified Perl hash.  If C<create> is set and the
2374 Perl variable does not exist then it will be created.  If C<create> is not
2375 set and the variable does not exist then NULL is returned.
2376
2377 =cut
2378 */
2379
2380 HV*
2381 Perl_get_hv(pTHX_ const char *name, I32 create)
2382 {
2383     GV* const gv = gv_fetchpv(name, create, SVt_PVHV);
2384     if (create)
2385         return GvHVn(gv);
2386     if (gv)
2387         return GvHV(gv);
2388     return NULL;
2389 }
2390
2391 /*
2392 =head1 CV Manipulation Functions
2393
2394 =for apidoc p||get_cv
2395
2396 Returns the CV of the specified Perl subroutine.  If C<create> is set and
2397 the Perl subroutine does not exist then it will be declared (which has the
2398 same effect as saying C<sub name;>).  If C<create> is not set and the
2399 subroutine does not exist then NULL is returned.
2400
2401 =cut
2402 */
2403
2404 CV*
2405 Perl_get_cv(pTHX_ const char *name, I32 create)
2406 {
2407     GV* const gv = gv_fetchpv(name, create, SVt_PVCV);
2408     /* XXX unsafe for threads if eval_owner isn't held */
2409     /* XXX this is probably not what they think they're getting.
2410      * It has the same effect as "sub name;", i.e. just a forward
2411      * declaration! */
2412     if (create && !GvCVu(gv))
2413         return newSUB(start_subparse(FALSE, 0),
2414                       newSVOP(OP_CONST, 0, newSVpv(name,0)),
2415                       Nullop,
2416                       Nullop);
2417     if (gv)
2418         return GvCVu(gv);
2419     return NULL;
2420 }
2421
2422 /* Be sure to refetch the stack pointer after calling these routines. */
2423
2424 /*
2425
2426 =head1 Callback Functions
2427
2428 =for apidoc p||call_argv
2429
2430 Performs a callback to the specified Perl sub.  See L<perlcall>.
2431
2432 =cut
2433 */
2434
2435 I32
2436 Perl_call_argv(pTHX_ const char *sub_name, I32 flags, register char **argv)
2437
2438                         /* See G_* flags in cop.h */
2439                         /* null terminated arg list */
2440 {
2441     dVAR;
2442     dSP;
2443
2444     PUSHMARK(SP);
2445     if (argv) {
2446         while (*argv) {
2447             XPUSHs(sv_2mortal(newSVpv(*argv,0)));
2448             argv++;
2449         }
2450         PUTBACK;
2451     }
2452     return call_pv(sub_name, flags);
2453 }
2454
2455 /*
2456 =for apidoc p||call_pv
2457
2458 Performs a callback to the specified Perl sub.  See L<perlcall>.
2459
2460 =cut
2461 */
2462
2463 I32
2464 Perl_call_pv(pTHX_ const char *sub_name, I32 flags)
2465                         /* name of the subroutine */
2466                         /* See G_* flags in cop.h */
2467 {
2468     return call_sv((SV*)get_cv(sub_name, TRUE), flags);
2469 }
2470
2471 /*
2472 =for apidoc p||call_method
2473
2474 Performs a callback to the specified Perl method.  The blessed object must
2475 be on the stack.  See L<perlcall>.
2476
2477 =cut
2478 */
2479
2480 I32
2481 Perl_call_method(pTHX_ const char *methname, I32 flags)
2482                         /* name of the subroutine */
2483                         /* See G_* flags in cop.h */
2484 {
2485     return call_sv(sv_2mortal(newSVpv(methname,0)), flags | G_METHOD);
2486 }
2487
2488 /* May be called with any of a CV, a GV, or an SV containing the name. */
2489 /*
2490 =for apidoc p||call_sv
2491
2492 Performs a callback to the Perl sub whose name is in the SV.  See
2493 L<perlcall>.
2494
2495 =cut
2496 */
2497
2498 I32
2499 Perl_call_sv(pTHX_ SV *sv, I32 flags)
2500                         /* See G_* flags in cop.h */
2501 {
2502     dVAR; dSP;
2503     LOGOP myop;         /* fake syntax tree node */
2504     UNOP method_op;
2505     I32 oldmark;
2506     volatile I32 retval = 0;
2507     I32 oldscope;
2508     bool oldcatch = CATCH_GET;
2509     int ret;
2510     OP* const oldop = PL_op;
2511     dJMPENV;
2512
2513     if (flags & G_DISCARD) {
2514         ENTER;
2515         SAVETMPS;
2516     }
2517
2518     Zero(&myop, 1, LOGOP);
2519     myop.op_next = Nullop;
2520     if (!(flags & G_NOARGS))
2521         myop.op_flags |= OPf_STACKED;
2522     myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
2523                       (flags & G_ARRAY) ? OPf_WANT_LIST :
2524                       OPf_WANT_SCALAR);
2525     SAVEOP();
2526     PL_op = (OP*)&myop;
2527
2528     EXTEND(PL_stack_sp, 1);
2529     *++PL_stack_sp = sv;
2530     oldmark = TOPMARK;
2531     oldscope = PL_scopestack_ix;
2532
2533     if (PERLDB_SUB && PL_curstash != PL_debstash
2534            /* Handle first BEGIN of -d. */
2535           && (PL_DBcv || (PL_DBcv = GvCV(PL_DBsub)))
2536            /* Try harder, since this may have been a sighandler, thus
2537             * curstash may be meaningless. */
2538           && (SvTYPE(sv) != SVt_PVCV || CvSTASH((CV*)sv) != PL_debstash)
2539           && !(flags & G_NODEBUG))
2540         PL_op->op_private |= OPpENTERSUB_DB;
2541
2542     if (flags & G_METHOD) {
2543         Zero(&method_op, 1, UNOP);
2544         method_op.op_next = PL_op;
2545         method_op.op_ppaddr = PL_ppaddr[OP_METHOD];
2546         myop.op_ppaddr = PL_ppaddr[OP_ENTERSUB];
2547         PL_op = (OP*)&method_op;
2548     }
2549
2550     if (!(flags & G_EVAL)) {
2551         CATCH_SET(TRUE);
2552         call_body((OP*)&myop, FALSE);
2553         retval = PL_stack_sp - (PL_stack_base + oldmark);
2554         CATCH_SET(oldcatch);
2555     }
2556     else {
2557         myop.op_other = (OP*)&myop;
2558         PL_markstack_ptr--;
2559         /* we're trying to emulate pp_entertry() here */
2560         {
2561             register PERL_CONTEXT *cx;
2562             const I32 gimme = GIMME_V;
2563         
2564             ENTER;
2565             SAVETMPS;
2566         
2567             PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
2568             PUSHEVAL(cx, 0, 0);
2569             PL_eval_root = PL_op;             /* Only needed so that goto works right. */
2570         
2571             PL_in_eval = EVAL_INEVAL;
2572             if (flags & G_KEEPERR)
2573                 PL_in_eval |= EVAL_KEEPERR;
2574             else
2575                 sv_setpvn(ERRSV,"",0);
2576         }
2577         PL_markstack_ptr++;
2578
2579         JMPENV_PUSH(ret);
2580         switch (ret) {
2581         case 0:
2582  redo_body:
2583             call_body((OP*)&myop, FALSE);
2584             retval = PL_stack_sp - (PL_stack_base + oldmark);
2585             if (!(flags & G_KEEPERR))
2586                 sv_setpvn(ERRSV,"",0);
2587             break;
2588         case 1:
2589             STATUS_ALL_FAILURE;
2590             /* FALL THROUGH */
2591         case 2:
2592             /* my_exit() was called */
2593             PL_curstash = PL_defstash;
2594             FREETMPS;
2595             JMPENV_POP;
2596             if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
2597                 Perl_croak(aTHX_ "Callback called exit");
2598             my_exit_jump();
2599             /* NOTREACHED */
2600         case 3:
2601             if (PL_restartop) {
2602                 PL_op = PL_restartop;
2603                 PL_restartop = 0;
2604                 goto redo_body;
2605             }
2606             PL_stack_sp = PL_stack_base + oldmark;
2607             if (flags & G_ARRAY)
2608                 retval = 0;
2609             else {
2610                 retval = 1;
2611                 *++PL_stack_sp = &PL_sv_undef;
2612             }
2613             break;
2614         }
2615
2616         if (PL_scopestack_ix > oldscope) {
2617             SV **newsp;
2618             PMOP *newpm;
2619             I32 gimme;
2620             register PERL_CONTEXT *cx;
2621             I32 optype;
2622
2623             POPBLOCK(cx,newpm);
2624             POPEVAL(cx);
2625             PL_curpm = newpm;
2626             LEAVE;
2627             PERL_UNUSED_VAR(newsp);
2628             PERL_UNUSED_VAR(gimme);
2629             PERL_UNUSED_VAR(optype);
2630         }
2631         JMPENV_POP;
2632     }
2633
2634     if (flags & G_DISCARD) {
2635         PL_stack_sp = PL_stack_base + oldmark;
2636         retval = 0;
2637         FREETMPS;
2638         LEAVE;
2639     }
2640     PL_op = oldop;
2641     return retval;
2642 }
2643
2644 STATIC void
2645 S_call_body(pTHX_ const OP *myop, bool is_eval)
2646 {
2647     dVAR;
2648     if (PL_op == myop) {
2649         if (is_eval)
2650             PL_op = Perl_pp_entereval(aTHX);    /* this doesn't do a POPMARK */
2651         else
2652             PL_op = Perl_pp_entersub(aTHX);     /* this does */
2653     }
2654     if (PL_op)
2655         CALLRUNOPS(aTHX);
2656 }
2657
2658 /* Eval a string. The G_EVAL flag is always assumed. */
2659
2660 /*
2661 =for apidoc p||eval_sv
2662
2663 Tells Perl to C<eval> the string in the SV.
2664
2665 =cut
2666 */
2667
2668 I32
2669 Perl_eval_sv(pTHX_ SV *sv, I32 flags)
2670
2671                         /* See G_* flags in cop.h */
2672 {
2673     dVAR;
2674     dSP;
2675     UNOP myop;          /* fake syntax tree node */
2676     volatile I32 oldmark = SP - PL_stack_base;
2677     volatile I32 retval = 0;
2678     int ret;
2679     OP* const oldop = PL_op;
2680     dJMPENV;
2681
2682     if (flags & G_DISCARD) {
2683         ENTER;
2684         SAVETMPS;
2685     }
2686
2687     SAVEOP();
2688     PL_op = (OP*)&myop;
2689     Zero(PL_op, 1, UNOP);
2690     EXTEND(PL_stack_sp, 1);
2691     *++PL_stack_sp = sv;
2692
2693     if (!(flags & G_NOARGS))
2694         myop.op_flags = OPf_STACKED;
2695     myop.op_next = Nullop;
2696     myop.op_type = OP_ENTEREVAL;
2697     myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
2698                       (flags & G_ARRAY) ? OPf_WANT_LIST :
2699                       OPf_WANT_SCALAR);
2700     if (flags & G_KEEPERR)
2701         myop.op_flags |= OPf_SPECIAL;
2702
2703     /* fail now; otherwise we could fail after the JMPENV_PUSH but
2704      * before a PUSHEVAL, which corrupts the stack after a croak */
2705     TAINT_PROPER("eval_sv()");
2706
2707     JMPENV_PUSH(ret);
2708     switch (ret) {
2709     case 0:
2710  redo_body:
2711         call_body((OP*)&myop,TRUE);
2712         retval = PL_stack_sp - (PL_stack_base + oldmark);
2713         if (!(flags & G_KEEPERR))
2714             sv_setpvn(ERRSV,"",0);
2715         break;
2716     case 1:
2717         STATUS_ALL_FAILURE;
2718         /* FALL THROUGH */
2719     case 2:
2720         /* my_exit() was called */
2721         PL_curstash = PL_defstash;
2722         FREETMPS;
2723         JMPENV_POP;
2724         if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
2725             Perl_croak(aTHX_ "Callback called exit");
2726         my_exit_jump();
2727         /* NOTREACHED */
2728     case 3:
2729         if (PL_restartop) {
2730             PL_op = PL_restartop;
2731             PL_restartop = 0;
2732             goto redo_body;
2733         }
2734         PL_stack_sp = PL_stack_base + oldmark;
2735         if (flags & G_ARRAY)
2736             retval = 0;
2737         else {
2738             retval = 1;
2739             *++PL_stack_sp = &PL_sv_undef;
2740         }
2741         break;
2742     }
2743
2744     JMPENV_POP;
2745     if (flags & G_DISCARD) {
2746         PL_stack_sp = PL_stack_base + oldmark;
2747         retval = 0;
2748         FREETMPS;
2749         LEAVE;
2750     }
2751     PL_op = oldop;
2752     return retval;
2753 }
2754
2755 /*
2756 =for apidoc p||eval_pv
2757
2758 Tells Perl to C<eval> the given string and return an SV* result.
2759
2760 =cut
2761 */
2762
2763 SV*
2764 Perl_eval_pv(pTHX_ const char *p, I32 croak_on_error)
2765 {
2766     dVAR;
2767     dSP;
2768     SV* sv = newSVpv(p, 0);
2769
2770     eval_sv(sv, G_SCALAR);
2771     SvREFCNT_dec(sv);
2772
2773     SPAGAIN;
2774     sv = POPs;
2775     PUTBACK;
2776
2777     if (croak_on_error && SvTRUE(ERRSV)) {
2778         Perl_croak(aTHX_ SvPVx_nolen_const(ERRSV));
2779     }
2780
2781     return sv;
2782 }
2783
2784 /* Require a module. */
2785
2786 /*
2787 =head1 Embedding Functions
2788
2789 =for apidoc p||require_pv
2790
2791 Tells Perl to C<require> the file named by the string argument.  It is
2792 analogous to the Perl code C<eval "require '$file'">.  It's even
2793 implemented that way; consider using load_module instead.
2794
2795 =cut */
2796
2797 void
2798 Perl_require_pv(pTHX_ const char *pv)
2799 {
2800     dVAR;
2801     dSP;
2802     SV* sv;
2803     PUSHSTACKi(PERLSI_REQUIRE);
2804     PUTBACK;
2805     sv = Perl_newSVpvf(aTHX_ "require q%c%s%c", 0, pv, 0);
2806     eval_sv(sv_2mortal(sv), G_DISCARD);
2807     SPAGAIN;
2808     POPSTACK;
2809 }
2810
2811 void
2812 Perl_magicname(pTHX_ const char *sym, const char *name, I32 namlen)
2813 {
2814     register GV * const gv = gv_fetchpv(sym, GV_ADD, SVt_PV);
2815
2816     if (gv)
2817         sv_magic(GvSV(gv), (SV*)gv, PERL_MAGIC_sv, name, namlen);
2818 }
2819
2820 STATIC void
2821 S_usage(pTHX_ const char *name)         /* XXX move this out into a module ? */
2822 {
2823     /* This message really ought to be max 23 lines.
2824      * Removed -h because the user already knows that option. Others? */
2825
2826     static const char * const usage_msg[] = {
2827 "-0[octal]         specify record separator (\\0, if no argument)",
2828 "-A[mod][=pattern] activate all/given assertions",
2829 "-a                autosplit mode with -n or -p (splits $_ into @F)",
2830 "-C[number/list]   enables the listed Unicode features",
2831 "-c                check syntax only (runs BEGIN and CHECK blocks)",
2832 "-d[:debugger]     run program under debugger",
2833 "-D[number/list]   set debugging flags (argument is a bit mask or alphabets)",
2834 "-e program        one line of program (several -e's allowed, omit programfile)",
2835 "-E program        like -e, but enables all optional features",
2836 "-f                don't do $sitelib/sitecustomize.pl at startup",
2837 "-F/pattern/       split() pattern for -a switch (//'s are optional)",
2838 "-i[extension]     edit <> files in place (makes backup if extension supplied)",
2839 "-Idirectory       specify @INC/#include directory (several -I's allowed)",
2840 "-l[octal]         enable line ending processing, specifies line terminator",
2841 "-[mM][-]module    execute \"use/no module...\" before executing program",
2842 "-n                assume \"while (<>) { ... }\" loop around program",
2843 "-p                assume loop like -n but print line also, like sed",
2844 "-P                run program through C preprocessor before compilation",
2845 "-s                enable rudimentary parsing for switches after programfile",
2846 "-S                look for programfile using PATH environment variable",
2847 "-t                enable tainting warnings",
2848 "-T                enable tainting checks",
2849 "-u                dump core after parsing program",
2850 "-U                allow unsafe operations",
2851 "-v                print version, subversion (includes VERY IMPORTANT perl info)",
2852 "-V[:variable]     print configuration summary (or a single Config.pm variable)",
2853 "-w                enable many useful warnings (RECOMMENDED)",
2854 "-W                enable all warnings",
2855 "-x[directory]     strip off text before #!perl line and perhaps cd to directory",
2856 "-X                disable all warnings",
2857 "\n",
2858 NULL
2859 };
2860     const char * const *p = usage_msg;
2861
2862     PerlIO_printf(PerlIO_stdout(),
2863                   "\nUsage: %s [switches] [--] [programfile] [arguments]",
2864                   name);
2865     while (*p)
2866         PerlIO_printf(PerlIO_stdout(), "\n  %s", *p++);
2867 }
2868
2869 /* convert a string of -D options (or digits) into an int.
2870  * sets *s to point to the char after the options */
2871
2872 #ifdef DEBUGGING
2873 int
2874 Perl_get_debug_opts(pTHX_ const char **s, bool givehelp)
2875 {
2876     static const char * const usage_msgd[] = {
2877       " Debugging flag values: (see also -d)",
2878       "  p  Tokenizing and parsing (with v, displays parse stack)",
2879       "  s  Stack snapshots (with v, displays all stacks)",
2880       "  l  Context (loop) stack processing",
2881       "  t  Trace execution",
2882       "  o  Method and overloading resolution",
2883       "  c  String/numeric conversions",
2884       "  P  Print profiling info, preprocessor command for -P, source file input state",
2885       "  m  Memory allocation",
2886       "  f  Format processing",
2887       "  r  Regular expression parsing and execution",
2888       "  x  Syntax tree dump",
2889       "  u  Tainting checks",
2890       "  H  Hash dump -- usurps values()",
2891       "  X  Scratchpad allocation",
2892       "  D  Cleaning up",
2893       "  S  Thread synchronization",
2894       "  T  Tokenising",
2895       "  R  Include reference counts of dumped variables (eg when using -Ds)",
2896       "  J  Do not s,t,P-debug (Jump over) opcodes within package DB",
2897       "  v  Verbose: use in conjunction with other flags",
2898       "  C  Copy On Write",
2899       "  A  Consistency checks on internal structures",
2900       "  q  quiet - currently only suppresses the 'EXECUTING' message",
2901       NULL
2902     };
2903     int i = 0;
2904     if (isALPHA(**s)) {
2905         /* if adding extra options, remember to update DEBUG_MASK */
2906         static const char debopts[] = "psltocPmfrxu HXDSTRJvCAq";
2907
2908         for (; isALNUM(**s); (*s)++) {
2909             const char * const d = strchr(debopts,**s);
2910             if (d)
2911                 i |= 1 << (d - debopts);
2912             else if (ckWARN_d(WARN_DEBUGGING))
2913                 Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
2914                     "invalid option -D%c, use -D'' to see choices\n", **s);
2915         }
2916     }
2917     else if (isDIGIT(**s)) {
2918         i = atoi(*s);
2919         for (; isALNUM(**s); (*s)++) ;
2920     }
2921     else if (givehelp) {
2922       const char *const *p = usage_msgd;
2923       while (*p) PerlIO_printf(PerlIO_stdout(), "%s\n", *p++);
2924     }
2925 #  ifdef EBCDIC
2926     if ((i & DEBUG_p_FLAG) && ckWARN_d(WARN_DEBUGGING))
2927         Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
2928                 "-Dp not implemented on this platform\n");
2929 #  endif
2930     return i;
2931 }
2932 #endif
2933
2934 /* This routine handles any switches that can be given during run */
2935
2936 char *
2937 Perl_moreswitches(pTHX_ char *s)
2938 {
2939     dVAR;
2940     UV rschar;
2941
2942     switch (*s) {
2943     case '0':
2944     {
2945          I32 flags = 0;
2946          STRLEN numlen;
2947
2948          SvREFCNT_dec(PL_rs);
2949          if (s[1] == 'x' && s[2]) {
2950               const char *e = s+=2;
2951               U8 *tmps;
2952
2953               while (*e)
2954                 e++;
2955               numlen = e - s;
2956               flags = PERL_SCAN_SILENT_ILLDIGIT;
2957               rschar = (U32)grok_hex(s, &numlen, &flags, NULL);
2958               if (s + numlen < e) {
2959                    rschar = 0; /* Grandfather -0xFOO as -0 -xFOO. */
2960                    numlen = 0;
2961                    s--;
2962               }
2963               PL_rs = newSVpvs("");
2964               SvGROW(PL_rs, (STRLEN)(UNISKIP(rschar) + 1));
2965               tmps = (U8*)SvPVX(PL_rs);
2966               uvchr_to_utf8(tmps, rschar);
2967               SvCUR_set(PL_rs, UNISKIP(rschar));
2968               SvUTF8_on(PL_rs);
2969          }
2970          else {
2971               numlen = 4;
2972               rschar = (U32)grok_oct(s, &numlen, &flags, NULL);
2973               if (rschar & ~((U8)~0))
2974                    PL_rs = &PL_sv_undef;
2975               else if (!rschar && numlen >= 2)
2976                    PL_rs = newSVpvs("");
2977               else {
2978                    char ch = (char)rschar;
2979                    PL_rs = newSVpvn(&ch, 1);
2980               }
2981          }
2982          sv_setsv(get_sv("/", TRUE), PL_rs);
2983          return s + numlen;
2984     }
2985     case 'C':
2986         s++;
2987         PL_unicode = parse_unicode_opts( (const char **)&s );
2988         return s;
2989     case 'F':
2990         PL_minus_F = TRUE;
2991         PL_splitstr = ++s;
2992         while (*s && !isSPACE(*s)) ++s;
2993         *s = '\0';
2994         PL_splitstr = savepv(PL_splitstr);
2995         return s;
2996     case 'a':
2997         PL_minus_a = TRUE;
2998         s++;
2999         return s;
3000     case 'c':
3001         PL_minus_c = TRUE;
3002         s++;
3003         return s;
3004     case 'd':
3005         forbid_setid("-d");
3006         s++;
3007
3008         /* -dt indicates to the debugger that threads will be used */
3009         if (*s == 't' && !isALNUM(s[1])) {
3010             ++s;
3011             my_setenv("PERL5DB_THREADED", "1");
3012         }
3013
3014         /* The following permits -d:Mod to accepts arguments following an =
3015            in the fashion that -MSome::Mod does. */
3016         if (*s == ':' || *s == '=') {
3017             const char *start;
3018             SV * const sv = newSVpvs("use Devel::");
3019             start = ++s;
3020             /* We now allow -d:Module=Foo,Bar */
3021             while(isALNUM(*s) || *s==':') ++s;
3022             if (*s != '=')
3023                 sv_catpv(sv, start);
3024             else {
3025                 sv_catpvn(sv, start, s-start);
3026                 Perl_sv_catpvf(aTHX_ sv, " split(/,/,q%c%s%c)", 0, ++s, 0);
3027             }
3028             s += strlen(s);
3029             my_setenv("PERL5DB", SvPV_nolen_const(sv));
3030         }
3031         if (!PL_perldb) {
3032             PL_perldb = PERLDB_ALL;
3033             init_debugger();
3034         }
3035         return s;
3036     case 'D':
3037     {   
3038 #ifdef DEBUGGING
3039         forbid_setid("-D");
3040         s++;
3041         PL_debug = get_debug_opts( (const char **)&s, 1) | DEBUG_TOP_FLAG;
3042 #else /* !DEBUGGING */
3043         if (ckWARN_d(WARN_DEBUGGING))
3044             Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
3045                    "Recompile perl with -DDEBUGGING to use -D switch (did you mean -d ?)\n");
3046         for (s++; isALNUM(*s); s++) ;
3047 #endif
3048         return s;
3049     }   
3050     case 'h':
3051         usage(PL_origargv[0]);
3052         my_exit(0);
3053     case 'i':
3054         Safefree(PL_inplace);
3055 #if defined(__CYGWIN__) /* do backup extension automagically */
3056         if (*(s+1) == '\0') {
3057         PL_inplace = savepvs(".bak");
3058         return s+1;
3059         }
3060 #endif /* __CYGWIN__ */
3061         PL_inplace = savepv(s+1);
3062         for (s = PL_inplace; *s && !isSPACE(*s); s++)
3063             ;
3064         if (*s) {
3065             *s++ = '\0';
3066             if (*s == '-')      /* Additional switches on #! line. */
3067                 s++;
3068         }
3069         return s;
3070     case 'I':   /* -I handled both here and in parse_body() */
3071         forbid_setid("-I");
3072         ++s;
3073         while (*s && isSPACE(*s))
3074             ++s;
3075         if (*s) {
3076             char *e, *p;
3077             p = s;
3078             /* ignore trailing spaces (possibly followed by other switches) */
3079             do {
3080                 for (e = p; *e && !isSPACE(*e); e++) ;
3081                 p = e;
3082                 while (isSPACE(*p))
3083                     p++;
3084             } while (*p && *p != '-');
3085             e = savepvn(s, e-s);
3086             incpush(e, TRUE, TRUE, FALSE, FALSE);
3087             Safefree(e);
3088             s = p;
3089             if (*s == '-')
3090                 s++;
3091         }
3092         else
3093             Perl_croak(aTHX_ "No directory specified for -I");
3094         return s;
3095     case 'l':
3096         PL_minus_l = TRUE;
3097         s++;
3098         if (PL_ors_sv) {
3099             SvREFCNT_dec(PL_ors_sv);
3100             PL_ors_sv = NULL;
3101         }
3102         if (isDIGIT(*s)) {
3103             I32 flags = 0;
3104             STRLEN numlen;
3105             PL_ors_sv = newSVpvs("\n");
3106             numlen = 3 + (*s == '0');
3107             *SvPVX(PL_ors_sv) = (char)grok_oct(s, &numlen, &flags, NULL);
3108             s += numlen;
3109         }
3110         else {
3111             if (RsPARA(PL_rs)) {
3112                 PL_ors_sv = newSVpvs("\n\n");
3113             }
3114             else {
3115                 PL_ors_sv = newSVsv(PL_rs);
3116             }
3117         }
3118         return s;
3119     case 'A':
3120         forbid_setid("-A");
3121         if (!PL_preambleav)
3122             PL_preambleav = newAV();
3123         s++;
3124         {
3125             char * const start = s;
3126             SV * const sv = newSVpvs("use assertions::activate");
3127             while(isALNUM(*s) || *s == ':') ++s;
3128             if (s != start) {
3129                 sv_catpvs(sv, "::");
3130                 sv_catpvn(sv, start, s-start);
3131             }
3132             if (*s == '=') {
3133                 Perl_sv_catpvf(aTHX_ sv, " split(/,/,q%c%s%c)", 0, ++s, 0);
3134                 s+=strlen(s);
3135             }
3136             else if (*s != '\0') {
3137                 Perl_croak(aTHX_ "Can't use '%c' after -A%.*s", *s, (int)(s-start), start);
3138             }
3139             av_push(PL_preambleav, sv);
3140             return s;
3141         }
3142     case 'M':
3143         forbid_setid("-M");     /* XXX ? */
3144         /* FALL THROUGH */
3145     case 'm':
3146         forbid_setid("-m");     /* XXX ? */
3147         if (*++s) {
3148             char *start;
3149             SV *sv;
3150             const char *use = "use ";
3151             /* -M-foo == 'no foo'       */
3152             /* Leading space on " no " is deliberate, to make both
3153                possibilities the same length.  */
3154             if (*s == '-') { use = " no "; ++s; }
3155             sv = newSVpvn(use,4);
3156             start = s;
3157             /* We allow -M'Module qw(Foo Bar)'  */
3158             while(isALNUM(*s) || *s==':') ++s;
3159             if (*s != '=') {
3160                 sv_catpv(sv, start);
3161                 if (*(start-1) == 'm') {
3162                     if (*s != '\0')
3163                         Perl_croak(aTHX_ "Can't use '%c' after -mname", *s);
3164                     sv_catpvs( sv, " ()");
3165                 }
3166             } else {
3167                 if (s == start)
3168                     Perl_croak(aTHX_ "Module name required with -%c option",
3169                                s[-1]);
3170                 sv_catpvn(sv, start, s-start);
3171                 sv_catpvs(sv, " split(/,/,q");
3172                 sv_catpvs(sv, "\0");        /* Use NUL as q//-delimiter. */
3173                 sv_catpv(sv, ++s);
3174                 sv_catpvs(sv,  "\0)");
3175             }
3176             s += strlen(s);
3177             if (!PL_preambleav)
3178                 PL_preambleav = newAV();
3179             av_push(PL_preambleav, sv);
3180         }
3181         else
3182             Perl_croak(aTHX_ "Missing argument to -%c", *(s-1));
3183         return s;
3184     case 'n':
3185         PL_minus_n = TRUE;
3186         s++;
3187         return s;
3188     case 'p':
3189         PL_minus_p = TRUE;
3190         s++;
3191         return s;
3192     case 's':
3193         forbid_setid("-s");
3194         PL_doswitches = TRUE;
3195         s++;
3196         return s;
3197     case 't':
3198         if (!PL_tainting)
3199             TOO_LATE_FOR('t');
3200         s++;
3201         return s;
3202     case 'T':
3203         if (!PL_tainting)
3204             TOO_LATE_FOR('T');
3205         s++;
3206         return s;
3207     case 'u':
3208 #ifdef MACOS_TRADITIONAL
3209         Perl_croak(aTHX_ "Believe me, you don't want to use \"-u\" on a Macintosh");
3210 #endif
3211         PL_do_undump = TRUE;
3212         s++;
3213         return s;
3214     case 'U':
3215         PL_unsafe = TRUE;
3216         s++;
3217         return s;
3218     case 'v':
3219         if (!sv_derived_from(PL_patchlevel, "version"))
3220             upg_version(PL_patchlevel);
3221 #if !defined(DGUX)
3222         PerlIO_printf(PerlIO_stdout(),
3223                 Perl_form(aTHX_ "\nThis is perl, %"SVf
3224 #ifdef PERL_PATCHNUM
3225                           " DEVEL" STRINGIFY(PERL_PATCHNUM)
3226 #endif
3227                           " built for %s",
3228                     vstringify(PL_patchlevel),
3229                     ARCHNAME));
3230 #else /* DGUX */
3231 /* Adjust verbose output as in the perl that ships with the DG/UX OS from EMC */
3232         PerlIO_printf(PerlIO_stdout(),
3233                 Perl_form(aTHX_ "\nThis is perl, %"SVf"\n",
3234                     vstringify(PL_patchlevel)));
3235         PerlIO_printf(PerlIO_stdout(),
3236                         Perl_form(aTHX_ "        built under %s at %s %s\n",
3237                                         OSNAME, __DATE__, __TIME__));
3238         PerlIO_printf(PerlIO_stdout(),
3239                         Perl_form(aTHX_ "        OS Specific Release: %s\n",
3240                                         OSVERS));
3241 #endif /* !DGUX */
3242
3243 #if defined(LOCAL_PATCH_COUNT)
3244         if (LOCAL_PATCH_COUNT > 0)
3245             PerlIO_printf(PerlIO_stdout(),
3246                           "\n(with %d registered patch%s, "
3247                           "see perl -V for more detail)",
3248                           (int)LOCAL_PATCH_COUNT,
3249                           (LOCAL_PATCH_COUNT!=1) ? "es" : "");
3250 #endif
3251
3252         PerlIO_printf(PerlIO_stdout(),
3253                       "\n\nCopyright 1987-2006, Larry Wall\n");
3254 #ifdef MACOS_TRADITIONAL
3255         PerlIO_printf(PerlIO_stdout(),
3256                       "\nMac OS port Copyright 1991-2002, Matthias Neeracher;\n"
3257                       "maintained by Chris Nandor\n");
3258 #endif
3259 #ifdef MSDOS
3260         PerlIO_printf(PerlIO_stdout(),
3261                       "\nMS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis\n");
3262 #endif
3263 #ifdef DJGPP
3264         PerlIO_printf(PerlIO_stdout(),
3265                       "djgpp v2 port (jpl5003c) by Hirofumi Watanabe, 1996\n"
3266                       "djgpp v2 port (perl5004+) by Laszlo Molnar, 1997-1999\n");
3267 #endif
3268 #ifdef OS2
3269         PerlIO_printf(PerlIO_stdout(),
3270                       "\n\nOS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n"
3271                       "Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\n");
3272 #endif
3273 #ifdef atarist
3274         PerlIO_printf(PerlIO_stdout(),
3275                       "atariST series port, ++jrb  bammi@cadence.com\n");
3276 #endif
3277 #ifdef __BEOS__
3278         PerlIO_printf(PerlIO_stdout(),
3279                       "BeOS port Copyright Tom Spindler, 1997-1999\n");
3280 #endif
3281 #ifdef MPE
3282         PerlIO_printf(PerlIO_stdout(),
3283                       "MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-2003\n");
3284 #endif
3285 #ifdef OEMVS
3286         PerlIO_printf(PerlIO_stdout(),
3287                       "MVS (OS390) port by Mortice Kern Systems, 1997-1999\n");
3288 #endif
3289 #ifdef __VOS__
3290         PerlIO_printf(PerlIO_stdout(),
3291                       "Stratus VOS port by Paul.Green@stratus.com, 1997-2002\n");
3292 #endif
3293 #ifdef __OPEN_VM
3294         PerlIO_printf(PerlIO_stdout(),
3295                       "VM/ESA port by Neale Ferguson, 1998-1999\n");
3296 #endif
3297 #ifdef POSIX_BC
3298         PerlIO_printf(PerlIO_stdout(),
3299                       "BS2000 (POSIX) port by Start Amadeus GmbH, 1998-1999\n");
3300 #endif
3301 #ifdef __MINT__
3302         PerlIO_printf(PerlIO_stdout(),
3303                       "MiNT port by Guido Flohr, 1997-1999\n");
3304 #endif
3305 #ifdef EPOC
3306         PerlIO_printf(PerlIO_stdout(),
3307                       "EPOC port by Olaf Flebbe, 1999-2002\n");
3308 #endif
3309 #ifdef UNDER_CE
3310         PerlIO_printf(PerlIO_stdout(),"WINCE port by Rainer Keuchel, 2001-2002\n");
3311         PerlIO_printf(PerlIO_stdout(),"Built on " __DATE__ " " __TIME__ "\n\n");
3312         wce_hitreturn();
3313 #endif
3314 #ifdef __SYMBIAN32__
3315         PerlIO_printf(PerlIO_stdout(),
3316                       "Symbian port by Nokia, 2004-2005\n");
3317 #endif
3318 #ifdef BINARY_BUILD_NOTICE
3319         BINARY_BUILD_NOTICE;
3320 #endif
3321         PerlIO_printf(PerlIO_stdout(),
3322                       "\n\
3323 Perl may be copied only under the terms of either the Artistic License or the\n\
3324 GNU General Public License, which may be found in the Perl 5 source kit.\n\n\
3325 Complete documentation for Perl, including FAQ lists, should be found on\n\
3326 this system using \"man perl\" or \"perldoc perl\".  If you have access to the\n\
3327 Internet, point your browser at http://www.perl.org/, the Perl Home Page.\n\n");
3328         my_exit(0);
3329     case 'w':
3330         if (! (PL_dowarn & G_WARN_ALL_MASK))
3331             PL_dowarn |= G_WARN_ON;
3332         s++;
3333         return s;
3334     case 'W':
3335         PL_dowarn = G_WARN_ALL_ON|G_WARN_ON;
3336         if (!specialWARN(PL_compiling.cop_warnings))
3337             SvREFCNT_dec(PL_compiling.cop_warnings);
3338         PL_compiling.cop_warnings = pWARN_ALL ;
3339         s++;
3340         return s;
3341     case 'X':
3342         PL_dowarn = G_WARN_ALL_OFF;
3343         if (!specialWARN(PL_compiling.cop_warnings))
3344             SvREFCNT_dec(PL_compiling.cop_warnings);
3345         PL_compiling.cop_warnings = pWARN_NONE ;
3346         s++;
3347         return s;
3348     case '*':
3349     case ' ':
3350         if (s[1] == '-')        /* Additional switches on #! line. */
3351             return s+2;
3352         break;
3353     case '-':
3354     case 0:
3355 #if defined(WIN32) || !defined(PERL_STRICT_CR)
3356     case '\r':
3357 #endif
3358     case '\n':
3359     case '\t':
3360         break;
3361 #ifdef ALTERNATE_SHEBANG
3362     case 'S':                   /* OS/2 needs -S on "extproc" line. */
3363         break;
3364 #endif
3365     case 'P':
3366         if (PL_preprocess)
3367             return s+1;
3368         /* FALL THROUGH */
3369     default:
3370         Perl_croak(aTHX_ "Can't emulate -%.1s on #! line",s);
3371     }
3372     return NULL;
3373 }
3374
3375 /* compliments of Tom Christiansen */
3376
3377 /* unexec() can be found in the Gnu emacs distribution */
3378 /* Known to work with -DUNEXEC and using unexelf.c from GNU emacs-20.2 */
3379
3380 void
3381 Perl_my_unexec(pTHX)
3382 {
3383 #ifdef UNEXEC
3384     SV*    prog;
3385     SV*    file;
3386     int    status = 1;
3387     extern int etext;
3388
3389     prog = newSVpv(BIN_EXP, 0);
3390     sv_catpvs(prog, "/perl");
3391     file = newSVpv(PL_origfilename, 0);
3392     sv_catpvs(file, ".perldump");
3393
3394     unexec(SvPVX(file), SvPVX(prog), &etext, sbrk(0), 0);
3395     /* unexec prints msg to stderr in case of failure */
3396     PerlProc_exit(status);
3397 #else
3398 #  ifdef VMS
3399 #    include <lib$routines.h>
3400      lib$signal(SS$_DEBUG);  /* ssdef.h #included from vmsish.h */
3401 #  elif defined(WIN32) || defined(__CYGWIN__)
3402     Perl_croak(aTHX_ "dump is not supported");
3403 #  else
3404     ABORT();            /* for use with undump */
3405 #  endif
3406 #endif
3407 }
3408
3409 /* initialize curinterp */
3410 STATIC void
3411 S_init_interp(pTHX)
3412 {
3413     dVAR;
3414 #ifdef MULTIPLICITY
3415 #  define PERLVAR(var,type)
3416 #  define PERLVARA(var,n,type)
3417 #  if defined(PERL_IMPLICIT_CONTEXT)
3418 #    if defined(USE_5005THREADS)
3419 #      define PERLVARI(var,type,init)           PERL_GET_INTERP->var = init;
3420 #      define PERLVARIC(var,type,init)          PERL_GET_INTERP->var = init;
3421 #    else /* !USE_5005THREADS */
3422 #      define PERLVARI(var,type,init)           aTHX->var = init;
3423 #      define PERLVARIC(var,type,init)  aTHX->var = init;
3424 #    endif /* USE_5005THREADS */
3425 #  else
3426 #    define PERLVARI(var,type,init)     PERL_GET_INTERP->var = init;
3427 #    define PERLVARIC(var,type,init)    PERL_GET_INTERP->var = init;
3428 #  endif
3429 #  include "intrpvar.h"
3430 #  ifndef USE_5005THREADS
3431 #    include "thrdvar.h"
3432 #  endif
3433 #  undef PERLVAR
3434 #  undef PERLVARA
3435 #  undef PERLVARI
3436 #  undef PERLVARIC
3437 #else
3438 #  define PERLVAR(var,type)
3439 #  define PERLVARA(var,n,type)
3440 #  define PERLVARI(var,type,init)       PL_##var = init;
3441 #  define PERLVARIC(var,type,init)      PL_##var = init;
3442 #  include "intrpvar.h"
3443 #  ifndef USE_5005THREADS
3444 #    include "thrdvar.h"
3445 #  endif
3446 #  undef PERLVAR
3447 #  undef PERLVARA
3448 #  undef PERLVARI
3449 #  undef PERLVARIC
3450 #endif
3451
3452 }
3453
3454 STATIC void
3455 S_init_main_stash(pTHX)
3456 {
3457     dVAR;
3458     GV *gv;
3459
3460     PL_curstash = PL_defstash = newHV();
3461     /* We know that the string "main" will be in the global shared string
3462        table, so it's a small saving to use it rather than allocate another
3463        8 bytes.  */
3464     PL_curstname = newSVpvs_share("main");
3465     gv = gv_fetchpvs("main::", GV_ADD|GV_NOTQUAL, SVt_PVHV);
3466     /* If we hadn't caused another reference to "main" to be in the shared
3467        string table above, then it would be worth reordering these two,
3468        because otherwise all we do is delete "main" from it as a consequence
3469        of the SvREFCNT_dec, only to add it again with hv_name_set */
3470     SvREFCNT_dec(GvHV(gv));
3471     hv_name_set(PL_defstash, "main", 4, 0);
3472     GvHV(gv) = (HV*)SvREFCNT_inc(PL_defstash);
3473     SvREADONLY_on(gv);
3474     PL_incgv = gv_HVadd(gv_AVadd(gv_fetchpvs("INC", GV_ADD|GV_NOTQUAL,
3475                                              SVt_PVAV)));
3476     SvREFCNT_inc(PL_incgv); /* Don't allow it to be freed */
3477     GvMULTI_on(PL_incgv);
3478     PL_hintgv = gv_fetchpvs("\010", GV_ADD|GV_NOTQUAL, SVt_PV); /* ^H */
3479     GvMULTI_on(PL_hintgv);
3480     PL_defgv = gv_fetchpvs("_", GV_ADD|GV_NOTQUAL, SVt_PVAV);
3481     SvREFCNT_inc(PL_defgv);
3482     PL_errgv = gv_HVadd(gv_fetchpvs("@", GV_ADD|GV_NOTQUAL, SVt_PV));
3483     SvREFCNT_inc(PL_errgv);
3484     GvMULTI_on(PL_errgv);
3485     PL_replgv = gv_fetchpvs("\022", GV_ADD|GV_NOTQUAL, SVt_PV); /* ^R */
3486     GvMULTI_on(PL_replgv);
3487     (void)Perl_form(aTHX_ "%240s","");  /* Preallocate temp - for immediate signals. */
3488 #ifdef PERL_DONT_CREATE_GVSV
3489     gv_SVadd(PL_errgv);
3490 #endif
3491     sv_grow(ERRSV, 240);        /* Preallocate - for immediate signals. */
3492     sv_setpvn(ERRSV, "", 0);
3493     PL_curstash = PL_defstash;
3494     CopSTASH_set(&PL_compiling, PL_defstash);
3495     PL_debstash = GvHV(gv_fetchpvs("DB::", GV_ADDMULTI, SVt_PVHV));
3496     PL_globalstash = GvHV(gv_fetchpvs("CORE::GLOBAL::", GV_ADDMULTI,
3497                                       SVt_PVHV));
3498     /* We must init $/ before switches are processed. */
3499     sv_setpvn(get_sv("/", TRUE), "\n", 1);
3500 }
3501
3502 /* PSz 18 Nov 03  fdscript now global but do not change prototype */
3503 STATIC int
3504 S_open_script(pTHX_ const char *scriptname, bool dosearch, SV *sv)
3505 {
3506 #ifndef IAMSUID
3507     const char *quote;
3508     const char *code;
3509     const char *cpp_discard_flag;
3510     const char *perl;
3511 #endif
3512     int fdscript = -1;
3513     dVAR;
3514
3515     PL_suidscript = -1;
3516
3517     if (PL_e_script) {
3518         PL_origfilename = savepvs("-e");
3519     }
3520     else {
3521         /* if find_script() returns, it returns a malloc()-ed value */
3522         scriptname = PL_origfilename = find_script(scriptname, dosearch, NULL, 1);
3523
3524         if (strnEQ(scriptname, "/dev/fd/", 8) && isDIGIT(scriptname[8]) ) {
3525             const char *s = scriptname + 8;
3526             fdscript = atoi(s);
3527             while (isDIGIT(*s))
3528                 s++;
3529             if (*s) {
3530                 /* PSz 18 Feb 04
3531                  * Tell apart "normal" usage of fdscript, e.g.
3532                  * with bash on FreeBSD:
3533                  *   perl <( echo '#!perl -DA'; echo 'print "$0\n"')
3534                  * from usage in suidperl.
3535                  * Does any "normal" usage leave garbage after the number???
3536                  * Is it a mistake to use a similar /dev/fd/ construct for
3537                  * suidperl?
3538                  */
3539                 PL_suidscript = 1;
3540                 /* PSz 20 Feb 04  
3541                  * Be supersafe and do some sanity-checks.
3542                  * Still, can we be sure we got the right thing?
3543                  */
3544                 if (*s != '/') {
3545                     Perl_croak(aTHX_ "Wrong syntax (suid) fd script name \"%s\"\n", s);
3546                 }
3547                 if (! *(s+1)) {
3548                     Perl_croak(aTHX_ "Missing (suid) fd script name\n");
3549                 }
3550                 scriptname = savepv(s + 1);
3551                 Safefree(PL_origfilename);
3552                 PL_origfilename = (char *)scriptname;
3553             }
3554         }
3555     }
3556
3557     CopFILE_free(PL_curcop);
3558     CopFILE_set(PL_curcop, PL_origfilename);
3559     if (*PL_origfilename == '-' && PL_origfilename[1] == '\0')
3560         scriptname = (char *)"";
3561     if (fdscript >= 0) {
3562         PL_rsfp = PerlIO_fdopen(fdscript,PERL_SCRIPT_MODE);
3563 #       if defined(HAS_FCNTL) && defined(F_SETFD)
3564             if (PL_rsfp)
3565                 /* ensure close-on-exec */
3566                 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1);
3567 #       endif
3568     }
3569 #ifdef IAMSUID
3570     else {
3571         Perl_croak(aTHX_ "sperl needs fd script\n"
3572                    "You should not call sperl directly; do you need to "
3573                    "change a #! line\nfrom sperl to perl?\n");
3574
3575 /* PSz 11 Nov 03
3576  * Do not open (or do other fancy stuff) while setuid.
3577  * Perl does the open, and hands script to suidperl on a fd;
3578  * suidperl only does some checks, sets up UIDs and re-execs
3579  * perl with that fd as it has always done.
3580  */
3581     }
3582     if (PL_suidscript != 1) {
3583         Perl_croak(aTHX_ "suidperl needs (suid) fd script\n");
3584     }
3585 #else /* IAMSUID */
3586     else if (PL_preprocess) {
3587         const char * const cpp_cfg = CPPSTDIN;
3588         SV * const cpp = newSVpvs("");
3589         SV * const cmd = newSV(0);
3590
3591         if (cpp_cfg[0] == 0) /* PERL_MICRO? */
3592              Perl_croak(aTHX_ "Can't run with cpp -P with CPPSTDIN undefined");
3593         if (strEQ(cpp_cfg, "cppstdin"))
3594             Perl_sv_catpvf(aTHX_ cpp, "%s/", BIN_EXP);
3595         sv_catpv(cpp, cpp_cfg);
3596
3597 #       ifndef VMS
3598             sv_catpvs(sv, "-I");
3599             sv_catpv(sv,PRIVLIB_EXP);
3600 #       endif
3601
3602         DEBUG_P(PerlIO_printf(Perl_debug_log,
3603                               "PL_preprocess: scriptname=\"%s\", cpp=\"%s\", sv=\"%s\", CPPMINUS=\"%s\"\n",
3604                               scriptname, SvPVX_const (cpp), SvPVX_const (sv),
3605                               CPPMINUS));
3606
3607 #       if defined(MSDOS) || defined(WIN32) || defined(VMS)
3608             quote = "\"";
3609 #       else
3610             quote = "'";
3611 #       endif
3612
3613 #       ifdef VMS
3614             cpp_discard_flag = "";
3615 #       else
3616             cpp_discard_flag = "-C";
3617 #       endif
3618
3619 #       ifdef OS2
3620             perl = os2_execname(aTHX);
3621 #       else
3622             perl = PL_origargv[0];
3623 #       endif
3624
3625
3626         /* This strips off Perl comments which might interfere with
3627            the C pre-processor, including #!.  #line directives are
3628            deliberately stripped to avoid confusion with Perl's version
3629            of #line.  FWP played some golf with it so it will fit
3630            into VMS's 255 character buffer.
3631         */
3632         if( PL_doextract )
3633             code = "(1../^#!.*perl/i)|/^\\s*#(?!\\s*((ifn?|un)def|(el|end)?if|define|include|else|error|pragma)\\b)/||!($|=1)||print";
3634         else
3635             code = "/^\\s*#(?!\\s*((ifn?|un)def|(el|end)?if|define|include|else|error|pragma)\\b)/||!($|=1)||print";
3636
3637         Perl_sv_setpvf(aTHX_ cmd, "\
3638 %s -ne%s%s%s %s | %"SVf" %s %"SVf" %s",
3639                        perl, quote, code, quote, scriptname, cpp,
3640                        cpp_discard_flag, sv, CPPMINUS);
3641
3642         PL_doextract = FALSE;
3643
3644         DEBUG_P(PerlIO_printf(Perl_debug_log,
3645                               "PL_preprocess: cmd=\"%s\"\n",
3646                               SvPVX_const(cmd)));
3647
3648         PL_rsfp = PerlProc_popen((char *)SvPVX_const(cmd), (char *)"r");
3649         SvREFCNT_dec(cmd);
3650         SvREFCNT_dec(cpp);
3651     }
3652     else if (!*scriptname) {
3653         forbid_setid("program input from stdin");
3654         PL_rsfp = PerlIO_stdin();
3655     }
3656     else {
3657         PL_rsfp = PerlIO_open(scriptname,PERL_SCRIPT_MODE);
3658 #       if defined(HAS_FCNTL) && defined(F_SETFD)
3659             if (PL_rsfp)
3660                 /* ensure close-on-exec */
3661                 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1);
3662 #       endif
3663     }
3664 #endif /* IAMSUID */
3665     if (!PL_rsfp) {
3666         /* PSz 16 Sep 03  Keep neat error message */
3667         if (PL_e_script)
3668             Perl_croak(aTHX_ "Can't open "BIT_BUCKET": %s\n", Strerror(errno));
3669         else
3670             Perl_croak(aTHX_ "Can't open perl script \"%s\": %s\n",
3671                     CopFILE(PL_curcop), Strerror(errno));
3672     }
3673     return fdscript;
3674 }
3675
3676 /* Mention
3677  * I_SYSSTATVFS HAS_FSTATVFS
3678  * I_SYSMOUNT
3679  * I_STATFS     HAS_FSTATFS     HAS_GETFSSTAT
3680  * I_MNTENT     HAS_GETMNTENT   HAS_HASMNTOPT
3681  * here so that metaconfig picks them up. */
3682
3683 #ifdef IAMSUID
3684 STATIC int
3685 S_fd_on_nosuid_fs(pTHX_ int fd)
3686 {
3687 /* PSz 27 Feb 04
3688  * We used to do this as "plain" user (after swapping UIDs with setreuid);
3689  * but is needed also on machines without setreuid.
3690  * Seems safe enough to run as root.
3691  */
3692     int check_okay = 0; /* able to do all the required sys/libcalls */
3693     int on_nosuid  = 0; /* the fd is on a nosuid fs */
3694     /* PSz 12 Nov 03
3695      * Need to check noexec also: nosuid might not be set, the average
3696      * sysadmin would say that nosuid is irrelevant once he sets noexec.
3697      */
3698     int on_noexec  = 0; /* the fd is on a noexec fs */
3699
3700 /*
3701  * Preferred order: fstatvfs(), fstatfs(), ustat()+getmnt(), getmntent().
3702  * fstatvfs() is UNIX98.
3703  * fstatfs() is 4.3 BSD.
3704  * ustat()+getmnt() is pre-4.3 BSD.
3705  * getmntent() is O(number-of-mounted-filesystems) and can hang on
3706  * an irrelevant filesystem while trying to reach the right one.
3707  */
3708
3709 #undef FD_ON_NOSUID_CHECK_OKAY  /* found the syscalls to do the check? */
3710
3711 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3712         defined(HAS_FSTATVFS)
3713 #   define FD_ON_NOSUID_CHECK_OKAY
3714     struct statvfs stfs;
3715
3716     check_okay = fstatvfs(fd, &stfs) == 0;
3717     on_nosuid  = check_okay && (stfs.f_flag  & ST_NOSUID);
3718 #ifdef ST_NOEXEC
3719     /* ST_NOEXEC certainly absent on AIX 5.1, and doesn't seem to be documented
3720        on platforms where it is present.  */
3721     on_noexec  = check_okay && (stfs.f_flag  & ST_NOEXEC);
3722 #endif
3723 #   endif /* fstatvfs */
3724
3725 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3726         defined(PERL_MOUNT_NOSUID)      && \
3727         defined(PERL_MOUNT_NOEXEC)      && \
3728         defined(HAS_FSTATFS)            && \
3729         defined(HAS_STRUCT_STATFS)      && \
3730         defined(HAS_STRUCT_STATFS_F_FLAGS)
3731 #   define FD_ON_NOSUID_CHECK_OKAY
3732     struct statfs  stfs;
3733
3734     check_okay = fstatfs(fd, &stfs)  == 0;
3735     on_nosuid  = check_okay && (stfs.f_flags & PERL_MOUNT_NOSUID);
3736     on_noexec  = check_okay && (stfs.f_flags & PERL_MOUNT_NOEXEC);
3737 #   endif /* fstatfs */
3738
3739 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3740         defined(PERL_MOUNT_NOSUID)      && \
3741         defined(PERL_MOUNT_NOEXEC)      && \
3742         defined(HAS_FSTAT)              && \
3743         defined(HAS_USTAT)              && \
3744         defined(HAS_GETMNT)             && \
3745         defined(HAS_STRUCT_FS_DATA)     && \
3746         defined(NOSTAT_ONE)
3747 #   define FD_ON_NOSUID_CHECK_OKAY
3748     Stat_t fdst;
3749
3750     if (fstat(fd, &fdst) == 0) {
3751         struct ustat us;
3752         if (ustat(fdst.st_dev, &us) == 0) {
3753             struct fs_data fsd;
3754             /* NOSTAT_ONE here because we're not examining fields which
3755              * vary between that case and STAT_ONE. */
3756             if (getmnt((int*)0, &fsd, (int)0, NOSTAT_ONE, us.f_fname) == 0) {
3757                 size_t cmplen = sizeof(us.f_fname);
3758                 if (sizeof(fsd.fd_req.path) < cmplen)
3759                     cmplen = sizeof(fsd.fd_req.path);
3760                 if (strnEQ(fsd.fd_req.path, us.f_fname, cmplen) &&
3761                     fdst.st_dev == fsd.fd_req.dev) {
3762                     check_okay = 1;
3763                     on_nosuid = fsd.fd_req.flags & PERL_MOUNT_NOSUID;
3764                     on_noexec = fsd.fd_req.flags & PERL_MOUNT_NOEXEC;
3765                 }
3766             }
3767         }
3768     }
3769 #   endif /* fstat+ustat+getmnt */
3770
3771 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3772         defined(HAS_GETMNTENT)          && \
3773         defined(HAS_HASMNTOPT)          && \
3774         defined(MNTOPT_NOSUID)          && \
3775         defined(MNTOPT_NOEXEC)
3776 #   define FD_ON_NOSUID_CHECK_OKAY
3777     FILE                *mtab = fopen("/etc/mtab", "r");
3778     struct mntent       *entry;
3779     Stat_t              stb, fsb;
3780
3781     if (mtab && (fstat(fd, &stb) == 0)) {
3782         while (entry = getmntent(mtab)) {
3783             if (stat(entry->mnt_dir, &fsb) == 0
3784                 && fsb.st_dev == stb.st_dev)
3785             {
3786                 /* found the filesystem */
3787                 check_okay = 1;
3788                 if (hasmntopt(entry, MNTOPT_NOSUID))
3789                     on_nosuid = 1;
3790                 if (hasmntopt(entry, MNTOPT_NOEXEC))
3791                     on_noexec = 1;
3792                 break;
3793             } /* A single fs may well fail its stat(). */
3794         }
3795     }
3796     if (mtab)
3797         fclose(mtab);
3798 #   endif /* getmntent+hasmntopt */
3799
3800     if (!check_okay)
3801         Perl_croak(aTHX_ "Can't check filesystem of script \"%s\" for nosuid/noexec", PL_origfilename);
3802     if (on_nosuid)
3803         Perl_croak(aTHX_ "Setuid script \"%s\" on nosuid filesystem", PL_origfilename);
3804     if (on_noexec)
3805         Perl_croak(aTHX_ "Setuid script \"%s\" on noexec filesystem", PL_origfilename);
3806     return ((!check_okay) || on_nosuid || on_noexec);
3807 }
3808 #endif /* IAMSUID */
3809
3810 STATIC void
3811 S_validate_suid(pTHX_ const char *validarg, const char *scriptname,
3812                 int fdscript)
3813 {
3814     dVAR;
3815 #ifdef IAMSUID
3816     /* int which; */
3817 #endif /* IAMSUID */
3818
3819     /* do we need to emulate setuid on scripts? */
3820
3821     /* This code is for those BSD systems that have setuid #! scripts disabled
3822      * in the kernel because of a security problem.  Merely defining DOSUID
3823      * in perl will not fix that problem, but if you have disabled setuid
3824      * scripts in the kernel, this will attempt to emulate setuid and setgid
3825      * on scripts that have those now-otherwise-useless bits set.  The setuid
3826      * root version must be called suidperl or sperlN.NNN.  If regular perl
3827      * discovers that it has opened a setuid script, it calls suidperl with
3828      * the same argv that it had.  If suidperl finds that the script it has
3829      * just opened is NOT setuid root, it sets the effective uid back to the
3830      * uid.  We don't just make perl setuid root because that loses the
3831      * effective uid we had before invoking perl, if it was different from the
3832      * uid.
3833      * PSz 27 Feb 04
3834      * Description/comments above do not match current workings:
3835      *   suidperl must be hardlinked to sperlN.NNN (that is what we exec);
3836      *   suidperl called with script open and name changed to /dev/fd/N/X;
3837      *   suidperl croaks if script is not setuid;
3838      *   making perl setuid would be a huge security risk (and yes, that
3839      *     would lose any euid we might have had).
3840      *
3841      * DOSUID must be defined in both perl and suidperl, and IAMSUID must
3842      * be defined in suidperl only.  suidperl must be setuid root.  The
3843      * Configure script will set this up for you if you want it.
3844      */
3845
3846 #ifdef DOSUID
3847     const char *s, *s2;
3848
3849     if (PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf) < 0)  /* normal stat is insecure */
3850         Perl_croak(aTHX_ "Can't stat script \"%s\"",PL_origfilename);
3851     if (PL_statbuf.st_mode & (S_ISUID|S_ISGID)) {
3852         I32 len;
3853         const char *linestr;
3854         const char *s_end;
3855
3856 #ifdef IAMSUID
3857         if (fdscript < 0 || PL_suidscript != 1)
3858             Perl_croak(aTHX_ "Need (suid) fdscript in suidperl\n");     /* We already checked this */
3859         /* PSz 11 Nov 03
3860          * Since the script is opened by perl, not suidperl, some of these
3861          * checks are superfluous. Leaving them in probably does not lower
3862          * security(?!).
3863          */
3864         /* PSz 27 Feb 04
3865          * Do checks even for systems with no HAS_SETREUID.
3866          * We used to swap, then re-swap UIDs with
3867 #ifdef HAS_SETREUID
3868             if (setreuid(PL_euid,PL_uid) < 0
3869                 || PerlProc_getuid() != PL_euid || PerlProc_geteuid() != PL_uid)
3870                 Perl_croak(aTHX_ "Can't swap uid and euid");
3871 #endif
3872 #ifdef HAS_SETREUID
3873             if (setreuid(PL_uid,PL_euid) < 0
3874                 || PerlProc_getuid() != PL_uid || PerlProc_geteuid() != PL_euid)
3875                 Perl_croak(aTHX_ "Can't reswap uid and euid");
3876 #endif
3877          */
3878
3879         /* On this access check to make sure the directories are readable,
3880          * there is actually a small window that the user could use to make
3881          * filename point to an accessible directory.  So there is a faint
3882          * chance that someone could execute a setuid script down in a
3883          * non-accessible directory.  I don't know what to do about that.
3884          * But I don't think it's too important.  The manual lies when
3885          * it says access() is useful in setuid programs.
3886          * 
3887          * So, access() is pretty useless... but not harmful... do anyway.
3888          */
3889         if (PerlLIO_access(CopFILE(PL_curcop),1)) { /*double check*/
3890             Perl_croak(aTHX_ "Can't access() script\n");
3891         }
3892
3893         /* If we can swap euid and uid, then we can determine access rights
3894          * with a simple stat of the file, and then compare device and
3895          * inode to make sure we did stat() on the same file we opened.
3896          * Then we just have to make sure he or she can execute it.
3897          * 
3898          * PSz 24 Feb 04
3899          * As the script is opened by perl, not suidperl, we do not need to
3900          * care much about access rights.
3901          * 
3902          * The 'script changed' check is needed, or we can get lied to
3903          * about $0 with e.g.
3904          *  suidperl /dev/fd/4//bin/x 4<setuidscript
3905          * Without HAS_SETREUID, is it safe to stat() as root?
3906          * 
3907          * Are there any operating systems that pass /dev/fd/xxx for setuid
3908          * scripts, as suggested/described in perlsec(1)? Surely they do not
3909          * pass the script name as we do, so the "script changed" test would
3910          * fail for them... but we never get here with
3911          * SETUID_SCRIPTS_ARE_SECURE_NOW defined.
3912          * 
3913          * This is one place where we must "lie" about return status: not
3914          * say if the stat() failed. We are doing this as root, and could
3915          * be tricked into reporting existence or not of files that the
3916          * "plain" user cannot even see.
3917          */
3918         {
3919             Stat_t tmpstatbuf;
3920             if (PerlLIO_stat(CopFILE(PL_curcop),&tmpstatbuf) < 0 ||
3921                 tmpstatbuf.st_dev != PL_statbuf.st_dev ||
3922                 tmpstatbuf.st_ino != PL_statbuf.st_ino) {
3923                 Perl_croak(aTHX_ "Setuid script changed\n");
3924             }
3925
3926         }
3927         if (!cando(S_IXUSR,FALSE,&PL_statbuf))          /* can real uid exec? */
3928             Perl_croak(aTHX_ "Real UID cannot exec script\n");
3929
3930         /* PSz 27 Feb 04
3931          * We used to do this check as the "plain" user (after swapping
3932          * UIDs). But the check for nosuid and noexec filesystem is needed,
3933          * and should be done even without HAS_SETREUID. (Maybe those
3934          * operating systems do not have such mount options anyway...)
3935          * Seems safe enough to do as root.
3936          */
3937 #if !defined(NO_NOSUID_CHECK)
3938         if (fd_on_nosuid_fs(PerlIO_fileno(PL_rsfp))) {
3939             Perl_croak(aTHX_ "Setuid script on nosuid or noexec filesystem\n");
3940         }
3941 #endif
3942 #endif /* IAMSUID */
3943
3944         if (!S_ISREG(PL_statbuf.st_mode)) {
3945             Perl_croak(aTHX_ "Setuid script not plain file\n");
3946         }
3947         if (PL_statbuf.st_mode & S_IWOTH)
3948             Perl_croak(aTHX_ "Setuid/gid script is writable by world");
3949         PL_doswitches = FALSE;          /* -s is insecure in suid */
3950         /* PSz 13 Nov 03  But -s was caught elsewhere ... so unsetting it here is useless(?!) */
3951         CopLINE_inc(PL_curcop);
3952         if (sv_gets(PL_linestr, PL_rsfp, 0) == NULL)
3953             Perl_croak(aTHX_ "No #! line");
3954         linestr = SvPV_nolen_const(PL_linestr);
3955         /* required even on Sys V */
3956         if (!*linestr || !linestr[1] || strnNE(linestr,"#!",2))
3957             Perl_croak(aTHX_ "No #! line");
3958         linestr += 2;
3959         s = linestr;
3960         /* PSz 27 Feb 04 */
3961         /* Sanity check on line length */
3962         s_end = s + strlen(s);
3963         if (s_end == s || (s_end - s) > 4000)
3964             Perl_croak(aTHX_ "Very long #! line");
3965         /* Allow more than a single space after #! */
3966         while (isSPACE(*s)) s++;
3967         /* Sanity check on buffer end */
3968         while ((*s) && !isSPACE(*s)) s++;
3969         for (s2 = s;  (s2 > linestr &&
3970                        (isDIGIT(s2[-1]) || s2[-1] == '.' || s2[-1] == '_'
3971                         || s2[-1] == '-'));  s2--) ;
3972         /* Sanity check on buffer start */
3973         if ( (s2-4 < linestr || strnNE(s2-4,"perl",4)) &&
3974               (s-9 < linestr || strnNE(s-9,"perl",4)) )
3975             Perl_croak(aTHX_ "Not a perl script");
3976         while (*s == ' ' || *s == '\t') s++;
3977         /*
3978          * #! arg must be what we saw above.  They can invoke it by
3979          * mentioning suidperl explicitly, but they may not add any strange
3980          * arguments beyond what #! says if they do invoke suidperl that way.
3981          */
3982         /*
3983          * The way validarg was set up, we rely on the kernel to start
3984          * scripts with argv[1] set to contain all #! line switches (the
3985          * whole line).
3986          */
3987         /*
3988          * Check that we got all the arguments listed in the #! line (not
3989          * just that there are no extraneous arguments). Might not matter
3990          * much, as switches from #! line seem to be acted upon (also), and
3991          * so may be checked and trapped in perl. But, security checks must
3992          * be done in suidperl and not deferred to perl. Note that suidperl
3993          * does not get around to parsing (and checking) the switches on
3994          * the #! line (but execs perl sooner).
3995          * Allow (require) a trailing newline (which may be of two
3996          * characters on some architectures?) (but no other trailing
3997          * whitespace).
3998          */
3999         len = strlen(validarg);
4000         if (strEQ(validarg," PHOOEY ") ||
4001             strnNE(s,validarg,len) || !isSPACE(s[len]) ||
4002             !((s_end - s) == len+1
4003               || ((s_end - s) == len+2 && isSPACE(s[len+1]))))
4004             Perl_croak(aTHX_ "Args must match #! line");
4005
4006 #ifndef IAMSUID
4007         if (fdscript < 0 &&
4008             PL_euid != PL_uid && (PL_statbuf.st_mode & S_ISUID) &&
4009             PL_euid == PL_statbuf.st_uid)
4010             if (!PL_do_undump)
4011                 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
4012 FIX YOUR KERNEL, OR PUT A C WRAPPER AROUND THIS SCRIPT!\n");
4013 #endif /* IAMSUID */
4014
4015         if (fdscript < 0 &&
4016             PL_euid) {  /* oops, we're not the setuid root perl */
4017             /* PSz 18 Feb 04
4018              * When root runs a setuid script, we do not go through the same
4019              * steps of execing sperl and then perl with fd scripts, but
4020              * simply set up UIDs within the same perl invocation; so do
4021              * not have the same checks (on options, whatever) that we have
4022              * for plain users. No problem really: would have to be a script
4023              * that does not actually work for plain users; and if root is
4024              * foolish and can be persuaded to run such an unsafe script, he
4025              * might run also non-setuid ones, and deserves what he gets.
4026              * 
4027              * Or, we might drop the PL_euid check above (and rely just on
4028              * fdscript to avoid loops), and do the execs
4029              * even for root.
4030              */
4031 #ifndef IAMSUID
4032             int which;
4033             /* PSz 11 Nov 03
4034              * Pass fd script to suidperl.
4035              * Exec suidperl, substituting fd script for scriptname.
4036              * Pass script name as "subdir" of fd, which perl will grok;
4037              * in fact will use that to distinguish this from "normal"
4038              * usage, see comments above.
4039              */
4040             PerlIO_rewind(PL_rsfp);
4041             PerlLIO_lseek(PerlIO_fileno(PL_rsfp),(Off_t)0,0);  /* just in case rewind didn't */
4042             /* PSz 27 Feb 04  Sanity checks on scriptname */
4043             if ((!scriptname) || (!*scriptname) ) {
4044                 Perl_croak(aTHX_ "No setuid script name\n");
4045             }
4046             if (*scriptname == '-') {
4047                 Perl_croak(aTHX_ "Setuid script name may not begin with dash\n");
4048                 /* Or we might confuse it with an option when replacing
4049                  * name in argument list, below (though we do pointer, not
4050                  * string, comparisons).
4051                  */
4052             }
4053             for (which = 1; PL_origargv[which] && PL_origargv[which] != scriptname; which++) ;
4054             if (!PL_origargv[which]) {
4055                 Perl_croak(aTHX_ "Can't change argv to have fd script\n");
4056             }
4057             PL_origargv[which] = savepv(Perl_form(aTHX_ "/dev/fd/%d/%s",
4058                                           PerlIO_fileno(PL_rsfp), PL_origargv[which]));
4059 #if defined(HAS_FCNTL) && defined(F_SETFD)
4060             fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,0);    /* ensure no close-on-exec */
4061 #endif
4062             PERL_FPU_PRE_EXEC
4063             PerlProc_execv(Perl_form(aTHX_ "%s/sperl"PERL_FS_VER_FMT, BIN_EXP,
4064                                      (int)PERL_REVISION, (int)PERL_VERSION,
4065                                      (int)PERL_SUBVERSION), PL_origargv);
4066             PERL_FPU_POST_EXEC
4067 #endif /* IAMSUID */
4068             Perl_croak(aTHX_ "Can't do setuid (cannot exec sperl)\n");
4069         }
4070
4071         if (PL_statbuf.st_mode & S_ISGID && PL_statbuf.st_gid != PL_egid) {
4072 /* PSz 26 Feb 04
4073  * This seems back to front: we try HAS_SETEGID first; if not available
4074  * then try HAS_SETREGID; as a last chance we try HAS_SETRESGID. May be OK
4075  * in the sense that we only want to set EGID; but are there any machines
4076  * with either of the latter, but not the former? Same with UID, later.
4077  */
4078 #ifdef HAS_SETEGID
4079             (void)setegid(PL_statbuf.st_gid);
4080 #else
4081 #ifdef HAS_SETREGID
4082            (void)setregid((Gid_t)-1,PL_statbuf.st_gid);
4083 #else
4084 #ifdef HAS_SETRESGID
4085            (void)setresgid((Gid_t)-1,PL_statbuf.st_gid,(Gid_t)-1);
4086 #else
4087             PerlProc_setgid(PL_statbuf.st_gid);
4088 #endif
4089 #endif
4090 #endif
4091             if (PerlProc_getegid() != PL_statbuf.st_gid)
4092                 Perl_croak(aTHX_ "Can't do setegid!\n");
4093         }
4094         if (PL_statbuf.st_mode & S_ISUID) {
4095             if (PL_statbuf.st_uid != PL_euid)
4096 #ifdef HAS_SETEUID
4097                 (void)seteuid(PL_statbuf.st_uid);       /* all that for this */
4098 #else
4099 #ifdef HAS_SETREUID
4100                 (void)setreuid((Uid_t)-1,PL_statbuf.st_uid);
4101 #else
4102 #ifdef HAS_SETRESUID
4103                 (void)setresuid((Uid_t)-1,PL_statbuf.st_uid,(Uid_t)-1);
4104 #else
4105                 PerlProc_setuid(PL_statbuf.st_uid);
4106 #endif
4107 #endif
4108 #endif
4109             if (PerlProc_geteuid() != PL_statbuf.st_uid)
4110                 Perl_croak(aTHX_ "Can't do seteuid!\n");
4111         }
4112         else if (PL_uid) {                      /* oops, mustn't run as root */
4113 #ifdef HAS_SETEUID
4114           (void)seteuid((Uid_t)PL_uid);
4115 #else
4116 #ifdef HAS_SETREUID
4117           (void)setreuid((Uid_t)-1,(Uid_t)PL_uid);
4118 #else
4119 #ifdef HAS_SETRESUID
4120           (void)setresuid((Uid_t)-1,(Uid_t)PL_uid,(Uid_t)-1);
4121 #else
4122           PerlProc_setuid((Uid_t)PL_uid);
4123 #endif
4124 #endif
4125 #endif
4126             if (PerlProc_geteuid() != PL_uid)
4127                 Perl_croak(aTHX_ "Can't do seteuid!\n");
4128         }
4129         init_ids();
4130         if (!cando(S_IXUSR,TRUE,&PL_statbuf))
4131             Perl_croak(aTHX_ "Effective UID cannot exec script\n");     /* they can't do this */
4132     }
4133 #ifdef IAMSUID
4134     else if (PL_preprocess)     /* PSz 13 Nov 03  Caught elsewhere, useless(?!) here */
4135         Perl_croak(aTHX_ "-P not allowed for setuid/setgid script\n");
4136     else if (fdscript < 0 || PL_suidscript != 1)
4137         /* PSz 13 Nov 03  Caught elsewhere, useless(?!) here */
4138         Perl_croak(aTHX_ "(suid) fdscript needed in suidperl\n");
4139     else {
4140 /* PSz 16 Sep 03  Keep neat error message */
4141         Perl_croak(aTHX_ "Script is not setuid/setgid in suidperl\n");
4142     }
4143
4144     /* We absolutely must clear out any saved ids here, so we */
4145     /* exec the real perl, substituting fd script for scriptname. */
4146     /* (We pass script name as "subdir" of fd, which perl will grok.) */
4147     /* 
4148      * It might be thought that using setresgid and/or setresuid (changed to
4149      * set the saved IDs) above might obviate the need to exec, and we could
4150      * go on to "do the perl thing".
4151      * 
4152      * Is there such a thing as "saved GID", and is that set for setuid (but
4153      * not setgid) execution like suidperl? Without exec, it would not be
4154      * cleared for setuid (but not setgid) scripts (or might need a dummy
4155      * setresgid).
4156      * 
4157      * We need suidperl to do the exact same argument checking that perl
4158      * does. Thus it cannot be very small; while it could be significantly
4159      * smaller, it is safer (simpler?) to make it essentially the same
4160      * binary as perl (but they are not identical). - Maybe could defer that
4161      * check to the invoked perl, and suidperl be a tiny wrapper instead;
4162      * but prefer to do thorough checks in suidperl itself. Such deferral
4163      * would make suidperl security rely on perl, a design no-no.
4164      * 
4165      * Setuid things should be short and simple, thus easy to understand and
4166      * verify. They should do their "own thing", without influence by
4167      * attackers. It may help if their internal execution flow is fixed,
4168      * regardless of platform: it may be best to exec anyway.
4169      * 
4170      * Suidperl should at least be conceptually simple: a wrapper only,
4171      * never to do any real perl. Maybe we should put
4172      * #ifdef IAMSUID
4173      *         Perl_croak(aTHX_ "Suidperl should never do real perl\n");
4174      * #endif
4175      * into the perly bits.
4176      */
4177     PerlIO_rewind(PL_rsfp);
4178     PerlLIO_lseek(PerlIO_fileno(PL_rsfp),(Off_t)0,0);  /* just in case rewind didn't */
4179     /* PSz 11 Nov 03
4180      * Keep original arguments: suidperl already has fd script.
4181      */
4182 /*  for (which = 1; PL_origargv[which] && PL_origargv[which] != scriptname; which++) ;  */
4183 /*  if (!PL_origargv[which]) {                                          */
4184 /*      errno = EPERM;                                                  */
4185 /*      Perl_croak(aTHX_ "Permission denied\n");                        */
4186 /*  }                                                                   */
4187 /*  PL_origargv[which] = savepv(Perl_form(aTHX_ "/dev/fd/%d/%s",        */
4188 /*                                PerlIO_fileno(PL_rsfp), PL_origargv[which])); */
4189 #if defined(HAS_FCNTL) && defined(F_SETFD)
4190     fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,0);    /* ensure no close-on-exec */
4191 #endif
4192     PERL_FPU_PRE_EXEC
4193     PerlProc_execv(Perl_form(aTHX_ "%s/perl"PERL_FS_VER_FMT, BIN_EXP,
4194                              (int)PERL_REVISION, (int)PERL_VERSION,
4195                              (int)PERL_SUBVERSION), PL_origargv);/* try again */
4196     PERL_FPU_POST_EXEC
4197     Perl_croak(aTHX_ "Can't do setuid (suidperl cannot exec perl)\n");
4198 #endif /* IAMSUID */
4199 #else /* !DOSUID */
4200     if (PL_euid != PL_uid || PL_egid != PL_gid) {       /* (suidperl doesn't exist, in fact) */
4201 #ifndef SETUID_SCRIPTS_ARE_SECURE_NOW
4202         PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf);      /* may be either wrapped or real suid */
4203         if ((PL_euid != PL_uid && PL_euid == PL_statbuf.st_uid && PL_statbuf.st_mode & S_ISUID)
4204             ||
4205             (PL_egid != PL_gid && PL_egid == PL_statbuf.st_gid && PL_statbuf.st_mode & S_ISGID)
4206            )
4207             if (!PL_do_undump)
4208                 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
4209 FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
4210 #endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
4211         /* not set-id, must be wrapped */
4212     }
4213 #endif /* DOSUID */
4214     (void)validarg;
4215     (void)scriptname;
4216 }
4217
4218 STATIC void
4219 S_find_beginning(pTHX)
4220 {
4221     dVAR;
4222     register char *s;
4223     register const char *s2;
4224 #ifdef MACOS_TRADITIONAL
4225     int maclines = 0;
4226 #endif
4227
4228     /* skip forward in input to the real script? */
4229
4230     forbid_setid("-x");
4231 #ifdef MACOS_TRADITIONAL
4232     /* Since the Mac OS does not honor #! arguments for us, we do it ourselves */
4233
4234     while (PL_doextract || gMacPerl_AlwaysExtract) {
4235         if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == NULL) {
4236             if (!gMacPerl_AlwaysExtract)
4237                 Perl_croak(aTHX_ "No Perl script found in input\n");
4238
4239             if (PL_doextract)                   /* require explicit override ? */
4240                 if (!OverrideExtract(PL_origfilename))
4241                     Perl_croak(aTHX_ "User aborted script\n");
4242                 else
4243                     PL_doextract = FALSE;
4244
4245             /* Pater peccavi, file does not have #! */
4246             PerlIO_rewind(PL_rsfp);
4247
4248             break;
4249         }
4250 #else
4251     while (PL_doextract) {
4252         if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == NULL)
4253             Perl_croak(aTHX_ "No Perl script found in input\n");
4254 #endif
4255         s2 = s;
4256         if (*s == '#' && s[1] == '!' && ((s = instr(s,"perl")) || (s = instr(s2,"PERL")))) {
4257             PerlIO_ungetc(PL_rsfp, '\n');               /* to keep line count right */
4258             PL_doextract = FALSE;
4259             while (*s && !(isSPACE (*s) || *s == '#')) s++;
4260             s2 = s;
4261             while (*s == ' ' || *s == '\t') s++;
4262             if (*s++ == '-') {
4263                 while (isDIGIT(s2[-1]) || s2[-1] == '-' || s2[-1] == '.'
4264                        || s2[-1] == '_') s2--;
4265                 if (strnEQ(s2-4,"perl",4))
4266                     while ((s = moreswitches(s)))
4267                         ;
4268             }
4269 #ifdef MACOS_TRADITIONAL
4270             /* We are always searching for the #!perl line in MacPerl,
4271              * so if we find it, still keep the line count correct
4272              * by counting lines we already skipped over
4273              */
4274             for (; maclines > 0 ; maclines--)
4275                 PerlIO_ungetc(PL_rsfp, '\n');
4276
4277             break;
4278
4279         /* gMacPerl_AlwaysExtract is false in MPW tool */
4280         } else if (gMacPerl_AlwaysExtract) {
4281             ++maclines;
4282 #endif
4283         }
4284     }
4285 }
4286
4287
4288 STATIC void
4289 S_init_ids(pTHX)
4290 {
4291     dVAR;
4292     PL_uid = PerlProc_getuid();
4293     PL_euid = PerlProc_geteuid();
4294     PL_gid = PerlProc_getgid();
4295     PL_egid = PerlProc_getegid();
4296 #ifdef VMS
4297     PL_uid |= PL_gid << 16;
4298     PL_euid |= PL_egid << 16;
4299 #endif
4300     /* Should not happen: */
4301     CHECK_MALLOC_TAINT(PL_uid && (PL_euid != PL_uid || PL_egid != PL_gid));
4302     PL_tainting |= (PL_uid && (PL_euid != PL_uid || PL_egid != PL_gid));
4303     /* BUG */
4304     /* PSz 27 Feb 04
4305      * Should go by suidscript, not uid!=euid: why disallow
4306      * system("ls") in scripts run from setuid things?
4307      * Or, is this run before we check arguments and set suidscript?
4308      * What about SETUID_SCRIPTS_ARE_SECURE_NOW: could we use fdscript then?
4309      * (We never have suidscript, can we be sure to have fdscript?)
4310      * Or must then go by UID checks? See comments in forbid_setid also.
4311      */
4312 }
4313
4314 /* This is used very early in the lifetime of the program,
4315  * before even the options are parsed, so PL_tainting has
4316  * not been initialized properly.  */
4317 bool
4318 Perl_doing_taint(int argc, char *argv[], char *envp[])
4319 {
4320 #ifndef PERL_IMPLICIT_SYS
4321     /* If we have PERL_IMPLICIT_SYS we can't call getuid() et alia
4322      * before we have an interpreter-- and the whole point of this
4323      * function is to be called at such an early stage.  If you are on
4324      * a system with PERL_IMPLICIT_SYS but you do have a concept of
4325      * "tainted because running with altered effective ids', you'll
4326      * have to add your own checks somewhere in here.  The two most
4327      * known samples of 'implicitness' are Win32 and NetWare, neither
4328      * of which has much of concept of 'uids'. */
4329     int uid  = PerlProc_getuid();
4330     int euid = PerlProc_geteuid();
4331     int gid  = PerlProc_getgid();
4332     int egid = PerlProc_getegid();
4333     (void)envp;
4334
4335 #ifdef VMS
4336     uid  |=  gid << 16;
4337     euid |= egid << 16;
4338 #endif
4339     if (uid && (euid != uid || egid != gid))
4340         return 1;
4341 #endif /* !PERL_IMPLICIT_SYS */
4342     /* This is a really primitive check; environment gets ignored only
4343      * if -T are the first chars together; otherwise one gets
4344      *  "Too late" message. */
4345     if ( argc > 1 && argv[1][0] == '-'
4346          && (argv[1][1] == 't' || argv[1][1] == 'T') )
4347         return 1;
4348     return 0;
4349 }
4350
4351 STATIC void
4352 S_forbid_setid(pTHX_ const char *s)
4353 {
4354     dVAR;
4355 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
4356     if (PL_euid != PL_uid)
4357         Perl_croak(aTHX_ "No %s allowed while running setuid", s);
4358     if (PL_egid != PL_gid)
4359         Perl_croak(aTHX_ "No %s allowed while running setgid", s);
4360 #endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
4361     /* PSz 29 Feb 04
4362      * Checks for UID/GID above "wrong": why disallow
4363      *   perl -e 'print "Hello\n"'
4364      * from within setuid things?? Simply drop them: replaced by
4365      * fdscript/suidscript and #ifdef IAMSUID checks below.
4366      * 
4367      * This may be too late for command-line switches. Will catch those on
4368      * the #! line, after finding the script name and setting up
4369      * fdscript/suidscript. Note that suidperl does not get around to
4370      * parsing (and checking) the switches on the #! line, but checks that
4371      * the two sets are identical.
4372      * 
4373      * With SETUID_SCRIPTS_ARE_SECURE_NOW, could we use fdscript, also or
4374      * instead, or would that be "too late"? (We never have suidscript, can
4375      * we be sure to have fdscript?)
4376      * 
4377      * Catch things with suidscript (in descendant of suidperl), even with
4378      * right UID/GID. Was already checked in suidperl, with #ifdef IAMSUID,
4379      * below; but I am paranoid.
4380      * 
4381      * Also see comments about root running a setuid script, elsewhere.
4382      */
4383     if (PL_suidscript >= 0)
4384         Perl_croak(aTHX_ "No %s allowed with (suid) fdscript", s);
4385 #ifdef IAMSUID
4386     /* PSz 11 Nov 03  Catch it in suidperl, always! */
4387     Perl_croak(aTHX_ "No %s allowed in suidperl", s);
4388 #endif /* IAMSUID */
4389 }
4390
4391 void
4392 Perl_init_debugger(pTHX)
4393 {
4394     dVAR;
4395     HV * const ostash = PL_curstash;
4396
4397     PL_curstash = PL_debstash;
4398     PL_dbargs = GvAV(gv_AVadd((gv_fetchpvs("DB::args", GV_ADDMULTI,
4399                                            SVt_PVAV))));
4400     AvREAL_off(PL_dbargs);
4401     PL_DBgv = gv_fetchpvs("DB::DB", GV_ADDMULTI, SVt_PVGV);
4402     PL_DBline = gv_fetchpvs("DB::dbline", GV_ADDMULTI, SVt_PVAV);
4403     PL_DBsub = gv_HVadd(gv_fetchpvs("DB::sub", GV_ADDMULTI, SVt_PVHV));
4404     PL_DBsingle = GvSV((gv_fetchpvs("DB::single", GV_ADDMULTI, SVt_PV)));
4405     sv_setiv(PL_DBsingle, 0);
4406     PL_DBtrace = GvSV((gv_fetchpvs("DB::trace", GV_ADDMULTI, SVt_PV)));
4407     sv_setiv(PL_DBtrace, 0);
4408     PL_DBsignal = GvSV((gv_fetchpvs("DB::signal", GV_ADDMULTI, SVt_PV)));
4409     sv_setiv(PL_DBsignal, 0);
4410     PL_DBassertion = GvSV((gv_fetchpvs("DB::assertion", GV_ADDMULTI, SVt_PV)));
4411     sv_setiv(PL_DBassertion, 0);
4412     PL_curstash = ostash;
4413 }
4414
4415 #ifndef STRESS_REALLOC
4416 #define REASONABLE(size) (size)
4417 #else
4418 #define REASONABLE(size) (1) /* unreasonable */
4419 #endif
4420
4421 void
4422 Perl_init_stacks(pTHX)
4423 {
4424     dVAR;
4425     /* start with 128-item stack and 8K cxstack */
4426     PL_curstackinfo = new_stackinfo(REASONABLE(128),
4427                                  REASONABLE(8192/sizeof(PERL_CONTEXT) - 1));
4428     PL_curstackinfo->si_type = PERLSI_MAIN;
4429     PL_curstack = PL_curstackinfo->si_stack;
4430     PL_mainstack = PL_curstack;         /* remember in case we switch stacks */
4431
4432     PL_stack_base = AvARRAY(PL_curstack);
4433     PL_stack_sp = PL_stack_base;
4434     PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
4435
4436     Newx(PL_tmps_stack,REASONABLE(128),SV*);
4437     PL_tmps_floor = -1;
4438     PL_tmps_ix = -1;
4439     PL_tmps_max = REASONABLE(128);
4440
4441     Newx(PL_markstack,REASONABLE(32),I32);
4442     PL_markstack_ptr = PL_markstack;
4443     PL_markstack_max = PL_markstack + REASONABLE(32);
4444
4445     SET_MARK_OFFSET;
4446
4447     Newx(PL_scopestack,REASONABLE(32),I32);
4448     PL_scopestack_ix = 0;
4449     PL_scopestack_max = REASONABLE(32);
4450
4451     Newx(PL_savestack,REASONABLE(128),ANY);
4452     PL_savestack_ix = 0;
4453     PL_savestack_max = REASONABLE(128);
4454 }
4455
4456 #undef REASONABLE
4457
4458 STATIC void
4459 S_nuke_stacks(pTHX)
4460 {
4461     dVAR;
4462     while (PL_curstackinfo->si_next)
4463         PL_curstackinfo = PL_curstackinfo->si_next;
4464     while (PL_curstackinfo) {
4465         PERL_SI *p = PL_curstackinfo->si_prev;
4466         /* curstackinfo->si_stack got nuked by sv_free_arenas() */
4467         Safefree(PL_curstackinfo->si_cxstack);
4468         Safefree(PL_curstackinfo);
4469         PL_curstackinfo = p;
4470     }
4471     Safefree(PL_tmps_stack);
4472     Safefree(PL_markstack);
4473     Safefree(PL_scopestack);
4474     Safefree(PL_savestack);
4475 }
4476
4477 STATIC void
4478 S_init_lexer(pTHX)
4479 {
4480     dVAR;
4481     PerlIO *tmpfp;
4482     tmpfp = PL_rsfp;
4483     PL_rsfp = Nullfp;
4484     lex_start(PL_linestr);
4485     PL_rsfp = tmpfp;
4486     PL_subname = newSVpvs("main");
4487 }
4488
4489 STATIC void
4490 S_init_predump_symbols(pTHX)
4491 {
4492     dVAR;
4493     GV *tmpgv;
4494     IO *io;
4495
4496     sv_setpvn(get_sv("\"", TRUE), " ", 1);
4497     PL_stdingv = gv_fetchpvs("STDIN", GV_ADD|GV_NOTQUAL, SVt_PVIO);
4498     GvMULTI_on(PL_stdingv);
4499     io = GvIOp(PL_stdingv);
4500     IoTYPE(io) = IoTYPE_RDONLY;
4501     IoIFP(io) = PerlIO_stdin();
4502     tmpgv = gv_fetchpvs("stdin", GV_ADD|GV_NOTQUAL, SVt_PV);
4503     GvMULTI_on(tmpgv);
4504     GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
4505
4506     tmpgv = gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO);
4507     GvMULTI_on(tmpgv);
4508     io = GvIOp(tmpgv);
4509     IoTYPE(io) = IoTYPE_WRONLY;
4510     IoOFP(io) = IoIFP(io) = PerlIO_stdout();
4511     setdefout(tmpgv);
4512     tmpgv = gv_fetchpvs("stdout", GV_ADD|GV_NOTQUAL, SVt_PV);
4513     GvMULTI_on(tmpgv);
4514     GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
4515
4516     PL_stderrgv = gv_fetchpvs("STDERR", GV_ADD|GV_NOTQUAL, SVt_PVIO);
4517     GvMULTI_on(PL_stderrgv);
4518     io = GvIOp(PL_stderrgv);
4519     IoTYPE(io) = IoTYPE_WRONLY;
4520     IoOFP(io) = IoIFP(io) = PerlIO_stderr();
4521     tmpgv = gv_fetchpvs("stderr", GV_ADD|GV_NOTQUAL, SVt_PV);
4522     GvMULTI_on(tmpgv);
4523     GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
4524
4525     PL_statname = newSV(0);             /* last filename we did stat on */
4526
4527     Safefree(PL_osname);
4528     PL_osname = savepv(OSNAME);
4529 }
4530
4531 void
4532 Perl_init_argv_symbols(pTHX_ register int argc, register char **argv)
4533 {
4534     dVAR;
4535     argc--,argv++;      /* skip name of script */
4536     if (PL_doswitches) {
4537         for (; argc > 0 && **argv == '-'; argc--,argv++) {
4538             char *s;
4539             if (!argv[0][1])
4540                 break;
4541             if (argv[0][1] == '-' && !argv[0][2]) {
4542                 argc--,argv++;
4543                 break;
4544             }
4545             if ((s = strchr(argv[0], '='))) {
4546                 const char *const start_name = argv[0] + 1;
4547                 sv_setpv(GvSV(gv_fetchpvn_flags(start_name, s - start_name,
4548                                                 TRUE, SVt_PV)), s + 1);
4549             }
4550             else
4551                 sv_setiv(GvSV(gv_fetchpv(argv[0]+1, GV_ADD, SVt_PV)),1);
4552         }
4553     }
4554     if ((PL_argvgv = gv_fetchpvs("ARGV", GV_ADD|GV_NOTQUAL, SVt_PVAV))) {
4555         GvMULTI_on(PL_argvgv);
4556         (void)gv_AVadd(PL_argvgv);
4557         av_clear(GvAVn(PL_argvgv));
4558         for (; argc > 0; argc--,argv++) {
4559             SV * const sv = newSVpv(argv[0],0);
4560             av_push(GvAVn(PL_argvgv),sv);
4561             if (!(PL_unicode & PERL_UNICODE_LOCALE_FLAG) || PL_utf8locale) {
4562                  if (PL_unicode & PERL_UNICODE_ARGV_FLAG)
4563                       SvUTF8_on(sv);
4564             }
4565             if (PL_unicode & PERL_UNICODE_WIDESYSCALLS_FLAG) /* Sarathy? */
4566                  (void)sv_utf8_decode(sv);
4567         }
4568     }
4569 }
4570
4571 STATIC void
4572 S_init_postdump_symbols(pTHX_ register int argc, register char **argv, register char **env)
4573 {
4574     dVAR;
4575     GV* tmpgv;
4576
4577     PL_toptarget = newSV(0);
4578     sv_upgrade(PL_toptarget, SVt_PVFM);
4579     sv_setpvn(PL_toptarget, "", 0);
4580     PL_bodytarget = newSV(0);
4581     sv_upgrade(PL_bodytarget, SVt_PVFM);
4582     sv_setpvn(PL_bodytarget, "", 0);
4583     PL_formtarget = PL_bodytarget;
4584
4585     TAINT;
4586
4587     init_argv_symbols(argc,argv);
4588
4589     if ((tmpgv = gv_fetchpvs("0", GV_ADD|GV_NOTQUAL, SVt_PV))) {
4590 #ifdef MACOS_TRADITIONAL
4591         /* $0 is not majick on a Mac */
4592         sv_setpv(GvSV(tmpgv),MacPerl_MPWFileName(PL_origfilename));
4593 #else
4594         sv_setpv(GvSV(tmpgv),PL_origfilename);
4595         magicname("0", "0", 1);
4596 #endif
4597     }
4598     if ((PL_envgv = gv_fetchpvs("ENV", GV_ADD|GV_NOTQUAL, SVt_PVHV))) {
4599         HV *hv;
4600         GvMULTI_on(PL_envgv);
4601         hv = GvHVn(PL_envgv);
4602         hv_magic(hv, NULL, PERL_MAGIC_env);
4603 #ifndef PERL_MICRO
4604 #ifdef USE_ENVIRON_ARRAY
4605         /* Note that if the supplied env parameter is actually a copy
4606            of the global environ then it may now point to free'd memory
4607            if the environment has been modified since. To avoid this
4608            problem we treat env==NULL as meaning 'use the default'
4609         */
4610         if (!env)
4611             env = environ;
4612         if (env != environ
4613 #  ifdef USE_ITHREADS
4614             && PL_curinterp == aTHX
4615 #  endif
4616            )
4617         {
4618             environ[0] = NULL;
4619         }
4620         if (env) {
4621           char** origenv = environ;
4622           char *s;
4623           SV *sv;
4624           for (; *env; env++) {
4625             if (!(s = strchr(*env,'=')) || s == *env)
4626                 continue;
4627 #if defined(MSDOS) && !defined(DJGPP)
4628             *s = '\0';
4629             (void)strupr(*env);
4630             *s = '=';
4631 #endif
4632             sv = newSVpv(s+1, 0);
4633             (void)hv_store(hv, *env, s - *env, sv, 0);
4634             if (env != environ)
4635                 mg_set(sv);
4636             if (origenv != environ) {
4637               /* realloc has shifted us */
4638               env = (env - origenv) + environ;
4639               origenv = environ;
4640             }
4641           }
4642       }
4643 #endif /* USE_ENVIRON_ARRAY */
4644 #endif /* !PERL_MICRO */
4645     }
4646     TAINT_NOT;
4647     if ((tmpgv = gv_fetchpvs("$", GV_ADD|GV_NOTQUAL, SVt_PV))) {
4648         SvREADONLY_off(GvSV(tmpgv));
4649         sv_setiv(GvSV(tmpgv), (IV)PerlProc_getpid());
4650         SvREADONLY_on(GvSV(tmpgv));
4651     }
4652 #ifdef THREADS_HAVE_PIDS
4653     PL_ppid = (IV)getppid();
4654 #endif
4655
4656     /* touch @F array to prevent spurious warnings 20020415 MJD */
4657     if (PL_minus_a) {
4658       (void) get_av("main::F", TRUE | GV_ADDMULTI);
4659     }
4660     /* touch @- and @+ arrays to prevent spurious warnings 20020415 MJD */
4661     (void) get_av("main::-", TRUE | GV_ADDMULTI);
4662     (void) get_av("main::+", TRUE | GV_ADDMULTI);
4663 }
4664
4665 STATIC void
4666 S_init_perllib(pTHX)
4667 {
4668     dVAR;
4669     char *s;
4670     if (!PL_tainting) {
4671 #ifndef VMS
4672         s = PerlEnv_getenv("PERL5LIB");
4673 /*
4674  * It isn't possible to delete an environment variable with
4675  * PERL_USE_SAFE_PUTENV set unless unsetenv() is also available, so in that
4676  * case we treat PERL5LIB as undefined if it has a zero-length value.
4677  */
4678 #if defined(PERL_USE_SAFE_PUTENV) && ! defined(HAS_UNSETENV)
4679         if (s && *s != '\0')
4680 #else
4681         if (s)
4682 #endif
4683             incpush(s, TRUE, TRUE, TRUE, FALSE);
4684         else
4685             incpush(PerlEnv_getenv("PERLLIB"), FALSE, FALSE, TRUE, FALSE);
4686 #else /* VMS */
4687         /* Treat PERL5?LIB as a possible search list logical name -- the
4688          * "natural" VMS idiom for a Unix path string.  We allow each
4689          * element to be a set of |-separated directories for compatibility.
4690          */
4691         char buf[256];
4692         int idx = 0;
4693         if (my_trnlnm("PERL5LIB",buf,0))
4694             do { incpush(buf,TRUE,TRUE,TRUE,FALSE); } while (my_trnlnm("PERL5LIB",buf,++idx));
4695         else
4696             while (my_trnlnm("PERLLIB",buf,idx++)) incpush(buf,FALSE,FALSE,TRUE,FALSE);
4697 #endif /* VMS */
4698     }
4699
4700 /* Use the ~-expanded versions of APPLLIB (undocumented),
4701     ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB
4702 */
4703 #ifdef APPLLIB_EXP
4704     incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
4705 #endif
4706
4707 #ifdef ARCHLIB_EXP
4708     incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
4709 #endif
4710 #ifdef MACOS_TRADITIONAL
4711     {
4712         Stat_t tmpstatbuf;
4713         SV * privdir = newSV(0);
4714         char * macperl = PerlEnv_getenv("MACPERL");
4715         
4716         if (!macperl)
4717             macperl = "";
4718         
4719         Perl_sv_setpvf(aTHX_ privdir, "%slib:", macperl);
4720         if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
4721             incpush(SvPVX(privdir), TRUE, FALSE, TRUE, FALSE);
4722         Perl_sv_setpvf(aTHX_ privdir, "%ssite_perl:", macperl);
4723         if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
4724             incpush(SvPVX(privdir), TRUE, FALSE, TRUE, FALSE);
4725         
4726         SvREFCNT_dec(privdir);
4727     }
4728     if (!PL_tainting)
4729         incpush(":", FALSE, FALSE, TRUE, FALSE);
4730 #else
4731 #ifndef PRIVLIB_EXP
4732 #  define PRIVLIB_EXP "/usr/local/lib/perl5:/usr/local/lib/perl"
4733 #endif
4734 #if defined(WIN32)
4735     incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE, TRUE);
4736 #else
4737     incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE);
4738 #endif
4739
4740 #ifdef SITEARCH_EXP
4741     /* sitearch is always relative to sitelib on Windows for
4742      * DLL-based path intuition to work correctly */
4743 #  if !defined(WIN32)
4744     incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
4745 #  endif
4746 #endif
4747
4748 #ifdef SITELIB_EXP
4749 #  if defined(WIN32)
4750     /* this picks up sitearch as well */
4751     incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
4752 #  else
4753     incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
4754 #  endif
4755 #endif
4756
4757 #ifdef SITELIB_STEM /* Search for version-specific dirs below here */
4758     incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
4759 #endif
4760
4761 #ifdef PERL_VENDORARCH_EXP
4762     /* vendorarch is always relative to vendorlib on Windows for
4763      * DLL-based path intuition to work correctly */
4764 #  if !defined(WIN32)
4765     incpush(PERL_VENDORARCH_EXP, FALSE, FALSE, TRUE, TRUE);
4766 #  endif
4767 #endif
4768
4769 #ifdef PERL_VENDORLIB_EXP
4770 #  if defined(WIN32)
4771     incpush(PERL_VENDORLIB_EXP, TRUE, FALSE, TRUE, TRUE);       /* this picks up vendorarch as well */
4772 #  else
4773     incpush(PERL_VENDORLIB_EXP, FALSE, FALSE, TRUE, TRUE);
4774 #  endif
4775 #endif
4776
4777 #ifdef PERL_VENDORLIB_STEM /* Search for version-specific dirs below here */
4778     incpush(PERL_VENDORLIB_STEM, FALSE, TRUE, TRUE, TRUE);
4779 #endif
4780
4781 #ifdef PERL_OTHERLIBDIRS
4782     incpush(PERL_OTHERLIBDIRS, TRUE, TRUE, TRUE, TRUE);
4783 #endif
4784
4785     if (!PL_tainting)
4786         incpush(".", FALSE, FALSE, TRUE, FALSE);
4787 #endif /* MACOS_TRADITIONAL */
4788 }
4789
4790 #if defined(DOSISH) || defined(EPOC) || defined(__SYMBIAN32__)
4791 #    define PERLLIB_SEP ';'
4792 #else
4793 #  if defined(VMS)
4794 #    define PERLLIB_SEP '|'
4795 #  else
4796 #    if defined(MACOS_TRADITIONAL)
4797 #      define PERLLIB_SEP ','
4798 #    else
4799 #      define PERLLIB_SEP ':'
4800 #    endif
4801 #  endif
4802 #endif
4803 #ifndef PERLLIB_MANGLE
4804 #  define PERLLIB_MANGLE(s,n) (s)
4805 #endif
4806
4807 /* Push a directory onto @INC if it exists.
4808    Generate a new SV if we do this, to save needing to copy the SV we push
4809    onto @INC  */
4810 STATIC SV *
4811 S_incpush_if_exists(pTHX_ SV *dir)
4812 {
4813     dVAR;
4814     Stat_t tmpstatbuf;
4815     if (PerlLIO_stat(SvPVX_const(dir), &tmpstatbuf) >= 0 &&
4816         S_ISDIR(tmpstatbuf.st_mode)) {
4817         av_push(GvAVn(PL_incgv), dir);
4818         dir = newSV(0);
4819     }
4820     return dir;
4821 }
4822
4823 STATIC void
4824 S_incpush(pTHX_ const char *dir, bool addsubdirs, bool addoldvers, bool usesep,
4825           bool canrelocate)
4826 {
4827     dVAR;
4828     SV *subdir = NULL;
4829     const char *p = dir;
4830
4831     if (!p || !*p)
4832         return;
4833
4834     if (addsubdirs || addoldvers) {
4835         subdir = newSV(0);
4836     }
4837
4838     /* Break at all separators */
4839     while (p && *p) {
4840         SV *libdir = newSV(0);
4841         const char *s;
4842
4843         /* skip any consecutive separators */
4844         if (usesep) {
4845             while ( *p == PERLLIB_SEP ) {
4846                 /* Uncomment the next line for PATH semantics */
4847                 /* av_push(GvAVn(PL_incgv), newSVpvs(".")); */
4848                 p++;
4849             }
4850         }
4851
4852         if ( usesep && (s = strchr(p, PERLLIB_SEP)) != NULL ) {
4853             sv_setpvn(libdir, PERLLIB_MANGLE(p, (STRLEN)(s - p)),
4854                       (STRLEN)(s - p));
4855             p = s + 1;
4856         }
4857         else {
4858             sv_setpv(libdir, PERLLIB_MANGLE(p, 0));
4859             p = NULL;   /* break out */
4860         }
4861 #ifdef MACOS_TRADITIONAL
4862         if (!strchr(SvPVX(libdir), ':')) {
4863             char buf[256];
4864
4865             sv_setpv(libdir, MacPerl_CanonDir(SvPVX(libdir), buf, 0));
4866         }
4867         if (SvPVX(libdir)[SvCUR(libdir)-1] != ':')
4868             sv_catpvs(libdir, ":");
4869 #endif
4870
4871         /* Do the if() outside the #ifdef to avoid warnings about an unused
4872            parameter.  */
4873         if (canrelocate) {
4874 #ifdef PERL_RELOCATABLE_INC
4875         /*
4876          * Relocatable include entries are marked with a leading .../
4877          *
4878          * The algorithm is
4879          * 0: Remove that leading ".../"
4880          * 1: Remove trailing executable name (anything after the last '/')
4881          *    from the perl path to give a perl prefix
4882          * Then
4883          * While the @INC element starts "../" and the prefix ends with a real
4884          * directory (ie not . or ..) chop that real directory off the prefix
4885          * and the leading "../" from the @INC element. ie a logical "../"
4886          * cleanup
4887          * Finally concatenate the prefix and the remainder of the @INC element
4888          * The intent is that /usr/local/bin/perl and .../../lib/perl5
4889          * generates /usr/local/lib/perl5
4890          */
4891             const char *libpath = SvPVX(libdir);
4892             STRLEN libpath_len = SvCUR(libdir);
4893             if (libpath_len >= 4 && memEQ (libpath, ".../", 4)) {
4894                 /* Game on!  */
4895                 SV * const caret_X = get_sv("\030", 0);
4896                 /* Going to use the SV just as a scratch buffer holding a C
4897                    string:  */
4898                 SV *prefix_sv;
4899                 char *prefix;
4900                 char *lastslash;
4901
4902                 /* $^X is *the* source of taint if tainting is on, hence
4903                    SvPOK() won't be true.  */
4904                 assert(caret_X);
4905                 assert(SvPOKp(caret_X));
4906                 prefix_sv = newSVpvn(SvPVX(caret_X), SvCUR(caret_X));
4907                 /* Firstly take off the leading .../
4908                    If all else fail we'll do the paths relative to the current
4909                    directory.  */
4910                 sv_chop(libdir, libpath + 4);
4911                 /* Don't use SvPV as we're intentionally bypassing taining,
4912                    mortal copies that the mg_get of tainting creates, and
4913                    corruption that seems to come via the save stack.
4914                    I guess that the save stack isn't correctly set up yet.  */
4915                 libpath = SvPVX(libdir);
4916                 libpath_len = SvCUR(libdir);
4917
4918                 /* This would work more efficiently with memrchr, but as it's
4919                    only a GNU extension we'd need to probe for it and
4920                    implement our own. Not hard, but maybe not worth it?  */
4921
4922                 prefix = SvPVX(prefix_sv);
4923                 lastslash = strrchr(prefix, '/');
4924
4925                 /* First time in with the *lastslash = '\0' we just wipe off
4926                    the trailing /perl from (say) /usr/foo/bin/perl
4927                 */
4928                 if (lastslash) {
4929                     SV *tempsv;
4930                     while ((*lastslash = '\0'), /* Do that, come what may.  */
4931                            (libpath_len >= 3 && memEQ(libpath, "../", 3)
4932                             && (lastslash = strrchr(prefix, '/')))) {
4933                         if (lastslash[1] == '\0'
4934                             || (lastslash[1] == '.'
4935                                 && (lastslash[2] == '/' /* ends "/."  */
4936                                     || (lastslash[2] == '/'
4937                                         && lastslash[3] == '/' /* or "/.."  */
4938                                         )))) {
4939                             /* Prefix ends "/" or "/." or "/..", any of which
4940                                are fishy, so don't do any more logical cleanup.
4941                             */
4942                             break;
4943                         }
4944                         /* Remove leading "../" from path  */
4945                         libpath += 3;
4946                         libpath_len -= 3;
4947                         /* Next iteration round the loop removes the last
4948                            directory name from prefix by writing a '\0' in
4949                            the while clause.  */
4950                     }
4951                     /* prefix has been terminated with a '\0' to the correct
4952                        length. libpath points somewhere into the libdir SV.
4953                        We need to join the 2 with '/' and drop the result into
4954                        libdir.  */
4955                     tempsv = Perl_newSVpvf(aTHX_ "%s/%s", prefix, libpath);
4956                     SvREFCNT_dec(libdir);
4957                     /* And this is the new libdir.  */
4958                     libdir = tempsv;
4959                     if (PL_tainting &&
4960                         (PL_uid != PL_euid || PL_gid != PL_egid)) {
4961                         /* Need to taint reloccated paths if running set ID  */
4962                         SvTAINTED_on(libdir);
4963                     }
4964                 }
4965                 SvREFCNT_dec(prefix_sv);
4966             }
4967 #endif
4968         }
4969         /*
4970          * BEFORE pushing libdir onto @INC we may first push version- and
4971          * archname-specific sub-directories.
4972          */
4973         if (addsubdirs || addoldvers) {
4974 #ifdef PERL_INC_VERSION_LIST
4975             /* Configure terminates PERL_INC_VERSION_LIST with a NULL */
4976             const char * const incverlist[] = { PERL_INC_VERSION_LIST };
4977             const char * const *incver;
4978 #endif
4979 #ifdef VMS
4980             char *unix;
4981             STRLEN len;
4982
4983             if ((unix = tounixspec_ts(SvPV(libdir,len),NULL)) != NULL) {
4984                 len = strlen(unix);
4985                 while (unix[len-1] == '/') len--;  /* Cosmetic */
4986                 sv_usepvn(libdir,unix,len);
4987             }
4988             else
4989                 PerlIO_printf(Perl_error_log,
4990                               "Failed to unixify @INC element \"%s\"\n",
4991                               SvPV(libdir,len));
4992 #endif
4993             if (addsubdirs) {
4994 #ifdef MACOS_TRADITIONAL
4995 #define PERL_AV_SUFFIX_FMT      ""
4996 #define PERL_ARCH_FMT           "%s:"
4997 #define PERL_ARCH_FMT_PATH      PERL_FS_VER_FMT PERL_AV_SUFFIX_FMT
4998 #else
4999 #define PERL_AV_SUFFIX_FMT      "/"
5000 #define PERL_ARCH_FMT           "/%s"
5001 #define PERL_ARCH_FMT_PATH      PERL_AV_SUFFIX_FMT PERL_FS_VER_FMT
5002 #endif
5003                 /* .../version/archname if -d .../version/archname */
5004                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH PERL_ARCH_FMT,
5005                                 libdir,
5006                                (int)PERL_REVISION, (int)PERL_VERSION,
5007                                (int)PERL_SUBVERSION, ARCHNAME);
5008                 subdir = S_incpush_if_exists(aTHX_ subdir);
5009
5010                 /* .../version if -d .../version */
5011                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH, libdir,
5012                                (int)PERL_REVISION, (int)PERL_VERSION,
5013                                (int)PERL_SUBVERSION);
5014                 subdir = S_incpush_if_exists(aTHX_ subdir);
5015
5016                 /* .../archname if -d .../archname */
5017                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, ARCHNAME);
5018                 subdir = S_incpush_if_exists(aTHX_ subdir);
5019
5020             }
5021
5022 #ifdef PERL_INC_VERSION_LIST
5023             if (addoldvers) {
5024                 for (incver = incverlist; *incver; incver++) {
5025                     /* .../xxx if -d .../xxx */
5026                     Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, *incver);
5027                     subdir = S_incpush_if_exists(aTHX_ subdir);
5028                 }
5029             }
5030 #endif
5031         }
5032
5033         /* finally push this lib directory on the end of @INC */
5034         av_push(GvAVn(PL_incgv), libdir);
5035     }
5036     if (subdir) {
5037         assert (SvREFCNT(subdir) == 1);
5038         SvREFCNT_dec(subdir);
5039     }
5040 }
5041
5042 #ifdef USE_5005THREADS
5043 STATIC struct perl_thread *
5044 S_init_main_thread(pTHX)
5045 {
5046 #if !defined(PERL_IMPLICIT_CONTEXT)
5047     struct perl_thread *thr;
5048 #endif
5049     XPV *xpv;
5050
5051     Newxz(thr, 1, struct perl_thread);
5052     PL_curcop = &PL_compiling;
5053     thr->interp = PERL_GET_INTERP;
5054     thr->cvcache = newHV();
5055     thr->threadsv = newAV();
5056     /* thr->threadsvp is set when find_threadsv is called */
5057     thr->specific = newAV();
5058     thr->flags = THRf_R_JOINABLE;
5059     MUTEX_INIT(&thr->mutex);
5060     /* Handcraft thrsv similarly to mess_sv */
5061     Newx(PL_thrsv, 1, SV);
5062     Newxz(xpv, 1, XPV);
5063     SvFLAGS(PL_thrsv) = SVt_PV;
5064     SvANY(PL_thrsv) = (void*)xpv;
5065     SvREFCNT(PL_thrsv) = 1 << 30;       /* practically infinite */
5066     SvPV_set(PL_thrsvr, (char*)thr);
5067     SvCUR_set(PL_thrsv, sizeof(thr));
5068     SvLEN_set(PL_thrsv, sizeof(thr));
5069     *SvEND(PL_thrsv) = '\0';    /* in the trailing_nul field */
5070     thr->oursv = PL_thrsv;
5071     PL_chopset = " \n-";
5072     PL_dumpindent = 4;
5073
5074     MUTEX_LOCK(&PL_threads_mutex);
5075     PL_nthreads++;
5076     thr->tid = 0;
5077     thr->next = thr;
5078     thr->prev = thr;
5079     thr->thr_done = 0;
5080     MUTEX_UNLOCK(&PL_threads_mutex);
5081
5082 #ifdef HAVE_THREAD_INTERN
5083     Perl_init_thread_intern(thr);
5084 #endif
5085
5086 #ifdef SET_THREAD_SELF
5087     SET_THREAD_SELF(thr);
5088 #else
5089     thr->self = pthread_self();
5090 #endif /* SET_THREAD_SELF */
5091     PERL_SET_THX(thr);
5092
5093     /*
5094      * These must come after the thread self setting
5095      * because sv_setpvn does SvTAINT and the taint
5096      * fields thread selfness being set.
5097      */
5098     PL_toptarget = newSV(0);
5099     sv_upgrade(PL_toptarget, SVt_PVFM);
5100     sv_setpvn(PL_toptarget, "", 0);
5101     PL_bodytarget = newSV(0);
5102     sv_upgrade(PL_bodytarget, SVt_PVFM);
5103     sv_setpvn(PL_bodytarget, "", 0);
5104     PL_formtarget = PL_bodytarget;
5105     thr->errsv = newSVpvs("");
5106     (void) find_threadsv("@");  /* Ensure $@ is initialised early */
5107
5108     PL_maxscream = -1;
5109     PL_peepp = MEMBER_TO_FPTR(Perl_peep);
5110     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
5111     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
5112     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
5113     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
5114     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
5115     PL_regindent = 0;
5116     PL_reginterp_cnt = 0;
5117
5118     return thr;
5119 }
5120 #endif /* USE_5005THREADS */
5121
5122 void
5123 Perl_call_list(pTHX_ I32 oldscope, AV *paramList)
5124 {
5125     dVAR;
5126     SV *atsv;
5127     const line_t oldline = CopLINE(PL_curcop);
5128     CV *cv;
5129     STRLEN len;
5130     int ret;
5131     dJMPENV;
5132
5133     while (av_len(paramList) >= 0) {
5134         cv = (CV*)av_shift(paramList);
5135         if (PL_savebegin) {
5136             if (paramList == PL_beginav) {
5137                 /* save PL_beginav for compiler */
5138                 if (! PL_beginav_save)
5139                     PL_beginav_save = newAV();
5140                 av_push(PL_beginav_save, (SV*)cv);
5141             }
5142             else if (paramList == PL_checkav) {
5143                 /* save PL_checkav for compiler */
5144                 if (! PL_checkav_save)
5145                     PL_checkav_save = newAV();
5146                 av_push(PL_checkav_save, (SV*)cv);
5147             }
5148         } else {
5149             SAVEFREESV(cv);
5150         }
5151         JMPENV_PUSH(ret);
5152         switch (ret) {
5153         case 0:
5154             call_list_body(cv);
5155             atsv = ERRSV;
5156             (void)SvPV_const(atsv, len);
5157             if (len) {
5158                 PL_curcop = &PL_compiling;
5159                 CopLINE_set(PL_curcop, oldline);
5160                 if (paramList == PL_beginav)
5161                     sv_catpvs(atsv, "BEGIN failed--compilation aborted");
5162                 else
5163                     Perl_sv_catpvf(aTHX_ atsv,
5164                                    "%s failed--call queue aborted",
5165                                    paramList == PL_checkav ? "CHECK"
5166                                    : paramList == PL_initav ? "INIT"
5167                                    : "END");
5168                 while (PL_scopestack_ix > oldscope)
5169                     LEAVE;
5170                 JMPENV_POP;
5171                 Perl_croak(aTHX_ "%"SVf"", atsv);
5172             }
5173             break;
5174         case 1:
5175             STATUS_ALL_FAILURE;
5176             /* FALL THROUGH */
5177         case 2:
5178             /* my_exit() was called */
5179             while (PL_scopestack_ix > oldscope)
5180                 LEAVE;
5181             FREETMPS;
5182             PL_curstash = PL_defstash;
5183             PL_curcop = &PL_compiling;
5184             CopLINE_set(PL_curcop, oldline);
5185             JMPENV_POP;
5186             if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED)) {
5187                 if (paramList == PL_beginav)
5188                     Perl_croak(aTHX_ "BEGIN failed--compilation aborted");
5189                 else
5190                     Perl_croak(aTHX_ "%s failed--call queue aborted",
5191                                paramList == PL_checkav ? "CHECK"
5192                                : paramList == PL_initav ? "INIT"
5193                                : "END");
5194             }
5195             my_exit_jump();
5196             /* NOTREACHED */
5197         case 3:
5198             if (PL_restartop) {
5199                 PL_curcop = &PL_compiling;
5200                 CopLINE_set(PL_curcop, oldline);
5201                 JMPENV_JUMP(3);
5202             }
5203             PerlIO_printf(Perl_error_log, "panic: restartop\n");
5204             FREETMPS;
5205             break;
5206         }
5207         JMPENV_POP;
5208     }
5209 }
5210
5211 STATIC void *
5212 S_call_list_body(pTHX_ CV *cv)
5213 {
5214     dVAR;
5215     PUSHMARK(PL_stack_sp);
5216     call_sv((SV*)cv, G_EVAL|G_DISCARD);
5217     return NULL;
5218 }
5219
5220 void
5221 Perl_my_exit(pTHX_ U32 status)
5222 {
5223     dVAR;
5224     DEBUG_S(PerlIO_printf(Perl_debug_log, "my_exit: thread %p, status %lu\n",
5225                           thr, (unsigned long) status));
5226     switch (status) {
5227     case 0:
5228         STATUS_ALL_SUCCESS;
5229         break;
5230     case 1:
5231         STATUS_ALL_FAILURE;
5232         break;
5233     default:
5234         STATUS_EXIT_SET(status);
5235         break;
5236     }
5237     my_exit_jump();
5238 }
5239
5240 void
5241 Perl_my_failure_exit(pTHX)
5242 {
5243     dVAR;
5244 #ifdef VMS
5245      /* We have been called to fall on our sword.  The desired exit code
5246       * should be already set in STATUS_UNIX, but could be shifted over
5247       * by 8 bits.  STATUS_UNIX_EXIT_SET will handle the cases where a
5248       * that code is set.
5249       *
5250       * If an error code has not been set, then force the issue.
5251       */
5252     if (MY_POSIX_EXIT) {
5253
5254         /* In POSIX_EXIT mode follow Perl documentations and use 255 for
5255          * the exit code when there isn't an error.
5256          */
5257
5258         if (STATUS_UNIX == 0)
5259             STATUS_UNIX_EXIT_SET(255);
5260         else {
5261             STATUS_UNIX_EXIT_SET(STATUS_UNIX);
5262
5263             /* The exit code could have been set by $? or vmsish which
5264              * means that it may not be fatal.  So convert
5265              * success/warning codes to fatal.
5266              */
5267             if ((STATUS_NATIVE & (STS$K_SEVERE|STS$K_ERROR)) == 0)
5268                 STATUS_UNIX_EXIT_SET(255);
5269         }
5270     }
5271     else {
5272         /* Traditionally Perl on VMS always expects a Fatal Error. */
5273         if (vaxc$errno & 1) {
5274
5275             /* So force success status to failure */
5276             if (STATUS_NATIVE & 1)
5277                 STATUS_ALL_FAILURE;
5278         }
5279         else {
5280             if (!vaxc$errno) {
5281                 STATUS_UNIX = EINTR; /* In case something cares */
5282                 STATUS_ALL_FAILURE;
5283             }
5284             else {
5285                 int severity;
5286                 STATUS_NATIVE = vaxc$errno; /* Should already be this */
5287
5288                 /* Encode the severity code */
5289                 severity = STATUS_NATIVE & STS$M_SEVERITY;
5290                 STATUS_UNIX = (severity ? severity : 1) << 8;
5291
5292                 /* Perl expects this to be a fatal error */
5293                 if (severity != STS$K_SEVERE)
5294                     STATUS_ALL_FAILURE;
5295             }
5296         }
5297     }
5298
5299 #else
5300     int exitstatus;
5301     if (errno & 255)
5302         STATUS_UNIX_SET(errno);
5303     else {
5304         exitstatus = STATUS_UNIX >> 8;
5305         if (exitstatus & 255)
5306             STATUS_UNIX_SET(exitstatus);
5307         else
5308             STATUS_UNIX_SET(255);
5309     }
5310 #endif
5311     my_exit_jump();
5312 }
5313
5314 STATIC void
5315 S_my_exit_jump(pTHX)
5316 {
5317     dVAR;
5318     register PERL_CONTEXT *cx;
5319     I32 gimme;
5320     SV **newsp;
5321
5322     if (PL_e_script) {
5323         SvREFCNT_dec(PL_e_script);
5324         PL_e_script = NULL;
5325     }
5326
5327     POPSTACK_TO(PL_mainstack);
5328     if (cxstack_ix >= 0) {
5329         if (cxstack_ix > 0)
5330             dounwind(0);
5331         POPBLOCK(cx,PL_curpm);
5332         LEAVE;
5333     }
5334
5335     JMPENV_JUMP(2);
5336     PERL_UNUSED_VAR(gimme);
5337     PERL_UNUSED_VAR(newsp);
5338 }
5339
5340 static I32
5341 read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen)
5342 {
5343     dVAR;
5344     const char * const p  = SvPVX_const(PL_e_script);
5345     const char *nl = strchr(p, '\n');
5346
5347     PERL_UNUSED_ARG(idx);
5348     PERL_UNUSED_ARG(maxlen);
5349
5350     nl = (nl) ? nl+1 : SvEND(PL_e_script);
5351     if (nl-p == 0) {
5352         filter_del(read_e_script);
5353         return 0;
5354     }
5355     sv_catpvn(buf_sv, p, nl-p);
5356     sv_chop(PL_e_script, nl);
5357     return 1;
5358 }
5359
5360 /*
5361  * Local variables:
5362  * c-indentation-style: bsd
5363  * c-basic-offset: 4
5364  * indent-tabs-mode: t
5365  * End:
5366  *
5367  * ex: set ts=8 sts=4 sw=4 noet:
5368  */