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