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