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