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