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