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