3 * Copyright (c) 1987-2001 Larry Wall
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.
11 * "A ship then new they built for him/of mithril and of elven glass" --Bilbo
15 #define PERL_IN_PERL_C
17 #include "patchlevel.h" /* for local_patches */
19 /* XXX If this causes problems, set i_unistd=undef in the hint file. */
24 #if !defined(STANDARD_C) && !defined(HAS_GETENV_PROTOTYPE)
25 char *getenv (char *); /* Usually in <stdlib.h> */
28 static I32 read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen);
36 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
42 #if defined(USE_5005THREADS)
43 # define INIT_TLS_AND_INTERP \
45 if (!PL_curinterp) { \
46 PERL_SET_INTERP(my_perl); \
52 # if defined(USE_ITHREADS)
53 # define INIT_TLS_AND_INTERP \
55 if (!PL_curinterp) { \
56 PERL_SET_INTERP(my_perl); \
59 PERL_SET_THX(my_perl); \
63 PERL_SET_THX(my_perl); \
67 # define INIT_TLS_AND_INTERP \
69 if (!PL_curinterp) { \
70 PERL_SET_INTERP(my_perl); \
72 PERL_SET_THX(my_perl); \
77 #ifdef PERL_IMPLICIT_SYS
79 perl_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)
85 PerlInterpreter *my_perl;
86 /* New() needs interpreter, so call malloc() instead */
87 my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
89 Zero(my_perl, 1, PerlInterpreter);
105 =for apidoc perl_alloc
107 Allocates a new Perl interpreter. See L<perlembed>.
115 PerlInterpreter *my_perl;
117 /* New() needs interpreter, so call malloc() instead */
118 my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
121 Zero(my_perl, 1, PerlInterpreter);
124 #endif /* PERL_IMPLICIT_SYS */
127 =for apidoc perl_construct
129 Initializes a new Perl interpreter. See L<perlembed>.
135 perl_construct(pTHXx)
137 #ifdef USE_5005THREADS
139 struct perl_thread *thr = NULL;
140 #endif /* FAKE_THREADS */
141 #endif /* USE_5005THREADS */
145 PL_perl_destruct_level = 1;
147 if (PL_perl_destruct_level > 0)
151 /* Init the real globals (and main thread)? */
153 #ifdef USE_5005THREADS
154 MUTEX_INIT(&PL_sv_mutex);
156 * Safe to use basic SV functions from now on (though
157 * not things like mortals or tainting yet).
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 */
167 MUTEX_INIT(&PL_cred_mutex);
168 MUTEX_INIT(&PL_sv_lock_mutex);
169 MUTEX_INIT(&PL_fdpid_mutex);
171 thr = init_main_thread();
172 #endif /* USE_5005THREADS */
174 #ifdef PERL_FLEXIBLE_EXCEPTIONS
175 PL_protect = MEMBER_TO_FPTR(Perl_default_protect); /* for exceptions */
178 PL_curcop = &PL_compiling; /* needed by ckWARN, right away */
180 PL_linestr = NEWSV(65,79);
181 sv_upgrade(PL_linestr,SVt_PVIV);
183 if (!SvREADONLY(&PL_sv_undef)) {
184 /* set read-only and try to insure than we wont see REFCNT==0
187 SvREADONLY_on(&PL_sv_undef);
188 SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
190 sv_setpv(&PL_sv_no,PL_No);
192 SvREADONLY_on(&PL_sv_no);
193 SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
195 sv_setpv(&PL_sv_yes,PL_Yes);
197 SvREADONLY_on(&PL_sv_yes);
198 SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;
201 PL_sighandlerp = Perl_sighandler;
202 PL_pidstatus = newHV();
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
210 (void)PerlIO_close(PerlIO_importFILE(stdaux, 0));
211 (void)PerlIO_close(PerlIO_importFILE(stdprn, 0));
215 PL_nrs = newSVpvn("\n", 1);
216 PL_rs = SvREFCNT_inc(PL_nrs);
221 PL_lex_state = LEX_NOTPARSING;
227 SET_NUMERIC_STANDARD();
231 PL_patchlevel = NEWSV(0,4);
232 (void)SvUPGRADE(PL_patchlevel, SVt_PVNV);
233 if (PERL_REVISION > 127 || PERL_VERSION > 127 || PERL_SUBVERSION > 127)
234 SvGROW(PL_patchlevel, UTF8_MAXLEN*3+1);
235 s = (U8*)SvPVX(PL_patchlevel);
236 /* Build version strings using "native" characters */
237 s = uvchr_to_utf8(s, (UV)PERL_REVISION);
238 s = uvchr_to_utf8(s, (UV)PERL_VERSION);
239 s = uvchr_to_utf8(s, (UV)PERL_SUBVERSION);
241 SvCUR_set(PL_patchlevel, s - (U8*)SvPVX(PL_patchlevel));
242 SvPOK_on(PL_patchlevel);
243 SvNVX(PL_patchlevel) = (NV)PERL_REVISION
244 + ((NV)PERL_VERSION / (NV)1000)
245 #if defined(PERL_SUBVERSION) && PERL_SUBVERSION > 0
246 + ((NV)PERL_SUBVERSION / (NV)1000000)
249 SvNOK_on(PL_patchlevel); /* dual valued */
250 SvUTF8_on(PL_patchlevel);
251 SvREADONLY_on(PL_patchlevel);
254 #if defined(LOCAL_PATCH_COUNT)
255 PL_localpatches = local_patches; /* For possible -v */
258 #ifdef HAVE_INTERP_INTERN
262 PerlIO_init(); /* Hook to IO system */
264 PL_fdpid = newAV(); /* for remembering popen pids by fd */
265 PL_modglobal = newHV(); /* pointers to per-interpreter module globals */
266 PL_errors = newSVpvn("",0);
268 PL_regex_padav = newAV();
269 av_push(PL_regex_padav,(SV*)newAV()); /* First entry is an array of empty elements */
270 PL_regex_pad = AvARRAY(PL_regex_padav);
272 #ifdef USE_REENTRANT_API
273 New(31337, PL_reentrant_buffer,1, REBUF);
274 New(31337, PL_reentrant_buffer->tmbuff,1, struct tm);
280 =for apidoc perl_destruct
282 Shuts down a Perl interpreter. See L<perlembed>.
290 volatile int destruct_level; /* 0=none, 1=full, 2=full with checks */
292 #ifdef USE_5005THREADS
295 #endif /* USE_5005THREADS */
297 /* wait for all pseudo-forked children to finish */
298 PERL_WAIT_FOR_CHILDREN;
300 #ifdef USE_5005THREADS
302 /* Pass 1 on any remaining threads: detach joinables, join zombies */
304 MUTEX_LOCK(&PL_threads_mutex);
305 DEBUG_S(PerlIO_printf(Perl_debug_log,
306 "perl_destruct: waiting for %d threads...\n",
308 for (t = thr->next; t != thr; t = t->next) {
309 MUTEX_LOCK(&t->mutex);
310 switch (ThrSTATE(t)) {
313 DEBUG_S(PerlIO_printf(Perl_debug_log,
314 "perl_destruct: joining zombie %p\n", t));
315 ThrSETSTATE(t, THRf_DEAD);
316 MUTEX_UNLOCK(&t->mutex);
319 * The SvREFCNT_dec below may take a long time (e.g. av
320 * may contain an object scalar whose destructor gets
321 * called) so we have to unlock threads_mutex and start
324 MUTEX_UNLOCK(&PL_threads_mutex);
326 SvREFCNT_dec((SV*)av);
327 DEBUG_S(PerlIO_printf(Perl_debug_log,
328 "perl_destruct: joined zombie %p OK\n", t));
330 case THRf_R_JOINABLE:
331 DEBUG_S(PerlIO_printf(Perl_debug_log,
332 "perl_destruct: detaching thread %p\n", t));
333 ThrSETSTATE(t, THRf_R_DETACHED);
335 * We unlock threads_mutex and t->mutex in the opposite order
336 * from which we locked them just so that DETACH won't
337 * deadlock if it panics. It's only a breach of good style
338 * not a bug since they are unlocks not locks.
340 MUTEX_UNLOCK(&PL_threads_mutex);
342 MUTEX_UNLOCK(&t->mutex);
345 DEBUG_S(PerlIO_printf(Perl_debug_log,
346 "perl_destruct: ignoring %p (state %u)\n",
348 MUTEX_UNLOCK(&t->mutex);
349 /* fall through and out */
352 /* We leave the above "Pass 1" loop with threads_mutex still locked */
354 /* Pass 2 on remaining threads: wait for the thread count to drop to one */
355 while (PL_nthreads > 1)
357 DEBUG_S(PerlIO_printf(Perl_debug_log,
358 "perl_destruct: final wait for %d threads\n",
360 COND_WAIT(&PL_nthreads_cond, &PL_threads_mutex);
362 /* At this point, we're the last thread */
363 MUTEX_UNLOCK(&PL_threads_mutex);
364 DEBUG_S(PerlIO_printf(Perl_debug_log, "perl_destruct: armageddon has arrived\n"));
365 MUTEX_DESTROY(&PL_threads_mutex);
366 COND_DESTROY(&PL_nthreads_cond);
368 #endif /* !defined(FAKE_THREADS) */
369 #endif /* USE_5005THREADS */
371 destruct_level = PL_perl_destruct_level;
375 if ((s = PerlEnv_getenv("PERL_DESTRUCT_LEVEL"))) {
377 if (destruct_level < i)
384 if(PL_exit_flags & PERL_EXIT_DESTRUCT_END) {
389 if (PL_endav && !PL_minus_c)
390 call_list(PL_scopestack_ix, PL_endav);
396 /* We must account for everything. */
398 /* Destroy the main CV and syntax tree */
400 PL_curpad = AvARRAY(PL_comppad);
401 op_free(PL_main_root);
402 PL_main_root = Nullop;
404 PL_curcop = &PL_compiling;
405 PL_main_start = Nullop;
406 SvREFCNT_dec(PL_main_cv);
410 /* Tell PerlIO we are about to tear things apart in case
411 we have layers which are using resources that should
415 PerlIO_destruct(aTHX);
417 if (PL_sv_objcount) {
419 * Try to destruct global references. We do this first so that the
420 * destructors and destructees still exist. Some sv's might remain.
421 * Non-referenced objects are on their own.
426 /* unhook hooks which will soon be, or use, destroyed data */
427 SvREFCNT_dec(PL_warnhook);
428 PL_warnhook = Nullsv;
429 SvREFCNT_dec(PL_diehook);
432 /* call exit list functions */
433 while (PL_exitlistlen-- > 0)
434 PL_exitlist[PL_exitlistlen].fn(aTHX_ PL_exitlist[PL_exitlistlen].ptr);
436 Safefree(PL_exitlist);
438 if (destruct_level == 0){
440 DEBUG_P(debprofdump());
442 /* The exit() function will do everything that needs doing. */
443 return STATUS_NATIVE_EXPORT;;
446 /* jettison our possibly duplicated environment */
448 #ifdef USE_ENVIRON_ARRAY
449 if (environ != PL_origenviron) {
452 for (i = 0; environ[i]; i++)
453 safesysfree(environ[i]);
454 /* Must use safesysfree() when working with environ. */
455 safesysfree(environ);
457 environ = PL_origenviron;
462 /* the syntax tree is shared between clones
463 * so op_free(PL_main_root) only ReREFCNT_dec's
464 * REGEXPs in the parent interpreter
465 * we need to manually ReREFCNT_dec for the clones
468 I32 i = AvFILLp(PL_regex_padav) + 1;
469 SV **ary = AvARRAY(PL_regex_padav);
473 REGEXP *re = INT2PTR(REGEXP *,SvIVX(resv));
475 if (SvFLAGS(resv) & SVf_BREAK) {
476 /* this is PL_reg_curpm, already freed
477 * flag is set in regexec.c:S_regtry
479 SvFLAGS(resv) &= ~SVf_BREAK;
481 else if(SvREPADTMP(resv)) {
482 SvREPADTMP_off(resv);
489 SvREFCNT_dec(PL_regex_padav);
490 PL_regex_padav = Nullav;
494 /* loosen bonds of global variables */
497 (void)PerlIO_close(PL_rsfp);
501 /* Filters for program text */
502 SvREFCNT_dec(PL_rsfp_filters);
503 PL_rsfp_filters = Nullav;
506 PL_preprocess = FALSE;
512 PL_doswitches = FALSE;
513 PL_dowarn = G_WARN_OFF;
514 PL_doextract = FALSE;
515 PL_sawampersand = FALSE; /* must save all match strings */
518 Safefree(PL_inplace);
520 SvREFCNT_dec(PL_patchlevel);
523 SvREFCNT_dec(PL_e_script);
524 PL_e_script = Nullsv;
527 while (--PL_origargc >= 0) {
528 Safefree(PL_origargv[PL_origargc]);
530 Safefree(PL_origargv);
532 /* magical thingies */
534 SvREFCNT_dec(PL_ofs_sv); /* $, */
537 SvREFCNT_dec(PL_ors_sv); /* $\ */
540 SvREFCNT_dec(PL_rs); /* $/ */
543 SvREFCNT_dec(PL_nrs); /* $/ helper */
546 PL_multiline = 0; /* $* */
547 Safefree(PL_osname); /* $^O */
550 SvREFCNT_dec(PL_statname);
551 PL_statname = Nullsv;
554 /* defgv, aka *_ should be taken care of elsewhere */
556 /* clean up after study() */
557 SvREFCNT_dec(PL_lastscream);
558 PL_lastscream = Nullsv;
559 Safefree(PL_screamfirst);
561 Safefree(PL_screamnext);
565 Safefree(PL_efloatbuf);
566 PL_efloatbuf = Nullch;
569 /* startup and shutdown function lists */
570 SvREFCNT_dec(PL_beginav);
571 SvREFCNT_dec(PL_endav);
572 SvREFCNT_dec(PL_checkav);
573 SvREFCNT_dec(PL_initav);
579 /* shortcuts just get cleared */
585 PL_argvoutgv = Nullgv;
587 PL_stderrgv = Nullgv;
588 PL_last_in_gv = Nullgv;
590 PL_debstash = Nullhv;
592 /* reset so print() ends up where we expect */
595 SvREFCNT_dec(PL_argvout_stack);
596 PL_argvout_stack = Nullav;
598 SvREFCNT_dec(PL_modglobal);
599 PL_modglobal = Nullhv;
600 SvREFCNT_dec(PL_preambleav);
601 PL_preambleav = Nullav;
602 SvREFCNT_dec(PL_subname);
604 SvREFCNT_dec(PL_linestr);
606 SvREFCNT_dec(PL_pidstatus);
607 PL_pidstatus = Nullhv;
608 SvREFCNT_dec(PL_toptarget);
609 PL_toptarget = Nullsv;
610 SvREFCNT_dec(PL_bodytarget);
611 PL_bodytarget = Nullsv;
612 PL_formtarget = Nullsv;
614 /* free locale stuff */
615 #ifdef USE_LOCALE_COLLATE
616 Safefree(PL_collation_name);
617 PL_collation_name = Nullch;
620 #ifdef USE_LOCALE_NUMERIC
621 Safefree(PL_numeric_name);
622 PL_numeric_name = Nullch;
623 SvREFCNT_dec(PL_numeric_radix_sv);
626 /* clear utf8 character classes */
627 SvREFCNT_dec(PL_utf8_alnum);
628 SvREFCNT_dec(PL_utf8_alnumc);
629 SvREFCNT_dec(PL_utf8_ascii);
630 SvREFCNT_dec(PL_utf8_alpha);
631 SvREFCNT_dec(PL_utf8_space);
632 SvREFCNT_dec(PL_utf8_cntrl);
633 SvREFCNT_dec(PL_utf8_graph);
634 SvREFCNT_dec(PL_utf8_digit);
635 SvREFCNT_dec(PL_utf8_upper);
636 SvREFCNT_dec(PL_utf8_lower);
637 SvREFCNT_dec(PL_utf8_print);
638 SvREFCNT_dec(PL_utf8_punct);
639 SvREFCNT_dec(PL_utf8_xdigit);
640 SvREFCNT_dec(PL_utf8_mark);
641 SvREFCNT_dec(PL_utf8_toupper);
642 SvREFCNT_dec(PL_utf8_tolower);
643 PL_utf8_alnum = Nullsv;
644 PL_utf8_alnumc = Nullsv;
645 PL_utf8_ascii = Nullsv;
646 PL_utf8_alpha = Nullsv;
647 PL_utf8_space = Nullsv;
648 PL_utf8_cntrl = Nullsv;
649 PL_utf8_graph = Nullsv;
650 PL_utf8_digit = Nullsv;
651 PL_utf8_upper = Nullsv;
652 PL_utf8_lower = Nullsv;
653 PL_utf8_print = Nullsv;
654 PL_utf8_punct = Nullsv;
655 PL_utf8_xdigit = Nullsv;
656 PL_utf8_mark = Nullsv;
657 PL_utf8_toupper = Nullsv;
658 PL_utf8_totitle = Nullsv;
659 PL_utf8_tolower = Nullsv;
661 if (!specialWARN(PL_compiling.cop_warnings))
662 SvREFCNT_dec(PL_compiling.cop_warnings);
663 PL_compiling.cop_warnings = Nullsv;
664 if (!specialCopIO(PL_compiling.cop_io))
665 SvREFCNT_dec(PL_compiling.cop_io);
666 PL_compiling.cop_io = Nullsv;
668 Safefree(CopFILE(&PL_compiling));
669 CopFILE(&PL_compiling) = Nullch;
670 Safefree(CopSTASHPV(&PL_compiling));
672 SvREFCNT_dec(CopFILEGV(&PL_compiling));
673 CopFILEGV(&PL_compiling) = Nullgv;
674 /* cop_stash is not refcounted */
677 /* Prepare to destruct main symbol table. */
682 SvREFCNT_dec(PL_curstname);
683 PL_curstname = Nullsv;
685 /* clear queued errors */
686 SvREFCNT_dec(PL_errors);
690 if (destruct_level >= 2 && ckWARN_d(WARN_INTERNAL)) {
691 if (PL_scopestack_ix != 0)
692 Perl_warner(aTHX_ WARN_INTERNAL,
693 "Unbalanced scopes: %ld more ENTERs than LEAVEs\n",
694 (long)PL_scopestack_ix);
695 if (PL_savestack_ix != 0)
696 Perl_warner(aTHX_ WARN_INTERNAL,
697 "Unbalanced saves: %ld more saves than restores\n",
698 (long)PL_savestack_ix);
699 if (PL_tmps_floor != -1)
700 Perl_warner(aTHX_ WARN_INTERNAL,"Unbalanced tmps: %ld more allocs than frees\n",
701 (long)PL_tmps_floor + 1);
702 if (cxstack_ix != -1)
703 Perl_warner(aTHX_ WARN_INTERNAL,"Unbalanced context: %ld more PUSHes than POPs\n",
704 (long)cxstack_ix + 1);
707 /* Now absolutely destruct everything, somehow or other, loops or no. */
708 SvFLAGS(PL_fdpid) |= SVTYPEMASK; /* don't clean out pid table now */
709 SvFLAGS(PL_strtab) |= SVTYPEMASK; /* don't clean out strtab now */
711 /* the 2 is for PL_fdpid and PL_strtab */
712 while (PL_sv_count > 2 && sv_clean_all())
715 SvFLAGS(PL_fdpid) &= ~SVTYPEMASK;
716 SvFLAGS(PL_fdpid) |= SVt_PVAV;
717 SvFLAGS(PL_strtab) &= ~SVTYPEMASK;
718 SvFLAGS(PL_strtab) |= SVt_PVHV;
720 AvREAL_off(PL_fdpid); /* no surviving entries */
721 SvREFCNT_dec(PL_fdpid); /* needed in io_close() */
724 #ifdef HAVE_INTERP_INTERN
728 /* Destruct the global string table. */
730 /* Yell and reset the HeVAL() slots that are still holding refcounts,
731 * so that sv_free() won't fail on them.
739 max = HvMAX(PL_strtab);
740 array = HvARRAY(PL_strtab);
743 if (hent && ckWARN_d(WARN_INTERNAL)) {
744 Perl_warner(aTHX_ WARN_INTERNAL,
745 "Unbalanced string table refcount: (%d) for \"%s\"",
746 HeVAL(hent) - Nullsv, HeKEY(hent));
747 HeVAL(hent) = Nullsv;
757 SvREFCNT_dec(PL_strtab);
760 /* free the pointer table used for cloning */
761 ptr_table_free(PL_ptr_table);
764 /* free special SVs */
766 SvREFCNT(&PL_sv_yes) = 0;
767 sv_clear(&PL_sv_yes);
768 SvANY(&PL_sv_yes) = NULL;
769 SvFLAGS(&PL_sv_yes) = 0;
771 SvREFCNT(&PL_sv_no) = 0;
773 SvANY(&PL_sv_no) = NULL;
774 SvFLAGS(&PL_sv_no) = 0;
776 SvREFCNT(&PL_sv_undef) = 0;
777 SvREADONLY_off(&PL_sv_undef);
779 if (PL_sv_count != 0 && ckWARN_d(WARN_INTERNAL))
780 Perl_warner(aTHX_ WARN_INTERNAL,"Scalars leaked: %ld\n", (long)PL_sv_count);
782 Safefree(PL_origfilename);
783 Safefree(PL_reg_start_tmp);
785 Safefree(PL_reg_curpm);
786 Safefree(PL_reg_poscache);
787 Safefree(HeKEY_hek(&PL_hv_fetch_ent_mh));
788 Safefree(PL_op_mask);
789 Safefree(PL_psig_ptr);
790 Safefree(PL_psig_name);
791 Safefree(PL_bitcount);
792 Safefree(PL_psig_pend);
794 PL_hints = 0; /* Reset hints. Should hints be per-interpreter ? */
796 DEBUG_P(debprofdump());
797 #ifdef USE_5005THREADS
798 MUTEX_DESTROY(&PL_strtab_mutex);
799 MUTEX_DESTROY(&PL_sv_mutex);
800 MUTEX_DESTROY(&PL_eval_mutex);
801 MUTEX_DESTROY(&PL_cred_mutex);
802 MUTEX_DESTROY(&PL_fdpid_mutex);
803 COND_DESTROY(&PL_eval_cond);
804 #ifdef EMULATE_ATOMIC_REFCOUNTS
805 MUTEX_DESTROY(&PL_svref_mutex);
806 #endif /* EMULATE_ATOMIC_REFCOUNTS */
808 /* As the penultimate thing, free the non-arena SV for thrsv */
809 Safefree(SvPVX(PL_thrsv));
810 Safefree(SvANY(PL_thrsv));
813 #endif /* USE_5005THREADS */
815 #ifdef USE_REENTRANT_API
816 Safefree(PL_reentrant_buffer->tmbuff);
817 Safefree(PL_reentrant_buffer);
822 /* As the absolutely last thing, free the non-arena SV for mess() */
825 /* it could have accumulated taint magic */
826 if (SvTYPE(PL_mess_sv) >= SVt_PVMG) {
829 for (mg = SvMAGIC(PL_mess_sv); mg; mg = moremagic) {
830 moremagic = mg->mg_moremagic;
831 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global
833 Safefree(mg->mg_ptr);
837 /* we know that type >= SVt_PV */
838 (void)SvOOK_off(PL_mess_sv);
839 Safefree(SvPVX(PL_mess_sv));
840 Safefree(SvANY(PL_mess_sv));
841 Safefree(PL_mess_sv);
844 return STATUS_NATIVE_EXPORT;
848 =for apidoc perl_free
850 Releases a Perl interpreter. See L<perlembed>.
858 #if defined(WIN32) || defined(NETWARE)
859 # if defined(PERL_IMPLICIT_SYS)
861 void *host = nw_internal_host;
863 void *host = w32_internal_host;
866 if (PerlProc_lasthost()) {
872 nw5_delete_internal_host(host);
874 win32_delete_internal_host(host);
886 Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr)
888 Renew(PL_exitlist, PL_exitlistlen+1, PerlExitListEntry);
889 PL_exitlist[PL_exitlistlen].fn = fn;
890 PL_exitlist[PL_exitlistlen].ptr = ptr;
895 =for apidoc perl_parse
897 Tells a Perl interpreter to parse a Perl script. See L<perlembed>.
903 perl_parse(pTHXx_ XSINIT_t xsinit, int argc, char **argv, char **env)
908 #ifdef USE_5005THREADS
912 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
915 Perl_croak(aTHX_ "suidperl is no longer needed since the kernel can now execute\n\
916 setuid perl scripts securely.\n");
920 #if defined(__DYNAMIC__) && (defined(NeXT) || defined(__NeXT__))
921 _dyld_lookup_and_bind
922 ("__environ", (unsigned long *) &environ_pointer, NULL);
927 /* we copy rather than point to argv
928 * since perl_clone will copy and perl_destruct
929 * has no way of knowing if we've made a copy or
933 New(0, PL_origargv, i+1, char*);
934 PL_origargv[i] = '\0';
936 PL_origargv[i] = savepv(argv[i]);
940 #ifdef USE_ENVIRON_ARRAY
941 PL_origenviron = environ;
946 /* Come here if running an undumped a.out. */
948 PL_origfilename = savepv(argv[0]);
949 PL_do_undump = FALSE;
950 cxstack_ix = -1; /* start label stack again */
952 init_postdump_symbols(argc,argv,env);
957 PL_curpad = AvARRAY(PL_comppad);
958 op_free(PL_main_root);
959 PL_main_root = Nullop;
961 PL_main_start = Nullop;
962 SvREFCNT_dec(PL_main_cv);
966 oldscope = PL_scopestack_ix;
967 PL_dowarn = G_WARN_OFF;
969 #ifdef PERL_FLEXIBLE_EXCEPTIONS
970 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vparse_body), env, xsinit);
976 #ifndef PERL_FLEXIBLE_EXCEPTIONS
977 parse_body(env,xsinit);
980 call_list(oldscope, PL_checkav);
987 /* my_exit() was called */
988 while (PL_scopestack_ix > oldscope)
991 PL_curstash = PL_defstash;
993 call_list(oldscope, PL_checkav);
994 ret = STATUS_NATIVE_EXPORT;
997 PerlIO_printf(Perl_error_log, "panic: top_env\n");
1005 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1007 S_vparse_body(pTHX_ va_list args)
1009 char **env = va_arg(args, char**);
1010 XSINIT_t xsinit = va_arg(args, XSINIT_t);
1012 return parse_body(env, xsinit);
1017 S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
1019 int argc = PL_origargc;
1020 char **argv = PL_origargv;
1021 char *scriptname = NULL;
1023 VOL bool dosearch = FALSE;
1024 char *validarg = "";
1028 char *cddir = Nullch;
1030 sv_setpvn(PL_linestr,"",0);
1031 sv = newSVpvn("",0); /* first used for -I flags */
1035 for (argc--,argv++; argc > 0; argc--,argv++) {
1036 if (argv[0][0] != '-' || !argv[0][1])
1040 validarg = " PHOOEY ";
1049 win32_argv2utf8(argc-1, argv+1);
1052 #ifndef PERL_STRICT_CR
1076 if ((s = moreswitches(s)))
1086 #ifdef MACOS_TRADITIONAL
1087 /* ignore -e for Dev:Pseudo argument */
1088 if (argv[1] && !strcmp(argv[1], "Dev:Pseudo"))
1091 if (PL_euid != PL_uid || PL_egid != PL_gid)
1092 Perl_croak(aTHX_ "No -e allowed in setuid scripts");
1094 PL_e_script = newSVpvn("",0);
1095 filter_add(read_e_script, NULL);
1098 sv_catpv(PL_e_script, s);
1100 sv_catpv(PL_e_script, argv[1]);
1104 Perl_croak(aTHX_ "No code specified for -e");
1105 sv_catpv(PL_e_script, "\n");
1108 case 'I': /* -I handled both here and in moreswitches() */
1110 if (!*++s && (s=argv[1]) != Nullch) {
1115 STRLEN len = strlen(s);
1116 p = savepvn(s, len);
1117 incpush(p, TRUE, TRUE);
1118 sv_catpvn(sv, "-I", 2);
1119 sv_catpvn(sv, p, len);
1120 sv_catpvn(sv, " ", 1);
1124 Perl_croak(aTHX_ "No directory specified for -I");
1128 PL_preprocess = TRUE;
1138 PL_preambleav = newAV();
1139 av_push(PL_preambleav, newSVpv("use Config qw(myconfig config_vars)",0));
1141 PL_Sv = newSVpv("print myconfig();",0);
1143 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this PERLSHR image: \\n\",");
1145 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this binary (from libperl): \\n\",");
1147 sv_catpv(PL_Sv,"\" Compile-time options:");
1149 sv_catpv(PL_Sv," DEBUGGING");
1151 # ifdef MULTIPLICITY
1152 sv_catpv(PL_Sv," MULTIPLICITY");
1154 # ifdef USE_5005THREADS
1155 sv_catpv(PL_Sv," USE_5005THREADS");
1157 # ifdef USE_ITHREADS
1158 sv_catpv(PL_Sv," USE_ITHREADS");
1160 # ifdef USE_64_BIT_INT
1161 sv_catpv(PL_Sv," USE_64_BIT_INT");
1163 # ifdef USE_64_BIT_ALL
1164 sv_catpv(PL_Sv," USE_64_BIT_ALL");
1166 # ifdef USE_LONG_DOUBLE
1167 sv_catpv(PL_Sv," USE_LONG_DOUBLE");
1169 # ifdef USE_LARGE_FILES
1170 sv_catpv(PL_Sv," USE_LARGE_FILES");
1173 sv_catpv(PL_Sv," USE_SOCKS");
1175 # ifdef PERL_IMPLICIT_CONTEXT
1176 sv_catpv(PL_Sv," PERL_IMPLICIT_CONTEXT");
1178 # ifdef PERL_IMPLICIT_SYS
1179 sv_catpv(PL_Sv," PERL_IMPLICIT_SYS");
1181 sv_catpv(PL_Sv,"\\n\",");
1183 #if defined(LOCAL_PATCH_COUNT)
1184 if (LOCAL_PATCH_COUNT > 0) {
1186 sv_catpv(PL_Sv,"\" Locally applied patches:\\n\",");
1187 for (i = 1; i <= LOCAL_PATCH_COUNT; i++) {
1188 if (PL_localpatches[i])
1189 Perl_sv_catpvf(aTHX_ PL_Sv,"q\" \t%s\n\",",PL_localpatches[i]);
1193 Perl_sv_catpvf(aTHX_ PL_Sv,"\" Built under %s\\n\"",OSNAME);
1196 Perl_sv_catpvf(aTHX_ PL_Sv,",\" Compiled at %s %s\\n\"",__DATE__,__TIME__);
1198 Perl_sv_catpvf(aTHX_ PL_Sv,",\" Compiled on %s\\n\"",__DATE__);
1201 sv_catpv(PL_Sv, "; \
1203 @env = map { \"$_=\\\"$ENV{$_}\\\"\" } sort grep {/^PERL/} keys %ENV; ");
1206 push @env, \"CYGWIN=\\\"$ENV{CYGWIN}\\\"\";");
1209 print \" \\%ENV:\\n @env\\n\" if @env; \
1210 print \" \\@INC:\\n @INC\\n\";");
1213 PL_Sv = newSVpv("config_vars(qw(",0);
1214 sv_catpv(PL_Sv, ++s);
1215 sv_catpv(PL_Sv, "))");
1218 av_push(PL_preambleav, PL_Sv);
1219 scriptname = BIT_BUCKET; /* don't look for script or read stdin */
1222 PL_doextract = TRUE;
1230 if (!*++s || isSPACE(*s)) {
1234 /* catch use of gnu style long options */
1235 if (strEQ(s, "version")) {
1239 if (strEQ(s, "help")) {
1246 Perl_croak(aTHX_ "Unrecognized switch: -%s (-h will show valid options)",s);
1252 #ifndef SECURE_INTERNAL_GETENV
1255 (s = PerlEnv_getenv("PERL5OPT")))
1260 if (*s == '-' && *(s+1) == 'T')
1263 char *popt_copy = Nullch;
1276 if (!strchr("DIMUdmw", *s))
1277 Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s);
1281 popt_copy = SvPVX(sv_2mortal(newSVpv(popt,0)));
1282 s = popt_copy + (s - popt);
1283 d = popt_copy + (d - popt);
1295 scriptname = argv[0];
1298 scriptname = BIT_BUCKET; /* don't look for script or read stdin */
1300 else if (scriptname == Nullch) {
1302 if ( PerlLIO_isatty(PerlIO_fileno(PerlIO_stdin())) )
1310 open_script(scriptname,dosearch,sv,&fdscript);
1312 validate_suid(validarg, scriptname,fdscript);
1315 #if defined(SIGCHLD) || defined(SIGCLD)
1318 # define SIGCHLD SIGCLD
1320 Sighandler_t sigstate = rsignal_state(SIGCHLD);
1321 if (sigstate == SIG_IGN) {
1322 if (ckWARN(WARN_SIGNAL))
1323 Perl_warner(aTHX_ WARN_SIGNAL,
1324 "Can't ignore signal CHLD, forcing to default");
1325 (void)rsignal(SIGCHLD, (Sighandler_t)SIG_DFL);
1331 #ifdef MACOS_TRADITIONAL
1332 if (PL_doextract || gMacPerl_AlwaysExtract) {
1337 if (cddir && PerlDir_chdir(cddir) < 0)
1338 Perl_croak(aTHX_ "Can't chdir to %s",cddir);
1342 PL_main_cv = PL_compcv = (CV*)NEWSV(1104,0);
1343 sv_upgrade((SV *)PL_compcv, SVt_PVCV);
1344 CvUNIQUE_on(PL_compcv);
1346 PL_comppad = newAV();
1347 av_push(PL_comppad, Nullsv);
1348 PL_curpad = AvARRAY(PL_comppad);
1349 PL_comppad_name = newAV();
1350 PL_comppad_name_fill = 0;
1351 PL_min_intro_pending = 0;
1353 #ifdef USE_5005THREADS
1354 av_store(PL_comppad_name, 0, newSVpvn("@_", 2));
1355 PL_curpad[0] = (SV*)newAV();
1356 SvPADMY_on(PL_curpad[0]); /* XXX Needed? */
1357 CvOWNER(PL_compcv) = 0;
1358 New(666, CvMUTEXP(PL_compcv), 1, perl_mutex);
1359 MUTEX_INIT(CvMUTEXP(PL_compcv));
1360 #endif /* USE_5005THREADS */
1362 comppadlist = newAV();
1363 AvREAL_off(comppadlist);
1364 av_store(comppadlist, 0, (SV*)PL_comppad_name);
1365 av_store(comppadlist, 1, (SV*)PL_comppad);
1366 CvPADLIST(PL_compcv) = comppadlist;
1369 boot_core_UNIVERSAL();
1371 boot_core_xsutils();
1375 (*xsinit)(aTHX); /* in case linked C routines want magical variables */
1377 #if defined(VMS) || defined(WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(EPOC)
1383 # ifdef HAS_SOCKS5_INIT
1384 socks5_init(argv[0]);
1390 init_predump_symbols();
1391 /* init_postdump_symbols not currently designed to be called */
1392 /* more than once (ENV isn't cleared first, for example) */
1393 /* But running with -u leaves %ENV & @ARGV undefined! XXX */
1395 init_postdump_symbols(argc,argv,env);
1399 /* now parse the script */
1401 SETERRNO(0,SS$_NORMAL);
1403 #ifdef MACOS_TRADITIONAL
1404 if (gMacPerl_SyntaxError = (yyparse() || PL_error_count)) {
1406 Perl_croak(aTHX_ "%s had compilation errors.\n", MacPerl_MPWFileName(PL_origfilename));
1408 Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
1409 MacPerl_MPWFileName(PL_origfilename));
1413 if (yyparse() || PL_error_count) {
1415 Perl_croak(aTHX_ "%s had compilation errors.\n", PL_origfilename);
1417 Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
1422 CopLINE_set(PL_curcop, 0);
1423 PL_curstash = PL_defstash;
1424 PL_preprocess = FALSE;
1426 SvREFCNT_dec(PL_e_script);
1427 PL_e_script = Nullsv;
1430 /* now that script is parsed, we can modify record separator */
1431 SvREFCNT_dec(PL_rs);
1432 PL_rs = SvREFCNT_inc(PL_nrs);
1433 sv_setsv(get_sv("/", TRUE), PL_rs);
1438 SAVECOPFILE(PL_curcop);
1439 SAVECOPLINE(PL_curcop);
1440 gv_check(PL_defstash);
1447 if ((s=PerlEnv_getenv("PERL_DEBUG_MSTATS")) && atoi(s) >= 2)
1448 dump_mstats("after compilation:");
1457 =for apidoc perl_run
1459 Tells a Perl interpreter to run. See L<perlembed>.
1470 #ifdef USE_5005THREADS
1474 oldscope = PL_scopestack_ix;
1476 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1478 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vrun_body), oldscope);
1484 cxstack_ix = -1; /* start context stack again */
1486 case 0: /* normal completion */
1487 #ifndef PERL_FLEXIBLE_EXCEPTIONS
1492 case 2: /* my_exit() */
1493 while (PL_scopestack_ix > oldscope)
1496 PL_curstash = PL_defstash;
1497 if (!(PL_exit_flags & PERL_EXIT_DESTRUCT_END) &&
1498 PL_endav && !PL_minus_c)
1499 call_list(oldscope, PL_endav);
1501 if (PerlEnv_getenv("PERL_DEBUG_MSTATS"))
1502 dump_mstats("after execution: ");
1504 ret = STATUS_NATIVE_EXPORT;
1508 POPSTACK_TO(PL_mainstack);
1511 PerlIO_printf(Perl_error_log, "panic: restartop\n");
1521 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1523 S_vrun_body(pTHX_ va_list args)
1525 I32 oldscope = va_arg(args, I32);
1527 return run_body(oldscope);
1533 S_run_body(pTHX_ I32 oldscope)
1535 DEBUG_r(PerlIO_printf(Perl_debug_log, "%s $` $& $' support.\n",
1536 PL_sawampersand ? "Enabling" : "Omitting"));
1538 if (!PL_restartop) {
1539 DEBUG_x(dump_all());
1540 DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n"));
1541 DEBUG_S(PerlIO_printf(Perl_debug_log, "main thread is 0x%"UVxf"\n",
1545 #ifdef MACOS_TRADITIONAL
1546 PerlIO_printf(Perl_error_log, "%s syntax OK\n", MacPerl_MPWFileName(PL_origfilename));
1548 PerlIO_printf(Perl_error_log, "%s syntax OK\n", PL_origfilename);
1552 if (PERLDB_SINGLE && PL_DBsingle)
1553 sv_setiv(PL_DBsingle, 1);
1555 call_list(oldscope, PL_initav);
1561 PL_op = PL_restartop;
1565 else if (PL_main_start) {
1566 CvDEPTH(PL_main_cv) = 1;
1567 PL_op = PL_main_start;
1577 =for apidoc p||get_sv
1579 Returns the SV of the specified Perl scalar. If C<create> is set and the
1580 Perl variable does not exist then it will be created. If C<create> is not
1581 set and the variable does not exist then NULL is returned.
1587 Perl_get_sv(pTHX_ const char *name, I32 create)
1590 #ifdef USE_5005THREADS
1591 if (name[1] == '\0' && !isALPHA(name[0])) {
1592 PADOFFSET tmp = find_threadsv(name);
1593 if (tmp != NOT_IN_PAD)
1594 return THREADSV(tmp);
1596 #endif /* USE_5005THREADS */
1597 gv = gv_fetchpv(name, create, SVt_PV);
1604 =for apidoc p||get_av
1606 Returns the AV of the specified Perl array. If C<create> is set and the
1607 Perl variable does not exist then it will be created. If C<create> is not
1608 set and the variable does not exist then NULL is returned.
1614 Perl_get_av(pTHX_ const char *name, I32 create)
1616 GV* gv = gv_fetchpv(name, create, SVt_PVAV);
1625 =for apidoc p||get_hv
1627 Returns the HV of the specified Perl hash. If C<create> is set and the
1628 Perl variable does not exist then it will be created. If C<create> is not
1629 set and the variable does not exist then NULL is returned.
1635 Perl_get_hv(pTHX_ const char *name, I32 create)
1637 GV* gv = gv_fetchpv(name, create, SVt_PVHV);
1646 =for apidoc p||get_cv
1648 Returns the CV of the specified Perl subroutine. If C<create> is set and
1649 the Perl subroutine does not exist then it will be declared (which has the
1650 same effect as saying C<sub name;>). If C<create> is not set and the
1651 subroutine does not exist then NULL is returned.
1657 Perl_get_cv(pTHX_ const char *name, I32 create)
1659 GV* gv = gv_fetchpv(name, create, SVt_PVCV);
1660 /* XXX unsafe for threads if eval_owner isn't held */
1661 /* XXX this is probably not what they think they're getting.
1662 * It has the same effect as "sub name;", i.e. just a forward
1664 if (create && !GvCVu(gv))
1665 return newSUB(start_subparse(FALSE, 0),
1666 newSVOP(OP_CONST, 0, newSVpv(name,0)),
1674 /* Be sure to refetch the stack pointer after calling these routines. */
1677 =for apidoc p||call_argv
1679 Performs a callback to the specified Perl sub. See L<perlcall>.
1685 Perl_call_argv(pTHX_ const char *sub_name, I32 flags, register char **argv)
1687 /* See G_* flags in cop.h */
1688 /* null terminated arg list */
1695 XPUSHs(sv_2mortal(newSVpv(*argv,0)));
1700 return call_pv(sub_name, flags);
1704 =for apidoc p||call_pv
1706 Performs a callback to the specified Perl sub. See L<perlcall>.
1712 Perl_call_pv(pTHX_ const char *sub_name, I32 flags)
1713 /* name of the subroutine */
1714 /* See G_* flags in cop.h */
1716 return call_sv((SV*)get_cv(sub_name, TRUE), flags);
1720 =for apidoc p||call_method
1722 Performs a callback to the specified Perl method. The blessed object must
1723 be on the stack. See L<perlcall>.
1729 Perl_call_method(pTHX_ const char *methname, I32 flags)
1730 /* name of the subroutine */
1731 /* See G_* flags in cop.h */
1733 return call_sv(sv_2mortal(newSVpv(methname,0)), flags | G_METHOD);
1736 /* May be called with any of a CV, a GV, or an SV containing the name. */
1738 =for apidoc p||call_sv
1740 Performs a callback to the Perl sub whose name is in the SV. See
1747 Perl_call_sv(pTHX_ SV *sv, I32 flags)
1748 /* See G_* flags in cop.h */
1751 LOGOP myop; /* fake syntax tree node */
1754 volatile I32 retval = 0;
1756 bool oldcatch = CATCH_GET;
1761 if (flags & G_DISCARD) {
1766 Zero(&myop, 1, LOGOP);
1767 myop.op_next = Nullop;
1768 if (!(flags & G_NOARGS))
1769 myop.op_flags |= OPf_STACKED;
1770 myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1771 (flags & G_ARRAY) ? OPf_WANT_LIST :
1776 EXTEND(PL_stack_sp, 1);
1777 *++PL_stack_sp = sv;
1779 oldscope = PL_scopestack_ix;
1781 if (PERLDB_SUB && PL_curstash != PL_debstash
1782 /* Handle first BEGIN of -d. */
1783 && (PL_DBcv || (PL_DBcv = GvCV(PL_DBsub)))
1784 /* Try harder, since this may have been a sighandler, thus
1785 * curstash may be meaningless. */
1786 && (SvTYPE(sv) != SVt_PVCV || CvSTASH((CV*)sv) != PL_debstash)
1787 && !(flags & G_NODEBUG))
1788 PL_op->op_private |= OPpENTERSUB_DB;
1790 if (flags & G_METHOD) {
1791 Zero(&method_op, 1, UNOP);
1792 method_op.op_next = PL_op;
1793 method_op.op_ppaddr = PL_ppaddr[OP_METHOD];
1794 myop.op_ppaddr = PL_ppaddr[OP_ENTERSUB];
1795 PL_op = (OP*)&method_op;
1798 if (!(flags & G_EVAL)) {
1800 call_body((OP*)&myop, FALSE);
1801 retval = PL_stack_sp - (PL_stack_base + oldmark);
1802 CATCH_SET(oldcatch);
1805 myop.op_other = (OP*)&myop;
1807 /* we're trying to emulate pp_entertry() here */
1809 register PERL_CONTEXT *cx;
1810 I32 gimme = GIMME_V;
1815 push_return(Nullop);
1816 PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
1818 PL_eval_root = PL_op; /* Only needed so that goto works right. */
1820 PL_in_eval = EVAL_INEVAL;
1821 if (flags & G_KEEPERR)
1822 PL_in_eval |= EVAL_KEEPERR;
1828 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1830 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_body),
1837 #ifndef PERL_FLEXIBLE_EXCEPTIONS
1839 call_body((OP*)&myop, FALSE);
1841 retval = PL_stack_sp - (PL_stack_base + oldmark);
1842 if (!(flags & G_KEEPERR))
1849 /* my_exit() was called */
1850 PL_curstash = PL_defstash;
1853 if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
1854 Perl_croak(aTHX_ "Callback called exit");
1859 PL_op = PL_restartop;
1863 PL_stack_sp = PL_stack_base + oldmark;
1864 if (flags & G_ARRAY)
1868 *++PL_stack_sp = &PL_sv_undef;
1873 if (PL_scopestack_ix > oldscope) {
1877 register PERL_CONTEXT *cx;
1889 if (flags & G_DISCARD) {
1890 PL_stack_sp = PL_stack_base + oldmark;
1899 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1901 S_vcall_body(pTHX_ va_list args)
1903 OP *myop = va_arg(args, OP*);
1904 int is_eval = va_arg(args, int);
1906 call_body(myop, is_eval);
1912 S_call_body(pTHX_ OP *myop, int is_eval)
1914 if (PL_op == myop) {
1916 PL_op = Perl_pp_entereval(aTHX); /* this doesn't do a POPMARK */
1918 PL_op = Perl_pp_entersub(aTHX); /* this does */
1924 /* Eval a string. The G_EVAL flag is always assumed. */
1927 =for apidoc p||eval_sv
1929 Tells Perl to C<eval> the string in the SV.
1935 Perl_eval_sv(pTHX_ SV *sv, I32 flags)
1937 /* See G_* flags in cop.h */
1940 UNOP myop; /* fake syntax tree node */
1941 volatile I32 oldmark = SP - PL_stack_base;
1942 volatile I32 retval = 0;
1948 if (flags & G_DISCARD) {
1955 Zero(PL_op, 1, UNOP);
1956 EXTEND(PL_stack_sp, 1);
1957 *++PL_stack_sp = sv;
1958 oldscope = PL_scopestack_ix;
1960 if (!(flags & G_NOARGS))
1961 myop.op_flags = OPf_STACKED;
1962 myop.op_next = Nullop;
1963 myop.op_type = OP_ENTEREVAL;
1964 myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1965 (flags & G_ARRAY) ? OPf_WANT_LIST :
1967 if (flags & G_KEEPERR)
1968 myop.op_flags |= OPf_SPECIAL;
1970 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1972 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_body),
1979 #ifndef PERL_FLEXIBLE_EXCEPTIONS
1981 call_body((OP*)&myop,TRUE);
1983 retval = PL_stack_sp - (PL_stack_base + oldmark);
1984 if (!(flags & G_KEEPERR))
1991 /* my_exit() was called */
1992 PL_curstash = PL_defstash;
1995 if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
1996 Perl_croak(aTHX_ "Callback called exit");
2001 PL_op = PL_restartop;
2005 PL_stack_sp = PL_stack_base + oldmark;
2006 if (flags & G_ARRAY)
2010 *++PL_stack_sp = &PL_sv_undef;
2016 if (flags & G_DISCARD) {
2017 PL_stack_sp = PL_stack_base + oldmark;
2027 =for apidoc p||eval_pv
2029 Tells Perl to C<eval> the given string and return an SV* result.
2035 Perl_eval_pv(pTHX_ const char *p, I32 croak_on_error)
2038 SV* sv = newSVpv(p, 0);
2040 eval_sv(sv, G_SCALAR);
2047 if (croak_on_error && SvTRUE(ERRSV)) {
2049 Perl_croak(aTHX_ SvPVx(ERRSV, n_a));
2055 /* Require a module. */
2058 =for apidoc p||require_pv
2060 Tells Perl to C<require> the file named by the string argument. It is
2061 analogous to the Perl code C<eval "require '$file'">. It's even
2062 implemented that way; consider using Perl_load_module instead.
2067 Perl_require_pv(pTHX_ const char *pv)
2071 PUSHSTACKi(PERLSI_REQUIRE);
2073 sv = sv_newmortal();
2074 sv_setpv(sv, "require '");
2077 eval_sv(sv, G_DISCARD);
2083 Perl_magicname(pTHX_ char *sym, char *name, I32 namlen)
2087 if ((gv = gv_fetchpv(sym,TRUE, SVt_PV)))
2088 sv_magic(GvSV(gv), (SV*)gv, PERL_MAGIC_sv, name, namlen);
2092 S_usage(pTHX_ char *name) /* XXX move this out into a module ? */
2094 /* This message really ought to be max 23 lines.
2095 * Removed -h because the user already knows that option. Others? */
2097 static char *usage_msg[] = {
2098 "-0[octal] specify record separator (\\0, if no argument)",
2099 "-a autosplit mode with -n or -p (splits $_ into @F)",
2100 "-C enable native wide character system interfaces",
2101 "-c check syntax only (runs BEGIN and CHECK blocks)",
2102 "-d[:debugger] run program under debugger",
2103 "-D[number/list] set debugging flags (argument is a bit mask or alphabets)",
2104 "-e 'command' one line of program (several -e's allowed, omit programfile)",
2105 "-F/pattern/ split() pattern for -a switch (//'s are optional)",
2106 "-i[extension] edit <> files in place (makes backup if extension supplied)",
2107 "-Idirectory specify @INC/#include directory (several -I's allowed)",
2108 "-l[octal] enable line ending processing, specifies line terminator",
2109 "-[mM][-]module execute `use/no module...' before executing program",
2110 "-n assume 'while (<>) { ... }' loop around program",
2111 "-p assume loop like -n but print line also, like sed",
2112 "-P run program through C preprocessor before compilation",
2113 "-s enable rudimentary parsing for switches after programfile",
2114 "-S look for programfile using PATH environment variable",
2115 "-T enable tainting checks",
2116 "-u dump core after parsing program",
2117 "-U allow unsafe operations",
2118 "-v print version, subversion (includes VERY IMPORTANT perl info)",
2119 "-V[:variable] print configuration summary (or a single Config.pm variable)",
2120 "-w enable many useful warnings (RECOMMENDED)",
2121 "-W enable all warnings",
2122 "-X disable all warnings",
2123 "-x[directory] strip off text before #!perl line and perhaps cd to directory",
2127 char **p = usage_msg;
2129 PerlIO_printf(PerlIO_stdout(),
2130 "\nUsage: %s [switches] [--] [programfile] [arguments]",
2133 PerlIO_printf(PerlIO_stdout(), "\n %s", *p++);
2136 /* This routine handles any switches that can be given during run */
2139 Perl_moreswitches(pTHX_ char *s)
2149 rschar = (U32)grok_oct(s, &numlen, &flags, NULL);
2150 SvREFCNT_dec(PL_nrs);
2151 if (rschar & ~((U8)~0))
2152 PL_nrs = &PL_sv_undef;
2153 else if (!rschar && numlen >= 2)
2154 PL_nrs = newSVpvn("", 0);
2157 PL_nrs = newSVpvn(&ch, 1);
2162 PL_widesyscalls = TRUE;
2167 PL_splitstr = savepv(s + 1);
2181 /* The following permits -d:Mod to accepts arguments following an =
2182 in the fashion that -MSome::Mod does. */
2183 if (*s == ':' || *s == '=') {
2186 sv = newSVpv("use Devel::", 0);
2188 /* We now allow -d:Module=Foo,Bar */
2189 while(isALNUM(*s) || *s==':') ++s;
2191 sv_catpv(sv, start);
2193 sv_catpvn(sv, start, s-start);
2194 sv_catpv(sv, " split(/,/,q{");
2199 my_setenv("PERL5DB", SvPV(sv, PL_na));
2202 PL_perldb = PERLDB_ALL;
2210 if (isALPHA(s[1])) {
2211 /* if adding extra options, remember to update DEBUG_MASK */
2212 static char debopts[] = "psltocPmfrxuLHXDSTR";
2215 for (s++; *s && (d = strchr(debopts,*s)); s++)
2216 PL_debug |= 1 << (d - debopts);
2219 PL_debug = atoi(s+1);
2220 for (s++; isDIGIT(*s); s++) ;
2222 PL_debug |= DEBUG_TOP_FLAG;
2224 if (ckWARN_d(WARN_DEBUGGING))
2225 Perl_warner(aTHX_ WARN_DEBUGGING,
2226 "Recompile perl with -DDEBUGGING to use -D switch\n");
2227 for (s++; isALNUM(*s); s++) ;
2233 usage(PL_origargv[0]);
2237 Safefree(PL_inplace);
2238 PL_inplace = savepv(s+1);
2240 for (s = PL_inplace; *s && !isSPACE(*s); s++) ;
2243 if (*s == '-') /* Additional switches on #! line. */
2247 case 'I': /* -I handled both here and in parse_perl() */
2250 while (*s && isSPACE(*s))
2255 /* ignore trailing spaces (possibly followed by other switches) */
2257 for (e = p; *e && !isSPACE(*e); e++) ;
2261 } while (*p && *p != '-');
2262 e = savepvn(s, e-s);
2263 incpush(e, TRUE, TRUE);
2270 Perl_croak(aTHX_ "No directory specified for -I");
2276 SvREFCNT_dec(PL_ors_sv);
2281 PL_ors_sv = newSVpvn("\n",1);
2282 numlen = 3 + (*s == '0');
2283 *SvPVX(PL_ors_sv) = (char)grok_oct(s, &numlen, &flags, NULL);
2287 if (RsPARA(PL_nrs)) {
2288 PL_ors_sv = newSVpvn("\n\n",2);
2291 PL_ors_sv = newSVsv(PL_nrs);
2296 forbid_setid("-M"); /* XXX ? */
2299 forbid_setid("-m"); /* XXX ? */
2304 /* -M-foo == 'no foo' */
2305 if (*s == '-') { use = "no "; ++s; }
2306 sv = newSVpv(use,0);
2308 /* We allow -M'Module qw(Foo Bar)' */
2309 while(isALNUM(*s) || *s==':') ++s;
2311 sv_catpv(sv, start);
2312 if (*(start-1) == 'm') {
2314 Perl_croak(aTHX_ "Can't use '%c' after -mname", *s);
2315 sv_catpv( sv, " ()");
2319 Perl_croak(aTHX_ "Module name required with -%c option",
2321 sv_catpvn(sv, start, s-start);
2322 sv_catpv(sv, " split(/,/,q{");
2328 PL_preambleav = newAV();
2329 av_push(PL_preambleav, sv);
2332 Perl_croak(aTHX_ "No space allowed after -%c", *(s-1));
2344 PL_doswitches = TRUE;
2349 Perl_croak(aTHX_ "Too late for \"-T\" option");
2353 #ifdef MACOS_TRADITIONAL
2354 Perl_croak(aTHX_ "Believe me, you don't want to use \"-u\" on a Macintosh");
2356 PL_do_undump = TRUE;
2365 PerlIO_printf(PerlIO_stdout(),
2366 Perl_form(aTHX_ "\nThis is perl, v%"VDf" built for %s",
2367 PL_patchlevel, ARCHNAME));
2369 /* Adjust verbose output as in the perl that ships with the DG/UX OS from EMC */
2370 PerlIO_printf(PerlIO_stdout(),
2371 Perl_form(aTHX_ "\nThis is perl, version %vd\n", PL_patchlevel));
2372 PerlIO_printf(PerlIO_stdout(),
2373 Perl_form(aTHX_ " built under %s at %s %s\n",
2374 OSNAME, __DATE__, __TIME__));
2375 PerlIO_printf(PerlIO_stdout(),
2376 Perl_form(aTHX_ " OS Specific Release: %s\n",
2380 #if defined(LOCAL_PATCH_COUNT)
2381 if (LOCAL_PATCH_COUNT > 0)
2382 PerlIO_printf(PerlIO_stdout(),
2383 "\n(with %d registered patch%s, "
2384 "see perl -V for more detail)",
2385 (int)LOCAL_PATCH_COUNT,
2386 (LOCAL_PATCH_COUNT!=1) ? "es" : "");
2389 PerlIO_printf(PerlIO_stdout(),
2390 "\n\nCopyright 1987-2001, Larry Wall\n");
2391 #ifdef MACOS_TRADITIONAL
2392 PerlIO_printf(PerlIO_stdout(),
2393 "\nMac OS port Copyright (c) 1991-2001, Matthias Neeracher\n");
2396 PerlIO_printf(PerlIO_stdout(),
2397 "\nMS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis\n");
2400 PerlIO_printf(PerlIO_stdout(),
2401 "djgpp v2 port (jpl5003c) by Hirofumi Watanabe, 1996\n"
2402 "djgpp v2 port (perl5004+) by Laszlo Molnar, 1997-1999\n");
2405 PerlIO_printf(PerlIO_stdout(),
2406 "\n\nOS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n"
2407 "Version 5 port Copyright (c) 1994-1999, Andreas Kaiser, Ilya Zakharevich\n");
2410 PerlIO_printf(PerlIO_stdout(),
2411 "atariST series port, ++jrb bammi@cadence.com\n");
2414 PerlIO_printf(PerlIO_stdout(),
2415 "BeOS port Copyright Tom Spindler, 1997-1999\n");
2418 PerlIO_printf(PerlIO_stdout(),
2419 "MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-2001\n");
2422 PerlIO_printf(PerlIO_stdout(),
2423 "MVS (OS390) port by Mortice Kern Systems, 1997-1999\n");
2426 PerlIO_printf(PerlIO_stdout(),
2427 "Stratus VOS port by Paul_Green@stratus.com, 1997-1999\n");
2430 PerlIO_printf(PerlIO_stdout(),
2431 "VM/ESA port by Neale Ferguson, 1998-1999\n");
2434 PerlIO_printf(PerlIO_stdout(),
2435 "BS2000 (POSIX) port by Start Amadeus GmbH, 1998-1999\n");
2438 PerlIO_printf(PerlIO_stdout(),
2439 "MiNT port by Guido Flohr, 1997-1999\n");
2442 PerlIO_printf(PerlIO_stdout(),
2443 "EPOC port by Olaf Flebbe, 1999-2000\n");
2446 printf("WINCE port by Rainer Keuchel, 2001\n");
2447 printf("Built on " __DATE__ " " __TIME__ "\n\n");
2450 #ifdef BINARY_BUILD_NOTICE
2451 BINARY_BUILD_NOTICE;
2453 PerlIO_printf(PerlIO_stdout(),
2455 Perl may be copied only under the terms of either the Artistic License or the\n\
2456 GNU General Public License, which may be found in the Perl 5 source kit.\n\n\
2457 Complete documentation for Perl, including FAQ lists, should be found on\n\
2458 this system using `man perl' or `perldoc perl'. If you have access to the\n\
2459 Internet, point your browser at http://www.perl.com/, the Perl Home Page.\n\n");
2462 if (! (PL_dowarn & G_WARN_ALL_MASK))
2463 PL_dowarn |= G_WARN_ON;
2467 PL_dowarn = G_WARN_ALL_ON|G_WARN_ON;
2468 PL_compiling.cop_warnings = pWARN_ALL ;
2472 PL_dowarn = G_WARN_ALL_OFF;
2473 PL_compiling.cop_warnings = pWARN_NONE ;
2478 if (s[1] == '-') /* Additional switches on #! line. */
2483 #if defined(WIN32) || !defined(PERL_STRICT_CR)
2489 #ifdef ALTERNATE_SHEBANG
2490 case 'S': /* OS/2 needs -S on "extproc" line. */
2498 Perl_croak(aTHX_ "Can't emulate -%.1s on #! line",s);
2503 /* compliments of Tom Christiansen */
2505 /* unexec() can be found in the Gnu emacs distribution */
2506 /* Known to work with -DUNEXEC and using unexelf.c from GNU emacs-20.2 */
2509 Perl_my_unexec(pTHX)
2517 prog = newSVpv(BIN_EXP, 0);
2518 sv_catpv(prog, "/perl");
2519 file = newSVpv(PL_origfilename, 0);
2520 sv_catpv(file, ".perldump");
2522 unexec(SvPVX(file), SvPVX(prog), &etext, sbrk(0), 0);
2523 /* unexec prints msg to stderr in case of failure */
2524 PerlProc_exit(status);
2527 # include <lib$routines.h>
2528 lib$signal(SS$_DEBUG); /* ssdef.h #included from vmsish.h */
2530 ABORT(); /* for use with undump */
2535 /* initialize curinterp */
2541 # define PERLVAR(var,type)
2542 # define PERLVARA(var,n,type)
2543 # if defined(PERL_IMPLICIT_CONTEXT)
2544 # if defined(USE_5005THREADS)
2545 # define PERLVARI(var,type,init) PERL_GET_INTERP->var = init;
2546 # define PERLVARIC(var,type,init) PERL_GET_INTERP->var = init;
2547 # else /* !USE_5005THREADS */
2548 # define PERLVARI(var,type,init) aTHX->var = init;
2549 # define PERLVARIC(var,type,init) aTHX->var = init;
2550 # endif /* USE_5005THREADS */
2552 # define PERLVARI(var,type,init) PERL_GET_INTERP->var = init;
2553 # define PERLVARIC(var,type,init) PERL_GET_INTERP->var = init;
2555 # include "intrpvar.h"
2556 # ifndef USE_5005THREADS
2557 # include "thrdvar.h"
2564 # define PERLVAR(var,type)
2565 # define PERLVARA(var,n,type)
2566 # define PERLVARI(var,type,init) PL_##var = init;
2567 # define PERLVARIC(var,type,init) PL_##var = init;
2568 # include "intrpvar.h"
2569 # ifndef USE_5005THREADS
2570 # include "thrdvar.h"
2581 S_init_main_stash(pTHX)
2585 /* Note that strtab is a rather special HV. Assumptions are made
2586 about not iterating on it, and not adding tie magic to it.
2587 It is properly deallocated in perl_destruct() */
2588 PL_strtab = newHV();
2589 #ifdef USE_5005THREADS
2590 MUTEX_INIT(&PL_strtab_mutex);
2592 HvSHAREKEYS_off(PL_strtab); /* mandatory */
2593 hv_ksplit(PL_strtab, 512);
2595 PL_curstash = PL_defstash = newHV();
2596 PL_curstname = newSVpvn("main",4);
2597 gv = gv_fetchpv("main::",TRUE, SVt_PVHV);
2598 SvREFCNT_dec(GvHV(gv));
2599 GvHV(gv) = (HV*)SvREFCNT_inc(PL_defstash);
2601 HvNAME(PL_defstash) = savepv("main");
2602 PL_incgv = gv_HVadd(gv_AVadd(gv_fetchpv("INC",TRUE, SVt_PVAV)));
2603 GvMULTI_on(PL_incgv);
2604 PL_hintgv = gv_fetchpv("\010",TRUE, SVt_PV); /* ^H */
2605 GvMULTI_on(PL_hintgv);
2606 PL_defgv = gv_fetchpv("_",TRUE, SVt_PVAV);
2607 PL_errgv = gv_HVadd(gv_fetchpv("@", TRUE, SVt_PV));
2608 GvMULTI_on(PL_errgv);
2609 PL_replgv = gv_fetchpv("\022", TRUE, SVt_PV); /* ^R */
2610 GvMULTI_on(PL_replgv);
2611 (void)Perl_form(aTHX_ "%240s",""); /* Preallocate temp - for immediate signals. */
2612 sv_grow(ERRSV, 240); /* Preallocate - for immediate signals. */
2613 sv_setpvn(ERRSV, "", 0);
2614 PL_curstash = PL_defstash;
2615 CopSTASH_set(&PL_compiling, PL_defstash);
2616 PL_debstash = GvHV(gv_fetchpv("DB::", GV_ADDMULTI, SVt_PVHV));
2617 PL_globalstash = GvHV(gv_fetchpv("CORE::GLOBAL::", GV_ADDMULTI, SVt_PVHV));
2618 PL_nullstash = GvHV(gv_fetchpv("<none>::", GV_ADDMULTI, SVt_PVHV));
2619 /* We must init $/ before switches are processed. */
2620 sv_setpvn(get_sv("/", TRUE), "\n", 1);
2624 S_open_script(pTHX_ char *scriptname, bool dosearch, SV *sv, int *fdscript)
2629 PL_origfilename = savepv("-e");
2632 /* if find_script() returns, it returns a malloc()-ed value */
2633 PL_origfilename = scriptname = find_script(scriptname, dosearch, NULL, 1);
2635 if (strnEQ(scriptname, "/dev/fd/", 8) && isDIGIT(scriptname[8]) ) {
2636 char *s = scriptname + 8;
2637 *fdscript = atoi(s);
2641 scriptname = savepv(s + 1);
2642 Safefree(PL_origfilename);
2643 PL_origfilename = scriptname;
2649 Safefree(CopFILE(PL_curcop));
2651 SvREFCNT_dec(CopFILEGV(PL_curcop));
2653 CopFILE_set(PL_curcop, PL_origfilename);
2654 if (strEQ(PL_origfilename,"-"))
2656 if (*fdscript >= 0) {
2657 PL_rsfp = PerlIO_fdopen(*fdscript,PERL_SCRIPT_MODE);
2658 #if defined(HAS_FCNTL) && defined(F_SETFD)
2660 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1); /* ensure close-on-exec */
2663 else if (PL_preprocess) {
2664 char *cpp_cfg = CPPSTDIN;
2665 SV *cpp = newSVpvn("",0);
2666 SV *cmd = NEWSV(0,0);
2668 if (strEQ(cpp_cfg, "cppstdin"))
2669 Perl_sv_catpvf(aTHX_ cpp, "%s/", BIN_EXP);
2670 sv_catpv(cpp, cpp_cfg);
2672 sv_catpvn(sv, "-I", 2);
2673 sv_catpv(sv,PRIVLIB_EXP);
2675 DEBUG_P(PerlIO_printf(Perl_debug_log,
2676 "PL_preprocess: scriptname=\"%s\", cpp=\"%s\", sv=\"%s\", CPPMINUS=\"%s\"\n",
2677 scriptname, SvPVX (cpp), SvPVX (sv), CPPMINUS));
2678 #if defined(MSDOS) || defined(WIN32)
2679 Perl_sv_setpvf(aTHX_ cmd, "\
2680 sed %s -e \"/^[^#]/b\" \
2681 -e \"/^#[ ]*include[ ]/b\" \
2682 -e \"/^#[ ]*define[ ]/b\" \
2683 -e \"/^#[ ]*if[ ]/b\" \
2684 -e \"/^#[ ]*ifdef[ ]/b\" \
2685 -e \"/^#[ ]*ifndef[ ]/b\" \
2686 -e \"/^#[ ]*else/b\" \
2687 -e \"/^#[ ]*elif[ ]/b\" \
2688 -e \"/^#[ ]*undef[ ]/b\" \
2689 -e \"/^#[ ]*endif/b\" \
2691 %s | %"SVf" -C %"SVf" %s",
2692 (PL_doextract ? "-e \"1,/^#/d\n\"" : ""),
2695 Perl_sv_setpvf(aTHX_ cmd, "\
2696 %s %s -e '/^[^#]/b' \
2697 -e '/^#[ ]*include[ ]/b' \
2698 -e '/^#[ ]*define[ ]/b' \
2699 -e '/^#[ ]*if[ ]/b' \
2700 -e '/^#[ ]*ifdef[ ]/b' \
2701 -e '/^#[ ]*ifndef[ ]/b' \
2702 -e '/^#[ ]*else/b' \
2703 -e '/^#[ ]*elif[ ]/b' \
2704 -e '/^#[ ]*undef[ ]/b' \
2705 -e '/^#[ ]*endif/b' \
2707 %s | %"SVf" %"SVf" %s",
2709 Perl_sv_setpvf(aTHX_ cmd, "\
2710 %s %s -e '/^[^#]/b' \
2711 -e '/^#[ ]*include[ ]/b' \
2712 -e '/^#[ ]*define[ ]/b' \
2713 -e '/^#[ ]*if[ ]/b' \
2714 -e '/^#[ ]*ifdef[ ]/b' \
2715 -e '/^#[ ]*ifndef[ ]/b' \
2716 -e '/^#[ ]*else/b' \
2717 -e '/^#[ ]*elif[ ]/b' \
2718 -e '/^#[ ]*undef[ ]/b' \
2719 -e '/^#[ ]*endif/b' \
2721 %s | %"SVf" -C %"SVf" %s",
2728 (PL_doextract ? "-e '1,/^#/d\n'" : ""),
2730 scriptname, cpp, sv, CPPMINUS);
2731 PL_doextract = FALSE;
2732 #ifdef IAMSUID /* actually, this is caught earlier */
2733 if (PL_euid != PL_uid && !PL_euid) { /* if running suidperl */
2735 (void)seteuid(PL_uid); /* musn't stay setuid root */
2738 (void)setreuid((Uid_t)-1, PL_uid);
2740 #ifdef HAS_SETRESUID
2741 (void)setresuid((Uid_t)-1, PL_uid, (Uid_t)-1);
2743 PerlProc_setuid(PL_uid);
2747 if (PerlProc_geteuid() != PL_uid)
2748 Perl_croak(aTHX_ "Can't do seteuid!\n");
2750 #endif /* IAMSUID */
2751 PL_rsfp = PerlProc_popen(SvPVX(cmd), "r");
2755 else if (!*scriptname) {
2756 forbid_setid("program input from stdin");
2757 PL_rsfp = PerlIO_stdin();
2760 PL_rsfp = PerlIO_open(scriptname,PERL_SCRIPT_MODE);
2761 #if defined(HAS_FCNTL) && defined(F_SETFD)
2763 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1); /* ensure close-on-exec */
2768 #ifndef IAMSUID /* in case script is not readable before setuid */
2770 PerlLIO_stat(CopFILE(PL_curcop),&PL_statbuf) >= 0 &&
2771 PL_statbuf.st_mode & (S_ISUID|S_ISGID))
2774 PerlProc_execv(Perl_form(aTHX_ "%s/sperl"PERL_FS_VER_FMT, BIN_EXP,
2775 (int)PERL_REVISION, (int)PERL_VERSION,
2776 (int)PERL_SUBVERSION), PL_origargv);
2777 Perl_croak(aTHX_ "Can't do setuid\n");
2783 Perl_croak(aTHX_ "Can't open perl script: %s\n",
2786 Perl_croak(aTHX_ "Can't open perl script \"%s\": %s\n",
2787 CopFILE(PL_curcop), Strerror(errno));
2793 * I_SYSSTATVFS HAS_FSTATVFS
2795 * I_STATFS HAS_FSTATFS HAS_GETFSSTAT
2796 * I_MNTENT HAS_GETMNTENT HAS_HASMNTOPT
2797 * here so that metaconfig picks them up. */
2801 S_fd_on_nosuid_fs(pTHX_ int fd)
2803 int check_okay = 0; /* able to do all the required sys/libcalls */
2804 int on_nosuid = 0; /* the fd is on a nosuid fs */
2806 * Preferred order: fstatvfs(), fstatfs(), ustat()+getmnt(), getmntent().
2807 * fstatvfs() is UNIX98.
2808 * fstatfs() is 4.3 BSD.
2809 * ustat()+getmnt() is pre-4.3 BSD.
2810 * getmntent() is O(number-of-mounted-filesystems) and can hang on
2811 * an irrelevant filesystem while trying to reach the right one.
2814 #undef FD_ON_NOSUID_CHECK_OKAY /* found the syscalls to do the check? */
2816 # if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2817 defined(HAS_FSTATVFS)
2818 # define FD_ON_NOSUID_CHECK_OKAY
2819 struct statvfs stfs;
2821 check_okay = fstatvfs(fd, &stfs) == 0;
2822 on_nosuid = check_okay && (stfs.f_flag & ST_NOSUID);
2823 # endif /* fstatvfs */
2825 # if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2826 defined(PERL_MOUNT_NOSUID) && \
2827 defined(HAS_FSTATFS) && \
2828 defined(HAS_STRUCT_STATFS) && \
2829 defined(HAS_STRUCT_STATFS_F_FLAGS)
2830 # define FD_ON_NOSUID_CHECK_OKAY
2833 check_okay = fstatfs(fd, &stfs) == 0;
2834 on_nosuid = check_okay && (stfs.f_flags & PERL_MOUNT_NOSUID);
2835 # endif /* fstatfs */
2837 # if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2838 defined(PERL_MOUNT_NOSUID) && \
2839 defined(HAS_FSTAT) && \
2840 defined(HAS_USTAT) && \
2841 defined(HAS_GETMNT) && \
2842 defined(HAS_STRUCT_FS_DATA) && \
2844 # define FD_ON_NOSUID_CHECK_OKAY
2847 if (fstat(fd, &fdst) == 0) {
2849 if (ustat(fdst.st_dev, &us) == 0) {
2851 /* NOSTAT_ONE here because we're not examining fields which
2852 * vary between that case and STAT_ONE. */
2853 if (getmnt((int*)0, &fsd, (int)0, NOSTAT_ONE, us.f_fname) == 0) {
2854 size_t cmplen = sizeof(us.f_fname);
2855 if (sizeof(fsd.fd_req.path) < cmplen)
2856 cmplen = sizeof(fsd.fd_req.path);
2857 if (strnEQ(fsd.fd_req.path, us.f_fname, cmplen) &&
2858 fdst.st_dev == fsd.fd_req.dev) {
2860 on_nosuid = fsd.fd_req.flags & PERL_MOUNT_NOSUID;
2866 # endif /* fstat+ustat+getmnt */
2868 # if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
2869 defined(HAS_GETMNTENT) && \
2870 defined(HAS_HASMNTOPT) && \
2871 defined(MNTOPT_NOSUID)
2872 # define FD_ON_NOSUID_CHECK_OKAY
2873 FILE *mtab = fopen("/etc/mtab", "r");
2874 struct mntent *entry;
2875 struct stat stb, fsb;
2877 if (mtab && (fstat(fd, &stb) == 0)) {
2878 while (entry = getmntent(mtab)) {
2879 if (stat(entry->mnt_dir, &fsb) == 0
2880 && fsb.st_dev == stb.st_dev)
2882 /* found the filesystem */
2884 if (hasmntopt(entry, MNTOPT_NOSUID))
2887 } /* A single fs may well fail its stat(). */
2892 # endif /* getmntent+hasmntopt */
2895 Perl_croak(aTHX_ "Can't check filesystem of script \"%s\" for nosuid", PL_origfilename);
2898 #endif /* IAMSUID */
2901 S_validate_suid(pTHX_ char *validarg, char *scriptname, int fdscript)
2907 /* do we need to emulate setuid on scripts? */
2909 /* This code is for those BSD systems that have setuid #! scripts disabled
2910 * in the kernel because of a security problem. Merely defining DOSUID
2911 * in perl will not fix that problem, but if you have disabled setuid
2912 * scripts in the kernel, this will attempt to emulate setuid and setgid
2913 * on scripts that have those now-otherwise-useless bits set. The setuid
2914 * root version must be called suidperl or sperlN.NNN. If regular perl
2915 * discovers that it has opened a setuid script, it calls suidperl with
2916 * the same argv that it had. If suidperl finds that the script it has
2917 * just opened is NOT setuid root, it sets the effective uid back to the
2918 * uid. We don't just make perl setuid root because that loses the
2919 * effective uid we had before invoking perl, if it was different from the
2922 * DOSUID must be defined in both perl and suidperl, and IAMSUID must
2923 * be defined in suidperl only. suidperl must be setuid root. The
2924 * Configure script will set this up for you if you want it.
2930 if (PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf) < 0) /* normal stat is insecure */
2931 Perl_croak(aTHX_ "Can't stat script \"%s\"",PL_origfilename);
2932 if (fdscript < 0 && PL_statbuf.st_mode & (S_ISUID|S_ISGID)) {
2937 #ifndef HAS_SETREUID
2938 /* On this access check to make sure the directories are readable,
2939 * there is actually a small window that the user could use to make
2940 * filename point to an accessible directory. So there is a faint
2941 * chance that someone could execute a setuid script down in a
2942 * non-accessible directory. I don't know what to do about that.
2943 * But I don't think it's too important. The manual lies when
2944 * it says access() is useful in setuid programs.
2946 if (PerlLIO_access(CopFILE(PL_curcop),1)) /*double check*/
2947 Perl_croak(aTHX_ "Permission denied");
2949 /* If we can swap euid and uid, then we can determine access rights
2950 * with a simple stat of the file, and then compare device and
2951 * inode to make sure we did stat() on the same file we opened.
2952 * Then we just have to make sure he or she can execute it.
2955 struct stat tmpstatbuf;
2959 setreuid(PL_euid,PL_uid) < 0
2962 setresuid(PL_euid,PL_uid,(Uid_t)-1) < 0
2965 || PerlProc_getuid() != PL_euid || PerlProc_geteuid() != PL_uid)
2966 Perl_croak(aTHX_ "Can't swap uid and euid"); /* really paranoid */
2967 if (PerlLIO_stat(CopFILE(PL_curcop),&tmpstatbuf) < 0)
2968 Perl_croak(aTHX_ "Permission denied"); /* testing full pathname here */
2969 #if defined(IAMSUID) && !defined(NO_NOSUID_CHECK)
2970 if (fd_on_nosuid_fs(PerlIO_fileno(PL_rsfp)))
2971 Perl_croak(aTHX_ "Permission denied");
2973 if (tmpstatbuf.st_dev != PL_statbuf.st_dev ||
2974 tmpstatbuf.st_ino != PL_statbuf.st_ino) {
2975 (void)PerlIO_close(PL_rsfp);
2976 Perl_croak(aTHX_ "Permission denied\n");
2980 setreuid(PL_uid,PL_euid) < 0
2982 # if defined(HAS_SETRESUID)
2983 setresuid(PL_uid,PL_euid,(Uid_t)-1) < 0
2986 || PerlProc_getuid() != PL_uid || PerlProc_geteuid() != PL_euid)
2987 Perl_croak(aTHX_ "Can't reswap uid and euid");
2988 if (!cando(S_IXUSR,FALSE,&PL_statbuf)) /* can real uid exec? */
2989 Perl_croak(aTHX_ "Permission denied\n");
2991 #endif /* HAS_SETREUID */
2992 #endif /* IAMSUID */
2994 if (!S_ISREG(PL_statbuf.st_mode))
2995 Perl_croak(aTHX_ "Permission denied");
2996 if (PL_statbuf.st_mode & S_IWOTH)
2997 Perl_croak(aTHX_ "Setuid/gid script is writable by world");
2998 PL_doswitches = FALSE; /* -s is insecure in suid */
2999 CopLINE_inc(PL_curcop);
3000 if (sv_gets(PL_linestr, PL_rsfp, 0) == Nullch ||
3001 strnNE(SvPV(PL_linestr,n_a),"#!",2) ) /* required even on Sys V */
3002 Perl_croak(aTHX_ "No #! line");
3003 s = SvPV(PL_linestr,n_a)+2;
3005 while (!isSPACE(*s)) s++;
3006 for (s2 = s; (s2 > SvPV(PL_linestr,n_a)+2 &&
3007 (isDIGIT(s2[-1]) || strchr("._-", s2[-1]))); s2--) ;
3008 if (strnNE(s2-4,"perl",4) && strnNE(s-9,"perl",4)) /* sanity check */
3009 Perl_croak(aTHX_ "Not a perl script");
3010 while (*s == ' ' || *s == '\t') s++;
3012 * #! arg must be what we saw above. They can invoke it by
3013 * mentioning suidperl explicitly, but they may not add any strange
3014 * arguments beyond what #! says if they do invoke suidperl that way.
3016 len = strlen(validarg);
3017 if (strEQ(validarg," PHOOEY ") ||
3018 strnNE(s,validarg,len) || !isSPACE(s[len]))
3019 Perl_croak(aTHX_ "Args must match #! line");
3022 if (PL_euid != PL_uid && (PL_statbuf.st_mode & S_ISUID) &&
3023 PL_euid == PL_statbuf.st_uid)
3025 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
3026 FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
3027 #endif /* IAMSUID */
3029 if (PL_euid) { /* oops, we're not the setuid root perl */
3030 (void)PerlIO_close(PL_rsfp);
3033 PerlProc_execv(Perl_form(aTHX_ "%s/sperl"PERL_FS_VER_FMT, BIN_EXP,
3034 (int)PERL_REVISION, (int)PERL_VERSION,
3035 (int)PERL_SUBVERSION), PL_origargv);
3037 Perl_croak(aTHX_ "Can't do setuid\n");
3040 if (PL_statbuf.st_mode & S_ISGID && PL_statbuf.st_gid != PL_egid) {
3042 (void)setegid(PL_statbuf.st_gid);
3045 (void)setregid((Gid_t)-1,PL_statbuf.st_gid);
3047 #ifdef HAS_SETRESGID
3048 (void)setresgid((Gid_t)-1,PL_statbuf.st_gid,(Gid_t)-1);
3050 PerlProc_setgid(PL_statbuf.st_gid);
3054 if (PerlProc_getegid() != PL_statbuf.st_gid)
3055 Perl_croak(aTHX_ "Can't do setegid!\n");
3057 if (PL_statbuf.st_mode & S_ISUID) {
3058 if (PL_statbuf.st_uid != PL_euid)
3060 (void)seteuid(PL_statbuf.st_uid); /* all that for this */
3063 (void)setreuid((Uid_t)-1,PL_statbuf.st_uid);
3065 #ifdef HAS_SETRESUID
3066 (void)setresuid((Uid_t)-1,PL_statbuf.st_uid,(Uid_t)-1);
3068 PerlProc_setuid(PL_statbuf.st_uid);
3072 if (PerlProc_geteuid() != PL_statbuf.st_uid)
3073 Perl_croak(aTHX_ "Can't do seteuid!\n");
3075 else if (PL_uid) { /* oops, mustn't run as root */
3077 (void)seteuid((Uid_t)PL_uid);
3080 (void)setreuid((Uid_t)-1,(Uid_t)PL_uid);
3082 #ifdef HAS_SETRESUID
3083 (void)setresuid((Uid_t)-1,(Uid_t)PL_uid,(Uid_t)-1);
3085 PerlProc_setuid((Uid_t)PL_uid);
3089 if (PerlProc_geteuid() != PL_uid)
3090 Perl_croak(aTHX_ "Can't do seteuid!\n");
3093 if (!cando(S_IXUSR,TRUE,&PL_statbuf))
3094 Perl_croak(aTHX_ "Permission denied\n"); /* they can't do this */
3097 else if (PL_preprocess)
3098 Perl_croak(aTHX_ "-P not allowed for setuid/setgid script\n");
3099 else if (fdscript >= 0)
3100 Perl_croak(aTHX_ "fd script not allowed in suidperl\n");
3102 Perl_croak(aTHX_ "Script is not setuid/setgid in suidperl\n");
3104 /* We absolutely must clear out any saved ids here, so we */
3105 /* exec the real perl, substituting fd script for scriptname. */
3106 /* (We pass script name as "subdir" of fd, which perl will grok.) */
3107 PerlIO_rewind(PL_rsfp);
3108 PerlLIO_lseek(PerlIO_fileno(PL_rsfp),(Off_t)0,0); /* just in case rewind didn't */
3109 for (which = 1; PL_origargv[which] && PL_origargv[which] != scriptname; which++) ;
3110 if (!PL_origargv[which])
3111 Perl_croak(aTHX_ "Permission denied");
3112 PL_origargv[which] = savepv(Perl_form(aTHX_ "/dev/fd/%d/%s",
3113 PerlIO_fileno(PL_rsfp), PL_origargv[which]));
3114 #if defined(HAS_FCNTL) && defined(F_SETFD)
3115 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,0); /* ensure no close-on-exec */
3117 PerlProc_execv(Perl_form(aTHX_ "%s/perl"PERL_FS_VER_FMT, BIN_EXP,
3118 (int)PERL_REVISION, (int)PERL_VERSION,
3119 (int)PERL_SUBVERSION), PL_origargv);/* try again */
3120 Perl_croak(aTHX_ "Can't do setuid\n");
3121 #endif /* IAMSUID */
3123 if (PL_euid != PL_uid || PL_egid != PL_gid) { /* (suidperl doesn't exist, in fact) */
3124 #ifndef SETUID_SCRIPTS_ARE_SECURE_NOW
3125 PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf); /* may be either wrapped or real suid */
3126 if ((PL_euid != PL_uid && PL_euid == PL_statbuf.st_uid && PL_statbuf.st_mode & S_ISUID)
3128 (PL_egid != PL_gid && PL_egid == PL_statbuf.st_gid && PL_statbuf.st_mode & S_ISGID)
3131 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
3132 FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
3133 #endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
3134 /* not set-id, must be wrapped */
3140 S_find_beginning(pTHX)
3142 register char *s, *s2;
3144 /* skip forward in input to the real script? */
3147 #ifdef MACOS_TRADITIONAL
3148 /* Since the Mac OS does not honor #! arguments for us, we do it ourselves */
3150 while (PL_doextract || gMacPerl_AlwaysExtract) {
3151 if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == Nullch) {
3152 if (!gMacPerl_AlwaysExtract)
3153 Perl_croak(aTHX_ "No Perl script found in input\n");
3155 if (PL_doextract) /* require explicit override ? */
3156 if (!OverrideExtract(PL_origfilename))
3157 Perl_croak(aTHX_ "User aborted script\n");
3159 PL_doextract = FALSE;
3161 /* Pater peccavi, file does not have #! */
3162 PerlIO_rewind(PL_rsfp);
3167 while (PL_doextract) {
3168 if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == Nullch)
3169 Perl_croak(aTHX_ "No Perl script found in input\n");
3172 if (*s == '#' && s[1] == '!' && ((s = instr(s,"perl")) || (s = instr(s2,"PERL")))) {
3173 PerlIO_ungetc(PL_rsfp, '\n'); /* to keep line count right */
3174 PL_doextract = FALSE;
3175 while (*s && !(isSPACE (*s) || *s == '#')) s++;
3177 while (*s == ' ' || *s == '\t') s++;
3179 while (isDIGIT(s2[-1]) || strchr("-._", s2[-1])) s2--;
3180 if (strnEQ(s2-4,"perl",4))
3182 while ((s = moreswitches(s)))
3185 #ifdef MACOS_TRADITIONAL
3196 PL_uid = PerlProc_getuid();
3197 PL_euid = PerlProc_geteuid();
3198 PL_gid = PerlProc_getgid();
3199 PL_egid = PerlProc_getegid();
3201 PL_uid |= PL_gid << 16;
3202 PL_euid |= PL_egid << 16;
3204 PL_tainting |= (PL_uid && (PL_euid != PL_uid || PL_egid != PL_gid));
3208 S_forbid_setid(pTHX_ char *s)
3210 if (PL_euid != PL_uid)
3211 Perl_croak(aTHX_ "No %s allowed while running setuid", s);
3212 if (PL_egid != PL_gid)
3213 Perl_croak(aTHX_ "No %s allowed while running setgid", s);
3217 Perl_init_debugger(pTHX)
3219 HV *ostash = PL_curstash;
3221 PL_curstash = PL_debstash;
3222 PL_dbargs = GvAV(gv_AVadd((gv_fetchpv("args", GV_ADDMULTI, SVt_PVAV))));
3223 AvREAL_off(PL_dbargs);
3224 PL_DBgv = gv_fetchpv("DB", GV_ADDMULTI, SVt_PVGV);
3225 PL_DBline = gv_fetchpv("dbline", GV_ADDMULTI, SVt_PVAV);
3226 PL_DBsub = gv_HVadd(gv_fetchpv("sub", GV_ADDMULTI, SVt_PVHV));
3227 sv_upgrade(GvSV(PL_DBsub), SVt_IV); /* IVX accessed if PERLDB_SUB_NN */
3228 PL_DBsingle = GvSV((gv_fetchpv("single", GV_ADDMULTI, SVt_PV)));
3229 sv_setiv(PL_DBsingle, 0);
3230 PL_DBtrace = GvSV((gv_fetchpv("trace", GV_ADDMULTI, SVt_PV)));
3231 sv_setiv(PL_DBtrace, 0);
3232 PL_DBsignal = GvSV((gv_fetchpv("signal", GV_ADDMULTI, SVt_PV)));
3233 sv_setiv(PL_DBsignal, 0);
3234 PL_curstash = ostash;
3237 #ifndef STRESS_REALLOC
3238 #define REASONABLE(size) (size)
3240 #define REASONABLE(size) (1) /* unreasonable */
3244 Perl_init_stacks(pTHX)
3246 /* start with 128-item stack and 8K cxstack */
3247 PL_curstackinfo = new_stackinfo(REASONABLE(128),
3248 REASONABLE(8192/sizeof(PERL_CONTEXT) - 1));
3249 PL_curstackinfo->si_type = PERLSI_MAIN;
3250 PL_curstack = PL_curstackinfo->si_stack;
3251 PL_mainstack = PL_curstack; /* remember in case we switch stacks */
3253 PL_stack_base = AvARRAY(PL_curstack);
3254 PL_stack_sp = PL_stack_base;
3255 PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
3257 New(50,PL_tmps_stack,REASONABLE(128),SV*);
3260 PL_tmps_max = REASONABLE(128);
3262 New(54,PL_markstack,REASONABLE(32),I32);
3263 PL_markstack_ptr = PL_markstack;
3264 PL_markstack_max = PL_markstack + REASONABLE(32);
3268 New(54,PL_scopestack,REASONABLE(32),I32);
3269 PL_scopestack_ix = 0;
3270 PL_scopestack_max = REASONABLE(32);
3272 New(54,PL_savestack,REASONABLE(128),ANY);
3273 PL_savestack_ix = 0;
3274 PL_savestack_max = REASONABLE(128);
3276 New(54,PL_retstack,REASONABLE(16),OP*);
3278 PL_retstack_max = REASONABLE(16);
3286 while (PL_curstackinfo->si_next)
3287 PL_curstackinfo = PL_curstackinfo->si_next;
3288 while (PL_curstackinfo) {
3289 PERL_SI *p = PL_curstackinfo->si_prev;
3290 /* curstackinfo->si_stack got nuked by sv_free_arenas() */
3291 Safefree(PL_curstackinfo->si_cxstack);
3292 Safefree(PL_curstackinfo);
3293 PL_curstackinfo = p;
3295 Safefree(PL_tmps_stack);
3296 Safefree(PL_markstack);
3297 Safefree(PL_scopestack);
3298 Safefree(PL_savestack);
3299 Safefree(PL_retstack);
3308 lex_start(PL_linestr);
3310 PL_subname = newSVpvn("main",4);
3314 S_init_predump_symbols(pTHX)
3319 sv_setpvn(get_sv("\"", TRUE), " ", 1);
3320 PL_stdingv = gv_fetchpv("STDIN",TRUE, SVt_PVIO);
3321 GvMULTI_on(PL_stdingv);
3322 io = GvIOp(PL_stdingv);
3323 IoTYPE(io) = IoTYPE_RDONLY;
3324 IoIFP(io) = PerlIO_stdin();
3325 tmpgv = gv_fetchpv("stdin",TRUE, SVt_PV);
3327 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
3329 tmpgv = gv_fetchpv("STDOUT",TRUE, SVt_PVIO);
3332 IoTYPE(io) = IoTYPE_WRONLY;
3333 IoOFP(io) = IoIFP(io) = PerlIO_stdout();
3335 tmpgv = gv_fetchpv("stdout",TRUE, SVt_PV);
3337 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
3339 PL_stderrgv = gv_fetchpv("STDERR",TRUE, SVt_PVIO);
3340 GvMULTI_on(PL_stderrgv);
3341 io = GvIOp(PL_stderrgv);
3342 IoTYPE(io) = IoTYPE_WRONLY;
3343 IoOFP(io) = IoIFP(io) = PerlIO_stderr();
3344 tmpgv = gv_fetchpv("stderr",TRUE, SVt_PV);
3346 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
3348 PL_statname = NEWSV(66,0); /* last filename we did stat on */
3351 Safefree(PL_osname);
3352 PL_osname = savepv(OSNAME);
3356 S_init_postdump_symbols(pTHX_ register int argc, register char **argv, register char **env)
3361 #ifdef NEED_ENVIRON_DUP_FOR_MODIFY
3362 char **dup_env_base = 0;
3363 int dup_env_count = 0;
3366 argc--,argv++; /* skip name of script */
3367 if (PL_doswitches) {
3368 for (; argc > 0 && **argv == '-'; argc--,argv++) {
3371 if (argv[0][1] == '-' && !argv[0][2]) {
3375 if ((s = strchr(argv[0], '='))) {
3377 sv_setpv(GvSV(gv_fetchpv(argv[0]+1,TRUE, SVt_PV)),s);
3380 sv_setiv(GvSV(gv_fetchpv(argv[0]+1,TRUE, SVt_PV)),1);
3383 PL_toptarget = NEWSV(0,0);
3384 sv_upgrade(PL_toptarget, SVt_PVFM);
3385 sv_setpvn(PL_toptarget, "", 0);
3386 PL_bodytarget = NEWSV(0,0);
3387 sv_upgrade(PL_bodytarget, SVt_PVFM);
3388 sv_setpvn(PL_bodytarget, "", 0);
3389 PL_formtarget = PL_bodytarget;
3392 if ((tmpgv = gv_fetchpv("0",TRUE, SVt_PV))) {
3393 #ifdef MACOS_TRADITIONAL
3394 /* $0 is not majick on a Mac */
3395 sv_setpv(GvSV(tmpgv),MacPerl_MPWFileName(PL_origfilename));
3397 sv_setpv(GvSV(tmpgv),PL_origfilename);
3398 magicname("0", "0", 1);
3401 if ((tmpgv = gv_fetchpv("\030",TRUE, SVt_PV)))
3403 sv_setpv(GvSV(tmpgv), os2_execname(aTHX));
3405 sv_setpv(GvSV(tmpgv),PL_origargv[0]);
3407 if ((PL_argvgv = gv_fetchpv("ARGV",TRUE, SVt_PVAV))) {
3408 GvMULTI_on(PL_argvgv);
3409 (void)gv_AVadd(PL_argvgv);
3410 av_clear(GvAVn(PL_argvgv));
3411 for (; argc > 0; argc--,argv++) {
3412 SV *sv = newSVpv(argv[0],0);
3413 av_push(GvAVn(PL_argvgv),sv);
3414 if (PL_widesyscalls)
3415 (void)sv_utf8_decode(sv);
3418 if ((PL_envgv = gv_fetchpv("ENV",TRUE, SVt_PVHV))) {
3420 GvMULTI_on(PL_envgv);
3421 hv = GvHVn(PL_envgv);
3422 hv_magic(hv, Nullgv, PERL_MAGIC_env);
3423 #ifdef USE_ENVIRON_ARRAY
3424 /* Note that if the supplied env parameter is actually a copy
3425 of the global environ then it may now point to free'd memory
3426 if the environment has been modified since. To avoid this
3427 problem we treat env==NULL as meaning 'use the default'
3432 environ[0] = Nullch;
3433 #ifdef NEED_ENVIRON_DUP_FOR_MODIFY
3436 for (env_base = env; *env; env++)
3438 if ((dup_env_base = (char **)
3439 safesysmalloc( sizeof(char *) * (dup_env_count+1) ))) {
3441 for (env = env_base, dup_env = dup_env_base;
3444 /* With environ one needs to use safesysmalloc(). */
3445 *dup_env = safesysmalloc(strlen(*env) + 1);
3446 (void)strcpy(*dup_env, *env);
3452 #endif /* NEED_ENVIRON_DUP_FOR_MODIFY */
3454 for (; *env; env++) {
3455 if (!(s = strchr(*env,'=')))
3461 sv = newSVpv(s--,0);
3462 (void)hv_store(hv, *env, s - *env, sv, 0);
3465 #ifdef NEED_ENVIRON_DUP_FOR_MODIFY
3468 for (dup_env = dup_env_base; *dup_env; dup_env++)
3469 safesysfree(*dup_env);
3470 safesysfree(dup_env_base);
3472 #endif /* NEED_ENVIRON_DUP_FOR_MODIFY */
3473 #endif /* USE_ENVIRON_ARRAY */
3476 if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
3477 sv_setiv(GvSV(tmpgv), (IV)PerlProc_getpid());
3481 S_init_perllib(pTHX)
3486 s = PerlEnv_getenv("PERL5LIB");
3488 incpush(s, TRUE, TRUE);
3490 incpush(PerlEnv_getenv("PERLLIB"), FALSE, FALSE);
3492 /* Treat PERL5?LIB as a possible search list logical name -- the
3493 * "natural" VMS idiom for a Unix path string. We allow each
3494 * element to be a set of |-separated directories for compatibility.
3498 if (my_trnlnm("PERL5LIB",buf,0))
3499 do { incpush(buf,TRUE,TRUE); } while (my_trnlnm("PERL5LIB",buf,++idx));
3501 while (my_trnlnm("PERLLIB",buf,idx++)) incpush(buf,FALSE,FALSE);
3505 /* Use the ~-expanded versions of APPLLIB (undocumented),
3506 ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB
3509 incpush(APPLLIB_EXP, TRUE, TRUE);
3513 incpush(ARCHLIB_EXP, FALSE, FALSE);
3515 #ifdef MACOS_TRADITIONAL
3517 struct stat tmpstatbuf;
3518 SV * privdir = NEWSV(55, 0);
3519 char * macperl = PerlEnv_getenv("MACPERL");
3524 Perl_sv_setpvf(aTHX_ privdir, "%slib:", macperl);
3525 if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
3526 incpush(SvPVX(privdir), TRUE, FALSE);
3527 Perl_sv_setpvf(aTHX_ privdir, "%ssite_perl:", macperl);
3528 if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
3529 incpush(SvPVX(privdir), TRUE, FALSE);
3531 SvREFCNT_dec(privdir);
3534 incpush(":", FALSE, FALSE);
3537 # define PRIVLIB_EXP "/usr/local/lib/perl5:/usr/local/lib/perl"
3540 incpush(PRIVLIB_EXP, TRUE, FALSE);
3542 incpush(PRIVLIB_EXP, FALSE, FALSE);
3546 /* sitearch is always relative to sitelib on Windows for
3547 * DLL-based path intuition to work correctly */
3548 # if !defined(WIN32)
3549 incpush(SITEARCH_EXP, FALSE, FALSE);
3555 incpush(SITELIB_EXP, TRUE, FALSE); /* this picks up sitearch as well */
3557 incpush(SITELIB_EXP, FALSE, FALSE);
3561 #ifdef SITELIB_STEM /* Search for version-specific dirs below here */
3562 incpush(SITELIB_STEM, FALSE, TRUE);
3565 #ifdef PERL_VENDORARCH_EXP
3566 /* vendorarch is always relative to vendorlib on Windows for
3567 * DLL-based path intuition to work correctly */
3568 # if !defined(WIN32)
3569 incpush(PERL_VENDORARCH_EXP, FALSE, FALSE);
3573 #ifdef PERL_VENDORLIB_EXP
3575 incpush(PERL_VENDORLIB_EXP, TRUE, FALSE); /* this picks up vendorarch as well */
3577 incpush(PERL_VENDORLIB_EXP, FALSE, FALSE);
3581 #ifdef PERL_VENDORLIB_STEM /* Search for version-specific dirs below here */
3582 incpush(PERL_VENDORLIB_STEM, FALSE, TRUE);
3585 #ifdef PERL_OTHERLIBDIRS
3586 incpush(PERL_OTHERLIBDIRS, TRUE, TRUE);
3590 incpush(".", FALSE, FALSE);
3591 #endif /* MACOS_TRADITIONAL */
3594 #if defined(DOSISH) || defined(EPOC)
3595 # define PERLLIB_SEP ';'
3598 # define PERLLIB_SEP '|'
3600 # if defined(MACOS_TRADITIONAL)
3601 # define PERLLIB_SEP ','
3603 # define PERLLIB_SEP ':'
3607 #ifndef PERLLIB_MANGLE
3608 # define PERLLIB_MANGLE(s,n) (s)
3612 S_incpush(pTHX_ char *p, int addsubdirs, int addoldvers)
3614 SV *subdir = Nullsv;
3619 if (addsubdirs || addoldvers) {
3620 subdir = sv_newmortal();
3623 /* Break at all separators */
3625 SV *libdir = NEWSV(55,0);
3628 /* skip any consecutive separators */
3629 while ( *p == PERLLIB_SEP ) {
3630 /* Uncomment the next line for PATH semantics */
3631 /* av_push(GvAVn(PL_incgv), newSVpvn(".", 1)); */
3635 if ( (s = strchr(p, PERLLIB_SEP)) != Nullch ) {
3636 sv_setpvn(libdir, PERLLIB_MANGLE(p, (STRLEN)(s - p)),
3641 sv_setpv(libdir, PERLLIB_MANGLE(p, 0));
3642 p = Nullch; /* break out */
3644 #ifdef MACOS_TRADITIONAL
3645 if (!strchr(SvPVX(libdir), ':'))
3646 sv_insert(libdir, 0, 0, ":", 1);
3647 if (SvPVX(libdir)[SvCUR(libdir)-1] != ':')
3648 sv_catpv(libdir, ":");
3652 * BEFORE pushing libdir onto @INC we may first push version- and
3653 * archname-specific sub-directories.
3655 if (addsubdirs || addoldvers) {
3656 #ifdef PERL_INC_VERSION_LIST
3657 /* Configure terminates PERL_INC_VERSION_LIST with a NULL */
3658 const char *incverlist[] = { PERL_INC_VERSION_LIST };
3659 const char **incver;
3661 struct stat tmpstatbuf;
3666 if ((unix = tounixspec_ts(SvPV(libdir,len),Nullch)) != Nullch) {
3668 while (unix[len-1] == '/') len--; /* Cosmetic */
3669 sv_usepvn(libdir,unix,len);
3672 PerlIO_printf(Perl_error_log,
3673 "Failed to unixify @INC element \"%s\"\n",
3677 #ifdef MACOS_TRADITIONAL
3678 #define PERL_AV_SUFFIX_FMT ""
3679 #define PERL_ARCH_FMT "%s:"
3680 #define PERL_ARCH_FMT_PATH PERL_FS_VER_FMT PERL_AV_SUFFIX_FMT
3682 #define PERL_AV_SUFFIX_FMT "/"
3683 #define PERL_ARCH_FMT "/%s"
3684 #define PERL_ARCH_FMT_PATH PERL_AV_SUFFIX_FMT PERL_FS_VER_FMT
3686 /* .../version/archname if -d .../version/archname */
3687 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH PERL_ARCH_FMT,
3689 (int)PERL_REVISION, (int)PERL_VERSION,
3690 (int)PERL_SUBVERSION, ARCHNAME);
3691 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3692 S_ISDIR(tmpstatbuf.st_mode))
3693 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3695 /* .../version if -d .../version */
3696 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH, libdir,
3697 (int)PERL_REVISION, (int)PERL_VERSION,
3698 (int)PERL_SUBVERSION);
3699 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3700 S_ISDIR(tmpstatbuf.st_mode))
3701 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3703 /* .../archname if -d .../archname */
3704 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, ARCHNAME);
3705 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3706 S_ISDIR(tmpstatbuf.st_mode))
3707 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3710 #ifdef PERL_INC_VERSION_LIST
3712 for (incver = incverlist; *incver; incver++) {
3713 /* .../xxx if -d .../xxx */
3714 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, *incver);
3715 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3716 S_ISDIR(tmpstatbuf.st_mode))
3717 av_push(GvAVn(PL_incgv), newSVsv(subdir));
3723 /* finally push this lib directory on the end of @INC */
3724 av_push(GvAVn(PL_incgv), libdir);
3728 #ifdef USE_5005THREADS
3729 STATIC struct perl_thread *
3730 S_init_main_thread(pTHX)
3732 #if !defined(PERL_IMPLICIT_CONTEXT)
3733 struct perl_thread *thr;
3737 Newz(53, thr, 1, struct perl_thread);
3738 PL_curcop = &PL_compiling;
3739 thr->interp = PERL_GET_INTERP;
3740 thr->cvcache = newHV();
3741 thr->threadsv = newAV();
3742 /* thr->threadsvp is set when find_threadsv is called */
3743 thr->specific = newAV();
3744 thr->flags = THRf_R_JOINABLE;
3745 MUTEX_INIT(&thr->mutex);
3746 /* Handcraft thrsv similarly to mess_sv */
3747 New(53, PL_thrsv, 1, SV);
3748 Newz(53, xpv, 1, XPV);
3749 SvFLAGS(PL_thrsv) = SVt_PV;
3750 SvANY(PL_thrsv) = (void*)xpv;
3751 SvREFCNT(PL_thrsv) = 1 << 30; /* practically infinite */
3752 SvPVX(PL_thrsv) = (char*)thr;
3753 SvCUR_set(PL_thrsv, sizeof(thr));
3754 SvLEN_set(PL_thrsv, sizeof(thr));
3755 *SvEND(PL_thrsv) = '\0'; /* in the trailing_nul field */
3756 thr->oursv = PL_thrsv;
3757 PL_chopset = " \n-";
3760 MUTEX_LOCK(&PL_threads_mutex);
3766 MUTEX_UNLOCK(&PL_threads_mutex);
3768 #ifdef HAVE_THREAD_INTERN
3769 Perl_init_thread_intern(thr);
3772 #ifdef SET_THREAD_SELF
3773 SET_THREAD_SELF(thr);
3775 thr->self = pthread_self();
3776 #endif /* SET_THREAD_SELF */
3780 * These must come after the thread self setting
3781 * because sv_setpvn does SvTAINT and the taint
3782 * fields thread selfness being set.
3784 PL_toptarget = NEWSV(0,0);
3785 sv_upgrade(PL_toptarget, SVt_PVFM);
3786 sv_setpvn(PL_toptarget, "", 0);
3787 PL_bodytarget = NEWSV(0,0);
3788 sv_upgrade(PL_bodytarget, SVt_PVFM);
3789 sv_setpvn(PL_bodytarget, "", 0);
3790 PL_formtarget = PL_bodytarget;
3791 thr->errsv = newSVpvn("", 0);
3792 (void) find_threadsv("@"); /* Ensure $@ is initialised early */
3795 PL_peepp = MEMBER_TO_FPTR(Perl_peep);
3796 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3797 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3798 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3799 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3800 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3802 PL_reginterp_cnt = 0;
3806 #endif /* USE_5005THREADS */
3809 Perl_call_list(pTHX_ I32 oldscope, AV *paramList)
3812 line_t oldline = CopLINE(PL_curcop);
3818 while (AvFILL(paramList) >= 0) {
3819 cv = (CV*)av_shift(paramList);
3820 if (PL_savebegin && (paramList == PL_beginav)) {
3821 /* save PL_beginav for compiler */
3822 if (! PL_beginav_save)
3823 PL_beginav_save = newAV();
3824 av_push(PL_beginav_save, (SV*)cv);
3828 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3829 CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_list_body), cv);
3835 #ifndef PERL_FLEXIBLE_EXCEPTIONS
3839 (void)SvPV(atsv, len);
3842 PL_curcop = &PL_compiling;
3843 CopLINE_set(PL_curcop, oldline);
3844 if (paramList == PL_beginav)
3845 sv_catpv(atsv, "BEGIN failed--compilation aborted");
3847 Perl_sv_catpvf(aTHX_ atsv,
3848 "%s failed--call queue aborted",
3849 paramList == PL_checkav ? "CHECK"
3850 : paramList == PL_initav ? "INIT"
3852 while (PL_scopestack_ix > oldscope)
3855 Perl_croak(aTHX_ "%s", SvPVx(atsv, n_a));
3862 /* my_exit() was called */
3863 while (PL_scopestack_ix > oldscope)
3866 PL_curstash = PL_defstash;
3867 PL_curcop = &PL_compiling;
3868 CopLINE_set(PL_curcop, oldline);
3870 if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED)) {
3871 if (paramList == PL_beginav)
3872 Perl_croak(aTHX_ "BEGIN failed--compilation aborted");
3874 Perl_croak(aTHX_ "%s failed--call queue aborted",
3875 paramList == PL_checkav ? "CHECK"
3876 : paramList == PL_initav ? "INIT"
3883 PL_curcop = &PL_compiling;
3884 CopLINE_set(PL_curcop, oldline);
3887 PerlIO_printf(Perl_error_log, "panic: restartop\n");
3895 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3897 S_vcall_list_body(pTHX_ va_list args)
3899 CV *cv = va_arg(args, CV*);
3900 return call_list_body(cv);
3905 S_call_list_body(pTHX_ CV *cv)
3907 PUSHMARK(PL_stack_sp);
3908 call_sv((SV*)cv, G_EVAL|G_DISCARD);
3913 Perl_my_exit(pTHX_ U32 status)
3915 DEBUG_S(PerlIO_printf(Perl_debug_log, "my_exit: thread %p, status %lu\n",
3916 thr, (unsigned long) status));
3925 STATUS_NATIVE_SET(status);
3932 Perl_my_failure_exit(pTHX)
3935 if (vaxc$errno & 1) {
3936 if (STATUS_NATIVE & 1) /* fortuitiously includes "-1" */
3937 STATUS_NATIVE_SET(44);
3940 if (!vaxc$errno && errno) /* unlikely */
3941 STATUS_NATIVE_SET(44);
3943 STATUS_NATIVE_SET(vaxc$errno);
3948 STATUS_POSIX_SET(errno);
3950 exitstatus = STATUS_POSIX >> 8;
3951 if (exitstatus & 255)
3952 STATUS_POSIX_SET(exitstatus);
3954 STATUS_POSIX_SET(255);
3961 S_my_exit_jump(pTHX)
3963 register PERL_CONTEXT *cx;
3968 SvREFCNT_dec(PL_e_script);
3969 PL_e_script = Nullsv;
3972 POPSTACK_TO(PL_mainstack);
3973 if (cxstack_ix >= 0) {
3976 POPBLOCK(cx,PL_curpm);
3984 read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen)
3987 p = SvPVX(PL_e_script);
3988 nl = strchr(p, '\n');
3989 nl = (nl) ? nl+1 : SvEND(PL_e_script);
3991 filter_del(read_e_script);
3994 sv_catpvn(buf_sv, p, nl-p);
3995 sv_chop(PL_e_script, nl);