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