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