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