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