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