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