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