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