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