RE: Win32 Failure, was Re: perl@11278 - LAST CALL FOR 5.7.2
[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
62 /* this is called in parent before the fork() */
63 void
64 Perl_atfork_lock(void)
65 {
66     /* locks must be held in locking order (if any) */
67 #ifdef MYMALLOC
68     MUTEX_LOCK(&PL_malloc_mutex);
69 #endif
70     OP_REFCNT_LOCK;
71 }
72
73 /* this is called in both parent and child after the fork() */
74 void
75 Perl_atfork_unlock(void)
76 {
77     /* locks must be released in same order as in S_atfork_lock() */
78 #ifdef MYMALLOC
79     MUTEX_UNLOCK(&PL_malloc_mutex);
80 #endif
81     OP_REFCNT_UNLOCK;
82 }
83
84 #  define INIT_TLS_AND_INTERP \
85     STMT_START {                                \
86         if (!PL_curinterp) {                    \
87             PERL_SET_INTERP(my_perl);           \
88             INIT_THREADS;                       \
89             ALLOC_THREAD_KEY;                   \
90             PERL_SET_THX(my_perl);              \
91             OP_REFCNT_INIT;                     \
92         }                                       \
93         else {                                  \
94             PERL_SET_THX(my_perl);              \
95         }                                       \
96     } STMT_END
97 #  else
98 #  define INIT_TLS_AND_INTERP \
99     STMT_START {                                \
100         if (!PL_curinterp) {                    \
101             PERL_SET_INTERP(my_perl);           \
102         }                                       \
103         PERL_SET_THX(my_perl);                  \
104     } STMT_END
105 #  endif
106 #endif
107
108 #ifdef PERL_IMPLICIT_SYS
109 PerlInterpreter *
110 perl_alloc_using(struct IPerlMem* ipM, struct IPerlMem* ipMS,
111                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
112                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
113                  struct IPerlDir* ipD, struct IPerlSock* ipS,
114                  struct IPerlProc* ipP)
115 {
116     PerlInterpreter *my_perl;
117 #ifdef PERL_OBJECT
118     my_perl = (PerlInterpreter*)new(ipM) CPerlObj(ipM, ipMS, ipMP, ipE, ipStd,
119                                                   ipLIO, ipD, ipS, ipP);
120     INIT_TLS_AND_INTERP;
121 #else
122     /* New() needs interpreter, so call malloc() instead */
123     my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
124     INIT_TLS_AND_INTERP;
125     Zero(my_perl, 1, PerlInterpreter);
126     PL_Mem = ipM;
127     PL_MemShared = ipMS;
128     PL_MemParse = ipMP;
129     PL_Env = ipE;
130     PL_StdIO = ipStd;
131     PL_LIO = ipLIO;
132     PL_Dir = ipD;
133     PL_Sock = ipS;
134     PL_Proc = ipP;
135 #endif
136
137     return my_perl;
138 }
139 #else
140
141 /*
142 =for apidoc perl_alloc
143
144 Allocates a new Perl interpreter.  See L<perlembed>.
145
146 =cut
147 */
148
149 PerlInterpreter *
150 perl_alloc(void)
151 {
152     PerlInterpreter *my_perl;
153
154     /* New() needs interpreter, so call malloc() instead */
155     my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
156
157     INIT_TLS_AND_INTERP;
158     Zero(my_perl, 1, PerlInterpreter);
159     return my_perl;
160 }
161 #endif /* PERL_IMPLICIT_SYS */
162
163 /*
164 =for apidoc perl_construct
165
166 Initializes a new Perl interpreter.  See L<perlembed>.
167
168 =cut
169 */
170
171 void
172 perl_construct(pTHXx)
173 {
174 #ifdef USE_THREADS
175 #ifndef FAKE_THREADS
176     struct perl_thread *thr = NULL;
177 #endif /* FAKE_THREADS */
178 #endif /* USE_THREADS */
179
180 #ifdef MULTIPLICITY
181     init_interp();
182     PL_perl_destruct_level = 1;
183 #else
184    if (PL_perl_destruct_level > 0)
185        init_interp();
186 #endif
187
188    /* Init the real globals (and main thread)? */
189     if (!PL_linestr) {
190 #ifdef USE_THREADS
191         MUTEX_INIT(&PL_sv_mutex);
192         /*
193          * Safe to use basic SV functions from now on (though
194          * not things like mortals or tainting yet).
195          */
196         MUTEX_INIT(&PL_eval_mutex);
197         COND_INIT(&PL_eval_cond);
198         MUTEX_INIT(&PL_threads_mutex);
199         COND_INIT(&PL_nthreads_cond);
200 #  ifdef EMULATE_ATOMIC_REFCOUNTS
201         MUTEX_INIT(&PL_svref_mutex);
202 #  endif /* EMULATE_ATOMIC_REFCOUNTS */
203         
204         MUTEX_INIT(&PL_cred_mutex);
205         MUTEX_INIT(&PL_sv_lock_mutex);
206         MUTEX_INIT(&PL_fdpid_mutex);
207
208         thr = init_main_thread();
209 #endif /* USE_THREADS */
210
211 #ifdef PERL_FLEXIBLE_EXCEPTIONS
212         PL_protect = MEMBER_TO_FPTR(Perl_default_protect); /* for exceptions */
213 #endif
214
215         PL_curcop = &PL_compiling;      /* needed by ckWARN, right away */
216
217         PL_linestr = NEWSV(65,79);
218         sv_upgrade(PL_linestr,SVt_PVIV);
219
220         if (!SvREADONLY(&PL_sv_undef)) {
221             /* set read-only and try to insure than we wont see REFCNT==0
222                very often */
223
224             SvREADONLY_on(&PL_sv_undef);
225             SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
226
227             sv_setpv(&PL_sv_no,PL_No);
228             SvNV(&PL_sv_no);
229             SvREADONLY_on(&PL_sv_no);
230             SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
231
232             sv_setpv(&PL_sv_yes,PL_Yes);
233             SvNV(&PL_sv_yes);
234             SvREADONLY_on(&PL_sv_yes);
235             SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;
236         }
237
238 #ifdef PERL_OBJECT
239         /* TODO: */
240         /* PL_sighandlerp = sighandler; */
241 #else
242         PL_sighandlerp = Perl_sighandler;
243 #endif
244         PL_pidstatus = newHV();
245
246 #ifdef MSDOS
247         /*
248          * There is no way we can refer to them from Perl so close them to save
249          * space.  The other alternative would be to provide STDAUX and STDPRN
250          * filehandles.
251          */
252         (void)PerlIO_close(PerlIO_importFILE(stdaux, 0));
253         (void)PerlIO_close(PerlIO_importFILE(stdprn, 0));
254 #endif
255     }
256
257     PL_nrs = newSVpvn("\n", 1);
258     PL_rs = SvREFCNT_inc(PL_nrs);
259
260     init_stacks();
261
262     init_ids();
263     PL_lex_state = LEX_NOTPARSING;
264
265     JMPENV_BOOTSTRAP;
266     STATUS_ALL_SUCCESS;
267
268     init_i18nl10n(1);
269     SET_NUMERIC_STANDARD();
270
271     {
272         U8 *s;
273         PL_patchlevel = NEWSV(0,4);
274         (void)SvUPGRADE(PL_patchlevel, SVt_PVNV);
275         if (PERL_REVISION > 127 || PERL_VERSION > 127 || PERL_SUBVERSION > 127)
276             SvGROW(PL_patchlevel, UTF8_MAXLEN*3+1);
277         s = (U8*)SvPVX(PL_patchlevel);
278         /* Build version strings using "native" characters */
279         s = uvchr_to_utf8(s, (UV)PERL_REVISION);
280         s = uvchr_to_utf8(s, (UV)PERL_VERSION);
281         s = uvchr_to_utf8(s, (UV)PERL_SUBVERSION);
282         *s = '\0';
283         SvCUR_set(PL_patchlevel, s - (U8*)SvPVX(PL_patchlevel));
284         SvPOK_on(PL_patchlevel);
285         SvNVX(PL_patchlevel) = (NV)PERL_REVISION
286                                 + ((NV)PERL_VERSION / (NV)1000)
287 #if defined(PERL_SUBVERSION) && PERL_SUBVERSION > 0
288                                 + ((NV)PERL_SUBVERSION / (NV)1000000)
289 #endif
290                                 ;
291         SvNOK_on(PL_patchlevel);        /* dual valued */
292         SvUTF8_on(PL_patchlevel);
293         SvREADONLY_on(PL_patchlevel);
294     }
295
296 #if defined(LOCAL_PATCH_COUNT)
297     PL_localpatches = local_patches;    /* For possible -v */
298 #endif
299
300 #ifdef HAVE_INTERP_INTERN
301     sys_intern_init();
302 #endif
303
304     PerlIO_init();                      /* Hook to IO system */
305
306     PL_fdpid = newAV();                 /* for remembering popen pids by fd */
307     PL_modglobal = newHV();             /* pointers to per-interpreter module globals */
308     PL_errors = newSVpvn("",0);
309 #ifdef USE_ITHREADS
310         PL_regex_padav = newAV();
311 #endif
312 #ifdef USE_REENTRANT_API
313     New(31337, PL_reentrant_buffer,1, REBUF);
314     New(31337, PL_reentrant_buffer->tmbuff,1, struct tm);
315 #endif
316     ENTER;
317 }
318
319 /*
320 =for apidoc perl_destruct
321
322 Shuts down a Perl interpreter.  See L<perlembed>.
323
324 =cut
325 */
326
327 void
328 perl_destruct(pTHXx)
329 {
330     int destruct_level;  /* 0=none, 1=full, 2=full with checks */
331     HV *hv;
332 #ifdef USE_THREADS
333     Thread t;
334     dTHX;
335 #endif /* USE_THREADS */
336
337     /* wait for all pseudo-forked children to finish */
338     PERL_WAIT_FOR_CHILDREN;
339
340 #ifdef USE_THREADS
341 #ifndef FAKE_THREADS
342     /* Pass 1 on any remaining threads: detach joinables, join zombies */
343   retry_cleanup:
344     MUTEX_LOCK(&PL_threads_mutex);
345     DEBUG_S(PerlIO_printf(Perl_debug_log,
346                           "perl_destruct: waiting for %d threads...\n",
347                           PL_nthreads - 1));
348     for (t = thr->next; t != thr; t = t->next) {
349         MUTEX_LOCK(&t->mutex);
350         switch (ThrSTATE(t)) {
351             AV *av;
352         case THRf_ZOMBIE:
353             DEBUG_S(PerlIO_printf(Perl_debug_log,
354                                   "perl_destruct: joining zombie %p\n", t));
355             ThrSETSTATE(t, THRf_DEAD);
356             MUTEX_UNLOCK(&t->mutex);
357             PL_nthreads--;
358             /*
359              * The SvREFCNT_dec below may take a long time (e.g. av
360              * may contain an object scalar whose destructor gets
361              * called) so we have to unlock threads_mutex and start
362              * all over again.
363              */
364             MUTEX_UNLOCK(&PL_threads_mutex);
365             JOIN(t, &av);
366             SvREFCNT_dec((SV*)av);
367             DEBUG_S(PerlIO_printf(Perl_debug_log,
368                                   "perl_destruct: joined zombie %p OK\n", t));
369             goto retry_cleanup;
370         case THRf_R_JOINABLE:
371             DEBUG_S(PerlIO_printf(Perl_debug_log,
372                                   "perl_destruct: detaching thread %p\n", t));
373             ThrSETSTATE(t, THRf_R_DETACHED);
374             /*
375              * We unlock threads_mutex and t->mutex in the opposite order
376              * from which we locked them just so that DETACH won't
377              * deadlock if it panics. It's only a breach of good style
378              * not a bug since they are unlocks not locks.
379              */
380             MUTEX_UNLOCK(&PL_threads_mutex);
381             DETACH(t);
382             MUTEX_UNLOCK(&t->mutex);
383             goto retry_cleanup;
384         default:
385             DEBUG_S(PerlIO_printf(Perl_debug_log,
386                                   "perl_destruct: ignoring %p (state %u)\n",
387                                   t, ThrSTATE(t)));
388             MUTEX_UNLOCK(&t->mutex);
389             /* fall through and out */
390         }
391     }
392     /* We leave the above "Pass 1" loop with threads_mutex still locked */
393
394     /* Pass 2 on remaining threads: wait for the thread count to drop to one */
395     while (PL_nthreads > 1)
396     {
397         DEBUG_S(PerlIO_printf(Perl_debug_log,
398                               "perl_destruct: final wait for %d threads\n",
399                               PL_nthreads - 1));
400         COND_WAIT(&PL_nthreads_cond, &PL_threads_mutex);
401     }
402     /* At this point, we're the last thread */
403     MUTEX_UNLOCK(&PL_threads_mutex);
404     DEBUG_S(PerlIO_printf(Perl_debug_log, "perl_destruct: armageddon has arrived\n"));
405     MUTEX_DESTROY(&PL_threads_mutex);
406     COND_DESTROY(&PL_nthreads_cond);
407     PL_nthreads--;
408 #endif /* !defined(FAKE_THREADS) */
409 #endif /* USE_THREADS */
410
411     destruct_level = PL_perl_destruct_level;
412 #ifdef DEBUGGING
413     {
414         char *s;
415         if ((s = PerlEnv_getenv("PERL_DESTRUCT_LEVEL"))) {
416             int i = atoi(s);
417             if (destruct_level < i)
418                 destruct_level = i;
419         }
420     }
421 #endif
422
423     LEAVE;
424     FREETMPS;
425
426
427     /* We must account for everything.  */
428
429     /* Destroy the main CV and syntax tree */
430     if (PL_main_root) {
431         PL_curpad = AvARRAY(PL_comppad);
432         op_free(PL_main_root);
433         PL_main_root = Nullop;
434     }
435     PL_curcop = &PL_compiling;
436     PL_main_start = Nullop;
437     SvREFCNT_dec(PL_main_cv);
438     PL_main_cv = Nullcv;
439     PL_dirty = TRUE;
440
441     /* Tell PerlIO we are about to tear things apart in case
442        we have layers which are using resources that should
443        be cleaned up now.
444      */
445
446     PerlIO_destruct(aTHX);
447
448     if (PL_sv_objcount) {
449         /*
450          * Try to destruct global references.  We do this first so that the
451          * destructors and destructees still exist.  Some sv's might remain.
452          * Non-referenced objects are on their own.
453          */
454         sv_clean_objs();
455     }
456
457     /* unhook hooks which will soon be, or use, destroyed data */
458     SvREFCNT_dec(PL_warnhook);
459     PL_warnhook = Nullsv;
460     SvREFCNT_dec(PL_diehook);
461     PL_diehook = Nullsv;
462
463     /* call exit list functions */
464     while (PL_exitlistlen-- > 0)
465         PL_exitlist[PL_exitlistlen].fn(aTHXo_ PL_exitlist[PL_exitlistlen].ptr);
466
467     Safefree(PL_exitlist);
468
469     if (destruct_level == 0){
470
471         DEBUG_P(debprofdump());
472
473         /* The exit() function will do everything that needs doing. */
474         return;
475     }
476
477     /* jettison our possibly duplicated environment */
478
479 #ifdef USE_ENVIRON_ARRAY
480     if (environ != PL_origenviron) {
481         I32 i;
482
483         for (i = 0; environ[i]; i++)
484             safesysfree(environ[i]);
485         /* Must use safesysfree() when working with environ. */
486         safesysfree(environ);           
487
488         environ = PL_origenviron;
489     }
490 #endif
491
492     /* loosen bonds of global variables */
493
494     if(PL_rsfp) {
495         (void)PerlIO_close(PL_rsfp);
496         PL_rsfp = Nullfp;
497     }
498
499     /* Filters for program text */
500     SvREFCNT_dec(PL_rsfp_filters);
501     PL_rsfp_filters = Nullav;
502
503     /* switches */
504     PL_preprocess   = FALSE;
505     PL_minus_n      = FALSE;
506     PL_minus_p      = FALSE;
507     PL_minus_l      = FALSE;
508     PL_minus_a      = FALSE;
509     PL_minus_F      = FALSE;
510     PL_doswitches   = FALSE;
511     PL_dowarn       = G_WARN_OFF;
512     PL_doextract    = FALSE;
513     PL_sawampersand = FALSE;    /* must save all match strings */
514     PL_unsafe       = FALSE;
515
516     Safefree(PL_inplace);
517     PL_inplace = Nullch;
518     SvREFCNT_dec(PL_patchlevel);
519
520     if (PL_e_script) {
521         SvREFCNT_dec(PL_e_script);
522         PL_e_script = Nullsv;
523     }
524
525     /* magical thingies */
526
527     SvREFCNT_dec(PL_ofs_sv);    /* $, */
528     PL_ofs_sv = Nullsv;
529
530     SvREFCNT_dec(PL_ors_sv);    /* $\ */
531     PL_ors_sv = Nullsv;
532
533     SvREFCNT_dec(PL_rs);        /* $/ */
534     PL_rs = Nullsv;
535
536     SvREFCNT_dec(PL_nrs);       /* $/ helper */
537     PL_nrs = Nullsv;
538
539     PL_multiline = 0;           /* $* */
540     Safefree(PL_osname);        /* $^O */
541     PL_osname = Nullch;
542
543     SvREFCNT_dec(PL_statname);
544     PL_statname = Nullsv;
545     PL_statgv = Nullgv;
546
547     /* defgv, aka *_ should be taken care of elsewhere */
548
549     /* clean up after study() */
550     SvREFCNT_dec(PL_lastscream);
551     PL_lastscream = Nullsv;
552     Safefree(PL_screamfirst);
553     PL_screamfirst = 0;
554     Safefree(PL_screamnext);
555     PL_screamnext  = 0;
556
557     /* float buffer */
558     Safefree(PL_efloatbuf);
559     PL_efloatbuf = Nullch;
560     PL_efloatsize = 0;
561
562     /* startup and shutdown function lists */
563     SvREFCNT_dec(PL_beginav);
564     SvREFCNT_dec(PL_endav);
565     SvREFCNT_dec(PL_checkav);
566     SvREFCNT_dec(PL_initav);
567     PL_beginav = Nullav;
568     PL_endav = Nullav;
569     PL_checkav = Nullav;
570     PL_initav = Nullav;
571
572     /* shortcuts just get cleared */
573     PL_envgv = Nullgv;
574     PL_incgv = Nullgv;
575     PL_hintgv = Nullgv;
576     PL_errgv = Nullgv;
577     PL_argvgv = Nullgv;
578     PL_argvoutgv = Nullgv;
579     PL_stdingv = Nullgv;
580     PL_stderrgv = Nullgv;
581     PL_last_in_gv = Nullgv;
582     PL_replgv = Nullgv;
583     PL_debstash = Nullhv;
584
585     /* reset so print() ends up where we expect */
586     setdefout(Nullgv);
587
588     SvREFCNT_dec(PL_argvout_stack);
589     PL_argvout_stack = Nullav;
590
591     SvREFCNT_dec(PL_modglobal);
592     PL_modglobal = Nullhv;
593     SvREFCNT_dec(PL_preambleav);
594     PL_preambleav = Nullav;
595     SvREFCNT_dec(PL_subname);
596     PL_subname = Nullsv;
597     SvREFCNT_dec(PL_linestr);
598     PL_linestr = Nullsv;
599     SvREFCNT_dec(PL_pidstatus);
600     PL_pidstatus = Nullhv;
601     SvREFCNT_dec(PL_toptarget);
602     PL_toptarget = Nullsv;
603     SvREFCNT_dec(PL_bodytarget);
604     PL_bodytarget = Nullsv;
605     PL_formtarget = Nullsv;
606
607     /* free locale stuff */
608 #ifdef USE_LOCALE_COLLATE
609     Safefree(PL_collation_name);
610     PL_collation_name = Nullch;
611 #endif
612
613 #ifdef USE_LOCALE_NUMERIC
614     Safefree(PL_numeric_name);
615     PL_numeric_name = Nullch;
616     SvREFCNT_dec(PL_numeric_radix_sv);
617 #endif
618
619     /* clear utf8 character classes */
620     SvREFCNT_dec(PL_utf8_alnum);
621     SvREFCNT_dec(PL_utf8_alnumc);
622     SvREFCNT_dec(PL_utf8_ascii);
623     SvREFCNT_dec(PL_utf8_alpha);
624     SvREFCNT_dec(PL_utf8_space);
625     SvREFCNT_dec(PL_utf8_cntrl);
626     SvREFCNT_dec(PL_utf8_graph);
627     SvREFCNT_dec(PL_utf8_digit);
628     SvREFCNT_dec(PL_utf8_upper);
629     SvREFCNT_dec(PL_utf8_lower);
630     SvREFCNT_dec(PL_utf8_print);
631     SvREFCNT_dec(PL_utf8_punct);
632     SvREFCNT_dec(PL_utf8_xdigit);
633     SvREFCNT_dec(PL_utf8_mark);
634     SvREFCNT_dec(PL_utf8_toupper);
635     SvREFCNT_dec(PL_utf8_tolower);
636     PL_utf8_alnum       = Nullsv;
637     PL_utf8_alnumc      = Nullsv;
638     PL_utf8_ascii       = Nullsv;
639     PL_utf8_alpha       = Nullsv;
640     PL_utf8_space       = Nullsv;
641     PL_utf8_cntrl       = Nullsv;
642     PL_utf8_graph       = Nullsv;
643     PL_utf8_digit       = Nullsv;
644     PL_utf8_upper       = Nullsv;
645     PL_utf8_lower       = Nullsv;
646     PL_utf8_print       = Nullsv;
647     PL_utf8_punct       = Nullsv;
648     PL_utf8_xdigit      = Nullsv;
649     PL_utf8_mark        = Nullsv;
650     PL_utf8_toupper     = Nullsv;
651     PL_utf8_totitle     = Nullsv;
652     PL_utf8_tolower     = Nullsv;
653
654     if (!specialWARN(PL_compiling.cop_warnings))
655         SvREFCNT_dec(PL_compiling.cop_warnings);
656     PL_compiling.cop_warnings = Nullsv;
657     if (!specialCopIO(PL_compiling.cop_io))
658         SvREFCNT_dec(PL_compiling.cop_io);
659     PL_compiling.cop_io = Nullsv;
660 #ifdef USE_ITHREADS
661     Safefree(CopFILE(&PL_compiling));
662     CopFILE(&PL_compiling) = Nullch;
663     Safefree(CopSTASHPV(&PL_compiling));
664 #else
665     SvREFCNT_dec(CopFILEGV(&PL_compiling));
666     CopFILEGV(&PL_compiling) = Nullgv;
667     /* cop_stash is not refcounted */
668 #endif
669
670     /* Prepare to destruct main symbol table.  */
671
672     hv = PL_defstash;
673     PL_defstash = 0;
674     SvREFCNT_dec(hv);
675     SvREFCNT_dec(PL_curstname);
676     PL_curstname = Nullsv;
677
678     /* clear queued errors */
679     SvREFCNT_dec(PL_errors);
680     PL_errors = Nullsv;
681
682     FREETMPS;
683     if (destruct_level >= 2 && ckWARN_d(WARN_INTERNAL)) {
684         if (PL_scopestack_ix != 0)
685             Perl_warner(aTHX_ WARN_INTERNAL,
686                  "Unbalanced scopes: %ld more ENTERs than LEAVEs\n",
687                  (long)PL_scopestack_ix);
688         if (PL_savestack_ix != 0)
689             Perl_warner(aTHX_ WARN_INTERNAL,
690                  "Unbalanced saves: %ld more saves than restores\n",
691                  (long)PL_savestack_ix);
692         if (PL_tmps_floor != -1)
693             Perl_warner(aTHX_ WARN_INTERNAL,"Unbalanced tmps: %ld more allocs than frees\n",
694                  (long)PL_tmps_floor + 1);
695         if (cxstack_ix != -1)
696             Perl_warner(aTHX_ WARN_INTERNAL,"Unbalanced context: %ld more PUSHes than POPs\n",
697                  (long)cxstack_ix + 1);
698     }
699
700     /* Now absolutely destruct everything, somehow or other, loops or no. */
701     SvFLAGS(PL_fdpid) |= SVTYPEMASK;            /* don't clean out pid table now */
702     SvFLAGS(PL_strtab) |= SVTYPEMASK;           /* don't clean out strtab now */
703
704     /* the 2 is for PL_fdpid and PL_strtab */
705     while (PL_sv_count > 2 && sv_clean_all())
706         ;
707
708     SvFLAGS(PL_fdpid) &= ~SVTYPEMASK;
709     SvFLAGS(PL_fdpid) |= SVt_PVAV;
710     SvFLAGS(PL_strtab) &= ~SVTYPEMASK;
711     SvFLAGS(PL_strtab) |= SVt_PVHV;
712
713     AvREAL_off(PL_fdpid);               /* no surviving entries */
714     SvREFCNT_dec(PL_fdpid);             /* needed in io_close() */
715     PL_fdpid = Nullav;
716
717 #ifdef HAVE_INTERP_INTERN
718     sys_intern_clear();
719 #endif
720
721     /* Destruct the global string table. */
722     {
723         /* Yell and reset the HeVAL() slots that are still holding refcounts,
724          * so that sv_free() won't fail on them.
725          */
726         I32 riter;
727         I32 max;
728         HE *hent;
729         HE **array;
730
731         riter = 0;
732         max = HvMAX(PL_strtab);
733         array = HvARRAY(PL_strtab);
734         hent = array[0];
735         for (;;) {
736             if (hent && ckWARN_d(WARN_INTERNAL)) {
737                 Perl_warner(aTHX_ WARN_INTERNAL,
738                      "Unbalanced string table refcount: (%d) for \"%s\"",
739                      HeVAL(hent) - Nullsv, HeKEY(hent));
740                 HeVAL(hent) = Nullsv;
741                 hent = HeNEXT(hent);
742             }
743             if (!hent) {
744                 if (++riter > max)
745                     break;
746                 hent = array[riter];
747             }
748         }
749     }
750     SvREFCNT_dec(PL_strtab);
751
752 #ifdef USE_ITHREADS
753     /* free the pointer table used for cloning */
754     ptr_table_free(PL_ptr_table);
755 #endif
756
757     /* free special SVs */
758
759     SvREFCNT(&PL_sv_yes) = 0;
760     sv_clear(&PL_sv_yes);
761     SvANY(&PL_sv_yes) = NULL;
762     SvFLAGS(&PL_sv_yes) = 0;
763
764     SvREFCNT(&PL_sv_no) = 0;
765     sv_clear(&PL_sv_no);
766     SvANY(&PL_sv_no) = NULL;
767     SvFLAGS(&PL_sv_no) = 0;
768
769     SvREFCNT(&PL_sv_undef) = 0;
770     SvREADONLY_off(&PL_sv_undef);
771
772     if (PL_sv_count != 0 && ckWARN_d(WARN_INTERNAL))
773         Perl_warner(aTHX_ WARN_INTERNAL,"Scalars leaked: %ld\n", (long)PL_sv_count);
774
775     Safefree(PL_origfilename);
776     Safefree(PL_reg_start_tmp);
777     if (PL_reg_curpm)
778         Safefree(PL_reg_curpm);
779     Safefree(PL_reg_poscache);
780     Safefree(HeKEY_hek(&PL_hv_fetch_ent_mh));
781     Safefree(PL_op_mask);
782     Safefree(PL_psig_ptr);
783     Safefree(PL_psig_name);
784     Safefree(PL_bitcount);
785     Safefree(PL_psig_pend);
786     nuke_stacks();
787     PL_hints = 0;               /* Reset hints. Should hints be per-interpreter ? */
788
789     DEBUG_P(debprofdump());
790 #ifdef USE_THREADS
791     MUTEX_DESTROY(&PL_strtab_mutex);
792     MUTEX_DESTROY(&PL_sv_mutex);
793     MUTEX_DESTROY(&PL_eval_mutex);
794     MUTEX_DESTROY(&PL_cred_mutex);
795     MUTEX_DESTROY(&PL_fdpid_mutex);
796     COND_DESTROY(&PL_eval_cond);
797 #ifdef EMULATE_ATOMIC_REFCOUNTS
798     MUTEX_DESTROY(&PL_svref_mutex);
799 #endif /* EMULATE_ATOMIC_REFCOUNTS */
800
801     /* As the penultimate thing, free the non-arena SV for thrsv */
802     Safefree(SvPVX(PL_thrsv));
803     Safefree(SvANY(PL_thrsv));
804     Safefree(PL_thrsv);
805     PL_thrsv = Nullsv;
806 #endif /* USE_THREADS */
807
808 #ifdef USE_REENTRANT_API
809     Safefree(PL_reentrant_buffer->tmbuff);
810     Safefree(PL_reentrant_buffer);
811 #endif
812
813     sv_free_arenas();
814
815     /* As the absolutely last thing, free the non-arena SV for mess() */
816
817     if (PL_mess_sv) {
818         /* it could have accumulated taint magic */
819         if (SvTYPE(PL_mess_sv) >= SVt_PVMG) {
820             MAGIC* mg;
821             MAGIC* moremagic;
822             for (mg = SvMAGIC(PL_mess_sv); mg; mg = moremagic) {
823                 moremagic = mg->mg_moremagic;
824                 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global
825                                                 && mg->mg_len >= 0)
826                     Safefree(mg->mg_ptr);
827                 Safefree(mg);
828             }
829         }
830         /* we know that type >= SVt_PV */
831         (void)SvOOK_off(PL_mess_sv);
832         Safefree(SvPVX(PL_mess_sv));
833         Safefree(SvANY(PL_mess_sv));
834         Safefree(PL_mess_sv);
835         PL_mess_sv = Nullsv;
836     }
837 }
838
839 /*
840 =for apidoc perl_free
841
842 Releases a Perl interpreter.  See L<perlembed>.
843
844 =cut
845 */
846
847 void
848 perl_free(pTHXx)
849 {
850 #if defined(PERL_OBJECT)
851     PerlMem_free(this);
852 #else
853 #  if defined(WIN32) || defined(NETWARE)
854 #  if defined(PERL_IMPLICIT_SYS)
855     #ifdef NETWARE
856                 void *host = nw_internal_host;
857         #else
858                 void *host = w32_internal_host;
859         #endif
860         #ifndef NETWARE
861         if (PerlProc_lasthost()) {
862         PerlIO_cleanup();
863         }
864         #endif
865     PerlMem_free(aTHXx);
866         #ifdef NETWARE
867                 nw5_delete_internal_host(host);
868         #else
869                 win32_delete_internal_host(host);
870         #endif
871 #else
872     PerlIO_cleanup();
873     PerlMem_free(aTHXx);
874 #endif
875 #  else
876     PerlMem_free(aTHXx);
877 #  endif
878 #endif
879 }
880
881 void
882 Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr)
883 {
884     Renew(PL_exitlist, PL_exitlistlen+1, PerlExitListEntry);
885     PL_exitlist[PL_exitlistlen].fn = fn;
886     PL_exitlist[PL_exitlistlen].ptr = ptr;
887     ++PL_exitlistlen;
888 }
889
890 /*
891 =for apidoc perl_parse
892
893 Tells a Perl interpreter to parse a Perl script.  See L<perlembed>.
894
895 =cut
896 */
897
898 int
899 perl_parse(pTHXx_ XSINIT_t xsinit, int argc, char **argv, char **env)
900 {
901     I32 oldscope;
902     int ret;
903     dJMPENV;
904 #ifdef USE_THREADS
905     dTHX;
906 #endif
907
908 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
909 #ifdef IAMSUID
910 #undef IAMSUID
911     Perl_croak(aTHX_ "suidperl is no longer needed since the kernel can now execute\n\
912 setuid perl scripts securely.\n");
913 #endif
914 #endif
915
916 #if defined(__DYNAMIC__) && (defined(NeXT) || defined(__NeXT__))
917     _dyld_lookup_and_bind
918         ("__environ", (unsigned long *) &environ_pointer, NULL);
919 #endif /* environ */
920
921     PL_origargv = argv;
922     PL_origargc = argc;
923 #ifdef  USE_ENVIRON_ARRAY
924     PL_origenviron = environ;
925 #endif
926
927     if (PL_do_undump) {
928
929         /* Come here if running an undumped a.out. */
930
931         PL_origfilename = savepv(argv[0]);
932         PL_do_undump = FALSE;
933         cxstack_ix = -1;                /* start label stack again */
934         init_ids();
935         init_postdump_symbols(argc,argv,env);
936         return 0;
937     }
938
939     if (PL_main_root) {
940         PL_curpad = AvARRAY(PL_comppad);
941         op_free(PL_main_root);
942         PL_main_root = Nullop;
943     }
944     PL_main_start = Nullop;
945     SvREFCNT_dec(PL_main_cv);
946     PL_main_cv = Nullcv;
947
948     time(&PL_basetime);
949     oldscope = PL_scopestack_ix;
950     PL_dowarn = G_WARN_OFF;
951
952 #ifdef PERL_FLEXIBLE_EXCEPTIONS
953     CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vparse_body), env, xsinit);
954 #else
955     JMPENV_PUSH(ret);
956 #endif
957     switch (ret) {
958     case 0:
959 #ifndef PERL_FLEXIBLE_EXCEPTIONS
960         parse_body(env,xsinit);
961 #endif
962         if (PL_checkav)
963             call_list(oldscope, PL_checkav);
964         ret = 0;
965         break;
966     case 1:
967         STATUS_ALL_FAILURE;
968         /* FALL THROUGH */
969     case 2:
970         /* my_exit() was called */
971         while (PL_scopestack_ix > oldscope)
972             LEAVE;
973         FREETMPS;
974         PL_curstash = PL_defstash;
975         if (PL_checkav)
976             call_list(oldscope, PL_checkav);
977         ret = STATUS_NATIVE_EXPORT;
978         break;
979     case 3:
980         PerlIO_printf(Perl_error_log, "panic: top_env\n");
981         ret = 1;
982         break;
983     }
984     JMPENV_POP;
985     return ret;
986 }
987
988 #ifdef PERL_FLEXIBLE_EXCEPTIONS
989 STATIC void *
990 S_vparse_body(pTHX_ va_list args)
991 {
992     char **env = va_arg(args, char**);
993     XSINIT_t xsinit = va_arg(args, XSINIT_t);
994
995     return parse_body(env, xsinit);
996 }
997 #endif
998
999 STATIC void *
1000 S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
1001 {
1002     int argc = PL_origargc;
1003     char **argv = PL_origargv;
1004     char *scriptname = NULL;
1005     int fdscript = -1;
1006     VOL bool dosearch = FALSE;
1007     char *validarg = "";
1008     AV* comppadlist;
1009     register SV *sv;
1010     register char *s;
1011     char *popts, *cddir = Nullch;
1012
1013     sv_setpvn(PL_linestr,"",0);
1014     sv = newSVpvn("",0);                /* first used for -I flags */
1015     SAVEFREESV(sv);
1016     init_main_stash();
1017
1018     for (argc--,argv++; argc > 0; argc--,argv++) {
1019         if (argv[0][0] != '-' || !argv[0][1])
1020             break;
1021 #ifdef DOSUID
1022     if (*validarg)
1023         validarg = " PHOOEY ";
1024     else
1025         validarg = argv[0];
1026 #endif
1027         s = argv[0]+1;
1028       reswitch:
1029         switch (*s) {
1030         case 'C':
1031 #ifdef  WIN32
1032             win32_argv2utf8(argc-1, argv+1);
1033             /* FALL THROUGH */
1034 #endif
1035 #ifndef PERL_STRICT_CR
1036         case '\r':
1037 #endif
1038         case ' ':
1039         case '0':
1040         case 'F':
1041         case 'a':
1042         case 'c':
1043         case 'd':
1044         case 'D':
1045         case 'h':
1046         case 'i':
1047         case 'l':
1048         case 'M':
1049         case 'm':
1050         case 'n':
1051         case 'p':
1052         case 's':
1053         case 'u':
1054         case 'U':
1055         case 'v':
1056         case 'W':
1057         case 'X':
1058         case 'w':
1059             if ((s = moreswitches(s)))
1060                 goto reswitch;
1061             break;
1062
1063         case 'T':
1064             PL_tainting = TRUE;
1065             s++;
1066             goto reswitch;
1067
1068         case 'e':
1069 #ifdef MACOS_TRADITIONAL
1070             /* ignore -e for Dev:Pseudo argument */
1071             if (argv[1] && !strcmp(argv[1], "Dev:Pseudo"))
1072                 break;
1073 #endif
1074             if (PL_euid != PL_uid || PL_egid != PL_gid)
1075                 Perl_croak(aTHX_ "No -e allowed in setuid scripts");
1076             if (!PL_e_script) {
1077                 PL_e_script = newSVpvn("",0);
1078                 filter_add(read_e_script, NULL);
1079             }
1080             if (*++s)
1081                 sv_catpv(PL_e_script, s);
1082             else if (argv[1]) {
1083                 sv_catpv(PL_e_script, argv[1]);
1084                 argc--,argv++;
1085             }
1086             else
1087                 Perl_croak(aTHX_ "No code specified for -e");
1088             sv_catpv(PL_e_script, "\n");
1089             break;
1090
1091         case 'I':       /* -I handled both here and in moreswitches() */
1092             forbid_setid("-I");
1093             if (!*++s && (s=argv[1]) != Nullch) {
1094                 argc--,argv++;
1095             }
1096             if (s && *s) {
1097                 char *p;
1098                 STRLEN len = strlen(s);
1099                 p = savepvn(s, len);
1100                 incpush(p, TRUE, TRUE);
1101                 sv_catpvn(sv, "-I", 2);
1102                 sv_catpvn(sv, p, len);
1103                 sv_catpvn(sv, " ", 1);
1104                 Safefree(p);
1105             }
1106             else
1107                 Perl_croak(aTHX_ "No directory specified for -I");
1108             break;
1109         case 'P':
1110             forbid_setid("-P");
1111             PL_preprocess = TRUE;
1112             s++;
1113             goto reswitch;
1114         case 'S':
1115             forbid_setid("-S");
1116             dosearch = TRUE;
1117             s++;
1118             goto reswitch;
1119         case 'V':
1120             if (!PL_preambleav)
1121                 PL_preambleav = newAV();
1122             av_push(PL_preambleav, newSVpv("use Config qw(myconfig config_vars)",0));
1123             if (*++s != ':')  {
1124                 PL_Sv = newSVpv("print myconfig();",0);
1125 #ifdef VMS
1126                 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this PERLSHR image: \\n\",");
1127 #else
1128                 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this binary (from libperl): \\n\",");
1129 #endif
1130                 sv_catpv(PL_Sv,"\"  Compile-time options:");
1131 #  ifdef DEBUGGING
1132                 sv_catpv(PL_Sv," DEBUGGING");
1133 #  endif
1134 #  ifdef MULTIPLICITY
1135                 sv_catpv(PL_Sv," MULTIPLICITY");
1136 #  endif
1137 #  ifdef USE_THREADS
1138                 sv_catpv(PL_Sv," USE_THREADS");
1139 #  endif
1140 #  ifdef USE_ITHREADS
1141                 sv_catpv(PL_Sv," USE_ITHREADS");
1142 #  endif
1143 #  ifdef USE_64_BIT_INT
1144                 sv_catpv(PL_Sv," USE_64_BIT_INT");
1145 #  endif
1146 #  ifdef USE_64_BIT_ALL
1147                 sv_catpv(PL_Sv," USE_64_BIT_ALL");
1148 #  endif
1149 #  ifdef USE_LONG_DOUBLE
1150                 sv_catpv(PL_Sv," USE_LONG_DOUBLE");
1151 #  endif
1152 #  ifdef USE_LARGE_FILES
1153                 sv_catpv(PL_Sv," USE_LARGE_FILES");
1154 #  endif
1155 #  ifdef USE_SOCKS
1156                 sv_catpv(PL_Sv," USE_SOCKS");
1157 #  endif
1158 #  ifdef PERL_OBJECT
1159                 sv_catpv(PL_Sv," PERL_OBJECT");
1160 #  endif
1161 #  ifdef PERL_IMPLICIT_CONTEXT
1162                 sv_catpv(PL_Sv," PERL_IMPLICIT_CONTEXT");
1163 #  endif
1164 #  ifdef PERL_IMPLICIT_SYS
1165                 sv_catpv(PL_Sv," PERL_IMPLICIT_SYS");
1166 #  endif
1167                 sv_catpv(PL_Sv,"\\n\",");
1168
1169 #if defined(LOCAL_PATCH_COUNT)
1170                 if (LOCAL_PATCH_COUNT > 0) {
1171                     int i;
1172                     sv_catpv(PL_Sv,"\"  Locally applied patches:\\n\",");
1173                     for (i = 1; i <= LOCAL_PATCH_COUNT; i++) {
1174                         if (PL_localpatches[i])
1175                             Perl_sv_catpvf(aTHX_ PL_Sv,"q\"  \t%s\n\",",PL_localpatches[i]);
1176                     }
1177                 }
1178 #endif
1179                 Perl_sv_catpvf(aTHX_ PL_Sv,"\"  Built under %s\\n\"",OSNAME);
1180 #ifdef __DATE__
1181 #  ifdef __TIME__
1182                 Perl_sv_catpvf(aTHX_ PL_Sv,",\"  Compiled at %s %s\\n\"",__DATE__,__TIME__);
1183 #  else
1184                 Perl_sv_catpvf(aTHX_ PL_Sv,",\"  Compiled on %s\\n\"",__DATE__);
1185 #  endif
1186 #endif
1187                 sv_catpv(PL_Sv, "; \
1188 $\"=\"\\n    \"; \
1189 @env = map { \"$_=\\\"$ENV{$_}\\\"\" } sort grep {/^PERL/} keys %ENV; ");
1190 #ifdef __CYGWIN__
1191                 sv_catpv(PL_Sv,"\
1192 push @env, \"CYGWIN=\\\"$ENV{CYGWIN}\\\"\";");
1193 #endif
1194                 sv_catpv(PL_Sv, "\
1195 print \"  \\%ENV:\\n    @env\\n\" if @env; \
1196 print \"  \\@INC:\\n    @INC\\n\";");
1197             }
1198             else {
1199                 PL_Sv = newSVpv("config_vars(qw(",0);
1200                 sv_catpv(PL_Sv, ++s);
1201                 sv_catpv(PL_Sv, "))");
1202                 s += strlen(s);
1203             }
1204             av_push(PL_preambleav, PL_Sv);
1205             scriptname = BIT_BUCKET;    /* don't look for script or read stdin */
1206             goto reswitch;
1207         case 'x':
1208             PL_doextract = TRUE;
1209             s++;
1210             if (*s)
1211                 cddir = s;
1212             break;
1213         case 0:
1214             break;
1215         case '-':
1216             if (!*++s || isSPACE(*s)) {
1217                 argc--,argv++;
1218                 goto switch_end;
1219             }
1220             /* catch use of gnu style long options */
1221             if (strEQ(s, "version")) {
1222                 s = "v";
1223                 goto reswitch;
1224             }
1225             if (strEQ(s, "help")) {
1226                 s = "h";
1227                 goto reswitch;
1228             }
1229             s--;
1230             /* FALL THROUGH */
1231         default:
1232             Perl_croak(aTHX_ "Unrecognized switch: -%s  (-h will show valid options)",s);
1233         }
1234     }
1235   switch_end:
1236
1237     if (
1238 #ifndef SECURE_INTERNAL_GETENV
1239         !PL_tainting &&
1240 #endif
1241         (popts = PerlEnv_getenv("PERL5OPT")))
1242     {
1243         s = savepv(popts);
1244         while (isSPACE(*s))
1245             s++;
1246         if (*s == '-' && *(s+1) == 'T')
1247             PL_tainting = TRUE;
1248         else {
1249             while (s && *s) {
1250                 char *d;
1251                 while (isSPACE(*s))
1252                     s++;
1253                 if (*s == '-') {
1254                     s++;
1255                     if (isSPACE(*s))
1256                         continue;
1257                 }
1258                 d = s;
1259                 if (!*s)
1260                     break;
1261                 if (!strchr("DIMUdmw", *s))
1262                     Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s);
1263                 while (++s && *s) {
1264                     if (isSPACE(*s)) {
1265                         *s++ = '\0';
1266                         break;
1267                     }
1268                 }
1269                 moreswitches(d);
1270             }
1271         }
1272     }
1273
1274     if (!scriptname)
1275         scriptname = argv[0];
1276     if (PL_e_script) {
1277         argc++,argv--;
1278         scriptname = BIT_BUCKET;        /* don't look for script or read stdin */
1279     }
1280     else if (scriptname == Nullch) {
1281 #ifdef MSDOS
1282         if ( PerlLIO_isatty(PerlIO_fileno(PerlIO_stdin())) )
1283             moreswitches("h");
1284 #endif
1285         scriptname = "-";
1286     }
1287
1288     init_perllib();
1289
1290     open_script(scriptname,dosearch,sv,&fdscript);
1291
1292     validate_suid(validarg, scriptname,fdscript);
1293
1294 #ifndef PERL_MICRO
1295 #if defined(SIGCHLD) || defined(SIGCLD)
1296     {
1297 #ifndef SIGCHLD
1298 #  define SIGCHLD SIGCLD
1299 #endif
1300         Sighandler_t sigstate = rsignal_state(SIGCHLD);
1301         if (sigstate == SIG_IGN) {
1302             if (ckWARN(WARN_SIGNAL))
1303                 Perl_warner(aTHX_ WARN_SIGNAL,
1304                             "Can't ignore signal CHLD, forcing to default");
1305             (void)rsignal(SIGCHLD, (Sighandler_t)SIG_DFL);
1306         }
1307     }
1308 #endif
1309 #endif
1310
1311 #ifdef MACOS_TRADITIONAL
1312     if (PL_doextract || gMacPerl_AlwaysExtract) {
1313 #else
1314     if (PL_doextract) {
1315 #endif
1316         find_beginning();
1317         if (cddir && PerlDir_chdir(cddir) < 0)
1318             Perl_croak(aTHX_ "Can't chdir to %s",cddir);
1319
1320     }
1321
1322     PL_main_cv = PL_compcv = (CV*)NEWSV(1104,0);
1323     sv_upgrade((SV *)PL_compcv, SVt_PVCV);
1324     CvUNIQUE_on(PL_compcv);
1325
1326     PL_comppad = newAV();
1327     av_push(PL_comppad, Nullsv);
1328     PL_curpad = AvARRAY(PL_comppad);
1329     PL_comppad_name = newAV();
1330     PL_comppad_name_fill = 0;
1331     PL_min_intro_pending = 0;
1332     PL_padix = 0;
1333 #ifdef USE_THREADS
1334     av_store(PL_comppad_name, 0, newSVpvn("@_", 2));
1335     PL_curpad[0] = (SV*)newAV();
1336     SvPADMY_on(PL_curpad[0]);   /* XXX Needed? */
1337     CvOWNER(PL_compcv) = 0;
1338     New(666, CvMUTEXP(PL_compcv), 1, perl_mutex);
1339     MUTEX_INIT(CvMUTEXP(PL_compcv));
1340 #endif /* USE_THREADS */
1341
1342     comppadlist = newAV();
1343     AvREAL_off(comppadlist);
1344     av_store(comppadlist, 0, (SV*)PL_comppad_name);
1345     av_store(comppadlist, 1, (SV*)PL_comppad);
1346     CvPADLIST(PL_compcv) = comppadlist;
1347
1348     boot_core_PerlIO();
1349     boot_core_UNIVERSAL();
1350 #ifndef PERL_MICRO
1351     boot_core_xsutils();
1352 #endif
1353
1354     if (xsinit)
1355         (*xsinit)(aTHXo);       /* in case linked C routines want magical variables */
1356 #ifndef PERL_MICRO
1357 #if defined(VMS) || defined(WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(EPOC)
1358     init_os_extras();
1359 #endif
1360 #endif
1361
1362 #ifdef USE_SOCKS
1363 #   ifdef HAS_SOCKS5_INIT
1364     socks5_init(argv[0]);
1365 #   else
1366     SOCKSinit(argv[0]);
1367 #   endif
1368 #endif
1369
1370     init_predump_symbols();
1371     /* init_postdump_symbols not currently designed to be called */
1372     /* more than once (ENV isn't cleared first, for example)     */
1373     /* But running with -u leaves %ENV & @ARGV undefined!    XXX */
1374     if (!PL_do_undump)
1375         init_postdump_symbols(argc,argv,env);
1376
1377     init_lexer();
1378
1379     /* now parse the script */
1380
1381     SETERRNO(0,SS$_NORMAL);
1382     PL_error_count = 0;
1383 #ifdef MACOS_TRADITIONAL
1384     if (gMacPerl_SyntaxError = (yyparse() || PL_error_count)) {
1385         if (PL_minus_c)
1386             Perl_croak(aTHX_ "%s had compilation errors.\n", MacPerl_MPWFileName(PL_origfilename));
1387         else {
1388             Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
1389                        MacPerl_MPWFileName(PL_origfilename));
1390         }
1391     }
1392 #else
1393     if (yyparse() || PL_error_count) {
1394         if (PL_minus_c)
1395             Perl_croak(aTHX_ "%s had compilation errors.\n", PL_origfilename);
1396         else {
1397             Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
1398                        PL_origfilename);
1399         }
1400     }
1401 #endif
1402     CopLINE_set(PL_curcop, 0);
1403     PL_curstash = PL_defstash;
1404     PL_preprocess = FALSE;
1405     if (PL_e_script) {
1406         SvREFCNT_dec(PL_e_script);
1407         PL_e_script = Nullsv;
1408     }
1409
1410     /* now that script is parsed, we can modify record separator */
1411     SvREFCNT_dec(PL_rs);
1412     PL_rs = SvREFCNT_inc(PL_nrs);
1413     sv_setsv(get_sv("/", TRUE), PL_rs);
1414     if (PL_do_undump)
1415         my_unexec();
1416
1417     if (isWARN_ONCE) {
1418         SAVECOPFILE(PL_curcop);
1419         SAVECOPLINE(PL_curcop);
1420         gv_check(PL_defstash);
1421     }
1422
1423     LEAVE;
1424     FREETMPS;
1425
1426 #ifdef MYMALLOC
1427     if ((s=PerlEnv_getenv("PERL_DEBUG_MSTATS")) && atoi(s) >= 2)
1428         dump_mstats("after compilation:");
1429 #endif
1430
1431     ENTER;
1432     PL_restartop = 0;
1433     return NULL;
1434 }
1435
1436 /*
1437 =for apidoc perl_run
1438
1439 Tells a Perl interpreter to run.  See L<perlembed>.
1440
1441 =cut
1442 */
1443
1444 int
1445 perl_run(pTHXx)
1446 {
1447     I32 oldscope;
1448     int ret = 0;
1449     dJMPENV;
1450 #ifdef USE_THREADS
1451     dTHX;
1452 #endif
1453
1454     oldscope = PL_scopestack_ix;
1455
1456 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1457  redo_body:
1458     CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vrun_body), oldscope);
1459 #else
1460     JMPENV_PUSH(ret);
1461 #endif
1462     switch (ret) {
1463     case 1:
1464         cxstack_ix = -1;                /* start context stack again */
1465         goto redo_body;
1466     case 0:                             /* normal completion */
1467 #ifndef PERL_FLEXIBLE_EXCEPTIONS
1468  redo_body:
1469         run_body(oldscope);
1470 #endif
1471         /* FALL THROUGH */
1472     case 2:                             /* my_exit() */
1473         while (PL_scopestack_ix > oldscope)
1474             LEAVE;
1475         FREETMPS;
1476         PL_curstash = PL_defstash;
1477         if (PL_endav && !PL_minus_c)
1478             call_list(oldscope, PL_endav);
1479 #ifdef MYMALLOC
1480         if (PerlEnv_getenv("PERL_DEBUG_MSTATS"))
1481             dump_mstats("after execution:  ");
1482 #endif
1483         ret = STATUS_NATIVE_EXPORT;
1484         break;
1485     case 3:
1486         if (PL_restartop) {
1487             POPSTACK_TO(PL_mainstack);
1488             goto redo_body;
1489         }
1490         PerlIO_printf(Perl_error_log, "panic: restartop\n");
1491         FREETMPS;
1492         ret = 1;
1493         break;
1494     }
1495
1496     JMPENV_POP;
1497     return ret;
1498 }
1499
1500 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1501 STATIC void *
1502 S_vrun_body(pTHX_ va_list args)
1503 {
1504     I32 oldscope = va_arg(args, I32);
1505
1506     return run_body(oldscope);
1507 }
1508 #endif
1509
1510
1511 STATIC void *
1512 S_run_body(pTHX_ I32 oldscope)
1513 {
1514     DEBUG_r(PerlIO_printf(Perl_debug_log, "%s $` $& $' support.\n",
1515                     PL_sawampersand ? "Enabling" : "Omitting"));
1516
1517     if (!PL_restartop) {
1518         DEBUG_x(dump_all());
1519         DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n"));
1520         DEBUG_S(PerlIO_printf(Perl_debug_log, "main thread is 0x%"UVxf"\n",
1521                               PTR2UV(thr)));
1522
1523         if (PL_minus_c) {
1524 #ifdef MACOS_TRADITIONAL
1525             PerlIO_printf(Perl_error_log, "%s syntax OK\n", MacPerl_MPWFileName(PL_origfilename));
1526 #else
1527             PerlIO_printf(Perl_error_log, "%s syntax OK\n", PL_origfilename);
1528 #endif
1529             my_exit(0);
1530         }
1531         if (PERLDB_SINGLE && PL_DBsingle)
1532             sv_setiv(PL_DBsingle, 1);
1533         if (PL_initav)
1534             call_list(oldscope, PL_initav);
1535     }
1536
1537     /* do it */
1538
1539     if (PL_restartop) {
1540         PL_op = PL_restartop;
1541         PL_restartop = 0;
1542         CALLRUNOPS(aTHX);
1543     }
1544     else if (PL_main_start) {
1545         CvDEPTH(PL_main_cv) = 1;
1546         PL_op = PL_main_start;
1547         CALLRUNOPS(aTHX);
1548     }
1549
1550     my_exit(0);
1551     /* NOTREACHED */
1552     return NULL;
1553 }
1554
1555 /*
1556 =for apidoc p||get_sv
1557
1558 Returns the SV of the specified Perl scalar.  If C<create> is set and the
1559 Perl variable does not exist then it will be created.  If C<create> is not
1560 set and the variable does not exist then NULL is returned.
1561
1562 =cut
1563 */
1564
1565 SV*
1566 Perl_get_sv(pTHX_ const char *name, I32 create)
1567 {
1568     GV *gv;
1569 #ifdef USE_THREADS
1570     if (name[1] == '\0' && !isALPHA(name[0])) {
1571         PADOFFSET tmp = find_threadsv(name);
1572         if (tmp != NOT_IN_PAD)
1573             return THREADSV(tmp);
1574     }
1575 #endif /* USE_THREADS */
1576     gv = gv_fetchpv(name, create, SVt_PV);
1577     if (gv)
1578         return GvSV(gv);
1579     return Nullsv;
1580 }
1581
1582 /*
1583 =for apidoc p||get_av
1584
1585 Returns the AV of the specified Perl array.  If C<create> is set and the
1586 Perl variable does not exist then it will be created.  If C<create> is not
1587 set and the variable does not exist then NULL is returned.
1588
1589 =cut
1590 */
1591
1592 AV*
1593 Perl_get_av(pTHX_ const char *name, I32 create)
1594 {
1595     GV* gv = gv_fetchpv(name, create, SVt_PVAV);
1596     if (create)
1597         return GvAVn(gv);
1598     if (gv)
1599         return GvAV(gv);
1600     return Nullav;
1601 }
1602
1603 /*
1604 =for apidoc p||get_hv
1605
1606 Returns the HV of the specified Perl hash.  If C<create> is set and the
1607 Perl variable does not exist then it will be created.  If C<create> is not
1608 set and the variable does not exist then NULL is returned.
1609
1610 =cut
1611 */
1612
1613 HV*
1614 Perl_get_hv(pTHX_ const char *name, I32 create)
1615 {
1616     GV* gv = gv_fetchpv(name, create, SVt_PVHV);
1617     if (create)
1618         return GvHVn(gv);
1619     if (gv)
1620         return GvHV(gv);
1621     return Nullhv;
1622 }
1623
1624 /*
1625 =for apidoc p||get_cv
1626
1627 Returns the CV of the specified Perl subroutine.  If C<create> is set and
1628 the Perl subroutine does not exist then it will be declared (which has the
1629 same effect as saying C<sub name;>).  If C<create> is not set and the
1630 subroutine does not exist then NULL is returned.
1631
1632 =cut
1633 */
1634
1635 CV*
1636 Perl_get_cv(pTHX_ const char *name, I32 create)
1637 {
1638     GV* gv = gv_fetchpv(name, create, SVt_PVCV);
1639     /* XXX unsafe for threads if eval_owner isn't held */
1640     /* XXX this is probably not what they think they're getting.
1641      * It has the same effect as "sub name;", i.e. just a forward
1642      * declaration! */
1643     if (create && !GvCVu(gv))
1644         return newSUB(start_subparse(FALSE, 0),
1645                       newSVOP(OP_CONST, 0, newSVpv(name,0)),
1646                       Nullop,
1647                       Nullop);
1648     if (gv)
1649         return GvCVu(gv);
1650     return Nullcv;
1651 }
1652
1653 /* Be sure to refetch the stack pointer after calling these routines. */
1654
1655 /*
1656 =for apidoc p||call_argv
1657
1658 Performs a callback to the specified Perl sub.  See L<perlcall>.
1659
1660 =cut
1661 */
1662
1663 I32
1664 Perl_call_argv(pTHX_ const char *sub_name, I32 flags, register char **argv)
1665
1666                         /* See G_* flags in cop.h */
1667                         /* null terminated arg list */
1668 {
1669     dSP;
1670
1671     PUSHMARK(SP);
1672     if (argv) {
1673         while (*argv) {
1674             XPUSHs(sv_2mortal(newSVpv(*argv,0)));
1675             argv++;
1676         }
1677         PUTBACK;
1678     }
1679     return call_pv(sub_name, flags);
1680 }
1681
1682 /*
1683 =for apidoc p||call_pv
1684
1685 Performs a callback to the specified Perl sub.  See L<perlcall>.
1686
1687 =cut
1688 */
1689
1690 I32
1691 Perl_call_pv(pTHX_ const char *sub_name, I32 flags)
1692                         /* name of the subroutine */
1693                         /* See G_* flags in cop.h */
1694 {
1695     return call_sv((SV*)get_cv(sub_name, TRUE), flags);
1696 }
1697
1698 /*
1699 =for apidoc p||call_method
1700
1701 Performs a callback to the specified Perl method.  The blessed object must
1702 be on the stack.  See L<perlcall>.
1703
1704 =cut
1705 */
1706
1707 I32
1708 Perl_call_method(pTHX_ const char *methname, I32 flags)
1709                         /* name of the subroutine */
1710                         /* See G_* flags in cop.h */
1711 {
1712     return call_sv(sv_2mortal(newSVpv(methname,0)), flags | G_METHOD);
1713 }
1714
1715 /* May be called with any of a CV, a GV, or an SV containing the name. */
1716 /*
1717 =for apidoc p||call_sv
1718
1719 Performs a callback to the Perl sub whose name is in the SV.  See
1720 L<perlcall>.
1721
1722 =cut
1723 */
1724
1725 I32
1726 Perl_call_sv(pTHX_ SV *sv, I32 flags)
1727                         /* See G_* flags in cop.h */
1728 {
1729     dSP;
1730     LOGOP myop;         /* fake syntax tree node */
1731     UNOP method_op;
1732     I32 oldmark;
1733     volatile I32 retval = 0;
1734     I32 oldscope;
1735     bool oldcatch = CATCH_GET;
1736     int ret;
1737     OP* oldop = PL_op;
1738     dJMPENV;
1739
1740     if (flags & G_DISCARD) {
1741         ENTER;
1742         SAVETMPS;
1743     }
1744
1745     Zero(&myop, 1, LOGOP);
1746     myop.op_next = Nullop;
1747     if (!(flags & G_NOARGS))
1748         myop.op_flags |= OPf_STACKED;
1749     myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1750                       (flags & G_ARRAY) ? OPf_WANT_LIST :
1751                       OPf_WANT_SCALAR);
1752     SAVEOP();
1753     PL_op = (OP*)&myop;
1754
1755     EXTEND(PL_stack_sp, 1);
1756     *++PL_stack_sp = sv;
1757     oldmark = TOPMARK;
1758     oldscope = PL_scopestack_ix;
1759
1760     if (PERLDB_SUB && PL_curstash != PL_debstash
1761            /* Handle first BEGIN of -d. */
1762           && (PL_DBcv || (PL_DBcv = GvCV(PL_DBsub)))
1763            /* Try harder, since this may have been a sighandler, thus
1764             * curstash may be meaningless. */
1765           && (SvTYPE(sv) != SVt_PVCV || CvSTASH((CV*)sv) != PL_debstash)
1766           && !(flags & G_NODEBUG))
1767         PL_op->op_private |= OPpENTERSUB_DB;
1768
1769     if (flags & G_METHOD) {
1770         Zero(&method_op, 1, UNOP);
1771         method_op.op_next = PL_op;
1772         method_op.op_ppaddr = PL_ppaddr[OP_METHOD];
1773         myop.op_ppaddr = PL_ppaddr[OP_ENTERSUB];
1774         PL_op = (OP*)&method_op;
1775     }
1776
1777     if (!(flags & G_EVAL)) {
1778         CATCH_SET(TRUE);
1779         call_body((OP*)&myop, FALSE);
1780         retval = PL_stack_sp - (PL_stack_base + oldmark);
1781         CATCH_SET(oldcatch);
1782     }
1783     else {
1784         myop.op_other = (OP*)&myop;
1785         PL_markstack_ptr--;
1786         /* we're trying to emulate pp_entertry() here */
1787         {
1788             register PERL_CONTEXT *cx;
1789             I32 gimme = GIMME_V;
1790         
1791             ENTER;
1792             SAVETMPS;
1793         
1794             push_return(Nullop);
1795             PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
1796             PUSHEVAL(cx, 0, 0);
1797             PL_eval_root = PL_op;             /* Only needed so that goto works right. */
1798         
1799             PL_in_eval = EVAL_INEVAL;
1800             if (flags & G_KEEPERR)
1801                 PL_in_eval |= EVAL_KEEPERR;
1802             else
1803                 sv_setpv(ERRSV,"");
1804         }
1805         PL_markstack_ptr++;
1806
1807 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1808  redo_body:
1809         CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_body),
1810                     (OP*)&myop, FALSE);
1811 #else
1812         JMPENV_PUSH(ret);
1813 #endif
1814         switch (ret) {
1815         case 0:
1816 #ifndef PERL_FLEXIBLE_EXCEPTIONS
1817  redo_body:
1818             call_body((OP*)&myop, FALSE);
1819 #endif
1820             retval = PL_stack_sp - (PL_stack_base + oldmark);
1821             if (!(flags & G_KEEPERR))
1822                 sv_setpv(ERRSV,"");
1823             break;
1824         case 1:
1825             STATUS_ALL_FAILURE;
1826             /* FALL THROUGH */
1827         case 2:
1828             /* my_exit() was called */
1829             PL_curstash = PL_defstash;
1830             FREETMPS;
1831             JMPENV_POP;
1832             if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
1833                 Perl_croak(aTHX_ "Callback called exit");
1834             my_exit_jump();
1835             /* NOTREACHED */
1836         case 3:
1837             if (PL_restartop) {
1838                 PL_op = PL_restartop;
1839                 PL_restartop = 0;
1840                 goto redo_body;
1841             }
1842             PL_stack_sp = PL_stack_base + oldmark;
1843             if (flags & G_ARRAY)
1844                 retval = 0;
1845             else {
1846                 retval = 1;
1847                 *++PL_stack_sp = &PL_sv_undef;
1848             }
1849             break;
1850         }
1851
1852         if (PL_scopestack_ix > oldscope) {
1853             SV **newsp;
1854             PMOP *newpm;
1855             I32 gimme;
1856             register PERL_CONTEXT *cx;
1857             I32 optype;
1858
1859             POPBLOCK(cx,newpm);
1860             POPEVAL(cx);
1861             pop_return();
1862             PL_curpm = newpm;
1863             LEAVE;
1864         }
1865         JMPENV_POP;
1866     }
1867
1868     if (flags & G_DISCARD) {
1869         PL_stack_sp = PL_stack_base + oldmark;
1870         retval = 0;
1871         FREETMPS;
1872         LEAVE;
1873     }
1874     PL_op = oldop;
1875     return retval;
1876 }
1877
1878 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1879 STATIC void *
1880 S_vcall_body(pTHX_ va_list args)
1881 {
1882     OP *myop = va_arg(args, OP*);
1883     int is_eval = va_arg(args, int);
1884
1885     call_body(myop, is_eval);
1886     return NULL;
1887 }
1888 #endif
1889
1890 STATIC void
1891 S_call_body(pTHX_ OP *myop, int is_eval)
1892 {
1893     if (PL_op == myop) {
1894         if (is_eval)
1895             PL_op = Perl_pp_entereval(aTHX);    /* this doesn't do a POPMARK */
1896         else
1897             PL_op = Perl_pp_entersub(aTHX);     /* this does */
1898     }
1899     if (PL_op)
1900         CALLRUNOPS(aTHX);
1901 }
1902
1903 /* Eval a string. The G_EVAL flag is always assumed. */
1904
1905 /*
1906 =for apidoc p||eval_sv
1907
1908 Tells Perl to C<eval> the string in the SV.
1909
1910 =cut
1911 */
1912
1913 I32
1914 Perl_eval_sv(pTHX_ SV *sv, I32 flags)
1915
1916                         /* See G_* flags in cop.h */
1917 {
1918     dSP;
1919     UNOP myop;          /* fake syntax tree node */
1920     volatile I32 oldmark = SP - PL_stack_base;
1921     volatile I32 retval = 0;
1922     I32 oldscope;
1923     int ret;
1924     OP* oldop = PL_op;
1925     dJMPENV;
1926
1927     if (flags & G_DISCARD) {
1928         ENTER;
1929         SAVETMPS;
1930     }
1931
1932     SAVEOP();
1933     PL_op = (OP*)&myop;
1934     Zero(PL_op, 1, UNOP);
1935     EXTEND(PL_stack_sp, 1);
1936     *++PL_stack_sp = sv;
1937     oldscope = PL_scopestack_ix;
1938
1939     if (!(flags & G_NOARGS))
1940         myop.op_flags = OPf_STACKED;
1941     myop.op_next = Nullop;
1942     myop.op_type = OP_ENTEREVAL;
1943     myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1944                       (flags & G_ARRAY) ? OPf_WANT_LIST :
1945                       OPf_WANT_SCALAR);
1946     if (flags & G_KEEPERR)
1947         myop.op_flags |= OPf_SPECIAL;
1948
1949 #ifdef PERL_FLEXIBLE_EXCEPTIONS
1950  redo_body:
1951     CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_body),
1952                 (OP*)&myop, TRUE);
1953 #else
1954     JMPENV_PUSH(ret);
1955 #endif
1956     switch (ret) {
1957     case 0:
1958 #ifndef PERL_FLEXIBLE_EXCEPTIONS
1959  redo_body:
1960         call_body((OP*)&myop,TRUE);
1961 #endif
1962         retval = PL_stack_sp - (PL_stack_base + oldmark);
1963         if (!(flags & G_KEEPERR))
1964             sv_setpv(ERRSV,"");
1965         break;
1966     case 1:
1967         STATUS_ALL_FAILURE;
1968         /* FALL THROUGH */
1969     case 2:
1970         /* my_exit() was called */
1971         PL_curstash = PL_defstash;
1972         FREETMPS;
1973         JMPENV_POP;
1974         if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
1975             Perl_croak(aTHX_ "Callback called exit");
1976         my_exit_jump();
1977         /* NOTREACHED */
1978     case 3:
1979         if (PL_restartop) {
1980             PL_op = PL_restartop;
1981             PL_restartop = 0;
1982             goto redo_body;
1983         }
1984         PL_stack_sp = PL_stack_base + oldmark;
1985         if (flags & G_ARRAY)
1986             retval = 0;
1987         else {
1988             retval = 1;
1989             *++PL_stack_sp = &PL_sv_undef;
1990         }
1991         break;
1992     }
1993
1994     JMPENV_POP;
1995     if (flags & G_DISCARD) {
1996         PL_stack_sp = PL_stack_base + oldmark;
1997         retval = 0;
1998         FREETMPS;
1999         LEAVE;
2000     }
2001     PL_op = oldop;
2002     return retval;
2003 }
2004
2005 /*
2006 =for apidoc p||eval_pv
2007
2008 Tells Perl to C<eval> the given string and return an SV* result.
2009
2010 =cut
2011 */
2012
2013 SV*
2014 Perl_eval_pv(pTHX_ const char *p, I32 croak_on_error)
2015 {
2016     dSP;
2017     SV* sv = newSVpv(p, 0);
2018
2019     eval_sv(sv, G_SCALAR);
2020     SvREFCNT_dec(sv);
2021
2022     SPAGAIN;
2023     sv = POPs;
2024     PUTBACK;
2025
2026     if (croak_on_error && SvTRUE(ERRSV)) {
2027         STRLEN n_a;
2028         Perl_croak(aTHX_ SvPVx(ERRSV, n_a));
2029     }
2030
2031     return sv;
2032 }
2033
2034 /* Require a module. */
2035
2036 /*
2037 =for apidoc p||require_pv
2038
2039 Tells Perl to C<require> the file named by the string argument.  It is
2040 analogous to the Perl code C<eval "require '$file'">.  It's even
2041 implemented that way; consider using Perl_load_module instead.
2042
2043 =cut */
2044
2045 void
2046 Perl_require_pv(pTHX_ const char *pv)
2047 {
2048     SV* sv;
2049     dSP;
2050     PUSHSTACKi(PERLSI_REQUIRE);
2051     PUTBACK;
2052     sv = sv_newmortal();
2053     sv_setpv(sv, "require '");
2054     sv_catpv(sv, pv);
2055     sv_catpv(sv, "'");
2056     eval_sv(sv, G_DISCARD);
2057     SPAGAIN;
2058     POPSTACK;
2059 }
2060
2061 void
2062 Perl_magicname(pTHX_ char *sym, char *name, I32 namlen)
2063 {
2064     register GV *gv;
2065
2066     if ((gv = gv_fetchpv(sym,TRUE, SVt_PV)))
2067         sv_magic(GvSV(gv), (SV*)gv, PERL_MAGIC_sv, name, namlen);
2068 }
2069
2070 STATIC void
2071 S_usage(pTHX_ char *name)               /* XXX move this out into a module ? */
2072 {
2073     /* This message really ought to be max 23 lines.
2074      * Removed -h because the user already knows that option. Others? */
2075
2076     static char *usage_msg[] = {
2077 "-0[octal]       specify record separator (\\0, if no argument)",
2078 "-a              autosplit mode with -n or -p (splits $_ into @F)",
2079 "-C              enable native wide character system interfaces",
2080 "-c              check syntax only (runs BEGIN and CHECK blocks)",
2081 "-d[:debugger]   run program under debugger",
2082 "-D[number/list] set debugging flags (argument is a bit mask or alphabets)",
2083 "-e 'command'    one line of program (several -e's allowed, omit programfile)",
2084 "-F/pattern/     split() pattern for -a switch (//'s are optional)",
2085 "-i[extension]   edit <> files in place (makes backup if extension supplied)",
2086 "-Idirectory     specify @INC/#include directory (several -I's allowed)",
2087 "-l[octal]       enable line ending processing, specifies line terminator",
2088 "-[mM][-]module  execute `use/no module...' before executing program",
2089 "-n              assume 'while (<>) { ... }' loop around program",
2090 "-p              assume loop like -n but print line also, like sed",
2091 "-P              run program through C preprocessor before compilation",
2092 "-s              enable rudimentary parsing for switches after programfile",
2093 "-S              look for programfile using PATH environment variable",
2094 "-T              enable tainting checks",
2095 "-u              dump core after parsing program",
2096 "-U              allow unsafe operations",
2097 "-v              print version, subversion (includes VERY IMPORTANT perl info)",
2098 "-V[:variable]   print configuration summary (or a single Config.pm variable)",
2099 "-w              enable many useful warnings (RECOMMENDED)",
2100 "-W              enable all warnings",
2101 "-X              disable all warnings",
2102 "-x[directory]   strip off text before #!perl line and perhaps cd to directory",
2103 "\n",
2104 NULL
2105 };
2106     char **p = usage_msg;
2107
2108     PerlIO_printf(PerlIO_stdout(),
2109                   "\nUsage: %s [switches] [--] [programfile] [arguments]",
2110                   name);
2111     while (*p)
2112         PerlIO_printf(PerlIO_stdout(), "\n  %s", *p++);
2113 }
2114
2115 /* This routine handles any switches that can be given during run */
2116
2117 char *
2118 Perl_moreswitches(pTHX_ char *s)
2119 {
2120     STRLEN numlen;
2121     U32 rschar;
2122
2123     switch (*s) {
2124     case '0':
2125     {
2126         numlen = 0;                     /* disallow underscores */
2127         rschar = (U32)scan_oct(s, 4, &numlen);
2128         SvREFCNT_dec(PL_nrs);
2129         if (rschar & ~((U8)~0))
2130             PL_nrs = &PL_sv_undef;
2131         else if (!rschar && numlen >= 2)
2132             PL_nrs = newSVpvn("", 0);
2133         else {
2134             char ch = rschar;
2135             PL_nrs = newSVpvn(&ch, 1);
2136         }
2137         return s + numlen;
2138     }
2139     case 'C':
2140         PL_widesyscalls = TRUE;
2141         s++;
2142         return s;
2143     case 'F':
2144         PL_minus_F = TRUE;
2145         PL_splitstr = savepv(s + 1);
2146         s += strlen(s);
2147         return s;
2148     case 'a':
2149         PL_minus_a = TRUE;
2150         s++;
2151         return s;
2152     case 'c':
2153         PL_minus_c = TRUE;
2154         s++;
2155         return s;
2156     case 'd':
2157         forbid_setid("-d");
2158         s++;
2159         /* The following permits -d:Mod to accepts arguments following an =
2160            in the fashion that -MSome::Mod does. */
2161         if (*s == ':' || *s == '=') {
2162             char *start;
2163             SV *sv;
2164             sv = newSVpv("use Devel::", 0);
2165             start = ++s;
2166             /* We now allow -d:Module=Foo,Bar */
2167             while(isALNUM(*s) || *s==':') ++s;
2168             if (*s != '=')
2169                 sv_catpv(sv, start);
2170             else {
2171                 sv_catpvn(sv, start, s-start);
2172                 sv_catpv(sv, " split(/,/,q{");
2173                 sv_catpv(sv, ++s);
2174                 sv_catpv(sv,    "})");
2175             }
2176             s += strlen(s);
2177             my_setenv("PERL5DB", SvPV(sv, PL_na));
2178         }
2179         if (!PL_perldb) {
2180             PL_perldb = PERLDB_ALL;
2181             init_debugger();
2182         }
2183         return s;
2184     case 'D':
2185     {   
2186 #ifdef DEBUGGING
2187         forbid_setid("-D");
2188         if (isALPHA(s[1])) {
2189             /* if adding extra options, remember to update DEBUG_MASK */
2190             static char debopts[] = "psltocPmfrxuLHXDSTR";
2191             char *d;
2192
2193             for (s++; *s && (d = strchr(debopts,*s)); s++)
2194                 PL_debug |= 1 << (d - debopts);
2195         }
2196         else {
2197             PL_debug = atoi(s+1);
2198             for (s++; isDIGIT(*s); s++) ;
2199         }
2200         PL_debug |= DEBUG_TOP_FLAG;
2201 #else
2202         if (ckWARN_d(WARN_DEBUGGING))
2203             Perl_warner(aTHX_ WARN_DEBUGGING,
2204                    "Recompile perl with -DDEBUGGING to use -D switch\n");
2205         for (s++; isALNUM(*s); s++) ;
2206 #endif
2207         /*SUPPRESS 530*/
2208         return s;
2209     }   
2210     case 'h':
2211         usage(PL_origargv[0]);
2212         PerlProc_exit(0);
2213     case 'i':
2214         if (PL_inplace)
2215             Safefree(PL_inplace);
2216         PL_inplace = savepv(s+1);
2217         /*SUPPRESS 530*/
2218         for (s = PL_inplace; *s && !isSPACE(*s); s++) ;
2219         if (*s) {
2220             *s++ = '\0';
2221             if (*s == '-')      /* Additional switches on #! line. */
2222                 s++;
2223         }
2224         return s;
2225     case 'I':   /* -I handled both here and in parse_perl() */
2226         forbid_setid("-I");
2227         ++s;
2228         while (*s && isSPACE(*s))
2229             ++s;
2230         if (*s) {
2231             char *e, *p;
2232             p = s;
2233             /* ignore trailing spaces (possibly followed by other switches) */
2234             do {
2235                 for (e = p; *e && !isSPACE(*e); e++) ;
2236                 p = e;
2237                 while (isSPACE(*p))
2238                     p++;
2239             } while (*p && *p != '-');
2240             e = savepvn(s, e-s);
2241             incpush(e, TRUE, TRUE);
2242             Safefree(e);
2243             s = p;
2244             if (*s == '-')
2245                 s++;
2246         }
2247         else
2248             Perl_croak(aTHX_ "No directory specified for -I");
2249         return s;
2250     case 'l':
2251         PL_minus_l = TRUE;
2252         s++;
2253         if (PL_ors_sv) {
2254             SvREFCNT_dec(PL_ors_sv);
2255             PL_ors_sv = Nullsv;
2256         }
2257         if (isDIGIT(*s)) {
2258             PL_ors_sv = newSVpvn("\n",1);
2259             numlen = 0;                 /* disallow underscores */
2260             *SvPVX(PL_ors_sv) = (char)scan_oct(s, 3 + (*s == '0'), &numlen);
2261             s += numlen;
2262         }
2263         else {
2264             if (RsPARA(PL_nrs)) {
2265                 PL_ors_sv = newSVpvn("\n\n",2);
2266             }
2267             else {
2268                 PL_ors_sv = newSVsv(PL_nrs);
2269             }
2270         }
2271         return s;
2272     case 'M':
2273         forbid_setid("-M");     /* XXX ? */
2274         /* FALL THROUGH */
2275     case 'm':
2276         forbid_setid("-m");     /* XXX ? */
2277         if (*++s) {
2278             char *start;
2279             SV *sv;
2280             char *use = "use ";
2281             /* -M-foo == 'no foo'       */
2282             if (*s == '-') { use = "no "; ++s; }
2283             sv = newSVpv(use,0);
2284             start = s;
2285             /* We allow -M'Module qw(Foo Bar)'  */
2286             while(isALNUM(*s) || *s==':') ++s;
2287             if (*s != '=') {
2288                 sv_catpv(sv, start);
2289                 if (*(start-1) == 'm') {
2290                     if (*s != '\0')
2291                         Perl_croak(aTHX_ "Can't use '%c' after -mname", *s);
2292                     sv_catpv( sv, " ()");
2293                 }
2294             } else {
2295                 if (s == start)
2296                     Perl_croak(aTHX_ "Module name required with -%c option",
2297                                s[-1]);
2298                 sv_catpvn(sv, start, s-start);
2299                 sv_catpv(sv, " split(/,/,q{");
2300                 sv_catpv(sv, ++s);
2301                 sv_catpv(sv,    "})");
2302             }
2303             s += strlen(s);
2304             if (!PL_preambleav)
2305                 PL_preambleav = newAV();
2306             av_push(PL_preambleav, sv);
2307         }
2308         else
2309             Perl_croak(aTHX_ "No space allowed after -%c", *(s-1));
2310         return s;
2311     case 'n':
2312         PL_minus_n = TRUE;
2313         s++;
2314         return s;
2315     case 'p':
2316         PL_minus_p = TRUE;
2317         s++;
2318         return s;
2319     case 's':
2320         forbid_setid("-s");
2321         PL_doswitches = TRUE;
2322         s++;
2323         return s;
2324     case 'T':
2325         if (!PL_tainting)
2326             Perl_croak(aTHX_ "Too late for \"-T\" option");
2327         s++;
2328         return s;
2329     case 'u':
2330 #ifdef MACOS_TRADITIONAL
2331         Perl_croak(aTHX_ "Believe me, you don't want to use \"-u\" on a Macintosh");
2332 #endif
2333         PL_do_undump = TRUE;
2334         s++;
2335         return s;
2336     case 'U':
2337         PL_unsafe = TRUE;
2338         s++;
2339         return s;
2340     case 'v':
2341 #if !defined(DGUX)
2342         PerlIO_printf(PerlIO_stdout(),
2343                       Perl_form(aTHX_ "\nThis is perl, v%"VDf" built for %s",
2344                                 PL_patchlevel, ARCHNAME));
2345 #else /* DGUX */
2346 /* Adjust verbose output as in the perl that ships with the DG/UX OS from EMC */
2347         PerlIO_printf(PerlIO_stdout(),
2348                         Perl_form(aTHX_ "\nThis is perl, version %vd\n", PL_patchlevel));
2349         PerlIO_printf(PerlIO_stdout(),
2350                         Perl_form(aTHX_ "        built under %s at %s %s\n",
2351                                         OSNAME, __DATE__, __TIME__));
2352         PerlIO_printf(PerlIO_stdout(),
2353                         Perl_form(aTHX_ "        OS Specific Release: %s\n",
2354                                         OSVERS));
2355 #endif /* !DGUX */
2356
2357 #if defined(LOCAL_PATCH_COUNT)
2358         if (LOCAL_PATCH_COUNT > 0)
2359             PerlIO_printf(PerlIO_stdout(),
2360                           "\n(with %d registered patch%s, "
2361                           "see perl -V for more detail)",
2362                           (int)LOCAL_PATCH_COUNT,
2363                           (LOCAL_PATCH_COUNT!=1) ? "es" : "");
2364 #endif
2365
2366         PerlIO_printf(PerlIO_stdout(),
2367                       "\n\nCopyright 1987-2001, Larry Wall\n");
2368 #ifdef MACOS_TRADITIONAL
2369         PerlIO_printf(PerlIO_stdout(),
2370                       "\nMac OS port Copyright (c) 1991-2001, Matthias Neeracher\n");
2371 #endif
2372 #ifdef MSDOS
2373         PerlIO_printf(PerlIO_stdout(),
2374                       "\nMS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis\n");
2375 #endif
2376 #ifdef DJGPP
2377         PerlIO_printf(PerlIO_stdout(),
2378                       "djgpp v2 port (jpl5003c) by Hirofumi Watanabe, 1996\n"
2379                       "djgpp v2 port (perl5004+) by Laszlo Molnar, 1997-1999\n");
2380 #endif
2381 #ifdef OS2
2382         PerlIO_printf(PerlIO_stdout(),
2383                       "\n\nOS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n"
2384                       "Version 5 port Copyright (c) 1994-1999, Andreas Kaiser, Ilya Zakharevich\n");
2385 #endif
2386 #ifdef atarist
2387         PerlIO_printf(PerlIO_stdout(),
2388                       "atariST series port, ++jrb  bammi@cadence.com\n");
2389 #endif
2390 #ifdef __BEOS__
2391         PerlIO_printf(PerlIO_stdout(),
2392                       "BeOS port Copyright Tom Spindler, 1997-1999\n");
2393 #endif
2394 #ifdef MPE
2395         PerlIO_printf(PerlIO_stdout(),
2396                       "MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-2001\n");
2397 #endif
2398 #ifdef OEMVS
2399         PerlIO_printf(PerlIO_stdout(),
2400                       "MVS (OS390) port by Mortice Kern Systems, 1997-1999\n");
2401 #endif
2402 #ifdef __VOS__
2403         PerlIO_printf(PerlIO_stdout(),
2404                       "Stratus VOS port by Paul_Green@stratus.com, 1997-1999\n");
2405 #endif
2406 #ifdef __OPEN_VM
2407         PerlIO_printf(PerlIO_stdout(),
2408                       "VM/ESA port by Neale Ferguson, 1998-1999\n");
2409 #endif
2410 #ifdef POSIX_BC
2411         PerlIO_printf(PerlIO_stdout(),
2412                       "BS2000 (POSIX) port by Start Amadeus GmbH, 1998-1999\n");
2413 #endif
2414 #ifdef __MINT__
2415         PerlIO_printf(PerlIO_stdout(),
2416                       "MiNT port by Guido Flohr, 1997-1999\n");
2417 #endif
2418 #ifdef EPOC
2419         PerlIO_printf(PerlIO_stdout(),
2420                       "EPOC port by Olaf Flebbe, 1999-2000\n");
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         for (; *env; env++) {
3467             if (!(s = strchr(*env,'=')))
3468                 continue;
3469             *s++ = '\0';
3470 #if defined(MSDOS)
3471             (void)strupr(*env);
3472 #endif
3473             sv = newSVpv(s--,0);
3474             (void)hv_store(hv, *env, s - *env, sv, 0);
3475             *s = '=';
3476         }
3477 #ifdef NEED_ENVIRON_DUP_FOR_MODIFY
3478         if (dup_env_base) {
3479             char **dup_env;
3480             for (dup_env = dup_env_base; *dup_env; dup_env++)
3481                 safesysfree(*dup_env);
3482             safesysfree(dup_env_base);
3483         }
3484 #endif /* NEED_ENVIRON_DUP_FOR_MODIFY */
3485 #endif /* USE_ENVIRON_ARRAY */
3486     }
3487     TAINT_NOT;
3488     if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
3489         sv_setiv(GvSV(tmpgv), (IV)PerlProc_getpid());
3490 }
3491
3492 STATIC void
3493 S_init_perllib(pTHX)
3494 {
3495     char *s;
3496     if (!PL_tainting) {
3497 #ifndef VMS
3498         s = PerlEnv_getenv("PERL5LIB");
3499         if (s)
3500             incpush(s, TRUE, TRUE);
3501         else
3502             incpush(PerlEnv_getenv("PERLLIB"), FALSE, FALSE);
3503 #else /* VMS */
3504         /* Treat PERL5?LIB as a possible search list logical name -- the
3505          * "natural" VMS idiom for a Unix path string.  We allow each
3506          * element to be a set of |-separated directories for compatibility.
3507          */
3508         char buf[256];
3509         int idx = 0;
3510         if (my_trnlnm("PERL5LIB",buf,0))
3511             do { incpush(buf,TRUE,TRUE); } while (my_trnlnm("PERL5LIB",buf,++idx));
3512         else
3513             while (my_trnlnm("PERLLIB",buf,idx++)) incpush(buf,FALSE,FALSE);
3514 #endif /* VMS */
3515     }
3516
3517 /* Use the ~-expanded versions of APPLLIB (undocumented),
3518     ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB
3519 */
3520 #ifdef APPLLIB_EXP
3521     incpush(APPLLIB_EXP, TRUE, TRUE);
3522 #endif
3523
3524 #ifdef ARCHLIB_EXP
3525     incpush(ARCHLIB_EXP, FALSE, FALSE);
3526 #endif
3527 #ifdef MACOS_TRADITIONAL
3528     {
3529         struct stat tmpstatbuf;
3530         SV * privdir = NEWSV(55, 0);
3531         char * macperl = PerlEnv_getenv("MACPERL");
3532         
3533         if (!macperl)
3534             macperl = "";
3535         
3536         Perl_sv_setpvf(aTHX_ privdir, "%slib:", macperl);
3537         if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
3538             incpush(SvPVX(privdir), TRUE, FALSE);
3539         Perl_sv_setpvf(aTHX_ privdir, "%ssite_perl:", macperl);
3540         if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
3541             incpush(SvPVX(privdir), TRUE, FALSE);
3542         
3543         SvREFCNT_dec(privdir);
3544     }
3545     if (!PL_tainting)
3546         incpush(":", FALSE, FALSE);
3547 #else
3548 #ifndef PRIVLIB_EXP
3549 #  define PRIVLIB_EXP "/usr/local/lib/perl5:/usr/local/lib/perl"
3550 #endif
3551 #if defined(WIN32)
3552     incpush(PRIVLIB_EXP, TRUE, FALSE);
3553 #else
3554     incpush(PRIVLIB_EXP, FALSE, FALSE);
3555 #endif
3556
3557 #ifdef SITEARCH_EXP
3558     /* sitearch is always relative to sitelib on Windows for
3559      * DLL-based path intuition to work correctly */
3560 #  if !defined(WIN32)
3561     incpush(SITEARCH_EXP, FALSE, FALSE);
3562 #  endif
3563 #endif
3564
3565 #ifdef SITELIB_EXP
3566 #  if defined(WIN32)
3567     incpush(SITELIB_EXP, TRUE, FALSE);  /* this picks up sitearch as well */
3568 #  else
3569     incpush(SITELIB_EXP, FALSE, FALSE);
3570 #  endif
3571 #endif
3572
3573 #ifdef SITELIB_STEM /* Search for version-specific dirs below here */
3574     incpush(SITELIB_STEM, FALSE, TRUE);
3575 #endif
3576
3577 #ifdef PERL_VENDORARCH_EXP
3578     /* vendorarch is always relative to vendorlib on Windows for
3579      * DLL-based path intuition to work correctly */
3580 #  if !defined(WIN32)
3581     incpush(PERL_VENDORARCH_EXP, FALSE, FALSE);
3582 #  endif
3583 #endif
3584
3585 #ifdef PERL_VENDORLIB_EXP
3586 #  if defined(WIN32)
3587     incpush(PERL_VENDORLIB_EXP, TRUE, FALSE);   /* this picks up vendorarch as well */
3588 #  else
3589     incpush(PERL_VENDORLIB_EXP, FALSE, FALSE);
3590 #  endif
3591 #endif
3592
3593 #ifdef PERL_VENDORLIB_STEM /* Search for version-specific dirs below here */
3594     incpush(PERL_VENDORLIB_STEM, FALSE, TRUE);
3595 #endif
3596
3597 #ifdef PERL_OTHERLIBDIRS
3598     incpush(PERL_OTHERLIBDIRS, TRUE, TRUE);
3599 #endif
3600
3601     if (!PL_tainting)
3602         incpush(".", FALSE, FALSE);
3603 #endif /* MACOS_TRADITIONAL */
3604 }
3605
3606 #if defined(DOSISH) || defined(EPOC)
3607 #    define PERLLIB_SEP ';'
3608 #else
3609 #  if defined(VMS)
3610 #    define PERLLIB_SEP '|'
3611 #  else
3612 #    if defined(MACOS_TRADITIONAL)
3613 #      define PERLLIB_SEP ','
3614 #    else
3615 #      define PERLLIB_SEP ':'
3616 #    endif
3617 #  endif
3618 #endif
3619 #ifndef PERLLIB_MANGLE
3620 #  define PERLLIB_MANGLE(s,n) (s)
3621 #endif
3622
3623 STATIC void
3624 S_incpush(pTHX_ char *p, int addsubdirs, int addoldvers)
3625 {
3626     SV *subdir = Nullsv;
3627
3628     if (!p || !*p)
3629         return;
3630
3631     if (addsubdirs || addoldvers) {
3632         subdir = sv_newmortal();
3633     }
3634
3635     /* Break at all separators */
3636     while (p && *p) {
3637         SV *libdir = NEWSV(55,0);
3638         char *s;
3639
3640         /* skip any consecutive separators */
3641         while ( *p == PERLLIB_SEP ) {
3642             /* Uncomment the next line for PATH semantics */
3643             /* av_push(GvAVn(PL_incgv), newSVpvn(".", 1)); */
3644             p++;
3645         }
3646
3647         if ( (s = strchr(p, PERLLIB_SEP)) != Nullch ) {
3648             sv_setpvn(libdir, PERLLIB_MANGLE(p, (STRLEN)(s - p)),
3649                       (STRLEN)(s - p));
3650             p = s + 1;
3651         }
3652         else {
3653             sv_setpv(libdir, PERLLIB_MANGLE(p, 0));
3654             p = Nullch; /* break out */
3655         }
3656 #ifdef MACOS_TRADITIONAL
3657         if (!strchr(SvPVX(libdir), ':'))
3658             sv_insert(libdir, 0, 0, ":", 1);
3659         if (SvPVX(libdir)[SvCUR(libdir)-1] != ':')
3660             sv_catpv(libdir, ":");
3661 #endif
3662
3663         /*
3664          * BEFORE pushing libdir onto @INC we may first push version- and
3665          * archname-specific sub-directories.
3666          */
3667         if (addsubdirs || addoldvers) {
3668 #ifdef PERL_INC_VERSION_LIST
3669             /* Configure terminates PERL_INC_VERSION_LIST with a NULL */
3670             const char *incverlist[] = { PERL_INC_VERSION_LIST };
3671             const char **incver;
3672 #endif
3673             struct stat tmpstatbuf;
3674 #ifdef VMS
3675             char *unix;
3676             STRLEN len;
3677
3678             if ((unix = tounixspec_ts(SvPV(libdir,len),Nullch)) != Nullch) {
3679                 len = strlen(unix);
3680                 while (unix[len-1] == '/') len--;  /* Cosmetic */
3681                 sv_usepvn(libdir,unix,len);
3682             }
3683             else
3684                 PerlIO_printf(Perl_error_log,
3685                               "Failed to unixify @INC element \"%s\"\n",
3686                               SvPV(libdir,len));
3687 #endif
3688             if (addsubdirs) {
3689 #ifdef MACOS_TRADITIONAL
3690 #define PERL_AV_SUFFIX_FMT      ""
3691 #define PERL_ARCH_FMT           "%s:"
3692 #define PERL_ARCH_FMT_PATH      PERL_FS_VER_FMT PERL_AV_SUFFIX_FMT
3693 #else
3694 #define PERL_AV_SUFFIX_FMT      "/"
3695 #define PERL_ARCH_FMT           "/%s"
3696 #define PERL_ARCH_FMT_PATH      PERL_AV_SUFFIX_FMT PERL_FS_VER_FMT
3697 #endif
3698                 /* .../version/archname if -d .../version/archname */
3699                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH PERL_ARCH_FMT,
3700                                 libdir,
3701                                (int)PERL_REVISION, (int)PERL_VERSION,
3702                                (int)PERL_SUBVERSION, ARCHNAME);
3703                 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3704                       S_ISDIR(tmpstatbuf.st_mode))
3705                     av_push(GvAVn(PL_incgv), newSVsv(subdir));
3706
3707                 /* .../version if -d .../version */
3708                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH, libdir,
3709                                (int)PERL_REVISION, (int)PERL_VERSION,
3710                                (int)PERL_SUBVERSION);
3711                 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3712                       S_ISDIR(tmpstatbuf.st_mode))
3713                     av_push(GvAVn(PL_incgv), newSVsv(subdir));
3714
3715                 /* .../archname if -d .../archname */
3716                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, ARCHNAME);
3717                 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3718                       S_ISDIR(tmpstatbuf.st_mode))
3719                     av_push(GvAVn(PL_incgv), newSVsv(subdir));
3720             }
3721
3722 #ifdef PERL_INC_VERSION_LIST
3723             if (addoldvers) {
3724                 for (incver = incverlist; *incver; incver++) {
3725                     /* .../xxx if -d .../xxx */
3726                     Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, *incver);
3727                     if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
3728                           S_ISDIR(tmpstatbuf.st_mode))
3729                         av_push(GvAVn(PL_incgv), newSVsv(subdir));
3730                 }
3731             }
3732 #endif
3733         }
3734
3735         /* finally push this lib directory on the end of @INC */
3736         av_push(GvAVn(PL_incgv), libdir);
3737     }
3738 }
3739
3740 #ifdef USE_THREADS
3741 STATIC struct perl_thread *
3742 S_init_main_thread(pTHX)
3743 {
3744 #if !defined(PERL_IMPLICIT_CONTEXT)
3745     struct perl_thread *thr;
3746 #endif
3747     XPV *xpv;
3748
3749     Newz(53, thr, 1, struct perl_thread);
3750     PL_curcop = &PL_compiling;
3751     thr->interp = PERL_GET_INTERP;
3752     thr->cvcache = newHV();
3753     thr->threadsv = newAV();
3754     /* thr->threadsvp is set when find_threadsv is called */
3755     thr->specific = newAV();
3756     thr->flags = THRf_R_JOINABLE;
3757     MUTEX_INIT(&thr->mutex);
3758     /* Handcraft thrsv similarly to mess_sv */
3759     New(53, PL_thrsv, 1, SV);
3760     Newz(53, xpv, 1, XPV);
3761     SvFLAGS(PL_thrsv) = SVt_PV;
3762     SvANY(PL_thrsv) = (void*)xpv;
3763     SvREFCNT(PL_thrsv) = 1 << 30;       /* practically infinite */
3764     SvPVX(PL_thrsv) = (char*)thr;
3765     SvCUR_set(PL_thrsv, sizeof(thr));
3766     SvLEN_set(PL_thrsv, sizeof(thr));
3767     *SvEND(PL_thrsv) = '\0';    /* in the trailing_nul field */
3768     thr->oursv = PL_thrsv;
3769     PL_chopset = " \n-";
3770     PL_dumpindent = 4;
3771
3772     MUTEX_LOCK(&PL_threads_mutex);
3773     PL_nthreads++;
3774     thr->tid = 0;
3775     thr->next = thr;
3776     thr->prev = thr;
3777     thr->thr_done = 0;
3778     MUTEX_UNLOCK(&PL_threads_mutex);
3779
3780 #ifdef HAVE_THREAD_INTERN
3781     Perl_init_thread_intern(thr);
3782 #endif
3783
3784 #ifdef SET_THREAD_SELF
3785     SET_THREAD_SELF(thr);
3786 #else
3787     thr->self = pthread_self();
3788 #endif /* SET_THREAD_SELF */
3789     PERL_SET_THX(thr);
3790
3791     /*
3792      * These must come after the thread self setting
3793      * because sv_setpvn does SvTAINT and the taint
3794      * fields thread selfness being set.
3795      */
3796     PL_toptarget = NEWSV(0,0);
3797     sv_upgrade(PL_toptarget, SVt_PVFM);
3798     sv_setpvn(PL_toptarget, "", 0);
3799     PL_bodytarget = NEWSV(0,0);
3800     sv_upgrade(PL_bodytarget, SVt_PVFM);
3801     sv_setpvn(PL_bodytarget, "", 0);
3802     PL_formtarget = PL_bodytarget;
3803     thr->errsv = newSVpvn("", 0);
3804     (void) find_threadsv("@");  /* Ensure $@ is initialised early */
3805
3806     PL_maxscream = -1;
3807     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3808     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3809     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3810     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3811     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3812     PL_regindent = 0;
3813     PL_reginterp_cnt = 0;
3814
3815     return thr;
3816 }
3817 #endif /* USE_THREADS */
3818
3819 void
3820 Perl_call_list(pTHX_ I32 oldscope, AV *paramList)
3821 {
3822     SV *atsv;
3823     line_t oldline = CopLINE(PL_curcop);
3824     CV *cv;
3825     STRLEN len;
3826     int ret;
3827     dJMPENV;
3828
3829     while (AvFILL(paramList) >= 0) {
3830         cv = (CV*)av_shift(paramList);
3831         if ((PL_minus_c & 0x10) && (paramList == PL_beginav)) {
3832                 /* save PL_beginav for compiler */
3833             if (! PL_beginav_save)
3834                 PL_beginav_save = newAV();
3835             av_push(PL_beginav_save, (SV*)cv);
3836         } else {
3837             SAVEFREESV(cv);
3838         }
3839 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3840         CALLPROTECT(aTHX_ pcur_env, &ret, MEMBER_TO_FPTR(S_vcall_list_body), cv);
3841 #else
3842         JMPENV_PUSH(ret);
3843 #endif
3844         switch (ret) {
3845         case 0:
3846 #ifndef PERL_FLEXIBLE_EXCEPTIONS
3847             call_list_body(cv);
3848 #endif
3849             atsv = ERRSV;
3850             (void)SvPV(atsv, len);
3851             if (len) {
3852                 STRLEN n_a;
3853                 PL_curcop = &PL_compiling;
3854                 CopLINE_set(PL_curcop, oldline);
3855                 if (paramList == PL_beginav)
3856                     sv_catpv(atsv, "BEGIN failed--compilation aborted");
3857                 else
3858                     Perl_sv_catpvf(aTHX_ atsv,
3859                                    "%s failed--call queue aborted",
3860                                    paramList == PL_checkav ? "CHECK"
3861                                    : paramList == PL_initav ? "INIT"
3862                                    : "END");
3863                 while (PL_scopestack_ix > oldscope)
3864                     LEAVE;
3865                 JMPENV_POP;
3866                 Perl_croak(aTHX_ "%s", SvPVx(atsv, n_a));
3867             }
3868             break;
3869         case 1:
3870             STATUS_ALL_FAILURE;
3871             /* FALL THROUGH */
3872         case 2:
3873             /* my_exit() was called */
3874             while (PL_scopestack_ix > oldscope)
3875                 LEAVE;
3876             FREETMPS;
3877             PL_curstash = PL_defstash;
3878             PL_curcop = &PL_compiling;
3879             CopLINE_set(PL_curcop, oldline);
3880             JMPENV_POP;
3881             if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED)) {
3882                 if (paramList == PL_beginav)
3883                     Perl_croak(aTHX_ "BEGIN failed--compilation aborted");
3884                 else
3885                     Perl_croak(aTHX_ "%s failed--call queue aborted",
3886                                paramList == PL_checkav ? "CHECK"
3887                                : paramList == PL_initav ? "INIT"
3888                                : "END");
3889             }
3890             my_exit_jump();
3891             /* NOTREACHED */
3892         case 3:
3893             if (PL_restartop) {
3894                 PL_curcop = &PL_compiling;
3895                 CopLINE_set(PL_curcop, oldline);
3896                 JMPENV_JUMP(3);
3897             }
3898             PerlIO_printf(Perl_error_log, "panic: restartop\n");
3899             FREETMPS;
3900             break;
3901         }
3902         JMPENV_POP;
3903     }
3904 }
3905
3906 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3907 STATIC void *
3908 S_vcall_list_body(pTHX_ va_list args)
3909 {
3910     CV *cv = va_arg(args, CV*);
3911     return call_list_body(cv);
3912 }
3913 #endif
3914
3915 STATIC void *
3916 S_call_list_body(pTHX_ CV *cv)
3917 {
3918     PUSHMARK(PL_stack_sp);
3919     call_sv((SV*)cv, G_EVAL|G_DISCARD);
3920     return NULL;
3921 }
3922
3923 void
3924 Perl_my_exit(pTHX_ U32 status)
3925 {
3926     DEBUG_S(PerlIO_printf(Perl_debug_log, "my_exit: thread %p, status %lu\n",
3927                           thr, (unsigned long) status));
3928     switch (status) {
3929     case 0:
3930         STATUS_ALL_SUCCESS;
3931         break;
3932     case 1:
3933         STATUS_ALL_FAILURE;
3934         break;
3935     default:
3936         STATUS_NATIVE_SET(status);
3937         break;
3938     }
3939     my_exit_jump();
3940 }
3941
3942 void
3943 Perl_my_failure_exit(pTHX)
3944 {
3945 #ifdef VMS
3946     if (vaxc$errno & 1) {
3947         if (STATUS_NATIVE & 1)          /* fortuitiously includes "-1" */
3948             STATUS_NATIVE_SET(44);
3949     }
3950     else {
3951         if (!vaxc$errno && errno)       /* unlikely */
3952             STATUS_NATIVE_SET(44);
3953         else
3954             STATUS_NATIVE_SET(vaxc$errno);
3955     }
3956 #else
3957     int exitstatus;
3958     if (errno & 255)
3959         STATUS_POSIX_SET(errno);
3960     else {
3961         exitstatus = STATUS_POSIX >> 8;
3962         if (exitstatus & 255)
3963             STATUS_POSIX_SET(exitstatus);
3964         else
3965             STATUS_POSIX_SET(255);
3966     }
3967 #endif
3968     my_exit_jump();
3969 }
3970
3971 STATIC void
3972 S_my_exit_jump(pTHX)
3973 {
3974     register PERL_CONTEXT *cx;
3975     I32 gimme;
3976     SV **newsp;
3977
3978     if (PL_e_script) {
3979         SvREFCNT_dec(PL_e_script);
3980         PL_e_script = Nullsv;
3981     }
3982
3983     POPSTACK_TO(PL_mainstack);
3984     if (cxstack_ix >= 0) {
3985         if (cxstack_ix > 0)
3986             dounwind(0);
3987         POPBLOCK(cx,PL_curpm);
3988         LEAVE;
3989     }
3990
3991     JMPENV_JUMP(2);
3992 }
3993
3994 #ifdef PERL_OBJECT
3995 #include "XSUB.h"
3996 #endif
3997
3998 static I32
3999 read_e_script(pTHXo_ int idx, SV *buf_sv, int maxlen)
4000 {
4001     char *p, *nl;
4002     p  = SvPVX(PL_e_script);
4003     nl = strchr(p, '\n');
4004     nl = (nl) ? nl+1 : SvEND(PL_e_script);
4005     if (nl-p == 0) {
4006         filter_del(read_e_script);
4007         return 0;
4008     }
4009     sv_catpvn(buf_sv, p, nl-p);
4010     sv_chop(PL_e_script, nl);
4011     return 1;
4012 }