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