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