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