This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make dump and -u croak on Win32 and Cygwin to avoid confusion
[perl5.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(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     dVAR;
1339     Renew(PL_exitlist, PL_exitlistlen+1, PerlExitListEntry);
1340     PL_exitlist[PL_exitlistlen].fn = fn;
1341     PL_exitlist[PL_exitlistlen].ptr = ptr;
1342     ++PL_exitlistlen;
1343 }
1344
1345 #ifdef HAS_PROCSELFEXE
1346 /* This is a function so that we don't hold on to MAXPATHLEN
1347    bytes of stack longer than necessary
1348  */
1349 STATIC void
1350 S_procself_val(pTHX_ SV *sv, const char *arg0)
1351 {
1352     char buf[MAXPATHLEN];
1353     int len = readlink(PROCSELFEXE_PATH, buf, sizeof(buf) - 1);
1354
1355     /* On Playstation2 Linux V1.0 (kernel 2.2.1) readlink(/proc/self/exe)
1356        includes a spurious NUL which will cause $^X to fail in system
1357        or backticks (this will prevent extensions from being built and
1358        many tests from working). readlink is not meant to add a NUL.
1359        Normal readlink works fine.
1360      */
1361     if (len > 0 && buf[len-1] == '\0') {
1362       len--;
1363     }
1364
1365     /* FreeBSD's implementation is acknowledged to be imperfect, sometimes
1366        returning the text "unknown" from the readlink rather than the path
1367        to the executable (or returning an error from the readlink).  Any valid
1368        path has a '/' in it somewhere, so use that to validate the result.
1369        See http://www.freebsd.org/cgi/query-pr.cgi?pr=35703
1370     */
1371     if (len > 0 && memchr(buf, '/', len)) {
1372         sv_setpvn(sv,buf,len);
1373     }
1374     else {
1375         sv_setpv(sv,arg0);
1376     }
1377 }
1378 #endif /* HAS_PROCSELFEXE */
1379
1380 STATIC void
1381 S_set_caret_X(pTHX) {
1382     dVAR;
1383     GV* tmpgv = gv_fetchpv("\030",TRUE, SVt_PV); /* $^X */
1384     if (tmpgv) {
1385 #ifdef HAS_PROCSELFEXE
1386         S_procself_val(aTHX_ GvSV(tmpgv), PL_origargv[0]);
1387 #else
1388 #ifdef OS2
1389         sv_setpv(GvSVn(tmpgv), os2_execname(aTHX));
1390 #else
1391         sv_setpv(GvSVn(tmpgv),PL_origargv[0]);
1392 #endif
1393 #endif
1394     }
1395 }
1396
1397 /*
1398 =for apidoc perl_parse
1399
1400 Tells a Perl interpreter to parse a Perl script.  See L<perlembed>.
1401
1402 =cut
1403 */
1404
1405 int
1406 perl_parse(pTHXx_ XSINIT_t xsinit, int argc, char **argv, char **env)
1407 {
1408     dVAR;
1409     I32 oldscope;
1410     int ret;
1411     dJMPENV;
1412
1413     PERL_UNUSED_VAR(my_perl);
1414
1415 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
1416 #ifdef IAMSUID
1417 #undef IAMSUID
1418     Perl_croak(aTHX_ "suidperl is no longer needed since the kernel can now execute\n\
1419 setuid perl scripts securely.\n");
1420 #endif /* IAMSUID */
1421 #endif
1422
1423 #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT)
1424     /* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
1425      * This MUST be done before any hash stores or fetches take place.
1426      * If you set PL_rehash_seed (and assumedly also PL_rehash_seed_set)
1427      * yourself, it is your responsibility to provide a good random seed!
1428      * You can also define PERL_HASH_SEED in compile time, see hv.h. */
1429     if (!PL_rehash_seed_set)
1430          PL_rehash_seed = get_hash_seed();
1431     {
1432         const char * const s = PerlEnv_getenv("PERL_HASH_SEED_DEBUG");
1433
1434         if (s && (atoi(s) == 1))
1435             PerlIO_printf(Perl_debug_log, "HASH_SEED = %"UVuf"\n", PL_rehash_seed);
1436     }
1437 #endif /* #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT) */
1438
1439     PL_origargc = argc;
1440     PL_origargv = argv;
1441
1442     if (PL_origalen != 0) {
1443         PL_origalen = 1; /* don't use old PL_origalen if perl_parse() is called again */
1444     }
1445     else {
1446         /* Set PL_origalen be the sum of the contiguous argv[]
1447          * elements plus the size of the env in case that it is
1448          * contiguous with the argv[].  This is used in mg.c:Perl_magic_set()
1449          * as the maximum modifiable length of $0.  In the worst case
1450          * the area we are able to modify is limited to the size of
1451          * the original argv[0].  (See below for 'contiguous', though.)
1452          * --jhi */
1453          const char *s = NULL;
1454          int i;
1455          const UV mask =
1456            ~(UV)(PTRSIZE == 4 ? 3 : PTRSIZE == 8 ? 7 : PTRSIZE == 16 ? 15 : 0);
1457          /* Do the mask check only if the args seem like aligned. */
1458          const UV aligned =
1459            (mask < ~(UV)0) && ((PTR2UV(argv[0]) & mask) == PTR2UV(argv[0]));
1460
1461          /* See if all the arguments are contiguous in memory.  Note
1462           * that 'contiguous' is a loose term because some platforms
1463           * align the argv[] and the envp[].  If the arguments look
1464           * like non-aligned, assume that they are 'strictly' or
1465           * 'traditionally' contiguous.  If the arguments look like
1466           * aligned, we just check that they are within aligned
1467           * PTRSIZE bytes.  As long as no system has something bizarre
1468           * like the argv[] interleaved with some other data, we are
1469           * fine.  (Did I just evoke Murphy's Law?)  --jhi */
1470          if (PL_origargv && PL_origargc >= 1 && (s = PL_origargv[0])) {
1471               while (*s) s++;
1472               for (i = 1; i < PL_origargc; i++) {
1473                    if ((PL_origargv[i] == s + 1
1474 #ifdef OS2
1475                         || PL_origargv[i] == s + 2
1476 #endif 
1477                             )
1478                        ||
1479                        (aligned &&
1480                         (PL_origargv[i] >  s &&
1481                          PL_origargv[i] <=
1482                          INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1483                         )
1484                    {
1485                         s = PL_origargv[i];
1486                         while (*s) s++;
1487                    }
1488                    else
1489                         break;
1490               }
1491          }
1492          /* Can we grab env area too to be used as the area for $0? */
1493          if (s && PL_origenviron) {
1494               if ((PL_origenviron[0] == s + 1
1495 #ifdef OS2
1496                    || (PL_origenviron[0] == s + 9 && (s += 8))
1497 #endif 
1498                   )
1499                   ||
1500                   (aligned &&
1501                    (PL_origenviron[0] >  s &&
1502                     PL_origenviron[0] <=
1503                     INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1504                  )
1505               {
1506 #ifndef OS2
1507                    s = PL_origenviron[0];
1508                    while (*s) s++;
1509 #endif
1510                    my_setenv("NoNe  SuCh", Nullch);
1511                    /* Force copy of environment. */
1512                    for (i = 1; PL_origenviron[i]; i++) {
1513                         if (PL_origenviron[i] == s + 1
1514                             ||
1515                             (aligned &&
1516                              (PL_origenviron[i] >  s &&
1517                               PL_origenviron[i] <=
1518                               INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1519                            )
1520                         {
1521                              s = PL_origenviron[i];
1522                              while (*s) s++;
1523                         }
1524                         else
1525                              break;
1526                    }
1527               }
1528          }
1529          PL_origalen = s ? s - PL_origargv[0] + 1 : 0;
1530     }
1531
1532     if (PL_do_undump) {
1533
1534         /* Come here if running an undumped a.out. */
1535
1536         PL_origfilename = savepv(argv[0]);
1537         PL_do_undump = FALSE;
1538         cxstack_ix = -1;                /* start label stack again */
1539         init_ids();
1540         assert (!PL_tainted);
1541         TAINT;
1542         S_set_caret_X(aTHX);
1543         TAINT_NOT;
1544         init_postdump_symbols(argc,argv,env);
1545         return 0;
1546     }
1547
1548     if (PL_main_root) {
1549         op_free(PL_main_root);
1550         PL_main_root = Nullop;
1551     }
1552     PL_main_start = Nullop;
1553     SvREFCNT_dec(PL_main_cv);
1554     PL_main_cv = Nullcv;
1555
1556     time(&PL_basetime);
1557     oldscope = PL_scopestack_ix;
1558     PL_dowarn = G_WARN_OFF;
1559
1560     JMPENV_PUSH(ret);
1561     switch (ret) {
1562     case 0:
1563         parse_body(env,xsinit);
1564         if (PL_checkav)
1565             call_list(oldscope, PL_checkav);
1566         ret = 0;
1567         break;
1568     case 1:
1569         STATUS_ALL_FAILURE;
1570         /* FALL THROUGH */
1571     case 2:
1572         /* my_exit() was called */
1573         while (PL_scopestack_ix > oldscope)
1574             LEAVE;
1575         FREETMPS;
1576         PL_curstash = PL_defstash;
1577         if (PL_checkav)
1578             call_list(oldscope, PL_checkav);
1579         ret = STATUS_EXIT;
1580         break;
1581     case 3:
1582         PerlIO_printf(Perl_error_log, "panic: top_env\n");
1583         ret = 1;
1584         break;
1585     }
1586     JMPENV_POP;
1587     return ret;
1588 }
1589
1590 STATIC void *
1591 S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
1592 {
1593     dVAR;
1594     int argc = PL_origargc;
1595     char **argv = PL_origargv;
1596     const char *scriptname = NULL;
1597     VOL bool dosearch = FALSE;
1598     const char *validarg = "";
1599     register SV *sv;
1600     register char *s;
1601     const char *cddir = Nullch;
1602 #ifdef USE_SITECUSTOMIZE
1603     bool minus_f = FALSE;
1604 #endif
1605
1606     PL_fdscript = -1;
1607     PL_suidscript = -1;
1608     sv_setpvn(PL_linestr,"",0);
1609     sv = newSVpvs("");          /* first used for -I flags */
1610     SAVEFREESV(sv);
1611     init_main_stash();
1612
1613     for (argc--,argv++; argc > 0; argc--,argv++) {
1614         if (argv[0][0] != '-' || !argv[0][1])
1615             break;
1616 #ifdef DOSUID
1617     if (*validarg)
1618         validarg = " PHOOEY ";
1619     else
1620         validarg = argv[0];
1621     /*
1622      * Can we rely on the kernel to start scripts with argv[1] set to
1623      * contain all #! line switches (the whole line)? (argv[0] is set to
1624      * the interpreter name, argv[2] to the script name; argv[3] and
1625      * above may contain other arguments.)
1626      */
1627 #endif
1628         s = argv[0]+1;
1629       reswitch:
1630         switch (*s) {
1631         case 'C':
1632 #ifndef PERL_STRICT_CR
1633         case '\r':
1634 #endif
1635         case ' ':
1636         case '0':
1637         case 'F':
1638         case 'a':
1639         case 'c':
1640         case 'd':
1641         case 'D':
1642         case 'h':
1643         case 'i':
1644         case 'l':
1645         case 'M':
1646         case 'm':
1647         case 'n':
1648         case 'p':
1649         case 's':
1650         case 'u':
1651         case 'U':
1652         case 'v':
1653         case 'W':
1654         case 'X':
1655         case 'w':
1656         case 'A':
1657             if ((s = moreswitches(s)))
1658                 goto reswitch;
1659             break;
1660
1661         case 't':
1662             CHECK_MALLOC_TOO_LATE_FOR('t');
1663             if( !PL_tainting ) {
1664                  PL_taint_warn = TRUE;
1665                  PL_tainting = TRUE;
1666             }
1667             s++;
1668             goto reswitch;
1669         case 'T':
1670             CHECK_MALLOC_TOO_LATE_FOR('T');
1671             PL_tainting = TRUE;
1672             PL_taint_warn = FALSE;
1673             s++;
1674             goto reswitch;
1675
1676         case 'E':
1677             PL_minus_E = TRUE;
1678             /* FALL THROUGH */
1679         case 'e':
1680 #ifdef MACOS_TRADITIONAL
1681             /* ignore -e for Dev:Pseudo argument */
1682             if (argv[1] && !strcmp(argv[1], "Dev:Pseudo"))
1683                 break;
1684 #endif
1685             forbid_setid("-e");
1686             if (!PL_e_script) {
1687                 PL_e_script = newSVpvs("");
1688                 filter_add(read_e_script, NULL);
1689             }
1690             if (*++s)
1691                 sv_catpv(PL_e_script, s);
1692             else if (argv[1]) {
1693                 sv_catpv(PL_e_script, argv[1]);
1694                 argc--,argv++;
1695             }
1696             else
1697                 Perl_croak(aTHX_ "No code specified for -%c", *s);
1698             sv_catpvs(PL_e_script, "\n");
1699             break;
1700
1701         case 'f':
1702 #ifdef USE_SITECUSTOMIZE
1703             minus_f = TRUE;
1704 #endif
1705             s++;
1706             goto reswitch;
1707
1708         case 'I':       /* -I handled both here and in moreswitches() */
1709             forbid_setid("-I");
1710             if (!*++s && (s=argv[1]) != Nullch) {
1711                 argc--,argv++;
1712             }
1713             if (s && *s) {
1714                 STRLEN len = strlen(s);
1715                 const char * const p = savepvn(s, len);
1716                 incpush(p, TRUE, TRUE, FALSE, FALSE);
1717                 sv_catpvs(sv, "-I");
1718                 sv_catpvn(sv, p, len);
1719                 sv_catpvs(sv, " ");
1720                 Safefree(p);
1721             }
1722             else
1723                 Perl_croak(aTHX_ "No directory specified for -I");
1724             break;
1725         case 'P':
1726             forbid_setid("-P");
1727             PL_preprocess = TRUE;
1728             s++;
1729             goto reswitch;
1730         case 'S':
1731             forbid_setid("-S");
1732             dosearch = TRUE;
1733             s++;
1734             goto reswitch;
1735         case 'V':
1736             {
1737                 SV *opts_prog;
1738
1739                 if (!PL_preambleav)
1740                     PL_preambleav = newAV();
1741                 av_push(PL_preambleav,
1742                         newSVpvs("use Config;"));
1743                 if (*++s != ':')  {
1744                     STRLEN opts;
1745                 
1746                     opts_prog = newSVpvs("print Config::myconfig(),");
1747 #ifdef VMS
1748                     sv_catpvs(opts_prog,"\"\\nCharacteristics of this PERLSHR image: \\n\",");
1749 #else
1750                     sv_catpvs(opts_prog,"\"\\nCharacteristics of this binary (from libperl): \\n\",");
1751 #endif
1752                     opts = SvCUR(opts_prog);
1753
1754                     Perl_sv_catpv(aTHX_ opts_prog,"\"  Compile-time options:"
1755 #  ifdef DEBUGGING
1756                              " DEBUGGING"
1757 #  endif
1758 #  ifdef DEBUG_LEAKING_SCALARS
1759                              " DEBUG_LEAKING_SCALARS"
1760 #  endif
1761 #  ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
1762                              " DEBUG_LEAKING_SCALARS_FORK_DUMP"
1763 #  endif
1764 #  ifdef FAKE_THREADS
1765                              " FAKE_THREADS"
1766 #  endif
1767 #  ifdef MULTIPLICITY
1768                              " MULTIPLICITY"
1769 #  endif
1770 #  ifdef MYMALLOC
1771                              " MYMALLOC"
1772 #  endif
1773 #  ifdef NO_MATHOMS
1774                             " NO_MATHOMS"
1775 #  endif
1776 #  ifdef PERL_DONT_CREATE_GVSV
1777                              " PERL_DONT_CREATE_GVSV"
1778 #  endif
1779 #  ifdef PERL_GLOBAL_STRUCT
1780                              " PERL_GLOBAL_STRUCT"
1781 #  endif
1782 #  ifdef PERL_IMPLICIT_CONTEXT
1783                              " PERL_IMPLICIT_CONTEXT"
1784 #  endif
1785 #  ifdef PERL_IMPLICIT_SYS
1786                              " PERL_IMPLICIT_SYS"
1787 #  endif
1788 #  ifdef PERL_MALLOC_WRAP
1789                              " PERL_MALLOC_WRAP"
1790 #  endif
1791 #  ifdef PERL_NEED_APPCTX
1792                              " PERL_NEED_APPCTX"
1793 #  endif
1794 #  ifdef PERL_NEED_TIMESBASE
1795                              " PERL_NEED_TIMESBASE"
1796 #  endif
1797 #  ifdef PERL_OLD_COPY_ON_WRITE
1798                              " PERL_OLD_COPY_ON_WRITE"
1799 #  endif
1800 #  ifdef PERL_TRACK_MEMPOOL
1801                              " PERL_TRACK_MEMPOOL"
1802 #  endif
1803 #  ifdef PERL_USE_SAFE_PUTENV
1804                              " PERL_USE_SAFE_PUTENV"
1805 #  endif
1806 #ifdef PERL_USES_PL_PIDSTATUS
1807                              " PERL_USES_PL_PIDSTATUS"
1808 #endif
1809 #  ifdef PL_OP_SLAB_ALLOC
1810                              " PL_OP_SLAB_ALLOC"
1811 #  endif
1812 #  ifdef THREADS_HAVE_PIDS
1813                              " THREADS_HAVE_PIDS"
1814 #  endif
1815 #  ifdef USE_5005THREADS
1816                              " USE_5005THREADS"
1817 #  endif
1818 #  ifdef USE_64_BIT_ALL
1819                              " USE_64_BIT_ALL"
1820 #  endif
1821 #  ifdef USE_64_BIT_INT
1822                              " USE_64_BIT_INT"
1823 #  endif
1824 #  ifdef USE_ITHREADS
1825                              " USE_ITHREADS"
1826 #  endif
1827 #  ifdef USE_LARGE_FILES
1828                              " USE_LARGE_FILES"
1829 #  endif
1830 #  ifdef USE_LONG_DOUBLE
1831                              " USE_LONG_DOUBLE"
1832 #  endif
1833 #  ifdef USE_PERLIO
1834                              " USE_PERLIO"
1835 #  endif
1836 #  ifdef USE_REENTRANT_API
1837                              " USE_REENTRANT_API"
1838 #  endif
1839 #  ifdef USE_SFIO
1840                              " USE_SFIO"
1841 #  endif
1842 #  ifdef USE_SITECUSTOMIZE
1843                              " USE_SITECUSTOMIZE"
1844 #  endif               
1845 #  ifdef USE_SOCKS
1846                              " USE_SOCKS"
1847 #  endif
1848                              );
1849
1850                     while (SvCUR(opts_prog) > opts+76) {
1851                         /* find last space after "options: " and before col 76
1852                          */
1853
1854                         const char *space;
1855                         char * const pv = SvPV_nolen(opts_prog);
1856                         const char c = pv[opts+76];
1857                         pv[opts+76] = '\0';
1858                         space = strrchr(pv+opts+26, ' ');
1859                         pv[opts+76] = c;
1860                         if (!space) break; /* "Can't happen" */
1861
1862                         /* break the line before that space */
1863
1864                         opts = space - pv;
1865                         Perl_sv_insert(aTHX_ opts_prog, opts, 0,
1866                                   STR_WITH_LEN("\\n                       "));
1867                     }
1868
1869                     sv_catpvs(opts_prog,"\\n\",");
1870
1871 #if defined(LOCAL_PATCH_COUNT)
1872                     if (LOCAL_PATCH_COUNT > 0) {
1873                         int i;
1874                         sv_catpvs(opts_prog,
1875                                  "\"  Locally applied patches:\\n\",");
1876                         for (i = 1; i <= LOCAL_PATCH_COUNT; i++) {
1877                             if (PL_localpatches[i])
1878                                 Perl_sv_catpvf(aTHX_ opts_prog,"q%c\t%s\n%c,",
1879                                                0, PL_localpatches[i], 0);
1880                         }
1881                     }
1882 #endif
1883                     Perl_sv_catpvf(aTHX_ opts_prog,
1884                                    "\"  Built under %s\\n\"",OSNAME);
1885 #ifdef __DATE__
1886 #  ifdef __TIME__
1887                     Perl_sv_catpvf(aTHX_ opts_prog,
1888                                    ",\"  Compiled at %s %s\\n\"",__DATE__,
1889                                    __TIME__);
1890 #  else
1891                     Perl_sv_catpvf(aTHX_ opts_prog,",\"  Compiled on %s\\n\"",
1892                                    __DATE__);
1893 #  endif
1894 #endif
1895                     sv_catpvs(opts_prog, "; $\"=\"\\n    \"; "
1896                              "@env = map { \"$_=\\\"$ENV{$_}\\\"\" } "
1897                              "sort grep {/^PERL/} keys %ENV; ");
1898 #ifdef __CYGWIN__
1899                     sv_catpvs(opts_prog,
1900                              "push @env, \"CYGWIN=\\\"$ENV{CYGWIN}\\\"\";");
1901 #endif
1902                     sv_catpvs(opts_prog, 
1903                              "print \"  \\%ENV:\\n    @env\\n\" if @env;"
1904                              "print \"  \\@INC:\\n    @INC\\n\";");
1905                 }
1906                 else {
1907                     ++s;
1908                     opts_prog = Perl_newSVpvf(aTHX_
1909                                               "Config::config_vars(qw%c%s%c)",
1910                                               0, s, 0);
1911                     s += strlen(s);
1912                 }
1913                 av_push(PL_preambleav, opts_prog);
1914                 /* don't look for script or read stdin */
1915                 scriptname = BIT_BUCKET;
1916                 goto reswitch;
1917             }
1918         case 'x':
1919             PL_doextract = TRUE;
1920             s++;
1921             if (*s)
1922                 cddir = s;
1923             break;
1924         case 0:
1925             break;
1926         case '-':
1927             if (!*++s || isSPACE(*s)) {
1928                 argc--,argv++;
1929                 goto switch_end;
1930             }
1931             /* catch use of gnu style long options */
1932             if (strEQ(s, "version")) {
1933                 s = (char *)"v";
1934                 goto reswitch;
1935             }
1936             if (strEQ(s, "help")) {
1937                 s = (char *)"h";
1938                 goto reswitch;
1939             }
1940             s--;
1941             /* FALL THROUGH */
1942         default:
1943             Perl_croak(aTHX_ "Unrecognized switch: -%s  (-h will show valid options)",s);
1944         }
1945     }
1946   switch_end:
1947
1948     if (
1949 #ifndef SECURE_INTERNAL_GETENV
1950         !PL_tainting &&
1951 #endif
1952         (s = PerlEnv_getenv("PERL5OPT")))
1953     {
1954         const char *popt = s;
1955         while (isSPACE(*s))
1956             s++;
1957         if (*s == '-' && *(s+1) == 'T') {
1958             CHECK_MALLOC_TOO_LATE_FOR('T');
1959             PL_tainting = TRUE;
1960             PL_taint_warn = FALSE;
1961         }
1962         else {
1963             char *popt_copy = Nullch;
1964             while (s && *s) {
1965                 char *d;
1966                 while (isSPACE(*s))
1967                     s++;
1968                 if (*s == '-') {
1969                     s++;
1970                     if (isSPACE(*s))
1971                         continue;
1972                 }
1973                 d = s;
1974                 if (!*s)
1975                     break;
1976                 if (!strchr("CDIMUdmtwA", *s))
1977                     Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s);
1978                 while (++s && *s) {
1979                     if (isSPACE(*s)) {
1980                         if (!popt_copy) {
1981                             popt_copy = SvPVX(sv_2mortal(newSVpv(popt,0)));
1982                             s = popt_copy + (s - popt);
1983                             d = popt_copy + (d - popt);
1984                         }
1985                         *s++ = '\0';
1986                         break;
1987                     }
1988                 }
1989                 if (*d == 't') {
1990                     if( !PL_tainting ) {
1991                         PL_taint_warn = TRUE;
1992                         PL_tainting = TRUE;
1993                     }
1994                 } else {
1995                     moreswitches(d);
1996                 }
1997             }
1998         }
1999     }
2000
2001 #ifdef USE_SITECUSTOMIZE
2002     if (!minus_f) {
2003         if (!PL_preambleav)
2004             PL_preambleav = newAV();
2005         av_unshift(PL_preambleav, 1);
2006         (void)av_store(PL_preambleav, 0, Perl_newSVpvf(aTHX_ "BEGIN { do '%s/sitecustomize.pl' }", SITELIB_EXP));
2007     }
2008 #endif
2009
2010     if (PL_taint_warn && PL_dowarn != G_WARN_ALL_OFF) {
2011        PL_compiling.cop_warnings = newSVpvn(WARN_TAINTstring, WARNsize);
2012     }
2013
2014     if (!scriptname)
2015         scriptname = argv[0];
2016     if (PL_e_script) {
2017         argc++,argv--;
2018         scriptname = BIT_BUCKET;        /* don't look for script or read stdin */
2019     }
2020     else if (scriptname == Nullch) {
2021 #ifdef MSDOS
2022         if ( PerlLIO_isatty(PerlIO_fileno(PerlIO_stdin())) )
2023             moreswitches("h");
2024 #endif
2025         scriptname = "-";
2026     }
2027
2028     /* Set $^X early so that it can be used for relocatable paths in @INC  */
2029     assert (!PL_tainted);
2030     TAINT;
2031     S_set_caret_X(aTHX);
2032     TAINT_NOT;
2033     init_perllib();
2034
2035     open_script(scriptname,dosearch,sv);
2036
2037     validate_suid(validarg, scriptname);
2038
2039 #ifndef PERL_MICRO
2040 #if defined(SIGCHLD) || defined(SIGCLD)
2041     {
2042 #ifndef SIGCHLD
2043 #  define SIGCHLD SIGCLD
2044 #endif
2045         Sighandler_t sigstate = rsignal_state(SIGCHLD);
2046         if (sigstate == (Sighandler_t) SIG_IGN) {
2047             if (ckWARN(WARN_SIGNAL))
2048                 Perl_warner(aTHX_ packWARN(WARN_SIGNAL),
2049                             "Can't ignore signal CHLD, forcing to default");
2050             (void)rsignal(SIGCHLD, (Sighandler_t)SIG_DFL);
2051         }
2052     }
2053 #endif
2054 #endif
2055
2056 #ifdef MACOS_TRADITIONAL
2057     if (PL_doextract || gMacPerl_AlwaysExtract) {
2058 #else
2059     if (PL_doextract) {
2060 #endif
2061         find_beginning();
2062         if (cddir && PerlDir_chdir( (char *)cddir ) < 0)
2063             Perl_croak(aTHX_ "Can't chdir to %s",cddir);
2064
2065     }
2066
2067     PL_main_cv = PL_compcv = (CV*)newSV(0);
2068     sv_upgrade((SV *)PL_compcv, SVt_PVCV);
2069     CvUNIQUE_on(PL_compcv);
2070
2071     CvPADLIST(PL_compcv) = pad_new(0);
2072 #ifdef USE_5005THREADS
2073     CvOWNER(PL_compcv) = 0;
2074     Newx(CvMUTEXP(PL_compcv), 1, perl_mutex);
2075     MUTEX_INIT(CvMUTEXP(PL_compcv));
2076 #endif /* USE_5005THREADS */
2077
2078     boot_core_PerlIO();
2079     boot_core_UNIVERSAL();
2080     boot_core_xsutils();
2081
2082     if (xsinit)
2083         (*xsinit)(aTHX);        /* in case linked C routines want magical variables */
2084 #ifndef PERL_MICRO
2085 #if defined(VMS) || defined(WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(EPOC) || defined(SYMBIAN)
2086     init_os_extras();
2087 #endif
2088 #endif
2089
2090 #ifdef USE_SOCKS
2091 #   ifdef HAS_SOCKS5_INIT
2092     socks5_init(argv[0]);
2093 #   else
2094     SOCKSinit(argv[0]);
2095 #   endif
2096 #endif
2097
2098     init_predump_symbols();
2099     /* init_postdump_symbols not currently designed to be called */
2100     /* more than once (ENV isn't cleared first, for example)     */
2101     /* But running with -u leaves %ENV & @ARGV undefined!    XXX */
2102     if (!PL_do_undump)
2103         init_postdump_symbols(argc,argv,env);
2104
2105     /* PL_unicode is turned on by -C, or by $ENV{PERL_UNICODE},
2106      * or explicitly in some platforms.
2107      * locale.c:Perl_init_i18nl10n() if the environment
2108      * look like the user wants to use UTF-8. */
2109 #if defined(__SYMBIAN32__)
2110     PL_unicode = PERL_UNICODE_STD_FLAG; /* See PERL_SYMBIAN_CONSOLE_UTF8. */
2111 #endif
2112     if (PL_unicode) {
2113          /* Requires init_predump_symbols(). */
2114          if (!(PL_unicode & PERL_UNICODE_LOCALE_FLAG) || PL_utf8locale) {
2115               IO* io;
2116               PerlIO* fp;
2117               SV* sv;
2118
2119               /* Turn on UTF-8-ness on STDIN, STDOUT, STDERR
2120                * and the default open disciplines. */
2121               if ((PL_unicode & PERL_UNICODE_STDIN_FLAG) &&
2122                   PL_stdingv  && (io = GvIO(PL_stdingv)) &&
2123                   (fp = IoIFP(io)))
2124                    PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2125               if ((PL_unicode & PERL_UNICODE_STDOUT_FLAG) &&
2126                   PL_defoutgv && (io = GvIO(PL_defoutgv)) &&
2127                   (fp = IoOFP(io)))
2128                    PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2129               if ((PL_unicode & PERL_UNICODE_STDERR_FLAG) &&
2130                   PL_stderrgv && (io = GvIO(PL_stderrgv)) &&
2131                   (fp = IoOFP(io)))
2132                    PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2133               if ((PL_unicode & PERL_UNICODE_INOUT_FLAG) &&
2134                   (sv = GvSV(gv_fetchpv("\017PEN", TRUE, SVt_PV)))) {
2135                    U32 in  = PL_unicode & PERL_UNICODE_IN_FLAG;
2136                    U32 out = PL_unicode & PERL_UNICODE_OUT_FLAG;
2137                    if (in) {
2138                         if (out)
2139                              sv_setpvn(sv, ":utf8\0:utf8", 11);
2140                         else
2141                              sv_setpvn(sv, ":utf8\0", 6);
2142                    }
2143                    else if (out)
2144                         sv_setpvn(sv, "\0:utf8", 6);
2145                    SvSETMAGIC(sv);
2146               }
2147          }
2148     }
2149
2150     if ((s = PerlEnv_getenv("PERL_SIGNALS"))) {
2151          if (strEQ(s, "unsafe"))
2152               PL_signals |=  PERL_SIGNALS_UNSAFE_FLAG;
2153          else if (strEQ(s, "safe"))
2154               PL_signals &= ~PERL_SIGNALS_UNSAFE_FLAG;
2155          else
2156               Perl_croak(aTHX_ "PERL_SIGNALS illegal: \"%s\"", s);
2157     }
2158
2159     init_lexer();
2160
2161     /* now parse the script */
2162
2163     SETERRNO(0,SS_NORMAL);
2164     PL_error_count = 0;
2165 #ifdef MACOS_TRADITIONAL
2166     if (gMacPerl_SyntaxError = (yyparse() || PL_error_count)) {
2167         if (PL_minus_c)
2168             Perl_croak(aTHX_ "%s had compilation errors.\n", MacPerl_MPWFileName(PL_origfilename));
2169         else {
2170             Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
2171                        MacPerl_MPWFileName(PL_origfilename));
2172         }
2173     }
2174 #else
2175     if (yyparse() || PL_error_count) {
2176         if (PL_minus_c)
2177             Perl_croak(aTHX_ "%s had compilation errors.\n", PL_origfilename);
2178         else {
2179             Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
2180                        PL_origfilename);
2181         }
2182     }
2183 #endif
2184     CopLINE_set(PL_curcop, 0);
2185     PL_curstash = PL_defstash;
2186     PL_preprocess = FALSE;
2187     if (PL_e_script) {
2188         SvREFCNT_dec(PL_e_script);
2189         PL_e_script = Nullsv;
2190     }
2191
2192     if (PL_do_undump)
2193         my_unexec();
2194
2195     if (isWARN_ONCE) {
2196         SAVECOPFILE(PL_curcop);
2197         SAVECOPLINE(PL_curcop);
2198         gv_check(PL_defstash);
2199     }
2200
2201     LEAVE;
2202     FREETMPS;
2203
2204 #ifdef MYMALLOC
2205     if ((s=PerlEnv_getenv("PERL_DEBUG_MSTATS")) && atoi(s) >= 2)
2206         dump_mstats("after compilation:");
2207 #endif
2208
2209     ENTER;
2210     PL_restartop = 0;
2211     return NULL;
2212 }
2213
2214 /*
2215 =for apidoc perl_run
2216
2217 Tells a Perl interpreter to run.  See L<perlembed>.
2218
2219 =cut
2220 */
2221
2222 int
2223 perl_run(pTHXx)
2224 {
2225     dVAR;
2226     I32 oldscope;
2227     int ret = 0;
2228     dJMPENV;
2229
2230     PERL_UNUSED_ARG(my_perl);
2231
2232     oldscope = PL_scopestack_ix;
2233 #ifdef VMS
2234     VMSISH_HUSHED = 0;
2235 #endif
2236
2237     JMPENV_PUSH(ret);
2238     switch (ret) {
2239     case 1:
2240         cxstack_ix = -1;                /* start context stack again */
2241         goto redo_body;
2242     case 0:                             /* normal completion */
2243  redo_body:
2244         run_body(oldscope);
2245         /* FALL THROUGH */
2246     case 2:                             /* my_exit() */
2247         while (PL_scopestack_ix > oldscope)
2248             LEAVE;
2249         FREETMPS;
2250         PL_curstash = PL_defstash;
2251         if (!(PL_exit_flags & PERL_EXIT_DESTRUCT_END) &&
2252             PL_endav && !PL_minus_c)
2253             call_list(oldscope, PL_endav);
2254 #ifdef MYMALLOC
2255         if (PerlEnv_getenv("PERL_DEBUG_MSTATS"))
2256             dump_mstats("after execution:  ");
2257 #endif
2258         ret = STATUS_EXIT;
2259         break;
2260     case 3:
2261         if (PL_restartop) {
2262             POPSTACK_TO(PL_mainstack);
2263             goto redo_body;
2264         }
2265         PerlIO_printf(Perl_error_log, "panic: restartop\n");
2266         FREETMPS;
2267         ret = 1;
2268         break;
2269     }
2270
2271     JMPENV_POP;
2272     return ret;
2273 }
2274
2275
2276 STATIC void
2277 S_run_body(pTHX_ I32 oldscope)
2278 {
2279     dVAR;
2280     DEBUG_r(PerlIO_printf(Perl_debug_log, "%s $` $& $' support.\n",
2281                     PL_sawampersand ? "Enabling" : "Omitting"));
2282
2283     if (!PL_restartop) {
2284         DEBUG_x(dump_all());
2285 #ifdef DEBUGGING
2286         if (!DEBUG_q_TEST)
2287           PERL_DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n"));
2288 #endif
2289         DEBUG_S(PerlIO_printf(Perl_debug_log, "main thread is 0x%"UVxf"\n",
2290                               PTR2UV(thr)));
2291
2292         if (PL_minus_c) {
2293 #ifdef MACOS_TRADITIONAL
2294             PerlIO_printf(Perl_error_log, "%s%s syntax OK\n",
2295                 (gMacPerl_ErrorFormat ? "# " : ""),
2296                 MacPerl_MPWFileName(PL_origfilename));
2297 #else
2298             PerlIO_printf(Perl_error_log, "%s syntax OK\n", PL_origfilename);
2299 #endif
2300             my_exit(0);
2301         }
2302         if (PERLDB_SINGLE && PL_DBsingle)
2303             sv_setiv(PL_DBsingle, 1);
2304         if (PL_initav)
2305             call_list(oldscope, PL_initav);
2306     }
2307
2308     /* do it */
2309
2310     if (PL_restartop) {
2311         PL_op = PL_restartop;
2312         PL_restartop = 0;
2313         CALLRUNOPS(aTHX);
2314     }
2315     else if (PL_main_start) {
2316         CvDEPTH(PL_main_cv) = 1;
2317         PL_op = PL_main_start;
2318         CALLRUNOPS(aTHX);
2319     }
2320     my_exit(0);
2321     /* NOTREACHED */
2322 }
2323
2324 /*
2325 =head1 SV Manipulation Functions
2326
2327 =for apidoc p||get_sv
2328
2329 Returns the SV of the specified Perl scalar.  If C<create> is set and the
2330 Perl variable does not exist then it will be created.  If C<create> is not
2331 set and the variable does not exist then NULL is returned.
2332
2333 =cut
2334 */
2335
2336 SV*
2337 Perl_get_sv(pTHX_ const char *name, I32 create)
2338 {
2339     GV *gv;
2340 #ifdef USE_5005THREADS
2341     if (name[1] == '\0' && !isALPHA(name[0])) {
2342         PADOFFSET tmp = find_threadsv(name);
2343         if (tmp != NOT_IN_PAD)
2344             return THREADSV(tmp);
2345     }
2346 #endif /* USE_5005THREADS */
2347     gv = gv_fetchpv(name, create, SVt_PV);
2348     if (gv)
2349         return GvSV(gv);
2350     return Nullsv;
2351 }
2352
2353 /*
2354 =head1 Array Manipulation Functions
2355
2356 =for apidoc p||get_av
2357
2358 Returns the AV of the specified Perl array.  If C<create> is set and the
2359 Perl variable does not exist then it will be created.  If C<create> is not
2360 set and the variable does not exist then NULL is returned.
2361
2362 =cut
2363 */
2364
2365 AV*
2366 Perl_get_av(pTHX_ const char *name, I32 create)
2367 {
2368     GV* const gv = gv_fetchpv(name, create, SVt_PVAV);
2369     if (create)
2370         return GvAVn(gv);
2371     if (gv)
2372         return GvAV(gv);
2373     return NULL;
2374 }
2375
2376 /*
2377 =head1 Hash Manipulation Functions
2378
2379 =for apidoc p||get_hv
2380
2381 Returns the HV of the specified Perl hash.  If C<create> is set and the
2382 Perl variable does not exist then it will be created.  If C<create> is not
2383 set and the variable does not exist then NULL is returned.
2384
2385 =cut
2386 */
2387
2388 HV*
2389 Perl_get_hv(pTHX_ const char *name, I32 create)
2390 {
2391     GV* const gv = gv_fetchpv(name, create, SVt_PVHV);
2392     if (create)
2393         return GvHVn(gv);
2394     if (gv)
2395         return GvHV(gv);
2396     return NULL;
2397 }
2398
2399 /*
2400 =head1 CV Manipulation Functions
2401
2402 =for apidoc p||get_cv
2403
2404 Returns the CV of the specified Perl subroutine.  If C<create> is set and
2405 the Perl subroutine does not exist then it will be declared (which has the
2406 same effect as saying C<sub name;>).  If C<create> is not set and the
2407 subroutine does not exist then NULL is returned.
2408
2409 =cut
2410 */
2411
2412 CV*
2413 Perl_get_cv(pTHX_ const char *name, I32 create)
2414 {
2415     GV* const gv = gv_fetchpv(name, create, SVt_PVCV);
2416     /* XXX unsafe for threads if eval_owner isn't held */
2417     /* XXX this is probably not what they think they're getting.
2418      * It has the same effect as "sub name;", i.e. just a forward
2419      * declaration! */
2420     if (create && !GvCVu(gv))
2421         return newSUB(start_subparse(FALSE, 0),
2422                       newSVOP(OP_CONST, 0, newSVpv(name,0)),
2423                       Nullop,
2424                       Nullop);
2425     if (gv)
2426         return GvCVu(gv);
2427     return Nullcv;
2428 }
2429
2430 /* Be sure to refetch the stack pointer after calling these routines. */
2431
2432 /*
2433
2434 =head1 Callback Functions
2435
2436 =for apidoc p||call_argv
2437
2438 Performs a callback to the specified Perl sub.  See L<perlcall>.
2439
2440 =cut
2441 */
2442
2443 I32
2444 Perl_call_argv(pTHX_ const char *sub_name, I32 flags, register char **argv)
2445
2446                         /* See G_* flags in cop.h */
2447                         /* null terminated arg list */
2448 {
2449     dVAR;
2450     dSP;
2451
2452     PUSHMARK(SP);
2453     if (argv) {
2454         while (*argv) {
2455             XPUSHs(sv_2mortal(newSVpv(*argv,0)));
2456             argv++;
2457         }
2458         PUTBACK;
2459     }
2460     return call_pv(sub_name, flags);
2461 }
2462
2463 /*
2464 =for apidoc p||call_pv
2465
2466 Performs a callback to the specified Perl sub.  See L<perlcall>.
2467
2468 =cut
2469 */
2470
2471 I32
2472 Perl_call_pv(pTHX_ const char *sub_name, I32 flags)
2473                         /* name of the subroutine */
2474                         /* See G_* flags in cop.h */
2475 {
2476     return call_sv((SV*)get_cv(sub_name, TRUE), flags);
2477 }
2478
2479 /*
2480 =for apidoc p||call_method
2481
2482 Performs a callback to the specified Perl method.  The blessed object must
2483 be on the stack.  See L<perlcall>.
2484
2485 =cut
2486 */
2487
2488 I32
2489 Perl_call_method(pTHX_ const char *methname, I32 flags)
2490                         /* name of the subroutine */
2491                         /* See G_* flags in cop.h */
2492 {
2493     return call_sv(sv_2mortal(newSVpv(methname,0)), flags | G_METHOD);
2494 }
2495
2496 /* May be called with any of a CV, a GV, or an SV containing the name. */
2497 /*
2498 =for apidoc p||call_sv
2499
2500 Performs a callback to the Perl sub whose name is in the SV.  See
2501 L<perlcall>.
2502
2503 =cut
2504 */
2505
2506 I32
2507 Perl_call_sv(pTHX_ SV *sv, I32 flags)
2508                         /* See G_* flags in cop.h */
2509 {
2510     dVAR; dSP;
2511     LOGOP myop;         /* fake syntax tree node */
2512     UNOP method_op;
2513     I32 oldmark;
2514     volatile I32 retval = 0;
2515     I32 oldscope;
2516     bool oldcatch = CATCH_GET;
2517     int ret;
2518     OP* const oldop = PL_op;
2519     dJMPENV;
2520
2521     if (flags & G_DISCARD) {
2522         ENTER;
2523         SAVETMPS;
2524     }
2525
2526     Zero(&myop, 1, LOGOP);
2527     myop.op_next = Nullop;
2528     if (!(flags & G_NOARGS))
2529         myop.op_flags |= OPf_STACKED;
2530     myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
2531                       (flags & G_ARRAY) ? OPf_WANT_LIST :
2532                       OPf_WANT_SCALAR);
2533     SAVEOP();
2534     PL_op = (OP*)&myop;
2535
2536     EXTEND(PL_stack_sp, 1);
2537     *++PL_stack_sp = sv;
2538     oldmark = TOPMARK;
2539     oldscope = PL_scopestack_ix;
2540
2541     if (PERLDB_SUB && PL_curstash != PL_debstash
2542            /* Handle first BEGIN of -d. */
2543           && (PL_DBcv || (PL_DBcv = GvCV(PL_DBsub)))
2544            /* Try harder, since this may have been a sighandler, thus
2545             * curstash may be meaningless. */
2546           && (SvTYPE(sv) != SVt_PVCV || CvSTASH((CV*)sv) != PL_debstash)
2547           && !(flags & G_NODEBUG))
2548         PL_op->op_private |= OPpENTERSUB_DB;
2549
2550     if (flags & G_METHOD) {
2551         Zero(&method_op, 1, UNOP);
2552         method_op.op_next = PL_op;
2553         method_op.op_ppaddr = PL_ppaddr[OP_METHOD];
2554         myop.op_ppaddr = PL_ppaddr[OP_ENTERSUB];
2555         PL_op = (OP*)&method_op;
2556     }
2557
2558     if (!(flags & G_EVAL)) {
2559         CATCH_SET(TRUE);
2560         call_body((OP*)&myop, FALSE);
2561         retval = PL_stack_sp - (PL_stack_base + oldmark);
2562         CATCH_SET(oldcatch);
2563     }
2564     else {
2565         myop.op_other = (OP*)&myop;
2566         PL_markstack_ptr--;
2567         /* we're trying to emulate pp_entertry() here */
2568         {
2569             register PERL_CONTEXT *cx;
2570             const I32 gimme = GIMME_V;
2571         
2572             ENTER;
2573             SAVETMPS;
2574         
2575             PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
2576             PUSHEVAL(cx, 0, 0);
2577             PL_eval_root = PL_op;             /* Only needed so that goto works right. */
2578         
2579             PL_in_eval = EVAL_INEVAL;
2580             if (flags & G_KEEPERR)
2581                 PL_in_eval |= EVAL_KEEPERR;
2582             else
2583                 sv_setpvn(ERRSV,"",0);
2584         }
2585         PL_markstack_ptr++;
2586
2587         JMPENV_PUSH(ret);
2588         switch (ret) {
2589         case 0:
2590  redo_body:
2591             call_body((OP*)&myop, FALSE);
2592             retval = PL_stack_sp - (PL_stack_base + oldmark);
2593             if (!(flags & G_KEEPERR))
2594                 sv_setpvn(ERRSV,"",0);
2595             break;
2596         case 1:
2597             STATUS_ALL_FAILURE;
2598             /* FALL THROUGH */
2599         case 2:
2600             /* my_exit() was called */
2601             PL_curstash = PL_defstash;
2602             FREETMPS;
2603             JMPENV_POP;
2604             if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
2605                 Perl_croak(aTHX_ "Callback called exit");
2606             my_exit_jump();
2607             /* NOTREACHED */
2608         case 3:
2609             if (PL_restartop) {
2610                 PL_op = PL_restartop;
2611                 PL_restartop = 0;
2612                 goto redo_body;
2613             }
2614             PL_stack_sp = PL_stack_base + oldmark;
2615             if (flags & G_ARRAY)
2616                 retval = 0;
2617             else {
2618                 retval = 1;
2619                 *++PL_stack_sp = &PL_sv_undef;
2620             }
2621             break;
2622         }
2623
2624         if (PL_scopestack_ix > oldscope) {
2625             SV **newsp;
2626             PMOP *newpm;
2627             I32 gimme;
2628             register PERL_CONTEXT *cx;
2629             I32 optype;
2630
2631             POPBLOCK(cx,newpm);
2632             POPEVAL(cx);
2633             PL_curpm = newpm;
2634             LEAVE;
2635             PERL_UNUSED_VAR(newsp);
2636             PERL_UNUSED_VAR(gimme);
2637             PERL_UNUSED_VAR(optype);
2638         }
2639         JMPENV_POP;
2640     }
2641
2642     if (flags & G_DISCARD) {
2643         PL_stack_sp = PL_stack_base + oldmark;
2644         retval = 0;
2645         FREETMPS;
2646         LEAVE;
2647     }
2648     PL_op = oldop;
2649     return retval;
2650 }
2651
2652 STATIC void
2653 S_call_body(pTHX_ const OP *myop, bool is_eval)
2654 {
2655     dVAR;
2656     if (PL_op == myop) {
2657         if (is_eval)
2658             PL_op = Perl_pp_entereval(aTHX);    /* this doesn't do a POPMARK */
2659         else
2660             PL_op = Perl_pp_entersub(aTHX);     /* this does */
2661     }
2662     if (PL_op)
2663         CALLRUNOPS(aTHX);
2664 }
2665
2666 /* Eval a string. The G_EVAL flag is always assumed. */
2667
2668 /*
2669 =for apidoc p||eval_sv
2670
2671 Tells Perl to C<eval> the string in the SV.
2672
2673 =cut
2674 */
2675
2676 I32
2677 Perl_eval_sv(pTHX_ SV *sv, I32 flags)
2678
2679                         /* See G_* flags in cop.h */
2680 {
2681     dVAR;
2682     dSP;
2683     UNOP myop;          /* fake syntax tree node */
2684     volatile I32 oldmark = SP - PL_stack_base;
2685     volatile I32 retval = 0;
2686     int ret;
2687     OP* const oldop = PL_op;
2688     dJMPENV;
2689
2690     if (flags & G_DISCARD) {
2691         ENTER;
2692         SAVETMPS;
2693     }
2694
2695     SAVEOP();
2696     PL_op = (OP*)&myop;
2697     Zero(PL_op, 1, UNOP);
2698     EXTEND(PL_stack_sp, 1);
2699     *++PL_stack_sp = sv;
2700
2701     if (!(flags & G_NOARGS))
2702         myop.op_flags = OPf_STACKED;
2703     myop.op_next = Nullop;
2704     myop.op_type = OP_ENTEREVAL;
2705     myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
2706                       (flags & G_ARRAY) ? OPf_WANT_LIST :
2707                       OPf_WANT_SCALAR);
2708     if (flags & G_KEEPERR)
2709         myop.op_flags |= OPf_SPECIAL;
2710
2711     /* fail now; otherwise we could fail after the JMPENV_PUSH but
2712      * before a PUSHEVAL, which corrupts the stack after a croak */
2713     TAINT_PROPER("eval_sv()");
2714
2715     JMPENV_PUSH(ret);
2716     switch (ret) {
2717     case 0:
2718  redo_body:
2719         call_body((OP*)&myop,TRUE);
2720         retval = PL_stack_sp - (PL_stack_base + oldmark);
2721         if (!(flags & G_KEEPERR))
2722             sv_setpvn(ERRSV,"",0);
2723         break;
2724     case 1:
2725         STATUS_ALL_FAILURE;
2726         /* FALL THROUGH */
2727     case 2:
2728         /* my_exit() was called */
2729         PL_curstash = PL_defstash;
2730         FREETMPS;
2731         JMPENV_POP;
2732         if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED))
2733             Perl_croak(aTHX_ "Callback called exit");
2734         my_exit_jump();
2735         /* NOTREACHED */
2736     case 3:
2737         if (PL_restartop) {
2738             PL_op = PL_restartop;
2739             PL_restartop = 0;
2740             goto redo_body;
2741         }
2742         PL_stack_sp = PL_stack_base + oldmark;
2743         if (flags & G_ARRAY)
2744             retval = 0;
2745         else {
2746             retval = 1;
2747             *++PL_stack_sp = &PL_sv_undef;
2748         }
2749         break;
2750     }
2751
2752     JMPENV_POP;
2753     if (flags & G_DISCARD) {
2754         PL_stack_sp = PL_stack_base + oldmark;
2755         retval = 0;
2756         FREETMPS;
2757         LEAVE;
2758     }
2759     PL_op = oldop;
2760     return retval;
2761 }
2762
2763 /*
2764 =for apidoc p||eval_pv
2765
2766 Tells Perl to C<eval> the given string and return an SV* result.
2767
2768 =cut
2769 */
2770
2771 SV*
2772 Perl_eval_pv(pTHX_ const char *p, I32 croak_on_error)
2773 {
2774     dVAR;
2775     dSP;
2776     SV* sv = newSVpv(p, 0);
2777
2778     eval_sv(sv, G_SCALAR);
2779     SvREFCNT_dec(sv);
2780
2781     SPAGAIN;
2782     sv = POPs;
2783     PUTBACK;
2784
2785     if (croak_on_error && SvTRUE(ERRSV)) {
2786         Perl_croak(aTHX_ SvPVx_nolen_const(ERRSV));
2787     }
2788
2789     return sv;
2790 }
2791
2792 /* Require a module. */
2793
2794 /*
2795 =head1 Embedding Functions
2796
2797 =for apidoc p||require_pv
2798
2799 Tells Perl to C<require> the file named by the string argument.  It is
2800 analogous to the Perl code C<eval "require '$file'">.  It's even
2801 implemented that way; consider using load_module instead.
2802
2803 =cut */
2804
2805 void
2806 Perl_require_pv(pTHX_ const char *pv)
2807 {
2808     dVAR;
2809     dSP;
2810     SV* sv;
2811     PUSHSTACKi(PERLSI_REQUIRE);
2812     PUTBACK;
2813     sv = Perl_newSVpvf(aTHX_ "require q%c%s%c", 0, pv, 0);
2814     eval_sv(sv_2mortal(sv), G_DISCARD);
2815     SPAGAIN;
2816     POPSTACK;
2817 }
2818
2819 void
2820 Perl_magicname(pTHX_ const char *sym, const char *name, I32 namlen)
2821 {
2822     register GV * const gv = gv_fetchpv(sym,TRUE, SVt_PV);
2823
2824     if (gv)
2825         sv_magic(GvSV(gv), (SV*)gv, PERL_MAGIC_sv, name, namlen);
2826 }
2827
2828 STATIC void
2829 S_usage(pTHX_ const char *name)         /* XXX move this out into a module ? */
2830 {
2831     /* This message really ought to be max 23 lines.
2832      * Removed -h because the user already knows that option. Others? */
2833
2834     static const char * const usage_msg[] = {
2835 "-0[octal]         specify record separator (\\0, if no argument)",
2836 "-A[mod][=pattern] activate all/given assertions",
2837 "-a                autosplit mode with -n or -p (splits $_ into @F)",
2838 "-C[number/list]   enables the listed Unicode features",
2839 "-c                check syntax only (runs BEGIN and CHECK blocks)",
2840 "-d[:debugger]     run program under debugger",
2841 "-D[number/list]   set debugging flags (argument is a bit mask or alphabets)",
2842 "-e program        one line of program (several -e's allowed, omit programfile)",
2843 "-E program        like -e, but enables all optional features",
2844 "-f                don't do $sitelib/sitecustomize.pl at startup",
2845 "-F/pattern/       split() pattern for -a switch (//'s are optional)",
2846 "-i[extension]     edit <> files in place (makes backup if extension supplied)",
2847 "-Idirectory       specify @INC/#include directory (several -I's allowed)",
2848 "-l[octal]         enable line ending processing, specifies line terminator",
2849 "-[mM][-]module    execute \"use/no module...\" before executing program",
2850 "-n                assume \"while (<>) { ... }\" loop around program",
2851 "-p                assume loop like -n but print line also, like sed",
2852 "-P                run program through C preprocessor before compilation",
2853 "-s                enable rudimentary parsing for switches after programfile",
2854 "-S                look for programfile using PATH environment variable",
2855 "-t                enable tainting warnings",
2856 "-T                enable tainting checks",
2857 "-u                dump core after parsing program",
2858 "-U                allow unsafe operations",
2859 "-v                print version, subversion (includes VERY IMPORTANT perl info)",
2860 "-V[:variable]     print configuration summary (or a single Config.pm variable)",
2861 "-w                enable many useful warnings (RECOMMENDED)",
2862 "-W                enable all warnings",
2863 "-x[directory]     strip off text before #!perl line and perhaps cd to directory",
2864 "-X                disable all warnings",
2865 "\n",
2866 NULL
2867 };
2868     const char * const *p = usage_msg;
2869
2870     PerlIO_printf(PerlIO_stdout(),
2871                   "\nUsage: %s [switches] [--] [programfile] [arguments]",
2872                   name);
2873     while (*p)
2874         PerlIO_printf(PerlIO_stdout(), "\n  %s", *p++);
2875 }
2876
2877 /* convert a string of -D options (or digits) into an int.
2878  * sets *s to point to the char after the options */
2879
2880 #ifdef DEBUGGING
2881 int
2882 Perl_get_debug_opts(pTHX_ const char **s, bool givehelp)
2883 {
2884     static const char * const usage_msgd[] = {
2885       " Debugging flag values: (see also -d)",
2886       "  p  Tokenizing and parsing (with v, displays parse stack)",
2887       "  s  Stack snapshots (with v, displays all stacks)",
2888       "  l  Context (loop) stack processing",
2889       "  t  Trace execution",
2890       "  o  Method and overloading resolution",
2891       "  c  String/numeric conversions",
2892       "  P  Print profiling info, preprocessor command for -P, source file input state",
2893       "  m  Memory allocation",
2894       "  f  Format processing",
2895       "  r  Regular expression parsing and execution",
2896       "  x  Syntax tree dump",
2897       "  u  Tainting checks",
2898       "  H  Hash dump -- usurps values()",
2899       "  X  Scratchpad allocation",
2900       "  D  Cleaning up",
2901       "  S  Thread synchronization",
2902       "  T  Tokenising",
2903       "  R  Include reference counts of dumped variables (eg when using -Ds)",
2904       "  J  Do not s,t,P-debug (Jump over) opcodes within package DB",
2905       "  v  Verbose: use in conjunction with other flags",
2906       "  C  Copy On Write",
2907       "  A  Consistency checks on internal structures",
2908       "  q  quiet - currently only suppresses the 'EXECUTING' message",
2909       NULL
2910     };
2911     int i = 0;
2912     if (isALPHA(**s)) {
2913         /* if adding extra options, remember to update DEBUG_MASK */
2914         static const char debopts[] = "psltocPmfrxu HXDSTRJvCAq";
2915
2916         for (; isALNUM(**s); (*s)++) {
2917             const char * const d = strchr(debopts,**s);
2918             if (d)
2919                 i |= 1 << (d - debopts);
2920             else if (ckWARN_d(WARN_DEBUGGING))
2921                 Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
2922                     "invalid option -D%c, use -D'' to see choices\n", **s);
2923         }
2924     }
2925     else if (isDIGIT(**s)) {
2926         i = atoi(*s);
2927         for (; isALNUM(**s); (*s)++) ;
2928     }
2929     else if (givehelp) {
2930       const char *const *p = usage_msgd;
2931       while (*p) PerlIO_printf(PerlIO_stdout(), "%s\n", *p++);
2932     }
2933 #  ifdef EBCDIC
2934     if ((i & DEBUG_p_FLAG) && ckWARN_d(WARN_DEBUGGING))
2935         Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
2936                 "-Dp not implemented on this platform\n");
2937 #  endif
2938     return i;
2939 }
2940 #endif
2941
2942 /* This routine handles any switches that can be given during run */
2943
2944 char *
2945 Perl_moreswitches(pTHX_ char *s)
2946 {
2947     dVAR;
2948     UV rschar;
2949
2950     switch (*s) {
2951     case '0':
2952     {
2953          I32 flags = 0;
2954          STRLEN numlen;
2955
2956          SvREFCNT_dec(PL_rs);
2957          if (s[1] == 'x' && s[2]) {
2958               const char *e = s+=2;
2959               U8 *tmps;
2960
2961               while (*e)
2962                 e++;
2963               numlen = e - s;
2964               flags = PERL_SCAN_SILENT_ILLDIGIT;
2965               rschar = (U32)grok_hex(s, &numlen, &flags, NULL);
2966               if (s + numlen < e) {
2967                    rschar = 0; /* Grandfather -0xFOO as -0 -xFOO. */
2968                    numlen = 0;
2969                    s--;
2970               }
2971               PL_rs = newSVpvs("");
2972               SvGROW(PL_rs, (STRLEN)(UNISKIP(rschar) + 1));
2973               tmps = (U8*)SvPVX(PL_rs);
2974               uvchr_to_utf8(tmps, rschar);
2975               SvCUR_set(PL_rs, UNISKIP(rschar));
2976               SvUTF8_on(PL_rs);
2977          }
2978          else {
2979               numlen = 4;
2980               rschar = (U32)grok_oct(s, &numlen, &flags, NULL);
2981               if (rschar & ~((U8)~0))
2982                    PL_rs = &PL_sv_undef;
2983               else if (!rschar && numlen >= 2)
2984                    PL_rs = newSVpvs("");
2985               else {
2986                    char ch = (char)rschar;
2987                    PL_rs = newSVpvn(&ch, 1);
2988               }
2989          }
2990          sv_setsv(get_sv("/", TRUE), PL_rs);
2991          return s + numlen;
2992     }
2993     case 'C':
2994         s++;
2995         PL_unicode = parse_unicode_opts( (const char **)&s );
2996         return s;
2997     case 'F':
2998         PL_minus_F = TRUE;
2999         PL_splitstr = ++s;
3000         while (*s && !isSPACE(*s)) ++s;
3001         *s = '\0';
3002         PL_splitstr = savepv(PL_splitstr);
3003         return s;
3004     case 'a':
3005         PL_minus_a = TRUE;
3006         s++;
3007         return s;
3008     case 'c':
3009         PL_minus_c = TRUE;
3010         s++;
3011         return s;
3012     case 'd':
3013         forbid_setid("-d");
3014         s++;
3015
3016         /* -dt indicates to the debugger that threads will be used */
3017         if (*s == 't' && !isALNUM(s[1])) {
3018             ++s;
3019             my_setenv("PERL5DB_THREADED", "1");
3020         }
3021
3022         /* The following permits -d:Mod to accepts arguments following an =
3023            in the fashion that -MSome::Mod does. */
3024         if (*s == ':' || *s == '=') {
3025             const char *start;
3026             SV * const sv = newSVpvs("use Devel::");
3027             start = ++s;
3028             /* We now allow -d:Module=Foo,Bar */
3029             while(isALNUM(*s) || *s==':') ++s;
3030             if (*s != '=')
3031                 sv_catpv(sv, start);
3032             else {
3033                 sv_catpvn(sv, start, s-start);
3034                 Perl_sv_catpvf(aTHX_ sv, " split(/,/,q%c%s%c)", 0, ++s, 0);
3035             }
3036             s += strlen(s);
3037             my_setenv("PERL5DB", SvPV_nolen_const(sv));
3038         }
3039         if (!PL_perldb) {
3040             PL_perldb = PERLDB_ALL;
3041             init_debugger();
3042         }
3043         return s;
3044     case 'D':
3045     {   
3046 #ifdef DEBUGGING
3047         forbid_setid("-D");
3048         s++;
3049         PL_debug = get_debug_opts( (const char **)&s, 1) | DEBUG_TOP_FLAG;
3050 #else /* !DEBUGGING */
3051         if (ckWARN_d(WARN_DEBUGGING))
3052             Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
3053                    "Recompile perl with -DDEBUGGING to use -D switch (did you mean -d ?)\n");
3054         for (s++; isALNUM(*s); s++) ;
3055 #endif
3056         return s;
3057     }   
3058     case 'h':
3059         usage(PL_origargv[0]);
3060         my_exit(0);
3061     case 'i':
3062         Safefree(PL_inplace);
3063 #if defined(__CYGWIN__) /* do backup extension automagically */
3064         if (*(s+1) == '\0') {
3065         PL_inplace = savepvs(".bak");
3066         return s+1;
3067         }
3068 #endif /* __CYGWIN__ */
3069         PL_inplace = savepv(s+1);
3070         for (s = PL_inplace; *s && !isSPACE(*s); s++)
3071             ;
3072         if (*s) {
3073             *s++ = '\0';
3074             if (*s == '-')      /* Additional switches on #! line. */
3075                 s++;
3076         }
3077         return s;
3078     case 'I':   /* -I handled both here and in parse_body() */
3079         forbid_setid("-I");
3080         ++s;
3081         while (*s && isSPACE(*s))
3082             ++s;
3083         if (*s) {
3084             char *e, *p;
3085             p = s;
3086             /* ignore trailing spaces (possibly followed by other switches) */
3087             do {
3088                 for (e = p; *e && !isSPACE(*e); e++) ;
3089                 p = e;
3090                 while (isSPACE(*p))
3091                     p++;
3092             } while (*p && *p != '-');
3093             e = savepvn(s, e-s);
3094             incpush(e, TRUE, TRUE, FALSE, FALSE);
3095             Safefree(e);
3096             s = p;
3097             if (*s == '-')
3098                 s++;
3099         }
3100         else
3101             Perl_croak(aTHX_ "No directory specified for -I");
3102         return s;
3103     case 'l':
3104         PL_minus_l = TRUE;
3105         s++;
3106         if (PL_ors_sv) {
3107             SvREFCNT_dec(PL_ors_sv);
3108             PL_ors_sv = Nullsv;
3109         }
3110         if (isDIGIT(*s)) {
3111             I32 flags = 0;
3112             STRLEN numlen;
3113             PL_ors_sv = newSVpvs("\n");
3114             numlen = 3 + (*s == '0');
3115             *SvPVX(PL_ors_sv) = (char)grok_oct(s, &numlen, &flags, NULL);
3116             s += numlen;
3117         }
3118         else {
3119             if (RsPARA(PL_rs)) {
3120                 PL_ors_sv = newSVpvs("\n\n");
3121             }
3122             else {
3123                 PL_ors_sv = newSVsv(PL_rs);
3124             }
3125         }
3126         return s;
3127     case 'A':
3128         forbid_setid("-A");
3129         if (!PL_preambleav)
3130             PL_preambleav = newAV();
3131         s++;
3132         {
3133             char * const start = s;
3134             SV * const sv = newSVpvs("use assertions::activate");
3135             while(isALNUM(*s) || *s == ':') ++s;
3136             if (s != start) {
3137                 sv_catpvs(sv, "::");
3138                 sv_catpvn(sv, start, s-start);
3139             }
3140             if (*s == '=') {
3141                 Perl_sv_catpvf(aTHX_ sv, " split(/,/,q%c%s%c)", 0, ++s, 0);
3142                 s+=strlen(s);
3143             }
3144             else if (*s != '\0') {
3145                 Perl_croak(aTHX_ "Can't use '%c' after -A%.*s", *s, (int)(s-start), start);
3146             }
3147             av_push(PL_preambleav, sv);
3148             return s;
3149         }
3150     case 'M':
3151         forbid_setid("-M");     /* XXX ? */
3152         /* FALL THROUGH */
3153     case 'm':
3154         forbid_setid("-m");     /* XXX ? */
3155         if (*++s) {
3156             char *start;
3157             SV *sv;
3158             const char *use = "use ";
3159             /* -M-foo == 'no foo'       */
3160             /* Leading space on " no " is deliberate, to make both
3161                possibilities the same length.  */
3162             if (*s == '-') { use = " no "; ++s; }
3163             sv = newSVpvn(use,4);
3164             start = s;
3165             /* We allow -M'Module qw(Foo Bar)'  */
3166             while(isALNUM(*s) || *s==':') ++s;
3167             if (*s != '=') {
3168                 sv_catpv(sv, start);
3169                 if (*(start-1) == 'm') {
3170                     if (*s != '\0')
3171                         Perl_croak(aTHX_ "Can't use '%c' after -mname", *s);
3172                     sv_catpvs( sv, " ()");
3173                 }
3174             } else {
3175                 if (s == start)
3176                     Perl_croak(aTHX_ "Module name required with -%c option",
3177                                s[-1]);
3178                 sv_catpvn(sv, start, s-start);
3179                 sv_catpvs(sv, " split(/,/,q");
3180                 sv_catpvs(sv, "\0");        /* Use NUL as q//-delimiter. */
3181                 sv_catpv(sv, ++s);
3182                 sv_catpvs(sv,  "\0)");
3183             }
3184             s += strlen(s);
3185             if (!PL_preambleav)
3186                 PL_preambleav = newAV();
3187             av_push(PL_preambleav, sv);
3188         }
3189         else
3190             Perl_croak(aTHX_ "Missing argument to -%c", *(s-1));
3191         return s;
3192     case 'n':
3193         PL_minus_n = TRUE;
3194         s++;
3195         return s;
3196     case 'p':
3197         PL_minus_p = TRUE;
3198         s++;
3199         return s;
3200     case 's':
3201         forbid_setid("-s");
3202         PL_doswitches = TRUE;
3203         s++;
3204         return s;
3205     case 't':
3206         if (!PL_tainting)
3207             TOO_LATE_FOR('t');
3208         s++;
3209         return s;
3210     case 'T':
3211         if (!PL_tainting)
3212             TOO_LATE_FOR('T');
3213         s++;
3214         return s;
3215     case 'u':
3216 #ifdef MACOS_TRADITIONAL
3217         Perl_croak(aTHX_ "Believe me, you don't want to use \"-u\" on a Macintosh");
3218 #endif
3219         PL_do_undump = TRUE;
3220         s++;
3221         return s;
3222     case 'U':
3223         PL_unsafe = TRUE;
3224         s++;
3225         return s;
3226     case 'v':
3227         if (!sv_derived_from(PL_patchlevel, "version"))
3228             upg_version(PL_patchlevel);
3229 #if !defined(DGUX)
3230         PerlIO_printf(PerlIO_stdout(),
3231                 Perl_form(aTHX_ "\nThis is perl, %"SVf
3232 #ifdef PERL_PATCHNUM
3233                           " DEVEL" STRINGIFY(PERL_PATCHNUM)
3234 #endif
3235                           " built for %s",
3236                     vstringify(PL_patchlevel),
3237                     ARCHNAME));
3238 #else /* DGUX */
3239 /* Adjust verbose output as in the perl that ships with the DG/UX OS from EMC */
3240         PerlIO_printf(PerlIO_stdout(),
3241                 Perl_form(aTHX_ "\nThis is perl, %"SVf"\n",
3242                     vstringify(PL_patchlevel)));
3243         PerlIO_printf(PerlIO_stdout(),
3244                         Perl_form(aTHX_ "        built under %s at %s %s\n",
3245                                         OSNAME, __DATE__, __TIME__));
3246         PerlIO_printf(PerlIO_stdout(),
3247                         Perl_form(aTHX_ "        OS Specific Release: %s\n",
3248                                         OSVERS));
3249 #endif /* !DGUX */
3250
3251 #if defined(LOCAL_PATCH_COUNT)
3252         if (LOCAL_PATCH_COUNT > 0)
3253             PerlIO_printf(PerlIO_stdout(),
3254                           "\n(with %d registered patch%s, "
3255                           "see perl -V for more detail)",
3256                           (int)LOCAL_PATCH_COUNT,
3257                           (LOCAL_PATCH_COUNT!=1) ? "es" : "");
3258 #endif
3259
3260         PerlIO_printf(PerlIO_stdout(),
3261                       "\n\nCopyright 1987-2006, Larry Wall\n");
3262 #ifdef MACOS_TRADITIONAL
3263         PerlIO_printf(PerlIO_stdout(),
3264                       "\nMac OS port Copyright 1991-2002, Matthias Neeracher;\n"
3265                       "maintained by Chris Nandor\n");
3266 #endif
3267 #ifdef MSDOS
3268         PerlIO_printf(PerlIO_stdout(),
3269                       "\nMS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis\n");
3270 #endif
3271 #ifdef DJGPP
3272         PerlIO_printf(PerlIO_stdout(),
3273                       "djgpp v2 port (jpl5003c) by Hirofumi Watanabe, 1996\n"
3274                       "djgpp v2 port (perl5004+) by Laszlo Molnar, 1997-1999\n");
3275 #endif
3276 #ifdef OS2
3277         PerlIO_printf(PerlIO_stdout(),
3278                       "\n\nOS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n"
3279                       "Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\n");
3280 #endif
3281 #ifdef atarist
3282         PerlIO_printf(PerlIO_stdout(),
3283                       "atariST series port, ++jrb  bammi@cadence.com\n");
3284 #endif
3285 #ifdef __BEOS__
3286         PerlIO_printf(PerlIO_stdout(),
3287                       "BeOS port Copyright Tom Spindler, 1997-1999\n");
3288 #endif
3289 #ifdef MPE
3290         PerlIO_printf(PerlIO_stdout(),
3291                       "MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-2003\n");
3292 #endif
3293 #ifdef OEMVS
3294         PerlIO_printf(PerlIO_stdout(),
3295                       "MVS (OS390) port by Mortice Kern Systems, 1997-1999\n");
3296 #endif
3297 #ifdef __VOS__
3298         PerlIO_printf(PerlIO_stdout(),
3299                       "Stratus VOS port by Paul.Green@stratus.com, 1997-2002\n");
3300 #endif
3301 #ifdef __OPEN_VM
3302         PerlIO_printf(PerlIO_stdout(),
3303                       "VM/ESA port by Neale Ferguson, 1998-1999\n");
3304 #endif
3305 #ifdef POSIX_BC
3306         PerlIO_printf(PerlIO_stdout(),
3307                       "BS2000 (POSIX) port by Start Amadeus GmbH, 1998-1999\n");
3308 #endif
3309 #ifdef __MINT__
3310         PerlIO_printf(PerlIO_stdout(),
3311                       "MiNT port by Guido Flohr, 1997-1999\n");
3312 #endif
3313 #ifdef EPOC
3314         PerlIO_printf(PerlIO_stdout(),
3315                       "EPOC port by Olaf Flebbe, 1999-2002\n");
3316 #endif
3317 #ifdef UNDER_CE
3318         PerlIO_printf(PerlIO_stdout(),"WINCE port by Rainer Keuchel, 2001-2002\n");
3319         PerlIO_printf(PerlIO_stdout(),"Built on " __DATE__ " " __TIME__ "\n\n");
3320         wce_hitreturn();
3321 #endif
3322 #ifdef __SYMBIAN32__
3323         PerlIO_printf(PerlIO_stdout(),
3324                       "Symbian port by Nokia, 2004-2005\n");
3325 #endif
3326 #ifdef BINARY_BUILD_NOTICE
3327         BINARY_BUILD_NOTICE;
3328 #endif
3329         PerlIO_printf(PerlIO_stdout(),
3330                       "\n\
3331 Perl may be copied only under the terms of either the Artistic License or the\n\
3332 GNU General Public License, which may be found in the Perl 5 source kit.\n\n\
3333 Complete documentation for Perl, including FAQ lists, should be found on\n\
3334 this system using \"man perl\" or \"perldoc perl\".  If you have access to the\n\
3335 Internet, point your browser at http://www.perl.org/, the Perl Home Page.\n\n");
3336         my_exit(0);
3337     case 'w':
3338         if (! (PL_dowarn & G_WARN_ALL_MASK))
3339             PL_dowarn |= G_WARN_ON;
3340         s++;
3341         return s;
3342     case 'W':
3343         PL_dowarn = G_WARN_ALL_ON|G_WARN_ON;
3344         if (!specialWARN(PL_compiling.cop_warnings))
3345             SvREFCNT_dec(PL_compiling.cop_warnings);
3346         PL_compiling.cop_warnings = pWARN_ALL ;
3347         s++;
3348         return s;
3349     case 'X':
3350         PL_dowarn = G_WARN_ALL_OFF;
3351         if (!specialWARN(PL_compiling.cop_warnings))
3352             SvREFCNT_dec(PL_compiling.cop_warnings);
3353         PL_compiling.cop_warnings = pWARN_NONE ;
3354         s++;
3355         return s;
3356     case '*':
3357     case ' ':
3358         if (s[1] == '-')        /* Additional switches on #! line. */
3359             return s+2;
3360         break;
3361     case '-':
3362     case 0:
3363 #if defined(WIN32) || !defined(PERL_STRICT_CR)
3364     case '\r':
3365 #endif
3366     case '\n':
3367     case '\t':
3368         break;
3369 #ifdef ALTERNATE_SHEBANG
3370     case 'S':                   /* OS/2 needs -S on "extproc" line. */
3371         break;
3372 #endif
3373     case 'P':
3374         if (PL_preprocess)
3375             return s+1;
3376         /* FALL THROUGH */
3377     default:
3378         Perl_croak(aTHX_ "Can't emulate -%.1s on #! line",s);
3379     }
3380     return Nullch;
3381 }
3382
3383 /* compliments of Tom Christiansen */
3384
3385 /* unexec() can be found in the Gnu emacs distribution */
3386 /* Known to work with -DUNEXEC and using unexelf.c from GNU emacs-20.2 */
3387
3388 void
3389 Perl_my_unexec(pTHX)
3390 {
3391 #ifdef UNEXEC
3392     SV*    prog;
3393     SV*    file;
3394     int    status = 1;
3395     extern int etext;
3396
3397     prog = newSVpv(BIN_EXP, 0);
3398     sv_catpvs(prog, "/perl");
3399     file = newSVpv(PL_origfilename, 0);
3400     sv_catpvs(file, ".perldump");
3401
3402     unexec(SvPVX(file), SvPVX(prog), &etext, sbrk(0), 0);
3403     /* unexec prints msg to stderr in case of failure */
3404     PerlProc_exit(status);
3405 #else
3406 #  ifdef VMS
3407 #    include <lib$routines.h>
3408      lib$signal(SS$_DEBUG);  /* ssdef.h #included from vmsish.h */
3409 #  elif defined(WIN32) || defined(__CYGWIN__)
3410     Perl_croak(aTHX_ "dump is not supported");
3411 #  else
3412     ABORT();            /* for use with undump */
3413 #  endif
3414 #endif
3415 }
3416
3417 /* initialize curinterp */
3418 STATIC void
3419 S_init_interp(pTHX)
3420 {
3421     dVAR;
3422 #ifdef MULTIPLICITY
3423 #  define PERLVAR(var,type)
3424 #  define PERLVARA(var,n,type)
3425 #  if defined(PERL_IMPLICIT_CONTEXT)
3426 #    if defined(USE_5005THREADS)
3427 #      define PERLVARI(var,type,init)           PERL_GET_INTERP->var = init;
3428 #      define PERLVARIC(var,type,init)          PERL_GET_INTERP->var = init;
3429 #    else /* !USE_5005THREADS */
3430 #      define PERLVARI(var,type,init)           aTHX->var = init;
3431 #      define PERLVARIC(var,type,init)  aTHX->var = init;
3432 #    endif /* USE_5005THREADS */
3433 #  else
3434 #    define PERLVARI(var,type,init)     PERL_GET_INTERP->var = init;
3435 #    define PERLVARIC(var,type,init)    PERL_GET_INTERP->var = init;
3436 #  endif
3437 #  include "intrpvar.h"
3438 #  ifndef USE_5005THREADS
3439 #    include "thrdvar.h"
3440 #  endif
3441 #  undef PERLVAR
3442 #  undef PERLVARA
3443 #  undef PERLVARI
3444 #  undef PERLVARIC
3445 #else
3446 #  define PERLVAR(var,type)
3447 #  define PERLVARA(var,n,type)
3448 #  define PERLVARI(var,type,init)       PL_##var = init;
3449 #  define PERLVARIC(var,type,init)      PL_##var = init;
3450 #  include "intrpvar.h"
3451 #  ifndef USE_5005THREADS
3452 #    include "thrdvar.h"
3453 #  endif
3454 #  undef PERLVAR
3455 #  undef PERLVARA
3456 #  undef PERLVARI
3457 #  undef PERLVARIC
3458 #endif
3459
3460 }
3461
3462 STATIC void
3463 S_init_main_stash(pTHX)
3464 {
3465     dVAR;
3466     GV *gv;
3467
3468     PL_curstash = PL_defstash = newHV();
3469     /* We know that the string "main" will be in the global shared string
3470        table, so it's a small saving to use it rather than allocate another
3471        8 bytes.  */
3472     PL_curstname = newSVpvs_share("main");
3473     gv = gv_fetchpv("main::",TRUE, SVt_PVHV);
3474     /* If we hadn't caused another reference to "main" to be in the shared
3475        string table above, then it would be worth reordering these two,
3476        because otherwise all we do is delete "main" from it as a consequence
3477        of the SvREFCNT_dec, only to add it again with hv_name_set */
3478     SvREFCNT_dec(GvHV(gv));
3479     hv_name_set(PL_defstash, "main", 4, 0);
3480     GvHV(gv) = (HV*)SvREFCNT_inc(PL_defstash);
3481     SvREADONLY_on(gv);
3482     PL_incgv = gv_HVadd(gv_AVadd(gv_fetchpv("INC",TRUE, SVt_PVAV)));
3483     SvREFCNT_inc(PL_incgv); /* Don't allow it to be freed */
3484     GvMULTI_on(PL_incgv);
3485     PL_hintgv = gv_fetchpv("\010",TRUE, SVt_PV); /* ^H */
3486     GvMULTI_on(PL_hintgv);
3487     PL_defgv = gv_fetchpv("_",TRUE, SVt_PVAV);
3488     SvREFCNT_inc(PL_defgv);
3489     PL_errgv = gv_HVadd(gv_fetchpv("@", TRUE, SVt_PV));
3490     SvREFCNT_inc(PL_errgv);
3491     GvMULTI_on(PL_errgv);
3492     PL_replgv = gv_fetchpv("\022", TRUE, SVt_PV); /* ^R */
3493     GvMULTI_on(PL_replgv);
3494     (void)Perl_form(aTHX_ "%240s","");  /* Preallocate temp - for immediate signals. */
3495 #ifdef PERL_DONT_CREATE_GVSV
3496     gv_SVadd(PL_errgv);
3497 #endif
3498     sv_grow(ERRSV, 240);        /* Preallocate - for immediate signals. */
3499     sv_setpvn(ERRSV, "", 0);
3500     PL_curstash = PL_defstash;
3501     CopSTASH_set(&PL_compiling, PL_defstash);
3502     PL_debstash = GvHV(gv_fetchpv("DB::", GV_ADDMULTI, SVt_PVHV));
3503     PL_globalstash = GvHV(gv_fetchpv("CORE::GLOBAL::", GV_ADDMULTI, SVt_PVHV));
3504     /* We must init $/ before switches are processed. */
3505     sv_setpvn(get_sv("/", TRUE), "\n", 1);
3506 }
3507
3508 /* PSz 18 Nov 03  fdscript now global but do not change prototype */
3509 STATIC void
3510 S_open_script(pTHX_ const char *scriptname, bool dosearch, SV *sv)
3511 {
3512 #ifndef IAMSUID
3513     const char *quote;
3514     const char *code;
3515     const char *cpp_discard_flag;
3516     const char *perl;
3517 #endif
3518     dVAR;
3519
3520     PL_fdscript = -1;
3521     PL_suidscript = -1;
3522
3523     if (PL_e_script) {
3524         PL_origfilename = savepvs("-e");
3525     }
3526     else {
3527         /* if find_script() returns, it returns a malloc()-ed value */
3528         scriptname = PL_origfilename = find_script(scriptname, dosearch, NULL, 1);
3529
3530         if (strnEQ(scriptname, "/dev/fd/", 8) && isDIGIT(scriptname[8]) ) {
3531             const char *s = scriptname + 8;
3532             PL_fdscript = atoi(s);
3533             while (isDIGIT(*s))
3534                 s++;
3535             if (*s) {
3536                 /* PSz 18 Feb 04
3537                  * Tell apart "normal" usage of fdscript, e.g.
3538                  * with bash on FreeBSD:
3539                  *   perl <( echo '#!perl -DA'; echo 'print "$0\n"')
3540                  * from usage in suidperl.
3541                  * Does any "normal" usage leave garbage after the number???
3542                  * Is it a mistake to use a similar /dev/fd/ construct for
3543                  * suidperl?
3544                  */
3545                 PL_suidscript = 1;
3546                 /* PSz 20 Feb 04  
3547                  * Be supersafe and do some sanity-checks.
3548                  * Still, can we be sure we got the right thing?
3549                  */
3550                 if (*s != '/') {
3551                     Perl_croak(aTHX_ "Wrong syntax (suid) fd script name \"%s\"\n", s);
3552                 }
3553                 if (! *(s+1)) {
3554                     Perl_croak(aTHX_ "Missing (suid) fd script name\n");
3555                 }
3556                 scriptname = savepv(s + 1);
3557                 Safefree(PL_origfilename);
3558                 PL_origfilename = (char *)scriptname;
3559             }
3560         }
3561     }
3562
3563     CopFILE_free(PL_curcop);
3564     CopFILE_set(PL_curcop, PL_origfilename);
3565     if (*PL_origfilename == '-' && PL_origfilename[1] == '\0')
3566         scriptname = (char *)"";
3567     if (PL_fdscript >= 0) {
3568         PL_rsfp = PerlIO_fdopen(PL_fdscript,PERL_SCRIPT_MODE);
3569 #       if defined(HAS_FCNTL) && defined(F_SETFD)
3570             if (PL_rsfp)
3571                 /* ensure close-on-exec */
3572                 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1);
3573 #       endif
3574     }
3575 #ifdef IAMSUID
3576     else {
3577         Perl_croak(aTHX_ "sperl needs fd script\n"
3578                    "You should not call sperl directly; do you need to "
3579                    "change a #! line\nfrom sperl to perl?\n");
3580
3581 /* PSz 11 Nov 03
3582  * Do not open (or do other fancy stuff) while setuid.
3583  * Perl does the open, and hands script to suidperl on a fd;
3584  * suidperl only does some checks, sets up UIDs and re-execs
3585  * perl with that fd as it has always done.
3586  */
3587     }
3588     if (PL_suidscript != 1) {
3589         Perl_croak(aTHX_ "suidperl needs (suid) fd script\n");
3590     }
3591 #else /* IAMSUID */
3592     else if (PL_preprocess) {
3593         const char * const cpp_cfg = CPPSTDIN;
3594         SV * const cpp = newSVpvs("");
3595         SV * const cmd = newSV(0);
3596
3597         if (cpp_cfg[0] == 0) /* PERL_MICRO? */
3598              Perl_croak(aTHX_ "Can't run with cpp -P with CPPSTDIN undefined");
3599         if (strEQ(cpp_cfg, "cppstdin"))
3600             Perl_sv_catpvf(aTHX_ cpp, "%s/", BIN_EXP);
3601         sv_catpv(cpp, cpp_cfg);
3602
3603 #       ifndef VMS
3604             sv_catpvs(sv, "-I");
3605             sv_catpv(sv,PRIVLIB_EXP);
3606 #       endif
3607
3608         DEBUG_P(PerlIO_printf(Perl_debug_log,
3609                               "PL_preprocess: scriptname=\"%s\", cpp=\"%s\", sv=\"%s\", CPPMINUS=\"%s\"\n",
3610                               scriptname, SvPVX_const (cpp), SvPVX_const (sv),
3611                               CPPMINUS));
3612
3613 #       if defined(MSDOS) || defined(WIN32) || defined(VMS)
3614             quote = "\"";
3615 #       else
3616             quote = "'";
3617 #       endif
3618
3619 #       ifdef VMS
3620             cpp_discard_flag = "";
3621 #       else
3622             cpp_discard_flag = "-C";
3623 #       endif
3624
3625 #       ifdef OS2
3626             perl = os2_execname(aTHX);
3627 #       else
3628             perl = PL_origargv[0];
3629 #       endif
3630
3631
3632         /* This strips off Perl comments which might interfere with
3633            the C pre-processor, including #!.  #line directives are
3634            deliberately stripped to avoid confusion with Perl's version
3635            of #line.  FWP played some golf with it so it will fit
3636            into VMS's 255 character buffer.
3637         */
3638         if( PL_doextract )
3639             code = "(1../^#!.*perl/i)|/^\\s*#(?!\\s*((ifn?|un)def|(el|end)?if|define|include|else|error|pragma)\\b)/||!($|=1)||print";
3640         else
3641             code = "/^\\s*#(?!\\s*((ifn?|un)def|(el|end)?if|define|include|else|error|pragma)\\b)/||!($|=1)||print";
3642
3643         Perl_sv_setpvf(aTHX_ cmd, "\
3644 %s -ne%s%s%s %s | %"SVf" %s %"SVf" %s",
3645                        perl, quote, code, quote, scriptname, cpp,
3646                        cpp_discard_flag, sv, CPPMINUS);
3647
3648         PL_doextract = FALSE;
3649
3650         DEBUG_P(PerlIO_printf(Perl_debug_log,
3651                               "PL_preprocess: cmd=\"%s\"\n",
3652                               SvPVX_const(cmd)));
3653
3654         PL_rsfp = PerlProc_popen((char *)SvPVX_const(cmd), (char *)"r");
3655         SvREFCNT_dec(cmd);
3656         SvREFCNT_dec(cpp);
3657     }
3658     else if (!*scriptname) {
3659         forbid_setid("program input from stdin");
3660         PL_rsfp = PerlIO_stdin();
3661     }
3662     else {
3663         PL_rsfp = PerlIO_open(scriptname,PERL_SCRIPT_MODE);
3664 #       if defined(HAS_FCNTL) && defined(F_SETFD)
3665             if (PL_rsfp)
3666                 /* ensure close-on-exec */
3667                 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1);
3668 #       endif
3669     }
3670 #endif /* IAMSUID */
3671     if (!PL_rsfp) {
3672         /* PSz 16 Sep 03  Keep neat error message */
3673         if (PL_e_script)
3674             Perl_croak(aTHX_ "Can't open "BIT_BUCKET": %s\n", Strerror(errno));
3675         else
3676             Perl_croak(aTHX_ "Can't open perl script \"%s\": %s\n",
3677                     CopFILE(PL_curcop), Strerror(errno));
3678     }
3679 }
3680
3681 /* Mention
3682  * I_SYSSTATVFS HAS_FSTATVFS
3683  * I_SYSMOUNT
3684  * I_STATFS     HAS_FSTATFS     HAS_GETFSSTAT
3685  * I_MNTENT     HAS_GETMNTENT   HAS_HASMNTOPT
3686  * here so that metaconfig picks them up. */
3687
3688 #ifdef IAMSUID
3689 STATIC int
3690 S_fd_on_nosuid_fs(pTHX_ int fd)
3691 {
3692 /* PSz 27 Feb 04
3693  * We used to do this as "plain" user (after swapping UIDs with setreuid);
3694  * but is needed also on machines without setreuid.
3695  * Seems safe enough to run as root.
3696  */
3697     int check_okay = 0; /* able to do all the required sys/libcalls */
3698     int on_nosuid  = 0; /* the fd is on a nosuid fs */
3699     /* PSz 12 Nov 03
3700      * Need to check noexec also: nosuid might not be set, the average
3701      * sysadmin would say that nosuid is irrelevant once he sets noexec.
3702      */
3703     int on_noexec  = 0; /* the fd is on a noexec fs */
3704
3705 /*
3706  * Preferred order: fstatvfs(), fstatfs(), ustat()+getmnt(), getmntent().
3707  * fstatvfs() is UNIX98.
3708  * fstatfs() is 4.3 BSD.
3709  * ustat()+getmnt() is pre-4.3 BSD.
3710  * getmntent() is O(number-of-mounted-filesystems) and can hang on
3711  * an irrelevant filesystem while trying to reach the right one.
3712  */
3713
3714 #undef FD_ON_NOSUID_CHECK_OKAY  /* found the syscalls to do the check? */
3715
3716 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3717         defined(HAS_FSTATVFS)
3718 #   define FD_ON_NOSUID_CHECK_OKAY
3719     struct statvfs stfs;
3720
3721     check_okay = fstatvfs(fd, &stfs) == 0;
3722     on_nosuid  = check_okay && (stfs.f_flag  & ST_NOSUID);
3723 #ifdef ST_NOEXEC
3724     /* ST_NOEXEC certainly absent on AIX 5.1, and doesn't seem to be documented
3725        on platforms where it is present.  */
3726     on_noexec  = check_okay && (stfs.f_flag  & ST_NOEXEC);
3727 #endif
3728 #   endif /* fstatvfs */
3729
3730 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3731         defined(PERL_MOUNT_NOSUID)      && \
3732         defined(PERL_MOUNT_NOEXEC)      && \
3733         defined(HAS_FSTATFS)            && \
3734         defined(HAS_STRUCT_STATFS)      && \
3735         defined(HAS_STRUCT_STATFS_F_FLAGS)
3736 #   define FD_ON_NOSUID_CHECK_OKAY
3737     struct statfs  stfs;
3738
3739     check_okay = fstatfs(fd, &stfs)  == 0;
3740     on_nosuid  = check_okay && (stfs.f_flags & PERL_MOUNT_NOSUID);
3741     on_noexec  = check_okay && (stfs.f_flags & PERL_MOUNT_NOEXEC);
3742 #   endif /* fstatfs */
3743
3744 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3745         defined(PERL_MOUNT_NOSUID)      && \
3746         defined(PERL_MOUNT_NOEXEC)      && \
3747         defined(HAS_FSTAT)              && \
3748         defined(HAS_USTAT)              && \
3749         defined(HAS_GETMNT)             && \
3750         defined(HAS_STRUCT_FS_DATA)     && \
3751         defined(NOSTAT_ONE)
3752 #   define FD_ON_NOSUID_CHECK_OKAY
3753     Stat_t fdst;
3754
3755     if (fstat(fd, &fdst) == 0) {
3756         struct ustat us;
3757         if (ustat(fdst.st_dev, &us) == 0) {
3758             struct fs_data fsd;
3759             /* NOSTAT_ONE here because we're not examining fields which
3760              * vary between that case and STAT_ONE. */
3761             if (getmnt((int*)0, &fsd, (int)0, NOSTAT_ONE, us.f_fname) == 0) {
3762                 size_t cmplen = sizeof(us.f_fname);
3763                 if (sizeof(fsd.fd_req.path) < cmplen)
3764                     cmplen = sizeof(fsd.fd_req.path);
3765                 if (strnEQ(fsd.fd_req.path, us.f_fname, cmplen) &&
3766                     fdst.st_dev == fsd.fd_req.dev) {
3767                     check_okay = 1;
3768                     on_nosuid = fsd.fd_req.flags & PERL_MOUNT_NOSUID;
3769                     on_noexec = fsd.fd_req.flags & PERL_MOUNT_NOEXEC;
3770                 }
3771             }
3772         }
3773     }
3774 #   endif /* fstat+ustat+getmnt */
3775
3776 #   if !defined(FD_ON_NOSUID_CHECK_OKAY) && \
3777         defined(HAS_GETMNTENT)          && \
3778         defined(HAS_HASMNTOPT)          && \
3779         defined(MNTOPT_NOSUID)          && \
3780         defined(MNTOPT_NOEXEC)
3781 #   define FD_ON_NOSUID_CHECK_OKAY
3782     FILE                *mtab = fopen("/etc/mtab", "r");
3783     struct mntent       *entry;
3784     Stat_t              stb, fsb;
3785
3786     if (mtab && (fstat(fd, &stb) == 0)) {
3787         while (entry = getmntent(mtab)) {
3788             if (stat(entry->mnt_dir, &fsb) == 0
3789                 && fsb.st_dev == stb.st_dev)
3790             {
3791                 /* found the filesystem */
3792                 check_okay = 1;
3793                 if (hasmntopt(entry, MNTOPT_NOSUID))
3794                     on_nosuid = 1;
3795                 if (hasmntopt(entry, MNTOPT_NOEXEC))
3796                     on_noexec = 1;
3797                 break;
3798             } /* A single fs may well fail its stat(). */
3799         }
3800     }
3801     if (mtab)
3802         fclose(mtab);
3803 #   endif /* getmntent+hasmntopt */
3804
3805     if (!check_okay)
3806         Perl_croak(aTHX_ "Can't check filesystem of script \"%s\" for nosuid/noexec", PL_origfilename);
3807     if (on_nosuid)
3808         Perl_croak(aTHX_ "Setuid script \"%s\" on nosuid filesystem", PL_origfilename);
3809     if (on_noexec)
3810         Perl_croak(aTHX_ "Setuid script \"%s\" on noexec filesystem", PL_origfilename);
3811     return ((!check_okay) || on_nosuid || on_noexec);
3812 }
3813 #endif /* IAMSUID */
3814
3815 STATIC void
3816 S_validate_suid(pTHX_ const char *validarg, const char *scriptname)
3817 {
3818     dVAR;
3819 #ifdef IAMSUID
3820     /* int which; */
3821 #endif /* IAMSUID */
3822
3823     /* do we need to emulate setuid on scripts? */
3824
3825     /* This code is for those BSD systems that have setuid #! scripts disabled
3826      * in the kernel because of a security problem.  Merely defining DOSUID
3827      * in perl will not fix that problem, but if you have disabled setuid
3828      * scripts in the kernel, this will attempt to emulate setuid and setgid
3829      * on scripts that have those now-otherwise-useless bits set.  The setuid
3830      * root version must be called suidperl or sperlN.NNN.  If regular perl
3831      * discovers that it has opened a setuid script, it calls suidperl with
3832      * the same argv that it had.  If suidperl finds that the script it has
3833      * just opened is NOT setuid root, it sets the effective uid back to the
3834      * uid.  We don't just make perl setuid root because that loses the
3835      * effective uid we had before invoking perl, if it was different from the
3836      * uid.
3837      * PSz 27 Feb 04
3838      * Description/comments above do not match current workings:
3839      *   suidperl must be hardlinked to sperlN.NNN (that is what we exec);
3840      *   suidperl called with script open and name changed to /dev/fd/N/X;
3841      *   suidperl croaks if script is not setuid;
3842      *   making perl setuid would be a huge security risk (and yes, that
3843      *     would lose any euid we might have had).
3844      *
3845      * DOSUID must be defined in both perl and suidperl, and IAMSUID must
3846      * be defined in suidperl only.  suidperl must be setuid root.  The
3847      * Configure script will set this up for you if you want it.
3848      */
3849
3850 #ifdef DOSUID
3851     const char *s, *s2;
3852
3853     if (PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf) < 0)  /* normal stat is insecure */
3854         Perl_croak(aTHX_ "Can't stat script \"%s\"",PL_origfilename);
3855     if (PL_statbuf.st_mode & (S_ISUID|S_ISGID)) {
3856         I32 len;
3857         const char *linestr;
3858         const char *s_end;
3859
3860 #ifdef IAMSUID
3861         if (PL_fdscript < 0 || PL_suidscript != 1)
3862             Perl_croak(aTHX_ "Need (suid) fdscript in suidperl\n");     /* We already checked this */
3863         /* PSz 11 Nov 03
3864          * Since the script is opened by perl, not suidperl, some of these
3865          * checks are superfluous. Leaving them in probably does not lower
3866          * security(?!).
3867          */
3868         /* PSz 27 Feb 04
3869          * Do checks even for systems with no HAS_SETREUID.
3870          * We used to swap, then re-swap UIDs with
3871 #ifdef HAS_SETREUID
3872             if (setreuid(PL_euid,PL_uid) < 0
3873                 || PerlProc_getuid() != PL_euid || PerlProc_geteuid() != PL_uid)
3874                 Perl_croak(aTHX_ "Can't swap uid and euid");
3875 #endif
3876 #ifdef HAS_SETREUID
3877             if (setreuid(PL_uid,PL_euid) < 0
3878                 || PerlProc_getuid() != PL_uid || PerlProc_geteuid() != PL_euid)
3879                 Perl_croak(aTHX_ "Can't reswap uid and euid");
3880 #endif
3881          */
3882
3883         /* On this access check to make sure the directories are readable,
3884          * there is actually a small window that the user could use to make
3885          * filename point to an accessible directory.  So there is a faint
3886          * chance that someone could execute a setuid script down in a
3887          * non-accessible directory.  I don't know what to do about that.
3888          * But I don't think it's too important.  The manual lies when
3889          * it says access() is useful in setuid programs.
3890          * 
3891          * So, access() is pretty useless... but not harmful... do anyway.
3892          */
3893         if (PerlLIO_access(CopFILE(PL_curcop),1)) { /*double check*/
3894             Perl_croak(aTHX_ "Can't access() script\n");
3895         }
3896
3897         /* If we can swap euid and uid, then we can determine access rights
3898          * with a simple stat of the file, and then compare device and
3899          * inode to make sure we did stat() on the same file we opened.
3900          * Then we just have to make sure he or she can execute it.
3901          * 
3902          * PSz 24 Feb 04
3903          * As the script is opened by perl, not suidperl, we do not need to
3904          * care much about access rights.
3905          * 
3906          * The 'script changed' check is needed, or we can get lied to
3907          * about $0 with e.g.
3908          *  suidperl /dev/fd/4//bin/x 4<setuidscript
3909          * Without HAS_SETREUID, is it safe to stat() as root?
3910          * 
3911          * Are there any operating systems that pass /dev/fd/xxx for setuid
3912          * scripts, as suggested/described in perlsec(1)? Surely they do not
3913          * pass the script name as we do, so the "script changed" test would
3914          * fail for them... but we never get here with
3915          * SETUID_SCRIPTS_ARE_SECURE_NOW defined.
3916          * 
3917          * This is one place where we must "lie" about return status: not
3918          * say if the stat() failed. We are doing this as root, and could
3919          * be tricked into reporting existence or not of files that the
3920          * "plain" user cannot even see.
3921          */
3922         {
3923             Stat_t tmpstatbuf;
3924             if (PerlLIO_stat(CopFILE(PL_curcop),&tmpstatbuf) < 0 ||
3925                 tmpstatbuf.st_dev != PL_statbuf.st_dev ||
3926                 tmpstatbuf.st_ino != PL_statbuf.st_ino) {
3927                 Perl_croak(aTHX_ "Setuid script changed\n");
3928             }
3929
3930         }
3931         if (!cando(S_IXUSR,FALSE,&PL_statbuf))          /* can real uid exec? */
3932             Perl_croak(aTHX_ "Real UID cannot exec script\n");
3933
3934         /* PSz 27 Feb 04
3935          * We used to do this check as the "plain" user (after swapping
3936          * UIDs). But the check for nosuid and noexec filesystem is needed,
3937          * and should be done even without HAS_SETREUID. (Maybe those
3938          * operating systems do not have such mount options anyway...)
3939          * Seems safe enough to do as root.
3940          */
3941 #if !defined(NO_NOSUID_CHECK)
3942         if (fd_on_nosuid_fs(PerlIO_fileno(PL_rsfp))) {
3943             Perl_croak(aTHX_ "Setuid script on nosuid or noexec filesystem\n");
3944         }
3945 #endif
3946 #endif /* IAMSUID */
3947
3948         if (!S_ISREG(PL_statbuf.st_mode)) {
3949             Perl_croak(aTHX_ "Setuid script not plain file\n");
3950         }
3951         if (PL_statbuf.st_mode & S_IWOTH)
3952             Perl_croak(aTHX_ "Setuid/gid script is writable by world");
3953         PL_doswitches = FALSE;          /* -s is insecure in suid */
3954         /* PSz 13 Nov 03  But -s was caught elsewhere ... so unsetting it here is useless(?!) */
3955         CopLINE_inc(PL_curcop);
3956         if (sv_gets(PL_linestr, PL_rsfp, 0) == Nullch)
3957             Perl_croak(aTHX_ "No #! line");
3958         linestr = SvPV_nolen_const(PL_linestr);
3959         /* required even on Sys V */
3960         if (!*linestr || !linestr[1] || strnNE(linestr,"#!",2))
3961             Perl_croak(aTHX_ "No #! line");
3962         linestr += 2;
3963         s = linestr;
3964         /* PSz 27 Feb 04 */
3965         /* Sanity check on line length */
3966         s_end = s + strlen(s);
3967         if (s_end == s || (s_end - s) > 4000)
3968             Perl_croak(aTHX_ "Very long #! line");
3969         /* Allow more than a single space after #! */
3970         while (isSPACE(*s)) s++;
3971         /* Sanity check on buffer end */
3972         while ((*s) && !isSPACE(*s)) s++;
3973         for (s2 = s;  (s2 > linestr &&
3974                        (isDIGIT(s2[-1]) || s2[-1] == '.' || s2[-1] == '_'
3975                         || s2[-1] == '-'));  s2--) ;
3976         /* Sanity check on buffer start */
3977         if ( (s2-4 < linestr || strnNE(s2-4,"perl",4)) &&
3978               (s-9 < linestr || strnNE(s-9,"perl",4)) )
3979             Perl_croak(aTHX_ "Not a perl script");
3980         while (*s == ' ' || *s == '\t') s++;
3981         /*
3982          * #! arg must be what we saw above.  They can invoke it by
3983          * mentioning suidperl explicitly, but they may not add any strange
3984          * arguments beyond what #! says if they do invoke suidperl that way.
3985          */
3986         /*
3987          * The way validarg was set up, we rely on the kernel to start
3988          * scripts with argv[1] set to contain all #! line switches (the
3989          * whole line).
3990          */
3991         /*
3992          * Check that we got all the arguments listed in the #! line (not
3993          * just that there are no extraneous arguments). Might not matter
3994          * much, as switches from #! line seem to be acted upon (also), and
3995          * so may be checked and trapped in perl. But, security checks must
3996          * be done in suidperl and not deferred to perl. Note that suidperl
3997          * does not get around to parsing (and checking) the switches on
3998          * the #! line (but execs perl sooner).
3999          * Allow (require) a trailing newline (which may be of two
4000          * characters on some architectures?) (but no other trailing
4001          * whitespace).
4002          */
4003         len = strlen(validarg);
4004         if (strEQ(validarg," PHOOEY ") ||
4005             strnNE(s,validarg,len) || !isSPACE(s[len]) ||
4006             !((s_end - s) == len+1
4007               || ((s_end - s) == len+2 && isSPACE(s[len+1]))))
4008             Perl_croak(aTHX_ "Args must match #! line");
4009
4010 #ifndef IAMSUID
4011         if (PL_fdscript < 0 &&
4012             PL_euid != PL_uid && (PL_statbuf.st_mode & S_ISUID) &&
4013             PL_euid == PL_statbuf.st_uid)
4014             if (!PL_do_undump)
4015                 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
4016 FIX YOUR KERNEL, OR PUT A C WRAPPER AROUND THIS SCRIPT!\n");
4017 #endif /* IAMSUID */
4018
4019         if (PL_fdscript < 0 &&
4020             PL_euid) {  /* oops, we're not the setuid root perl */
4021             /* PSz 18 Feb 04
4022              * When root runs a setuid script, we do not go through the same
4023              * steps of execing sperl and then perl with fd scripts, but
4024              * simply set up UIDs within the same perl invocation; so do
4025              * not have the same checks (on options, whatever) that we have
4026              * for plain users. No problem really: would have to be a script
4027              * that does not actually work for plain users; and if root is
4028              * foolish and can be persuaded to run such an unsafe script, he
4029              * might run also non-setuid ones, and deserves what he gets.
4030              * 
4031              * Or, we might drop the PL_euid check above (and rely just on
4032              * PL_fdscript to avoid loops), and do the execs
4033              * even for root.
4034              */
4035 #ifndef IAMSUID
4036             int which;
4037             /* PSz 11 Nov 03
4038              * Pass fd script to suidperl.
4039              * Exec suidperl, substituting fd script for scriptname.
4040              * Pass script name as "subdir" of fd, which perl will grok;
4041              * in fact will use that to distinguish this from "normal"
4042              * usage, see comments above.
4043              */
4044             PerlIO_rewind(PL_rsfp);
4045             PerlLIO_lseek(PerlIO_fileno(PL_rsfp),(Off_t)0,0);  /* just in case rewind didn't */
4046             /* PSz 27 Feb 04  Sanity checks on scriptname */
4047             if ((!scriptname) || (!*scriptname) ) {
4048                 Perl_croak(aTHX_ "No setuid script name\n");
4049             }
4050             if (*scriptname == '-') {
4051                 Perl_croak(aTHX_ "Setuid script name may not begin with dash\n");
4052                 /* Or we might confuse it with an option when replacing
4053                  * name in argument list, below (though we do pointer, not
4054                  * string, comparisons).
4055                  */
4056             }
4057             for (which = 1; PL_origargv[which] && PL_origargv[which] != scriptname; which++) ;
4058             if (!PL_origargv[which]) {
4059                 Perl_croak(aTHX_ "Can't change argv to have fd script\n");
4060             }
4061             PL_origargv[which] = savepv(Perl_form(aTHX_ "/dev/fd/%d/%s",
4062                                           PerlIO_fileno(PL_rsfp), PL_origargv[which]));
4063 #if defined(HAS_FCNTL) && defined(F_SETFD)
4064             fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,0);    /* ensure no close-on-exec */
4065 #endif
4066             PERL_FPU_PRE_EXEC
4067             PerlProc_execv(Perl_form(aTHX_ "%s/sperl"PERL_FS_VER_FMT, BIN_EXP,
4068                                      (int)PERL_REVISION, (int)PERL_VERSION,
4069                                      (int)PERL_SUBVERSION), PL_origargv);
4070             PERL_FPU_POST_EXEC
4071 #endif /* IAMSUID */
4072             Perl_croak(aTHX_ "Can't do setuid (cannot exec sperl)\n");
4073         }
4074
4075         if (PL_statbuf.st_mode & S_ISGID && PL_statbuf.st_gid != PL_egid) {
4076 /* PSz 26 Feb 04
4077  * This seems back to front: we try HAS_SETEGID first; if not available
4078  * then try HAS_SETREGID; as a last chance we try HAS_SETRESGID. May be OK
4079  * in the sense that we only want to set EGID; but are there any machines
4080  * with either of the latter, but not the former? Same with UID, later.
4081  */
4082 #ifdef HAS_SETEGID
4083             (void)setegid(PL_statbuf.st_gid);
4084 #else
4085 #ifdef HAS_SETREGID
4086            (void)setregid((Gid_t)-1,PL_statbuf.st_gid);
4087 #else
4088 #ifdef HAS_SETRESGID
4089            (void)setresgid((Gid_t)-1,PL_statbuf.st_gid,(Gid_t)-1);
4090 #else
4091             PerlProc_setgid(PL_statbuf.st_gid);
4092 #endif
4093 #endif
4094 #endif
4095             if (PerlProc_getegid() != PL_statbuf.st_gid)
4096                 Perl_croak(aTHX_ "Can't do setegid!\n");
4097         }
4098         if (PL_statbuf.st_mode & S_ISUID) {
4099             if (PL_statbuf.st_uid != PL_euid)
4100 #ifdef HAS_SETEUID
4101                 (void)seteuid(PL_statbuf.st_uid);       /* all that for this */
4102 #else
4103 #ifdef HAS_SETREUID
4104                 (void)setreuid((Uid_t)-1,PL_statbuf.st_uid);
4105 #else
4106 #ifdef HAS_SETRESUID
4107                 (void)setresuid((Uid_t)-1,PL_statbuf.st_uid,(Uid_t)-1);
4108 #else
4109                 PerlProc_setuid(PL_statbuf.st_uid);
4110 #endif
4111 #endif
4112 #endif
4113             if (PerlProc_geteuid() != PL_statbuf.st_uid)
4114                 Perl_croak(aTHX_ "Can't do seteuid!\n");
4115         }
4116         else if (PL_uid) {                      /* oops, mustn't run as root */
4117 #ifdef HAS_SETEUID
4118           (void)seteuid((Uid_t)PL_uid);
4119 #else
4120 #ifdef HAS_SETREUID
4121           (void)setreuid((Uid_t)-1,(Uid_t)PL_uid);
4122 #else
4123 #ifdef HAS_SETRESUID
4124           (void)setresuid((Uid_t)-1,(Uid_t)PL_uid,(Uid_t)-1);
4125 #else
4126           PerlProc_setuid((Uid_t)PL_uid);
4127 #endif
4128 #endif
4129 #endif
4130             if (PerlProc_geteuid() != PL_uid)
4131                 Perl_croak(aTHX_ "Can't do seteuid!\n");
4132         }
4133         init_ids();
4134         if (!cando(S_IXUSR,TRUE,&PL_statbuf))
4135             Perl_croak(aTHX_ "Effective UID cannot exec script\n");     /* they can't do this */
4136     }
4137 #ifdef IAMSUID
4138     else if (PL_preprocess)     /* PSz 13 Nov 03  Caught elsewhere, useless(?!) here */
4139         Perl_croak(aTHX_ "-P not allowed for setuid/setgid script\n");
4140     else if (PL_fdscript < 0 || PL_suidscript != 1)
4141         /* PSz 13 Nov 03  Caught elsewhere, useless(?!) here */
4142         Perl_croak(aTHX_ "(suid) fdscript needed in suidperl\n");
4143     else {
4144 /* PSz 16 Sep 03  Keep neat error message */
4145         Perl_croak(aTHX_ "Script is not setuid/setgid in suidperl\n");
4146     }
4147
4148     /* We absolutely must clear out any saved ids here, so we */
4149     /* exec the real perl, substituting fd script for scriptname. */
4150     /* (We pass script name as "subdir" of fd, which perl will grok.) */
4151     /* 
4152      * It might be thought that using setresgid and/or setresuid (changed to
4153      * set the saved IDs) above might obviate the need to exec, and we could
4154      * go on to "do the perl thing".
4155      * 
4156      * Is there such a thing as "saved GID", and is that set for setuid (but
4157      * not setgid) execution like suidperl? Without exec, it would not be
4158      * cleared for setuid (but not setgid) scripts (or might need a dummy
4159      * setresgid).
4160      * 
4161      * We need suidperl to do the exact same argument checking that perl
4162      * does. Thus it cannot be very small; while it could be significantly
4163      * smaller, it is safer (simpler?) to make it essentially the same
4164      * binary as perl (but they are not identical). - Maybe could defer that
4165      * check to the invoked perl, and suidperl be a tiny wrapper instead;
4166      * but prefer to do thorough checks in suidperl itself. Such deferral
4167      * would make suidperl security rely on perl, a design no-no.
4168      * 
4169      * Setuid things should be short and simple, thus easy to understand and
4170      * verify. They should do their "own thing", without influence by
4171      * attackers. It may help if their internal execution flow is fixed,
4172      * regardless of platform: it may be best to exec anyway.
4173      * 
4174      * Suidperl should at least be conceptually simple: a wrapper only,
4175      * never to do any real perl. Maybe we should put
4176      * #ifdef IAMSUID
4177      *         Perl_croak(aTHX_ "Suidperl should never do real perl\n");
4178      * #endif
4179      * into the perly bits.
4180      */
4181     PerlIO_rewind(PL_rsfp);
4182     PerlLIO_lseek(PerlIO_fileno(PL_rsfp),(Off_t)0,0);  /* just in case rewind didn't */
4183     /* PSz 11 Nov 03
4184      * Keep original arguments: suidperl already has fd script.
4185      */
4186 /*  for (which = 1; PL_origargv[which] && PL_origargv[which] != scriptname; which++) ;  */
4187 /*  if (!PL_origargv[which]) {                                          */
4188 /*      errno = EPERM;                                                  */
4189 /*      Perl_croak(aTHX_ "Permission denied\n");                        */
4190 /*  }                                                                   */
4191 /*  PL_origargv[which] = savepv(Perl_form(aTHX_ "/dev/fd/%d/%s",        */
4192 /*                                PerlIO_fileno(PL_rsfp), PL_origargv[which])); */
4193 #if defined(HAS_FCNTL) && defined(F_SETFD)
4194     fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,0);    /* ensure no close-on-exec */
4195 #endif
4196     PERL_FPU_PRE_EXEC
4197     PerlProc_execv(Perl_form(aTHX_ "%s/perl"PERL_FS_VER_FMT, BIN_EXP,
4198                              (int)PERL_REVISION, (int)PERL_VERSION,
4199                              (int)PERL_SUBVERSION), PL_origargv);/* try again */
4200     PERL_FPU_POST_EXEC
4201     Perl_croak(aTHX_ "Can't do setuid (suidperl cannot exec perl)\n");
4202 #endif /* IAMSUID */
4203 #else /* !DOSUID */
4204     if (PL_euid != PL_uid || PL_egid != PL_gid) {       /* (suidperl doesn't exist, in fact) */
4205 #ifndef SETUID_SCRIPTS_ARE_SECURE_NOW
4206         PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf);      /* may be either wrapped or real suid */
4207         if ((PL_euid != PL_uid && PL_euid == PL_statbuf.st_uid && PL_statbuf.st_mode & S_ISUID)
4208             ||
4209             (PL_egid != PL_gid && PL_egid == PL_statbuf.st_gid && PL_statbuf.st_mode & S_ISGID)
4210            )
4211             if (!PL_do_undump)
4212                 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
4213 FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
4214 #endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
4215         /* not set-id, must be wrapped */
4216     }
4217 #endif /* DOSUID */
4218     (void)validarg;
4219     (void)scriptname;
4220 }
4221
4222 STATIC void
4223 S_find_beginning(pTHX)
4224 {
4225     dVAR;
4226     register char *s;
4227     register const char *s2;
4228 #ifdef MACOS_TRADITIONAL
4229     int maclines = 0;
4230 #endif
4231
4232     /* skip forward in input to the real script? */
4233
4234     forbid_setid("-x");
4235 #ifdef MACOS_TRADITIONAL
4236     /* Since the Mac OS does not honor #! arguments for us, we do it ourselves */
4237
4238     while (PL_doextract || gMacPerl_AlwaysExtract) {
4239         if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == Nullch) {
4240             if (!gMacPerl_AlwaysExtract)
4241                 Perl_croak(aTHX_ "No Perl script found in input\n");
4242
4243             if (PL_doextract)                   /* require explicit override ? */
4244                 if (!OverrideExtract(PL_origfilename))
4245                     Perl_croak(aTHX_ "User aborted script\n");
4246                 else
4247                     PL_doextract = FALSE;
4248
4249             /* Pater peccavi, file does not have #! */
4250             PerlIO_rewind(PL_rsfp);
4251
4252             break;
4253         }
4254 #else
4255     while (PL_doextract) {
4256         if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == Nullch)
4257             Perl_croak(aTHX_ "No Perl script found in input\n");
4258 #endif
4259         s2 = s;
4260         if (*s == '#' && s[1] == '!' && ((s = instr(s,"perl")) || (s = instr(s2,"PERL")))) {
4261             PerlIO_ungetc(PL_rsfp, '\n');               /* to keep line count right */
4262             PL_doextract = FALSE;
4263             while (*s && !(isSPACE (*s) || *s == '#')) s++;
4264             s2 = s;
4265             while (*s == ' ' || *s == '\t') s++;
4266             if (*s++ == '-') {
4267                 while (isDIGIT(s2[-1]) || s2[-1] == '-' || s2[-1] == '.'
4268                        || s2[-1] == '_') s2--;
4269                 if (strnEQ(s2-4,"perl",4))
4270                     while ((s = moreswitches(s)))
4271                         ;
4272             }
4273 #ifdef MACOS_TRADITIONAL
4274             /* We are always searching for the #!perl line in MacPerl,
4275              * so if we find it, still keep the line count correct
4276              * by counting lines we already skipped over
4277              */
4278             for (; maclines > 0 ; maclines--)
4279                 PerlIO_ungetc(PL_rsfp, '\n');
4280
4281             break;
4282
4283         /* gMacPerl_AlwaysExtract is false in MPW tool */
4284         } else if (gMacPerl_AlwaysExtract) {
4285             ++maclines;
4286 #endif
4287         }
4288     }
4289 }
4290
4291
4292 STATIC void
4293 S_init_ids(pTHX)
4294 {
4295     dVAR;
4296     PL_uid = PerlProc_getuid();
4297     PL_euid = PerlProc_geteuid();
4298     PL_gid = PerlProc_getgid();
4299     PL_egid = PerlProc_getegid();
4300 #ifdef VMS
4301     PL_uid |= PL_gid << 16;
4302     PL_euid |= PL_egid << 16;
4303 #endif
4304     /* Should not happen: */
4305     CHECK_MALLOC_TAINT(PL_uid && (PL_euid != PL_uid || PL_egid != PL_gid));
4306     PL_tainting |= (PL_uid && (PL_euid != PL_uid || PL_egid != PL_gid));
4307     /* BUG */
4308     /* PSz 27 Feb 04
4309      * Should go by suidscript, not uid!=euid: why disallow
4310      * system("ls") in scripts run from setuid things?
4311      * Or, is this run before we check arguments and set suidscript?
4312      * What about SETUID_SCRIPTS_ARE_SECURE_NOW: could we use fdscript then?
4313      * (We never have suidscript, can we be sure to have fdscript?)
4314      * Or must then go by UID checks? See comments in forbid_setid also.
4315      */
4316 }
4317
4318 /* This is used very early in the lifetime of the program,
4319  * before even the options are parsed, so PL_tainting has
4320  * not been initialized properly.  */
4321 bool
4322 Perl_doing_taint(int argc, char *argv[], char *envp[])
4323 {
4324 #ifndef PERL_IMPLICIT_SYS
4325     /* If we have PERL_IMPLICIT_SYS we can't call getuid() et alia
4326      * before we have an interpreter-- and the whole point of this
4327      * function is to be called at such an early stage.  If you are on
4328      * a system with PERL_IMPLICIT_SYS but you do have a concept of
4329      * "tainted because running with altered effective ids', you'll
4330      * have to add your own checks somewhere in here.  The two most
4331      * known samples of 'implicitness' are Win32 and NetWare, neither
4332      * of which has much of concept of 'uids'. */
4333     int uid  = PerlProc_getuid();
4334     int euid = PerlProc_geteuid();
4335     int gid  = PerlProc_getgid();
4336     int egid = PerlProc_getegid();
4337     (void)envp;
4338
4339 #ifdef VMS
4340     uid  |=  gid << 16;
4341     euid |= egid << 16;
4342 #endif
4343     if (uid && (euid != uid || egid != gid))
4344         return 1;
4345 #endif /* !PERL_IMPLICIT_SYS */
4346     /* This is a really primitive check; environment gets ignored only
4347      * if -T are the first chars together; otherwise one gets
4348      *  "Too late" message. */
4349     if ( argc > 1 && argv[1][0] == '-'
4350          && (argv[1][1] == 't' || argv[1][1] == 'T') )
4351         return 1;
4352     return 0;
4353 }
4354
4355 STATIC void
4356 S_forbid_setid(pTHX_ const char *s)
4357 {
4358     dVAR;
4359 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
4360     if (PL_euid != PL_uid)
4361         Perl_croak(aTHX_ "No %s allowed while running setuid", s);
4362     if (PL_egid != PL_gid)
4363         Perl_croak(aTHX_ "No %s allowed while running setgid", s);
4364 #endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
4365     /* PSz 29 Feb 04
4366      * Checks for UID/GID above "wrong": why disallow
4367      *   perl -e 'print "Hello\n"'
4368      * from within setuid things?? Simply drop them: replaced by
4369      * fdscript/suidscript and #ifdef IAMSUID checks below.
4370      * 
4371      * This may be too late for command-line switches. Will catch those on
4372      * the #! line, after finding the script name and setting up
4373      * fdscript/suidscript. Note that suidperl does not get around to
4374      * parsing (and checking) the switches on the #! line, but checks that
4375      * the two sets are identical.
4376      * 
4377      * With SETUID_SCRIPTS_ARE_SECURE_NOW, could we use fdscript, also or
4378      * instead, or would that be "too late"? (We never have suidscript, can
4379      * we be sure to have fdscript?)
4380      * 
4381      * Catch things with suidscript (in descendant of suidperl), even with
4382      * right UID/GID. Was already checked in suidperl, with #ifdef IAMSUID,
4383      * below; but I am paranoid.
4384      * 
4385      * Also see comments about root running a setuid script, elsewhere.
4386      */
4387     if (PL_suidscript >= 0)
4388         Perl_croak(aTHX_ "No %s allowed with (suid) fdscript", s);
4389 #ifdef IAMSUID
4390     /* PSz 11 Nov 03  Catch it in suidperl, always! */
4391     Perl_croak(aTHX_ "No %s allowed in suidperl", s);
4392 #endif /* IAMSUID */
4393 }
4394
4395 void
4396 Perl_init_debugger(pTHX)
4397 {
4398     dVAR;
4399     HV * const ostash = PL_curstash;
4400
4401     PL_curstash = PL_debstash;
4402     PL_dbargs = GvAV(gv_AVadd((gv_fetchpv("DB::args", GV_ADDMULTI, SVt_PVAV))));
4403     AvREAL_off(PL_dbargs);
4404     PL_DBgv = gv_fetchpv("DB::DB", GV_ADDMULTI, SVt_PVGV);
4405     PL_DBline = gv_fetchpv("DB::dbline", GV_ADDMULTI, SVt_PVAV);
4406     PL_DBsub = gv_HVadd(gv_fetchpv("DB::sub", GV_ADDMULTI, SVt_PVHV));
4407     PL_DBsingle = GvSV((gv_fetchpv("DB::single", GV_ADDMULTI, SVt_PV)));
4408     sv_setiv(PL_DBsingle, 0);
4409     PL_DBtrace = GvSV((gv_fetchpv("DB::trace", GV_ADDMULTI, SVt_PV)));
4410     sv_setiv(PL_DBtrace, 0);
4411     PL_DBsignal = GvSV((gv_fetchpv("DB::signal", GV_ADDMULTI, SVt_PV)));
4412     sv_setiv(PL_DBsignal, 0);
4413     PL_DBassertion = GvSV((gv_fetchpv("DB::assertion", GV_ADDMULTI, SVt_PV)));
4414     sv_setiv(PL_DBassertion, 0);
4415     PL_curstash = ostash;
4416 }
4417
4418 #ifndef STRESS_REALLOC
4419 #define REASONABLE(size) (size)
4420 #else
4421 #define REASONABLE(size) (1) /* unreasonable */
4422 #endif
4423
4424 void
4425 Perl_init_stacks(pTHX)
4426 {
4427     dVAR;
4428     /* start with 128-item stack and 8K cxstack */
4429     PL_curstackinfo = new_stackinfo(REASONABLE(128),
4430                                  REASONABLE(8192/sizeof(PERL_CONTEXT) - 1));
4431     PL_curstackinfo->si_type = PERLSI_MAIN;
4432     PL_curstack = PL_curstackinfo->si_stack;
4433     PL_mainstack = PL_curstack;         /* remember in case we switch stacks */
4434
4435     PL_stack_base = AvARRAY(PL_curstack);
4436     PL_stack_sp = PL_stack_base;
4437     PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
4438
4439     Newx(PL_tmps_stack,REASONABLE(128),SV*);
4440     PL_tmps_floor = -1;
4441     PL_tmps_ix = -1;
4442     PL_tmps_max = REASONABLE(128);
4443
4444     Newx(PL_markstack,REASONABLE(32),I32);
4445     PL_markstack_ptr = PL_markstack;
4446     PL_markstack_max = PL_markstack + REASONABLE(32);
4447
4448     SET_MARK_OFFSET;
4449
4450     Newx(PL_scopestack,REASONABLE(32),I32);
4451     PL_scopestack_ix = 0;
4452     PL_scopestack_max = REASONABLE(32);
4453
4454     Newx(PL_savestack,REASONABLE(128),ANY);
4455     PL_savestack_ix = 0;
4456     PL_savestack_max = REASONABLE(128);
4457 }
4458
4459 #undef REASONABLE
4460
4461 STATIC void
4462 S_nuke_stacks(pTHX)
4463 {
4464     dVAR;
4465     while (PL_curstackinfo->si_next)
4466         PL_curstackinfo = PL_curstackinfo->si_next;
4467     while (PL_curstackinfo) {
4468         PERL_SI *p = PL_curstackinfo->si_prev;
4469         /* curstackinfo->si_stack got nuked by sv_free_arenas() */
4470         Safefree(PL_curstackinfo->si_cxstack);
4471         Safefree(PL_curstackinfo);
4472         PL_curstackinfo = p;
4473     }
4474     Safefree(PL_tmps_stack);
4475     Safefree(PL_markstack);
4476     Safefree(PL_scopestack);
4477     Safefree(PL_savestack);
4478 }
4479
4480 STATIC void
4481 S_init_lexer(pTHX)
4482 {
4483     dVAR;
4484     PerlIO *tmpfp;
4485     tmpfp = PL_rsfp;
4486     PL_rsfp = Nullfp;
4487     lex_start(PL_linestr);
4488     PL_rsfp = tmpfp;
4489     PL_subname = newSVpvs("main");
4490 }
4491
4492 STATIC void
4493 S_init_predump_symbols(pTHX)
4494 {
4495     dVAR;
4496     GV *tmpgv;
4497     IO *io;
4498
4499     sv_setpvn(get_sv("\"", TRUE), " ", 1);
4500     PL_stdingv = gv_fetchpv("STDIN",TRUE, SVt_PVIO);
4501     GvMULTI_on(PL_stdingv);
4502     io = GvIOp(PL_stdingv);
4503     IoTYPE(io) = IoTYPE_RDONLY;
4504     IoIFP(io) = PerlIO_stdin();
4505     tmpgv = gv_fetchpv("stdin",TRUE, SVt_PV);
4506     GvMULTI_on(tmpgv);
4507     GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
4508
4509     tmpgv = gv_fetchpv("STDOUT",TRUE, SVt_PVIO);
4510     GvMULTI_on(tmpgv);
4511     io = GvIOp(tmpgv);
4512     IoTYPE(io) = IoTYPE_WRONLY;
4513     IoOFP(io) = IoIFP(io) = PerlIO_stdout();
4514     setdefout(tmpgv);
4515     tmpgv = gv_fetchpv("stdout",TRUE, SVt_PV);
4516     GvMULTI_on(tmpgv);
4517     GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
4518
4519     PL_stderrgv = gv_fetchpv("STDERR",TRUE, SVt_PVIO);
4520     GvMULTI_on(PL_stderrgv);
4521     io = GvIOp(PL_stderrgv);
4522     IoTYPE(io) = IoTYPE_WRONLY;
4523     IoOFP(io) = IoIFP(io) = PerlIO_stderr();
4524     tmpgv = gv_fetchpv("stderr",TRUE, SVt_PV);
4525     GvMULTI_on(tmpgv);
4526     GvIOp(tmpgv) = (IO*)SvREFCNT_inc(io);
4527
4528     PL_statname = newSV(0);             /* last filename we did stat on */
4529
4530     Safefree(PL_osname);
4531     PL_osname = savepv(OSNAME);
4532 }
4533
4534 void
4535 Perl_init_argv_symbols(pTHX_ register int argc, register char **argv)
4536 {
4537     dVAR;
4538     argc--,argv++;      /* skip name of script */
4539     if (PL_doswitches) {
4540         for (; argc > 0 && **argv == '-'; argc--,argv++) {
4541             char *s;
4542             if (!argv[0][1])
4543                 break;
4544             if (argv[0][1] == '-' && !argv[0][2]) {
4545                 argc--,argv++;
4546                 break;
4547             }
4548             if ((s = strchr(argv[0], '='))) {
4549                 *s = '\0';
4550                 sv_setpv(GvSV(gv_fetchpv(argv[0] + 1, TRUE, SVt_PV)), s + 1);
4551                 *s = '=';
4552             }
4553             else
4554                 sv_setiv(GvSV(gv_fetchpv(argv[0]+1,TRUE, SVt_PV)),1);
4555         }
4556     }
4557     if ((PL_argvgv = gv_fetchpv("ARGV",TRUE, SVt_PVAV))) {
4558         GvMULTI_on(PL_argvgv);
4559         (void)gv_AVadd(PL_argvgv);
4560         av_clear(GvAVn(PL_argvgv));
4561         for (; argc > 0; argc--,argv++) {
4562             SV * const sv = newSVpv(argv[0],0);
4563             av_push(GvAVn(PL_argvgv),sv);
4564             if (!(PL_unicode & PERL_UNICODE_LOCALE_FLAG) || PL_utf8locale) {
4565                  if (PL_unicode & PERL_UNICODE_ARGV_FLAG)
4566                       SvUTF8_on(sv);
4567             }
4568             if (PL_unicode & PERL_UNICODE_WIDESYSCALLS_FLAG) /* Sarathy? */
4569                  (void)sv_utf8_decode(sv);
4570         }
4571     }
4572 }
4573
4574 STATIC void
4575 S_init_postdump_symbols(pTHX_ register int argc, register char **argv, register char **env)
4576 {
4577     dVAR;
4578     GV* tmpgv;
4579
4580     PL_toptarget = newSV(0);
4581     sv_upgrade(PL_toptarget, SVt_PVFM);
4582     sv_setpvn(PL_toptarget, "", 0);
4583     PL_bodytarget = newSV(0);
4584     sv_upgrade(PL_bodytarget, SVt_PVFM);
4585     sv_setpvn(PL_bodytarget, "", 0);
4586     PL_formtarget = PL_bodytarget;
4587
4588     TAINT;
4589
4590     init_argv_symbols(argc,argv);
4591
4592     if ((tmpgv = gv_fetchpv("0",TRUE, SVt_PV))) {
4593 #ifdef MACOS_TRADITIONAL
4594         /* $0 is not majick on a Mac */
4595         sv_setpv(GvSV(tmpgv),MacPerl_MPWFileName(PL_origfilename));
4596 #else
4597         sv_setpv(GvSV(tmpgv),PL_origfilename);
4598         magicname("0", "0", 1);
4599 #endif
4600     }
4601     if ((PL_envgv = gv_fetchpv("ENV",TRUE, SVt_PVHV))) {
4602         HV *hv;
4603         GvMULTI_on(PL_envgv);
4604         hv = GvHVn(PL_envgv);
4605         hv_magic(hv, Nullgv, PERL_MAGIC_env);
4606 #ifndef PERL_MICRO
4607 #ifdef USE_ENVIRON_ARRAY
4608         /* Note that if the supplied env parameter is actually a copy
4609            of the global environ then it may now point to free'd memory
4610            if the environment has been modified since. To avoid this
4611            problem we treat env==NULL as meaning 'use the default'
4612         */
4613         if (!env)
4614             env = environ;
4615         if (env != environ
4616 #  ifdef USE_ITHREADS
4617             && PL_curinterp == aTHX
4618 #  endif
4619            )
4620         {
4621             environ[0] = Nullch;
4622         }
4623         if (env) {
4624           char** origenv = environ;
4625           char *s;
4626           SV *sv;
4627           for (; *env; env++) {
4628             if (!(s = strchr(*env,'=')) || s == *env)
4629                 continue;
4630 #if defined(MSDOS) && !defined(DJGPP)
4631             *s = '\0';
4632             (void)strupr(*env);
4633             *s = '=';
4634 #endif
4635             sv = newSVpv(s+1, 0);
4636             (void)hv_store(hv, *env, s - *env, sv, 0);
4637             if (env != environ)
4638                 mg_set(sv);
4639             if (origenv != environ) {
4640               /* realloc has shifted us */
4641               env = (env - origenv) + environ;
4642               origenv = environ;
4643             }
4644           }
4645       }
4646 #endif /* USE_ENVIRON_ARRAY */
4647 #endif /* !PERL_MICRO */
4648     }
4649     TAINT_NOT;
4650     if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV))) {
4651         SvREADONLY_off(GvSV(tmpgv));
4652         sv_setiv(GvSV(tmpgv), (IV)PerlProc_getpid());
4653         SvREADONLY_on(GvSV(tmpgv));
4654     }
4655 #ifdef THREADS_HAVE_PIDS
4656     PL_ppid = (IV)getppid();
4657 #endif
4658
4659     /* touch @F array to prevent spurious warnings 20020415 MJD */
4660     if (PL_minus_a) {
4661       (void) get_av("main::F", TRUE | GV_ADDMULTI);
4662     }
4663     /* touch @- and @+ arrays to prevent spurious warnings 20020415 MJD */
4664     (void) get_av("main::-", TRUE | GV_ADDMULTI);
4665     (void) get_av("main::+", TRUE | GV_ADDMULTI);
4666 }
4667
4668 STATIC void
4669 S_init_perllib(pTHX)
4670 {
4671     dVAR;
4672     char *s;
4673     if (!PL_tainting) {
4674 #ifndef VMS
4675         s = PerlEnv_getenv("PERL5LIB");
4676 /*
4677  * It isn't possible to delete an environment variable with
4678  * PERL_USE_SAFE_PUTENV set unless unsetenv() is also available, so in that
4679  * case we treat PERL5LIB as undefined if it has a zero-length value.
4680  */
4681 #if defined(PERL_USE_SAFE_PUTENV) && ! defined(HAS_UNSETENV)
4682         if (s && *s != '\0')
4683 #else
4684         if (s)
4685 #endif
4686             incpush(s, TRUE, TRUE, TRUE, FALSE);
4687         else
4688             incpush(PerlEnv_getenv("PERLLIB"), FALSE, FALSE, TRUE, FALSE);
4689 #else /* VMS */
4690         /* Treat PERL5?LIB as a possible search list logical name -- the
4691          * "natural" VMS idiom for a Unix path string.  We allow each
4692          * element to be a set of |-separated directories for compatibility.
4693          */
4694         char buf[256];
4695         int idx = 0;
4696         if (my_trnlnm("PERL5LIB",buf,0))
4697             do { incpush(buf,TRUE,TRUE,TRUE,FALSE); } while (my_trnlnm("PERL5LIB",buf,++idx));
4698         else
4699             while (my_trnlnm("PERLLIB",buf,idx++)) incpush(buf,FALSE,FALSE,TRUE,FALSE);
4700 #endif /* VMS */
4701     }
4702
4703 /* Use the ~-expanded versions of APPLLIB (undocumented),
4704     ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB
4705 */
4706 #ifdef APPLLIB_EXP
4707     incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
4708 #endif
4709
4710 #ifdef ARCHLIB_EXP
4711     incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
4712 #endif
4713 #ifdef MACOS_TRADITIONAL
4714     {
4715         Stat_t tmpstatbuf;
4716         SV * privdir = newSV(0);
4717         char * macperl = PerlEnv_getenv("MACPERL");
4718         
4719         if (!macperl)
4720             macperl = "";
4721         
4722         Perl_sv_setpvf(aTHX_ privdir, "%slib:", macperl);
4723         if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
4724             incpush(SvPVX(privdir), TRUE, FALSE, TRUE, FALSE);
4725         Perl_sv_setpvf(aTHX_ privdir, "%ssite_perl:", macperl);
4726         if (PerlLIO_stat(SvPVX(privdir), &tmpstatbuf) >= 0 && S_ISDIR(tmpstatbuf.st_mode))
4727             incpush(SvPVX(privdir), TRUE, FALSE, TRUE, FALSE);
4728         
4729         SvREFCNT_dec(privdir);
4730     }
4731     if (!PL_tainting)
4732         incpush(":", FALSE, FALSE, TRUE, FALSE);
4733 #else
4734 #ifndef PRIVLIB_EXP
4735 #  define PRIVLIB_EXP "/usr/local/lib/perl5:/usr/local/lib/perl"
4736 #endif
4737 #if defined(WIN32)
4738     incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE, TRUE);
4739 #else
4740     incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE);
4741 #endif
4742
4743 #ifdef SITEARCH_EXP
4744     /* sitearch is always relative to sitelib on Windows for
4745      * DLL-based path intuition to work correctly */
4746 #  if !defined(WIN32)
4747     incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
4748 #  endif
4749 #endif
4750
4751 #ifdef SITELIB_EXP
4752 #  if defined(WIN32)
4753     /* this picks up sitearch as well */
4754     incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
4755 #  else
4756     incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
4757 #  endif
4758 #endif
4759
4760 #ifdef SITELIB_STEM /* Search for version-specific dirs below here */
4761     incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
4762 #endif
4763
4764 #ifdef PERL_VENDORARCH_EXP
4765     /* vendorarch is always relative to vendorlib on Windows for
4766      * DLL-based path intuition to work correctly */
4767 #  if !defined(WIN32)
4768     incpush(PERL_VENDORARCH_EXP, FALSE, FALSE, TRUE, TRUE);
4769 #  endif
4770 #endif
4771
4772 #ifdef PERL_VENDORLIB_EXP
4773 #  if defined(WIN32)
4774     incpush(PERL_VENDORLIB_EXP, TRUE, FALSE, TRUE, TRUE);       /* this picks up vendorarch as well */
4775 #  else
4776     incpush(PERL_VENDORLIB_EXP, FALSE, FALSE, TRUE, TRUE);
4777 #  endif
4778 #endif
4779
4780 #ifdef PERL_VENDORLIB_STEM /* Search for version-specific dirs below here */
4781     incpush(PERL_VENDORLIB_STEM, FALSE, TRUE, TRUE, TRUE);
4782 #endif
4783
4784 #ifdef PERL_OTHERLIBDIRS
4785     incpush(PERL_OTHERLIBDIRS, TRUE, TRUE, TRUE, TRUE);
4786 #endif
4787
4788     if (!PL_tainting)
4789         incpush(".", FALSE, FALSE, TRUE, FALSE);
4790 #endif /* MACOS_TRADITIONAL */
4791 }
4792
4793 #if defined(DOSISH) || defined(EPOC) || defined(__SYMBIAN32__)
4794 #    define PERLLIB_SEP ';'
4795 #else
4796 #  if defined(VMS)
4797 #    define PERLLIB_SEP '|'
4798 #  else
4799 #    if defined(MACOS_TRADITIONAL)
4800 #      define PERLLIB_SEP ','
4801 #    else
4802 #      define PERLLIB_SEP ':'
4803 #    endif
4804 #  endif
4805 #endif
4806 #ifndef PERLLIB_MANGLE
4807 #  define PERLLIB_MANGLE(s,n) (s)
4808 #endif
4809
4810 /* Push a directory onto @INC if it exists.
4811    Generate a new SV if we do this, to save needing to copy the SV we push
4812    onto @INC  */
4813 STATIC SV *
4814 S_incpush_if_exists(pTHX_ SV *dir)
4815 {
4816     dVAR;
4817     Stat_t tmpstatbuf;
4818     if (PerlLIO_stat(SvPVX_const(dir), &tmpstatbuf) >= 0 &&
4819         S_ISDIR(tmpstatbuf.st_mode)) {
4820         av_push(GvAVn(PL_incgv), dir);
4821         dir = newSV(0);
4822     }
4823     return dir;
4824 }
4825
4826 STATIC void
4827 S_incpush(pTHX_ const char *dir, bool addsubdirs, bool addoldvers, bool usesep,
4828           bool canrelocate)
4829 {
4830     dVAR;
4831     SV *subdir = Nullsv;
4832     const char *p = dir;
4833
4834     if (!p || !*p)
4835         return;
4836
4837     if (addsubdirs || addoldvers) {
4838         subdir = newSV(0);
4839     }
4840
4841     /* Break at all separators */
4842     while (p && *p) {
4843         SV *libdir = newSV(0);
4844         const char *s;
4845
4846         /* skip any consecutive separators */
4847         if (usesep) {
4848             while ( *p == PERLLIB_SEP ) {
4849                 /* Uncomment the next line for PATH semantics */
4850                 /* av_push(GvAVn(PL_incgv), newSVpvs(".")); */
4851                 p++;
4852             }
4853         }
4854
4855         if ( usesep && (s = strchr(p, PERLLIB_SEP)) != Nullch ) {
4856             sv_setpvn(libdir, PERLLIB_MANGLE(p, (STRLEN)(s - p)),
4857                       (STRLEN)(s - p));
4858             p = s + 1;
4859         }
4860         else {
4861             sv_setpv(libdir, PERLLIB_MANGLE(p, 0));
4862             p = Nullch; /* break out */
4863         }
4864 #ifdef MACOS_TRADITIONAL
4865         if (!strchr(SvPVX(libdir), ':')) {
4866             char buf[256];
4867
4868             sv_setpv(libdir, MacPerl_CanonDir(SvPVX(libdir), buf, 0));
4869         }
4870         if (SvPVX(libdir)[SvCUR(libdir)-1] != ':')
4871             sv_catpvs(libdir, ":");
4872 #endif
4873
4874         /* Do the if() outside the #ifdef to avoid warnings about an unused
4875            parameter.  */
4876         if (canrelocate) {
4877 #ifdef PERL_RELOCATABLE_INC
4878         /*
4879          * Relocatable include entries are marked with a leading .../
4880          *
4881          * The algorithm is
4882          * 0: Remove that leading ".../"
4883          * 1: Remove trailing executable name (anything after the last '/')
4884          *    from the perl path to give a perl prefix
4885          * Then
4886          * While the @INC element starts "../" and the prefix ends with a real
4887          * directory (ie not . or ..) chop that real directory off the prefix
4888          * and the leading "../" from the @INC element. ie a logical "../"
4889          * cleanup
4890          * Finally concatenate the prefix and the remainder of the @INC element
4891          * The intent is that /usr/local/bin/perl and .../../lib/perl5
4892          * generates /usr/local/lib/perl5
4893          */
4894             const char *libpath = SvPVX(libdir);
4895             STRLEN libpath_len = SvCUR(libdir);
4896             if (libpath_len >= 4 && memEQ (libpath, ".../", 4)) {
4897                 /* Game on!  */
4898                 SV * const caret_X = get_sv("\030", 0);
4899                 /* Going to use the SV just as a scratch buffer holding a C
4900                    string:  */
4901                 SV *prefix_sv;
4902                 char *prefix;
4903                 char *lastslash;
4904
4905                 /* $^X is *the* source of taint if tainting is on, hence
4906                    SvPOK() won't be true.  */
4907                 assert(caret_X);
4908                 assert(SvPOKp(caret_X));
4909                 prefix_sv = newSVpvn(SvPVX(caret_X), SvCUR(caret_X));
4910                 /* Firstly take off the leading .../
4911                    If all else fail we'll do the paths relative to the current
4912                    directory.  */
4913                 sv_chop(libdir, libpath + 4);
4914                 /* Don't use SvPV as we're intentionally bypassing taining,
4915                    mortal copies that the mg_get of tainting creates, and
4916                    corruption that seems to come via the save stack.
4917                    I guess that the save stack isn't correctly set up yet.  */
4918                 libpath = SvPVX(libdir);
4919                 libpath_len = SvCUR(libdir);
4920
4921                 /* This would work more efficiently with memrchr, but as it's
4922                    only a GNU extension we'd need to probe for it and
4923                    implement our own. Not hard, but maybe not worth it?  */
4924
4925                 prefix = SvPVX(prefix_sv);
4926                 lastslash = strrchr(prefix, '/');
4927
4928                 /* First time in with the *lastslash = '\0' we just wipe off
4929                    the trailing /perl from (say) /usr/foo/bin/perl
4930                 */
4931                 if (lastslash) {
4932                     SV *tempsv;
4933                     while ((*lastslash = '\0'), /* Do that, come what may.  */
4934                            (libpath_len >= 3 && memEQ(libpath, "../", 3)
4935                             && (lastslash = strrchr(prefix, '/')))) {
4936                         if (lastslash[1] == '\0'
4937                             || (lastslash[1] == '.'
4938                                 && (lastslash[2] == '/' /* ends "/."  */
4939                                     || (lastslash[2] == '/'
4940                                         && lastslash[3] == '/' /* or "/.."  */
4941                                         )))) {
4942                             /* Prefix ends "/" or "/." or "/..", any of which
4943                                are fishy, so don't do any more logical cleanup.
4944                             */
4945                             break;
4946                         }
4947                         /* Remove leading "../" from path  */
4948                         libpath += 3;
4949                         libpath_len -= 3;
4950                         /* Next iteration round the loop removes the last
4951                            directory name from prefix by writing a '\0' in
4952                            the while clause.  */
4953                     }
4954                     /* prefix has been terminated with a '\0' to the correct
4955                        length. libpath points somewhere into the libdir SV.
4956                        We need to join the 2 with '/' and drop the result into
4957                        libdir.  */
4958                     tempsv = Perl_newSVpvf(aTHX_ "%s/%s", prefix, libpath);
4959                     SvREFCNT_dec(libdir);
4960                     /* And this is the new libdir.  */
4961                     libdir = tempsv;
4962                     if (PL_tainting &&
4963                         (PL_uid != PL_euid || PL_gid != PL_egid)) {
4964                         /* Need to taint reloccated paths if running set ID  */
4965                         SvTAINTED_on(libdir);
4966                     }
4967                 }
4968                 SvREFCNT_dec(prefix_sv);
4969             }
4970 #endif
4971         }
4972         /*
4973          * BEFORE pushing libdir onto @INC we may first push version- and
4974          * archname-specific sub-directories.
4975          */
4976         if (addsubdirs || addoldvers) {
4977 #ifdef PERL_INC_VERSION_LIST
4978             /* Configure terminates PERL_INC_VERSION_LIST with a NULL */
4979             const char * const incverlist[] = { PERL_INC_VERSION_LIST };
4980             const char * const *incver;
4981 #endif
4982 #ifdef VMS
4983             char *unix;
4984             STRLEN len;
4985
4986             if ((unix = tounixspec_ts(SvPV(libdir,len),Nullch)) != Nullch) {
4987                 len = strlen(unix);
4988                 while (unix[len-1] == '/') len--;  /* Cosmetic */
4989                 sv_usepvn(libdir,unix,len);
4990             }
4991             else
4992                 PerlIO_printf(Perl_error_log,
4993                               "Failed to unixify @INC element \"%s\"\n",
4994                               SvPV(libdir,len));
4995 #endif
4996             if (addsubdirs) {
4997 #ifdef MACOS_TRADITIONAL
4998 #define PERL_AV_SUFFIX_FMT      ""
4999 #define PERL_ARCH_FMT           "%s:"
5000 #define PERL_ARCH_FMT_PATH      PERL_FS_VER_FMT PERL_AV_SUFFIX_FMT
5001 #else
5002 #define PERL_AV_SUFFIX_FMT      "/"
5003 #define PERL_ARCH_FMT           "/%s"
5004 #define PERL_ARCH_FMT_PATH      PERL_AV_SUFFIX_FMT PERL_FS_VER_FMT
5005 #endif
5006                 /* .../version/archname if -d .../version/archname */
5007                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH PERL_ARCH_FMT,
5008                                 libdir,
5009                                (int)PERL_REVISION, (int)PERL_VERSION,
5010                                (int)PERL_SUBVERSION, ARCHNAME);
5011                 subdir = S_incpush_if_exists(aTHX_ subdir);
5012
5013                 /* .../version if -d .../version */
5014                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT_PATH, libdir,
5015                                (int)PERL_REVISION, (int)PERL_VERSION,
5016                                (int)PERL_SUBVERSION);
5017                 subdir = S_incpush_if_exists(aTHX_ subdir);
5018
5019                 /* .../archname if -d .../archname */
5020                 Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, ARCHNAME);
5021                 subdir = S_incpush_if_exists(aTHX_ subdir);
5022
5023             }
5024
5025 #ifdef PERL_INC_VERSION_LIST
5026             if (addoldvers) {
5027                 for (incver = incverlist; *incver; incver++) {
5028                     /* .../xxx if -d .../xxx */
5029                     Perl_sv_setpvf(aTHX_ subdir, "%"SVf PERL_ARCH_FMT, libdir, *incver);
5030                     subdir = S_incpush_if_exists(aTHX_ subdir);
5031                 }
5032             }
5033 #endif
5034         }
5035
5036         /* finally push this lib directory on the end of @INC */
5037         av_push(GvAVn(PL_incgv), libdir);
5038     }
5039     if (subdir) {
5040         assert (SvREFCNT(subdir) == 1);
5041         SvREFCNT_dec(subdir);
5042     }
5043 }
5044
5045 #ifdef USE_5005THREADS
5046 STATIC struct perl_thread *
5047 S_init_main_thread(pTHX)
5048 {
5049 #if !defined(PERL_IMPLICIT_CONTEXT)
5050     struct perl_thread *thr;
5051 #endif
5052     XPV *xpv;
5053
5054     Newxz(thr, 1, struct perl_thread);
5055     PL_curcop = &PL_compiling;
5056     thr->interp = PERL_GET_INTERP;
5057     thr->cvcache = newHV();
5058     thr->threadsv = newAV();
5059     /* thr->threadsvp is set when find_threadsv is called */
5060     thr->specific = newAV();
5061     thr->flags = THRf_R_JOINABLE;
5062     MUTEX_INIT(&thr->mutex);
5063     /* Handcraft thrsv similarly to mess_sv */
5064     Newx(PL_thrsv, 1, SV);
5065     Newxz(xpv, 1, XPV);
5066     SvFLAGS(PL_thrsv) = SVt_PV;
5067     SvANY(PL_thrsv) = (void*)xpv;
5068     SvREFCNT(PL_thrsv) = 1 << 30;       /* practically infinite */
5069     SvPV_set(PL_thrsvr, (char*)thr);
5070     SvCUR_set(PL_thrsv, sizeof(thr));
5071     SvLEN_set(PL_thrsv, sizeof(thr));
5072     *SvEND(PL_thrsv) = '\0';    /* in the trailing_nul field */
5073     thr->oursv = PL_thrsv;
5074     PL_chopset = " \n-";
5075     PL_dumpindent = 4;
5076
5077     MUTEX_LOCK(&PL_threads_mutex);
5078     PL_nthreads++;
5079     thr->tid = 0;
5080     thr->next = thr;
5081     thr->prev = thr;
5082     thr->thr_done = 0;
5083     MUTEX_UNLOCK(&PL_threads_mutex);
5084
5085 #ifdef HAVE_THREAD_INTERN
5086     Perl_init_thread_intern(thr);
5087 #endif
5088
5089 #ifdef SET_THREAD_SELF
5090     SET_THREAD_SELF(thr);
5091 #else
5092     thr->self = pthread_self();
5093 #endif /* SET_THREAD_SELF */
5094     PERL_SET_THX(thr);
5095
5096     /*
5097      * These must come after the thread self setting
5098      * because sv_setpvn does SvTAINT and the taint
5099      * fields thread selfness being set.
5100      */
5101     PL_toptarget = newSV(0);
5102     sv_upgrade(PL_toptarget, SVt_PVFM);
5103     sv_setpvn(PL_toptarget, "", 0);
5104     PL_bodytarget = newSV(0);
5105     sv_upgrade(PL_bodytarget, SVt_PVFM);
5106     sv_setpvn(PL_bodytarget, "", 0);
5107     PL_formtarget = PL_bodytarget;
5108     thr->errsv = newSVpvs("");
5109     (void) find_threadsv("@");  /* Ensure $@ is initialised early */
5110
5111     PL_maxscream = -1;
5112     PL_peepp = MEMBER_TO_FPTR(Perl_peep);
5113     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
5114     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
5115     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
5116     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
5117     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
5118     PL_regindent = 0;
5119     PL_reginterp_cnt = 0;
5120
5121     return thr;
5122 }
5123 #endif /* USE_5005THREADS */
5124
5125 void
5126 Perl_call_list(pTHX_ I32 oldscope, AV *paramList)
5127 {
5128     dVAR;
5129     SV *atsv;
5130     const line_t oldline = CopLINE(PL_curcop);
5131     CV *cv;
5132     STRLEN len;
5133     int ret;
5134     dJMPENV;
5135
5136     while (av_len(paramList) >= 0) {
5137         cv = (CV*)av_shift(paramList);
5138         if (PL_savebegin) {
5139             if (paramList == PL_beginav) {
5140                 /* save PL_beginav for compiler */
5141                 if (! PL_beginav_save)
5142                     PL_beginav_save = newAV();
5143                 av_push(PL_beginav_save, (SV*)cv);
5144             }
5145             else if (paramList == PL_checkav) {
5146                 /* save PL_checkav for compiler */
5147                 if (! PL_checkav_save)
5148                     PL_checkav_save = newAV();
5149                 av_push(PL_checkav_save, (SV*)cv);
5150             }
5151         } else {
5152             SAVEFREESV(cv);
5153         }
5154         JMPENV_PUSH(ret);
5155         switch (ret) {
5156         case 0:
5157             call_list_body(cv);
5158             atsv = ERRSV;
5159             (void)SvPV_const(atsv, len);
5160             if (len) {
5161                 PL_curcop = &PL_compiling;
5162                 CopLINE_set(PL_curcop, oldline);
5163                 if (paramList == PL_beginav)
5164                     sv_catpvs(atsv, "BEGIN failed--compilation aborted");
5165                 else
5166                     Perl_sv_catpvf(aTHX_ atsv,
5167                                    "%s failed--call queue aborted",
5168                                    paramList == PL_checkav ? "CHECK"
5169                                    : paramList == PL_initav ? "INIT"
5170                                    : "END");
5171                 while (PL_scopestack_ix > oldscope)
5172                     LEAVE;
5173                 JMPENV_POP;
5174                 Perl_croak(aTHX_ "%"SVf"", atsv);
5175             }
5176             break;
5177         case 1:
5178             STATUS_ALL_FAILURE;
5179             /* FALL THROUGH */
5180         case 2:
5181             /* my_exit() was called */
5182             while (PL_scopestack_ix > oldscope)
5183                 LEAVE;
5184             FREETMPS;
5185             PL_curstash = PL_defstash;
5186             PL_curcop = &PL_compiling;
5187             CopLINE_set(PL_curcop, oldline);
5188             JMPENV_POP;
5189             if (PL_statusvalue && !(PL_exit_flags & PERL_EXIT_EXPECTED)) {
5190                 if (paramList == PL_beginav)
5191                     Perl_croak(aTHX_ "BEGIN failed--compilation aborted");
5192                 else
5193                     Perl_croak(aTHX_ "%s failed--call queue aborted",
5194                                paramList == PL_checkav ? "CHECK"
5195                                : paramList == PL_initav ? "INIT"
5196                                : "END");
5197             }
5198             my_exit_jump();
5199             /* NOTREACHED */
5200         case 3:
5201             if (PL_restartop) {
5202                 PL_curcop = &PL_compiling;
5203                 CopLINE_set(PL_curcop, oldline);
5204                 JMPENV_JUMP(3);
5205             }
5206             PerlIO_printf(Perl_error_log, "panic: restartop\n");
5207             FREETMPS;
5208             break;
5209         }
5210         JMPENV_POP;
5211     }
5212 }
5213
5214 STATIC void *
5215 S_call_list_body(pTHX_ CV *cv)
5216 {
5217     dVAR;
5218     PUSHMARK(PL_stack_sp);
5219     call_sv((SV*)cv, G_EVAL|G_DISCARD);
5220     return NULL;
5221 }
5222
5223 void
5224 Perl_my_exit(pTHX_ U32 status)
5225 {
5226     dVAR;
5227     DEBUG_S(PerlIO_printf(Perl_debug_log, "my_exit: thread %p, status %lu\n",
5228                           thr, (unsigned long) status));
5229     switch (status) {
5230     case 0:
5231         STATUS_ALL_SUCCESS;
5232         break;
5233     case 1:
5234         STATUS_ALL_FAILURE;
5235         break;
5236     default:
5237         STATUS_EXIT_SET(status);
5238         break;
5239     }
5240     my_exit_jump();
5241 }
5242
5243 void
5244 Perl_my_failure_exit(pTHX)
5245 {
5246     dVAR;
5247 #ifdef VMS
5248      /* We have been called to fall on our sword.  The desired exit code
5249       * should be already set in STATUS_UNIX, but could be shifted over
5250       * by 8 bits.  STATUS_UNIX_EXIT_SET will handle the cases where a
5251       * that code is set.
5252       *
5253       * If an error code has not been set, then force the issue.
5254       */
5255     if (MY_POSIX_EXIT) {
5256
5257         /* In POSIX_EXIT mode follow Perl documentations and use 255 for
5258          * the exit code when there isn't an error.
5259          */
5260
5261         if (STATUS_UNIX == 0)
5262             STATUS_UNIX_EXIT_SET(255);
5263         else {
5264             STATUS_UNIX_EXIT_SET(STATUS_UNIX);
5265
5266             /* The exit code could have been set by $? or vmsish which
5267              * means that it may not be fatal.  So convert
5268              * success/warning codes to fatal.
5269              */
5270             if ((STATUS_NATIVE & (STS$K_SEVERE|STS$K_ERROR)) == 0)
5271                 STATUS_UNIX_EXIT_SET(255);
5272         }
5273     }
5274     else {
5275         /* Traditionally Perl on VMS always expects a Fatal Error. */
5276         if (vaxc$errno & 1) {
5277
5278             /* So force success status to failure */
5279             if (STATUS_NATIVE & 1)
5280                 STATUS_ALL_FAILURE;
5281         }
5282         else {
5283             if (!vaxc$errno) {
5284                 STATUS_UNIX = EINTR; /* In case something cares */
5285                 STATUS_ALL_FAILURE;
5286             }
5287             else {
5288                 int severity;
5289                 STATUS_NATIVE = vaxc$errno; /* Should already be this */
5290
5291                 /* Encode the severity code */
5292                 severity = STATUS_NATIVE & STS$M_SEVERITY;
5293                 STATUS_UNIX = (severity ? severity : 1) << 8;
5294
5295                 /* Perl expects this to be a fatal error */
5296                 if (severity != STS$K_SEVERE)
5297                     STATUS_ALL_FAILURE;
5298             }
5299         }
5300     }
5301
5302 #else
5303     int exitstatus;
5304     if (errno & 255)
5305         STATUS_UNIX_SET(errno);
5306     else {
5307         exitstatus = STATUS_UNIX >> 8;
5308         if (exitstatus & 255)
5309             STATUS_UNIX_SET(exitstatus);
5310         else
5311             STATUS_UNIX_SET(255);
5312     }
5313 #endif
5314     my_exit_jump();
5315 }
5316
5317 STATIC void
5318 S_my_exit_jump(pTHX)
5319 {
5320     dVAR;
5321     register PERL_CONTEXT *cx;
5322     I32 gimme;
5323     SV **newsp;
5324
5325     if (PL_e_script) {
5326         SvREFCNT_dec(PL_e_script);
5327         PL_e_script = Nullsv;
5328     }
5329
5330     POPSTACK_TO(PL_mainstack);
5331     if (cxstack_ix >= 0) {
5332         if (cxstack_ix > 0)
5333             dounwind(0);
5334         POPBLOCK(cx,PL_curpm);
5335         LEAVE;
5336     }
5337
5338     JMPENV_JUMP(2);
5339     PERL_UNUSED_VAR(gimme);
5340     PERL_UNUSED_VAR(newsp);
5341 }
5342
5343 static I32
5344 read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen)
5345 {
5346     dVAR;
5347     const char * const p  = SvPVX_const(PL_e_script);
5348     const char *nl = strchr(p, '\n');
5349
5350     PERL_UNUSED_ARG(idx);
5351     PERL_UNUSED_ARG(maxlen);
5352
5353     nl = (nl) ? nl+1 : SvEND(PL_e_script);
5354     if (nl-p == 0) {
5355         filter_del(read_e_script);
5356         return 0;
5357     }
5358     sv_catpvn(buf_sv, p, nl-p);
5359     sv_chop(PL_e_script, nl);
5360     return 1;
5361 }
5362
5363 /*
5364  * Local variables:
5365  * c-indentation-style: bsd
5366  * c-basic-offset: 4
5367  * indent-tabs-mode: t
5368  * End:
5369  *
5370  * ex: set ts=8 sts=4 sw=4 noet:
5371  */