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