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