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