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