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