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