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