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