4 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
5 * 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
6 * by Larry Wall and others
8 * You may distribute under the terms of either the GNU General Public
9 * License or the Artistic License, as specified in the README file.
14 * A ship then new they built for him
15 * of mithril and of elven-glass
16 * --from Bilbo's song of EƤrendil
18 * [p.236 of _The Lord of the Rings_, II/i: "Many Meetings"]
21 /* This file contains the top-level functions that are used to create, use
22 * and destroy a perl interpreter, plus the functions used by XS code to
23 * call back into perl. Note that it does not contain the actual main()
24 * function of the interpreter; that can be found in perlmain.c
27 #if defined(PERL_IS_MINIPERL) && !defined(USE_SITECUSTOMIZE)
28 # define USE_SITECUSTOMIZE
32 #define PERL_IN_PERL_C
34 #include "patchlevel.h" /* for local_patches */
41 #ifdef USE_KERN_PROC_PATHNAME
42 # include <sys/sysctl.h>
45 #ifdef USE_NSGETEXECUTABLEPATH
46 # include <mach-o/dyld.h>
49 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
56 char control[CMSG_SPACE(sizeof(int))];
69 #if !defined(STANDARD_C) && !defined(HAS_GETENV_PROTOTYPE) && !defined(PERL_MICRO)
70 char *getenv (char *); /* Usually in <stdlib.h> */
73 static I32 read_e_script(pTHX_ int idx, SV *buf_sv, int maxlen);
75 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
76 # define validate_suid(rsfp) NOOP
78 # define validate_suid(rsfp) S_validate_suid(aTHX_ rsfp)
81 #define CALL_BODY_SUB(myop) \
82 if (PL_op == (myop)) \
83 PL_op = PL_ppaddr[OP_ENTERSUB](aTHX); \
87 #define CALL_LIST_BODY(cv) \
88 PUSHMARK(PL_stack_sp); \
89 call_sv(MUTABLE_SV((cv)), G_EVAL|G_DISCARD|G_VOID);
92 S_init_tls_and_interp(PerlInterpreter *my_perl)
96 PERL_SET_INTERP(my_perl);
97 #if defined(USE_ITHREADS)
100 PERL_SET_THX(my_perl);
104 MUTEX_INIT(&PL_dollarzero_mutex);
105 MUTEX_INIT(&PL_my_ctx_mutex);
108 #if defined(USE_ITHREADS)
111 /* This always happens for non-ithreads */
114 PERL_SET_THX(my_perl);
119 /* these implement the PERL_SYS_INIT, PERL_SYS_INIT3, PERL_SYS_TERM macros */
122 Perl_sys_init(int* argc, char*** argv)
126 PERL_ARGS_ASSERT_SYS_INIT;
128 PERL_UNUSED_ARG(argc); /* may not be used depending on _BODY macro */
129 PERL_UNUSED_ARG(argv);
130 PERL_SYS_INIT_BODY(argc, argv);
134 Perl_sys_init3(int* argc, char*** argv, char*** env)
138 PERL_ARGS_ASSERT_SYS_INIT3;
140 PERL_UNUSED_ARG(argc); /* may not be used depending on _BODY macro */
141 PERL_UNUSED_ARG(argv);
142 PERL_UNUSED_ARG(env);
143 PERL_SYS_INIT3_BODY(argc, argv, env);
150 if (!PL_veto_cleanup) {
151 PERL_SYS_TERM_BODY();
156 #ifdef PERL_IMPLICIT_SYS
158 perl_alloc_using(struct IPerlMem* ipM, struct IPerlMem* ipMS,
159 struct IPerlMem* ipMP, struct IPerlEnv* ipE,
160 struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
161 struct IPerlDir* ipD, struct IPerlSock* ipS,
162 struct IPerlProc* ipP)
164 PerlInterpreter *my_perl;
166 PERL_ARGS_ASSERT_PERL_ALLOC_USING;
168 /* Newx() needs interpreter, so call malloc() instead */
169 my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
170 S_init_tls_and_interp(my_perl);
171 Zero(my_perl, 1, PerlInterpreter);
181 INIT_TRACK_MEMPOOL(PL_memory_debug_header, my_perl);
188 =head1 Embedding Functions
190 =for apidoc perl_alloc
192 Allocates a new Perl interpreter. See L<perlembed>.
200 PerlInterpreter *my_perl;
202 /* Newx() needs interpreter, so call malloc() instead */
203 my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
205 S_init_tls_and_interp(my_perl);
206 #ifndef PERL_TRACK_MEMPOOL
207 return (PerlInterpreter *) ZeroD(my_perl, 1, PerlInterpreter);
209 Zero(my_perl, 1, PerlInterpreter);
210 INIT_TRACK_MEMPOOL(PL_memory_debug_header, my_perl);
214 #endif /* PERL_IMPLICIT_SYS */
217 =for apidoc perl_construct
219 Initializes a new Perl interpreter. See L<perlembed>.
225 perl_construct(pTHXx)
229 PERL_ARGS_ASSERT_PERL_CONSTRUCT;
233 PL_perl_destruct_level = 1;
235 PERL_UNUSED_ARG(my_perl);
236 if (PL_perl_destruct_level > 0)
239 PL_curcop = &PL_compiling; /* needed by ckWARN, right away */
243 SvREADONLY_on(&PL_sv_placeholder);
244 SvREFCNT(&PL_sv_placeholder) = SvREFCNT_IMMORTAL;
246 PL_sighandlerp = (Sighandler_t) Perl_sighandler;
247 #ifdef PERL_USES_PL_PIDSTATUS
248 PL_pidstatus = newHV();
251 PL_rs = newSVpvs("\n");
261 SET_NUMERIC_STANDARD();
263 #if defined(LOCAL_PATCH_COUNT)
264 PL_localpatches = local_patches; /* For possible -v */
267 #ifdef HAVE_INTERP_INTERN
271 PerlIO_init(aTHX); /* Hook to IO system */
273 PL_fdpid = newAV(); /* for remembering popen pids by fd */
274 PL_modglobal = newHV(); /* pointers to per-interpreter module globals */
275 PL_errors = newSVpvs("");
276 sv_setpvs(PERL_DEBUG_PAD(0), ""); /* For regex debugging. */
277 sv_setpvs(PERL_DEBUG_PAD(1), ""); /* ext/re needs these */
278 sv_setpvs(PERL_DEBUG_PAD(2), ""); /* even without DEBUGGING. */
280 /* First entry is a list of empty elements. It needs to be initialised
281 else all hell breaks loose in S_find_uninit_var(). */
282 Perl_av_create_and_push(aTHX_ &PL_regex_padav, newSVpvs(""));
283 PL_regex_pad = AvARRAY(PL_regex_padav);
284 Newxz(PL_stashpad, PL_stashpadmax, HV *);
286 #ifdef USE_REENTRANT_API
287 Perl_reentrant_init(aTHX);
289 #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT)
290 /* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
291 * This MUST be done before any hash stores or fetches take place.
292 * If you set PL_hash_seed (and presumably also PL_hash_seed_set)
293 * yourself, it is your responsibility to provide a good random seed!
294 * You can also define PERL_HASH_SEED in compile time, see hv.h.
296 * XXX: fix this comment */
297 if (PL_hash_seed_set == FALSE) {
298 Perl_get_hash_seed(aTHX_ PL_hash_seed);
299 PL_hash_seed_set= TRUE;
301 #endif /* #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT) */
303 /* Note that strtab is a rather special HV. Assumptions are made
304 about not iterating on it, and not adding tie magic to it.
305 It is properly deallocated in perl_destruct() */
308 HvSHAREKEYS_off(PL_strtab); /* mandatory */
309 hv_ksplit(PL_strtab, 512);
311 #if defined(__DYNAMIC__) && (defined(NeXT) || defined(__NeXT__))
312 _dyld_lookup_and_bind
313 ("__environ", (unsigned long *) &environ_pointer, NULL);
317 # ifdef USE_ENVIRON_ARRAY
318 PL_origenviron = environ;
322 /* Use sysconf(_SC_CLK_TCK) if available, if not
323 * available or if the sysconf() fails, use the HZ.
324 * The HZ if not originally defined has been by now
325 * been defined as CLK_TCK, if available. */
326 #if defined(HAS_SYSCONF) && defined(_SC_CLK_TCK)
327 PL_clocktick = sysconf(_SC_CLK_TCK);
328 if (PL_clocktick <= 0)
332 PL_stashcache = newHV();
334 PL_patchlevel = newSVpvs("v" PERL_VERSION_STRING);
335 PL_apiversion = newSVpvs("v" PERL_API_VERSION_STRING);
338 if (!PL_mmap_page_size) {
339 #if defined(HAS_SYSCONF) && (defined(_SC_PAGESIZE) || defined(_SC_MMAP_PAGE_SIZE))
341 SETERRNO(0, SS_NORMAL);
343 PL_mmap_page_size = sysconf(_SC_PAGESIZE);
345 PL_mmap_page_size = sysconf(_SC_MMAP_PAGE_SIZE);
347 if ((long) PL_mmap_page_size < 0) {
349 SV * const error = ERRSV;
350 SvUPGRADE(error, SVt_PV);
351 Perl_croak(aTHX_ "panic: sysconf: %s", SvPV_nolen_const(error));
354 Perl_croak(aTHX_ "panic: sysconf: pagesize unknown");
358 # ifdef HAS_GETPAGESIZE
359 PL_mmap_page_size = getpagesize();
361 # if defined(I_SYS_PARAM) && defined(PAGESIZE)
362 PL_mmap_page_size = PAGESIZE; /* compiletime, bad */
366 if (PL_mmap_page_size <= 0)
367 Perl_croak(aTHX_ "panic: bad pagesize %" IVdf,
368 (IV) PL_mmap_page_size);
370 #endif /* HAS_MMAP */
372 #if defined(HAS_TIMES) && defined(PERL_NEED_TIMESBASE)
373 PL_timesbase.tms_utime = 0;
374 PL_timesbase.tms_stime = 0;
375 PL_timesbase.tms_cutime = 0;
376 PL_timesbase.tms_cstime = 0;
379 PL_osname = Perl_savepvn(aTHX_ STR_WITH_LEN(OSNAME));
381 PL_registered_mros = newHV();
382 /* Start with 1 bucket, for DFS. It's unlikely we'll need more. */
383 HvMAX(PL_registered_mros) = 0;
389 =for apidoc nothreadhook
391 Stub that provides thread hook for perl_destruct when there are
398 Perl_nothreadhook(pTHX)
404 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
406 Perl_dump_sv_child(pTHX_ SV *sv)
409 const int sock = PL_dumper_fd;
410 const int debug_fd = PerlIO_fileno(Perl_debug_log);
411 union control_un control;
414 struct cmsghdr *cmptr;
416 unsigned char buffer[256];
418 PERL_ARGS_ASSERT_DUMP_SV_CHILD;
420 if(sock == -1 || debug_fd == -1)
423 PerlIO_flush(Perl_debug_log);
425 /* All these shenanigans are to pass a file descriptor over to our child for
426 it to dump out to. We can't let it hold open the file descriptor when it
427 forks, as the file descriptor it will dump to can turn out to be one end
428 of pipe that some other process will wait on for EOF. (So as it would
429 be open, the wait would be forever.) */
431 msg.msg_control = control.control;
432 msg.msg_controllen = sizeof(control.control);
433 /* We're a connected socket so we don't need a destination */
439 cmptr = CMSG_FIRSTHDR(&msg);
440 cmptr->cmsg_len = CMSG_LEN(sizeof(int));
441 cmptr->cmsg_level = SOL_SOCKET;
442 cmptr->cmsg_type = SCM_RIGHTS;
443 *((int *)CMSG_DATA(cmptr)) = 1;
445 vec[0].iov_base = (void*)&sv;
446 vec[0].iov_len = sizeof(sv);
447 got = sendmsg(sock, &msg, 0);
450 perror("Debug leaking scalars parent sendmsg failed");
453 if(got < sizeof(sv)) {
454 perror("Debug leaking scalars parent short sendmsg");
458 /* Return protocol is
460 unsigned char: length of location string (0 for empty)
461 unsigned char*: string (not terminated)
463 vec[0].iov_base = (void*)&returned_errno;
464 vec[0].iov_len = sizeof(returned_errno);
465 vec[1].iov_base = buffer;
468 got = readv(sock, vec, 2);
471 perror("Debug leaking scalars parent read failed");
472 PerlIO_flush(PerlIO_stderr());
475 if(got < sizeof(returned_errno) + 1) {
476 perror("Debug leaking scalars parent short read");
477 PerlIO_flush(PerlIO_stderr());
482 got = read(sock, buffer + 1, *buffer);
484 perror("Debug leaking scalars parent read 2 failed");
485 PerlIO_flush(PerlIO_stderr());
490 perror("Debug leaking scalars parent short read 2");
491 PerlIO_flush(PerlIO_stderr());
496 if (returned_errno || *buffer) {
497 Perl_warn(aTHX_ "Debug leaking scalars child failed%s%.*s with errno"
498 " %d: %s", (*buffer ? " at " : ""), (int) *buffer, buffer + 1,
499 returned_errno, strerror(returned_errno));
505 =for apidoc perl_destruct
507 Shuts down a Perl interpreter. See L<perlembed>.
516 VOL signed char destruct_level; /* see possible values in intrpvar.h */
518 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
523 PERL_ARGS_ASSERT_PERL_DESTRUCT;
525 PERL_UNUSED_ARG(my_perl);
528 assert(PL_scopestack_ix == 1);
530 /* wait for all pseudo-forked children to finish */
531 PERL_WAIT_FOR_CHILDREN;
533 destruct_level = PL_perl_destruct_level;
534 #if defined(DEBUGGING) || defined(PERL_TRACK_MEMPOOL)
536 const char * const s = PerlEnv_getenv("PERL_DESTRUCT_LEVEL");
538 const int i = atoi(s);
540 if (destruct_level < i) destruct_level = i;
542 #ifdef PERL_TRACK_MEMPOOL
543 /* RT #114496, for perl_free */
544 PL_perl_destruct_level = i;
550 if (PL_exit_flags & PERL_EXIT_DESTRUCT_END) {
556 if (PL_endav && !PL_minus_c) {
557 PERL_SET_PHASE(PERL_PHASE_END);
558 call_list(PL_scopestack_ix, PL_endav);
564 assert(PL_scopestack_ix == 0);
566 /* Need to flush since END blocks can produce output */
569 if (PL_threadhook(aTHX)) {
570 /* Threads hook has vetoed further cleanup */
571 PL_veto_cleanup = TRUE;
575 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
576 if (destruct_level != 0) {
577 /* Fork here to create a child. Our child's job is to preserve the
578 state of scalars prior to destruction, so that we can instruct it
579 to dump any scalars that we later find have leaked.
580 There's no subtlety in this code - it assumes POSIX, and it doesn't
584 if(socketpair(AF_UNIX, SOCK_STREAM, 0, fd)) {
585 perror("Debug leaking scalars socketpair failed");
591 perror("Debug leaking scalars fork failed");
595 /* We are the child */
596 const int sock = fd[1];
597 const int debug_fd = PerlIO_fileno(Perl_debug_log);
600 /* Our success message is an integer 0, and a char 0 */
601 static const char success[sizeof(int) + 1] = {0};
605 /* We need to close all other file descriptors otherwise we end up
606 with interesting hangs, where the parent closes its end of a
607 pipe, and sits waiting for (another) child to terminate. Only
608 that child never terminates, because it never gets EOF, because
609 we also have the far end of the pipe open. We even need to
610 close the debugging fd, because sometimes it happens to be one
611 end of a pipe, and a process is waiting on the other end for
612 EOF. Normally it would be closed at some point earlier in
613 destruction, but if we happen to cause the pipe to remain open,
614 EOF never occurs, and we get an infinite hang. Hence all the
615 games to pass in a file descriptor if it's actually needed. */
617 f = sysconf(_SC_OPEN_MAX);
619 where = "sysconf failed";
630 union control_un control;
633 struct cmsghdr *cmptr;
637 msg.msg_control = control.control;
638 msg.msg_controllen = sizeof(control.control);
639 /* We're a connected socket so we don't need a source */
643 msg.msg_iovlen = sizeof(vec)/sizeof(vec[0]);
645 vec[0].iov_base = (void*)⌖
646 vec[0].iov_len = sizeof(target);
648 got = recvmsg(sock, &msg, 0);
653 where = "recv failed";
656 if(got < sizeof(target)) {
657 where = "short recv";
661 if(!(cmptr = CMSG_FIRSTHDR(&msg))) {
665 if(cmptr->cmsg_len != CMSG_LEN(sizeof(int))) {
666 where = "wrong cmsg_len";
669 if(cmptr->cmsg_level != SOL_SOCKET) {
670 where = "wrong cmsg_level";
673 if(cmptr->cmsg_type != SCM_RIGHTS) {
674 where = "wrong cmsg_type";
678 got_fd = *(int*)CMSG_DATA(cmptr);
679 /* For our last little bit of trickery, put the file descriptor
680 back into Perl_debug_log, as if we never actually closed it
682 if(got_fd != debug_fd) {
683 if (dup2(got_fd, debug_fd) == -1) {
690 PerlIO_flush(Perl_debug_log);
692 got = write(sock, &success, sizeof(success));
695 where = "write failed";
698 if(got < sizeof(success)) {
699 where = "short write";
706 int send_errno = errno;
707 unsigned char length = (unsigned char) strlen(where);
708 struct iovec failure[3] = {
709 {(void*)&send_errno, sizeof(send_errno)},
711 {(void*)where, length}
713 int got = writev(sock, failure, 3);
714 /* Bad news travels fast. Faster than data. We'll get a SIGPIPE
715 in the parent if we try to read from the socketpair after the
716 child has exited, even if there was data to read.
717 So sleep a bit to give the parent a fighting chance of
720 _exit((got == -1) ? errno : 0);
724 PL_dumper_fd = fd[0];
729 /* We must account for everything. */
731 /* Destroy the main CV and syntax tree */
732 /* Set PL_curcop now, because destroying ops can cause new SVs
733 to be generated in Perl_pad_swipe, and when running with
734 -DDEBUG_LEAKING_SCALARS they expect PL_curcop to point to a valid
735 op from which the filename structure member is copied. */
736 PL_curcop = &PL_compiling;
738 /* ensure comppad/curpad to refer to main's pad */
739 if (CvPADLIST(PL_main_cv)) {
740 PAD_SET_CUR_NOSAVE(CvPADLIST(PL_main_cv), 1);
742 op_free(PL_main_root);
745 PL_main_start = NULL;
746 /* note that PL_main_cv isn't usually actually freed at this point,
747 * due to the CvOUTSIDE refs from subs compiled within it. It will
748 * get freed once all the subs are freed in sv_clean_all(), for
749 * destruct_level > 0 */
750 SvREFCNT_dec(PL_main_cv);
752 PERL_SET_PHASE(PERL_PHASE_DESTRUCT);
754 /* Tell PerlIO we are about to tear things apart in case
755 we have layers which are using resources that should
759 PerlIO_destruct(aTHX);
762 * Try to destruct global references. We do this first so that the
763 * destructors and destructees still exist. Some sv's might remain.
764 * Non-referenced objects are on their own.
768 /* unhook hooks which will soon be, or use, destroyed data */
769 SvREFCNT_dec(PL_warnhook);
771 SvREFCNT_dec(PL_diehook);
774 /* call exit list functions */
775 while (PL_exitlistlen-- > 0)
776 PL_exitlist[PL_exitlistlen].fn(aTHX_ PL_exitlist[PL_exitlistlen].ptr);
778 Safefree(PL_exitlist);
783 SvREFCNT_dec(PL_registered_mros);
785 /* jettison our possibly duplicated environment */
786 /* if PERL_USE_SAFE_PUTENV is defined environ will not have been copied
787 * so we certainly shouldn't free it here
790 #if defined(USE_ENVIRON_ARRAY) && !defined(PERL_USE_SAFE_PUTENV)
791 if (environ != PL_origenviron && !PL_use_safe_putenv
793 /* only main thread can free environ[0] contents */
794 && PL_curinterp == aTHX
800 for (i = 0; environ[i]; i++)
801 safesysfree(environ[i]);
803 /* Must use safesysfree() when working with environ. */
804 safesysfree(environ);
806 environ = PL_origenviron;
809 #endif /* !PERL_MICRO */
811 if (destruct_level == 0) {
813 DEBUG_P(debprofdump());
815 #if defined(PERLIO_LAYERS)
816 /* No more IO - including error messages ! */
817 PerlIO_cleanup(aTHX);
820 CopFILE_free(&PL_compiling);
822 /* The exit() function will do everything that needs doing. */
827 /* the syntax tree is shared between clones
828 * so op_free(PL_main_root) only ReREFCNT_dec's
829 * REGEXPs in the parent interpreter
830 * we need to manually ReREFCNT_dec for the clones
833 I32 i = AvFILLp(PL_regex_padav);
834 SV **ary = AvARRAY(PL_regex_padav);
837 SvREFCNT_dec(ary[i]);
838 ary[i] = &PL_sv_undef;
844 SvREFCNT_dec(MUTABLE_SV(PL_stashcache));
845 PL_stashcache = NULL;
847 /* loosen bonds of global variables */
849 /* XXX can PL_parser still be non-null here? */
850 if(PL_parser && PL_parser->rsfp) {
851 (void)PerlIO_close(PL_parser->rsfp);
852 PL_parser->rsfp = NULL;
856 Safefree(PL_splitstr);
866 PL_doswitches = FALSE;
867 PL_dowarn = G_WARN_OFF;
868 #ifdef PERL_SAWAMPERSAND
869 PL_sawampersand = 0; /* must save all match strings */
873 Safefree(PL_inplace);
875 SvREFCNT_dec(PL_patchlevel);
876 SvREFCNT_dec(PL_apiversion);
879 SvREFCNT_dec(PL_e_script);
885 /* magical thingies */
887 SvREFCNT_dec(PL_ofsgv); /* *, */
890 SvREFCNT_dec(PL_ors_sv); /* $\ */
893 SvREFCNT_dec(PL_rs); /* $/ */
896 Safefree(PL_osname); /* $^O */
899 SvREFCNT_dec(PL_statname);
903 /* defgv, aka *_ should be taken care of elsewhere */
906 Safefree(PL_efloatbuf);
910 /* startup and shutdown function lists */
911 SvREFCNT_dec(PL_beginav);
912 SvREFCNT_dec(PL_beginav_save);
913 SvREFCNT_dec(PL_endav);
914 SvREFCNT_dec(PL_checkav);
915 SvREFCNT_dec(PL_checkav_save);
916 SvREFCNT_dec(PL_unitcheckav);
917 SvREFCNT_dec(PL_unitcheckav_save);
918 SvREFCNT_dec(PL_initav);
920 PL_beginav_save = NULL;
923 PL_checkav_save = NULL;
924 PL_unitcheckav = NULL;
925 PL_unitcheckav_save = NULL;
928 /* shortcuts just get cleared */
937 PL_last_in_gv = NULL;
949 SvREFCNT_dec(PL_argvout_stack);
950 PL_argvout_stack = NULL;
952 SvREFCNT_dec(PL_modglobal);
954 SvREFCNT_dec(PL_preambleav);
955 PL_preambleav = NULL;
956 SvREFCNT_dec(PL_subname);
958 #ifdef PERL_USES_PL_PIDSTATUS
959 SvREFCNT_dec(PL_pidstatus);
962 SvREFCNT_dec(PL_toptarget);
964 SvREFCNT_dec(PL_bodytarget);
965 PL_bodytarget = NULL;
966 PL_formtarget = NULL;
968 /* free locale stuff */
969 #ifdef USE_LOCALE_COLLATE
970 Safefree(PL_collation_name);
971 PL_collation_name = NULL;
974 #ifdef USE_LOCALE_NUMERIC
975 Safefree(PL_numeric_name);
976 PL_numeric_name = NULL;
977 SvREFCNT_dec(PL_numeric_radix_sv);
978 PL_numeric_radix_sv = NULL;
981 /* clear character classes */
982 for (i = 0; i < POSIX_SWASH_COUNT; i++) {
983 SvREFCNT_dec(PL_utf8_swash_ptrs[i]);
984 PL_utf8_swash_ptrs[i] = NULL;
986 SvREFCNT_dec(PL_utf8_mark);
987 SvREFCNT_dec(PL_utf8_toupper);
988 SvREFCNT_dec(PL_utf8_totitle);
989 SvREFCNT_dec(PL_utf8_tolower);
990 SvREFCNT_dec(PL_utf8_tofold);
991 SvREFCNT_dec(PL_utf8_idstart);
992 SvREFCNT_dec(PL_utf8_idcont);
993 SvREFCNT_dec(PL_utf8_foldclosures);
995 PL_utf8_toupper = NULL;
996 PL_utf8_totitle = NULL;
997 PL_utf8_tolower = NULL;
998 PL_utf8_tofold = NULL;
999 PL_utf8_idstart = NULL;
1000 PL_utf8_idcont = NULL;
1001 PL_utf8_foldclosures = NULL;
1002 for (i = 0; i < POSIX_CC_COUNT; i++) {
1003 SvREFCNT_dec(PL_Posix_ptrs[i]);
1004 PL_Posix_ptrs[i] = NULL;
1006 SvREFCNT_dec(PL_L1Posix_ptrs[i]);
1007 PL_L1Posix_ptrs[i] = NULL;
1009 SvREFCNT_dec(PL_XPosix_ptrs[i]);
1010 PL_XPosix_ptrs[i] = NULL;
1013 if (!specialWARN(PL_compiling.cop_warnings))
1014 PerlMemShared_free(PL_compiling.cop_warnings);
1015 PL_compiling.cop_warnings = NULL;
1016 cophh_free(CopHINTHASH_get(&PL_compiling));
1017 CopHINTHASH_set(&PL_compiling, cophh_new_empty());
1018 CopFILE_free(&PL_compiling);
1020 /* Prepare to destruct main symbol table. */
1023 /* break ref loop *:: <=> %:: */
1024 (void)hv_delete(hv, "main::", 6, G_DISCARD);
1027 SvREFCNT_dec(PL_curstname);
1028 PL_curstname = NULL;
1030 /* clear queued errors */
1031 SvREFCNT_dec(PL_errors);
1034 SvREFCNT_dec(PL_isarev);
1037 if (destruct_level >= 2) {
1038 if (PL_scopestack_ix != 0)
1039 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
1040 "Unbalanced scopes: %ld more ENTERs than LEAVEs\n",
1041 (long)PL_scopestack_ix);
1042 if (PL_savestack_ix != 0)
1043 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
1044 "Unbalanced saves: %ld more saves than restores\n",
1045 (long)PL_savestack_ix);
1046 if (PL_tmps_floor != -1)
1047 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),"Unbalanced tmps: %ld more allocs than frees\n",
1048 (long)PL_tmps_floor + 1);
1049 if (cxstack_ix != -1)
1050 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),"Unbalanced context: %ld more PUSHes than POPs\n",
1051 (long)cxstack_ix + 1);
1055 SvREFCNT_dec(PL_regex_padav);
1056 PL_regex_padav = NULL;
1057 PL_regex_pad = NULL;
1060 #ifdef PERL_IMPLICIT_CONTEXT
1061 /* the entries in this list are allocated via SV PVX's, so get freed
1062 * in sv_clean_all */
1063 Safefree(PL_my_cxt_list);
1066 /* Now absolutely destruct everything, somehow or other, loops or no. */
1068 /* the 2 is for PL_fdpid and PL_strtab */
1069 while (sv_clean_all() > 2)
1073 Safefree(PL_stashpad); /* must come after sv_clean_all */
1076 AvREAL_off(PL_fdpid); /* no surviving entries */
1077 SvREFCNT_dec(PL_fdpid); /* needed in io_close() */
1080 #ifdef HAVE_INTERP_INTERN
1084 /* Destruct the global string table. */
1086 /* Yell and reset the HeVAL() slots that are still holding refcounts,
1087 * so that sv_free() won't fail on them.
1088 * Now that the global string table is using a single hunk of memory
1089 * for both HE and HEK, we either need to explicitly unshare it the
1090 * correct way, or actually free things here.
1093 const I32 max = HvMAX(PL_strtab);
1094 HE * const * const array = HvARRAY(PL_strtab);
1095 HE *hent = array[0];
1098 if (hent && ckWARN_d(WARN_INTERNAL)) {
1099 HE * const next = HeNEXT(hent);
1100 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
1101 "Unbalanced string table refcount: (%ld) for \"%s\"",
1102 (long)hent->he_valu.hent_refcount, HeKEY(hent));
1109 hent = array[riter];
1114 HvARRAY(PL_strtab) = 0;
1115 HvTOTALKEYS(PL_strtab) = 0;
1117 SvREFCNT_dec(PL_strtab);
1120 /* free the pointer tables used for cloning */
1121 ptr_table_free(PL_ptr_table);
1122 PL_ptr_table = (PTR_TBL_t*)NULL;
1125 /* free special SVs */
1127 SvREFCNT(&PL_sv_yes) = 0;
1128 sv_clear(&PL_sv_yes);
1129 SvANY(&PL_sv_yes) = NULL;
1130 SvFLAGS(&PL_sv_yes) = 0;
1132 SvREFCNT(&PL_sv_no) = 0;
1133 sv_clear(&PL_sv_no);
1134 SvANY(&PL_sv_no) = NULL;
1135 SvFLAGS(&PL_sv_no) = 0;
1139 for (i=0; i<=2; i++) {
1140 SvREFCNT(PERL_DEBUG_PAD(i)) = 0;
1141 sv_clear(PERL_DEBUG_PAD(i));
1142 SvANY(PERL_DEBUG_PAD(i)) = NULL;
1143 SvFLAGS(PERL_DEBUG_PAD(i)) = 0;
1147 if (PL_sv_count != 0 && ckWARN_d(WARN_INTERNAL))
1148 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"Scalars leaked: %ld\n", (long)PL_sv_count);
1150 #ifdef DEBUG_LEAKING_SCALARS
1151 if (PL_sv_count != 0) {
1156 for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
1157 svend = &sva[SvREFCNT(sva)];
1158 for (sv = sva + 1; sv < svend; ++sv) {
1159 if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
1160 PerlIO_printf(Perl_debug_log, "leaked: sv=0x%p"
1162 " refcnt=%"UVuf pTHX__FORMAT "\n"
1163 "\tallocated at %s:%d %s %s (parent 0x%"UVxf");"
1165 (void*)sv, (UV)sv->sv_flags, (UV)sv->sv_refcnt
1167 sv->sv_debug_file ? sv->sv_debug_file : "(unknown)",
1169 sv->sv_debug_inpad ? "for" : "by",
1170 sv->sv_debug_optype ?
1171 PL_op_name[sv->sv_debug_optype]: "(none)",
1172 PTR2UV(sv->sv_debug_parent),
1175 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
1176 Perl_dump_sv_child(aTHX_ sv);
1182 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
1186 /* Wait for up to 4 seconds for child to terminate.
1187 This seems to be the least effort way of timing out on reaping
1189 struct timeval waitfor = {4, 0};
1190 int sock = PL_dumper_fd;
1194 FD_SET(sock, &rset);
1195 select(sock + 1, &rset, NULL, NULL, &waitfor);
1196 waitpid(child, &status, WNOHANG);
1201 #ifdef DEBUG_LEAKING_SCALARS_ABORT
1207 #if defined(PERLIO_LAYERS)
1208 /* No more IO - including error messages ! */
1209 PerlIO_cleanup(aTHX);
1212 /* sv_undef needs to stay immortal until after PerlIO_cleanup
1213 as currently layers use it rather than NULL as a marker
1214 for no arg - and will try and SvREFCNT_dec it.
1216 SvREFCNT(&PL_sv_undef) = 0;
1217 SvREADONLY_off(&PL_sv_undef);
1219 Safefree(PL_origfilename);
1220 PL_origfilename = NULL;
1221 Safefree(PL_reg_curpm);
1222 free_tied_hv_pool();
1223 Safefree(PL_op_mask);
1224 Safefree(PL_psig_name);
1225 PL_psig_name = (SV**)NULL;
1226 PL_psig_ptr = (SV**)NULL;
1228 /* We need to NULL PL_psig_pend first, so that
1229 signal handlers know not to use it */
1230 int *psig_save = PL_psig_pend;
1231 PL_psig_pend = (int*)NULL;
1232 Safefree(psig_save);
1235 TAINTING_set(FALSE);
1236 TAINT_WARN_set(FALSE);
1237 PL_hints = 0; /* Reset hints. Should hints be per-interpreter ? */
1240 DEBUG_P(debprofdump());
1242 #ifdef USE_REENTRANT_API
1243 Perl_reentrant_free(aTHX);
1248 while (PL_regmatch_slab) {
1249 regmatch_slab *s = PL_regmatch_slab;
1250 PL_regmatch_slab = PL_regmatch_slab->next;
1254 /* As the absolutely last thing, free the non-arena SV for mess() */
1257 /* we know that type == SVt_PVMG */
1259 /* it could have accumulated taint magic */
1262 for (mg = SvMAGIC(PL_mess_sv); mg; mg = moremagic) {
1263 moremagic = mg->mg_moremagic;
1264 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global
1266 Safefree(mg->mg_ptr);
1270 /* we know that type >= SVt_PV */
1271 SvPV_free(PL_mess_sv);
1272 Safefree(SvANY(PL_mess_sv));
1273 Safefree(PL_mess_sv);
1280 =for apidoc perl_free
1282 Releases a Perl interpreter. See L<perlembed>.
1292 PERL_ARGS_ASSERT_PERL_FREE;
1294 if (PL_veto_cleanup)
1297 #ifdef PERL_TRACK_MEMPOOL
1300 * Don't free thread memory if PERL_DESTRUCT_LEVEL is set to a non-zero
1301 * value as we're probably hunting memory leaks then
1303 if (PL_perl_destruct_level == 0) {
1304 const U32 old_debug = PL_debug;
1305 /* Emulate the PerlHost behaviour of free()ing all memory allocated in this
1306 thread at thread exit. */
1308 PerlIO_puts(Perl_debug_log, "Disabling memory debugging as we "
1309 "free this thread's memory\n");
1310 PL_debug &= ~ DEBUG_m_FLAG;
1312 while(aTHXx->Imemory_debug_header.next != &(aTHXx->Imemory_debug_header))
1313 safesysfree(sTHX + (char *)(aTHXx->Imemory_debug_header.next));
1314 PL_debug = old_debug;
1319 #if defined(WIN32) || defined(NETWARE)
1320 # if defined(PERL_IMPLICIT_SYS)
1323 void *host = nw_internal_host;
1325 void *host = w32_internal_host;
1327 PerlMem_free(aTHXx);
1329 nw_delete_internal_host(host);
1331 win32_delete_internal_host(host);
1335 PerlMem_free(aTHXx);
1338 PerlMem_free(aTHXx);
1342 #if defined(USE_ITHREADS)
1343 /* provide destructors to clean up the thread key when libperl is unloaded */
1344 #ifndef WIN32 /* handled during DLL_PROCESS_DETACH in win32/perllib.c */
1346 #if defined(__hpux) && !(defined(__ux_version) && __ux_version <= 1020) && !defined(__GNUC__)
1347 #pragma fini "perl_fini"
1348 #elif defined(__sun) && !defined(__GNUC__)
1349 #pragma fini (perl_fini)
1353 #if defined(__GNUC__)
1354 __attribute__((destructor))
1359 if (PL_curinterp && !PL_veto_cleanup)
1364 #endif /* THREADS */
1367 Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr)
1370 Renew(PL_exitlist, PL_exitlistlen+1, PerlExitListEntry);
1371 PL_exitlist[PL_exitlistlen].fn = fn;
1372 PL_exitlist[PL_exitlistlen].ptr = ptr;
1377 S_set_caret_X(pTHX) {
1379 GV* tmpgv = gv_fetchpvs("\030", GV_ADD|GV_NOTQUAL, SVt_PV); /* $^X */
1381 SV *const caret_x = GvSV(tmpgv);
1383 sv_setpv(caret_x, os2_execname(aTHX));
1385 # ifdef USE_KERN_PROC_PATHNAME
1390 mib[2] = KERN_PROC_PATHNAME;
1393 if (sysctl(mib, 4, NULL, &size, NULL, 0) == 0
1394 && size > 0 && size < MAXPATHLEN * MAXPATHLEN) {
1395 sv_grow(caret_x, size);
1397 if (sysctl(mib, 4, SvPVX(caret_x), &size, NULL, 0) == 0
1399 SvPOK_only(caret_x);
1400 SvCUR_set(caret_x, size - 1);
1405 # elif defined(USE_NSGETEXECUTABLEPATH)
1407 uint32_t size = sizeof(buf);
1409 _NSGetExecutablePath(buf, &size);
1410 if (size < MAXPATHLEN * MAXPATHLEN) {
1411 sv_grow(caret_x, size);
1412 if (_NSGetExecutablePath(SvPVX(caret_x), &size) == 0) {
1413 char *const tidied = realpath(SvPVX(caret_x), NULL);
1415 sv_setpv(caret_x, tidied);
1418 SvPOK_only(caret_x);
1419 SvCUR_set(caret_x, size);
1424 # elif defined(HAS_PROCSELFEXE)
1425 char buf[MAXPATHLEN];
1426 int len = readlink(PROCSELFEXE_PATH, buf, sizeof(buf) - 1);
1428 /* On Playstation2 Linux V1.0 (kernel 2.2.1) readlink(/proc/self/exe)
1429 includes a spurious NUL which will cause $^X to fail in system
1430 or backticks (this will prevent extensions from being built and
1431 many tests from working). readlink is not meant to add a NUL.
1432 Normal readlink works fine.
1434 if (len > 0 && buf[len-1] == '\0') {
1438 /* FreeBSD's implementation is acknowledged to be imperfect, sometimes
1439 returning the text "unknown" from the readlink rather than the path
1440 to the executable (or returning an error from the readlink). Any
1441 valid path has a '/' in it somewhere, so use that to validate the
1442 result. See http://www.freebsd.org/cgi/query-pr.cgi?pr=35703
1444 if (len > 0 && memchr(buf, '/', len)) {
1445 sv_setpvn(caret_x, buf, len);
1449 /* Fallback to this: */
1450 sv_setpv(caret_x, PL_origargv[0]);
1456 =for apidoc perl_parse
1458 Tells a Perl interpreter to parse a Perl script. See L<perlembed>.
1463 #define SET_CURSTASH(newstash) \
1464 if (PL_curstash != newstash) { \
1465 SvREFCNT_dec(PL_curstash); \
1466 PL_curstash = (HV *)SvREFCNT_inc(newstash); \
1470 perl_parse(pTHXx_ XSINIT_t xsinit, int argc, char **argv, char **env)
1477 PERL_ARGS_ASSERT_PERL_PARSE;
1478 #ifndef MULTIPLICITY
1479 PERL_UNUSED_ARG(my_perl);
1481 #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT) || defined(USE_HASH_SEED_DEBUG)
1483 const char * const s = PerlEnv_getenv("PERL_HASH_SEED_DEBUG");
1485 if (s && (atoi(s) == 1)) {
1486 unsigned char *seed= PERL_HASH_SEED;
1487 unsigned char *seed_end= PERL_HASH_SEED + PERL_HASH_SEED_BYTES;
1488 PerlIO_printf(Perl_debug_log, "HASH_FUNCTION = %s HASH_SEED = 0x", PERL_HASH_FUNC);
1489 while (seed < seed_end) {
1490 PerlIO_printf(Perl_debug_log, "%02x", *seed++);
1492 #ifdef PERL_HASH_RANDOMIZE_KEYS
1493 PerlIO_printf(Perl_debug_log, " PERTURB_KEYS = %d (%s)",
1494 PL_HASH_RAND_BITS_ENABLED,
1495 PL_HASH_RAND_BITS_ENABLED == 0 ? "NO" : PL_HASH_RAND_BITS_ENABLED == 1 ? "RANDOM" : "DETERMINISTIC");
1497 PerlIO_printf(Perl_debug_log, "\n");
1500 #endif /* #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT) */
1504 if (PL_origalen != 0) {
1505 PL_origalen = 1; /* don't use old PL_origalen if perl_parse() is called again */
1508 /* Set PL_origalen be the sum of the contiguous argv[]
1509 * elements plus the size of the env in case that it is
1510 * contiguous with the argv[]. This is used in mg.c:Perl_magic_set()
1511 * as the maximum modifiable length of $0. In the worst case
1512 * the area we are able to modify is limited to the size of
1513 * the original argv[0]. (See below for 'contiguous', though.)
1515 const char *s = NULL;
1518 ~(UV)(PTRSIZE == 4 ? 3 : PTRSIZE == 8 ? 7 : PTRSIZE == 16 ? 15 : 0);
1519 /* Do the mask check only if the args seem like aligned. */
1521 (mask < ~(UV)0) && ((PTR2UV(argv[0]) & mask) == PTR2UV(argv[0]));
1523 /* See if all the arguments are contiguous in memory. Note
1524 * that 'contiguous' is a loose term because some platforms
1525 * align the argv[] and the envp[]. If the arguments look
1526 * like non-aligned, assume that they are 'strictly' or
1527 * 'traditionally' contiguous. If the arguments look like
1528 * aligned, we just check that they are within aligned
1529 * PTRSIZE bytes. As long as no system has something bizarre
1530 * like the argv[] interleaved with some other data, we are
1531 * fine. (Did I just evoke Murphy's Law?) --jhi */
1532 if (PL_origargv && PL_origargc >= 1 && (s = PL_origargv[0])) {
1534 for (i = 1; i < PL_origargc; i++) {
1535 if ((PL_origargv[i] == s + 1
1537 || PL_origargv[i] == s + 2
1542 (PL_origargv[i] > s &&
1544 INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1555 #ifndef PERL_USE_SAFE_PUTENV
1556 /* Can we grab env area too to be used as the area for $0? */
1557 if (s && PL_origenviron && !PL_use_safe_putenv) {
1558 if ((PL_origenviron[0] == s + 1)
1561 (PL_origenviron[0] > s &&
1562 PL_origenviron[0] <=
1563 INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1566 #ifndef OS2 /* ENVIRON is read by the kernel too. */
1567 s = PL_origenviron[0];
1570 my_setenv("NoNe SuCh", NULL);
1571 /* Force copy of environment. */
1572 for (i = 1; PL_origenviron[i]; i++) {
1573 if (PL_origenviron[i] == s + 1
1576 (PL_origenviron[i] > s &&
1577 PL_origenviron[i] <=
1578 INT2PTR(char *, PTR2UV(s + PTRSIZE) & mask)))
1581 s = PL_origenviron[i];
1589 #endif /* !defined(PERL_USE_SAFE_PUTENV) */
1591 PL_origalen = s ? s - PL_origargv[0] + 1 : 0;
1596 /* Come here if running an undumped a.out. */
1598 PL_origfilename = savepv(argv[0]);
1599 PL_do_undump = FALSE;
1600 cxstack_ix = -1; /* start label stack again */
1602 assert (!TAINT_get);
1604 S_set_caret_X(aTHX);
1606 init_postdump_symbols(argc,argv,env);
1611 op_free(PL_main_root);
1612 PL_main_root = NULL;
1614 PL_main_start = NULL;
1615 SvREFCNT_dec(PL_main_cv);
1619 oldscope = PL_scopestack_ix;
1620 PL_dowarn = G_WARN_OFF;
1625 parse_body(env,xsinit);
1626 if (PL_unitcheckav) {
1627 call_list(oldscope, PL_unitcheckav);
1630 PERL_SET_PHASE(PERL_PHASE_CHECK);
1631 call_list(oldscope, PL_checkav);
1639 /* my_exit() was called */
1640 while (PL_scopestack_ix > oldscope)
1643 SET_CURSTASH(PL_defstash);
1644 if (PL_unitcheckav) {
1645 call_list(oldscope, PL_unitcheckav);
1648 PERL_SET_PHASE(PERL_PHASE_CHECK);
1649 call_list(oldscope, PL_checkav);
1654 PerlIO_printf(Perl_error_log, "panic: top_env\n");
1662 /* This needs to stay in perl.c, as perl.c is compiled with different flags for
1663 miniperl, and we need to see those flags reflected in the values here. */
1665 /* What this returns is subject to change. Use the public interface in Config.
1668 S_Internals_V(pTHX_ CV *cv)
1671 #ifdef LOCAL_PATCH_COUNT
1672 const int local_patch_count = LOCAL_PATCH_COUNT;
1674 const int local_patch_count = 0;
1676 const int entries = 3 + local_patch_count;
1678 static const char non_bincompat_options[] =
1685 # ifdef NO_HASH_SEED
1688 # ifdef NO_TAINT_SUPPORT
1691 # ifdef PERL_DISABLE_PMC
1694 # ifdef PERL_DONT_CREATE_GVSV
1695 " PERL_DONT_CREATE_GVSV"
1697 # ifdef PERL_EXTERNAL_GLOB
1698 " PERL_EXTERNAL_GLOB"
1700 # ifdef PERL_HASH_FUNC_SIPHASH
1701 " PERL_HASH_FUNC_SIPHASH"
1703 # ifdef PERL_HASH_FUNC_SDBM
1704 " PERL_HASH_FUNC_SDBM"
1706 # ifdef PERL_HASH_FUNC_DJB2
1707 " PERL_HASH_FUNC_DJB2"
1709 # ifdef PERL_HASH_FUNC_SUPERFAST
1710 " PERL_HASH_FUNC_SUPERFAST"
1712 # ifdef PERL_HASH_FUNC_MURMUR3
1713 " PERL_HASH_FUNC_MURMUR3"
1715 # ifdef PERL_HASH_FUNC_ONE_AT_A_TIME
1716 " PERL_HASH_FUNC_ONE_AT_A_TIME"
1718 # ifdef PERL_HASH_FUNC_ONE_AT_A_TIME_HARD
1719 " PERL_HASH_FUNC_ONE_AT_A_TIME_HARD"
1721 # ifdef PERL_HASH_FUNC_ONE_AT_A_TIME_OLD
1722 " PERL_HASH_FUNC_ONE_AT_A_TIME_OLD"
1724 # ifdef PERL_IS_MINIPERL
1727 # ifdef PERL_MALLOC_WRAP
1730 # ifdef PERL_MEM_LOG
1733 # ifdef PERL_MEM_LOG_NOIMPL
1734 " PERL_MEM_LOG_NOIMPL"
1736 # ifdef PERL_NEW_COPY_ON_WRITE
1737 " PERL_NEW_COPY_ON_WRITE"
1739 # ifdef PERL_PERTURB_KEYS_DETERMINISTIC
1740 " PERL_PERTURB_KEYS_DETERMINISTIC"
1742 # ifdef PERL_PERTURB_KEYS_DISABLED
1743 " PERL_PERTURB_KEYS_DISABLED"
1745 # ifdef PERL_PERTURB_KEYS_RANDOM
1746 " PERL_PERTURB_KEYS_RANDOM"
1748 # ifdef PERL_PRESERVE_IVUV
1749 " PERL_PRESERVE_IVUV"
1751 # ifdef PERL_RELOCATABLE_INCPUSH
1752 " PERL_RELOCATABLE_INCPUSH"
1754 # ifdef PERL_USE_DEVEL
1757 # ifdef PERL_USE_SAFE_PUTENV
1758 " PERL_USE_SAFE_PUTENV"
1760 # ifdef UNLINK_ALL_VERSIONS
1761 " UNLINK_ALL_VERSIONS"
1763 # ifdef USE_ATTRIBUTES_FOR_PERLIO
1764 " USE_ATTRIBUTES_FOR_PERLIO"
1766 # ifdef USE_FAST_STDIO
1769 # ifdef USE_HASH_SEED_EXPLICIT
1770 " USE_HASH_SEED_EXPLICIT"
1775 # ifdef USE_LOCALE_CTYPE
1778 # ifdef USE_PERL_ATOF
1781 # ifdef USE_SITECUSTOMIZE
1782 " USE_SITECUSTOMIZE"
1785 PERL_UNUSED_ARG(cv);
1786 PERL_UNUSED_ARG(items);
1788 EXTEND(SP, entries);
1790 PUSHs(sv_2mortal(newSVpv(PL_bincompat_options, 0)));
1791 PUSHs(Perl_newSVpvn_flags(aTHX_ non_bincompat_options,
1792 sizeof(non_bincompat_options) - 1, SVs_TEMP));
1796 PUSHs(Perl_newSVpvn_flags(aTHX_
1797 STR_WITH_LEN("Compiled at " __DATE__ " " __TIME__),
1800 PUSHs(Perl_newSVpvn_flags(aTHX_ STR_WITH_LEN("Compiled on " __DATE__),
1804 PUSHs(&PL_sv_undef);
1807 for (i = 1; i <= local_patch_count; i++) {
1808 /* This will be an undef, if PL_localpatches[i] is NULL. */
1809 PUSHs(sv_2mortal(newSVpv(PL_localpatches[i], 0)));
1815 #define INCPUSH_UNSHIFT 0x01
1816 #define INCPUSH_ADD_OLD_VERS 0x02
1817 #define INCPUSH_ADD_VERSIONED_SUB_DIRS 0x04
1818 #define INCPUSH_ADD_ARCHONLY_SUB_DIRS 0x08
1819 #define INCPUSH_NOT_BASEDIR 0x10
1820 #define INCPUSH_CAN_RELOCATE 0x20
1821 #define INCPUSH_ADD_SUB_DIRS \
1822 (INCPUSH_ADD_VERSIONED_SUB_DIRS|INCPUSH_ADD_ARCHONLY_SUB_DIRS)
1825 S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
1829 int argc = PL_origargc;
1830 char **argv = PL_origargv;
1831 const char *scriptname = NULL;
1832 VOL bool dosearch = FALSE;
1834 bool doextract = FALSE;
1835 const char *cddir = NULL;
1836 #ifdef USE_SITECUSTOMIZE
1837 bool minus_f = FALSE;
1839 SV *linestr_sv = NULL;
1840 bool add_read_e_script = FALSE;
1841 U32 lex_start_flags = 0;
1843 PERL_SET_PHASE(PERL_PHASE_START);
1849 for (argc--,argv++; argc > 0; argc--,argv++) {
1850 if (argv[0][0] != '-' || !argv[0][1])
1856 #ifndef PERL_STRICT_CR
1880 if ((s = moreswitches(s)))
1885 #if SILENT_NO_TAINT_SUPPORT
1886 /* silently ignore */
1887 #elif NO_TAINT_SUPPORT
1888 Perl_croak_nocontext("This perl was compiled without taint support. "
1889 "Cowardly refusing to run with -t or -T flags");
1891 CHECK_MALLOC_TOO_LATE_FOR('t');
1892 if( !TAINTING_get ) {
1893 TAINT_WARN_set(TRUE);
1900 #if SILENT_NO_TAINT_SUPPORT
1901 /* silently ignore */
1902 #elif NO_TAINT_SUPPORT
1903 Perl_croak_nocontext("This perl was compiled without taint support. "
1904 "Cowardly refusing to run with -t or -T flags");
1906 CHECK_MALLOC_TOO_LATE_FOR('T');
1908 TAINT_WARN_set(FALSE);
1917 forbid_setid('e', FALSE);
1919 PL_e_script = newSVpvs("");
1920 add_read_e_script = TRUE;
1923 sv_catpv(PL_e_script, s);
1925 sv_catpv(PL_e_script, argv[1]);
1929 Perl_croak(aTHX_ "No code specified for -%c", c);
1930 sv_catpvs(PL_e_script, "\n");
1934 #ifdef USE_SITECUSTOMIZE
1940 case 'I': /* -I handled both here and in moreswitches() */
1941 forbid_setid('I', FALSE);
1942 if (!*++s && (s=argv[1]) != NULL) {
1946 STRLEN len = strlen(s);
1947 incpush(s, len, INCPUSH_ADD_SUB_DIRS|INCPUSH_ADD_OLD_VERS);
1950 Perl_croak(aTHX_ "No directory specified for -I");
1953 forbid_setid('S', FALSE);
1962 opts_prog = newSVpvs("use Config; Config::_V()");
1966 opts_prog = Perl_newSVpvf(aTHX_
1967 "use Config; Config::config_vars(qw%c%s%c)",
1971 Perl_av_create_and_push(aTHX_ &PL_preambleav, opts_prog);
1972 /* don't look for script or read stdin */
1973 scriptname = BIT_BUCKET;
1985 if (!*++s || isSPACE(*s)) {
1989 /* catch use of gnu style long options.
1990 Both of these exit immediately. */
1991 if (strEQ(s, "version"))
1993 if (strEQ(s, "help"))
1998 Perl_croak(aTHX_ "Unrecognized switch: -%s (-h will show valid options)",s);
2009 #ifndef SECURE_INTERNAL_GETENV
2012 (s = PerlEnv_getenv("PERL5OPT")))
2016 if (*s == '-' && *(s+1) == 'T') {
2017 #if SILENT_NO_TAINT_SUPPORT
2018 /* silently ignore */
2019 #elif NO_TAINT_SUPPORT
2020 Perl_croak_nocontext("This perl was compiled without taint support. "
2021 "Cowardly refusing to run with -t or -T flags");
2023 CHECK_MALLOC_TOO_LATE_FOR('T');
2025 TAINT_WARN_set(FALSE);
2029 char *popt_copy = NULL;
2042 if (!strchr("CDIMUdmtwW", *s))
2043 Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s);
2047 popt_copy = SvPVX(sv_2mortal(newSVpv(d,0)));
2048 s = popt_copy + (s - d);
2056 #if SILENT_NO_TAINT_SUPPORT
2057 /* silently ignore */
2058 #elif NO_TAINT_SUPPORT
2059 Perl_croak_nocontext("This perl was compiled without taint support. "
2060 "Cowardly refusing to run with -t or -T flags");
2062 if( !TAINTING_get) {
2063 TAINT_WARN_set(TRUE);
2075 /* Set $^X early so that it can be used for relocatable paths in @INC */
2076 /* and for SITELIB_EXP in USE_SITECUSTOMIZE */
2077 assert (!TAINT_get);
2079 S_set_caret_X(aTHX);
2082 #if defined(USE_SITECUSTOMIZE)
2084 /* The games with local $! are to avoid setting errno if there is no
2085 sitecustomize script. "q%c...%c", 0, ..., 0 becomes "q\0...\0",
2086 ie a q() operator with a NUL byte as a the delimiter. This avoids
2087 problems with pathnames containing (say) ' */
2088 # ifdef PERL_IS_MINIPERL
2089 AV *const inc = GvAV(PL_incgv);
2090 SV **const inc0 = inc ? av_fetch(inc, 0, FALSE) : NULL;
2093 (void)Perl_av_create_and_unshift_one(aTHX_ &PL_preambleav,
2095 "BEGIN { do {local $!; -f q%c%"SVf"/buildcustomize.pl%c} && do q%c%"SVf"/buildcustomize.pl%c }",
2100 /* SITELIB_EXP is a function call on Win32. */
2101 const char *const raw_sitelib = SITELIB_EXP;
2103 /* process .../.. if PERL_RELOCATABLE_INC is defined */
2104 SV *sitelib_sv = mayberelocate(raw_sitelib, strlen(raw_sitelib),
2105 INCPUSH_CAN_RELOCATE);
2106 const char *const sitelib = SvPVX(sitelib_sv);
2107 (void)Perl_av_create_and_unshift_one(aTHX_ &PL_preambleav,
2109 "BEGIN { do {local $!; -f q%c%s/sitecustomize.pl%c} && do q%c%s/sitecustomize.pl%c }",
2112 assert (SvREFCNT(sitelib_sv) == 1);
2113 SvREFCNT_dec(sitelib_sv);
2120 scriptname = argv[0];
2123 scriptname = BIT_BUCKET; /* don't look for script or read stdin */
2125 else if (scriptname == NULL) {
2127 if ( PerlLIO_isatty(PerlIO_fileno(PerlIO_stdin())) )
2133 assert (!TAINT_get);
2137 bool suidscript = FALSE;
2139 rsfp = open_script(scriptname, dosearch, &suidscript);
2141 rsfp = PerlIO_stdin();
2142 lex_start_flags = LEX_DONT_CLOSE_RSFP;
2145 validate_suid(rsfp);
2148 # if defined(SIGCHLD) || defined(SIGCLD)
2151 # define SIGCHLD SIGCLD
2153 Sighandler_t sigstate = rsignal_state(SIGCHLD);
2154 if (sigstate == (Sighandler_t) SIG_IGN) {
2155 Perl_ck_warner(aTHX_ packWARN(WARN_SIGNAL),
2156 "Can't ignore signal CHLD, forcing to default");
2157 (void)rsignal(SIGCHLD, (Sighandler_t)SIG_DFL);
2165 /* This will croak if suidscript is true, as -x cannot be used with
2167 forbid_setid('x', suidscript);
2168 /* Hence you can't get here if suidscript is true */
2170 linestr_sv = newSV_type(SVt_PV);
2171 lex_start_flags |= LEX_START_COPIED;
2172 find_beginning(linestr_sv, rsfp);
2173 if (cddir && PerlDir_chdir( (char *)cddir ) < 0)
2174 Perl_croak(aTHX_ "Can't chdir to %s",cddir);
2178 PL_main_cv = PL_compcv = MUTABLE_CV(newSV_type(SVt_PVCV));
2179 CvUNIQUE_on(PL_compcv);
2181 CvPADLIST(PL_compcv) = pad_new(0);
2183 PL_isarev = newHV();
2186 boot_core_UNIVERSAL();
2188 newXS("Internals::V", S_Internals_V, __FILE__);
2191 (*xsinit)(aTHX); /* in case linked C routines want magical variables */
2193 #if defined(VMS) || defined(WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(SYMBIAN)
2199 # ifdef HAS_SOCKS5_INIT
2200 socks5_init(argv[0]);
2206 init_predump_symbols();
2207 /* init_postdump_symbols not currently designed to be called */
2208 /* more than once (ENV isn't cleared first, for example) */
2209 /* But running with -u leaves %ENV & @ARGV undefined! XXX */
2211 init_postdump_symbols(argc,argv,env);
2213 /* PL_unicode is turned on by -C, or by $ENV{PERL_UNICODE},
2214 * or explicitly in some platforms.
2215 * locale.c:Perl_init_i18nl10n() if the environment
2216 * look like the user wants to use UTF-8. */
2217 #if defined(__SYMBIAN32__)
2218 PL_unicode = PERL_UNICODE_STD_FLAG; /* See PERL_SYMBIAN_CONSOLE_UTF8. */
2220 # ifndef PERL_IS_MINIPERL
2222 /* Requires init_predump_symbols(). */
2223 if (!(PL_unicode & PERL_UNICODE_LOCALE_FLAG) || PL_utf8locale) {
2228 /* Turn on UTF-8-ness on STDIN, STDOUT, STDERR
2229 * and the default open disciplines. */
2230 if ((PL_unicode & PERL_UNICODE_STDIN_FLAG) &&
2231 PL_stdingv && (io = GvIO(PL_stdingv)) &&
2233 PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2234 if ((PL_unicode & PERL_UNICODE_STDOUT_FLAG) &&
2235 PL_defoutgv && (io = GvIO(PL_defoutgv)) &&
2237 PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2238 if ((PL_unicode & PERL_UNICODE_STDERR_FLAG) &&
2239 PL_stderrgv && (io = GvIO(PL_stderrgv)) &&
2241 PerlIO_binmode(aTHX_ fp, IoTYPE(io), 0, ":utf8");
2242 if ((PL_unicode & PERL_UNICODE_INOUT_FLAG) &&
2243 (sv = GvSV(gv_fetchpvs("\017PEN", GV_ADD|GV_NOTQUAL,
2245 U32 in = PL_unicode & PERL_UNICODE_IN_FLAG;
2246 U32 out = PL_unicode & PERL_UNICODE_OUT_FLAG;
2249 sv_setpvs(sv, ":utf8\0:utf8");
2251 sv_setpvs(sv, ":utf8\0");
2254 sv_setpvs(sv, "\0:utf8");
2263 if ((s = PerlEnv_getenv("PERL_SIGNALS"))) {
2264 if (strEQ(s, "unsafe"))
2265 PL_signals |= PERL_SIGNALS_UNSAFE_FLAG;
2266 else if (strEQ(s, "safe"))
2267 PL_signals &= ~PERL_SIGNALS_UNSAFE_FLAG;
2269 Perl_croak(aTHX_ "PERL_SIGNALS illegal: \"%s\"", s);
2276 if (!TAINTING_get &&
2277 (s = PerlEnv_getenv("PERL_XMLDUMP"))) {
2281 PL_xmlfp = PerlIO_stdout();
2283 PL_xmlfp = PerlIO_open(s, "w");
2285 Perl_croak(aTHX_ "Can't open %s", s);
2287 my_setenv("PERL_XMLDUMP", NULL); /* hide from subprocs */
2293 if ((s = PerlEnv_getenv("PERL_MADSKILLS"))) {
2294 PL_madskills = atoi(s);
2295 my_setenv("PERL_MADSKILLS", NULL); /* hide from subprocs */
2300 lex_start(linestr_sv, rsfp, lex_start_flags);
2301 SvREFCNT_dec(linestr_sv);
2303 PL_subname = newSVpvs("main");
2305 if (add_read_e_script)
2306 filter_add(read_e_script, NULL);
2308 /* now parse the script */
2310 SETERRNO(0,SS_NORMAL);
2311 if (yyparse(GRAMPROG) || PL_parser->error_count) {
2313 Perl_croak(aTHX_ "%s had compilation errors.\n", PL_origfilename);
2315 Perl_croak(aTHX_ "Execution of %s aborted due to compilation errors.\n",
2319 CopLINE_set(PL_curcop, 0);
2320 SET_CURSTASH(PL_defstash);
2322 SvREFCNT_dec(PL_e_script);
2330 SAVECOPFILE(PL_curcop);
2331 SAVECOPLINE(PL_curcop);
2332 gv_check(PL_defstash);
2341 if ((s=PerlEnv_getenv("PERL_DEBUG_MSTATS")) && atoi(s) >= 2)
2342 dump_mstats("after compilation:");
2347 PL_restartjmpenv = NULL;
2353 =for apidoc perl_run
2355 Tells a Perl interpreter to run. See L<perlembed>.
2368 PERL_ARGS_ASSERT_PERL_RUN;
2369 #ifndef MULTIPLICITY
2370 PERL_UNUSED_ARG(my_perl);
2373 oldscope = PL_scopestack_ix;
2381 cxstack_ix = -1; /* start context stack again */
2383 case 0: /* normal completion */
2387 case 2: /* my_exit() */
2388 while (PL_scopestack_ix > oldscope)
2391 SET_CURSTASH(PL_defstash);
2392 if (!(PL_exit_flags & PERL_EXIT_DESTRUCT_END) &&
2393 PL_endav && !PL_minus_c) {
2394 PERL_SET_PHASE(PERL_PHASE_END);
2395 call_list(oldscope, PL_endav);
2398 if (PerlEnv_getenv("PERL_DEBUG_MSTATS"))
2399 dump_mstats("after execution: ");
2405 POPSTACK_TO(PL_mainstack);
2408 PerlIO_printf(Perl_error_log, "panic: restartop in perl_run\n");
2419 S_run_body(pTHX_ I32 oldscope)
2422 DEBUG_r(PerlIO_printf(Perl_debug_log, "%s $` $& $' support (0x%x).\n",
2423 PL_sawampersand ? "Enabling" : "Omitting",
2424 (unsigned int)(PL_sawampersand)));
2426 if (!PL_restartop) {
2430 exit(0); /* less likely to core dump than my_exit(0) */
2434 if (DEBUG_x_TEST || DEBUG_B_TEST)
2435 dump_all_perl(!DEBUG_B_TEST);
2437 PERL_DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n"));
2441 PerlIO_printf(Perl_error_log, "%s syntax OK\n", PL_origfilename);
2444 if (PERLDB_SINGLE && PL_DBsingle)
2445 sv_setiv(PL_DBsingle, 1);
2447 PERL_SET_PHASE(PERL_PHASE_INIT);
2448 call_list(oldscope, PL_initav);
2450 #ifdef PERL_DEBUG_READONLY_OPS
2451 if (PL_main_root && PL_main_root->op_slabbed)
2452 Slab_to_ro(OpSLAB(PL_main_root));
2458 PERL_SET_PHASE(PERL_PHASE_RUN);
2461 PL_restartjmpenv = NULL;
2462 PL_op = PL_restartop;
2466 else if (PL_main_start) {
2467 CvDEPTH(PL_main_cv) = 1;
2468 PL_op = PL_main_start;
2472 assert(0); /* NOTREACHED */
2476 =head1 SV Manipulation Functions
2478 =for apidoc p||get_sv
2480 Returns the SV of the specified Perl scalar. C<flags> are passed to
2481 C<gv_fetchpv>. If C<GV_ADD> is set and the
2482 Perl variable does not exist then it will be created. If C<flags> is zero
2483 and the variable does not exist then NULL is returned.
2489 Perl_get_sv(pTHX_ const char *name, I32 flags)
2493 PERL_ARGS_ASSERT_GET_SV;
2495 gv = gv_fetchpv(name, flags, SVt_PV);
2502 =head1 Array Manipulation Functions
2504 =for apidoc p||get_av
2506 Returns the AV of the specified Perl global or package array with the given
2507 name (so it won't work on lexical variables). C<flags> are passed
2508 to C<gv_fetchpv>. If C<GV_ADD> is set and the
2509 Perl variable does not exist then it will be created. If C<flags> is zero
2510 and the variable does not exist then NULL is returned.
2512 Perl equivalent: C<@{"$name"}>.
2518 Perl_get_av(pTHX_ const char *name, I32 flags)
2520 GV* const gv = gv_fetchpv(name, flags, SVt_PVAV);
2522 PERL_ARGS_ASSERT_GET_AV;
2532 =head1 Hash Manipulation Functions
2534 =for apidoc p||get_hv
2536 Returns the HV of the specified Perl hash. C<flags> are passed to
2537 C<gv_fetchpv>. If C<GV_ADD> is set and the
2538 Perl variable does not exist then it will be created. If C<flags> is zero
2539 and the variable does not exist then NULL is returned.
2545 Perl_get_hv(pTHX_ const char *name, I32 flags)
2547 GV* const gv = gv_fetchpv(name, flags, SVt_PVHV);
2549 PERL_ARGS_ASSERT_GET_HV;
2559 =head1 CV Manipulation Functions
2561 =for apidoc p||get_cvn_flags
2563 Returns the CV of the specified Perl subroutine. C<flags> are passed to
2564 C<gv_fetchpvn_flags>. If C<GV_ADD> is set and the Perl subroutine does not
2565 exist then it will be declared (which has the same effect as saying
2566 C<sub name;>). If C<GV_ADD> is not set and the subroutine does not exist
2567 then NULL is returned.
2569 =for apidoc p||get_cv
2571 Uses C<strlen> to get the length of C<name>, then calls C<get_cvn_flags>.
2577 Perl_get_cvn_flags(pTHX_ const char *name, STRLEN len, I32 flags)
2579 GV* const gv = gv_fetchpvn_flags(name, len, flags, SVt_PVCV);
2581 PERL_ARGS_ASSERT_GET_CVN_FLAGS;
2583 /* XXX this is probably not what they think they're getting.
2584 * It has the same effect as "sub name;", i.e. just a forward
2586 if ((flags & ~GV_NOADD_MASK) && !GvCVu(gv)) {
2587 return newSTUB(gv,0);
2594 /* Nothing in core calls this now, but we can't replace it with a macro and
2595 move it to mathoms.c as a macro would evaluate name twice. */
2597 Perl_get_cv(pTHX_ const char *name, I32 flags)
2599 PERL_ARGS_ASSERT_GET_CV;
2601 return get_cvn_flags(name, strlen(name), flags);
2604 /* Be sure to refetch the stack pointer after calling these routines. */
2608 =head1 Callback Functions
2610 =for apidoc p||call_argv
2612 Performs a callback to the specified named and package-scoped Perl subroutine
2613 with C<argv> (a NULL-terminated array of strings) as arguments. See L<perlcall>.
2615 Approximate Perl equivalent: C<&{"$sub_name"}(@$argv)>.
2621 Perl_call_argv(pTHX_ const char *sub_name, I32 flags, char **argv)
2623 /* See G_* flags in cop.h */
2624 /* null terminated arg list */
2629 PERL_ARGS_ASSERT_CALL_ARGV;
2634 mXPUSHs(newSVpv(*argv,0));
2639 return call_pv(sub_name, flags);
2643 =for apidoc p||call_pv
2645 Performs a callback to the specified Perl sub. See L<perlcall>.
2651 Perl_call_pv(pTHX_ const char *sub_name, I32 flags)
2652 /* name of the subroutine */
2653 /* See G_* flags in cop.h */
2655 PERL_ARGS_ASSERT_CALL_PV;
2657 return call_sv(MUTABLE_SV(get_cv(sub_name, GV_ADD)), flags);
2661 =for apidoc p||call_method
2663 Performs a callback to the specified Perl method. The blessed object must
2664 be on the stack. See L<perlcall>.
2670 Perl_call_method(pTHX_ const char *methname, I32 flags)
2671 /* name of the subroutine */
2672 /* See G_* flags in cop.h */
2675 PERL_ARGS_ASSERT_CALL_METHOD;
2677 len = strlen(methname);
2679 /* XXX: sv_2mortal(newSVpvn_share(methname, len)) can be faster */
2680 return call_sv(newSVpvn_flags(methname, len, SVs_TEMP), flags | G_METHOD);
2683 /* May be called with any of a CV, a GV, or an SV containing the name. */
2685 =for apidoc p||call_sv
2687 Performs a callback to the Perl sub whose name is in the SV. See
2694 Perl_call_sv(pTHX_ SV *sv, VOL I32 flags)
2695 /* See G_* flags in cop.h */
2698 LOGOP myop; /* fake syntax tree node */
2703 bool oldcatch = CATCH_GET;
2705 OP* const oldop = PL_op;
2708 PERL_ARGS_ASSERT_CALL_SV;
2710 if (flags & G_DISCARD) {
2714 if (!(flags & G_WANT)) {
2715 /* Backwards compatibility - as G_SCALAR was 0, it could be omitted.
2720 Zero(&myop, 1, LOGOP);
2721 if (!(flags & G_NOARGS))
2722 myop.op_flags |= OPf_STACKED;
2723 myop.op_flags |= OP_GIMME_REVERSE(flags);
2727 EXTEND(PL_stack_sp, 1);
2728 *++PL_stack_sp = sv;
2730 oldscope = PL_scopestack_ix;
2732 if (PERLDB_SUB && PL_curstash != PL_debstash
2733 /* Handle first BEGIN of -d. */
2734 && (PL_DBcv || (PL_DBcv = GvCV(PL_DBsub)))
2735 /* Try harder, since this may have been a sighandler, thus
2736 * curstash may be meaningless. */
2737 && (SvTYPE(sv) != SVt_PVCV || CvSTASH((const CV *)sv) != PL_debstash)
2738 && !(flags & G_NODEBUG))
2739 myop.op_private |= OPpENTERSUB_DB;
2741 if (flags & G_METHOD) {
2742 Zero(&method_op, 1, UNOP);
2743 method_op.op_next = (OP*)&myop;
2744 method_op.op_ppaddr = PL_ppaddr[OP_METHOD];
2745 method_op.op_type = OP_METHOD;
2746 myop.op_ppaddr = PL_ppaddr[OP_ENTERSUB];
2747 myop.op_type = OP_ENTERSUB;
2748 PL_op = (OP*)&method_op;
2751 if (!(flags & G_EVAL)) {
2753 CALL_BODY_SUB((OP*)&myop);
2754 retval = PL_stack_sp - (PL_stack_base + oldmark);
2755 CATCH_SET(oldcatch);
2758 myop.op_other = (OP*)&myop;
2760 create_eval_scope(flags|G_FAKINGEVAL);
2768 CALL_BODY_SUB((OP*)&myop);
2769 retval = PL_stack_sp - (PL_stack_base + oldmark);
2770 if (!(flags & G_KEEPERR)) {
2778 /* my_exit() was called */
2779 SET_CURSTASH(PL_defstash);
2783 assert(0); /* NOTREACHED */
2786 PL_restartjmpenv = NULL;
2787 PL_op = PL_restartop;
2791 PL_stack_sp = PL_stack_base + oldmark;
2792 if ((flags & G_WANT) == G_ARRAY)
2796 *++PL_stack_sp = &PL_sv_undef;
2801 if (PL_scopestack_ix > oldscope)
2802 delete_eval_scope();
2806 if (flags & G_DISCARD) {
2807 PL_stack_sp = PL_stack_base + oldmark;
2816 /* Eval a string. The G_EVAL flag is always assumed. */
2819 =for apidoc p||eval_sv
2821 Tells Perl to C<eval> the string in the SV. It supports the same flags
2822 as C<call_sv>, with the obvious exception of G_EVAL. See L<perlcall>.
2828 Perl_eval_sv(pTHX_ SV *sv, I32 flags)
2830 /* See G_* flags in cop.h */
2834 UNOP myop; /* fake syntax tree node */
2835 VOL I32 oldmark = SP - PL_stack_base;
2838 OP* const oldop = PL_op;
2841 PERL_ARGS_ASSERT_EVAL_SV;
2843 if (flags & G_DISCARD) {
2850 Zero(&myop, 1, UNOP);
2851 EXTEND(PL_stack_sp, 1);
2852 *++PL_stack_sp = sv;
2854 if (!(flags & G_NOARGS))
2855 myop.op_flags = OPf_STACKED;
2856 myop.op_type = OP_ENTEREVAL;
2857 myop.op_flags |= OP_GIMME_REVERSE(flags);
2858 if (flags & G_KEEPERR)
2859 myop.op_flags |= OPf_SPECIAL;
2861 if (flags & G_RE_REPARSING)
2862 myop.op_private = (OPpEVAL_COPHH | OPpEVAL_RE_REPARSING);
2864 /* fail now; otherwise we could fail after the JMPENV_PUSH but
2865 * before a PUSHEVAL, which corrupts the stack after a croak */
2866 TAINT_PROPER("eval_sv()");
2872 if (PL_op == (OP*)(&myop)) {
2873 PL_op = PL_ppaddr[OP_ENTEREVAL](aTHX);
2875 goto fail; /* failed in compilation */
2878 retval = PL_stack_sp - (PL_stack_base + oldmark);
2879 if (!(flags & G_KEEPERR)) {
2887 /* my_exit() was called */
2888 SET_CURSTASH(PL_defstash);
2892 assert(0); /* NOTREACHED */
2895 PL_restartjmpenv = NULL;
2896 PL_op = PL_restartop;
2901 PL_stack_sp = PL_stack_base + oldmark;
2902 if ((flags & G_WANT) == G_ARRAY)
2906 *++PL_stack_sp = &PL_sv_undef;
2912 if (flags & G_DISCARD) {
2913 PL_stack_sp = PL_stack_base + oldmark;
2923 =for apidoc p||eval_pv
2925 Tells Perl to C<eval> the given string and return an SV* result.
2931 Perl_eval_pv(pTHX_ const char *p, I32 croak_on_error)
2934 SV* sv = newSVpv(p, 0);
2936 PERL_ARGS_ASSERT_EVAL_PV;
2938 eval_sv(sv, G_SCALAR);
2947 /* just check empty string or undef? */
2948 if (croak_on_error) {
2949 SV * const errsv = ERRSV;
2950 if(SvTRUE_NN(errsv))
2951 /* replace with croak_sv? */
2952 Perl_croak_nocontext("%s", SvPV_nolen_const(errsv));
2958 /* Require a module. */
2961 =head1 Embedding Functions
2963 =for apidoc p||require_pv
2965 Tells Perl to C<require> the file named by the string argument. It is
2966 analogous to the Perl code C<eval "require '$file'">. It's even
2967 implemented that way; consider using load_module instead.
2972 Perl_require_pv(pTHX_ const char *pv)
2978 PERL_ARGS_ASSERT_REQUIRE_PV;
2980 PUSHSTACKi(PERLSI_REQUIRE);
2982 sv = Perl_newSVpvf(aTHX_ "require q%c%s%c", 0, pv, 0);
2983 eval_sv(sv_2mortal(sv), G_DISCARD);
2989 S_usage(pTHX) /* XXX move this out into a module ? */
2991 /* This message really ought to be max 23 lines.
2992 * Removed -h because the user already knows that option. Others? */
2994 /* Grouped as 6 lines per C string literal, to keep under the ANSI C 89
2995 minimum of 509 character string literals. */
2996 static const char * const usage_msg[] = {
2997 " -0[octal] specify record separator (\\0, if no argument)\n"
2998 " -a autosplit mode with -n or -p (splits $_ into @F)\n"
2999 " -C[number/list] enables the listed Unicode features\n"
3000 " -c check syntax only (runs BEGIN and CHECK blocks)\n"
3001 " -d[:debugger] run program under debugger\n"
3002 " -D[number/list] set debugging flags (argument is a bit mask or alphabets)\n",
3003 " -e program one line of program (several -e's allowed, omit programfile)\n"
3004 " -E program like -e, but enables all optional features\n"
3005 " -f don't do $sitelib/sitecustomize.pl at startup\n"
3006 " -F/pattern/ split() pattern for -a switch (//'s are optional)\n"
3007 " -i[extension] edit <> files in place (makes backup if extension supplied)\n"
3008 " -Idirectory specify @INC/#include directory (several -I's allowed)\n",
3009 " -l[octal] enable line ending processing, specifies line terminator\n"
3010 " -[mM][-]module execute \"use/no module...\" before executing program\n"
3011 " -n assume \"while (<>) { ... }\" loop around program\n"
3012 " -p assume loop like -n but print line also, like sed\n"
3013 " -s enable rudimentary parsing for switches after programfile\n"
3014 " -S look for programfile using PATH environment variable\n",
3015 " -t enable tainting warnings\n"
3016 " -T enable tainting checks\n"
3017 " -u dump core after parsing program\n"
3018 " -U allow unsafe operations\n"
3019 " -v print version, patchlevel and license\n"
3020 " -V[:variable] print configuration summary (or a single Config.pm variable)\n",
3021 " -w enable many useful warnings\n"
3022 " -W enable all warnings\n"
3023 " -x[directory] ignore text before #!perl line (optionally cd to directory)\n"
3024 " -X disable all warnings\n"
3026 "Run 'perldoc perl' for more help with Perl.\n\n",
3029 const char * const *p = usage_msg;
3030 PerlIO *out = PerlIO_stdout();
3033 "\nUsage: %s [switches] [--] [programfile] [arguments]\n",
3036 PerlIO_puts(out, *p++);
3040 /* convert a string of -D options (or digits) into an int.
3041 * sets *s to point to the char after the options */
3045 Perl_get_debug_opts(pTHX_ const char **s, bool givehelp)
3047 static const char * const usage_msgd[] = {
3048 " Debugging flag values: (see also -d)\n"
3049 " p Tokenizing and parsing (with v, displays parse stack)\n"
3050 " s Stack snapshots (with v, displays all stacks)\n"
3051 " l Context (loop) stack processing\n"
3052 " t Trace execution\n"
3053 " o Method and overloading resolution\n",
3054 " c String/numeric conversions\n"
3055 " P Print profiling info, source file input state\n"
3056 " m Memory and SV allocation\n"
3057 " f Format processing\n"
3058 " r Regular expression parsing and execution\n"
3059 " x Syntax tree dump\n",
3060 " u Tainting checks\n"
3061 " H Hash dump -- usurps values()\n"
3062 " X Scratchpad allocation\n"
3064 " S Op slab allocation\n"
3066 " R Include reference counts of dumped variables (eg when using -Ds)\n",
3067 " J Do not s,t,P-debug (Jump over) opcodes within package DB\n"
3068 " v Verbose: use in conjunction with other flags\n"
3069 " C Copy On Write\n"
3070 " A Consistency checks on internal structures\n"
3071 " q quiet - currently only suppresses the 'EXECUTING' message\n"
3072 " M trace smart match resolution\n"
3073 " B dump suBroutine definitions, including special Blocks like BEGIN\n",
3078 PERL_ARGS_ASSERT_GET_DEBUG_OPTS;
3081 /* if adding extra options, remember to update DEBUG_MASK */
3082 static const char debopts[] = "psltocPmfrxuUHXDSTRJvCAqMB";
3084 for (; isWORDCHAR(**s); (*s)++) {
3085 const char * const d = strchr(debopts,**s);
3087 i |= 1 << (d - debopts);
3088 else if (ckWARN_d(WARN_DEBUGGING))
3089 Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
3090 "invalid option -D%c, use -D'' to see choices\n", **s);
3093 else if (isDIGIT(**s)) {
3095 for (; isWORDCHAR(**s); (*s)++) ;
3097 else if (givehelp) {
3098 const char *const *p = usage_msgd;
3099 while (*p) PerlIO_puts(PerlIO_stdout(), *p++);
3102 if ((i & DEBUG_p_FLAG) && ckWARN_d(WARN_DEBUGGING))
3103 Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
3104 "-Dp not implemented on this platform\n");
3110 /* This routine handles any switches that can be given during run */
3113 Perl_moreswitches(pTHX_ const char *s)
3117 const char option = *s; /* used to remember option in -m/-M code */
3119 PERL_ARGS_ASSERT_MORESWITCHES;
3127 SvREFCNT_dec(PL_rs);
3128 if (s[1] == 'x' && s[2]) {
3129 const char *e = s+=2;
3135 flags = PERL_SCAN_SILENT_ILLDIGIT;
3136 rschar = (U32)grok_hex(s, &numlen, &flags, NULL);
3137 if (s + numlen < e) {
3138 rschar = 0; /* Grandfather -0xFOO as -0 -xFOO. */
3142 PL_rs = newSVpvs("");
3143 SvGROW(PL_rs, (STRLEN)(UNISKIP(rschar) + 1));
3144 tmps = (U8*)SvPVX(PL_rs);
3145 uvchr_to_utf8(tmps, rschar);
3146 SvCUR_set(PL_rs, UNISKIP(rschar));
3151 rschar = (U32)grok_oct(s, &numlen, &flags, NULL);
3152 if (rschar & ~((U8)~0))
3153 PL_rs = &PL_sv_undef;
3154 else if (!rschar && numlen >= 2)
3155 PL_rs = newSVpvs("");
3157 char ch = (char)rschar;
3158 PL_rs = newSVpvn(&ch, 1);
3161 sv_setsv(get_sv("/", GV_ADD), PL_rs);
3166 PL_unicode = parse_unicode_opts( (const char **)&s );
3167 if (PL_unicode & PERL_UNICODE_UTF8CACHEASSERT_FLAG)
3173 while (*s && !isSPACE(*s)) ++s;
3174 PL_splitstr = savepvn(PL_splitstr, s - PL_splitstr);
3185 forbid_setid('d', FALSE);
3188 /* -dt indicates to the debugger that threads will be used */
3189 if (*s == 't' && !isWORDCHAR(s[1])) {
3191 my_setenv("PERL5DB_THREADED", "1");
3194 /* The following permits -d:Mod to accepts arguments following an =
3195 in the fashion that -MSome::Mod does. */
3196 if (*s == ':' || *s == '=') {
3203 sv = newSVpvs("no Devel::");
3205 sv = newSVpvs("use Devel::");
3209 end = s + strlen(s);
3211 /* We now allow -d:Module=Foo,Bar and -d:-Module */
3212 while(isWORDCHAR(*s) || *s==':') ++s;
3214 sv_catpvn(sv, start, end - start);
3216 sv_catpvn(sv, start, s-start);
3217 /* Don't use NUL as q// delimiter here, this string goes in the
3219 Perl_sv_catpvf(aTHX_ sv, " split(/,/,q{%s});", ++s);
3222 my_setenv("PERL5DB", SvPV_nolen_const(sv));
3226 PL_perldb = PERLDB_ALL;
3233 forbid_setid('D', FALSE);
3235 PL_debug = get_debug_opts( (const char **)&s, 1) | DEBUG_TOP_FLAG;
3236 #else /* !DEBUGGING */
3237 if (ckWARN_d(WARN_DEBUGGING))
3238 Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
3239 "Recompile perl with -DDEBUGGING to use -D switch (did you mean -d ?)\n");
3240 for (s++; isWORDCHAR(*s); s++) ;
3247 Safefree(PL_inplace);
3248 #if defined(__CYGWIN__) /* do backup extension automagically */
3249 if (*(s+1) == '\0') {
3250 PL_inplace = savepvs(".bak");
3253 #endif /* __CYGWIN__ */
3255 const char * const start = ++s;
3256 while (*s && !isSPACE(*s))
3259 PL_inplace = savepvn(start, s - start);
3263 if (*s == '-') /* Additional switches on #! line. */
3267 case 'I': /* -I handled both here and in parse_body() */
3268 forbid_setid('I', FALSE);
3270 while (*s && isSPACE(*s))
3275 /* ignore trailing spaces (possibly followed by other switches) */
3277 for (e = p; *e && !isSPACE(*e); e++) ;
3281 } while (*p && *p != '-');
3283 INCPUSH_ADD_SUB_DIRS|INCPUSH_ADD_OLD_VERS|INCPUSH_UNSHIFT);
3289 Perl_croak(aTHX_ "No directory specified for -I");
3295 SvREFCNT_dec(PL_ors_sv);
3301 PL_ors_sv = newSVpvs("\n");
3302 numlen = 3 + (*s == '0');
3303 *SvPVX(PL_ors_sv) = (char)grok_oct(s, &numlen, &flags, NULL);
3307 if (RsPARA(PL_rs)) {
3308 PL_ors_sv = newSVpvs("\n\n");
3311 PL_ors_sv = newSVsv(PL_rs);
3316 forbid_setid('M', FALSE); /* XXX ? */
3319 forbid_setid('m', FALSE); /* XXX ? */
3324 const char *use = "use ";
3326 /* -M-foo == 'no foo' */
3327 /* Leading space on " no " is deliberate, to make both
3328 possibilities the same length. */
3329 if (*s == '-') { use = " no "; ++s; }
3330 sv = newSVpvn(use,4);
3332 /* We allow -M'Module qw(Foo Bar)' */
3333 while(isWORDCHAR(*s) || *s==':') {
3342 Perl_croak(aTHX_ "Module name required with -%c option",
3345 Perl_croak(aTHX_ "Invalid module name %.*s with -%c option: "
3346 "contains single ':'",
3347 (int)(s - start), start, option);
3348 end = s + strlen(s);
3350 sv_catpvn(sv, start, end - start);
3351 if (option == 'm') {
3353 Perl_croak(aTHX_ "Can't use '%c' after -mname", *s);
3354 sv_catpvs( sv, " ()");
3357 sv_catpvn(sv, start, s-start);
3358 /* Use NUL as q''-delimiter. */
3359 sv_catpvs(sv, " split(/,/,q\0");
3361 sv_catpvn(sv, s, end - s);
3362 sv_catpvs(sv, "\0)");
3365 Perl_av_create_and_push(aTHX_ &PL_preambleav, sv);
3368 Perl_croak(aTHX_ "Missing argument to -%c", option);
3379 forbid_setid('s', FALSE);
3380 PL_doswitches = TRUE;
3385 #if SILENT_NO_TAINT_SUPPORT
3386 /* silently ignore */
3387 #elif NO_TAINT_SUPPORT
3388 Perl_croak_nocontext("This perl was compiled without taint support. "
3389 "Cowardly refusing to run with -t or -T flags");
3397 PL_do_undump = TRUE;
3407 if (! (PL_dowarn & G_WARN_ALL_MASK)) {
3408 PL_dowarn |= G_WARN_ON;
3413 PL_dowarn = G_WARN_ALL_ON|G_WARN_ON;
3414 if (!specialWARN(PL_compiling.cop_warnings))
3415 PerlMemShared_free(PL_compiling.cop_warnings);
3416 PL_compiling.cop_warnings = pWARN_ALL ;
3420 PL_dowarn = G_WARN_ALL_OFF;
3421 if (!specialWARN(PL_compiling.cop_warnings))
3422 PerlMemShared_free(PL_compiling.cop_warnings);
3423 PL_compiling.cop_warnings = pWARN_NONE ;
3430 if (s[0] == '-') /* Additional switches on #! line. */
3435 #if defined(WIN32) || !defined(PERL_STRICT_CR)
3441 #ifdef ALTERNATE_SHEBANG
3442 case 'S': /* OS/2 needs -S on "extproc" line. */
3445 case 'e': case 'f': case 'x': case 'E':
3446 #ifndef ALTERNATE_SHEBANG
3450 Perl_croak(aTHX_ "Can't emulate -%.1s on #! line",s);
3453 "Unrecognized switch: -%.1s (-h will show valid options)",s
3463 PerlIO * PIO_stdout;
3464 if (!sv_derived_from(PL_patchlevel, "version"))
3465 upg_version(PL_patchlevel, TRUE);
3467 SV* level= vstringify(PL_patchlevel);
3468 #ifdef PERL_PATCHNUM
3469 # ifdef PERL_GIT_UNCOMMITTED_CHANGES
3470 SV *num = newSVpvs(PERL_PATCHNUM "*");
3472 SV *num = newSVpvs(PERL_PATCHNUM);
3475 STRLEN level_len, num_len;
3476 char * level_str, * num_str;
3477 num_str = SvPV(num, num_len);
3478 level_str = SvPV(level, level_len);
3479 if (num_len>=level_len && strnEQ(num_str,level_str,level_len)) {
3480 SvREFCNT_dec(level);
3483 Perl_sv_catpvf(aTHX_ level, " (%"SVf")", num);
3488 PIO_stdout = PerlIO_stdout();
3489 PerlIO_printf(PIO_stdout,
3490 "\nThis is perl " STRINGIFY(PERL_REVISION)
3491 ", version " STRINGIFY(PERL_VERSION)
3492 ", subversion " STRINGIFY(PERL_SUBVERSION)
3493 " (%"SVf") built for " ARCHNAME, level
3495 SvREFCNT_dec(level);
3497 #if defined(LOCAL_PATCH_COUNT)
3498 if (LOCAL_PATCH_COUNT > 0)
3499 PerlIO_printf(PIO_stdout,
3500 "\n(with %d registered patch%s, "
3501 "see perl -V for more detail)",
3503 (LOCAL_PATCH_COUNT!=1) ? "es" : "");
3506 PerlIO_printf(PIO_stdout,
3507 "\n\nCopyright 1987-2013, Larry Wall\n");
3509 PerlIO_printf(PIO_stdout,
3510 "\nMS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis\n");
3513 PerlIO_printf(PIO_stdout,
3514 "djgpp v2 port (jpl5003c) by Hirofumi Watanabe, 1996\n"
3515 "djgpp v2 port (perl5004+) by Laszlo Molnar, 1997-1999\n");
3518 PerlIO_printf(PIO_stdout,
3519 "\n\nOS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n"
3520 "Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\n");
3523 PerlIO_printf(PIO_stdout,
3524 "MVS (OS390) port by Mortice Kern Systems, 1997-1999\n");
3527 PerlIO_printf(PIO_stdout,
3528 "Stratus OpenVOS port by Paul.Green@stratus.com, 1997-2013\n");
3531 PerlIO_printf(PIO_stdout,
3532 "BS2000 (POSIX) port by Start Amadeus GmbH, 1998-1999\n");
3535 PerlIO_printf(PIO_stdout,
3536 "WINCE port by Rainer Keuchel, 2001-2002\n"
3537 "Built on " __DATE__ " " __TIME__ "\n\n");
3540 #ifdef __SYMBIAN32__
3541 PerlIO_printf(PIO_stdout,
3542 "Symbian port by Nokia, 2004-2005\n");
3544 #ifdef BINARY_BUILD_NOTICE
3545 BINARY_BUILD_NOTICE;
3547 PerlIO_printf(PIO_stdout,
3549 Perl may be copied only under the terms of either the Artistic License or the\n\
3550 GNU General Public License, which may be found in the Perl 5 source kit.\n\n\
3551 Complete documentation for Perl, including FAQ lists, should be found on\n\
3552 this system using \"man perl\" or \"perldoc perl\". If you have access to the\n\
3553 Internet, point your browser at http://www.perl.org/, the Perl Home Page.\n\n");
3557 /* compliments of Tom Christiansen */
3559 /* unexec() can be found in the Gnu emacs distribution */
3560 /* Known to work with -DUNEXEC and using unexelf.c from GNU emacs-20.2 */
3563 #include <lib$routines.h>
3567 Perl_my_unexec(pTHX)
3569 PERL_UNUSED_CONTEXT;
3571 SV * prog = newSVpv(BIN_EXP, 0);
3572 SV * file = newSVpv(PL_origfilename, 0);
3576 sv_catpvs(prog, "/perl");
3577 sv_catpvs(file, ".perldump");
3579 unexec(SvPVX(file), SvPVX(prog), &etext, sbrk(0), 0);
3580 /* unexec prints msg to stderr in case of failure */
3581 PerlProc_exit(status);
3584 lib$signal(SS$_DEBUG); /* ssdef.h #included from vmsish.h */
3585 # elif defined(WIN32) || defined(__CYGWIN__)
3586 Perl_croak(aTHX_ "dump is not supported");
3588 ABORT(); /* for use with undump */
3593 /* initialize curinterp */
3599 # define PERLVAR(prefix,var,type)
3600 # define PERLVARA(prefix,var,n,type)
3601 # if defined(PERL_IMPLICIT_CONTEXT)
3602 # define PERLVARI(prefix,var,type,init) aTHX->prefix##var = init;
3603 # define PERLVARIC(prefix,var,type,init) aTHX->prefix##var = init;
3605 # define PERLVARI(prefix,var,type,init) PERL_GET_INTERP->var = init;
3606 # define PERLVARIC(prefix,var,type,init) PERL_GET_INTERP->var = init;
3608 # include "intrpvar.h"
3614 # define PERLVAR(prefix,var,type)
3615 # define PERLVARA(prefix,var,n,type)
3616 # define PERLVARI(prefix,var,type,init) PL_##var = init;
3617 # define PERLVARIC(prefix,var,type,init) PL_##var = init;
3618 # include "intrpvar.h"
3628 S_init_main_stash(pTHX)
3633 PL_curstash = PL_defstash = (HV *)SvREFCNT_inc_simple_NN(newHV());
3634 /* We know that the string "main" will be in the global shared string
3635 table, so it's a small saving to use it rather than allocate another
3637 PL_curstname = newSVpvs_share("main");
3638 gv = gv_fetchpvs("main::", GV_ADD|GV_NOTQUAL, SVt_PVHV);
3639 /* If we hadn't caused another reference to "main" to be in the shared
3640 string table above, then it would be worth reordering these two,
3641 because otherwise all we do is delete "main" from it as a consequence
3642 of the SvREFCNT_dec, only to add it again with hv_name_set */
3643 SvREFCNT_dec(GvHV(gv));
3644 hv_name_set(PL_defstash, "main", 4, 0);
3645 GvHV(gv) = MUTABLE_HV(SvREFCNT_inc_simple(PL_defstash));
3647 PL_incgv = gv_HVadd(gv_AVadd(gv_fetchpvs("INC", GV_ADD|GV_NOTQUAL,
3649 SvREFCNT_inc_simple_void(PL_incgv); /* Don't allow it to be freed */
3650 GvMULTI_on(PL_incgv);
3651 PL_hintgv = gv_fetchpvs("\010", GV_ADD|GV_NOTQUAL, SVt_PV); /* ^H */
3652 GvMULTI_on(PL_hintgv);
3653 PL_defgv = gv_fetchpvs("_", GV_ADD|GV_NOTQUAL, SVt_PVAV);
3654 SvREFCNT_inc_simple_void(PL_defgv);
3655 PL_errgv = gv_HVadd(gv_fetchpvs("@", GV_ADD|GV_NOTQUAL, SVt_PV));
3656 SvREFCNT_inc_simple_void(PL_errgv);
3657 GvMULTI_on(PL_errgv);
3658 PL_replgv = gv_fetchpvs("\022", GV_ADD|GV_NOTQUAL, SVt_PV); /* ^R */
3659 GvMULTI_on(PL_replgv);
3660 (void)Perl_form(aTHX_ "%240s",""); /* Preallocate temp - for immediate signals. */
3661 #ifdef PERL_DONT_CREATE_GVSV
3664 sv_grow(ERRSV, 240); /* Preallocate - for immediate signals. */
3666 SET_CURSTASH(PL_defstash);
3667 CopSTASH_set(&PL_compiling, PL_defstash);
3668 PL_debstash = GvHV(gv_fetchpvs("DB::", GV_ADDMULTI, SVt_PVHV));
3669 PL_globalstash = GvHV(gv_fetchpvs("CORE::GLOBAL::", GV_ADDMULTI,
3671 /* We must init $/ before switches are processed. */
3672 sv_setpvs(get_sv("/", GV_ADD), "\n");
3676 S_open_script(pTHX_ const char *scriptname, bool dosearch, bool *suidscript)
3679 PerlIO *rsfp = NULL;
3683 PERL_ARGS_ASSERT_OPEN_SCRIPT;
3686 PL_origfilename = savepvs("-e");
3689 /* if find_script() returns, it returns a malloc()-ed value */
3690 scriptname = PL_origfilename = find_script(scriptname, dosearch, NULL, 1);
3692 if (strnEQ(scriptname, "/dev/fd/", 8) && isDIGIT(scriptname[8]) ) {
3693 const char *s = scriptname + 8;
3699 * Tell apart "normal" usage of fdscript, e.g.
3700 * with bash on FreeBSD:
3701 * perl <( echo '#!perl -DA'; echo 'print "$0\n"')
3702 * from usage in suidperl.
3703 * Does any "normal" usage leave garbage after the number???
3704 * Is it a mistake to use a similar /dev/fd/ construct for
3709 * Be supersafe and do some sanity-checks.
3710 * Still, can we be sure we got the right thing?
3713 Perl_croak(aTHX_ "Wrong syntax (suid) fd script name \"%s\"\n", s);
3716 Perl_croak(aTHX_ "Missing (suid) fd script name\n");
3718 scriptname = savepv(s + 1);
3719 Safefree(PL_origfilename);
3720 PL_origfilename = (char *)scriptname;
3725 CopFILE_free(PL_curcop);
3726 CopFILE_set(PL_curcop, PL_origfilename);
3727 if (*PL_origfilename == '-' && PL_origfilename[1] == '\0')
3728 scriptname = (char *)"";
3729 if (fdscript >= 0) {
3730 rsfp = PerlIO_fdopen(fdscript,PERL_SCRIPT_MODE);
3732 else if (!*scriptname) {
3733 forbid_setid(0, *suidscript);
3737 #ifdef FAKE_BIT_BUCKET
3738 /* This hack allows one not to have /dev/null (or BIT_BUCKET as it
3739 * is called) and still have the "-e" work. (Believe it or not,
3740 * a /dev/null is required for the "-e" to work because source
3741 * filter magic is used to implement it. ) This is *not* a general
3742 * replacement for a /dev/null. What we do here is create a temp
3743 * file (an empty file), open up that as the script, and then
3744 * immediately close and unlink it. Close enough for jazz. */
3745 #define FAKE_BIT_BUCKET_PREFIX "/tmp/perlnull-"
3746 #define FAKE_BIT_BUCKET_SUFFIX "XXXXXXXX"
3747 #define FAKE_BIT_BUCKET_TEMPLATE FAKE_BIT_BUCKET_PREFIX FAKE_BIT_BUCKET_SUFFIX
3748 char tmpname[sizeof(FAKE_BIT_BUCKET_TEMPLATE)] = {
3749 FAKE_BIT_BUCKET_TEMPLATE
3751 const char * const err = "Failed to create a fake bit bucket";
3752 if (strEQ(scriptname, BIT_BUCKET)) {
3753 #ifdef HAS_MKSTEMP /* Hopefully mkstemp() is safe here. */
3754 int tmpfd = mkstemp(tmpname);
3756 scriptname = tmpname;
3759 Perl_croak(aTHX_ err);
3762 scriptname = mktemp(tmpname);
3764 Perl_croak(aTHX_ err);
3769 rsfp = PerlIO_open(scriptname,PERL_SCRIPT_MODE);
3770 #ifdef FAKE_BIT_BUCKET
3771 if (memEQ(scriptname, FAKE_BIT_BUCKET_PREFIX,
3772 sizeof(FAKE_BIT_BUCKET_PREFIX) - 1)
3773 && strlen(scriptname) == sizeof(tmpname) - 1) {
3776 scriptname = BIT_BUCKET;
3780 /* PSz 16 Sep 03 Keep neat error message */
3782 Perl_croak(aTHX_ "Can't open "BIT_BUCKET": %s\n", Strerror(errno));
3784 Perl_croak(aTHX_ "Can't open perl script \"%s\": %s\n",
3785 CopFILE(PL_curcop), Strerror(errno));
3787 #if defined(HAS_FCNTL) && defined(F_SETFD)
3788 /* ensure close-on-exec */
3789 fcntl(PerlIO_fileno(rsfp), F_SETFD, 1);
3792 if (PerlLIO_fstat(PerlIO_fileno(rsfp), &tmpstatbuf) >= 0
3793 && S_ISDIR(tmpstatbuf.st_mode))
3794 Perl_croak(aTHX_ "Can't open perl script \"%s\": %s\n",
3802 * I_SYSSTATVFS HAS_FSTATVFS
3804 * I_STATFS HAS_FSTATFS HAS_GETFSSTAT
3805 * I_MNTENT HAS_GETMNTENT HAS_HASMNTOPT
3806 * here so that metaconfig picks them up. */
3809 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
3810 /* Don't even need this function. */
3813 S_validate_suid(pTHX_ PerlIO *rsfp)
3815 const Uid_t my_uid = PerlProc_getuid();
3816 const Uid_t my_euid = PerlProc_geteuid();
3817 const Gid_t my_gid = PerlProc_getgid();
3818 const Gid_t my_egid = PerlProc_getegid();
3820 PERL_ARGS_ASSERT_VALIDATE_SUID;
3822 if (my_euid != my_uid || my_egid != my_gid) { /* (suidperl doesn't exist, in fact) */
3825 PerlLIO_fstat(PerlIO_fileno(rsfp),&PL_statbuf); /* may be either wrapped or real suid */
3826 if ((my_euid != my_uid && my_euid == PL_statbuf.st_uid && PL_statbuf.st_mode & S_ISUID)
3828 (my_egid != my_gid && my_egid == PL_statbuf.st_gid && PL_statbuf.st_mode & S_ISGID)
3831 Perl_croak(aTHX_ "YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
3832 FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
3833 /* not set-id, must be wrapped */
3836 #endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
3839 S_find_beginning(pTHX_ SV* linestr_sv, PerlIO *rsfp)
3845 PERL_ARGS_ASSERT_FIND_BEGINNING;
3847 /* skip forward in input to the real script? */
3850 if ((s = sv_gets(linestr_sv, rsfp, 0)) == NULL)
3851 Perl_croak(aTHX_ "No Perl script found in input\n");
3853 } while (!(*s == '#' && s[1] == '!' && ((s = instr(s,"perl")) || (s = instr(s2,"PERL")))));
3854 PerlIO_ungetc(rsfp, '\n'); /* to keep line count right */
3855 while (*s && !(isSPACE (*s) || *s == '#')) s++;
3857 while (*s == ' ' || *s == '\t') s++;
3859 while (isDIGIT(s2[-1]) || s2[-1] == '-' || s2[-1] == '.'
3860 || s2[-1] == '_') s2--;
3861 if (strnEQ(s2-4,"perl",4))
3862 while ((s = moreswitches(s)))
3871 /* no need to do anything here any more if we don't
3873 #if !NO_TAINT_SUPPORT
3875 const Uid_t my_uid = PerlProc_getuid();
3876 const Uid_t my_euid = PerlProc_geteuid();
3877 const Gid_t my_gid = PerlProc_getgid();
3878 const Gid_t my_egid = PerlProc_getegid();
3880 /* Should not happen: */
3881 CHECK_MALLOC_TAINT(my_uid && (my_euid != my_uid || my_egid != my_gid));
3882 TAINTING_set( TAINTING_get | (my_uid && (my_euid != my_uid || my_egid != my_gid)) );
3886 * Should go by suidscript, not uid!=euid: why disallow
3887 * system("ls") in scripts run from setuid things?
3888 * Or, is this run before we check arguments and set suidscript?
3889 * What about SETUID_SCRIPTS_ARE_SECURE_NOW: could we use fdscript then?
3890 * (We never have suidscript, can we be sure to have fdscript?)
3891 * Or must then go by UID checks? See comments in forbid_setid also.
3895 /* This is used very early in the lifetime of the program,
3896 * before even the options are parsed, so PL_tainting has
3897 * not been initialized properly. */
3899 Perl_doing_taint(int argc, char *argv[], char *envp[])
3901 #ifndef PERL_IMPLICIT_SYS
3902 /* If we have PERL_IMPLICIT_SYS we can't call getuid() et alia
3903 * before we have an interpreter-- and the whole point of this
3904 * function is to be called at such an early stage. If you are on
3905 * a system with PERL_IMPLICIT_SYS but you do have a concept of
3906 * "tainted because running with altered effective ids', you'll
3907 * have to add your own checks somewhere in here. The two most
3908 * known samples of 'implicitness' are Win32 and NetWare, neither
3909 * of which has much of concept of 'uids'. */
3910 Uid_t uid = PerlProc_getuid();
3911 Uid_t euid = PerlProc_geteuid();
3912 Gid_t gid = PerlProc_getgid();
3913 Gid_t egid = PerlProc_getegid();
3920 if (uid && (euid != uid || egid != gid))
3922 #endif /* !PERL_IMPLICIT_SYS */
3923 /* This is a really primitive check; environment gets ignored only
3924 * if -T are the first chars together; otherwise one gets
3925 * "Too late" message. */
3926 if ( argc > 1 && argv[1][0] == '-'
3927 && (argv[1][1] == 't' || argv[1][1] == 'T') )
3932 /* Passing the flag as a single char rather than a string is a slight space
3933 optimisation. The only message that isn't /^-.$/ is
3934 "program input from stdin", which is substituted in place of '\0', which
3935 could never be a command line flag. */
3937 S_forbid_setid(pTHX_ const char flag, const bool suidscript) /* g */
3940 char string[3] = "-x";
3941 const char *message = "program input from stdin";
3948 #ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
3949 if (PerlProc_getuid() != PerlProc_geteuid())
3950 Perl_croak(aTHX_ "No %s allowed while running setuid", message);
3951 if (PerlProc_getgid() != PerlProc_getegid())
3952 Perl_croak(aTHX_ "No %s allowed while running setgid", message);
3953 #endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
3955 Perl_croak(aTHX_ "No %s allowed with (suid) fdscript", message);
3959 Perl_init_dbargs(pTHX)
3961 AV *const args = PL_dbargs = GvAV(gv_AVadd((gv_fetchpvs("DB::args",
3966 /* Someone has already created it.
3967 It might have entries, and if we just turn off AvREAL(), they will
3968 "leak" until global destruction. */
3970 if (SvTIED_mg((const SV *)args, PERL_MAGIC_tied))
3971 Perl_croak(aTHX_ "Cannot set tied @DB::args");
3973 AvREIFY_only(PL_dbargs);
3977 Perl_init_debugger(pTHX)
3980 HV * const ostash = PL_curstash;
3982 PL_curstash = (HV *)SvREFCNT_inc_simple(PL_debstash);
3984 Perl_init_dbargs(aTHX);
3985 PL_DBgv = gv_fetchpvs("DB::DB", GV_ADDMULTI, SVt_PVGV);
3986 PL_DBline = gv_fetchpvs("DB::dbline", GV_ADDMULTI, SVt_PVAV);
3987 PL_DBsub = gv_HVadd(gv_fetchpvs("DB::sub", GV_ADDMULTI, SVt_PVHV));
3988 PL_DBsingle = GvSV((gv_fetchpvs("DB::single", GV_ADDMULTI, SVt_PV)));
3989 if (!SvIOK(PL_DBsingle))
3990 sv_setiv(PL_DBsingle, 0);
3991 PL_DBtrace = GvSV((gv_fetchpvs("DB::trace", GV_ADDMULTI, SVt_PV)));
3992 if (!SvIOK(PL_DBtrace))
3993 sv_setiv(PL_DBtrace, 0);
3994 PL_DBsignal = GvSV((gv_fetchpvs("DB::signal", GV_ADDMULTI, SVt_PV)));
3995 if (!SvIOK(PL_DBsignal))
3996 sv_setiv(PL_DBsignal, 0);
3997 SvREFCNT_dec(PL_curstash);
3998 PL_curstash = ostash;
4001 #ifndef STRESS_REALLOC
4002 #define REASONABLE(size) (size)
4004 #define REASONABLE(size) (1) /* unreasonable */
4008 Perl_init_stacks(pTHX)
4011 /* start with 128-item stack and 8K cxstack */
4012 PL_curstackinfo = new_stackinfo(REASONABLE(128),
4013 REASONABLE(8192/sizeof(PERL_CONTEXT) - 1));
4014 PL_curstackinfo->si_type = PERLSI_MAIN;
4015 PL_curstack = PL_curstackinfo->si_stack;
4016 PL_mainstack = PL_curstack; /* remember in case we switch stacks */
4018 PL_stack_base = AvARRAY(PL_curstack);
4019 PL_stack_sp = PL_stack_base;
4020 PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
4022 Newx(PL_tmps_stack,REASONABLE(128),SV*);
4025 PL_tmps_max = REASONABLE(128);
4027 Newx(PL_markstack,REASONABLE(32),I32);
4028 PL_markstack_ptr = PL_markstack;
4029 PL_markstack_max = PL_markstack + REASONABLE(32);
4033 Newx(PL_scopestack,REASONABLE(32),I32);
4035 Newx(PL_scopestack_name,REASONABLE(32),const char*);
4037 PL_scopestack_ix = 0;
4038 PL_scopestack_max = REASONABLE(32);
4040 Newx(PL_savestack,REASONABLE(128),ANY);
4041 PL_savestack_ix = 0;
4042 PL_savestack_max = REASONABLE(128);
4051 while (PL_curstackinfo->si_next)
4052 PL_curstackinfo = PL_curstackinfo->si_next;
4053 while (PL_curstackinfo) {
4054 PERL_SI *p = PL_curstackinfo->si_prev;
4055 /* curstackinfo->si_stack got nuked by sv_free_arenas() */
4056 Safefree(PL_curstackinfo->si_cxstack);
4057 Safefree(PL_curstackinfo);
4058 PL_curstackinfo = p;
4060 Safefree(PL_tmps_stack);
4061 Safefree(PL_markstack);
4062 Safefree(PL_scopestack);
4064 Safefree(PL_scopestack_name);
4066 Safefree(PL_savestack);
4070 Perl_populate_isa(pTHX_ const char *name, STRLEN len, ...)
4072 GV *const gv = gv_fetchpvn(name, len, GV_ADD | GV_ADDMULTI, SVt_PVAV);
4073 AV *const isa = GvAVn(gv);
4076 PERL_ARGS_ASSERT_POPULATE_ISA;
4078 if(AvFILLp(isa) != -1)
4081 /* NOTE: No support for tied ISA */
4083 va_start(args, len);
4085 const char *const parent = va_arg(args, const char*);
4090 parent_len = va_arg(args, size_t);
4092 /* Arguments are supplied with a trailing :: */
4093 assert(parent_len > 2);
4094 assert(parent[parent_len - 1] == ':');
4095 assert(parent[parent_len - 2] == ':');
4096 av_push(isa, newSVpvn(parent, parent_len - 2));
4097 (void) gv_fetchpvn(parent, parent_len, GV_ADD, SVt_PVGV);
4104 S_init_predump_symbols(pTHX)
4110 sv_setpvs(get_sv("\"", GV_ADD), " ");
4111 PL_ofsgv = (GV*)SvREFCNT_inc(gv_fetchpvs(",", GV_ADD|GV_NOTQUAL, SVt_PV));
4114 /* Historically, PVIOs were blessed into IO::Handle, unless
4115 FileHandle was loaded, in which case they were blessed into
4116 that. Action at a distance.
4117 However, if we simply bless into IO::Handle, we break code
4118 that assumes that PVIOs will have (among others) a seek
4119 method. IO::File inherits from IO::Handle and IO::Seekable,
4120 and provides the needed methods. But if we simply bless into
4121 it, then we break code that assumed that by loading
4122 IO::Handle, *it* would work.
4123 So a compromise is to set up the correct @IO::File::ISA,
4124 so that code that does C<use IO::Handle>; will still work.
4127 Perl_populate_isa(aTHX_ STR_WITH_LEN("IO::File::ISA"),
4128 STR_WITH_LEN("IO::Handle::"),
4129 STR_WITH_LEN("IO::Seekable::"),
4130 STR_WITH_LEN("Exporter::"),
4133 PL_stdingv = gv_fetchpvs("STDIN", GV_ADD|GV_NOTQUAL, SVt_PVIO);
4134 GvMULTI_on(PL_stdingv);
4135 io = GvIOp(PL_stdingv);
4136 IoTYPE(io) = IoTYPE_RDONLY;
4137 IoIFP(io) = PerlIO_stdin();
4138 tmpgv = gv_fetchpvs("stdin", GV_ADD|GV_NOTQUAL, SVt_PV);
4140 GvIOp(tmpgv) = MUTABLE_IO(SvREFCNT_inc_simple(io));
4142 tmpgv = gv_fetchpvs("STDOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO);
4145 IoTYPE(io) = IoTYPE_WRONLY;
4146 IoOFP(io) = IoIFP(io) = PerlIO_stdout();
4148 tmpgv = gv_fetchpvs("stdout", GV_ADD|GV_NOTQUAL, SVt_PV);
4150 GvIOp(tmpgv) = MUTABLE_IO(SvREFCNT_inc_simple(io));
4152 PL_stderrgv = gv_fetchpvs("STDERR", GV_ADD|GV_NOTQUAL, SVt_PVIO);
4153 GvMULTI_on(PL_stderrgv);
4154 io = GvIOp(PL_stderrgv);
4155 IoTYPE(io) = IoTYPE_WRONLY;
4156 IoOFP(io) = IoIFP(io) = PerlIO_stderr();
4157 tmpgv = gv_fetchpvs("stderr", GV_ADD|GV_NOTQUAL, SVt_PV);
4159 GvIOp(tmpgv) = MUTABLE_IO(SvREFCNT_inc_simple(io));
4161 PL_statname = newSVpvs(""); /* last filename we did stat on */
4165 Perl_init_argv_symbols(pTHX_ int argc, char **argv)
4169 PERL_ARGS_ASSERT_INIT_ARGV_SYMBOLS;
4171 argc--,argv++; /* skip name of script */
4172 if (PL_doswitches) {
4173 for (; argc > 0 && **argv == '-'; argc--,argv++) {
4177 if (argv[0][1] == '-' && !argv[0][2]) {
4181 if ((s = strchr(argv[0], '='))) {
4182 const char *const start_name = argv[0] + 1;
4183 sv_setpv(GvSV(gv_fetchpvn_flags(start_name, s - start_name,
4184 TRUE, SVt_PV)), s + 1);
4187 sv_setiv(GvSV(gv_fetchpv(argv[0]+1, GV_ADD, SVt_PV)),1);
4190 if ((PL_argvgv = gv_fetchpvs("ARGV", GV_ADD|GV_NOTQUAL, SVt_PVAV))) {
4191 GvMULTI_on(PL_argvgv);
4192 (void)gv_AVadd(PL_argvgv);
4193 av_clear(GvAVn(PL_argvgv));
4194 for (; argc > 0; argc--,argv++) {
4195 SV * const sv = newSVpv(argv[0],0);
4196 av_push(GvAVn(PL_argvgv),sv);
4197 if (!(PL_unicode & PERL_UNICODE_LOCALE_FLAG) || PL_utf8locale) {
4198 if (PL_unicode & PERL_UNICODE_ARGV_FLAG)
4201 if (PL_unicode & PERL_UNICODE_WIDESYSCALLS_FLAG) /* Sarathy? */
4202 (void)sv_utf8_decode(sv);
4206 if (PL_inplace && (!PL_argvgv || AvFILL(GvAV(PL_argvgv)) == -1))
4207 Perl_ck_warner_d(aTHX_ packWARN(WARN_INPLACE),
4208 "-i used with no filenames on the command line, "
4209 "reading from STDIN");
4213 S_init_postdump_symbols(pTHX_ int argc, char **argv, char **env)
4218 PERL_ARGS_ASSERT_INIT_POSTDUMP_SYMBOLS;
4220 PL_toptarget = newSV_type(SVt_PVIV);
4221 sv_setpvs(PL_toptarget, "");
4222 PL_bodytarget = newSV_type(SVt_PVIV);
4223 sv_setpvs(PL_bodytarget, "");
4224 PL_formtarget = PL_bodytarget;
4228 init_argv_symbols(argc,argv);
4230 if ((tmpgv = gv_fetchpvs("0", GV_ADD|GV_NOTQUAL, SVt_PV))) {
4231 sv_setpv(GvSV(tmpgv),PL_origfilename);
4233 if ((PL_envgv = gv_fetchpvs("ENV", GV_ADD|GV_NOTQUAL, SVt_PVHV))) {
4235 bool env_is_not_environ;
4236 GvMULTI_on(PL_envgv);
4237 hv = GvHVn(PL_envgv);
4238 hv_magic(hv, NULL, PERL_MAGIC_env);
4240 #ifdef USE_ENVIRON_ARRAY
4241 /* Note that if the supplied env parameter is actually a copy
4242 of the global environ then it may now point to free'd memory
4243 if the environment has been modified since. To avoid this
4244 problem we treat env==NULL as meaning 'use the default'
4248 env_is_not_environ = env != environ;
4249 if (env_is_not_environ
4250 # ifdef USE_ITHREADS
4251 && PL_curinterp == aTHX
4260 for (; *env; env++) {
4263 if (!(s = strchr(old_var,'=')) || s == old_var)
4266 #if defined(MSDOS) && !defined(DJGPP)
4268 (void)strupr(old_var);
4271 sv = newSVpv(s+1, 0);
4272 (void)hv_store(hv, old_var, s - old_var, sv, 0);
4273 if (env_is_not_environ)
4277 #endif /* USE_ENVIRON_ARRAY */
4278 #endif /* !PERL_MICRO */
4282 /* touch @F array to prevent spurious warnings 20020415 MJD */
4284 (void) get_av("main::F", GV_ADD | GV_ADDMULTI);
4289 S_init_perllib(pTHX)
4293 const char *perl5lib = NULL;
4296 #if defined(WIN32) && !defined(PERL_IS_MINIPERL)
4300 if (!TAINTING_get) {
4302 perl5lib = PerlEnv_getenv("PERL5LIB");
4304 * It isn't possible to delete an environment variable with
4305 * PERL_USE_SAFE_PUTENV set unless unsetenv() is also available, so in that
4306 * case we treat PERL5LIB as undefined if it has a zero-length value.
4308 #if defined(PERL_USE_SAFE_PUTENV) && ! defined(HAS_UNSETENV)
4309 if (perl5lib && *perl5lib != '\0')
4313 incpush_use_sep(perl5lib, 0, INCPUSH_ADD_SUB_DIRS);
4315 s = PerlEnv_getenv("PERLLIB");
4317 incpush_use_sep(s, 0, 0);
4320 /* Treat PERL5?LIB as a possible search list logical name -- the
4321 * "natural" VMS idiom for a Unix path string. We allow each
4322 * element to be a set of |-separated directories for compatibility.
4326 if (my_trnlnm("PERL5LIB",buf,0))
4328 incpush_use_sep(buf, 0, INCPUSH_ADD_SUB_DIRS);
4329 } while (my_trnlnm("PERL5LIB",buf,++idx));
4331 while (my_trnlnm("PERLLIB",buf,idx++))
4332 incpush_use_sep(buf, 0, 0);
4337 #ifndef PERL_IS_MINIPERL
4338 /* miniperl gets just -I..., the split of $ENV{PERL5LIB}, and "." in @INC
4339 (and not the architecture specific directories from $ENV{PERL5LIB}) */
4341 /* Use the ~-expanded versions of APPLLIB (undocumented),
4342 SITEARCH, SITELIB, VENDORARCH, VENDORLIB, ARCHLIB and PRIVLIB
4345 S_incpush_use_sep(aTHX_ STR_WITH_LEN(APPLLIB_EXP),
4346 INCPUSH_ADD_SUB_DIRS|INCPUSH_CAN_RELOCATE);
4350 /* sitearch is always relative to sitelib on Windows for
4351 * DLL-based path intuition to work correctly */
4352 # if !defined(WIN32)
4353 S_incpush_use_sep(aTHX_ STR_WITH_LEN(SITEARCH_EXP),
4354 INCPUSH_CAN_RELOCATE);
4360 /* this picks up sitearch as well */
4361 s = win32_get_sitelib(PERL_FS_VERSION, &len);
4363 incpush_use_sep(s, len, INCPUSH_ADD_SUB_DIRS|INCPUSH_CAN_RELOCATE);
4365 S_incpush_use_sep(aTHX_ STR_WITH_LEN(SITELIB_EXP), INCPUSH_CAN_RELOCATE);
4369 #ifdef PERL_VENDORARCH_EXP
4370 /* vendorarch is always relative to vendorlib on Windows for
4371 * DLL-based path intuition to work correctly */
4372 # if !defined(WIN32)
4373 S_incpush_use_sep(aTHX_ STR_WITH_LEN(PERL_VENDORARCH_EXP),
4374 INCPUSH_CAN_RELOCATE);
4378 #ifdef PERL_VENDORLIB_EXP
4380 /* this picks up vendorarch as well */
4381 s = win32_get_vendorlib(PERL_FS_VERSION, &len);
4383 incpush_use_sep(s, len, INCPUSH_ADD_SUB_DIRS|INCPUSH_CAN_RELOCATE);
4385 S_incpush_use_sep(aTHX_ STR_WITH_LEN(PERL_VENDORLIB_EXP),
4386 INCPUSH_CAN_RELOCATE);
4391 S_incpush_use_sep(aTHX_ STR_WITH_LEN(ARCHLIB_EXP), INCPUSH_CAN_RELOCATE);
4395 # define PRIVLIB_EXP "/usr/local/lib/perl5:/usr/local/lib/perl"
4399 s = win32_get_privlib(PERL_FS_VERSION, &len);
4401 incpush_use_sep(s, len, INCPUSH_ADD_SUB_DIRS|INCPUSH_CAN_RELOCATE);
4404 S_incpush_use_sep(aTHX_ PRIVLIB_EXP, 0, INCPUSH_CAN_RELOCATE);
4406 S_incpush_use_sep(aTHX_ STR_WITH_LEN(PRIVLIB_EXP), INCPUSH_CAN_RELOCATE);
4410 #ifdef PERL_OTHERLIBDIRS
4411 S_incpush_use_sep(aTHX_ STR_WITH_LEN(PERL_OTHERLIBDIRS),
4412 INCPUSH_ADD_VERSIONED_SUB_DIRS|INCPUSH_NOT_BASEDIR
4413 |INCPUSH_CAN_RELOCATE);
4416 if (!TAINTING_get) {
4419 * It isn't possible to delete an environment variable with
4420 * PERL_USE_SAFE_PUTENV set unless unsetenv() is also available, so in that
4421 * case we treat PERL5LIB as undefined if it has a zero-length value.
4423 #if defined(PERL_USE_SAFE_PUTENV) && ! defined(HAS_UNSETENV)
4424 if (perl5lib && *perl5lib != '\0')
4428 incpush_use_sep(perl5lib, 0,
4429 INCPUSH_ADD_OLD_VERS|INCPUSH_NOT_BASEDIR);
4431 /* Treat PERL5?LIB as a possible search list logical name -- the
4432 * "natural" VMS idiom for a Unix path string. We allow each
4433 * element to be a set of |-separated directories for compatibility.
4437 if (my_trnlnm("PERL5LIB",buf,0))
4439 incpush_use_sep(buf, 0,
4440 INCPUSH_ADD_OLD_VERS|INCPUSH_NOT_BASEDIR);
4441 } while (my_trnlnm("PERL5LIB",buf,++idx));
4445 /* Use the ~-expanded versions of APPLLIB (undocumented),
4446 SITELIB and VENDORLIB for older versions
4449 S_incpush_use_sep(aTHX_ STR_WITH_LEN(APPLLIB_EXP), INCPUSH_ADD_OLD_VERS
4450 |INCPUSH_NOT_BASEDIR|INCPUSH_CAN_RELOCATE);
4453 #if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
4454 /* Search for version-specific dirs below here */
4455 S_incpush_use_sep(aTHX_ STR_WITH_LEN(SITELIB_STEM),
4456 INCPUSH_ADD_OLD_VERS|INCPUSH_CAN_RELOCATE);
4460 #if defined(PERL_VENDORLIB_STEM) && defined(PERL_INC_VERSION_LIST)
4461 /* Search for version-specific dirs below here */
4462 S_incpush_use_sep(aTHX_ STR_WITH_LEN(PERL_VENDORLIB_STEM),
4463 INCPUSH_ADD_OLD_VERS|INCPUSH_CAN_RELOCATE);
4466 #ifdef PERL_OTHERLIBDIRS
4467 S_incpush_use_sep(aTHX_ STR_WITH_LEN(PERL_OTHERLIBDIRS),
4468 INCPUSH_ADD_OLD_VERS|INCPUSH_ADD_ARCHONLY_SUB_DIRS
4469 |INCPUSH_CAN_RELOCATE);
4471 #endif /* !PERL_IS_MINIPERL */
4474 S_incpush(aTHX_ STR_WITH_LEN("."), 0);
4477 #if defined(DOSISH) || defined(__SYMBIAN32__)
4478 # define PERLLIB_SEP ';'
4481 # define PERLLIB_SEP '|'
4483 # define PERLLIB_SEP ':'
4486 #ifndef PERLLIB_MANGLE
4487 # define PERLLIB_MANGLE(s,n) (s)
4490 #ifndef PERL_IS_MINIPERL
4491 /* Push a directory onto @INC if it exists.
4492 Generate a new SV if we do this, to save needing to copy the SV we push
4495 S_incpush_if_exists(pTHX_ AV *const av, SV *dir, SV *const stem)
4500 PERL_ARGS_ASSERT_INCPUSH_IF_EXISTS;
4502 if (PerlLIO_stat(SvPVX_const(dir), &tmpstatbuf) >= 0 &&
4503 S_ISDIR(tmpstatbuf.st_mode)) {
4505 dir = newSVsv(stem);
4507 /* Truncate dir back to stem. */
4508 SvCUR_set(dir, SvCUR(stem));
4515 S_mayberelocate(pTHX_ const char *const dir, STRLEN len, U32 flags)
4517 const U8 canrelocate = (U8)flags & INCPUSH_CAN_RELOCATE;
4520 PERL_ARGS_ASSERT_MAYBERELOCATE;
4523 /* I am not convinced that this is valid when PERLLIB_MANGLE is
4524 defined to so something (in os2/os2.c), but the code has been
4525 this way, ignoring any possible changed of length, since
4526 760ac839baf413929cd31cc32ffd6dba6b781a81 (5.003_02) so I'll leave
4528 libdir = newSVpvn(PERLLIB_MANGLE(dir, len), len);
4534 if ((unix = tounixspec_ts(SvPV(libdir,len),NULL)) != NULL) {
4536 while (unix[len-1] == '/') len--; /* Cosmetic */
4537 sv_usepvn(libdir,unix,len);
4540 PerlIO_printf(Perl_error_log,
4541 "Failed to unixify @INC element \"%s\"\n",
4542 SvPV_nolen_const(libdir));
4546 /* Do the if() outside the #ifdef to avoid warnings about an unused
4549 #ifdef PERL_RELOCATABLE_INC
4551 * Relocatable include entries are marked with a leading .../
4554 * 0: Remove that leading ".../"
4555 * 1: Remove trailing executable name (anything after the last '/')
4556 * from the perl path to give a perl prefix
4558 * While the @INC element starts "../" and the prefix ends with a real
4559 * directory (ie not . or ..) chop that real directory off the prefix
4560 * and the leading "../" from the @INC element. ie a logical "../"
4562 * Finally concatenate the prefix and the remainder of the @INC element
4563 * The intent is that /usr/local/bin/perl and .../../lib/perl5
4564 * generates /usr/local/lib/perl5
4566 const char *libpath = SvPVX(libdir);
4567 STRLEN libpath_len = SvCUR(libdir);
4568 if (libpath_len >= 4 && memEQ (libpath, ".../", 4)) {
4570 SV * const caret_X = get_sv("\030", 0);
4571 /* Going to use the SV just as a scratch buffer holding a C
4577 /* $^X is *the* source of taint if tainting is on, hence
4578 SvPOK() won't be true. */
4580 assert(SvPOKp(caret_X));
4581 prefix_sv = newSVpvn_flags(SvPVX(caret_X), SvCUR(caret_X),
4583 /* Firstly take off the leading .../
4584 If all else fail we'll do the paths relative to the current
4586 sv_chop(libdir, libpath + 4);
4587 /* Don't use SvPV as we're intentionally bypassing taining,
4588 mortal copies that the mg_get of tainting creates, and
4589 corruption that seems to come via the save stack.
4590 I guess that the save stack isn't correctly set up yet. */
4591 libpath = SvPVX(libdir);
4592 libpath_len = SvCUR(libdir);
4594 /* This would work more efficiently with memrchr, but as it's
4595 only a GNU extension we'd need to probe for it and
4596 implement our own. Not hard, but maybe not worth it? */
4598 prefix = SvPVX(prefix_sv);
4599 lastslash = strrchr(prefix, '/');
4601 /* First time in with the *lastslash = '\0' we just wipe off
4602 the trailing /perl from (say) /usr/foo/bin/perl
4606 while ((*lastslash = '\0'), /* Do that, come what may. */
4607 (libpath_len >= 3 && memEQ(libpath, "../", 3)
4608 && (lastslash = strrchr(prefix, '/')))) {
4609 if (lastslash[1] == '\0'
4610 || (lastslash[1] == '.'
4611 && (lastslash[2] == '/' /* ends "/." */
4612 || (lastslash[2] == '/'
4613 && lastslash[3] == '/' /* or "/.." */
4615 /* Prefix ends "/" or "/." or "/..", any of which
4616 are fishy, so don't do any more logical cleanup.
4620 /* Remove leading "../" from path */
4623 /* Next iteration round the loop removes the last
4624 directory name from prefix by writing a '\0' in
4625 the while clause. */
4627 /* prefix has been terminated with a '\0' to the correct
4628 length. libpath points somewhere into the libdir SV.
4629 We need to join the 2 with '/' and drop the result into
4631 tempsv = Perl_newSVpvf(aTHX_ "%s/%s", prefix, libpath);
4632 SvREFCNT_dec(libdir);
4633 /* And this is the new libdir. */
4636 (PerlProc_getuid() != PerlProc_geteuid() ||
4637 PerlProc_getgid() != PerlProc_getegid())) {
4638 /* Need to taint relocated paths if running set ID */
4639 SvTAINTED_on(libdir);
4642 SvREFCNT_dec(prefix_sv);
4650 S_incpush(pTHX_ const char *const dir, STRLEN len, U32 flags)
4653 #ifndef PERL_IS_MINIPERL
4654 const U8 using_sub_dirs
4655 = (U8)flags & (INCPUSH_ADD_VERSIONED_SUB_DIRS
4656 |INCPUSH_ADD_ARCHONLY_SUB_DIRS|INCPUSH_ADD_OLD_VERS);
4657 const U8 add_versioned_sub_dirs
4658 = (U8)flags & INCPUSH_ADD_VERSIONED_SUB_DIRS;
4659 const U8 add_archonly_sub_dirs
4660 = (U8)flags & INCPUSH_ADD_ARCHONLY_SUB_DIRS;
4661 #ifdef PERL_INC_VERSION_LIST
4662 const U8 addoldvers = (U8)flags & INCPUSH_ADD_OLD_VERS;
4665 const U8 unshift = (U8)flags & INCPUSH_UNSHIFT;
4666 const U8 push_basedir = (flags & INCPUSH_NOT_BASEDIR) ? 0 : 1;
4667 AV *const inc = GvAVn(PL_incgv);
4669 PERL_ARGS_ASSERT_INCPUSH;
4672 /* Could remove this vestigial extra block, if we don't mind a lot of
4673 re-indenting diff noise. */
4675 SV *const libdir = mayberelocate(dir, len, flags);
4676 /* Change 20189146be79a0596543441fa369c6bf7f85103f, to fix RT#6665,
4677 arranged to unshift #! line -I onto the front of @INC. However,
4678 -I can add version and architecture specific libraries, and they
4679 need to go first. The old code assumed that it was always
4680 pushing. Hence to make it work, need to push the architecture
4681 (etc) libraries onto a temporary array, then "unshift" that onto
4682 the front of @INC. */
4683 #ifndef PERL_IS_MINIPERL
4684 AV *const av = (using_sub_dirs) ? (unshift ? newAV() : inc) : NULL;
4687 * BEFORE pushing libdir onto @INC we may first push version- and
4688 * archname-specific sub-directories.
4690 if (using_sub_dirs) {
4691 SV *subdir = newSVsv(libdir);
4692 #ifdef PERL_INC_VERSION_LIST
4693 /* Configure terminates PERL_INC_VERSION_LIST with a NULL */
4694 const char * const incverlist[] = { PERL_INC_VERSION_LIST };
4695 const char * const *incver;
4698 if (add_versioned_sub_dirs) {
4699 /* .../version/archname if -d .../version/archname */
4700 sv_catpvs(subdir, "/" PERL_FS_VERSION "/" ARCHNAME);
4701 subdir = S_incpush_if_exists(aTHX_ av, subdir, libdir);
4703 /* .../version if -d .../version */
4704 sv_catpvs(subdir, "/" PERL_FS_VERSION);
4705 subdir = S_incpush_if_exists(aTHX_ av, subdir, libdir);
4708 #ifdef PERL_INC_VERSION_LIST
4710 for (incver = incverlist; *incver; incver++) {
4711 /* .../xxx if -d .../xxx */
4712 Perl_sv_catpvf(aTHX_ subdir, "/%s", *incver);
4713 subdir = S_incpush_if_exists(aTHX_ av, subdir, libdir);
4718 if (add_archonly_sub_dirs) {
4719 /* .../archname if -d .../archname */
4720 sv_catpvs(subdir, "/" ARCHNAME);
4721 subdir = S_incpush_if_exists(aTHX_ av, subdir, libdir);
4725 assert (SvREFCNT(subdir) == 1);
4726 SvREFCNT_dec(subdir);
4728 #endif /* !PERL_IS_MINIPERL */
4729 /* finally add this lib directory at the end of @INC */
4731 #ifdef PERL_IS_MINIPERL
4732 const U32 extra = 0;
4734 U32 extra = av_len(av) + 1;
4736 av_unshift(inc, extra + push_basedir);
4738 av_store(inc, extra, libdir);
4739 #ifndef PERL_IS_MINIPERL
4741 /* av owns a reference, av_store() expects to be donated a
4742 reference, and av expects to be sane when it's cleared.
4743 If I wanted to be naughty and wrong, I could peek inside the
4744 implementation of av_clear(), realise that it uses
4745 SvREFCNT_dec() too, so av's array could be a run of NULLs,
4746 and so directly steal from it (with a memcpy() to inc, and
4747 then memset() to NULL them out. But people copy code from the
4748 core expecting it to be best practise, so let's use the API.
4749 Although studious readers will note that I'm not checking any
4751 av_store(inc, extra, SvREFCNT_inc(*av_fetch(av, extra, FALSE)));
4756 else if (push_basedir) {
4757 av_push(inc, libdir);
4760 if (!push_basedir) {
4761 assert (SvREFCNT(libdir) == 1);
4762 SvREFCNT_dec(libdir);
4768 S_incpush_use_sep(pTHX_ const char *p, STRLEN len, U32 flags)
4772 /* This logic has been broken out from S_incpush(). It may be possible to
4775 PERL_ARGS_ASSERT_INCPUSH_USE_SEP;
4777 /* perl compiled with -DPERL_RELOCATABLE_INCPUSH will ignore the len
4778 * argument to incpush_use_sep. This allows creation of relocatable
4779 * Perl distributions that patch the binary at install time. Those
4780 * distributions will have to provide their own relocation tools; this
4781 * is not a feature otherwise supported by core Perl.
4783 #ifndef PERL_RELOCATABLE_INCPUSH
4790 /* Break at all separators */
4791 while ((s = (const char*)memchr(p, PERLLIB_SEP, end - p))) {
4793 /* skip any consecutive separators */
4795 /* Uncomment the next line for PATH semantics */
4796 /* But you'll need to write tests */
4797 /* av_push(GvAVn(PL_incgv), newSVpvs(".")); */
4799 incpush(p, (STRLEN)(s - p), flags);
4804 incpush(p, (STRLEN)(end - p), flags);
4809 Perl_call_list(pTHX_ I32 oldscope, AV *paramList)
4813 volatile const line_t oldline = PL_curcop ? CopLINE(PL_curcop) : 0;
4819 PERL_ARGS_ASSERT_CALL_LIST;
4821 while (av_len(paramList) >= 0) {
4822 cv = MUTABLE_CV(av_shift(paramList));
4824 if (paramList == PL_beginav) {
4825 /* save PL_beginav for compiler */
4826 Perl_av_create_and_push(aTHX_ &PL_beginav_save, MUTABLE_SV(cv));
4828 else if (paramList == PL_checkav) {
4829 /* save PL_checkav for compiler */
4830 Perl_av_create_and_push(aTHX_ &PL_checkav_save, MUTABLE_SV(cv));
4832 else if (paramList == PL_unitcheckav) {
4833 /* save PL_unitcheckav for compiler */
4834 Perl_av_create_and_push(aTHX_ &PL_unitcheckav_save, MUTABLE_SV(cv));