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