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