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