This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(accidentally empty checkin)
[perl5.git] / perl.c
... / ...
CommitLineData
1/* perl.c
2 *
3 * Copyright (c) 1987-2001 Larry Wall
4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
8 */
9
10/*
11 * "A ship then new they built for him/of mithril and of elven glass" --Bilbo
12 */
13
14#include "EXTERN.h"
15#define PERL_IN_PERL_C
16#include "perl.h"
17#include "patchlevel.h" /* for local_patches */
18
19/* XXX If this causes problems, set i_unistd=undef in the hint file. */
20#ifdef I_UNISTD
21#include <unistd.h>
22#endif
23
24#if !defined(STANDARD_C) && !defined(HAS_GETENV_PROTOTYPE)
25char *getenv (char *); /* Usually in <stdlib.h> */
26#endif
27
28static I32 read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen);
29
30#ifdef IAMSUID
31#ifndef DOSUID
32#define DOSUID
33#endif
34#endif
35
36#ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
37#ifdef DOSUID
38#undef DOSUID
39#endif
40#endif
41
42#if defined(USE_5005THREADS)
43# define INIT_TLS_AND_INTERP \
44 STMT_START { \
45 if (!PL_curinterp) { \
46 PERL_SET_INTERP(my_perl); \
47 INIT_THREADS; \
48 ALLOC_THREAD_KEY; \
49 } \
50 } STMT_END
51#else
52# if defined(USE_ITHREADS)
53# define INIT_TLS_AND_INTERP \
54 STMT_START { \
55 if (!PL_curinterp) { \
56 PERL_SET_INTERP(my_perl); \
57 INIT_THREADS; \
58 ALLOC_THREAD_KEY; \
59 PERL_SET_THX(my_perl); \
60 OP_REFCNT_INIT; \
61 } \
62 else { \
63 PERL_SET_THX(my_perl); \
64 } \
65 } STMT_END
66# else
67# define INIT_TLS_AND_INTERP \
68 STMT_START { \
69 if (!PL_curinterp) { \
70 PERL_SET_INTERP(my_perl); \
71 } \
72 PERL_SET_THX(my_perl); \
73 } STMT_END
74# endif
75#endif
76
77#ifdef PERL_IMPLICIT_SYS
78PerlInterpreter *
79perl_alloc_using(struct IPerlMem* ipM, struct IPerlMem* ipMS,
80 struct IPerlMem* ipMP, struct IPerlEnv* ipE,
81 struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
82 struct IPerlDir* ipD, struct IPerlSock* ipS,
83 struct IPerlProc* ipP)
84{
85 PerlInterpreter *my_perl;
86 /* New() needs interpreter, so call malloc() instead */
87 my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
88 INIT_TLS_AND_INTERP;
89 Zero(my_perl, 1, PerlInterpreter);
90 PL_Mem = ipM;
91 PL_MemShared = ipMS;
92 PL_MemParse = ipMP;
93 PL_Env = ipE;
94 PL_StdIO = ipStd;
95 PL_LIO = ipLIO;
96 PL_Dir = ipD;
97 PL_Sock = ipS;
98 PL_Proc = ipP;
99
100 return my_perl;
101}
102#else
103
104/*
105=for apidoc perl_alloc
106
107Allocates a new Perl interpreter. See L<perlembed>.
108
109=cut
110*/
111
112PerlInterpreter *
113perl_alloc(void)
114{
115 PerlInterpreter *my_perl;
116
117 /* New() needs interpreter, so call malloc() instead */
118 my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
119
120 INIT_TLS_AND_INTERP;
121 Zero(my_perl, 1, PerlInterpreter);
122 return my_perl;
123}
124#endif /* PERL_IMPLICIT_SYS */
125
126/*
127=for apidoc perl_construct
128
129Initializes a new Perl interpreter. See L<perlembed>.
130
131=cut
132*/
133
134void
135perl_construct(pTHXx)
136{
137#ifdef USE_5005THREADS
138#ifndef FAKE_THREADS
139 struct perl_thread *thr = NULL;
140#endif /* FAKE_THREADS */
141#endif /* USE_5005THREADS */
142
143#ifdef MULTIPLICITY
144 init_interp();
145 PL_perl_destruct_level = 1;
146#else
147 if (PL_perl_destruct_level > 0)
148 init_interp();
149#endif
150
151 /* Init the real globals (and main thread)? */
152 if (!PL_linestr) {
153#ifdef USE_5005THREADS
154 MUTEX_INIT(&PL_sv_mutex);
155 /*
156 * Safe to use basic SV functions from now on (though
157 * not things like mortals or tainting yet).
158 */
159 MUTEX_INIT(&PL_eval_mutex);
160 COND_INIT(&PL_eval_cond);
161 MUTEX_INIT(&PL_threads_mutex);
162 COND_INIT(&PL_nthreads_cond);
163# ifdef EMULATE_ATOMIC_REFCOUNTS
164 MUTEX_INIT(&PL_svref_mutex);
165# endif /* EMULATE_ATOMIC_REFCOUNTS */
166
167 MUTEX_INIT(&PL_cred_mutex);
168 MUTEX_INIT(&PL_sv_lock_mutex);
169 MUTEX_INIT(&PL_fdpid_mutex);
170
171 thr = init_main_thread();
172#endif /* USE_5005THREADS */
173
174#ifdef PERL_FLEXIBLE_EXCEPTIONS
175 PL_protect = MEMBER_TO_FPTR(Perl_default_protect); /* for exceptions */
176#endif
177
178 PL_curcop = &PL_compiling; /* needed by ckWARN, right away */
179
180 PL_linestr = NEWSV(65,79);
181 sv_upgrade(PL_linestr,SVt_PVIV);
182
183 if (!SvREADONLY(&PL_sv_undef)) {
184 /* set read-only and try to insure than we wont see REFCNT==0
185 very often */
186
187 SvREADONLY_on(&PL_sv_undef);
188 SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
189
190 sv_setpv(&PL_sv_no,PL_No);
191 SvNV(&PL_sv_no);
192 SvREADONLY_on(&PL_sv_no);
193 SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
194
195 sv_setpv(&PL_sv_yes,PL_Yes);
196 SvNV(&PL_sv_yes);
197 SvREADONLY_on(&PL_sv_yes);
198 SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;
199 }
200
201 PL_sighandlerp = Perl_sighandler;
202 PL_pidstatus = newHV();
203
204#ifdef MSDOS
205 /*
206 * There is no way we can refer to them from Perl so close them to save
207 * space. The other alternative would be to provide STDAUX and STDPRN
208 * filehandles.
209 */
210 (void)PerlIO_close(PerlIO_importFILE(stdaux, 0));
211 (void)PerlIO_close(PerlIO_importFILE(stdprn, 0));
212#endif
213 }
214
215 PL_rs = newSVpvn("\n", 1);
216
217 init_stacks();
218
219 init_ids();
220 PL_lex_state = LEX_NOTPARSING;
221
222 JMPENV_BOOTSTRAP;
223 STATUS_ALL_SUCCESS;
224
225 init_i18nl10n(1);
226 SET_NUMERIC_STANDARD();
227
228 {
229 U8 *s;
230 PL_patchlevel = NEWSV(0,4);
231 (void)SvUPGRADE(PL_patchlevel, SVt_PVNV);
232 if (PERL_REVISION > 127 || PERL_VERSION > 127 || PERL_SUBVERSION > 127)
233 SvGROW(PL_patchlevel, UTF8_MAXLEN*3+1);
234 s = (U8*)SvPVX(PL_patchlevel);
235 /* Build version strings using "native" characters */
236 s = uvchr_to_utf8(s, (UV)PERL_REVISION);
237 s = uvchr_to_utf8(s, (UV)PERL_VERSION);
238 s = uvchr_to_utf8(s, (UV)PERL_SUBVERSION);
239 *s = '\0';
240 SvCUR_set(PL_patchlevel, s - (U8*)SvPVX(PL_patchlevel));
241 SvPOK_on(PL_patchlevel);
242 SvNVX(PL_patchlevel) = (NV)PERL_REVISION
243 + ((NV)PERL_VERSION / (NV)1000)
244#if defined(PERL_SUBVERSION) && PERL_SUBVERSION > 0
245 + ((NV)PERL_SUBVERSION / (NV)1000000)
246#endif
247 ;
248 SvNOK_on(PL_patchlevel); /* dual valued */
249 SvUTF8_on(PL_patchlevel);
250 SvREADONLY_on(PL_patchlevel);
251 }
252
253#if defined(LOCAL_PATCH_COUNT)
254 PL_localpatches = local_patches; /* For possible -v */
255#endif
256
257#ifdef HAVE_INTERP_INTERN
258 sys_intern_init();
259#endif
260
261 PerlIO_init(); /* Hook to IO system */
262
263 PL_fdpid = newAV(); /* for remembering popen pids by fd */
264 PL_modglobal = newHV(); /* pointers to per-interpreter module globals */
265 PL_errors = newSVpvn("",0);
266#ifdef USE_ITHREADS
267 PL_regex_padav = newAV();
268 av_push(PL_regex_padav,(SV*)newAV()); /* First entry is an array of empty elements */
269 PL_regex_pad = AvARRAY(PL_regex_padav);
270#endif
271#ifdef USE_REENTRANT_API
272 New(31337, PL_reentrant_buffer,1, REBUF);
273 New(31337, PL_reentrant_buffer->tmbuff,1, struct tm);
274#endif
275 ENTER;
276}
277
278/*
279=for apidoc perl_destruct
280
281Shuts down a Perl interpreter. See L<perlembed>.
282
283=cut
284*/
285
286int
287perl_destruct(pTHXx)
288{
289 volatile int destruct_level; /* 0=none, 1=full, 2=full with checks */
290 HV *hv;
291#ifdef USE_5005THREADS
292 Thread t;
293 dTHX;
294#endif /* USE_5005THREADS */
295
296 /* wait for all pseudo-forked children to finish */
297 PERL_WAIT_FOR_CHILDREN;
298
299#ifdef USE_5005THREADS
300#ifndef FAKE_THREADS
301 /* Pass 1 on any remaining threads: detach joinables, join zombies */
302 retry_cleanup:
303 MUTEX_LOCK(&PL_threads_mutex);
304 DEBUG_S(PerlIO_printf(Perl_debug_log,
305 "perl_destruct: waiting for %d threads...\n",
306 PL_nthreads - 1));
307 for (t = thr->next; t != thr; t = t->next) {
308 MUTEX_LOCK(&t->mutex);
309 switch (ThrSTATE(t)) {
310 AV *av;
311 case THRf_ZOMBIE:
312 DEBUG_S(PerlIO_printf(Perl_debug_log,
313 "perl_destruct: joining zombie %p\n", t));
314 ThrSETSTATE(t, THRf_DEAD);
315 MUTEX_UNLOCK(&t->mutex);
316 PL_nthreads--;
317 /*
318 * The SvREFCNT_dec below may take a long time (e.g. av
319 * may contain an object scalar whose destructor gets
320 * called) so we have to unlock threads_mutex and start
321 * all over again.
322 */
323 MUTEX_UNLOCK(&PL_threads_mutex);
324 JOIN(t, &av);
325 SvREFCNT_dec((SV*)av);
326 DEBUG_S(PerlIO_printf(Perl_debug_log,
327 "perl_destruct: joined zombie %p OK\n", t));
328 goto retry_cleanup;
329 case THRf_R_JOINABLE:
330 DEBUG_S(PerlIO_printf(Perl_debug_log,
331 "perl_destruct: detaching thread %p\n", t));
332 ThrSETSTATE(t, THRf_R_DETACHED);
333 /*
334 * We unlock threads_mutex and t->mutex in the opposite order
335 * from which we locked them just so that DETACH won't
336 * deadlock if it panics. It's only a breach of good style
337 * not a bug since they are unlocks not locks.
338 */
339 MUTEX_UNLOCK(&PL_threads_mutex);
340 DETACH(t);
341 MUTEX_UNLOCK(&t->mutex);
342 goto retry_cleanup;
343 default:
344 DEBUG_S(PerlIO_printf(Perl_debug_log,
345 "perl_destruct: ignoring %p (state %u)\n",
346 t, ThrSTATE(t)));
347 MUTEX_UNLOCK(&t->mutex);
348 /* fall through and out */
349 }
350 }
351 /* We leave the above "Pass 1" loop with threads_mutex still locked */
352
353 /* Pass 2 on remaining threads: wait for the thread count to drop to one */
354 while (PL_nthreads > 1)
355 {
356 DEBUG_S(PerlIO_printf(Perl_debug_log,
357 "perl_destruct: final wait for %d threads\n",
358 PL_nthreads - 1));
359 COND_WAIT(&PL_nthreads_cond, &PL_threads_mutex);
360 }
361 /* At this point, we're the last thread */
362 MUTEX_UNLOCK(&PL_threads_mutex);
363 DEBUG_S(PerlIO_printf(Perl_debug_log, "perl_destruct: armageddon has arrived\n"));
364 MUTEX_DESTROY(&PL_threads_mutex);
365 COND_DESTROY(&PL_nthreads_cond);
366 PL_nthreads--;
367#endif /* !defined(FAKE_THREADS) */
368#endif /* USE_5005THREADS */
369
370 destruct_level = PL_perl_destruct_level;
371#ifdef DEBUGGING
372 {
373 char *s;
374 if ((s = PerlEnv_getenv("PERL_DESTRUCT_LEVEL"))) {
375 int i = atoi(s);
376 if (destruct_level < i)
377 destruct_level = i;
378 }
379 }
380#endif
381
382
383 if(PL_exit_flags & PERL_EXIT_DESTRUCT_END) {
384 dJMPENV;
385 int x = 0;
386
387 JMPENV_PUSH(x);
388 if (PL_endav && !PL_minus_c)
389 call_list(PL_scopestack_ix, PL_endav);
390 JMPENV_POP;
391 }
392 LEAVE;
393 FREETMPS;
394
395 /* We must account for everything. */
396
397 /* Destroy the main CV and syntax tree */
398 if (PL_main_root) {
399 PL_curpad = AvARRAY(PL_comppad);
400 op_free(PL_main_root);
401 PL_main_root = Nullop;
402 }
403 PL_curcop = &PL_compiling;
404 PL_main_start = Nullop;
405 SvREFCNT_dec(PL_main_cv);
406 PL_main_cv = Nullcv;
407 PL_dirty = TRUE;
408
409 /* Tell PerlIO we are about to tear things apart in case
410 we have layers which are using resources that should
411 be cleaned up now.
412 */
413
414 PerlIO_destruct(aTHX);
415
416 if (PL_sv_objcount) {
417 /*
418 * Try to destruct global references. We do this first so that the
419 * destructors and destructees still exist. Some sv's might remain.
420 * Non-referenced objects are on their own.
421 */
422 sv_clean_objs();
423 }
424
425 /* unhook hooks which will soon be, or use, destroyed data */
426 SvREFCNT_dec(PL_warnhook);
427 PL_warnhook = Nullsv;
428 SvREFCNT_dec(PL_diehook);
429 PL_diehook = Nullsv;
430
431 /* call exit list functions */
432 while (PL_exitlistlen-- > 0)
433 PL_exitlist[PL_exitlistlen].fn(aTHX_ PL_exitlist[PL_exitlistlen].ptr);
434
435 Safefree(PL_exitlist);
436
437 if (destruct_level == 0){
438
439 DEBUG_P(debprofdump());
440
441 /* The exit() function will do everything that needs doing. */
442 return STATUS_NATIVE_EXPORT;;
443 }
444
445 /* jettison our possibly duplicated environment */
446
447#ifdef USE_ENVIRON_ARRAY
448 if (environ != PL_origenviron) {
449 I32 i;
450
451 for (i = 0; environ[i]; i++)
452 safesysfree(environ[i]);
453 /* Must use safesysfree() when working with environ. */
454 safesysfree(environ);
455
456 environ = PL_origenviron;
457 }
458#endif
459
460#ifdef USE_ITHREADS
461 /* the syntax tree is shared between clones
462 * so op_free(PL_main_root) only ReREFCNT_dec's
463 * REGEXPs in the parent interpreter
464 * we need to manually ReREFCNT_dec for the clones
465 */
466 {
467 I32 i = AvFILLp(PL_regex_padav) + 1;
468 SV **ary = AvARRAY(PL_regex_padav);
469
470 while (i) {
471 SV *resv = ary[--i];
472 REGEXP *re = INT2PTR(REGEXP *,SvIVX(resv));
473
474 if (SvFLAGS(resv) & SVf_BREAK) {
475 /* this is PL_reg_curpm, already freed
476 * flag is set in regexec.c:S_regtry
477 */
478 SvFLAGS(resv) &= ~SVf_BREAK;
479 }
480 else if(SvREPADTMP(resv)) {
481 SvREPADTMP_off(resv);
482 }
483 else {
484 ReREFCNT_dec(re);
485 }
486 }
487 }
488 SvREFCNT_dec(PL_regex_padav);
489 PL_regex_padav = Nullav;
490 PL_regex_pad = NULL;
491#endif
492
493 /* loosen bonds of global variables */
494
495 if(PL_rsfp) {
496 (void)PerlIO_close(PL_rsfp);
497 PL_rsfp = Nullfp;
498 }
499
500 /* Filters for program text */
501 SvREFCNT_dec(PL_rsfp_filters);
502 PL_rsfp_filters = Nullav;
503
504 /* switches */
505 PL_preprocess = FALSE;
506 PL_minus_n = FALSE;
507 PL_minus_p = FALSE;
508 PL_minus_l = FALSE;
509 PL_minus_a = FALSE;
510 PL_minus_F = FALSE;
511 PL_doswitches = FALSE;
512 PL_dowarn = G_WARN_OFF;
513 PL_doextract = FALSE;
514 PL_sawampersand = FALSE; /* must save all match strings */
515 PL_unsafe = FALSE;
516
517 Safefree(PL_inplace);
518 PL_inplace = Nullch;
519 SvREFCNT_dec(PL_patchlevel);
520
521 if (PL_e_script) {
522 SvREFCNT_dec(PL_e_script);
523 PL_e_script = Nullsv;
524 }
525
526 while (--PL_origargc >= 0) {
527 Safefree(PL_origargv[PL_origargc]);
528 }
529 Safefree(PL_origargv);
530
531 /* magical thingies */
532
533 SvREFCNT_dec(PL_ofs_sv); /* $, */
534 PL_ofs_sv = Nullsv;
535
536 SvREFCNT_dec(PL_ors_sv); /* $\ */
537 PL_ors_sv = Nullsv;
538
539 SvREFCNT_dec(PL_rs); /* $/ */
540 PL_rs = Nullsv;
541
542 PL_multiline = 0; /* $* */
543 Safefree(PL_osname); /* $^O */
544 PL_osname = Nullch;
545
546 SvREFCNT_dec(PL_statname);
547 PL_statname = Nullsv;
548 PL_statgv = Nullgv;
549
550 /* defgv, aka *_ should be taken care of elsewhere */
551
552 /* clean up after study() */
553 SvREFCNT_dec(PL_lastscream);
554 PL_lastscream = Nullsv;
555 Safefree(PL_screamfirst);
556 PL_screamfirst = 0;
557 Safefree(PL_screamnext);
558 PL_screamnext = 0;
559
560 /* float buffer */
561 Safefree(PL_efloatbuf);
562 PL_efloatbuf = Nullch;
563 PL_efloatsize = 0;
564
565 /* startup and shutdown function lists */
566 SvREFCNT_dec(PL_beginav);
567 SvREFCNT_dec(PL_endav);
568 SvREFCNT_dec(PL_checkav);
569 SvREFCNT_dec(PL_initav);
570 PL_beginav = Nullav;
571 PL_endav = Nullav;
572 PL_checkav = Nullav;
573 PL_initav = Nullav;
574
575 /* shortcuts just get cleared */
576 PL_envgv = Nullgv;
577 PL_incgv = Nullgv;
578 PL_hintgv = Nullgv;
579 PL_errgv = Nullgv;
580 PL_argvgv = Nullgv;
581 PL_argvoutgv = Nullgv;
582 PL_stdingv = Nullgv;
583 PL_stderrgv = Nullgv;
584 PL_last_in_gv = Nullgv;
585 PL_replgv = Nullgv;
586 PL_debstash = Nullhv;
587
588 /* reset so print() ends up where we expect */
589 setdefout(Nullgv);
590
591 SvREFCNT_dec(PL_argvout_stack);
592 PL_argvout_stack = Nullav;
593
594 SvREFCNT_dec(PL_modglobal);
595 PL_modglobal = Nullhv;
596 SvREFCNT_dec(PL_preambleav);
597 PL_preambleav = Nullav;
598 SvREFCNT_dec(PL_subname);
599 PL_subname = Nullsv;
600 SvREFCNT_dec(PL_linestr);
601 PL_linestr = Nullsv;
602 SvREFCNT_dec(PL_pidstatus);
603 PL_pidstatus = Nullhv;
604 SvREFCNT_dec(PL_toptarget);
605 PL_toptarget = Nullsv;
606 SvREFCNT_dec(PL_bodytarget);
607 PL_bodytarget = Nullsv;
608 PL_formtarget = Nullsv;
609
610 /* free locale stuff */
611#ifdef USE_LOCALE_COLLATE
612 Safefree(PL_collation_name);
613 PL_collation_name = Nullch;
614#endif
615
616#ifdef USE_LOCALE_NUMERIC
617 Safefree(PL_numeric_name);
618 PL_numeric_name = Nullch;
619 SvREFCNT_dec(PL_numeric_radix_sv);
620#endif
621
622 /* clear utf8 character classes */
623 SvREFCNT_dec(PL_utf8_alnum);
624 SvREFCNT_dec(PL_utf8_alnumc);
625 SvREFCNT_dec(PL_utf8_ascii);
626 SvREFCNT_dec(PL_utf8_alpha);
627 SvREFCNT_dec(PL_utf8_space);
628 SvREFCNT_dec(PL_utf8_cntrl);
629 SvREFCNT_dec(PL_utf8_graph);
630 SvREFCNT_dec(PL_utf8_digit);
631 SvREFCNT_dec(PL_utf8_upper);
632 SvREFCNT_dec(PL_utf8_lower);
633 SvREFCNT_dec(PL_utf8_print);
634 SvREFCNT_dec(PL_utf8_punct);
635 SvREFCNT_dec(PL_utf8_xdigit);
636 SvREFCNT_dec(PL_utf8_mark);
637 SvREFCNT_dec(PL_utf8_toupper);
638 SvREFCNT_dec(PL_utf8_tolower);
639 PL_utf8_alnum = Nullsv;
640 PL_utf8_alnumc = Nullsv;
641 PL_utf8_ascii = Nullsv;
642 PL_utf8_alpha = Nullsv;
643 PL_utf8_space = Nullsv;
644 PL_utf8_cntrl = Nullsv;
645 PL_utf8_graph = Nullsv;
646 PL_utf8_digit = Nullsv;
647 PL_utf8_upper = Nullsv;
648 PL_utf8_lower = Nullsv;
649 PL_utf8_print = Nullsv;
650 PL_utf8_punct = Nullsv;
651 PL_utf8_xdigit = Nullsv;
652 PL_utf8_mark = Nullsv;
653 PL_utf8_toupper = Nullsv;
654 PL_utf8_totitle = Nullsv;
655 PL_utf8_tolower = Nullsv;
656
657 if (!specialWARN(PL_compiling.cop_warnings))
658 SvREFCNT_dec(PL_compiling.cop_warnings);
659 PL_compiling.cop_warnings = Nullsv;
660 if (!specialCopIO(PL_compiling.cop_io))
661 SvREFCNT_dec(PL_compiling.cop_io);
662 PL_compiling.cop_io = Nullsv;
663#ifdef USE_ITHREADS
664 Safefree(CopFILE(&PL_compiling));
665 CopFILE(&PL_compiling) = Nullch;
666 Safefree(CopSTASHPV(&PL_compiling));
667#else
668 SvREFCNT_dec(CopFILEGV(&PL_compiling));
669 CopFILEGV(&PL_compiling) = Nullgv;
670 /* cop_stash is not refcounted */
671#endif
672
673 /* Prepare to destruct main symbol table. */
674
675 hv = PL_defstash;
676 PL_defstash = 0;
677 SvREFCNT_dec(hv);
678 SvREFCNT_dec(PL_curstname);
679 PL_curstname = Nullsv;
680
681 /* clear queued errors */
682 SvREFCNT_dec(PL_errors);
683 PL_errors = Nullsv;
684
685 FREETMPS;
686 if (destruct_level >= 2 && ckWARN_d(WARN_INTERNAL)) {
687 if (PL_scopestack_ix != 0)
688 Perl_warner(aTHX_ WARN_INTERNAL,
689 "Unbalanced scopes: %ld more ENTERs than LEAVEs\n",
690 (long)PL_scopestack_ix);
691 if (PL_savestack_ix != 0)
692 Perl_warner(aTHX_ WARN_INTERNAL,
693 "Unbalanced saves: %ld more saves than restores\n",
694 (long)PL_savestack_ix);
695 if (PL_tmps_floor != -1)
696 Perl_warner(aTHX_ WARN_INTERNAL,"Unbalanced tmps: %ld more allocs than frees\n",
697 (long)PL_tmps_floor + 1);
698 if (cxstack_ix != -1)
699 Perl_warner(aTHX_ WARN_INTERNAL,"Unbalanced context: %ld more PUSHes than POPs\n",
700 (long)cxstack_ix + 1);
701 }
702
703 /* Now absolutely destruct everything, somehow or other, loops or no. */
704 SvFLAGS(PL_fdpid) |= SVTYPEMASK; /* don't clean out pid table now */
705 SvFLAGS(PL_strtab) |= SVTYPEMASK; /* don't clean out strtab now */
706
707 /* the 2 is for PL_fdpid and PL_strtab */
708 while (PL_sv_count > 2 && sv_clean_all())
709 ;
710
711 SvFLAGS(PL_fdpid) &= ~SVTYPEMASK;
712 SvFLAGS(PL_fdpid) |= SVt_PVAV;
713 SvFLAGS(PL_strtab) &= ~SVTYPEMASK;
714 SvFLAGS(PL_strtab) |= SVt_PVHV;
715
716 AvREAL_off(PL_fdpid); /* no surviving entries */
717 SvREFCNT_dec(PL_fdpid); /* needed in io_close() */
718 PL_fdpid = Nullav;
719
720#ifdef HAVE_INTERP_INTERN
721 sys_intern_clear();
722#endif
723
724 /* Destruct the global string table. */
725 {
726 /* Yell and reset the HeVAL() slots that are still holding refcounts,
727 * so that sv_free() won't fail on them.
728 */
729 I32 riter;
730 I32 max;
731 HE *hent;
732 HE **array;
733
734 riter = 0;
735 max = HvMAX(PL_strtab);
736 array = HvARRAY(PL_strtab);
737 hent = array[0];
738 for (;;) {
739 if (hent && ckWARN_d(WARN_INTERNAL)) {
740 Perl_warner(aTHX_ WARN_INTERNAL,
741 "Unbalanced string table refcount: (%d) for \"%s\"",
742 HeVAL(hent) - Nullsv, HeKEY(hent));
743 HeVAL(hent) = Nullsv;
744 hent = HeNEXT(hent);
745 }
746 if (!hent) {
747 if (++riter > max)
748 break;
749 hent = array[riter];
750 }
751 }
752 }
753 SvREFCNT_dec(PL_strtab);
754
755#ifdef USE_ITHREADS
756 /* free the pointer table used for cloning */
757 ptr_table_free(PL_ptr_table);
758#endif
759
760 /* free special SVs */
761
762 SvREFCNT(&PL_sv_yes) = 0;
763 sv_clear(&PL_sv_yes);
764 SvANY(&PL_sv_yes) = NULL;
765 SvFLAGS(&PL_sv_yes) = 0;
766
767 SvREFCNT(&PL_sv_no) = 0;
768 sv_clear(&PL_sv_no);
769 SvANY(&PL_sv_no) = NULL;
770 SvFLAGS(&PL_sv_no) = 0;
771
772 SvREFCNT(&PL_sv_undef) = 0;
773 SvREADONLY_off(&PL_sv_undef);
774
775 if (PL_sv_count != 0 && ckWARN_d(WARN_INTERNAL))
776 Perl_warner(aTHX_ WARN_INTERNAL,"Scalars leaked: %ld\n", (long)PL_sv_count);
777
778 Safefree(PL_origfilename);
779 Safefree(PL_reg_start_tmp);
780 if (PL_reg_curpm)
781 Safefree(PL_reg_curpm);
782 Safefree(PL_reg_poscache);
783 Safefree(HeKEY_hek(&PL_hv_fetch_ent_mh));
784 Safefree(PL_op_mask);
785 Safefree(PL_psig_ptr);
786 Safefree(PL_psig_name);
787 Safefree(PL_bitcount);
788 Safefree(PL_psig_pend);
789 nuke_stacks();
790 PL_hints = 0; /* Reset hints. Should hints be per-interpreter ? */
791
792 DEBUG_P(debprofdump());
793#ifdef USE_5005THREADS
794 MUTEX_DESTROY(&PL_strtab_mutex);
795 MUTEX_DESTROY(&PL_sv_mutex);
796 MUTEX_DESTROY(&PL_eval_mutex);
797 MUTEX_DESTROY(&PL_cred_mutex);
798 MUTEX_DESTROY(&PL_fdpid_mutex);
799 COND_DESTROY(&PL_eval_cond);
800#ifdef EMULATE_ATOMIC_REFCOUNTS
801 MUTEX_DESTROY(&PL_svref_mutex);
802#endif /* EMULATE_ATOMIC_REFCOUNTS */
803
804 /* As the penultimate thing, free the non-arena SV for thrsv */
805 Safefree(SvPVX(PL_thrsv));
806 Safefree(SvANY(PL_thrsv));
807 Safefree(PL_thrsv);
808 PL_thrsv = Nullsv;
809#endif /* USE_5005THREADS */
810
811#ifdef USE_REENTRANT_API
812 Safefree(PL_reentrant_buffer->tmbuff);
813 Safefree(PL_reentrant_buffer);
814#endif
815
816 sv_free_arenas();
817
818 /* As the absolutely last thing, free the non-arena SV for mess() */
819
820 if (PL_mess_sv) {
821 /* it could have accumulated taint magic */
822 if (SvTYPE(PL_mess_sv) >= SVt_PVMG) {
823 MAGIC* mg;
824 MAGIC* moremagic;
825 for (mg = SvMAGIC(PL_mess_sv); mg; mg = moremagic) {
826 moremagic = mg->mg_moremagic;
827 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global
828 && mg->mg_len >= 0)
829 Safefree(mg->mg_ptr);
830 Safefree(mg);
831 }
832 }
833 /* we know that type >= SVt_PV */
834 (void)SvOOK_off(PL_mess_sv);
835 Safefree(SvPVX(PL_mess_sv));
836 Safefree(SvANY(PL_mess_sv));
837 Safefree(PL_mess_sv);
838 PL_mess_sv = Nullsv;
839 }
840 return STATUS_NATIVE_EXPORT;
841}
842
843/*
844=for apidoc perl_free
845
846Releases a Perl interpreter. See L<perlembed>.
847
848=cut
849*/
850
851void
852perl_free(pTHXx)
853{
854#if defined(WIN32) || defined(NETWARE)
855# if defined(PERL_IMPLICIT_SYS)
856# ifdef NETWARE
857 void *host = nw_internal_host;
858# else
859 void *host = w32_internal_host;
860# endif
861# ifndef NETWARE
862 if (PerlProc_lasthost()) {
863# ifdef USE_PERLIO
864 PerlIO_cleanup();
865# endif
866 }
867# endif
868 PerlMem_free(aTHXx);
869# ifdef NETWARE
870 nw5_delete_internal_host(host);
871# else
872 win32_delete_internal_host(host);
873# endif
874# else
875# ifdef USE_PERLIO
876 PerlIO_cleanup();
877# endif
878 PerlMem_free(aTHXx);
879# endif
880#else
881 PerlMem_free(aTHXx);
882#endif
883}
884
885void
886Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr)
887{
888 Renew(PL_exitlist, PL_exitlistlen+1, PerlExitListEntry);
889 PL_exitlist[PL_exitlistlen].fn = fn;
890 PL_exitlist[PL_exitlistlen].ptr = ptr;
891 ++PL_exitlistlen;
892}
893
894/*
895=for apidoc perl_parse
896
897Tells a Perl interpreter to parse a Perl script. See L<perlembed>.
898
899=cut
900*/
901
902int
903perl_parse(pTHXx_ XSINIT_t xsinit, int argc, char **argv, char **env)
904{
905 I32 oldscope;
906 int ret;
907 dJMPENV;
908#ifdef USE_5005THREADS
909 dTHX;
910#endif
911
912#ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
913#ifdef IAMSUID
914#undef IAMSUID
915 Perl_croak(aTHX_ "suidperl is no longer needed since the kernel can now execute\n\
916setuid perl scripts securely.\n");
917#endif
918#endif
919
920#if defined(__DYNAMIC__) && (defined(NeXT) || defined(__NeXT__))
921 _dyld_lookup_and_bind
922 ("__environ", (unsigned long *) &environ_pointer, NULL);
923#endif /* environ */
924
925 PL_origargc = argc;
926 {
927 /* we copy rather than point to argv
928 * since perl_clone will copy and perl_destruct
929 * has no way of knowing if we've made a copy or
930 * just point to argv
931 */
932 int i = PL_origargc;
933 New(0, PL_origargv, i+1, char*);
934 PL_origargv[i] = '\0';
935 while (i-- > 0) {
936 PL_origargv[i] = savepv(argv[i]);
937 }
938 }
939
940#ifdef USE_ENVIRON_ARRAY
941 PL_origenviron = environ;
942#endif
943
944 if (PL_do_undump) {
945
946 /* Come here if running an undumped a.out. */
947
948 PL_origfilename = savepv(argv[0]);
949 PL_do_undump = FALSE;
950 cxstack_ix = -1; /* start label stack again */
951 init_ids();
952 init_postdump_symbols(argc,argv,env);
953 return 0;
954 }
955
956 if (PL_main_root) {
957 PL_curpad = AvARRAY(PL_comppad);
958 op_free(PL_main_root);
959 PL_main_root = Nullop;
960 }
961 PL_main_start = Nullop;
962 SvREFCNT_dec(PL_main_cv);
963 PL_main_cv = Nullcv;
964
965 time(&PL_basetime);
966 oldscope = PL_scopestack_ix;
967 PL_dowarn = G_WARN_OFF;
968
969#ifdef PERL_FLEXIBLE_EXCEPTIONS
970 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vparse_body), env, xsinit);
971#else
972 JMPENV_PUSH(ret);
973#endif
974 switch (ret) {
975 case 0:
976#ifndef PERL_FLEXIBLE_EXCEPTIONS
977 parse_body(env,xsinit);
978#endif
979 if (PL_checkav)
980 call_list(oldscope, PL_checkav);
981 ret = 0;
982 break;
983 case 1:
984 STATUS_ALL_FAILURE;
985 /* FALL THROUGH */
986 case 2:
987 /* my_exit() was called */
988 while (PL_scopestack_ix > oldscope)
989 LEAVE;
990 FREETMPS;
991 PL_curstash = PL_defstash;
992 if (PL_checkav)
993 call_list(oldscope, PL_checkav);
994 ret = STATUS_NATIVE_EXPORT;
995 break;
996 case 3:
997 PerlIO_printf(Perl_error_log, "panic: top_env\n");
998 ret = 1;
999 break;
1000 }
1001 JMPENV_POP;
1002 return ret;
1003}
1004
1005#ifdef PERL_FLEXIBLE_EXCEPTIONS
1006STATIC void *
1007S_vparse_body(pTHX_ va_list args)
1008{
1009 char **env = va_arg(args, char**);
1010 XSINIT_t xsinit = va_arg(args, XSINIT_t);
1011
1012 return parse_body(env, xsinit);
1013}
1014#endif
1015
1016STATIC void *
1017S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
1018{
1019 int argc = PL_origargc;
1020 char **argv = PL_origargv;
1021 char *scriptname = NULL;
1022 int fdscript = -1;
1023 VOL bool dosearch = FALSE;
1024 char *validarg = "";
1025 AV* comppadlist;
1026 register SV *sv;
1027 register char *s;
1028 char *cddir = Nullch;
1029
1030 sv_setpvn(PL_linestr,"",0);
1031 sv = newSVpvn("",0); /* first used for -I flags */
1032 SAVEFREESV(sv);
1033 init_main_stash();
1034
1035 for (argc--,argv++; argc > 0; argc--,argv++) {
1036 if (argv[0][0] != '-' || !argv[0][1])
1037 break;
1038#ifdef DOSUID
1039 if (*validarg)
1040 validarg = " PHOOEY ";
1041 else
1042 validarg = argv[0];
1043#endif
1044 s = argv[0]+1;
1045 reswitch:
1046 switch (*s) {
1047 case 'C':
1048#ifdef WIN32
1049 win32_argv2utf8(argc-1, argv+1);
1050 /* FALL THROUGH */
1051#endif
1052#ifndef PERL_STRICT_CR
1053 case '\r':
1054#endif
1055 case ' ':
1056 case '0':
1057 case 'F':
1058 case 'a':
1059 case 'c':
1060 case 'd':
1061 case 'D':
1062 case 'h':
1063 case 'i':
1064 case 'l':
1065 case 'M':
1066 case 'm':
1067 case 'n':
1068 case 'p':
1069 case 's':
1070 case 'u':
1071 case 'U':
1072 case 'v':
1073 case 'W':
1074 case 'X':
1075 case 'w':
1076 if ((s = moreswitches(s)))
1077 goto reswitch;
1078 break;
1079
1080 case 'T':
1081 PL_tainting = TRUE;
1082 s++;
1083 goto reswitch;
1084
1085 case 'e':
1086#ifdef MACOS_TRADITIONAL
1087 /* ignore -e for Dev:Pseudo argument */
1088 if (argv[1] && !strcmp(argv[1], "Dev:Pseudo"))
1089 break;
1090#endif
1091 if (PL_euid != PL_uid || PL_egid != PL_gid)
1092 Perl_croak(aTHX_ "No -e allowed in setuid scripts");
1093 if (!PL_e_script) {
1094 PL_e_script = newSVpvn("",0);
1095 filter_add(read_e_script, NULL);
1096 }
1097 if (*++s)
1098 sv_catpv(PL_e_script, s);
1099 else if (argv[1]) {
1100 sv_catpv(PL_e_script, argv[1]);
1101 argc--,argv++;
1102 }
1103 else
1104 Perl_croak(aTHX_ "No code specified for -e");
1105 sv_catpv(PL_e_script, "\n");
1106 break;
1107
1108 case 'I': /* -I handled both here and in moreswitches() */
1109 forbid_setid("-I");
1110 if (!*++s && (s=argv[1]) != Nullch) {
1111 argc--,argv++;
1112 }
1113 if (s && *s) {
1114 char *p;
1115 STRLEN len = strlen(s);
1116 p = savepvn(s, len);
1117 incpush(p, TRUE, TRUE);
1118 sv_catpvn(sv, "-I", 2);
1119 sv_catpvn(sv, p, len);
1120 sv_catpvn(sv, " ", 1);
1121 Safefree(p);
1122 }
1123 else
1124 Perl_croak(aTHX_ "No directory specified for -I");
1125 break;
1126 case 'P':
1127 forbid_setid("-P");
1128 PL_preprocess = TRUE;
1129 s++;
1130 goto reswitch;
1131 case 'S':
1132 forbid_setid("-S");
1133 dosearch = TRUE;
1134 s++;
1135 goto reswitch;
1136 case 'V':
1137 if (!PL_preambleav)
1138 PL_preambleav = newAV();
1139 av_push(PL_preambleav, newSVpv("use Config qw(myconfig config_vars)",0));
1140 if (*++s != ':') {
1141 PL_Sv = newSVpv("print myconfig();",0);
1142#ifdef VMS
1143 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this PERLSHR image: \\n\",");
1144#else
1145 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this binary (from libperl): \\n\",");
1146#endif
1147 sv_catpv(PL_Sv,"\" Compile-time options:");
1148# ifdef DEBUGGING
1149 sv_catpv(PL_Sv," DEBUGGING");
1150# endif
1151# ifdef MULTIPLICITY
1152 sv_catpv(PL_Sv," MULTIPLICITY");
1153# endif
1154# ifdef USE_5005THREADS
1155 sv_catpv(PL_Sv," USE_5005THREADS");
1156# endif
1157# ifdef USE_ITHREADS
1158 sv_catpv(PL_Sv," USE_ITHREADS");
1159# endif
1160# ifdef USE_64_BIT_INT
1161 sv_catpv(PL_Sv," USE_64_BIT_INT");
1162# endif
1163# ifdef USE_64_BIT_ALL
1164 sv_catpv(PL_Sv," USE_64_BIT_ALL");
1165# endif
1166# ifdef USE_LONG_DOUBLE
1167 sv_catpv(PL_Sv," USE_LONG_DOUBLE");
1168# endif
1169# ifdef USE_LARGE_FILES
1170 sv_catpv(PL_Sv," USE_LARGE_FILES");
1171# endif
1172# ifdef USE_SOCKS
1173 sv_catpv(PL_Sv," USE_SOCKS");
1174# endif
1175# ifdef PERL_IMPLICIT_CONTEXT
1176 sv_catpv(PL_Sv," PERL_IMPLICIT_CONTEXT");
1177# endif
1178# ifdef PERL_IMPLICIT_SYS
1179 sv_catpv(PL_Sv," PERL_IMPLICIT_SYS");
1180# endif
1181 sv_catpv(PL_Sv,"\\n\",");
1182
1183#if defined(LOCAL_PATCH_COUNT)
1184 if (LOCAL_PATCH_COUNT > 0) {
1185 int i;
1186 sv_catpv(PL_Sv,"\" Locally applied patches:\\n\",");
1187 for (i = 1; i <= LOCAL_PATCH_COUNT; i++) {
1188 if (PL_localpatches[i])
1189 Perl_sv_catpvf(aTHX_ PL_Sv,"q\" \t%s\n\",",PL_localpatches[i]);
1190 }
1191 }
1192#endif
1193 Perl_sv_catpvf(aTHX_ PL_Sv,"\" Built under %s\\n\"",OSNAME);
1194#ifdef __DATE__
1195# ifdef __TIME__
1196 Perl_sv_catpvf(aTHX_ PL_Sv,",\" Compiled at %s %s\\n\"",__DATE__,__TIME__);
1197# else
1198 Perl_sv_catpvf(aTHX_ PL_Sv,",\" Compiled on %s\\n\"",__DATE__);
1199# endif
1200#endif
1201 sv_catpv(PL_Sv, "; \
1202$\"=\"\\n \"; \
1203@env = map { \"$_=\\\"$ENV{$_}\\\"\" } sort grep {/^PERL/} keys %ENV; ");
1204#ifdef __CYGWIN__
1205 sv_catpv(PL_Sv,"\
1206push @env, \"CYGWIN=\\\"$ENV{CYGWIN}\\\"\";");
1207#endif
1208 sv_catpv(PL_Sv, "\
1209print \" \\%ENV:\\n @env\\n\" if @env; \
1210print \" \\@INC:\\n @INC\\n\";");
1211 }
1212 else {
1213 PL_Sv = newSVpv("config_vars(qw(",0);
1214 sv_catpv(PL_Sv, ++s);
1215 sv_catpv(PL_Sv, "))");
1216 s += strlen(s);
1217 }
1218 av_push(PL_preambleav, PL_Sv);
1219 scriptname = BIT_BUCKET; /* don't look for script or read stdin */
1220 goto reswitch;
1221 case 'x':
1222 PL_doextract = TRUE;
1223 s++;
1224 if (*s)
1225 cddir = s;
1226 break;
1227 case 0:
1228 break;
1229 case '-':
1230 if (!*++s || isSPACE(*s)) {
1231 argc--,argv++;
1232 goto switch_end;
1233 }
1234 /* catch use of gnu style long options */
1235 if (strEQ(s, "version")) {
1236 s = "v";
1237 goto reswitch;
1238 }
1239 if (strEQ(s, "help")) {
1240 s = "h";
1241 goto reswitch;
1242 }
1243 s--;
1244 /* FALL THROUGH */
1245 default:
1246 Perl_croak(aTHX_ "Unrecognized switch: -%s (-h will show valid options)",s);
1247 }
1248 }
1249 switch_end:
1250
1251 if (
1252#ifndef SECURE_INTERNAL_GETENV
1253 !PL_tainting &&
1254#endif
1255 (s = PerlEnv_getenv("PERL5OPT")))
1256 {
1257 char *popt = s;
1258 while (isSPACE(*s))
1259 s++;
1260 if (*s == '-' && *(s+1) == 'T')
1261 PL_tainting = TRUE;
1262 else {
1263 char *popt_copy = Nullch;
1264 while (s && *s) {
1265 char *d;
1266 while (isSPACE(*s))
1267 s++;
1268 if (*s == '-') {
1269 s++;
1270 if (isSPACE(*s))
1271 continue;
1272 }
1273 d = s;
1274 if (!*s)
1275 break;
1276 if (!strchr("DIMUdmw", *s))
1277 Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s);
1278 while (++s && *s) {
1279 if (isSPACE(*s)) {
1280 if (!popt_copy) {
1281 popt_copy = SvPVX(sv_2mortal(newSVpv(popt,0)));
1282 s = popt_copy + (s - popt);
1283 d = popt_copy + (d - popt);
1284 }
1285 *s++ = '\0';
1286 break;
1287 }
1288 }
1289 moreswitches(d);
1290 }
1291 }
1292 }
1293
1294 if (!scriptname)
1295 scriptname = argv[0];
1296 if (PL_e_script) {
1297 argc++,argv--;
1298 scriptname = BIT_BUCKET; /* don't look for script or read stdin */
1299 }
1300 else if (scriptname == Nullch) {
1301#ifdef MSDOS
1302 if ( PerlLIO_isatty(PerlIO_fileno(PerlIO_stdin())) )
1303 moreswitches("h");
1304#endif
1305 scriptname = "-";
1306 }
1307
1308 init_perllib();
1309
1310 open_script(scriptname,dosearch,sv,&fdscript);
1311
1312 validate_suid(validarg, scriptname,fdscript);
1313
1314#ifndef PERL_MICRO
1315#if defined(SIGCHLD) || defined(SIGCLD)
1316 {
1317#ifndef SIGCHLD
1318# define SIGCHLD SIGCLD
1319#endif
1320 Sighandler_t sigstate = rsignal_state(SIGCHLD);
1321 if (sigstate == SIG_IGN) {
1322 if (ckWARN(WARN_SIGNAL))
1323 Perl_warner(aTHX_ WARN_SIGNAL,
1324 "Can't ignore signal CHLD, forcing to default");
1325 (void)rsignal(SIGCHLD, (Sighandler_t)SIG_DFL);
1326 }
1327 }
1328#endif
1329#endif
1330
1331#ifdef MACOS_TRADITIONAL
1332 if (PL_doextract || gMacPerl_AlwaysExtract) {
1333#else
1334 if (PL_doextract) {
1335#endif
1336 find_beginning();
1337 if (cddir && PerlDir_chdir(cddir) < 0)
1338 Perl_croak(aTHX_ "Can't chdir to %s",cddir);
1339
1340 }
1341
1342 PL_main_cv = PL_compcv = (CV*)NEWSV(1104,0);
1343 sv_upgrade((SV *)PL_compcv, SVt_PVCV);
1344 CvUNIQUE_on(PL_compcv);
1345
1346 PL_comppad = newAV();
1347 av_push(PL_comppad, Nullsv);
1348 PL_curpad = AvARRAY(PL_comppad);
1349 PL_comppad_name = newAV();
1350 PL_comppad_name_fill = 0;
1351 PL_min_intro_pending = 0;
1352 PL_padix = 0;
1353#ifdef USE_5005THREADS
1354 av_store(PL_comppad_name, 0, newSVpvn("@_", 2));
1355 PL_curpad[0] = (SV*)newAV();
1356 SvPADMY_on(PL_curpad[0]); /* XXX Needed? */
1357 CvOWNER(PL_compcv) = 0;
1358 New(666, CvMUTEXP(PL_compcv), 1, perl_mutex);
1359 MUTEX_INIT(CvMUTEXP(PL_compcv));
1360#endif /* USE_5005THREADS */
1361
1362 comppadlist = newAV();
1363 AvREAL_off(comppadlist);
1364 av_store(comppadlist, 0, (SV*)PL_comppad_name);
1365 av_store(comppadlist, 1, (SV*)PL_comppad);
1366 CvPADLIST(PL_compcv) = comppadlist;
1367
1368 boot_core_PerlIO();
1369 boot_core_UNIVERSAL();
1370#ifndef PERL_MICRO
1371 boot_core_xsutils();
1372#endif
1373
1374 if (xsinit)
1375 (*xsinit)(aTHX); /* in case linked C routines want magical variables */
1376#ifndef PERL_MICRO
1377#if defined(VMS) || defined(WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(EPOC)
1378 init_os_extras();
1379#endif
1380#endif
1381
1382#ifdef USE_SOCKS
1383# ifdef HAS_SOCKS5_INIT
1384 socks5_init(argv[0]);
1385# else
1386 SOCKSinit(argv[0]);
1387# endif
1388#endif
1389
1390 init_predump_symbols();
1391 /* init_postdump_symbols not currently designed to be called */
1392 /* more than once (ENV isn't cleared first, for example) */
1393 /* But running with -u leaves %ENV & @ARGV undefined! XXX */
1394 if (!PL_do_undump)
1395 init_postdump_symbols(argc,argv,env);
1396
1397 init_lexer();
1398
1399 /* now parse the script */
1400
1401 SETERRNO(0,SS$_NORMAL);
1402 PL_error_count = 0;
1403#ifdef MACOS_TRADITIONAL
1404 if (gMacPerl_SyntaxError = (yyparse() || PL_error_count)) {
1405 if (PL_minus_c)
1406 Perl_croak(aTHX_ "%s had compilation errors.\n", MacPerl_MPWFileName(PL_origfilename));
1407 else {
1408 Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
1409 MacPerl_MPWFileName(PL_origfilename));
1410 }
1411 }
1412#else
1413 if (yyparse() || PL_error_count) {
1414 if (PL_minus_c)
1415 Perl_croak(aTHX_ "%s had compilation errors.\n", PL_origfilename);
1416 else {
1417 Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
1418 PL_origfilename);
1419 }
1420 }
1421#endif
1422 CopLINE_set(PL_curcop, 0);
1423 PL_curstash = PL_defstash;
1424 PL_preprocess = FALSE;
1425 if (PL_e_script) {
1426 SvREFCNT_dec(PL_e_script);
1427 PL_e_script = Nullsv;
1428 }
1429
1430/*
1431 Not sure that this is still the right place to do this now that we
1432 no longer use PL_nrs. HVDS 2001/09/09
1433*/
1434 sv_setsv(get_sv("/", TRUE), PL_rs);
1435
1436 if (PL_do_undump)
1437 my_unexec();
1438
1439 if (isWARN_ONCE) {
1440 SAVECOPFILE(PL_curcop);
1441 SAVECOPLINE(PL_curcop);
1442 gv_check(PL_defstash);
1443 }
1444
1445 LEAVE;
1446 FREETMPS;
1447
1448#ifdef MYMALLOC
1449 if ((s=PerlEnv_getenv("PERL_DEBUG_MSTATS")) && atoi(s) >= 2)
1450 dump_mstats("after compilation:");
1451#endif
1452
1453 ENTER;
1454 PL_restartop = 0;
1455 return NULL;
1456}
1457
1458/*
1459=for apidoc perl_run
1460
1461Tells a Perl interpreter to run. See L<perlembed>.
1462
1463=cut
1464*/
1465
1466int
1467perl_run(pTHXx)
1468{
1469 I32 oldscope;
1470 int ret = 0;
1471 dJMPENV;
1472#ifdef USE_5005THREADS
1473 dTHX;
1474#endif
1475
1476 oldscope = PL_scopestack_ix;
1477
1478#ifdef PERL_FLEXIBLE_EXCEPTIONS
1479 redo_body:
1480 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vrun_body), oldscope);
1481#else
1482 JMPENV_PUSH(ret);
1483#endif
1484 switch (ret) {
1485 case 1:
1486 cxstack_ix = -1; /* start context stack again */
1487 goto redo_body;
1488 case 0: /* normal completion */
1489#ifndef PERL_FLEXIBLE_EXCEPTIONS
1490 redo_body:
1491 run_body(oldscope);
1492#endif
1493 /* FALL THROUGH */
1494 case 2: /* my_exit() */
1495 while (PL_scopestack_ix > oldscope)
1496 LEAVE;
1497 FREETMPS;
1498 PL_curstash = PL_defstash;
1499 if (!(PL_exit_flags & PERL_EXIT_DESTRUCT_END) &&
1500 PL_endav && !PL_minus_c)
1501 call_list(oldscope, PL_endav);
1502#ifdef MYMALLOC
1503 if (PerlEnv_getenv("PERL_DEBUG_MSTATS"))
1504 dump_mstats("after execution: ");
1505#endif
1506 ret = STATUS_NATIVE_EXPORT;
1507 break;
1508 case 3:
1509 if (PL_restartop) {
1510 POPSTACK_TO(PL_mainstack);
1511 goto redo_body;
1512 }
1513 PerlIO_printf(Perl_error_log, "panic: restartop\n");
1514 FREETMPS;
1515 ret = 1;
1516 break;
1517 }
1518
1519 JMPENV_POP;
1520 return ret;
1521}
1522
1523#ifdef PERL_FLEXIBLE_EXCEPTIONS
1524STATIC void *
1525S_vrun_body(pTHX_ va_list args)
1526{
1527 I32 oldscope = va_arg(args, I32);
1528
1529 return run_body(oldscope);
1530}
1531#endif
1532
1533
1534STATIC void *
1535S_run_body(pTHX_ I32 oldscope)
1536{
1537 DEBUG_r(PerlIO_printf(Perl_debug_log, "%s $` $& $' support.\n",
1538 PL_sawampersand ? "Enabling" : "Omitting"));
1539
1540 if (!PL_restartop) {
1541 DEBUG_x(dump_all());
1542 DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n"));
1543 DEBUG_S(PerlIO_printf(Perl_debug_log, "main thread is 0x%"UVxf"\n",
1544 PTR2UV(thr)));
1545
1546 if (PL_minus_c) {
1547#ifdef MACOS_TRADITIONAL
1548 PerlIO_printf(Perl_error_log, "%s syntax OK\n", MacPerl_MPWFileName(PL_origfilename));
1549#else
1550 PerlIO_printf(Perl_error_log, "%s syntax OK\n", PL_origfilename);
1551#endif
1552 my_exit(0);
1553 }
1554 if (PERLDB_SINGLE && PL_DBsingle)
1555 sv_setiv(PL_DBsingle, 1);
1556 if (PL_initav)
1557 call_list(oldscope, PL_initav);
1558 }
1559
1560 /* do it */
1561
1562 if (PL_restartop) {
1563 PL_op = PL_restartop;
1564 PL_restartop = 0;
1565 CALLRUNOPS(aTHX);
1566 }
1567 else if (PL_main_start) {
1568 CvDEPTH(PL_main_cv) = 1;
1569 PL_op = PL_main_start;
1570 CALLRUNOPS(aTHX);
1571 }
1572
1573 my_exit(0);
1574 /* NOTREACHED */
1575 return NULL;
1576}
1577
1578/*
1579=for apidoc p||get_sv
1580
1581Returns the SV of the specified Perl scalar. If C<create> is set and the
1582Perl variable does not exist then it will be created. If C<create> is not
1583set and the variable does not exist then NULL is returned.
1584
1585=cut
1586*/
1587
1588SV*
1589Perl_get_sv(pTHX_ const char *name, I32 create)
1590{
1591 GV *gv;
1592#ifdef USE_5005THREADS
1593 if (name[1] == '\0' && !isALPHA(name[0])) {
1594 PADOFFSET tmp = find_threadsv(name);
1595 if (tmp != NOT_IN_PAD)
1596 return THREADSV(tmp);
1597 }
1598#endif /* USE_5005THREADS */
1599 gv = gv_fetchpv(name, create, SVt_PV);
1600 if (gv)
1601 return GvSV(gv);
1602 return Nullsv;
1603}
1604
1605/*
1606=for apidoc p||get_av
1607
1608Returns the AV of the specified Perl array. If C<create> is set and the
1609Perl variable does not exist then it will be created. If C<create> is not
1610set and the variable does not exist then NULL is returned.
1611
1612=cut
1613*/
1614
1615AV*
1616Perl_get_av(pTHX_ const char *name, I32 create)
1617{
1618 GV* gv = gv_fetchpv(name, create, SVt_PVAV);
1619 if (create)
1620 return GvAVn(gv);
1621 if (gv)
1622 return GvAV(gv);
1623 return Nullav;
1624}
1625
1626/*
1627=for apidoc p||get_hv
1628
1629Returns the HV of the specified Perl hash. If C<create> is set and the
1630Perl variable does not exist then it will be created. If C<create> is not
1631set and the variable does not exist then NULL is returned.
1632
1633=cut
1634*/
1635
1636HV*
1637Perl_get_hv(pTHX_ const char *name, I32 create)
1638{
1639 GV* gv = gv_fetchpv(name, create, SVt_PVHV);
1640 if (create)
1641 return GvHVn(gv);
1642 if (gv)
1643 return GvHV(gv);
1644 return Nullhv;
1645}
1646
1647/*
1648=for apidoc p||get_cv
1649
1650Returns the CV of the specified Perl subroutine. If C<create> is set and
1651the Perl subroutine does not exist then it will be declared (which has the
1652same effect as saying C<sub name;>). If C<create> is not set and the
1653subroutine does not exist then NULL is returned.
1654
1655=cut
1656*/
1657
1658CV*
1659Perl_get_cv(pTHX_ const char *name, I32 create)
1660{
1661 GV* gv = gv_fetchpv(name, create, SVt_PVCV);
1662 /* XXX unsafe for threads if eval_owner isn't held */
1663 /* XXX this is probably not what they think they're getting.
1664 * It has the same effect as "sub name;", i.e. just a forward
1665 * declaration! */
1666 if (create && !GvCVu(gv))
1667 return newSUB(start_subparse(FALSE, 0),
1668 newSVOP(OP_CONST, 0, newSVpv(name,0)),
1669 Nullop,
1670 Nullop);
1671 if (gv)
1672 return GvCVu(gv);
1673 return Nullcv;
1674}
1675
1676/* Be sure to refetch the stack pointer after calling these routines. */
1677
1678/*
1679=for apidoc p||call_argv
1680
1681Performs a callback to the specified Perl sub. See L<perlcall>.
1682
1683=cut
1684*/
1685
1686I32
1687Perl_call_argv(pTHX_ const char *sub_name, I32 flags, register char **argv)
1688
1689 /* See G_* flags in cop.h */
1690 /* null terminated arg list */
1691{
1692 dSP;
1693
1694 PUSHMARK(SP);
1695 if (argv) {
1696 while (*argv) {
1697 XPUSHs(sv_2mortal(newSVpv(*argv,0)));
1698 argv++;
1699 }
1700 PUTBACK;
1701 }
1702 return call_pv(sub_name, flags);
1703}
1704
1705/*
1706=for apidoc p||call_pv
1707
1708Performs a callback to the specified Perl sub. See L<perlcall>.
1709
1710=cut
1711*/
1712
1713I32
1714Perl_call_pv(pTHX_ const char *sub_name, I32 flags)
1715 /* name of the subroutine */
1716 /* See G_* flags in cop.h */
1717{
1718 return call_sv((SV*)get_cv(sub_name, TRUE), flags);
1719}
1720
1721/*
1722=for apidoc p||call_method
1723
1724Performs a callback to the specified Perl method. The blessed object must
1725be on the stack. See L<perlcall>.
1726
1727=cut
1728*/
1729
1730I32
1731Perl_call_method(pTHX_ const char *methname, I32 flags)
1732 /* name of the subroutine */
1733 /* See G_* flags in cop.h */
1734{
1735 return call_sv(sv_2mortal(newSVpv(methname,0)), flags | G_METHOD);
1736}
1737
1738/* May be called with any of a CV, a GV, or an SV containing the name. */
1739/*
1740=for apidoc p||call_sv
1741
1742Performs a callback to the Perl sub whose name is in the SV. See
1743L<perlcall>.
1744
1745=cut
1746*/
1747
1748I32
1749Perl_call_sv(pTHX_ SV *sv, I32 flags)
1750 /* See G_* flags in cop.h */
1751{
1752 dSP;
1753 LOGOP myop; /* fake syntax tree node */
1754 UNOP method_op;
1755 I32 oldmark;
1756 volatile I32 retval = 0;
1757 I32 oldscope;
1758 bool oldcatch = CATCH_GET;
1759 int ret;
1760 OP* oldop = PL_op;
1761 dJMPENV;
1762
1763 if (flags & G_DISCARD) {
1764 ENTER;
1765 SAVETMPS;
1766 }
1767
1768 Zero(&myop, 1, LOGOP);
1769 myop.op_next = Nullop;
1770 if (!(flags & G_NOARGS))
1771 myop.op_flags |= OPf_STACKED;
1772 myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1773 (flags & G_ARRAY) ? OPf_WANT_LIST :
1774 OPf_WANT_SCALAR);
1775 SAVEOP();
1776 PL_op = (OP*)&myop;
1777
1778 EXTEND(PL_stack_sp, 1);
1779 *++PL_stack_sp = sv;
1780 oldmark = TOPMARK;
1781 oldscope = PL_scopestack_ix;
1782
1783 if (PERLDB_SUB && PL_curstash != PL_debstash
1784 /* Handle first BEGIN of -d. */
1785 && (PL_DBcv || (PL_DBcv = GvCV(PL_DBsub)))
1786 /* Try harder, since this may have been a sighandler, thus
1787 * curstash may be meaningless. */
1788 && (SvTYPE(sv) != SVt_PVCV || CvSTASH((CV*)sv) != PL_debstash)
1789 && !(flags & G_NODEBUG))
1790 PL_op->op_private |= OPpENTERSUB_DB;
1791
1792 if (flags & G_METHOD) {
1793 Zero(&method_op, 1, UNOP);
1794 method_op.op_next = PL_op;
1795 method_op.op_ppaddr = PL_ppaddr[OP_METHOD];
1796 myop.op_ppaddr = PL_ppaddr[OP_ENTERSUB];
1797 PL_op = (OP*)&method_op;
1798 }
1799
1800 if (!(flags & G_EVAL)) {
1801 CATCH_SET(TRUE);
1802 call_body((OP*)&myop, FALSE);
1803 retval = PL_stack_sp - (PL_stack_base + oldmark);
1804 CATCH_SET(oldcatch);
1805 }
1806 else {
1807 myop.op_other = (OP*)&myop;
1808 PL_markstack_ptr--;
1809 /* we're trying to emulate pp_entertry() here */
1810 {
1811 register PERL_CONTEXT *cx;
1812 I32 gimme = GIMME_V;
1813
1814 ENTER;
1815 SAVETMPS;
1816
1817 push_return(Nullop);
1818 PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
1819 PUSHEVAL(cx, 0, 0);
1820 PL_eval_root = PL_op; /* Only needed so that goto works right. */
1821
1822 PL_in_eval = EVAL_INEVAL;
1823 if (flags & G_KEEPERR)
1824 PL_in_eval |= EVAL_KEEPERR;
1825 else
1826 sv_setpv(ERRSV,"");
1827 }
1828 PL_markstack_ptr++;
1829
1830#ifdef PERL_FLEXIBLE_EXCEPTIONS
1831 redo_body:
1832 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_body),
1833 (OP*)&myop, FALSE);
1834#else
1835 JMPENV_PUSH(ret);
1836#endif
1837 switch (ret) {
1838 case 0:
1839#ifndef PERL_FLEXIBLE_EXCEPTIONS
1840 redo_body:
1841 call_body((OP*)&myop, FALSE);
1842#endif
1843 retval = PL_stack_sp - (PL_stack_base + oldmark);
1844 if (!(flags & G_KEEPERR))
1845 sv_setpv(ERRSV,"");
1846 break;
1847 case 1:
1848 STATUS_ALL_FAILURE;
1849 /* FALL THROUGH */
1850 case 2:
1851 /* my_exit() was called */
1852 PL_curstash = PL_defstash;
1853 FREETMPS;
1854 JMPENV_POP;
1855 if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
1856 Perl_croak(aTHX_ "Callback called exit");
1857 my_exit_jump();
1858 /* NOTREACHED */
1859 case 3:
1860 if (PL_restartop) {
1861 PL_op = PL_restartop;
1862 PL_restartop = 0;
1863 goto redo_body;
1864 }
1865 PL_stack_sp = PL_stack_base + oldmark;
1866 if (flags & G_ARRAY)
1867 retval = 0;
1868 else {
1869 retval = 1;
1870 *++PL_stack_sp = &PL_sv_undef;
1871 }
1872 break;
1873 }
1874
1875 if (PL_scopestack_ix > oldscope) {
1876 SV **newsp;
1877 PMOP *newpm;
1878 I32 gimme;
1879 register PERL_CONTEXT *cx;
1880 I32 optype;
1881
1882 POPBLOCK(cx,newpm);
1883 POPEVAL(cx);
1884 pop_return();
1885 PL_curpm = newpm;
1886 LEAVE;
1887 }
1888 JMPENV_POP;
1889 }
1890
1891 if (flags & G_DISCARD) {
1892 PL_stack_sp = PL_stack_base + oldmark;
1893 retval = 0;
1894 FREETMPS;
1895 LEAVE;
1896 }
1897 PL_op = oldop;
1898 return retval;
1899}
1900
1901#ifdef PERL_FLEXIBLE_EXCEPTIONS
1902STATIC void *
1903S_vcall_body(pTHX_ va_list args)
1904{
1905 OP *myop = va_arg(args, OP*);
1906 int is_eval = va_arg(args, int);
1907
1908 call_body(myop, is_eval);
1909 return NULL;
1910}
1911#endif
1912
1913STATIC void
1914S_call_body(pTHX_ OP *myop, int is_eval)
1915{
1916 if (PL_op == myop) {
1917 if (is_eval)
1918 PL_op = Perl_pp_entereval(aTHX); /* this doesn't do a POPMARK */
1919 else
1920 PL_op = Perl_pp_entersub(aTHX); /* this does */
1921 }
1922 if (PL_op)
1923 CALLRUNOPS(aTHX);
1924}
1925
1926/* Eval a string. The G_EVAL flag is always assumed. */
1927
1928/*
1929=for apidoc p||eval_sv
1930
1931Tells Perl to C<eval> the string in the SV.
1932
1933=cut
1934*/
1935
1936I32
1937Perl_eval_sv(pTHX_ SV *sv, I32 flags)
1938
1939 /* See G_* flags in cop.h */
1940{
1941 dSP;
1942 UNOP myop; /* fake syntax tree node */
1943 volatile I32 oldmark = SP - PL_stack_base;
1944 volatile I32 retval = 0;
1945 I32 oldscope;
1946 int ret;
1947 OP* oldop = PL_op;
1948 dJMPENV;
1949
1950 if (flags & G_DISCARD) {
1951 ENTER;
1952 SAVETMPS;
1953 }
1954
1955 SAVEOP();
1956 PL_op = (OP*)&myop;
1957 Zero(PL_op, 1, UNOP);
1958 EXTEND(PL_stack_sp, 1);
1959 *++PL_stack_sp = sv;
1960 oldscope = PL_scopestack_ix;
1961
1962 if (!(flags & G_NOARGS))
1963 myop.op_flags = OPf_STACKED;
1964 myop.op_next = Nullop;
1965 myop.op_type = OP_ENTEREVAL;
1966 myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1967 (flags & G_ARRAY) ? OPf_WANT_LIST :
1968 OPf_WANT_SCALAR);
1969 if (flags & G_KEEPERR)
1970 myop.op_flags |= OPf_SPECIAL;
1971
1972#ifdef PERL_FLEXIBLE_EXCEPTIONS
1973 redo_body:
1974 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_body),
1975 (OP*)&myop, TRUE);
1976#else
1977 JMPENV_PUSH(ret);
1978#endif
1979 switch (ret) {
1980 case 0:
1981#ifndef PERL_FLEXIBLE_EXCEPTIONS
1982 redo_body:
1983 call_body((OP*)&myop,TRUE);
1984#endif
1985 retval = PL_stack_sp - (PL_stack_base + oldmark);
1986 if (!(flags & G_KEEPERR))
1987 sv_setpv(ERRSV,"");
1988 break;
1989 case 1:
1990 STATUS_ALL_FAILURE;
1991 /* FALL THROUGH */
1992 case 2:
1993 /* my_exit() was called */
1994 PL_curstash = PL_defstash;
1995 FREETMPS;
1996 JMPENV_POP;
1997 if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
1998 Perl_croak(aTHX_ "Callback called exit");
1999 my_exit_jump();
2000 /* NOTREACHED */
2001 case 3:
2002 if (PL_restartop) {
2003 PL_op = PL_restartop;
2004 PL_restartop = 0;
2005 goto redo_body;
2006 }
2007 PL_stack_sp = PL_stack_base + oldmark;
2008 if (flags & G_ARRAY)
2009 retval = 0;
2010 else {
2011 retval = 1;
2012 *++PL_stack_sp = &PL_sv_undef;
2013 }
2014 break;
2015 }
2016
2017 JMPENV_POP;
2018 if (flags & G_DISCARD) {
2019 PL_stack_sp = PL_stack_base + oldmark;
2020 retval = 0;
2021 FREETMPS;
2022 LEAVE;
2023 }
2024 PL_op = oldop;
2025 return retval;
2026}
2027
2028/*
2029=for apidoc p||eval_pv
2030
2031Tells Perl to C<eval> the given string and return an SV* result.
2032
2033=cut
2034*/
2035
2036SV*
2037Perl_eval_pv(pTHX_ const char *p, I32 croak_on_error)
2038{
2039 dSP;
2040 SV* sv = newSVpv(p, 0);
2041
2042 eval_sv(sv, G_SCALAR);
2043 SvREFCNT_dec(sv);
2044
2045 SPAGAIN;
2046 sv = POPs;
2047 PUTBACK;
2048
2049 if (croak_on_error && SvTRUE(ERRSV)) {
2050 STRLEN n_a;
2051 Perl_croak(aTHX_ SvPVx(ERRSV, n_a));
2052 }
2053
2054 return sv;
2055}
2056
2057/* Require a module. */
2058
2059/*
2060=for apidoc p||require_pv
2061
2062Tells Perl to C<require> the file named by the string argument. It is
2063analogous to the Perl code C<eval "require '$file'">. It's even
2064implemented that way; consider using Perl_load_module instead.
2065
2066=cut */
2067
2068void
2069Perl_require_pv(pTHX_ const char *pv)
2070{
2071 SV* sv;
2072 dSP;
2073 PUSHSTACKi(PERLSI_REQUIRE);
2074 PUTBACK;
2075 sv = sv_newmortal();
2076 sv_setpv(sv, "require '");
2077 sv_catpv(sv, pv);
2078 sv_catpv(sv, "'");
2079 eval_sv(sv, G_DISCARD);
2080 SPAGAIN;
2081 POPSTACK;
2082}
2083
2084void
2085Perl_magicname(pTHX_ char *sym, char *name, I32 namlen)
2086{
2087 register GV *gv;
2088
2089 if ((gv = gv_fetchpv(sym,TRUE, SVt_PV)))
2090 sv_magic(GvSV(gv), (SV*)gv, PERL_MAGIC_sv, name, namlen);
2091}
2092
2093STATIC void
2094S_usage(pTHX_ char *name) /* XXX move this out into a module ? */
2095{
2096 /* This message really ought to be max 23 lines.
2097 * Removed -h because the user already knows that option. Others? */
2098
2099 static char *usage_msg[] = {
2100"-0[octal] specify record separator (\\0, if no argument)",
2101"-a autosplit mode with -n or -p (splits $_ into @F)",
2102"-C enable native wide character system interfaces",
2103"-c check syntax only (runs BEGIN and CHECK blocks)",
2104"-d[:debugger] run program under debugger",
2105"-D[number/list] set debugging flags (argument is a bit mask or alphabets)",
2106"-e 'command' one line of program (several -e's allowed, omit programfile)",
2107"-F/pattern/ split() pattern for -a switch (//'s are optional)",
2108"-i[extension] edit <> files in place (makes backup if extension supplied)",
2109"-Idirectory specify @INC/#include directory (several -I's allowed)",
2110"-l[octal] enable line ending processing, specifies line terminator",
2111"-[mM][-]module execute `use/no module...' before executing program",
2112"-n assume 'while (<>) { ... }' loop around program",
2113"-p assume loop like -n but print line also, like sed",
2114"-P run program through C preprocessor before compilation",
2115"-s enable rudimentary parsing for switches after programfile",
2116"-S look for programfile using PATH environment variable",
2117"-T enable tainting checks",
2118"-u dump core after parsing program",
2119"-U allow unsafe operations",
2120"-v print version, subversion (includes VERY IMPORTANT perl info)",
2121"-V[:variable] print configuration summary (or a single Config.pm variable)",
2122"-w enable many useful warnings (RECOMMENDED)",
2123"-W enable all warnings",
2124"-X disable all warnings",
2125"-x[directory] strip off text before #!perl line and perhaps cd to directory",
2126"\n",
2127NULL
2128};
2129 char **p = usage_msg;
2130
2131 PerlIO_printf(PerlIO_stdout(),
2132 "\nUsage: %s [switches] [--] [programfile] [arguments]",
2133 name);
2134 while (*p)
2135 PerlIO_printf(PerlIO_stdout(), "\n %s", *p++);
2136}
2137
2138/* This routine handles any switches that can be given during run */
2139
2140char *
2141Perl_moreswitches(pTHX_ char *s)
2142{
2143 STRLEN numlen;
2144 U32 rschar;
2145
2146 switch (*s) {
2147 case '0':
2148 {
2149 I32 flags = 0;
2150 numlen = 4;
2151 rschar = (U32)grok_oct(s, &numlen, &flags, NULL);
2152 SvREFCNT_dec(PL_rs);
2153 if (rschar & ~((U8)~0))
2154 PL_rs = &PL_sv_undef;
2155 else if (!rschar && numlen >= 2)
2156 PL_rs = newSVpvn("", 0);
2157 else {
2158 char ch = rschar;
2159 PL_rs = newSVpvn(&ch, 1);
2160 }
2161 return s + numlen;
2162 }
2163 case 'C':
2164 PL_widesyscalls = TRUE;
2165 s++;
2166 return s;
2167 case 'F':
2168 PL_minus_F = TRUE;
2169 PL_splitstr = savepv(s + 1);
2170 s += strlen(s);
2171 return s;
2172 case 'a':
2173 PL_minus_a = TRUE;
2174 s++;
2175 return s;
2176 case 'c':
2177 PL_minus_c = TRUE;
2178 s++;
2179 return s;
2180 case 'd':
2181 forbid_setid("-d");
2182 s++;
2183 /* The following permits -d:Mod to accepts arguments following an =
2184 in the fashion that -MSome::Mod does. */
2185 if (*s == ':' || *s == '=') {
2186 char *start;
2187 SV *sv;
2188 sv = newSVpv("use Devel::", 0);
2189 start = ++s;
2190 /* We now allow -d:Module=Foo,Bar */
2191 while(isALNUM(*s) || *s==':') ++s;
2192 if (*s != '=')
2193 sv_catpv(sv, start);
2194 else {
2195 sv_catpvn(sv, start, s-start);
2196 sv_catpv(sv, " split(/,/,q{");
2197 sv_catpv(sv, ++s);
2198 sv_catpv(sv, "})");
2199 }
2200 s += strlen(s);
2201 my_setenv("PERL5DB", SvPV(sv, PL_na));
2202 }
2203 if (!PL_perldb) {
2204 PL_perldb = PERLDB_ALL;
2205 init_debugger();
2206 }
2207 return s;
2208 case 'D':
2209 {
2210#ifdef DEBUGGING
2211 forbid_setid("-D");
2212 if (isALPHA(s[1])) {
2213 /* if adding extra options, remember to update DEBUG_MASK */
2214 static char debopts[] = "psltocPmfrxuLHXDSTR";
2215 char *d;
2216
2217 for (s++; *s && (d = strchr(debopts,*s)); s++)
2218 PL_debug |= 1 << (d - debopts);
2219 }
2220 else {
2221 PL_debug = atoi(s+1);
2222 for (s++; isDIGIT(*s); s++) ;
2223 }
2224 PL_debug |= DEBUG_TOP_FLAG;
2225#else
2226 if (ckWARN_d(WARN_DEBUGGING))
2227 Perl_warner(aTHX_ WARN_DEBUGGING,
2228 "Recompile perl with -DDEBUGGING to use -D switch\n");
2229 for (s++; isALNUM(*s); s++) ;
2230#endif
2231 /*SUPPRESS 530*/
2232 return s;
2233 }
2234 case 'h':
2235 usage(PL_origargv[0]);
2236 PerlProc_exit(0);
2237 case 'i':
2238 if (PL_inplace)
2239 Safefree(PL_inplace);
2240 PL_inplace = savepv(s+1);
2241 /*SUPPRESS 530*/
2242 for (s = PL_inplace; *s && !isSPACE(*s); s++) ;
2243 if (*s) {
2244 *s++ = '\0';
2245 if (*s == '-') /* Additional switches on #! line. */
2246 s++;
2247 }
2248 return s;
2249 case 'I': /* -I handled both here and in parse_perl() */
2250 forbid_setid("-I");
2251 ++s;
2252 while (*s && isSPACE(*s))
2253 ++s;
2254 if (*s) {
2255 char *e, *p;
2256 p = s;
2257 /* ignore trailing spaces (possibly followed by other switches) */
2258 do {
2259 for (e = p; *e && !isSPACE(*e); e++) ;
2260 p = e;
2261 while (isSPACE(*p))
2262 p++;
2263 } while (*p && *p != '-');
2264 e = savepvn(s, e-s);
2265 incpush(e, TRUE, TRUE);
2266 Safefree(e);
2267 s = p;
2268 if (*s == '-')
2269 s++;
2270 }
2271 else
2272 Perl_croak(aTHX_ "No directory specified for -I");
2273 return s;
2274 case 'l':
2275 PL_minus_l = TRUE;
2276 s++;
2277 if (PL_ors_sv) {
2278 SvREFCNT_dec(PL_ors_sv);
2279 PL_ors_sv = Nullsv;
2280 }
2281 if (isDIGIT(*s)) {
2282 I32 flags = 0;
2283 PL_ors_sv = newSVpvn("\n",1);
2284 numlen = 3 + (*s == '0');
2285 *SvPVX(PL_ors_sv) = (char)grok_oct(s, &numlen, &flags, NULL);
2286 s += numlen;
2287 }
2288 else {
2289 if (RsPARA(PL_rs)) {
2290 PL_ors_sv = newSVpvn("\n\n",2);
2291 }
2292 else {
2293 PL_ors_sv = newSVsv(PL_rs);
2294 }
2295 }
2296 return s;
2297 case 'M':
2298 forbid_setid("-M"); /* XXX ? */
2299 /* FALL THROUGH */
2300 case 'm':
2301 forbid_setid("-m"); /* XXX ? */
2302 if (*++s) {
2303 char *start;
2304 SV *sv;
2305 char *use = "use ";
2306 /* -M-foo == 'no foo' */
2307 if (*s == '-') { use = "no "; ++s; }
2308 sv = newSVpv(use,0);
2309 start = s;
2310 /* We allow -M'Module qw(Foo Bar)' */
2311 while(isALNUM(*s) || *s==':') ++s;
2312 if (*s != '=') {
2313 sv_catpv(sv, start);
2314 if (*(start-1) == 'm') {
2315 if (*s != '\0')
2316 Perl_croak(aTHX_ "Can't use '%c' after -mname", *s);
2317 sv_catpv( sv, " ()");
2318 }
2319 } else {
2320 if (s == start)
2321 Perl_croak(aTHX_ "Module name required with -%c option",
2322 s[-1]);
2323 sv_catpvn(sv, start, s-start);
2324 sv_catpv(sv, " split(/,/,q{");
2325 sv_catpv(sv, ++s);
2326 sv_catpv(sv, "})");
2327 }
2328 s += strlen(s);
2329 if (!PL_preambleav)
2330 PL_preambleav = newAV();
2331 av_push(PL_preambleav, sv);
2332 }
2333 else
2334 Perl_croak(aTHX_ "No space allowed after -%c", *(s-1));
2335 return s;
2336 case 'n':
2337 PL_minus_n = TRUE;
2338 s++;
2339 return s;
2340 case 'p':
2341 PL_minus_p = TRUE;
2342 s++;
2343 return s;
2344 case 's':
2345 forbid_setid("-s");
2346 PL_doswitches = TRUE;
2347 s++;
2348 return s;
2349 case 'T':
2350 if (!PL_tainting)
2351 Perl_croak(aTHX_ "Too late for \"-T\" option");
2352 s++;
2353 return s;
2354 case 'u':
2355#ifdef MACOS_TRADITIONAL
2356 Perl_croak(aTHX_ "Believe me, you don't want to use \"-u\" on a Macintosh");
2357#endif
2358 PL_do_undump = TRUE;
2359 s++;
2360 return s;
2361 case 'U':
2362 PL_unsafe = TRUE;
2363 s++;
2364 return s;
2365 case 'v':
2366#if !defined(DGUX)
2367 PerlIO_printf(PerlIO_stdout(),
2368 Perl_form(aTHX_ "\nThis is perl, v%"VDf" built for %s",
2369 PL_patchlevel, ARCHNAME));
2370#else /* DGUX */
2371/* Adjust verbose output as in the perl that ships with the DG/UX OS from EMC */
2372 PerlIO_printf(PerlIO_stdout(),
2373 Perl_form(aTHX_ "\nThis is perl, version %vd\n", PL_patchlevel));
2374 PerlIO_printf(PerlIO_stdout(),
2375 Perl_form(aTHX_ " built under %s at %s %s\n",
2376 OSNAME, __DATE__, __TIME__));
2377 PerlIO_printf(PerlIO_stdout(),
2378 Perl_form(aTHX_ " OS Specific Release: %s\n",
2379 OSVERS));
2380#endif /* !DGUX */
2381
2382#if defined(LOCAL_PATCH_COUNT)
2383 if (LOCAL_PATCH_COUNT > 0)
2384 PerlIO_printf(PerlIO_stdout(),
2385 "\n(with %d registered patch%s, "
2386 "see perl -V for more detail)",
2387 (int)LOCAL_PATCH_COUNT,
2388 (LOCAL_PATCH_COUNT!=1) ? "es" : "");
2389#endif
2390
2391 PerlIO_printf(PerlIO_stdout(),
2392 "\n\nCopyright 1987-2001, Larry Wall\n");
2393#ifdef MACOS_TRADITIONAL
2394 PerlIO_printf(PerlIO_stdout(),
2395 "\nMac OS port Copyright (c) 1991-2001, Matthias Neeracher\n");
2396#endif
2397#ifdef MSDOS
2398 PerlIO_printf(PerlIO_stdout(),
2399 "\nMS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis\n");
2400#endif
2401#ifdef DJGPP
2402 PerlIO_printf(PerlIO_stdout(),
2403 "djgpp v2 port (jpl5003c) by Hirofumi Watanabe, 1996\n"
2404 "djgpp v2 port (perl5004+) by Laszlo Molnar, 1997-1999\n");
2405#endif
2406#ifdef OS2
2407 PerlIO_printf(PerlIO_stdout(),
2408 "\n\nOS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n"
2409 "Version 5 port Copyright (c) 1994-1999, Andreas Kaiser, Ilya Zakharevich\n");
2410#endif
2411#ifdef atarist
2412 PerlIO_printf(PerlIO_stdout(),
2413 "atariST series port, ++jrb bammi@cadence.com\n");
2414#endif
2415#ifdef __BEOS__
2416 PerlIO_printf(PerlIO_stdout(),
2417 "BeOS port Copyright Tom Spindler, 1997-1999\n");
2418#endif
2419#ifdef MPE
2420 PerlIO_printf(PerlIO_stdout(),
2421 "MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-2001\n");
2422#endif
2423#ifdef OEMVS
2424 PerlIO_printf(PerlIO_stdout(),
2425 "MVS (OS390) port by Mortice Kern Systems, 1997-1999\n");
2426#endif
2427#ifdef __VOS__
2428 PerlIO_printf(PerlIO_stdout(),
2429 "Stratus VOS port by Paul_Green@stratus.com, 1997-1999\n");
2430#endif
2431#ifdef __OPEN_VM
2432 PerlIO_printf(PerlIO_stdout(),
2433 "VM/ESA port by Neale Ferguson, 1998-1999\n");
2434#endif
2435#ifdef POSIX_BC
2436 PerlIO_printf(PerlIO_stdout(),
2437 "BS2000 (POSIX) port by Start Amadeus GmbH, 1998-1999\n");
2438#endif
2439#ifdef __MINT__
2440 PerlIO_printf(PerlIO_stdout(),
2441 "MiNT port by Guido Flohr, 1997-1999\n");
2442#endif
2443#ifdef EPOC
2444 PerlIO_printf(PerlIO_stdout(),
2445 "EPOC port by Olaf Flebbe, 1999-2000\n");
2446#endif
2447#ifdef UNDER_CE
2448 printf("WINCE port by Rainer Keuchel, 2001\n");
2449 printf("Built on " __DATE__ " " __TIME__ "\n\n");
2450 wce_hitreturn();
2451#endif
2452#ifdef BINARY_BUILD_NOTICE
2453 BINARY_BUILD_NOTICE;
2454#endif
2455 PerlIO_printf(PerlIO_stdout(),
2456 "\n\
2457Perl may be copied only under the terms of either the Artistic License or the\n\
2458GNU General Public License, which may be found in the Perl 5 source kit.\n\n\
2459Complete documentation for Perl, including FAQ lists, should be found on\n\
2460this system using `man perl' or `perldoc perl'. If you have access to the\n\
2461Internet, point your browser at http://www.perl.com/, the Perl Home Page.\n\n");
2462 PerlProc_exit(0);
2463 case 'w':
2464 if (! (PL_dowarn & G_WARN_ALL_MASK))
2465 PL_dowarn |= G_WARN_ON;
2466 s++;
2467 return s;
2468 case 'W':
2469 PL_dowarn = G_WARN_ALL_ON|G_WARN_ON;
2470 PL_compiling.cop_warnings = pWARN_ALL ;
2471 s++;
2472 return s;
2473 case 'X':
2474 PL_dowarn = G_WARN_ALL_OFF;
2475 PL_compiling.cop_warnings = pWARN_NONE ;
2476 s++;
2477 return s;
2478 case '*':
2479 case ' ':
2480 if (s[1] == '-') /* Additional switches on #! line. */
2481 return s+2;
2482 break;
2483 case '-':
2484 case 0:
2485#if defined(WIN32) || !defined(PERL_STRICT_CR)
2486 case '\r':
2487#endif
2488 case '\n':
2489 case '\t':
2490 break;
2491#ifdef ALTERNATE_SHEBANG
2492 case 'S': /* OS/2 needs -S on "extproc" line. */
2493 break;
2494#endif
2495 case 'P':
2496 if (PL_preprocess)
2497 return s+1;
2498 /* FALL THROUGH */
2499 default:
2500 Perl_croak(aTHX_ "Can't emulate -%.1s on #! line",s);
2501 }
2502 return Nullch;
2503}
2504
2505/* compliments of Tom Christiansen */
2506
2507/* unexec() can be found in the Gnu emacs distribution */
2508/* Known to work with -DUNEXEC and using unexelf.c from GNU emacs-20.2 */
2509
2510void
2511Perl_my_unexec(pTHX)
2512{
2513#ifdef UNEXEC
2514 SV* prog;
2515 SV* file;
2516 int status = 1;
2517 extern int etext;
2518
2519 prog = newSVpv(BIN_EXP, 0);
2520 sv_catpv(prog, "/perl");
2521 file = newSVpv(PL_origfilename, 0);
2522 sv_catpv(file, ".perldump");
2523
2524 unexec(SvPVX(file), SvPVX(prog), &etext, sbrk(0), 0);
2525 /* unexec prints msg to stderr in case of failure */
2526 PerlProc_exit(status);
2527#else
2528# ifdef VMS
2529# include <lib$routines.h>
2530 lib$signal(SS$_DEBUG); /* ssdef.h #included from vmsish.h */
2531# else
2532 ABORT(); /* for use with undump */
2533# endif
2534#endif
2535}
2536
2537/* initialize curinterp */
2538STATIC void
2539S_init_interp(pTHX)
2540{
2541
2542#ifdef MULTIPLICITY
2543# define PERLVAR(var,type)
2544# define PERLVARA(var,n,type)
2545# if defined(PERL_IMPLICIT_CONTEXT)
2546# if defined(USE_5005THREADS)
2547# define PERLVARI(var,type,init) PERL_GET_INTERP->var = init;
2548# define PERLVARIC(var,type,init) PERL_GET_INTERP->var = init;
2549# else /* !USE_5005THREADS */
2550# define PERLVARI(var,type,init) aTHX->var = init;
2551# define PERLVARIC(var,type,init) aTHX->var = init;
2552# endif /* USE_5005THREADS */
2553# else
2554# define PERLVARI(var,type,init) PERL_GET_INTERP->var = init;
2555# define PERLVARIC(var,type,init) PERL_GET_INTERP->var = init;
2556# endif
2557# include "intrpvar.h"
2558# ifndef USE_5005THREADS
2559# include "thrdvar.h"
2560# endif
2561# undef PERLVAR
2562# undef PERLVARA
2563# undef PERLVARI
2564# undef PERLVARIC
2565#else
2566# define PERLVAR(var,type)
2567# define PERLVARA(var,n,type)
2568# define PERLVARI(var,type,init) PL_##var = init;
2569# define PERLVARIC(var,type,init) PL_##var = init;
2570# include "intrpvar.h"
2571# ifndef USE_5005THREADS
2572# include "thrdvar.h"
2573# endif
2574# undef PERLVAR
2575# undef PERLVARA
2576# undef PERLVARI
2577# undef PERLVARIC
2578#endif
2579
2580}
2581
2582STATIC void
2583S_init_main_stash(pTHX)
2584{
2585 GV *gv;
2586
2587 /* Note that strtab is a rather special HV. Assumptions are made
2588 about not iterating on it, and not adding tie magic to it.
2589 It is properly deallocated in perl_destruct() */
2590 PL_strtab = newHV();
2591#ifdef USE_5005THREADS
2592 MUTEX_INIT(&PL_strtab_mutex);
2593#endif
2594 HvSHAREKEYS_off(PL_strtab); /* mandatory */
2595 hv_ksplit(PL_strtab, 512);
2596
2597 PL_curstash = PL_defstash = newHV();
2598 PL_curstname = newSVpvn("main",4);
2599 gv = gv_fetchpv("main::",TRUE, SVt_PVHV);
2600 SvREFCNT_dec(GvHV(gv));
2601 GvHV(gv) = (HV*)SvREFCNT_inc(PL_defstash);
2602 SvREADONLY_on(gv);
2603 HvNAME(PL_defstash) = savepv("main");
2604 PL_incgv = gv_HVadd(gv_AVadd(gv_fetchpv("INC",TRUE, SVt_PVAV)));
2605 GvMULTI_on(PL_incgv);
2606 PL_hintgv = gv_fetchpv("\010",TRUE, SVt_PV); /* ^H */
2607 GvMULTI_on(PL_hintgv);
2608 PL_defgv = gv_fetchpv("_",TRUE, SVt_PVAV);
2609 PL_errgv = gv_HVadd(gv_fetchpv("@", TRUE, SVt_PV));
2610 GvMULTI_on(PL_errgv);
2611 PL_replgv = gv_fetchpv("\022", TRUE, SVt_PV); /* ^R */
2612 GvMULTI_on(PL_replgv);
2613 (void)Perl_form(aTHX_ "%240s",""); /* Preallocate temp - for immediate signals. */
2614 sv_grow(ERRSV, 240); /* Preallocate - for immediate signals. */
2615 sv_setpvn(ERRSV, "", 0);
2616 PL_curstash = PL_defstash;
2617 CopSTASH_set(&PL_compiling, PL_defstash);
2618 PL_debstash = GvHV(gv_fetchpv("DB::", GV_ADDMULTI, SVt_PVHV));
2619 PL_globalstash = GvHV(gv_fetchpv("CORE::GLOBAL::", GV_ADDMULTI, SVt_PVHV));
2620 PL_nullstash = GvHV(gv_fetchpv("<none>::", GV_ADDMULTI, SVt_PVHV));
2621 /* We must init $/ before switches are processed. */
2622 sv_setpvn(get_sv("/", TRUE), "\n", 1);
2623}
2624
2625STATIC void
2626S_open_script(pTHX_ char *scriptname, bool dosearch, SV *sv, int *fdscript)
2627{
2628 *fdscript = -1;
2629
2630 if (PL_e_script) {
2631 PL_origfilename = savepv("-e");
2632 }
2633 else {
2634 /* if find_script() returns, it returns a malloc()-ed value */
2635 PL_origfilename = scriptname = find_script(scriptname, dosearch, NULL, 1);
2636
2637 if (strnEQ(scriptname, "/dev/fd/", 8) && isDIGIT(scriptname[8]) ) {
2638 char *s = scriptname + 8;
2639 *fdscript = atoi(s);
2640 while (isDIGIT(*s))
2641 s++;
2642 if (*s) {
2643 scriptname = savepv(s + 1);
2644 Safefree(PL_origfilename);
2645 PL_origfilename = scriptname;
2646 }
2647 }
2648 }
2649
2650#ifdef USE_ITHREADS
2651 Safefree(CopFILE(PL_curcop));
2652#else
2653 SvREFCNT_dec(CopFILEGV(PL_curcop));
2654#endif
2655 CopFILE_set(PL_curcop, PL_origfilename);
2656 if (strEQ(PL_origfilename,"-"))
2657 scriptname = "";
2658 if (*fdscript >= 0) {
2659 PL_rsfp = PerlIO_fdopen(*fdscript,PERL_SCRIPT_MODE);
2660#if defined(HAS_FCNTL) && defined(F_SETFD)
2661 if (PL_rsfp)
2662 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1); /* ensure close-on-exec */
2663#endif
2664 }
2665 else if (PL_preprocess) {
2666 char *cpp_cfg = CPPSTDIN;
2667 SV *cpp = newSVpvn("",0);
2668 SV *cmd = NEWSV(0,0);
2669
2670 if (strEQ(cpp_cfg, "cppstdin"))
2671 Perl_sv_catpvf(aTHX_ cpp, "%s/", BIN_EXP);
2672 sv_catpv(cpp, cpp_cfg);
2673
2674 sv_catpvn(sv, "-I", 2);
2675 sv_catpv(sv,PRIVLIB_EXP);
2676
2677 DEBUG_P(PerlIO_printf(Perl_debug_log,
2678 "PL_preprocess: scriptname=\"%s\", cpp=\"%s\", sv=\"%s\", CPPMINUS=\"%s\"\n",
2679 scriptname, SvPVX (cpp), SvPVX (sv), CPPMINUS));
2680#if defined(MSDOS) || defined(WIN32)
2681 Perl_sv_setpvf(aTHX_ cmd, "\
2682sed %s -e \"/^[^#]/b\" \
2683 -e \"/^#[ ]*include[ ]/b\" \
2684 -e \"/^#[ ]*define[ ]/b\" \
2685 -e \"/^#[ ]*if[ ]/b\" \
2686 -e \"/^#[ ]*ifdef[ ]/b\" \
2687 -e \"/^#[ ]*ifndef[ ]/b\" \
2688 -e \"/^#[ ]*else/b\" \
2689 -e \"/^#[ ]*elif[ ]/b\" \
2690 -e \"/^#[ ]*undef[ ]/b\" \
2691 -e \"/^#[ ]*endif/b\" \
2692 -e \"s/^#.*//\" \
2693 %s | %"SVf" -C %"SVf" %s",
2694 (PL_doextract ? "-e \"1,/^#/d\n\"" : ""),
2695#else
2696# ifdef __OPEN_VM
2697 Perl_sv_setpvf(aTHX_ cmd, "\
2698%s %s -e '/^[^#]/b' \
2699 -e '/^#[ ]*include[ ]/b' \
2700 -e '/^#[ ]*define[ ]/b' \
2701 -e '/^#[ ]*if[ ]/b' \
2702 -e '/^#[ ]*ifdef[ ]/b' \
2703 -e '/^#[ ]*ifndef[ ]/b' \
2704 -e '/^#[ ]*else/b' \
2705 -e '/^#[ ]*elif[ ]/b' \
2706 -e '/^#[ ]*undef[ ]/b' \
2707 -e '/^#[ ]*endif/b' \
2708 -e 's/^[ ]*#.*//' \
2709 %s | %"SVf" %"SVf" %s",
2710# else
2711 Perl_sv_setpvf(aTHX_ cmd, "\
2712%s %s -e '/^[^#]/b' \
2713 -e '/^#[ ]*include[ ]/b' \
2714 -e '/^#[ ]*define[ ]/b' \
2715 -e '/^#[ ]*if[ ]/b' \
2716 -e '/^#[ ]*ifdef[ ]/b' \
2717 -e '/^#[ ]*ifndef[ ]/b' \
2718 -e '/^#[ ]*else/b' \
2719 -e '/^#[ ]*elif[ ]/b' \
2720 -e '/^#[ ]*undef[ ]/b' \
2721 -e '/^#[ ]*endif/b' \
2722 -e 's/^[ ]*#.*//' \
2723 %s | %"SVf" -C %"SVf" %s",
2724# endif
2725#ifdef LOC_SED
2726 LOC_SED,
2727#else
2728 "sed",
2729#endif
2730 (PL_doextract ? "-e '1,/^#/d\n'" : ""),
2731#endif
2732 scriptname, cpp, sv, CPPMINUS);
2733 PL_doextract = FALSE;
2734#ifdef IAMSUID /* actually, this is caught earlier */
2735 if (PL_euid != PL_uid && !PL_euid) { /* if running suidperl */
2736#ifdef HAS_SETEUID
2737 (void)seteuid(PL_uid); /* musn't stay setuid root */
2738#else
2739#ifdef HAS_SETREUID
2740 (void)setreuid((Uid_t)-1, PL_uid);
2741#else
2742#ifdef HAS_SETRESUID
2743 (void)setresuid((Uid_t)-1, PL_uid, (Uid_t)-1);
2744#else
2745 PerlProc_setuid(PL_uid);
2746#endif
2747#endif
2748#endif
2749 if (PerlProc_geteuid() != PL_uid)
2750 Perl_croak(aTHX_ "Can't do seteuid!\n");
2751 }
2752#endif /* IAMSUID */
2753 PL_rsfp = PerlProc_popen(SvPVX(cmd), "r");
2754 SvREFCNT_dec(cmd);
2755 SvREFCNT_dec(cpp);
2756 }
2757 else if (!*scriptname) {
2758 forbid_setid("program input from stdin");
2759 PL_rsfp = PerlIO_stdin();
2760 }
2761 else {
2762 PL_rsfp = PerlIO_open(scriptname,PERL_SCRIPT_MODE);
2763#if defined(HAS_FCNTL) && defined(F_SETFD)
2764 if (PL_rsfp)
2765 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1); /* ensure close-on-exec */
2766#endif
2767 }
2768 if (!PL_rsfp) {
2769#ifdef DOSUID
2770#ifndef IAMSUID /* in case script is not readable before setuid */
2771 if (PL_euid &&
2772 PerlLIO_stat(CopFILE(PL_curcop),&PL_statbuf) >= 0 &&
2773 PL_statbuf.st_mode & (S_ISUID|S_ISGID))
2774 {
2775 /* try again */
2776 PerlProc_execv(Perl_form(aTHX_ "%s/sperl"PERL_FS_VER_FMT, BIN_EXP,
2777 (int)PERL_REVISION, (int)PERL_VERSION,
2778 (int)PERL_SUBVERSION), PL_origargv);
2779 Perl_croak(aTHX_ "Can't do setuid\n");
2780 }
2781#endif
2782#endif
2783#ifdef IAMSUID
2784 errno = EPERM;
2785 Perl_croak(aTHX_ "Can't open perl script: %s\n",
2786 Strerror(errno));
2787#else
2788 Perl_croak(aTHX_ "Can't open perl script \"%s\": %s\n",
2789 CopFILE(PL_curcop), Strerror(errno));
2790#endif
2791 }
2792}
2793
2794/* Mention
2795 * I_SYSSTATVFS HAS_FSTATVFS
2796 * I_SYSMOUNT
2797 * I_STATFS HAS_FSTATFS HAS_GETFSSTAT
2798 * I_MNTENT HAS_GETMNTENT HAS_HASMNTOPT
2799 * here so that metaconfig picks them up. */
2800
2801#ifdef IAMSUID
2802STATIC int
2803S_fd_on_nosuid_fs(pTHX_ int fd)
2804{
2805 int check_okay = 0; /* able to do all the required sys/libcalls */
2806 int on_nosuid = 0; /* the fd is on a nosuid fs */
2807/*
2808 * Preferred order: fstatvfs(), fstatfs(), ustat()+getmnt(), getmntent().
2809 * fstatvfs() is UNIX98.
2810 * fstatfs() is 4.3 BSD.
2811 * ustat()+getmnt() is pre-4.3 BSD.
2812 * getmntent() is O(number-of-mounted-filesystems) and can hang on
2813 * an irrelevant filesystem while trying to reach the right one.
2814 */
2815
2816#undef FD_ON_NOSUID_CHECK_OKAY /* found the syscalls to do the check? */
2817
2818# if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2819 defined(HAS_FSTATVFS)
2820# define FD_ON_NOSUID_CHECK_OKAY
2821 struct statvfs stfs;
2822
2823 check_okay = fstatvfs(fd, &stfs) == 0;
2824 on_nosuid = check_okay && (stfs.f_flag & ST_NOSUID);
2825# endif /* fstatvfs */
2826
2827# if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2828 defined(PERL_MOUNT_NOSUID) && \
2829 defined(HAS_FSTATFS) && \
2830 defined(HAS_STRUCT_STATFS) && \
2831 defined(HAS_STRUCT_STATFS_F_FLAGS)
2832# define FD_ON_NOSUID_CHECK_OKAY
2833 struct statfs stfs;
2834
2835 check_okay = fstatfs(fd, &stfs) == 0;
2836 on_nosuid = check_okay && (stfs.f_flags & PERL_MOUNT_NOSUID);
2837# endif /* fstatfs */
2838
2839# if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2840 defined(PERL_MOUNT_NOSUID) && \
2841 defined(HAS_FSTAT) && \
2842 defined(HAS_USTAT) && \
2843 defined(HAS_GETMNT) && \
2844 defined(HAS_STRUCT_FS_DATA) && \
2845 defined(NOSTAT_ONE)
2846# define FD_ON_NOSUID_CHECK_OKAY
2847 struct stat fdst;
2848
2849 if (fstat(fd, &fdst) == 0) {
2850 struct ustat us;
2851 if (ustat(fdst.st_dev, &us) == 0) {
2852 struct fs_data fsd;
2853 /* NOSTAT_ONE here because we're not examining fields which
2854 * vary between that case and STAT_ONE. */
2855 if (getmnt((int*)0, &fsd, (int)0, NOSTAT_ONE, us.f_fname) == 0) {
2856 size_t cmplen = sizeof(us.f_fname);
2857 if (sizeof(fsd.fd_req.path) < cmplen)
2858 cmplen = sizeof(fsd.fd_req.path);
2859 if (strnEQ(fsd.fd_req.path, us.f_fname, cmplen) &&
2860 fdst.st_dev == fsd.fd_req.dev) {
2861 check_okay = 1;
2862 on_nosuid = fsd.fd_req.flags & PERL_MOUNT_NOSUID;
2863 }
2864 }
2865 }
2866 }
2867 }
2868# endif /* fstat+ustat+getmnt */
2869
2870# if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2871 defined(HAS_GETMNTENT) && \
2872 defined(HAS_HASMNTOPT) && \
2873 defined(MNTOPT_NOSUID)
2874# define FD_ON_NOSUID_CHECK_OKAY
2875 FILE *mtab = fopen("/etc/mtab", "r");
2876 struct mntent *entry;
2877 struct stat stb, fsb;
2878
2879 if (mtab && (fstat(fd, &stb) == 0)) {
2880 while (entry = getmntent(mtab)) {
2881 if (stat(entry->mnt_dir, &fsb) == 0
2882 && fsb.st_dev == stb.st_dev)
2883 {
2884 /* found the filesystem */
2885 check_okay = 1;
2886 if (hasmntopt(entry, MNTOPT_NOSUID))
2887 on_nosuid = 1;
2888 break;
2889 } /* A single fs may well fail its stat(). */
2890 }
2891 }
2892 if (mtab)
2893 fclose(mtab);
2894# endif /* getmntent+hasmntopt */
2895
2896 if (!check_okay)
2897 Perl_croak(aTHX_ "Can't check filesystem of script \"%s\" for nosuid", PL_origfilename);
2898 return on_nosuid;
2899}
2900#endif /* IAMSUID */
2901
2902STATIC void
2903S_validate_suid(pTHX_ char *validarg, char *scriptname, int fdscript)
2904{
2905#ifdef IAMSUID
2906 int which;
2907#endif
2908
2909 /* do we need to emulate setuid on scripts? */
2910
2911 /* This code is for those BSD systems that have setuid #! scripts disabled
2912 * in the kernel because of a security problem. Merely defining DOSUID
2913 * in perl will not fix that problem, but if you have disabled setuid
2914 * scripts in the kernel, this will attempt to emulate setuid and setgid
2915 * on scripts that have those now-otherwise-useless bits set. The setuid
2916 * root version must be called suidperl or sperlN.NNN. If regular perl
2917 * discovers that it has opened a setuid script, it calls suidperl with
2918 * the same argv that it had. If suidperl finds that the script it has
2919 * just opened is NOT setuid root, it sets the effective uid back to the
2920 * uid. We don't just make perl setuid root because that loses the
2921 * effective uid we had before invoking perl, if it was different from the
2922 * uid.
2923 *
2924 * DOSUID must be defined in both perl and suidperl, and IAMSUID must
2925 * be defined in suidperl only. suidperl must be setuid root. The
2926 * Configure script will set this up for you if you want it.
2927 */
2928
2929#ifdef DOSUID
2930 char *s, *s2;
2931
2932 if (PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf) < 0) /* normal stat is insecure */
2933 Perl_croak(aTHX_ "Can't stat script \"%s\"",PL_origfilename);
2934 if (fdscript < 0 && PL_statbuf.st_mode & (S_ISUID|S_ISGID)) {
2935 I32 len;
2936 STRLEN n_a;
2937
2938#ifdef IAMSUID
2939#ifndef HAS_SETREUID
2940 /* On this access check to make sure the directories are readable,
2941 * there is actually a small window that the user could use to make
2942 * filename point to an accessible directory. So there is a faint
2943 * chance that someone could execute a setuid script down in a
2944 * non-accessible directory. I don't know what to do about that.
2945 * But I don't think it's too important. The manual lies when
2946 * it says access() is useful in setuid programs.
2947 */
2948 if (PerlLIO_access(CopFILE(PL_curcop),1)) /*double check*/
2949 Perl_croak(aTHX_ "Permission denied");
2950#else
2951 /* If we can swap euid and uid, then we can determine access rights
2952 * with a simple stat of the file, and then compare device and
2953 * inode to make sure we did stat() on the same file we opened.
2954 * Then we just have to make sure he or she can execute it.
2955 */
2956 {
2957 struct stat tmpstatbuf;
2958
2959 if (
2960#ifdef HAS_SETREUID
2961 setreuid(PL_euid,PL_uid) < 0
2962#else
2963# if HAS_SETRESUID
2964 setresuid(PL_euid,PL_uid,(Uid_t)-1) < 0
2965# endif
2966#endif
2967 || PerlProc_getuid() != PL_euid || PerlProc_geteuid() != PL_uid)
2968 Perl_croak(aTHX_ "Can't swap uid and euid"); /* really paranoid */
2969 if (PerlLIO_stat(CopFILE(PL_curcop),&tmpstatbuf) < 0)
2970 Perl_croak(aTHX_ "Permission denied"); /* testing full pathname here */
2971#if defined(IAMSUID) && !defined(NO_NOSUID_CHECK)
2972 if (fd_on_nosuid_fs(PerlIO_fileno(PL_rsfp)))
2973 Perl_croak(aTHX_ "Permission denied");
2974#endif
2975 if (tmpstatbuf.st_dev != PL_statbuf.st_dev ||
2976 tmpstatbuf.st_ino != PL_statbuf.st_ino) {
2977 (void)PerlIO_close(PL_rsfp);
2978 Perl_croak(aTHX_ "Permission denied\n");
2979 }
2980 if (
2981#ifdef HAS_SETREUID
2982 setreuid(PL_uid,PL_euid) < 0
2983#else
2984# if defined(HAS_SETRESUID)
2985 setresuid(PL_uid,PL_euid,(Uid_t)-1) < 0
2986# endif
2987#endif
2988 || PerlProc_getuid() != PL_uid || PerlProc_geteuid() != PL_euid)
2989 Perl_croak(aTHX_ "Can't reswap uid and euid");
2990 if (!cando(S_IXUSR,FALSE,&PL_statbuf)) /* can real uid exec? */
2991 Perl_croak(aTHX_ "Permission denied\n");
2992 }
2993#endif /* HAS_SETREUID */
2994#endif /* IAMSUID */
2995
2996 if (!S_ISREG(PL_statbuf.st_mode))
2997 Perl_croak(aTHX_ "Permission denied");
2998 if (PL_statbuf.st_mode & S_IWOTH)
2999 Perl_croak(aTHX_ "Setuid/gid script is writable by world");
3000 PL_doswitches = FALSE; /* -s is insecure in suid */
3001 CopLINE_inc(PL_curcop);
3002 if (sv_gets(PL_linestr, PL_rsfp, 0) == Nullch ||
3003 strnNE(SvPV(PL_linestr,n_a),"#!",2) ) /* required even on Sys V */
3004 Perl_croak(aTHX_ "No #! line");
3005 s = SvPV(PL_linestr,n_a)+2;
3006 if (*s == ' ') s++;
3007 while (!isSPACE(*s)) s++;
3008 for (s2 = s; (s2 > SvPV(PL_linestr,n_a)+2 &&
3009 (isDIGIT(s2[-1]) || strchr("._-", s2[-1]))); s2--) ;
3010 if (strnNE(s2-4,"perl",4) && strnNE(s-9,"perl",4)) /* sanity check */
3011 Perl_croak(aTHX_ "Not a perl script");
3012 while (*s == ' ' || *s == '\t') s++;
3013 /*
3014 * #! arg must be what we saw above. They can invoke it by
3015 * mentioning suidperl explicitly, but they may not add any strange
3016 * arguments beyond what #! says if they do invoke suidperl that way.
3017 */
3018 len = strlen(validarg);
3019 if (strEQ(validarg," PHOOEY ") ||
3020 strnNE(s,validarg,len) || !isSPACE(s[len]))
3021 Perl_croak(aTHX_ "Args must match #! line");
3022
3023#ifndef IAMSUID
3024 if (PL_euid != PL_uid && (PL_statbuf.st_mode & S_ISUID) &&
3025 PL_euid == PL_statbuf.st_uid)
3026 if (!PL_do_undump)
3027 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
3028FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
3029#endif /* IAMSUID */
3030
3031 if (PL_euid) { /* oops, we're not the setuid root perl */
3032 (void)PerlIO_close(PL_rsfp);
3033#ifndef IAMSUID
3034 /* try again */
3035 PerlProc_execv(Perl_form(aTHX_ "%s/sperl"PERL_FS_VER_FMT, BIN_EXP,
3036 (int)PERL_REVISION, (int)PERL_VERSION,
3037 (int)PERL_SUBVERSION), PL_origargv);
3038#endif
3039 Perl_croak(aTHX_ "Can't do setuid\n");
3040 }
3041
3042 if (PL_statbuf.st_mode & S_ISGID && PL_statbuf.st_gid != PL_egid) {
3043#ifdef HAS_SETEGID
3044 (void)setegid(PL_statbuf.st_gid);
3045#else
3046#ifdef HAS_SETREGID
3047 (void)setregid((Gid_t)-1,PL_statbuf.st_gid);
3048#else
3049#ifdef HAS_SETRESGID
3050 (void)setresgid((Gid_t)-1,PL_statbuf.st_gid,(Gid_t)-1);
3051#else
3052 PerlProc_setgid(PL_statbuf.st_gid);
3053#endif
3054#endif
3055#endif
3056 if (PerlProc_getegid() != PL_statbuf.st_gid)
3057 Perl_croak(aTHX_ "Can't do setegid!\n");
3058 }
3059 if (PL_statbuf.st_mode & S_ISUID) {
3060 if (PL_statbuf.st_uid != PL_euid)
3061#ifdef HAS_SETEUID
3062 (void)seteuid(PL_statbuf.st_uid); /* all that for this */
3063#else
3064#ifdef HAS_SETREUID
3065 (void)setreuid((Uid_t)-1,PL_statbuf.st_uid);
3066#else
3067#ifdef HAS_SETRESUID
3068 (void)setresuid((Uid_t)-1,PL_statbuf.st_uid,(Uid_t)-1);
3069#else
3070 PerlProc_setuid(PL_statbuf.st_uid);
3071#endif
3072#endif
3073#endif
3074 if (PerlProc_geteuid() != PL_statbuf.st_uid)
3075 Perl_croak(aTHX_ "Can't do seteuid!\n");
3076 }
3077 else if (PL_uid) { /* oops, mustn't run as root */
3078#ifdef HAS_SETEUID
3079 (void)seteuid((Uid_t)PL_uid);
3080#else
3081#ifdef HAS_SETREUID
3082 (void)setreuid((Uid_t)-1,(Uid_t)PL_uid);
3083#else
3084#ifdef HAS_SETRESUID
3085 (void)setresuid((Uid_t)-1,(Uid_t)PL_uid,(Uid_t)-1);
3086#else
3087 PerlProc_setuid((Uid_t)PL_uid);
3088#endif
3089#endif
3090#endif
3091 if (PerlProc_geteuid() != PL_uid)
3092 Perl_croak(aTHX_ "Can't do seteuid!\n");
3093 }
3094 init_ids();
3095 if (!cando(S_IXUSR,TRUE,&PL_statbuf))
3096 Perl_croak(aTHX_ "Permission denied\n"); /* they can't do this */
3097 }
3098#ifdef IAMSUID
3099 else if (PL_preprocess)
3100 Perl_croak(aTHX_ "-P not allowed for setuid/setgid script\n");
3101 else if (fdscript >= 0)
3102 Perl_croak(aTHX_ "fd script not allowed in suidperl\n");
3103 else
3104 Perl_croak(aTHX_ "Script is not setuid/setgid in suidperl\n");
3105
3106 /* We absolutely must clear out any saved ids here, so we */
3107 /* exec the real perl, substituting fd script for scriptname. */
3108 /* (We pass script name as "subdir" of fd, which perl will grok.) */
3109 PerlIO_rewind(PL_rsfp);
3110 PerlLIO_lseek(PerlIO_fileno(PL_rsfp),(Off_t)0,0); /* just in case rewind didn't */
3111 for (which = 1; PL_origargv[which] && PL_origargv[which] != scriptname; which++) ;
3112 if (!PL_origargv[which])
3113 Perl_croak(aTHX_ "Permission denied");
3114 PL_origargv[which] = savepv(Perl_form(aTHX_ "/dev/fd/%d/%s",
3115 PerlIO_fileno(PL_rsfp), PL_origargv[which]));
3116#if defined(HAS_FCNTL) && defined(F_SETFD)
3117 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,0); /* ensure no close-on-exec */
3118#endif
3119 PerlProc_execv(Perl_form(aTHX_ "%s/perl"PERL_FS_VER_FMT, BIN_EXP,
3120 (int)PERL_REVISION, (int)PERL_VERSION,
3121 (int)PERL_SUBVERSION), PL_origargv);/* try again */
3122 Perl_croak(aTHX_ "Can't do setuid\n");
3123#endif /* IAMSUID */
3124#else /* !DOSUID */
3125 if (PL_euid != PL_uid || PL_egid != PL_gid) { /* (suidperl doesn't exist, in fact) */
3126#ifndef SETUID_SCRIPTS_ARE_SECURE_NOW
3127 PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf); /* may be either wrapped or real suid */
3128 if ((PL_euid != PL_uid && PL_euid == PL_statbuf.st_uid && PL_statbuf.st_mode & S_ISUID)
3129 ||
3130 (PL_egid != PL_gid && PL_egid == PL_statbuf.st_gid && PL_statbuf.st_mode & S_ISGID)
3131 )
3132 if (!PL_do_undump)
3133 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
3134FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
3135#endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
3136 /* not set-id, must be wrapped */
3137 }
3138#endif /* DOSUID */
3139}
3140
3141STATIC void
3142S_find_beginning(pTHX)
3143{
3144 register char *s, *s2;
3145
3146 /* skip forward in input to the real script? */
3147
3148 forbid_setid("-x");
3149#ifdef MACOS_TRADITIONAL
3150 /* Since the Mac OS does not honor #! arguments for us, we do it ourselves */
3151
3152 while (PL_doextract || gMacPerl_AlwaysExtract) {
3153 if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == Nullch) {
3154 if (!gMacPerl_AlwaysExtract)
3155 Perl_croak(aTHX_ "No Perl script found in input\n");
3156
3157 if (PL_doextract) /* require explicit override ? */
3158 if (!OverrideExtract(PL_origfilename))
3159 Perl_croak(aTHX_ "User aborted script\n");
3160 else
3161 PL_doextract = FALSE;
3162
3163 /* Pater peccavi, file does not have #! */
3164 PerlIO_rewind(PL_rsfp);
3165
3166 break;
3167 }
3168#else
3169 while (PL_doextract) {
3170 if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == Nullch)
3171 Perl_croak(aTHX_ "No Perl script found in input\n");
3172#endif
3173 s2 = s;
3174 if (*s == '#' && s[1] == '!' && ((s = instr(s,"perl")) || (s = instr(s2,"PERL")))) {
3175 PerlIO_ungetc(PL_rsfp, '\n'); /* to keep line count right */
3176 PL_doextract = FALSE;
3177 while (*s && !(isSPACE (*s) || *s == '#')) s++;
3178 s2 = s;
3179 while (*s == ' ' || *s == '\t') s++;
3180 if (*s++ == '-') {
3181 while (isDIGIT(s2[-1]) || strchr("-._", s2[-1])) s2--;
3182 if (strnEQ(s2-4,"perl",4))
3183 /*SUPPRESS 530*/
3184 while ((s = moreswitches(s)))
3185 ;
3186 }
3187#ifdef MACOS_TRADITIONAL
3188 break;
3189#endif
3190 }
3191 }
3192}
3193
3194
3195STATIC void
3196S_init_ids(pTHX)
3197{
3198 PL_uid = PerlProc_getuid();
3199 PL_euid = PerlProc_geteuid();
3200 PL_gid = PerlProc_getgid();
3201 PL_egid = PerlProc_getegid();
3202#ifdef VMS
3203 PL_uid |= PL_gid << 16;
3204 PL_euid |= PL_egid << 16;
3205#endif
3206 PL_tainting |= (PL_uid && (PL_euid != PL_uid || PL_egid != PL_gid));
3207}
3208
3209STATIC void
3210S_forbid_setid(pTHX_ char *s)
3211{
3212 if (PL_euid != PL_uid)
3213 Perl_croak(aTHX_ "No %s allowed while running setuid", s);
3214 if (PL_egid != PL_gid)
3215 Perl_croak(aTHX_ "No %s allowed while running setgid", s);
3216}
3217
3218void
3219Perl_init_debugger(pTHX)
3220{
3221 HV *ostash = PL_curstash;
3222
3223 PL_curstash = PL_debstash;
3224 PL_dbargs = GvAV(gv_AVadd((gv_fetchpv("args", GV_ADDMULTI, SVt_PVAV))));
3225 AvREAL_off(PL_dbargs);
3226 PL_DBgv = gv_fetchpv("DB", GV_ADDMULTI, SVt_PVGV);
3227 PL_DBline = gv_fetchpv("dbline", GV_ADDMULTI, SVt_PVAV);
3228 PL_DBsub = gv_HVadd(gv_fetchpv("sub", GV_ADDMULTI, SVt_PVHV));
3229 sv_upgrade(GvSV(PL_DBsub), SVt_IV); /* IVX accessed if PERLDB_SUB_NN */
3230 PL_DBsingle = GvSV((gv_fetchpv("single", GV_ADDMULTI, SVt_PV)));
3231 sv_setiv(PL_DBsingle, 0);
3232 PL_DBtrace = GvSV((gv_fetchpv("trace", GV_ADDMULTI, SVt_PV)));
3233 sv_setiv(PL_DBtrace, 0);
3234 PL_DBsignal = GvSV((gv_fetchpv("signal", GV_ADDMULTI, SVt_PV)));
3235 sv_setiv(PL_DBsignal, 0);
3236 PL_curstash = ostash;
3237}
3238
3239#ifndef STRESS_REALLOC
3240#define REASONABLE(size) (size)
3241#else
3242#define REASONABLE(size) (1) /* unreasonable */
3243#endif
3244
3245void
3246Perl_init_stacks(pTHX)
3247{
3248 /* start with 128-item stack and 8K cxstack */
3249 PL_curstackinfo = new_stackinfo(REASONABLE(128),
3250 REASONABLE(8192/sizeof(PERL_CONTEXT) - 1));
3251 PL_curstackinfo->si_type = PERLSI_MAIN;
3252 PL_curstack = PL_curstackinfo->si_stack;
3253 PL_mainstack = PL_curstack; /* remember in case we switch stacks */
3254
3255 PL_stack_base = AvARRAY(PL_curstack);
3256 PL_stack_sp = PL_stack_base;
3257 PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
3258
3259 New(50,PL_tmps_stack,REASONABLE(128),SV*);
3260 PL_tmps_floor = -1;
3261 PL_tmps_ix = -1;
3262 PL_tmps_max = REASONABLE(128);
3263
3264 New(54,PL_markstack,REASONABLE(32),I32);
3265 PL_markstack_ptr = PL_markstack;
3266 PL_markstack_max = PL_markstack + REASONABLE(32);
3267
3268 SET_MARK_OFFSET;
3269
3270 New(54,PL_scopestack,REASONABLE(32),I32);
3271 PL_scopestack_ix = 0;
3272 PL_scopestack_max = REASONABLE(32);
3273
3274 New(54,PL_savestack,REASONABLE(128),ANY);
3275 PL_savestack_ix = 0;
3276 PL_savestack_max = REASONABLE(128);
3277
3278 New(54,PL_retstack,REASONABLE(16),OP*);
3279 PL_retstack_ix = 0;
3280 PL_retstack_max = REASONABLE(16);
3281}
3282
3283#undef REASONABLE
3284
3285STATIC void
3286S_nuke_stacks(pTHX)
3287{
3288 while (PL_curstackinfo->si_next)
3289 PL_curstackinfo = PL_curstackinfo->si_next;
3290 while (PL_curstackinfo) {
3291 PERL_SI *p = PL_curstackinfo->si_prev;
3292 /* curstackinfo->si_stack got nuked by sv_free_arenas() */
3293 Safefree(PL_curstackinfo->si_cxstack);
3294 Safefree(PL_curstackinfo);
3295 PL_curstackinfo = p;
3296 }
3297 Safefree(PL_tmps_stack);
3298 Safefree(PL_markstack);
3299 Safefree(PL_scopestack);
3300 Safefree(PL_savestack);
3301 Safefree(PL_retstack);
3302}
3303
3304STATIC void
3305S_init_lexer(pTHX)
3306{
3307 PerlIO *tmpfp;
3308 tmpfp = PL_rsfp;
3309 PL_rsfp = Nullfp;
3310 lex_start(PL_linestr);
3311 PL_rsfp = tmpfp;
3312 PL_subname = newSVpvn("main",4);
3313}
3314
3315STATIC void
3316S_init_predump_symbols(pTHX)
3317{
3318 GV *tmpgv;
3319 IO *io;
3320
3321 sv_setpvn(get_sv("\"", TRUE), " ", 1);
3322 PL_stdingv = gv_fetchpv("STDIN",TRUE, SVt_PVIO);
3323 GvMULTI_on(PL_stdingv);
3324 io = GvIOp(PL_stdingv);
3325 IoTYPE(io) = IoTYPE_RDONLY;
3326 IoIFP(io) = PerlIO_stdin();
3327 tmpgv = gv_fetchpv("stdin",TRUE, SVt_PV);
3328 GvMULTI_on(tmpgv);
3329 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
3330
3331 tmpgv = gv_fetchpv("STDOUT",TRUE, SVt_PVIO);
3332 GvMULTI_on(tmpgv);
3333 io = GvIOp(tmpgv);
3334 IoTYPE(io) = IoTYPE_WRONLY;
3335 IoOFP(io) = IoIFP(io) = PerlIO_stdout();
3336 setdefout(tmpgv);
3337 tmpgv = gv_fetchpv("stdout",TRUE, SVt_PV);
3338 GvMULTI_on(tmpgv);
3339 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
3340
3341 PL_stderrgv = gv_fetchpv("STDERR",TRUE, SVt_PVIO);
3342 GvMULTI_on(PL_stderrgv);
3343 io = GvIOp(PL_stderrgv);
3344 IoTYPE(io) = IoTYPE_WRONLY;
3345 IoOFP(io) = IoIFP(io) = PerlIO_stderr();
3346 tmpgv = gv_fetchpv("stderr",TRUE, SVt_PV);
3347 GvMULTI_on(tmpgv);
3348 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
3349
3350 PL_statname = NEWSV(66,0); /* last filename we did stat on */
3351
3352 if (PL_osname)
3353 Safefree(PL_osname);
3354 PL_osname = savepv(OSNAME);
3355}
3356
3357STATIC void
3358S_init_postdump_symbols(pTHX_ register int argc, register char **argv, register char **env)
3359{
3360 char *s;
3361 SV *sv;
3362 GV* tmpgv;
3363#ifdef NEED_ENVIRON_DUP_FOR_MODIFY
3364 char **dup_env_base = 0;
3365 int dup_env_count = 0;
3366#endif
3367
3368 argc--,argv++; /* skip name of script */
3369 if (PL_doswitches) {
3370 for (; argc > 0 && **argv == '-'; argc--,argv++) {
3371 if (!argv[0][1])
3372 break;
3373 if (argv[0][1] == '-' && !argv[0][2]) {
3374 argc--,argv++;
3375 break;
3376 }
3377 if ((s = strchr(argv[0], '='))) {
3378 *s++ = '\0';
3379 sv_setpv(GvSV(gv_fetchpv(argv[0]+1,TRUE, SVt_PV)),s);
3380 }
3381 else
3382 sv_setiv(GvSV(gv_fetchpv(argv[0]+1,TRUE, SVt_PV)),1);
3383 }
3384 }
3385 PL_toptarget = NEWSV(0,0);
3386 sv_upgrade(PL_toptarget, SVt_PVFM);
3387 sv_setpvn(PL_toptarget, "", 0);
3388 PL_bodytarget = NEWSV(0,0);
3389 sv_upgrade(PL_bodytarget, SVt_PVFM);
3390 sv_setpvn(PL_bodytarget, "", 0);
3391 PL_formtarget = PL_bodytarget;
3392
3393 TAINT;
3394 if ((tmpgv = gv_fetchpv("0",TRUE, SVt_PV))) {
3395#ifdef MACOS_TRADITIONAL
3396 /* $0 is not majick on a Mac */
3397 sv_setpv(GvSV(tmpgv),MacPerl_MPWFileName(PL_origfilename));
3398#else
3399 sv_setpv(GvSV(tmpgv),PL_origfilename);
3400 magicname("0", "0", 1);
3401#endif
3402 }
3403 if ((tmpgv = gv_fetchpv("\030",TRUE, SVt_PV)))
3404#ifdef OS2
3405 sv_setpv(GvSV(tmpgv), os2_execname(aTHX));
3406#else
3407 sv_setpv(GvSV(tmpgv),PL_origargv[0]);
3408#endif
3409 if ((PL_argvgv = gv_fetchpv("ARGV",TRUE, SVt_PVAV))) {
3410 GvMULTI_on(PL_argvgv);
3411 (void)gv_AVadd(PL_argvgv);
3412 av_clear(GvAVn(PL_argvgv));
3413 for (; argc > 0; argc--,argv++) {
3414 SV *sv = newSVpv(argv[0],0);
3415 av_push(GvAVn(PL_argvgv),sv);
3416 if (PL_widesyscalls)
3417 (void)sv_utf8_decode(sv);
3418 }
3419 }
3420 if ((PL_envgv = gv_fetchpv("ENV",TRUE, SVt_PVHV))) {
3421 HV *hv;
3422 GvMULTI_on(PL_envgv);
3423 hv = GvHVn(PL_envgv);
3424 hv_magic(hv, Nullgv, PERL_MAGIC_env);
3425#ifdef USE_ENVIRON_ARRAY
3426 /* Note that if the supplied env parameter is actually a copy
3427 of the global environ then it may now point to free'd memory
3428 if the environment has been modified since. To avoid this
3429 problem we treat env==NULL as meaning 'use the default'
3430 */
3431 if (!env)
3432 env = environ;
3433 if (env != environ)
3434 environ[0] = Nullch;
3435#ifdef NEED_ENVIRON_DUP_FOR_MODIFY
3436 {
3437 char **env_base;
3438 for (env_base = env; *env; env++)
3439 dup_env_count++;
3440 if ((dup_env_base = (char **)
3441 safesysmalloc( sizeof(char *) * (dup_env_count+1) ))) {
3442 char **dup_env;
3443 for (env = env_base, dup_env = dup_env_base;
3444 *env;
3445 env++, dup_env++) {
3446 /* With environ one needs to use safesysmalloc(). */
3447 *dup_env = safesysmalloc(strlen(*env) + 1);
3448 (void)strcpy(*dup_env, *env);
3449 }
3450 *dup_env = Nullch;
3451 env = dup_env_base;
3452 } /* else what? */
3453 }
3454#endif /* NEED_ENVIRON_DUP_FOR_MODIFY */
3455 if (env)
3456 for (; *env; env++) {
3457 if (!(s = strchr(*env,'=')))
3458 continue;
3459 *s++ = '\0';
3460#if defined(MSDOS)
3461 (void)strupr(*env);
3462#endif
3463 sv = newSVpv(s--,0);
3464 (void)hv_store(hv, *env, s - *env, sv, 0);
3465 *s = '=';
3466 }
3467#ifdef NEED_ENVIRON_DUP_FOR_MODIFY
3468 if (dup_env_base) {
3469 char **dup_env;
3470 for (dup_env = dup_env_base; *dup_env; dup_env++)
3471 safesysfree(*dup_env);
3472 safesysfree(dup_env_base);
3473 }
3474#endif /* NEED_ENVIRON_DUP_FOR_MODIFY */
3475#endif /* USE_ENVIRON_ARRAY */
3476 }
3477 TAINT_NOT;
3478 if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
3479 sv_setiv(GvSV(tmpgv), (IV)PerlProc_getpid());
3480}
3481
3482STATIC void
3483S_init_perllib(pTHX)
3484{
3485 char *s;
3486 if (!PL_tainting) {
3487#ifndef VMS
3488 s = PerlEnv_getenv("PERL5LIB");
3489 if (s)
3490 incpush(s, TRUE, TRUE);
3491 else
3492 incpush(PerlEnv_getenv("PERLLIB"), FALSE, FALSE);
3493#else /* VMS */
3494 /* Treat PERL5?LIB as a possible search list logical name -- the
3495 * "natural" VMS idiom for a Unix path string. We allow each
3496 * element to be a set of |-separated directories for compatibility.
3497 */
3498 char buf[256];
3499 int idx = 0;
3500 if (my_trnlnm("PERL5LIB",buf,0))
3501 do { incpush(buf,TRUE,TRUE); } while (my_trnlnm("PERL5LIB",buf,++idx));
3502 else
3503 while (my_trnlnm("PERLLIB",buf,idx++)) incpush(buf,FALSE,FALSE);
3504#endif /* VMS */
3505 }
3506
3507/* Use the ~-expanded versions of APPLLIB (undocumented),
3508 ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB
3509*/
3510#ifdef APPLLIB_EXP
3511 incpush(APPLLIB_EXP, TRUE, TRUE);
3512#endif
3513
3514#ifdef ARCHLIB_EXP
3515 incpush(ARCHLIB_EXP, FALSE, FALSE);
3516#endif
3517#ifdef MACOS_TRADITIONAL
3518 {
3519 struct stat tmpstatbuf;
3520 SV * privdir = NEWSV(55, 0);
3521 char * macperl = PerlEnv_getenv("MACPERL");
3522
3523 if (!macperl)
3524 macperl = "";
3525
3526 Perl_sv_setpvf(aTHX_ privdir, "%slib:", macperl);
3527 if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
3528 incpush(SvPVX(privdir), TRUE, FALSE);
3529 Perl_sv_setpvf(aTHX_ privdir, "%ssite_perl:", macperl);
3530 if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
3531 incpush(SvPVX(privdir), TRUE, FALSE);
3532
3533 SvREFCNT_dec(privdir);
3534 }
3535 if (!PL_tainting)
3536 incpush(":", FALSE, FALSE);
3537#else
3538#ifndef PRIVLIB_EXP
3539# define PRIVLIB_EXP "/usr/local/lib/perl5:/usr/local/lib/perl"
3540#endif
3541#if defined(WIN32)
3542 incpush(PRIVLIB_EXP, TRUE, FALSE);
3543#else
3544 incpush(PRIVLIB_EXP, FALSE, FALSE);
3545#endif
3546
3547#ifdef SITEARCH_EXP
3548 /* sitearch is always relative to sitelib on Windows for
3549 * DLL-based path intuition to work correctly */
3550# if !defined(WIN32)
3551 incpush(SITEARCH_EXP, FALSE, FALSE);
3552# endif
3553#endif
3554
3555#ifdef SITELIB_EXP
3556# if defined(WIN32)
3557 incpush(SITELIB_EXP, TRUE, FALSE); /* this picks up sitearch as well */
3558# else
3559 incpush(SITELIB_EXP, FALSE, FALSE);
3560# endif
3561#endif
3562
3563#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
3564 incpush(SITELIB_STEM, FALSE, TRUE);
3565#endif
3566
3567#ifdef PERL_VENDORARCH_EXP
3568 /* vendorarch is always relative to vendorlib on Windows for
3569 * DLL-based path intuition to work correctly */
3570# if !defined(WIN32)
3571 incpush(PERL_VENDORARCH_EXP, FALSE, FALSE);
3572# endif
3573#endif
3574
3575#ifdef PERL_VENDORLIB_EXP
3576# if defined(WIN32)
3577 incpush(PERL_VENDORLIB_EXP, TRUE, FALSE); /* this picks up vendorarch as well */
3578# else
3579 incpush(PERL_VENDORLIB_EXP, FALSE, FALSE);
3580# endif
3581#endif
3582
3583#ifdef PERL_VENDORLIB_STEM /* Search for version-specific dirs below here */
3584 incpush(PERL_VENDORLIB_STEM, FALSE, TRUE);
3585#endif
3586
3587#ifdef PERL_OTHERLIBDIRS
3588 incpush(PERL_OTHERLIBDIRS, TRUE, TRUE);
3589#endif
3590
3591 if (!PL_tainting)
3592 incpush(".", FALSE, FALSE);
3593#endif /* MACOS_TRADITIONAL */
3594}
3595
3596#if defined(DOSISH) || defined(EPOC)
3597# define PERLLIB_SEP ';'
3598#else
3599# if defined(VMS)
3600# define PERLLIB_SEP '|'
3601# else
3602# if defined(MACOS_TRADITIONAL)
3603# define PERLLIB_SEP ','
3604# else
3605# define PERLLIB_SEP ':'
3606# endif
3607# endif
3608#endif
3609#ifndef PERLLIB_MANGLE
3610# define PERLLIB_MANGLE(s,n) (s)
3611#endif
3612
3613STATIC void
3614S_incpush(pTHX_ char *p, int addsubdirs, int addoldvers)
3615{
3616 SV *subdir = Nullsv;
3617
3618 if (!p || !*p)
3619 return;
3620
3621 if (addsubdirs || addoldvers) {
3622 subdir = sv_newmortal();
3623 }
3624
3625 /* Break at all separators */
3626 while (p && *p) {
3627 SV *libdir = NEWSV(55,0);
3628 char *s;
3629
3630 /* skip any consecutive separators */
3631 while ( *p == PERLLIB_SEP ) {
3632 /* Uncomment the next line for PATH semantics */
3633 /* av_push(GvAVn(PL_incgv), newSVpvn(".", 1)); */
3634 p++;
3635 }
3636
3637 if ( (s = strchr(p, PERLLIB_SEP)) != Nullch ) {
3638 sv_setpvn(libdir, PERLLIB_MANGLE(p, (STRLEN)(s - p)),
3639 (STRLEN)(s - p));
3640 p = s + 1;
3641 }
3642 else {
3643 sv_setpv(libdir, PERLLIB_MANGLE(p, 0));
3644 p = Nullch; /* break out */
3645 }
3646#ifdef MACOS_TRADITIONAL
3647 if (!strchr(SvPVX(libdir), ':'))
3648 sv_insert(libdir, 0, 0, ":", 1);
3649 if (SvPVX(libdir)[SvCUR(libdir)-1] != ':')
3650 sv_catpv(libdir, ":");
3651#endif
3652
3653 /*
3654 * BEFORE pushing libdir onto @INC we may first push version- and
3655 * archname-specific sub-directories.
3656 */
3657 if (addsubdirs || addoldvers) {
3658#ifdef PERL_INC_VERSION_LIST
3659 /* Configure terminates PERL_INC_VERSION_LIST with a NULL */
3660 const char *incverlist[] = { PERL_INC_VERSION_LIST };
3661 const char **incver;
3662#endif
3663 struct stat tmpstatbuf;
3664#ifdef VMS
3665 char *unix;
3666 STRLEN len;
3667
3668 if ((unix = tounixspec_ts(SvPV(libdir,len),Nullch)) != Nullch) {
3669 len = strlen(unix);
3670 while (unix[len-1] == '/') len--; /* Cosmetic */
3671 sv_usepvn(libdir,unix,len);
3672 }
3673 else
3674 PerlIO_printf(Perl_error_log,
3675 "Failed to unixify @INC element \"%s\"\n",
3676 SvPV(libdir,len));
3677#endif
3678 if (addsubdirs) {
3679#ifdef MACOS_TRADITIONAL
3680#define PERL_AV_SUFFIX_FMT ""
3681#define PERL_ARCH_FMT "%s:"
3682#define PERL_ARCH_FMT_PATH PERL_FS_VER_FMT PERL_AV_SUFFIX_FMT
3683#else
3684#define PERL_AV_SUFFIX_FMT "/"
3685#define PERL_ARCH_FMT "/%s"
3686#define PERL_ARCH_FMT_PATH PERL_AV_SUFFIX_FMT PERL_FS_VER_FMT
3687#endif
3688 /* .../version/archname if -d .../version/archname */
3689 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH PERL_ARCH_FMT,
3690 libdir,
3691 (int)PERL_REVISION, (int)PERL_VERSION,
3692 (int)PERL_SUBVERSION, ARCHNAME);
3693 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3694 S_ISDIR(tmpstatbuf.st_mode))
3695 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3696
3697 /* .../version if -d .../version */
3698 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH, libdir,
3699 (int)PERL_REVISION, (int)PERL_VERSION,
3700 (int)PERL_SUBVERSION);
3701 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3702 S_ISDIR(tmpstatbuf.st_mode))
3703 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3704
3705 /* .../archname if -d .../archname */
3706 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, ARCHNAME);
3707 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3708 S_ISDIR(tmpstatbuf.st_mode))
3709 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3710 }
3711
3712#ifdef PERL_INC_VERSION_LIST
3713 if (addoldvers) {
3714 for (incver = incverlist; *incver; incver++) {
3715 /* .../xxx if -d .../xxx */
3716 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, *incver);
3717 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3718 S_ISDIR(tmpstatbuf.st_mode))
3719 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3720 }
3721 }
3722#endif
3723 }
3724
3725 /* finally push this lib directory on the end of @INC */
3726 av_push(GvAVn(PL_incgv), libdir);
3727 }
3728}
3729
3730#ifdef USE_5005THREADS
3731STATIC struct perl_thread *
3732S_init_main_thread(pTHX)
3733{
3734#if !defined(PERL_IMPLICIT_CONTEXT)
3735 struct perl_thread *thr;
3736#endif
3737 XPV *xpv;
3738
3739 Newz(53, thr, 1, struct perl_thread);
3740 PL_curcop = &PL_compiling;
3741 thr->interp = PERL_GET_INTERP;
3742 thr->cvcache = newHV();
3743 thr->threadsv = newAV();
3744 /* thr->threadsvp is set when find_threadsv is called */
3745 thr->specific = newAV();
3746 thr->flags = THRf_R_JOINABLE;
3747 MUTEX_INIT(&thr->mutex);
3748 /* Handcraft thrsv similarly to mess_sv */
3749 New(53, PL_thrsv, 1, SV);
3750 Newz(53, xpv, 1, XPV);
3751 SvFLAGS(PL_thrsv) = SVt_PV;
3752 SvANY(PL_thrsv) = (void*)xpv;
3753 SvREFCNT(PL_thrsv) = 1 << 30; /* practically infinite */
3754 SvPVX(PL_thrsv) = (char*)thr;
3755 SvCUR_set(PL_thrsv, sizeof(thr));
3756 SvLEN_set(PL_thrsv, sizeof(thr));
3757 *SvEND(PL_thrsv) = '\0'; /* in the trailing_nul field */
3758 thr->oursv = PL_thrsv;
3759 PL_chopset = " \n-";
3760 PL_dumpindent = 4;
3761
3762 MUTEX_LOCK(&PL_threads_mutex);
3763 PL_nthreads++;
3764 thr->tid = 0;
3765 thr->next = thr;
3766 thr->prev = thr;
3767 thr->thr_done = 0;
3768 MUTEX_UNLOCK(&PL_threads_mutex);
3769
3770#ifdef HAVE_THREAD_INTERN
3771 Perl_init_thread_intern(thr);
3772#endif
3773
3774#ifdef SET_THREAD_SELF
3775 SET_THREAD_SELF(thr);
3776#else
3777 thr->self = pthread_self();
3778#endif /* SET_THREAD_SELF */
3779 PERL_SET_THX(thr);
3780
3781 /*
3782 * These must come after the thread self setting
3783 * because sv_setpvn does SvTAINT and the taint
3784 * fields thread selfness being set.
3785 */
3786 PL_toptarget = NEWSV(0,0);
3787 sv_upgrade(PL_toptarget, SVt_PVFM);
3788 sv_setpvn(PL_toptarget, "", 0);
3789 PL_bodytarget = NEWSV(0,0);
3790 sv_upgrade(PL_bodytarget, SVt_PVFM);
3791 sv_setpvn(PL_bodytarget, "", 0);
3792 PL_formtarget = PL_bodytarget;
3793 thr->errsv = newSVpvn("", 0);
3794 (void) find_threadsv("@"); /* Ensure $@ is initialised early */
3795
3796 PL_maxscream = -1;
3797 PL_peepp = MEMBER_TO_FPTR(Perl_peep);
3798 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3799 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3800 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3801 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3802 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3803 PL_regindent = 0;
3804 PL_reginterp_cnt = 0;
3805
3806 return thr;
3807}
3808#endif /* USE_5005THREADS */
3809
3810void
3811Perl_call_list(pTHX_ I32 oldscope, AV *paramList)
3812{
3813 SV *atsv;
3814 line_t oldline = CopLINE(PL_curcop);
3815 CV *cv;
3816 STRLEN len;
3817 int ret;
3818 dJMPENV;
3819
3820 while (AvFILL(paramList) >= 0) {
3821 cv = (CV*)av_shift(paramList);
3822 if (PL_savebegin && (paramList == PL_beginav)) {
3823 /* save PL_beginav for compiler */
3824 if (! PL_beginav_save)
3825 PL_beginav_save = newAV();
3826 av_push(PL_beginav_save, (SV*)cv);
3827 } else {
3828 SAVEFREESV(cv);
3829 }
3830#ifdef PERL_FLEXIBLE_EXCEPTIONS
3831 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_list_body), cv);
3832#else
3833 JMPENV_PUSH(ret);
3834#endif
3835 switch (ret) {
3836 case 0:
3837#ifndef PERL_FLEXIBLE_EXCEPTIONS
3838 call_list_body(cv);
3839#endif
3840 atsv = ERRSV;
3841 (void)SvPV(atsv, len);
3842 if (len) {
3843 STRLEN n_a;
3844 PL_curcop = &PL_compiling;
3845 CopLINE_set(PL_curcop, oldline);
3846 if (paramList == PL_beginav)
3847 sv_catpv(atsv, "BEGIN failed--compilation aborted");
3848 else
3849 Perl_sv_catpvf(aTHX_ atsv,
3850 "%s failed--call queue aborted",
3851 paramList == PL_checkav ? "CHECK"
3852 : paramList == PL_initav ? "INIT"
3853 : "END");
3854 while (PL_scopestack_ix > oldscope)
3855 LEAVE;
3856 JMPENV_POP;
3857 Perl_croak(aTHX_ "%s", SvPVx(atsv, n_a));
3858 }
3859 break;
3860 case 1:
3861 STATUS_ALL_FAILURE;
3862 /* FALL THROUGH */
3863 case 2:
3864 /* my_exit() was called */
3865 while (PL_scopestack_ix > oldscope)
3866 LEAVE;
3867 FREETMPS;
3868 PL_curstash = PL_defstash;
3869 PL_curcop = &PL_compiling;
3870 CopLINE_set(PL_curcop, oldline);
3871 JMPENV_POP;
3872 if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED)) {
3873 if (paramList == PL_beginav)
3874 Perl_croak(aTHX_ "BEGIN failed--compilation aborted");
3875 else
3876 Perl_croak(aTHX_ "%s failed--call queue aborted",
3877 paramList == PL_checkav ? "CHECK"
3878 : paramList == PL_initav ? "INIT"
3879 : "END");
3880 }
3881 my_exit_jump();
3882 /* NOTREACHED */
3883 case 3:
3884 if (PL_restartop) {
3885 PL_curcop = &PL_compiling;
3886 CopLINE_set(PL_curcop, oldline);
3887 JMPENV_JUMP(3);
3888 }
3889 PerlIO_printf(Perl_error_log, "panic: restartop\n");
3890 FREETMPS;
3891 break;
3892 }
3893 JMPENV_POP;
3894 }
3895}
3896
3897#ifdef PERL_FLEXIBLE_EXCEPTIONS
3898STATIC void *
3899S_vcall_list_body(pTHX_ va_list args)
3900{
3901 CV *cv = va_arg(args, CV*);
3902 return call_list_body(cv);
3903}
3904#endif
3905
3906STATIC void *
3907S_call_list_body(pTHX_ CV *cv)
3908{
3909 PUSHMARK(PL_stack_sp);
3910 call_sv((SV*)cv, G_EVAL|G_DISCARD);
3911 return NULL;
3912}
3913
3914void
3915Perl_my_exit(pTHX_ U32 status)
3916{
3917 DEBUG_S(PerlIO_printf(Perl_debug_log, "my_exit: thread %p, status %lu\n",
3918 thr, (unsigned long) status));
3919 switch (status) {
3920 case 0:
3921 STATUS_ALL_SUCCESS;
3922 break;
3923 case 1:
3924 STATUS_ALL_FAILURE;
3925 break;
3926 default:
3927 STATUS_NATIVE_SET(status);
3928 break;
3929 }
3930 my_exit_jump();
3931}
3932
3933void
3934Perl_my_failure_exit(pTHX)
3935{
3936#ifdef VMS
3937 if (vaxc$errno & 1) {
3938 if (STATUS_NATIVE & 1) /* fortuitiously includes "-1" */
3939 STATUS_NATIVE_SET(44);
3940 }
3941 else {
3942 if (!vaxc$errno && errno) /* unlikely */
3943 STATUS_NATIVE_SET(44);
3944 else
3945 STATUS_NATIVE_SET(vaxc$errno);
3946 }
3947#else
3948 int exitstatus;
3949 if (errno & 255)
3950 STATUS_POSIX_SET(errno);
3951 else {
3952 exitstatus = STATUS_POSIX >> 8;
3953 if (exitstatus & 255)
3954 STATUS_POSIX_SET(exitstatus);
3955 else
3956 STATUS_POSIX_SET(255);
3957 }
3958#endif
3959 my_exit_jump();
3960}
3961
3962STATIC void
3963S_my_exit_jump(pTHX)
3964{
3965 register PERL_CONTEXT *cx;
3966 I32 gimme;
3967 SV **newsp;
3968
3969 if (PL_e_script) {
3970 SvREFCNT_dec(PL_e_script);
3971 PL_e_script = Nullsv;
3972 }
3973
3974 POPSTACK_TO(PL_mainstack);
3975 if (cxstack_ix >= 0) {
3976 if (cxstack_ix > 0)
3977 dounwind(0);
3978 POPBLOCK(cx,PL_curpm);
3979 LEAVE;
3980 }
3981
3982 JMPENV_JUMP(2);
3983}
3984
3985static I32
3986read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen)
3987{
3988 char *p, *nl;
3989 p = SvPVX(PL_e_script);
3990 nl = strchr(p, '\n');
3991 nl = (nl) ? nl+1 : SvEND(PL_e_script);
3992 if (nl-p == 0) {
3993 filter_del(read_e_script);
3994 return 0;
3995 }
3996 sv_catpvn(buf_sv, p, nl-p);
3997 sv_chop(PL_e_script, nl);
3998 return 1;
3999}