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