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