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