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