3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 * 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
12 * 'Very useful, no doubt, that was to Saruman; yet it seems that he was
13 * not content.' --Gandalf to Pippin
15 * [p.598 of _The Lord of the Rings_, III/xi: "The PalantÃr"]
18 /* This file contains assorted utility routines.
19 * Which is a polite way of saying any stuff that people couldn't think of
20 * a better place for. Amongst other things, it includes the warning and
21 * dieing stuff, plus wrappers for malloc code.
25 #define PERL_IN_UTIL_C
29 #if defined(USE_PERLIO)
30 #include "perliol.h" /* For PerlIOUnix_refcnt */
36 # define SIG_ERR ((Sighandler_t) -1)
44 /* Missing protos on LynxOS */
49 # include "amigaos4/amigaio.h"
54 # include <sys/select.h>
58 #ifdef USE_C_BACKTRACE
62 # undef USE_BFD /* BFD is useless in OS X. */
72 # include <execinfo.h>
76 #ifdef PERL_DEBUG_READONLY_COW
77 # include <sys/mman.h>
82 /* NOTE: Do not call the next three routines directly. Use the macros
83 * in handy.h, so that we can easily redefine everything to do tracking of
84 * allocated hunks back to the original New to track down any memory leaks.
85 * XXX This advice seems to be widely ignored :-( --AD August 1996.
88 #if defined (DEBUGGING) || defined(PERL_IMPLICIT_SYS) || defined (PERL_TRACK_MEMPOOL)
89 # define ALWAYS_NEED_THX
92 #if defined(PERL_TRACK_MEMPOOL) && defined(PERL_DEBUG_READONLY_COW)
94 S_maybe_protect_rw(pTHX_ struct perl_memory_debug_header *header)
97 && mprotect(header, header->size, PROT_READ|PROT_WRITE))
98 Perl_warn(aTHX_ "mprotect for COW string %p %lu failed with %d",
99 header, header->size, errno);
103 S_maybe_protect_ro(pTHX_ struct perl_memory_debug_header *header)
106 && mprotect(header, header->size, PROT_READ))
107 Perl_warn(aTHX_ "mprotect RW for COW string %p %lu failed with %d",
108 header, header->size, errno);
110 # define maybe_protect_rw(foo) S_maybe_protect_rw(aTHX_ foo)
111 # define maybe_protect_ro(foo) S_maybe_protect_ro(aTHX_ foo)
113 # define maybe_protect_rw(foo) NOOP
114 # define maybe_protect_ro(foo) NOOP
117 #if defined(PERL_TRACK_MEMPOOL) || defined(PERL_DEBUG_READONLY_COW)
118 /* Use memory_debug_header */
120 # if (defined(PERL_POISON) && defined(PERL_TRACK_MEMPOOL)) \
121 || defined(PERL_DEBUG_READONLY_COW)
122 # define MDH_HAS_SIZE
126 /* paranoid version of system's malloc() */
129 Perl_safesysmalloc(MEM_SIZE size)
131 #ifdef ALWAYS_NEED_THX
138 if (size + PERL_MEMORY_DEBUG_HEADER_SIZE < size)
140 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
143 if ((SSize_t)size < 0)
144 Perl_croak_nocontext("panic: malloc, size=%" UVuf, (UV) size);
146 if (!size) size = 1; /* malloc(0) is NASTY on our system */
148 #ifdef PERL_DEBUG_READONLY_COW
149 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
150 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
151 perror("mmap failed");
155 ptr = (Malloc_t)PerlMem_malloc(size?size:1);
157 PERL_ALLOC_CHECK(ptr);
160 struct perl_memory_debug_header *const header
161 = (struct perl_memory_debug_header *)ptr;
165 PoisonNew(((char *)ptr), size, char);
168 #ifdef PERL_TRACK_MEMPOOL
169 header->interpreter = aTHX;
170 /* Link us into the list. */
171 header->prev = &PL_memory_debug_header;
172 header->next = PL_memory_debug_header.next;
173 PL_memory_debug_header.next = header;
174 maybe_protect_rw(header->next);
175 header->next->prev = header;
176 maybe_protect_ro(header->next);
177 # ifdef PERL_DEBUG_READONLY_COW
178 header->readonly = 0;
184 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
185 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
187 /* malloc() can modify errno() even on success, but since someone
188 writing perl code doesn't have any control over when perl calls
189 malloc() we need to hide that.
198 #ifndef ALWAYS_NEED_THX
210 /* paranoid version of system's realloc() */
213 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
215 #ifdef ALWAYS_NEED_THX
219 #ifdef PERL_DEBUG_READONLY_COW
220 const MEM_SIZE oldsize = where
221 ? ((struct perl_memory_debug_header *)((char *)where - PERL_MEMORY_DEBUG_HEADER_SIZE))->size
230 ptr = safesysmalloc(size);
235 where = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
236 if (size + PERL_MEMORY_DEBUG_HEADER_SIZE < size)
238 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
240 struct perl_memory_debug_header *const header
241 = (struct perl_memory_debug_header *)where;
243 # ifdef PERL_TRACK_MEMPOOL
244 if (header->interpreter != aTHX) {
245 Perl_croak_nocontext("panic: realloc from wrong pool, %p!=%p",
246 header->interpreter, aTHX);
248 assert(header->next->prev == header);
249 assert(header->prev->next == header);
251 if (header->size > size) {
252 const MEM_SIZE freed_up = header->size - size;
253 char *start_of_freed = ((char *)where) + size;
254 PoisonFree(start_of_freed, freed_up, char);
264 if ((SSize_t)size < 0)
265 Perl_croak_nocontext("panic: realloc, size=%" UVuf, (UV)size);
267 #ifdef PERL_DEBUG_READONLY_COW
268 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
269 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
270 perror("mmap failed");
273 Copy(where,ptr,oldsize < size ? oldsize : size,char);
274 if (munmap(where, oldsize)) {
275 perror("munmap failed");
279 ptr = (Malloc_t)PerlMem_realloc(where,size);
281 PERL_ALLOC_CHECK(ptr);
283 /* MUST do this fixup first, before doing ANYTHING else, as anything else
284 might allocate memory/free/move memory, and until we do the fixup, it
285 may well be chasing (and writing to) free memory. */
287 #ifdef PERL_TRACK_MEMPOOL
288 struct perl_memory_debug_header *const header
289 = (struct perl_memory_debug_header *)ptr;
292 if (header->size < size) {
293 const MEM_SIZE fresh = size - header->size;
294 char *start_of_fresh = ((char *)ptr) + size;
295 PoisonNew(start_of_fresh, fresh, char);
299 maybe_protect_rw(header->next);
300 header->next->prev = header;
301 maybe_protect_ro(header->next);
302 maybe_protect_rw(header->prev);
303 header->prev->next = header;
304 maybe_protect_ro(header->prev);
306 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
308 /* realloc() can modify errno() even on success, but since someone
309 writing perl code doesn't have any control over when perl calls
310 realloc() we need to hide that.
315 /* In particular, must do that fixup above before logging anything via
316 *printf(), as it can reallocate memory, which can cause SEGVs. */
318 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
319 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
326 #ifndef ALWAYS_NEED_THX
339 /* safe version of system's free() */
342 Perl_safesysfree(Malloc_t where)
344 #ifdef ALWAYS_NEED_THX
347 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
350 Malloc_t where_intrn = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
352 struct perl_memory_debug_header *const header
353 = (struct perl_memory_debug_header *)where_intrn;
356 const MEM_SIZE size = header->size;
358 # ifdef PERL_TRACK_MEMPOOL
359 if (header->interpreter != aTHX) {
360 Perl_croak_nocontext("panic: free from wrong pool, %p!=%p",
361 header->interpreter, aTHX);
364 Perl_croak_nocontext("panic: duplicate free");
367 Perl_croak_nocontext("panic: bad free, header->next==NULL");
368 if (header->next->prev != header || header->prev->next != header) {
369 Perl_croak_nocontext("panic: bad free, ->next->prev=%p, "
370 "header=%p, ->prev->next=%p",
371 header->next->prev, header,
374 /* Unlink us from the chain. */
375 maybe_protect_rw(header->next);
376 header->next->prev = header->prev;
377 maybe_protect_ro(header->next);
378 maybe_protect_rw(header->prev);
379 header->prev->next = header->next;
380 maybe_protect_ro(header->prev);
381 maybe_protect_rw(header);
383 PoisonNew(where_intrn, size, char);
385 /* Trigger the duplicate free warning. */
388 # ifdef PERL_DEBUG_READONLY_COW
389 if (munmap(where_intrn, size)) {
390 perror("munmap failed");
396 Malloc_t where_intrn = where;
398 #ifndef PERL_DEBUG_READONLY_COW
399 PerlMem_free(where_intrn);
404 /* safe version of system's calloc() */
407 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
409 #ifdef ALWAYS_NEED_THX
413 #if defined(USE_MDH) || defined(DEBUGGING)
414 MEM_SIZE total_size = 0;
417 /* Even though calloc() for zero bytes is strange, be robust. */
418 if (size && (count <= MEM_SIZE_MAX / size)) {
419 #if defined(USE_MDH) || defined(DEBUGGING)
420 total_size = size * count;
426 if (PERL_MEMORY_DEBUG_HEADER_SIZE <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
427 total_size += PERL_MEMORY_DEBUG_HEADER_SIZE;
432 if ((SSize_t)size < 0 || (SSize_t)count < 0)
433 Perl_croak_nocontext("panic: calloc, size=%" UVuf ", count=%" UVuf,
434 (UV)size, (UV)count);
436 #ifdef PERL_DEBUG_READONLY_COW
437 if ((ptr = mmap(0, total_size ? total_size : 1, PROT_READ|PROT_WRITE,
438 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
439 perror("mmap failed");
442 #elif defined(PERL_TRACK_MEMPOOL)
443 /* Have to use malloc() because we've added some space for our tracking
445 /* malloc(0) is non-portable. */
446 ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
448 /* Use calloc() because it might save a memset() if the memory is fresh
449 and clean from the OS. */
451 ptr = (Malloc_t)PerlMem_calloc(count, size);
452 else /* calloc(0) is non-portable. */
453 ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
455 PERL_ALLOC_CHECK(ptr);
456 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) calloc %zu x %zu = %zu bytes\n",PTR2UV(ptr),(long)PL_an++, count, size, total_size));
460 struct perl_memory_debug_header *const header
461 = (struct perl_memory_debug_header *)ptr;
463 # ifndef PERL_DEBUG_READONLY_COW
464 memset((void*)ptr, 0, total_size);
466 # ifdef PERL_TRACK_MEMPOOL
467 header->interpreter = aTHX;
468 /* Link us into the list. */
469 header->prev = &PL_memory_debug_header;
470 header->next = PL_memory_debug_header.next;
471 PL_memory_debug_header.next = header;
472 maybe_protect_rw(header->next);
473 header->next->prev = header;
474 maybe_protect_ro(header->next);
475 # ifdef PERL_DEBUG_READONLY_COW
476 header->readonly = 0;
480 header->size = total_size;
482 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
488 #ifndef ALWAYS_NEED_THX
497 /* These must be defined when not using Perl's malloc for binary
502 Malloc_t Perl_malloc (MEM_SIZE nbytes)
504 #ifdef PERL_IMPLICIT_SYS
507 return (Malloc_t)PerlMem_malloc(nbytes);
510 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
512 #ifdef PERL_IMPLICIT_SYS
515 return (Malloc_t)PerlMem_calloc(elements, size);
518 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
520 #ifdef PERL_IMPLICIT_SYS
523 return (Malloc_t)PerlMem_realloc(where, nbytes);
526 Free_t Perl_mfree (Malloc_t where)
528 #ifdef PERL_IMPLICIT_SYS
536 /* copy a string up to some (non-backslashed) delimiter, if any.
537 * With allow_escape, converts \<delimiter> to <delimiter>, while leaves
538 * \<non-delimiter> as-is.
539 * Returns the position in the src string of the closing delimiter, if
540 * any, or returns fromend otherwise.
541 * This is the internal implementation for Perl_delimcpy and
542 * Perl_delimcpy_no_escape.
546 S_delimcpy_intern(char *to, const char *toend, const char *from,
547 const char *fromend, int delim, I32 *retlen,
548 const bool allow_escape)
552 PERL_ARGS_ASSERT_DELIMCPY;
554 for (tolen = 0; from < fromend; from++, tolen++) {
555 if (allow_escape && *from == '\\' && from + 1 < fromend) {
556 if (from[1] != delim) {
563 else if (*from == delim)
575 Perl_delimcpy(char *to, const char *toend, const char *from, const char *fromend, int delim, I32 *retlen)
577 PERL_ARGS_ASSERT_DELIMCPY;
579 return S_delimcpy_intern(to, toend, from, fromend, delim, retlen, 1);
583 Perl_delimcpy_no_escape(char *to, const char *toend, const char *from,
584 const char *fromend, int delim, I32 *retlen)
586 PERL_ARGS_ASSERT_DELIMCPY_NO_ESCAPE;
588 return S_delimcpy_intern(to, toend, from, fromend, delim, retlen, 0);
592 =head1 Miscellaneous Functions
596 Find the first (leftmost) occurrence of a sequence of bytes within another
597 sequence. This is the Perl version of C<strstr()>, extended to handle
598 arbitrary sequences, potentially containing embedded C<NUL> characters (C<NUL>
599 is what the initial C<n> in the function name stands for; some systems have an
600 equivalent, C<memmem()>, but with a somewhat different API).
602 Another way of thinking about this function is finding a needle in a haystack.
603 C<big> points to the first byte in the haystack. C<big_end> points to one byte
604 beyond the final byte in the haystack. C<little> points to the first byte in
605 the needle. C<little_end> points to one byte beyond the final byte in the
606 needle. All the parameters must be non-C<NULL>.
608 The function returns C<NULL> if there is no occurrence of C<little> within
609 C<big>. If C<little> is the empty string, C<big> is returned.
611 Because this function operates at the byte level, and because of the inherent
612 characteristics of UTF-8 (or UTF-EBCDIC), it will work properly if both the
613 needle and the haystack are strings with the same UTF-8ness, but not if the
621 Perl_ninstr(const char *big, const char *bigend, const char *little, const char *lend)
623 PERL_ARGS_ASSERT_NINSTR;
626 return ninstr(big, bigend, little, lend);
632 const char first = *little;
633 bigend -= lend - little++;
635 while (big <= bigend) {
636 if (*big++ == first) {
638 for (x=big,s=little; s < lend; x++,s++) {
642 return (char*)(big-1);
653 =head1 Miscellaneous Functions
657 Like C<L</ninstr>>, but instead finds the final (rightmost) occurrence of a
658 sequence of bytes within another sequence, returning C<NULL> if there is no
666 Perl_rninstr(const char *big, const char *bigend, const char *little, const char *lend)
669 const I32 first = *little;
670 const char * const littleend = lend;
672 PERL_ARGS_ASSERT_RNINSTR;
674 if (little >= littleend)
675 return (char*)bigend;
677 big = bigend - (littleend - little++);
678 while (big >= bigbeg) {
682 for (x=big+2,s=little; s < littleend; /**/ ) {
691 return (char*)(big+1);
696 /* As a space optimization, we do not compile tables for strings of length
697 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
698 special-cased in fbm_instr().
700 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
703 =head1 Miscellaneous Functions
705 =for apidoc fbm_compile
707 Analyzes the string in order to make fast searches on it using C<fbm_instr()>
708 -- the Boyer-Moore algorithm.
714 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
721 PERL_DEB( STRLEN rarest = 0 );
723 PERL_ARGS_ASSERT_FBM_COMPILE;
725 if (isGV_with_GP(sv) || SvROK(sv))
731 if (flags & FBMcf_TAIL) {
732 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
733 sv_catpvs(sv, "\n"); /* Taken into account in fbm_instr() */
734 if (mg && mg->mg_len >= 0)
737 if (!SvPOK(sv) || SvNIOKp(sv))
738 s = (U8*)SvPV_force_mutable(sv, len);
739 else s = (U8 *)SvPV_mutable(sv, len);
740 if (len == 0) /* TAIL might be on a zero-length string. */
742 SvUPGRADE(sv, SVt_PVMG);
746 /* add PERL_MAGIC_bm magic holding the FBM lookup table */
748 assert(!mg_find(sv, PERL_MAGIC_bm));
749 mg = sv_magicext(sv, NULL, PERL_MAGIC_bm, &PL_vtbl_bm, NULL, 0);
753 /* Shorter strings are special-cased in Perl_fbm_instr(), and don't use
755 const U8 mlen = (len>255) ? 255 : (U8)len;
756 const unsigned char *const sb = s + len - mlen; /* first char (maybe) */
759 Newx(table, 256, U8);
760 memset((void*)table, mlen, 256);
761 mg->mg_ptr = (char *)table;
764 s += len - 1; /* last char */
767 if (table[*s] == mlen)
773 s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
774 for (i = 0; i < len; i++) {
775 if (PL_freq[s[i]] < frequency) {
776 PERL_DEB( rarest = i );
777 frequency = PL_freq[s[i]];
780 BmUSEFUL(sv) = 100; /* Initial value */
781 ((XPVNV*)SvANY(sv))->xnv_u.xnv_bm_tail = cBOOL(flags & FBMcf_TAIL);
782 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %" UVuf "\n",
783 s[rarest], (UV)rarest));
788 =for apidoc fbm_instr
790 Returns the location of the SV in the string delimited by C<big> and
791 C<bigend> (C<bigend>) is the char following the last char).
792 It returns C<NULL> if the string can't be found. The C<sv>
793 does not have to be C<fbm_compiled>, but the search will not be as fast
798 If SvTAIL(littlestr) is true, a fake "\n" was appended to to the string
799 during FBM compilation due to FBMcf_TAIL in flags. It indicates that
800 the littlestr must be anchored to the end of bigstr (or to any \n if
803 E.g. The regex compiler would compile /abc/ to a littlestr of "abc",
804 while /abc$/ compiles to "abc\n" with SvTAIL() true.
806 A littlestr of "abc", !SvTAIL matches as /abc/;
807 a littlestr of "ab\n", SvTAIL matches as:
808 without FBMrf_MULTILINE: /ab\n?\z/
809 with FBMrf_MULTILINE: /ab\n/ || /ab\z/;
811 (According to Ilya from 1999; I don't know if this is still true, DAPM 2015):
812 "If SvTAIL is actually due to \Z or \z, this gives false positives
818 Perl_fbm_instr(pTHX_ unsigned char *big, unsigned char *bigend, SV *littlestr, U32 flags)
822 const unsigned char *little = (const unsigned char *)SvPV_const(littlestr,l);
823 STRLEN littlelen = l;
824 const I32 multiline = flags & FBMrf_MULTILINE;
825 bool valid = SvVALID(littlestr);
826 bool tail = valid ? cBOOL(SvTAIL(littlestr)) : FALSE;
828 PERL_ARGS_ASSERT_FBM_INSTR;
830 assert(bigend >= big);
832 if ((STRLEN)(bigend - big) < littlelen) {
834 && ((STRLEN)(bigend - big) == littlelen - 1)
836 || (*big == *little &&
837 memEQ((char *)big, (char *)little, littlelen - 1))))
842 switch (littlelen) { /* Special cases for 0, 1 and 2 */
844 return (char*)big; /* Cannot be SvTAIL! */
847 if (tail && !multiline) /* Anchor only! */
848 /* [-1] is safe because we know that bigend != big. */
849 return (char *) (bigend - (bigend[-1] == '\n'));
851 s = (unsigned char *)memchr((void*)big, *little, bigend-big);
855 return (char *) bigend;
859 if (tail && !multiline) {
860 /* a littlestr with SvTAIL must be of the form "X\n" (where X
861 * is a single char). It is anchored, and can only match
862 * "....X\n" or "....X" */
863 if (bigend[-2] == *little && bigend[-1] == '\n')
864 return (char*)bigend - 2;
865 if (bigend[-1] == *little)
866 return (char*)bigend - 1;
871 /* memchr() is likely to be very fast, possibly using whatever
872 * hardware support is available, such as checking a whole
873 * cache line in one instruction.
874 * So for a 2 char pattern, calling memchr() is likely to be
875 * faster than running FBM, or rolling our own. The previous
876 * version of this code was roll-your-own which typically
877 * only needed to read every 2nd char, which was good back in
878 * the day, but no longer.
880 unsigned char c1 = little[0];
881 unsigned char c2 = little[1];
883 /* *** for all this case, bigend points to the last char,
884 * not the trailing \0: this makes the conditions slightly
890 /* do a quick test for c1 before calling memchr();
891 * this avoids the expensive fn call overhead when
892 * there are lots of c1's */
893 if (LIKELY(*s != c1)) {
895 s = (unsigned char *)memchr((void*)s, c1, bigend - s);
902 /* failed; try searching for c2 this time; that way
903 * we don't go pathologically slow when the string
904 * consists mostly of c1's or vice versa.
909 s = (unsigned char *)memchr((void*)s, c2, bigend - s + 1);
917 /* c1, c2 the same */
927 s = (unsigned char *)memchr((void*)s, c1, bigend - s);
928 if (!s || s >= bigend)
935 /* failed to find 2 chars; try anchored match at end without
937 if (tail && bigend[0] == little[0])
938 return (char *)bigend;
943 break; /* Only lengths 0 1 and 2 have special-case code. */
946 if (tail && !multiline) { /* tail anchored? */
947 s = bigend - littlelen;
948 if (s >= big && bigend[-1] == '\n' && *s == *little
949 /* Automatically of length > 2 */
950 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
952 return (char*)s; /* how sweet it is */
955 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
957 return (char*)s + 1; /* how sweet it is */
963 /* not compiled; use Perl_ninstr() instead */
964 char * const b = ninstr((char*)big,(char*)bigend,
965 (char*)little, (char*)little + littlelen);
967 assert(!tail); /* valid => FBM; tail only set on SvVALID SVs */
972 if (littlelen > (STRLEN)(bigend - big))
976 const MAGIC *const mg = mg_find(littlestr, PERL_MAGIC_bm);
977 const unsigned char *oldlittle;
981 --littlelen; /* Last char found by table lookup */
984 little += littlelen; /* last char */
987 const unsigned char * const table = (const unsigned char *) mg->mg_ptr;
988 const unsigned char lastc = *little;
992 if ((tmp = table[*s])) {
993 /* *s != lastc; earliest position it could match now is
994 * tmp slots further on */
995 if ((s += tmp) >= bigend)
997 if (LIKELY(*s != lastc)) {
999 s = (unsigned char *)memchr((void*)s, lastc, bigend - s);
1009 /* hand-rolled strncmp(): less expensive than calling the
1010 * real function (maybe???) */
1012 unsigned char * const olds = s;
1017 if (*--s == *--little)
1019 s = olds + 1; /* here we pay the price for failure */
1021 if (s < bigend) /* fake up continue to outer loop */
1031 && memEQ((char *)(bigend - littlelen),
1032 (char *)(oldlittle - littlelen), littlelen) )
1033 return (char*)bigend - littlelen;
1038 /* copy a string to a safe spot */
1041 =head1 Memory Management
1045 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
1046 string which is a duplicate of C<pv>. The size of the string is
1047 determined by C<strlen()>, which means it may not contain embedded C<NUL>
1048 characters and must have a trailing C<NUL>. The memory allocated for the new
1049 string can be freed with the C<Safefree()> function.
1051 On some platforms, Windows for example, all allocated memory owned by a thread
1052 is deallocated when that thread ends. So if you need that not to happen, you
1053 need to use the shared memory functions, such as C<L</savesharedpv>>.
1059 Perl_savepv(pTHX_ const char *pv)
1061 PERL_UNUSED_CONTEXT;
1066 const STRLEN pvlen = strlen(pv)+1;
1067 Newx(newaddr, pvlen, char);
1068 return (char*)memcpy(newaddr, pv, pvlen);
1072 /* same thing but with a known length */
1077 Perl's version of what C<strndup()> would be if it existed. Returns a
1078 pointer to a newly allocated string which is a duplicate of the first
1079 C<len> bytes from C<pv>, plus a trailing
1080 C<NUL> byte. The memory allocated for
1081 the new string can be freed with the C<Safefree()> function.
1083 On some platforms, Windows for example, all allocated memory owned by a thread
1084 is deallocated when that thread ends. So if you need that not to happen, you
1085 need to use the shared memory functions, such as C<L</savesharedpvn>>.
1091 Perl_savepvn(pTHX_ const char *pv, I32 len)
1094 PERL_UNUSED_CONTEXT;
1098 Newx(newaddr,len+1,char);
1099 /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
1101 /* might not be null terminated */
1102 newaddr[len] = '\0';
1103 return (char *) CopyD(pv,newaddr,len,char);
1106 return (char *) ZeroD(newaddr,len+1,char);
1111 =for apidoc savesharedpv
1113 A version of C<savepv()> which allocates the duplicate string in memory
1114 which is shared between threads.
1119 Perl_savesharedpv(pTHX_ const char *pv)
1124 PERL_UNUSED_CONTEXT;
1129 pvlen = strlen(pv)+1;
1130 newaddr = (char*)PerlMemShared_malloc(pvlen);
1134 return (char*)memcpy(newaddr, pv, pvlen);
1138 =for apidoc savesharedpvn
1140 A version of C<savepvn()> which allocates the duplicate string in memory
1141 which is shared between threads. (With the specific difference that a C<NULL>
1142 pointer is not acceptable)
1147 Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
1149 char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
1151 PERL_UNUSED_CONTEXT;
1152 /* PERL_ARGS_ASSERT_SAVESHAREDPVN; */
1157 newaddr[len] = '\0';
1158 return (char*)memcpy(newaddr, pv, len);
1162 =for apidoc savesvpv
1164 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
1165 the passed in SV using C<SvPV()>
1167 On some platforms, Windows for example, all allocated memory owned by a thread
1168 is deallocated when that thread ends. So if you need that not to happen, you
1169 need to use the shared memory functions, such as C<L</savesharedsvpv>>.
1175 Perl_savesvpv(pTHX_ SV *sv)
1178 const char * const pv = SvPV_const(sv, len);
1181 PERL_ARGS_ASSERT_SAVESVPV;
1184 Newx(newaddr,len,char);
1185 return (char *) CopyD(pv,newaddr,len,char);
1189 =for apidoc savesharedsvpv
1191 A version of C<savesharedpv()> which allocates the duplicate string in
1192 memory which is shared between threads.
1198 Perl_savesharedsvpv(pTHX_ SV *sv)
1201 const char * const pv = SvPV_const(sv, len);
1203 PERL_ARGS_ASSERT_SAVESHAREDSVPV;
1205 return savesharedpvn(pv, len);
1208 /* the SV for Perl_form() and mess() is not kept in an arena */
1216 if (PL_phase != PERL_PHASE_DESTRUCT)
1217 return newSVpvs_flags("", SVs_TEMP);
1222 /* Create as PVMG now, to avoid any upgrading later */
1224 Newxz(any, 1, XPVMG);
1225 SvFLAGS(sv) = SVt_PVMG;
1226 SvANY(sv) = (void*)any;
1228 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1233 #if defined(PERL_IMPLICIT_CONTEXT)
1235 Perl_form_nocontext(const char* pat, ...)
1240 PERL_ARGS_ASSERT_FORM_NOCONTEXT;
1241 va_start(args, pat);
1242 retval = vform(pat, &args);
1246 #endif /* PERL_IMPLICIT_CONTEXT */
1249 =head1 Miscellaneous Functions
1252 Takes a sprintf-style format pattern and conventional
1253 (non-SV) arguments and returns the formatted string.
1255 (char *) Perl_form(pTHX_ const char* pat, ...)
1257 can be used any place a string (char *) is required:
1259 char * s = Perl_form("%d.%d",major,minor);
1261 Uses a single private buffer so if you want to format several strings you
1262 must explicitly copy the earlier strings away (and free the copies when you
1269 Perl_form(pTHX_ const char* pat, ...)
1273 PERL_ARGS_ASSERT_FORM;
1274 va_start(args, pat);
1275 retval = vform(pat, &args);
1281 Perl_vform(pTHX_ const char *pat, va_list *args)
1283 SV * const sv = mess_alloc();
1284 PERL_ARGS_ASSERT_VFORM;
1285 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1292 Take a sprintf-style format pattern and argument list. These are used to
1293 generate a string message. If the message does not end with a newline,
1294 then it will be extended with some indication of the current location
1295 in the code, as described for L</mess_sv>.
1297 Normally, the resulting message is returned in a new mortal SV.
1298 During global destruction a single SV may be shared between uses of
1304 #if defined(PERL_IMPLICIT_CONTEXT)
1306 Perl_mess_nocontext(const char *pat, ...)
1311 PERL_ARGS_ASSERT_MESS_NOCONTEXT;
1312 va_start(args, pat);
1313 retval = vmess(pat, &args);
1317 #endif /* PERL_IMPLICIT_CONTEXT */
1320 Perl_mess(pTHX_ const char *pat, ...)
1324 PERL_ARGS_ASSERT_MESS;
1325 va_start(args, pat);
1326 retval = vmess(pat, &args);
1332 Perl_closest_cop(pTHX_ const COP *cop, const OP *o, const OP *curop,
1335 /* Look for curop starting from o. cop is the last COP we've seen. */
1336 /* opnext means that curop is actually the ->op_next of the op we are
1339 PERL_ARGS_ASSERT_CLOSEST_COP;
1341 if (!o || !curop || (
1342 opnext ? o->op_next == curop && o->op_type != OP_SCOPE : o == curop
1346 if (o->op_flags & OPf_KIDS) {
1348 for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) {
1351 /* If the OP_NEXTSTATE has been optimised away we can still use it
1352 * the get the file and line number. */
1354 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
1355 cop = (const COP *)kid;
1357 /* Keep searching, and return when we've found something. */
1359 new_cop = closest_cop(cop, kid, curop, opnext);
1365 /* Nothing found. */
1373 Expands a message, intended for the user, to include an indication of
1374 the current location in the code, if the message does not already appear
1377 C<basemsg> is the initial message or object. If it is a reference, it
1378 will be used as-is and will be the result of this function. Otherwise it
1379 is used as a string, and if it already ends with a newline, it is taken
1380 to be complete, and the result of this function will be the same string.
1381 If the message does not end with a newline, then a segment such as C<at
1382 foo.pl line 37> will be appended, and possibly other clauses indicating
1383 the current state of execution. The resulting message will end with a
1386 Normally, the resulting message is returned in a new mortal SV.
1387 During global destruction a single SV may be shared between uses of this
1388 function. If C<consume> is true, then the function is permitted (but not
1389 required) to modify and return C<basemsg> instead of allocating a new SV.
1395 Perl_mess_sv(pTHX_ SV *basemsg, bool consume)
1399 #if defined(USE_C_BACKTRACE) && defined(USE_C_BACKTRACE_ON_ERROR)
1403 /* The PERL_C_BACKTRACE_ON_WARN must be an integer of one or more. */
1404 if ((ws = PerlEnv_getenv("PERL_C_BACKTRACE_ON_ERROR"))
1405 && grok_atoUV(ws, &wi, NULL)
1406 && wi <= PERL_INT_MAX
1408 Perl_dump_c_backtrace(aTHX_ Perl_debug_log, (int)wi, 1);
1413 PERL_ARGS_ASSERT_MESS_SV;
1415 if (SvROK(basemsg)) {
1421 sv_setsv(sv, basemsg);
1426 if (SvPOK(basemsg) && consume) {
1431 sv_copypv(sv, basemsg);
1434 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1436 * Try and find the file and line for PL_op. This will usually be
1437 * PL_curcop, but it might be a cop that has been optimised away. We
1438 * can try to find such a cop by searching through the optree starting
1439 * from the sibling of PL_curcop.
1444 closest_cop(PL_curcop, OpSIBLING(PL_curcop), PL_op, FALSE);
1449 Perl_sv_catpvf(aTHX_ sv, " at %s line %" IVdf,
1450 OutCopFILE(cop), (IV)CopLINE(cop));
1453 /* Seems that GvIO() can be untrustworthy during global destruction. */
1454 if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1455 && IoLINES(GvIOp(PL_last_in_gv)))
1458 const bool line_mode = (RsSIMPLE(PL_rs) &&
1459 *SvPV_const(PL_rs,l) == '\n' && l == 1);
1460 Perl_sv_catpvf(aTHX_ sv, ", <%" SVf "> %s %" IVdf,
1461 SVfARG(PL_last_in_gv == PL_argvgv
1463 : sv_2mortal(newSVhek(GvNAME_HEK(PL_last_in_gv)))),
1464 line_mode ? "line" : "chunk",
1465 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1467 if (PL_phase == PERL_PHASE_DESTRUCT)
1468 sv_catpvs(sv, " during global destruction");
1469 sv_catpvs(sv, ".\n");
1477 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1478 argument list, respectively. These are used to generate a string message. If
1480 message does not end with a newline, then it will be extended with
1481 some indication of the current location in the code, as described for
1484 Normally, the resulting message is returned in a new mortal SV.
1485 During global destruction a single SV may be shared between uses of
1492 Perl_vmess(pTHX_ const char *pat, va_list *args)
1494 SV * const sv = mess_alloc();
1496 PERL_ARGS_ASSERT_VMESS;
1498 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1499 return mess_sv(sv, 1);
1503 Perl_write_to_stderr(pTHX_ SV* msv)
1508 PERL_ARGS_ASSERT_WRITE_TO_STDERR;
1510 if (PL_stderrgv && SvREFCNT(PL_stderrgv)
1511 && (io = GvIO(PL_stderrgv))
1512 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
1513 Perl_magic_methcall(aTHX_ MUTABLE_SV(io), mg, SV_CONST(PRINT),
1514 G_SCALAR | G_DISCARD | G_WRITING_TO_STDERR, 1, msv);
1516 PerlIO * const serr = Perl_error_log;
1518 do_print(msv, serr);
1519 (void)PerlIO_flush(serr);
1524 =head1 Warning and Dieing
1527 /* Common code used in dieing and warning */
1530 S_with_queued_errors(pTHX_ SV *ex)
1532 PERL_ARGS_ASSERT_WITH_QUEUED_ERRORS;
1533 if (PL_errors && SvCUR(PL_errors) && !SvROK(ex)) {
1534 sv_catsv(PL_errors, ex);
1535 ex = sv_mortalcopy(PL_errors);
1536 SvCUR_set(PL_errors, 0);
1542 S_invoke_exception_hook(pTHX_ SV *ex, bool warn)
1548 SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1549 /* sv_2cv might call Perl_croak() or Perl_warner() */
1550 SV * const oldhook = *hook;
1552 if (!oldhook || oldhook == PERL_WARNHOOK_FATAL)
1558 cv = sv_2cv(oldhook, &stash, &gv, 0);
1560 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1570 exarg = newSVsv(ex);
1571 SvREADONLY_on(exarg);
1574 PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
1578 call_sv(MUTABLE_SV(cv), G_DISCARD);
1589 Behaves the same as L</croak_sv>, except for the return type.
1590 It should be used only where the C<OP *> return type is required.
1591 The function never actually returns.
1596 /* silence __declspec(noreturn) warnings */
1597 MSVC_DIAG_IGNORE(4646 4645)
1599 Perl_die_sv(pTHX_ SV *baseex)
1601 PERL_ARGS_ASSERT_DIE_SV;
1604 NORETURN_FUNCTION_END;
1611 Behaves the same as L</croak>, except for the return type.
1612 It should be used only where the C<OP *> return type is required.
1613 The function never actually returns.
1618 #if defined(PERL_IMPLICIT_CONTEXT)
1620 /* silence __declspec(noreturn) warnings */
1621 MSVC_DIAG_IGNORE(4646 4645)
1623 Perl_die_nocontext(const char* pat, ...)
1627 va_start(args, pat);
1629 NOT_REACHED; /* NOTREACHED */
1631 NORETURN_FUNCTION_END;
1635 #endif /* PERL_IMPLICIT_CONTEXT */
1637 /* silence __declspec(noreturn) warnings */
1638 MSVC_DIAG_IGNORE(4646 4645)
1640 Perl_die(pTHX_ const char* pat, ...)
1643 va_start(args, pat);
1645 NOT_REACHED; /* NOTREACHED */
1647 NORETURN_FUNCTION_END;
1652 =for apidoc croak_sv
1654 This is an XS interface to Perl's C<die> function.
1656 C<baseex> is the error message or object. If it is a reference, it
1657 will be used as-is. Otherwise it is used as a string, and if it does
1658 not end with a newline then it will be extended with some indication of
1659 the current location in the code, as described for L</mess_sv>.
1661 The error message or object will be used as an exception, by default
1662 returning control to the nearest enclosing C<eval>, but subject to
1663 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak_sv>
1664 function never returns normally.
1666 To die with a simple string message, the L</croak> function may be
1673 Perl_croak_sv(pTHX_ SV *baseex)
1675 SV *ex = with_queued_errors(mess_sv(baseex, 0));
1676 PERL_ARGS_ASSERT_CROAK_SV;
1677 invoke_exception_hook(ex, FALSE);
1684 This is an XS interface to Perl's C<die> function.
1686 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1687 argument list. These are used to generate a string message. If the
1688 message does not end with a newline, then it will be extended with
1689 some indication of the current location in the code, as described for
1692 The error message will be used as an exception, by default
1693 returning control to the nearest enclosing C<eval>, but subject to
1694 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1695 function never returns normally.
1697 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1698 (C<$@>) will be used as an error message or object instead of building an
1699 error message from arguments. If you want to throw a non-string object,
1700 or build an error message in an SV yourself, it is preferable to use
1701 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1707 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1709 SV *ex = with_queued_errors(pat ? vmess(pat, args) : mess_sv(ERRSV, 0));
1710 invoke_exception_hook(ex, FALSE);
1717 This is an XS interface to Perl's C<die> function.
1719 Take a sprintf-style format pattern and argument list. These are used to
1720 generate a string message. If the message does not end with a newline,
1721 then it will be extended with some indication of the current location
1722 in the code, as described for L</mess_sv>.
1724 The error message will be used as an exception, by default
1725 returning control to the nearest enclosing C<eval>, but subject to
1726 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1727 function never returns normally.
1729 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1730 (C<$@>) will be used as an error message or object instead of building an
1731 error message from arguments. If you want to throw a non-string object,
1732 or build an error message in an SV yourself, it is preferable to use
1733 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1738 #if defined(PERL_IMPLICIT_CONTEXT)
1740 Perl_croak_nocontext(const char *pat, ...)
1744 va_start(args, pat);
1746 NOT_REACHED; /* NOTREACHED */
1749 #endif /* PERL_IMPLICIT_CONTEXT */
1752 Perl_croak(pTHX_ const char *pat, ...)
1755 va_start(args, pat);
1757 NOT_REACHED; /* NOTREACHED */
1762 =for apidoc croak_no_modify
1764 Exactly equivalent to C<Perl_croak(aTHX_ "%s", PL_no_modify)>, but generates
1765 terser object code than using C<Perl_croak>. Less code used on exception code
1766 paths reduces CPU cache pressure.
1772 Perl_croak_no_modify(void)
1774 Perl_croak_nocontext( "%s", PL_no_modify);
1777 /* does not return, used in util.c perlio.c and win32.c
1778 This is typically called when malloc returns NULL.
1781 Perl_croak_no_mem(void)
1785 int fd = PerlIO_fileno(Perl_error_log);
1787 SETERRNO(EBADF,RMS_IFI);
1789 /* Can't use PerlIO to write as it allocates memory */
1790 PERL_UNUSED_RESULT(PerlLIO_write(fd, PL_no_mem, sizeof(PL_no_mem)-1));
1795 /* does not return, used only in POPSTACK */
1797 Perl_croak_popstack(void)
1800 PerlIO_printf(Perl_error_log, "panic: POPSTACK\n");
1807 This is an XS interface to Perl's C<warn> function.
1809 C<baseex> is the error message or object. If it is a reference, it
1810 will be used as-is. Otherwise it is used as a string, and if it does
1811 not end with a newline then it will be extended with some indication of
1812 the current location in the code, as described for L</mess_sv>.
1814 The error message or object will by default be written to standard error,
1815 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1817 To warn with a simple string message, the L</warn> function may be
1824 Perl_warn_sv(pTHX_ SV *baseex)
1826 SV *ex = mess_sv(baseex, 0);
1827 PERL_ARGS_ASSERT_WARN_SV;
1828 if (!invoke_exception_hook(ex, TRUE))
1829 write_to_stderr(ex);
1835 This is an XS interface to Perl's C<warn> function.
1837 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1838 argument list. These are used to generate a string message. If the
1839 message does not end with a newline, then it will be extended with
1840 some indication of the current location in the code, as described for
1843 The error message or object will by default be written to standard error,
1844 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1846 Unlike with L</vcroak>, C<pat> is not permitted to be null.
1852 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1854 SV *ex = vmess(pat, args);
1855 PERL_ARGS_ASSERT_VWARN;
1856 if (!invoke_exception_hook(ex, TRUE))
1857 write_to_stderr(ex);
1863 This is an XS interface to Perl's C<warn> function.
1865 Take a sprintf-style format pattern and argument list. These are used to
1866 generate a string message. If the message does not end with a newline,
1867 then it will be extended with some indication of the current location
1868 in the code, as described for L</mess_sv>.
1870 The error message or object will by default be written to standard error,
1871 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1873 Unlike with L</croak>, C<pat> is not permitted to be null.
1878 #if defined(PERL_IMPLICIT_CONTEXT)
1880 Perl_warn_nocontext(const char *pat, ...)
1884 PERL_ARGS_ASSERT_WARN_NOCONTEXT;
1885 va_start(args, pat);
1889 #endif /* PERL_IMPLICIT_CONTEXT */
1892 Perl_warn(pTHX_ const char *pat, ...)
1895 PERL_ARGS_ASSERT_WARN;
1896 va_start(args, pat);
1901 #if defined(PERL_IMPLICIT_CONTEXT)
1903 Perl_warner_nocontext(U32 err, const char *pat, ...)
1907 PERL_ARGS_ASSERT_WARNER_NOCONTEXT;
1908 va_start(args, pat);
1909 vwarner(err, pat, &args);
1912 #endif /* PERL_IMPLICIT_CONTEXT */
1915 Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...)
1917 PERL_ARGS_ASSERT_CK_WARNER_D;
1919 if (Perl_ckwarn_d(aTHX_ err)) {
1921 va_start(args, pat);
1922 vwarner(err, pat, &args);
1928 Perl_ck_warner(pTHX_ U32 err, const char* pat, ...)
1930 PERL_ARGS_ASSERT_CK_WARNER;
1932 if (Perl_ckwarn(aTHX_ err)) {
1934 va_start(args, pat);
1935 vwarner(err, pat, &args);
1941 Perl_warner(pTHX_ U32 err, const char* pat,...)
1944 PERL_ARGS_ASSERT_WARNER;
1945 va_start(args, pat);
1946 vwarner(err, pat, &args);
1951 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1954 PERL_ARGS_ASSERT_VWARNER;
1956 (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) &&
1957 !(PL_in_eval & EVAL_KEEPERR)
1959 SV * const msv = vmess(pat, args);
1961 if (PL_parser && PL_parser->error_count) {
1965 invoke_exception_hook(msv, FALSE);
1970 Perl_vwarn(aTHX_ pat, args);
1974 /* implements the ckWARN? macros */
1977 Perl_ckwarn(pTHX_ U32 w)
1979 /* If lexical warnings have not been set, use $^W. */
1981 return PL_dowarn & G_WARN_ON;
1983 return ckwarn_common(w);
1986 /* implements the ckWARN?_d macro */
1989 Perl_ckwarn_d(pTHX_ U32 w)
1991 /* If lexical warnings have not been set then default classes warn. */
1995 return ckwarn_common(w);
1999 S_ckwarn_common(pTHX_ U32 w)
2001 if (PL_curcop->cop_warnings == pWARN_ALL)
2004 if (PL_curcop->cop_warnings == pWARN_NONE)
2007 /* Check the assumption that at least the first slot is non-zero. */
2008 assert(unpackWARN1(w));
2010 /* Check the assumption that it is valid to stop as soon as a zero slot is
2012 if (!unpackWARN2(w)) {
2013 assert(!unpackWARN3(w));
2014 assert(!unpackWARN4(w));
2015 } else if (!unpackWARN3(w)) {
2016 assert(!unpackWARN4(w));
2019 /* Right, dealt with all the special cases, which are implemented as non-
2020 pointers, so there is a pointer to a real warnings mask. */
2022 if (isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)))
2024 } while (w >>= WARNshift);
2029 /* Set buffer=NULL to get a new one. */
2031 Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
2033 const MEM_SIZE len_wanted =
2034 sizeof(STRLEN) + (size > WARNsize ? size : WARNsize);
2035 PERL_UNUSED_CONTEXT;
2036 PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD;
2039 (specialWARN(buffer) ?
2040 PerlMemShared_malloc(len_wanted) :
2041 PerlMemShared_realloc(buffer, len_wanted));
2043 Copy(bits, (buffer + 1), size, char);
2044 if (size < WARNsize)
2045 Zero((char *)(buffer + 1) + size, WARNsize - size, char);
2049 /* since we've already done strlen() for both nam and val
2050 * we can use that info to make things faster than
2051 * sprintf(s, "%s=%s", nam, val)
2053 #define my_setenv_format(s, nam, nlen, val, vlen) \
2054 Copy(nam, s, nlen, char); \
2056 Copy(val, s+(nlen+1), vlen, char); \
2057 *(s+(nlen+1+vlen)) = '\0'
2061 #ifdef USE_ENVIRON_ARRAY
2062 /* NB: VMS' my_setenv() is in vms.c */
2064 /* Configure doesn't test for HAS_SETENV yet, so decide based on platform.
2065 * For Solaris, setenv() and unsetenv() were introduced in Solaris 9, so
2066 * testing for HAS UNSETENV is sufficient.
2068 # if defined(__CYGWIN__)|| defined(__SYMBIAN32__) || defined(__riscos__) || (defined(__sun) && defined(HAS_UNSETENV)) || defined(PERL_DARWIN)
2069 # define MY_HAS_SETENV
2072 /* small wrapper for use by Perl_my_setenv that mallocs, or reallocs if
2073 * 'current' is non-null, with up to three sizes that are added together.
2074 * It handles integer overflow.
2076 # ifndef MY_HAS_SETENV
2078 S_env_alloc(void *current, Size_t l1, Size_t l2, Size_t l3, Size_t size)
2081 Size_t sl, l = l1 + l2;
2093 ? safesysrealloc(current, sl)
2094 : safesysmalloc(sl);
2099 croak_memory_wrap();
2104 # if !defined(WIN32) && !defined(NETWARE)
2107 =for apidoc my_setenv
2109 A wrapper for the C library L<setenv(3)>. Don't use the latter, as the perl
2110 version has desirable safeguards
2116 Perl_my_setenv(pTHX_ const char *nam, const char *val)
2119 # ifdef __amigaos4__
2120 amigaos4_obtain_environ(__FUNCTION__);
2123 # ifdef USE_ITHREADS
2124 /* only parent thread can modify process environment */
2125 if (PL_curinterp == aTHX)
2129 # ifndef PERL_USE_SAFE_PUTENV
2130 if (!PL_use_safe_putenv) {
2131 /* most putenv()s leak, so we manipulate environ directly */
2133 Size_t vlen, nlen = strlen(nam);
2135 /* where does it go? */
2136 for (i = 0; environ[i]; i++) {
2137 if (strnEQ(environ[i], nam, nlen) && environ[i][nlen] == '=')
2141 if (environ == PL_origenviron) { /* need we copy environment? */
2146 while (environ[max])
2149 /* XXX shouldn't that be max+1 rather than max+2 ??? - DAPM */
2150 tmpenv = (char**)S_env_alloc(NULL, max, 2, 0, sizeof(char*));
2152 for (j=0; j<max; j++) { /* copy environment */
2153 const Size_t len = strlen(environ[j]);
2154 tmpenv[j] = S_env_alloc(NULL, len, 1, 0, 1);
2155 Copy(environ[j], tmpenv[j], len+1, char);
2159 environ = tmpenv; /* tell exec where it is now */
2163 safesysfree(environ[i]);
2164 while (environ[i]) {
2165 environ[i] = environ[i+1];
2168 # ifdef __amigaos4__
2175 if (!environ[i]) { /* does not exist yet */
2176 environ = (char**)S_env_alloc(environ, i, 2, 0, sizeof(char*));
2177 environ[i+1] = NULL; /* make sure it's null terminated */
2180 safesysfree(environ[i]);
2184 environ[i] = S_env_alloc(NULL, nlen, vlen, 2, 1);
2185 /* all that work just for this */
2186 my_setenv_format(environ[i], nam, nlen, val, vlen);
2190 # endif /* !PERL_USE_SAFE_PUTENV */
2192 # ifdef MY_HAS_SETENV
2193 # if defined(HAS_UNSETENV)
2195 (void)unsetenv(nam);
2197 (void)setenv(nam, val, 1);
2199 # else /* ! HAS_UNSETENV */
2200 (void)setenv(nam, val, 1);
2201 # endif /* HAS_UNSETENV */
2203 # elif defined(HAS_UNSETENV)
2206 if (environ) /* old glibc can crash with null environ */
2207 (void)unsetenv(nam);
2209 const Size_t nlen = strlen(nam);
2210 const Size_t vlen = strlen(val);
2211 char * const new_env = S_env_alloc(NULL, nlen, vlen, 2, 1);
2212 my_setenv_format(new_env, nam, nlen, val, vlen);
2213 (void)putenv(new_env);
2216 # else /* ! HAS_UNSETENV */
2219 const Size_t nlen = strlen(nam);
2225 new_env = S_env_alloc(NULL, nlen, vlen, 2, 1);
2226 /* all that work just for this */
2227 my_setenv_format(new_env, nam, nlen, val, vlen);
2228 (void)putenv(new_env);
2230 # endif /* MY_HAS_SETENV */
2232 # ifndef PERL_USE_SAFE_PUTENV
2237 # ifdef __amigaos4__
2239 amigaos4_release_environ(__FUNCTION__);
2243 # else /* WIN32 || NETWARE */
2246 Perl_my_setenv(pTHX_ const char *nam, const char *val)
2250 const Size_t nlen = strlen(nam);
2257 envstr = S_env_alloc(NULL, nlen, vlen, 2, 1);
2258 my_setenv_format(envstr, nam, nlen, val, vlen);
2259 (void)PerlEnv_putenv(envstr);
2263 # endif /* WIN32 || NETWARE */
2265 #endif /* USE_ENVIRON_ARRAY */
2270 #ifdef UNLINK_ALL_VERSIONS
2272 Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
2276 PERL_ARGS_ASSERT_UNLNK;
2278 while (PerlLIO_unlink(f) >= 0)
2280 return retries ? 0 : -1;
2285 Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
2287 #if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(OS2) && !defined(VMS) && !defined(NETWARE) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2295 PERL_ARGS_ASSERT_MY_POPEN_LIST;
2297 PERL_FLUSHALL_FOR_CHILD;
2298 This = (*mode == 'w');
2302 taint_proper("Insecure %s%s", "EXEC");
2304 if (PerlProc_pipe_cloexec(p) < 0)
2306 /* Try for another pipe pair for error return */
2307 if (PerlProc_pipe_cloexec(pp) >= 0)
2309 while ((pid = PerlProc_fork()) < 0) {
2310 if (errno != EAGAIN) {
2311 PerlLIO_close(p[This]);
2312 PerlLIO_close(p[that]);
2314 PerlLIO_close(pp[0]);
2315 PerlLIO_close(pp[1]);
2319 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2328 /* Close parent's end of error status pipe (if any) */
2330 PerlLIO_close(pp[0]);
2331 /* Now dup our end of _the_ pipe to right position */
2332 if (p[THIS] != (*mode == 'r')) {
2333 PerlLIO_dup2(p[THIS], *mode == 'r');
2334 PerlLIO_close(p[THIS]);
2335 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2336 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2339 setfd_cloexec_or_inhexec_by_sysfdness(p[THIS]);
2340 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2342 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2343 /* No automatic close - do it by hand */
2350 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
2356 do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
2363 PerlLIO_close(pp[1]);
2364 /* Keep the lower of the two fd numbers */
2365 if (p[that] < p[This]) {
2366 PerlLIO_dup2_cloexec(p[This], p[that]);
2367 PerlLIO_close(p[This]);
2371 PerlLIO_close(p[that]); /* close child's end of pipe */
2373 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2374 SvUPGRADE(sv,SVt_IV);
2376 PL_forkprocess = pid;
2377 /* If we managed to get status pipe check for exec fail */
2378 if (did_pipes && pid > 0) {
2380 unsigned read_total = 0;
2382 while (read_total < sizeof(int)) {
2383 const SSize_t n1 = PerlLIO_read(pp[0],
2384 (void*)(((char*)&errkid)+read_total),
2385 (sizeof(int)) - read_total);
2390 PerlLIO_close(pp[0]);
2392 if (read_total) { /* Error */
2394 PerlLIO_close(p[This]);
2395 if (read_total != sizeof(int))
2396 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", read_total);
2398 pid2 = wait4pid(pid, &status, 0);
2399 } while (pid2 == -1 && errno == EINTR);
2400 errno = errkid; /* Propagate errno from kid */
2405 PerlLIO_close(pp[0]);
2406 return PerlIO_fdopen(p[This], mode);
2408 # if defined(OS2) /* Same, without fork()ing and all extra overhead... */
2409 return my_syspopen4(aTHX_ NULL, mode, n, args);
2410 # elif defined(WIN32)
2411 return win32_popenlist(mode, n, args);
2413 Perl_croak(aTHX_ "List form of piped open not implemented");
2414 return (PerlIO *) NULL;
2419 /* VMS' my_popen() is in VMS.c, same with OS/2 and AmigaOS 4. */
2420 #if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2422 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2428 const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
2432 PERL_ARGS_ASSERT_MY_POPEN;
2434 PERL_FLUSHALL_FOR_CHILD;
2437 return my_syspopen(aTHX_ cmd,mode);
2440 This = (*mode == 'w');
2442 if (doexec && TAINTING_get) {
2444 taint_proper("Insecure %s%s", "EXEC");
2446 if (PerlProc_pipe_cloexec(p) < 0)
2448 if (doexec && PerlProc_pipe_cloexec(pp) >= 0)
2450 while ((pid = PerlProc_fork()) < 0) {
2451 if (errno != EAGAIN) {
2452 PerlLIO_close(p[This]);
2453 PerlLIO_close(p[that]);
2455 PerlLIO_close(pp[0]);
2456 PerlLIO_close(pp[1]);
2459 Perl_croak(aTHX_ "Can't fork: %s", Strerror(errno));
2462 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2472 PerlLIO_close(pp[0]);
2473 if (p[THIS] != (*mode == 'r')) {
2474 PerlLIO_dup2(p[THIS], *mode == 'r');
2475 PerlLIO_close(p[THIS]);
2476 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2477 PerlLIO_close(p[THAT]);
2480 setfd_cloexec_or_inhexec_by_sysfdness(p[THIS]);
2481 PerlLIO_close(p[THAT]);
2485 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2492 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2497 /* may or may not use the shell */
2498 do_exec3(cmd, pp[1], did_pipes);
2501 #endif /* defined OS2 */
2503 #ifdef PERLIO_USING_CRLF
2504 /* Since we circumvent IO layers when we manipulate low-level
2505 filedescriptors directly, need to manually switch to the
2506 default, binary, low-level mode; see PerlIOBuf_open(). */
2507 PerlLIO_setmode((*mode == 'r'), O_BINARY);
2510 #ifdef PERL_USES_PL_PIDSTATUS
2511 hv_clear(PL_pidstatus); /* we have no children */
2518 PerlLIO_close(pp[1]);
2519 if (p[that] < p[This]) {
2520 PerlLIO_dup2_cloexec(p[This], p[that]);
2521 PerlLIO_close(p[This]);
2525 PerlLIO_close(p[that]);
2527 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2528 SvUPGRADE(sv,SVt_IV);
2530 PL_forkprocess = pid;
2531 if (did_pipes && pid > 0) {
2535 while (n < sizeof(int)) {
2536 const SSize_t n1 = PerlLIO_read(pp[0],
2537 (void*)(((char*)&errkid)+n),
2543 PerlLIO_close(pp[0]);
2545 if (n) { /* Error */
2547 PerlLIO_close(p[This]);
2548 if (n != sizeof(int))
2549 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", n);
2551 pid2 = wait4pid(pid, &status, 0);
2552 } while (pid2 == -1 && errno == EINTR);
2553 errno = errkid; /* Propagate errno from kid */
2558 PerlLIO_close(pp[0]);
2559 return PerlIO_fdopen(p[This], mode);
2561 #elif defined(DJGPP)
2562 FILE *djgpp_popen();
2564 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2566 PERL_FLUSHALL_FOR_CHILD;
2567 /* Call system's popen() to get a FILE *, then import it.
2568 used 0 for 2nd parameter to PerlIO_importFILE;
2571 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2573 #elif defined(__LIBCATAMOUNT__)
2575 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2580 #endif /* !DOSISH */
2582 /* this is called in parent before the fork() */
2584 Perl_atfork_lock(void)
2585 #if defined(USE_ITHREADS)
2587 PERL_TSA_ACQUIRE(PL_perlio_mutex)
2590 PERL_TSA_ACQUIRE(PL_malloc_mutex)
2592 PERL_TSA_ACQUIRE(PL_op_mutex)
2595 #if defined(USE_ITHREADS)
2597 /* locks must be held in locking order (if any) */
2599 MUTEX_LOCK(&PL_perlio_mutex);
2602 MUTEX_LOCK(&PL_malloc_mutex);
2608 /* this is called in both parent and child after the fork() */
2610 Perl_atfork_unlock(void)
2611 #if defined(USE_ITHREADS)
2613 PERL_TSA_RELEASE(PL_perlio_mutex)
2616 PERL_TSA_RELEASE(PL_malloc_mutex)
2618 PERL_TSA_RELEASE(PL_op_mutex)
2621 #if defined(USE_ITHREADS)
2623 /* locks must be released in same order as in atfork_lock() */
2625 MUTEX_UNLOCK(&PL_perlio_mutex);
2628 MUTEX_UNLOCK(&PL_malloc_mutex);
2637 #if defined(HAS_FORK)
2639 #if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
2644 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2645 * handlers elsewhere in the code */
2649 #elif defined(__amigaos4__)
2650 return amigaos_fork();
2652 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2653 Perl_croak_nocontext("fork() not available");
2655 #endif /* HAS_FORK */
2660 dup2(int oldfd, int newfd)
2662 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2665 PerlLIO_close(newfd);
2666 return fcntl(oldfd, F_DUPFD, newfd);
2668 #define DUP2_MAX_FDS 256
2669 int fdtmp[DUP2_MAX_FDS];
2675 PerlLIO_close(newfd);
2676 /* good enough for low fd's... */
2677 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2678 if (fdx >= DUP2_MAX_FDS) {
2686 PerlLIO_close(fdtmp[--fdx]);
2693 #ifdef HAS_SIGACTION
2698 A wrapper for the C library L<signal(2)>. Don't use the latter, as the Perl
2699 version knows things that interact with the rest of the perl interpreter.
2705 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2707 struct sigaction act, oact;
2711 /* only "parent" interpreter can diddle signals */
2712 if (PL_curinterp != aTHX)
2713 return (Sighandler_t) SIG_ERR;
2716 act.sa_handler = (void(*)(int))handler;
2717 sigemptyset(&act.sa_mask);
2720 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2721 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2723 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2724 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2725 act.sa_flags |= SA_NOCLDWAIT;
2727 if (sigaction(signo, &act, &oact) == -1)
2728 return (Sighandler_t) SIG_ERR;
2730 return (Sighandler_t) oact.sa_handler;
2734 Perl_rsignal_state(pTHX_ int signo)
2736 struct sigaction oact;
2737 PERL_UNUSED_CONTEXT;
2739 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2740 return (Sighandler_t) SIG_ERR;
2742 return (Sighandler_t) oact.sa_handler;
2746 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2751 struct sigaction act;
2753 PERL_ARGS_ASSERT_RSIGNAL_SAVE;
2756 /* only "parent" interpreter can diddle signals */
2757 if (PL_curinterp != aTHX)
2761 act.sa_handler = (void(*)(int))handler;
2762 sigemptyset(&act.sa_mask);
2765 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2766 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2768 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2769 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2770 act.sa_flags |= SA_NOCLDWAIT;
2772 return sigaction(signo, &act, save);
2776 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2781 PERL_UNUSED_CONTEXT;
2783 /* only "parent" interpreter can diddle signals */
2784 if (PL_curinterp != aTHX)
2788 return sigaction(signo, save, (struct sigaction *)NULL);
2791 #else /* !HAS_SIGACTION */
2794 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2796 #if defined(USE_ITHREADS) && !defined(WIN32)
2797 /* only "parent" interpreter can diddle signals */
2798 if (PL_curinterp != aTHX)
2799 return (Sighandler_t) SIG_ERR;
2802 return PerlProc_signal(signo, handler);
2813 Perl_rsignal_state(pTHX_ int signo)
2816 Sighandler_t oldsig;
2818 #if defined(USE_ITHREADS) && !defined(WIN32)
2819 /* only "parent" interpreter can diddle signals */
2820 if (PL_curinterp != aTHX)
2821 return (Sighandler_t) SIG_ERR;
2825 oldsig = PerlProc_signal(signo, sig_trap);
2826 PerlProc_signal(signo, oldsig);
2828 PerlProc_kill(PerlProc_getpid(), signo);
2833 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2835 #if defined(USE_ITHREADS) && !defined(WIN32)
2836 /* only "parent" interpreter can diddle signals */
2837 if (PL_curinterp != aTHX)
2840 *save = PerlProc_signal(signo, handler);
2841 return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
2845 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2847 #if defined(USE_ITHREADS) && !defined(WIN32)
2848 /* only "parent" interpreter can diddle signals */
2849 if (PL_curinterp != aTHX)
2852 return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
2855 #endif /* !HAS_SIGACTION */
2856 #endif /* !PERL_MICRO */
2858 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2859 #if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2861 Perl_my_pclose(pTHX_ PerlIO *ptr)
2869 const int fd = PerlIO_fileno(ptr);
2872 svp = av_fetch(PL_fdpid,fd,TRUE);
2873 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
2877 #if defined(USE_PERLIO)
2878 /* Find out whether the refcount is low enough for us to wait for the
2879 child proc without blocking. */
2880 should_wait = PerlIOUnix_refcnt(fd) == 1 && pid > 0;
2882 should_wait = pid > 0;
2886 if (pid == -1) { /* Opened by popen. */
2887 return my_syspclose(ptr);
2890 close_failed = (PerlIO_close(ptr) == EOF);
2892 if (should_wait) do {
2893 pid2 = wait4pid(pid, &status, 0);
2894 } while (pid2 == -1 && errno == EINTR);
2901 ? pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status)
2905 #elif defined(__LIBCATAMOUNT__)
2907 Perl_my_pclose(pTHX_ PerlIO *ptr)
2911 #endif /* !DOSISH */
2913 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(__LIBCATAMOUNT__)
2915 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2918 PERL_ARGS_ASSERT_WAIT4PID;
2919 #ifdef PERL_USES_PL_PIDSTATUS
2921 /* PERL_USES_PL_PIDSTATUS is only defined when neither
2922 waitpid() nor wait4() is available, or on OS/2, which
2923 doesn't appear to support waiting for a progress group
2924 member, so we can only treat a 0 pid as an unknown child.
2931 /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
2932 pid, rather than a string form. */
2933 SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
2934 if (svp && *svp != &PL_sv_undef) {
2935 *statusp = SvIVX(*svp);
2936 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
2944 hv_iterinit(PL_pidstatus);
2945 if ((entry = hv_iternext(PL_pidstatus))) {
2946 SV * const sv = hv_iterval(PL_pidstatus,entry);
2948 const char * const spid = hv_iterkey(entry,&len);
2950 assert (len == sizeof(Pid_t));
2951 memcpy((char *)&pid, spid, len);
2952 *statusp = SvIVX(sv);
2953 /* The hash iterator is currently on this entry, so simply
2954 calling hv_delete would trigger the lazy delete, which on
2955 aggregate does more work, because next call to hv_iterinit()
2956 would spot the flag, and have to call the delete routine,
2957 while in the meantime any new entries can't re-use that
2959 hv_iterinit(PL_pidstatus);
2960 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
2967 # ifdef HAS_WAITPID_RUNTIME
2968 if (!HAS_WAITPID_RUNTIME)
2971 result = PerlProc_waitpid(pid,statusp,flags);
2974 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2975 result = wait4(pid,statusp,flags,NULL);
2978 #ifdef PERL_USES_PL_PIDSTATUS
2979 #if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
2984 Perl_croak(aTHX_ "Can't do waitpid with flags");
2986 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2987 pidgone(result,*statusp);
2993 #if defined(HAS_WAITPID) || defined(HAS_WAIT4)
2996 if (result < 0 && errno == EINTR) {
2998 errno = EINTR; /* reset in case a signal handler changed $! */
3002 #endif /* !DOSISH || OS2 || WIN32 || NETWARE */
3004 #ifdef PERL_USES_PL_PIDSTATUS
3006 S_pidgone(pTHX_ Pid_t pid, int status)
3010 sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
3011 SvUPGRADE(sv,SVt_IV);
3012 SvIV_set(sv, status);
3020 int /* Cannot prototype with I32
3022 my_syspclose(PerlIO *ptr)
3025 Perl_my_pclose(pTHX_ PerlIO *ptr)
3028 /* Needs work for PerlIO ! */
3029 FILE * const f = PerlIO_findFILE(ptr);
3030 const I32 result = pclose(f);
3031 PerlIO_releaseFILE(ptr,f);
3039 Perl_my_pclose(pTHX_ PerlIO *ptr)
3041 /* Needs work for PerlIO ! */
3042 FILE * const f = PerlIO_findFILE(ptr);
3043 I32 result = djgpp_pclose(f);
3044 result = (result << 8) & 0xff00;
3045 PerlIO_releaseFILE(ptr,f);
3050 #define PERL_REPEATCPY_LINEAR 4
3052 Perl_repeatcpy(char *to, const char *from, I32 len, IV count)
3054 PERL_ARGS_ASSERT_REPEATCPY;
3059 croak_memory_wrap();
3062 memset(to, *from, count);
3065 IV items, linear, half;
3067 linear = count < PERL_REPEATCPY_LINEAR ? count : PERL_REPEATCPY_LINEAR;
3068 for (items = 0; items < linear; ++items) {
3069 const char *q = from;
3071 for (todo = len; todo > 0; todo--)
3076 while (items <= half) {
3077 IV size = items * len;
3078 memcpy(p, to, size);
3084 memcpy(p, to, (count - items) * len);
3090 Perl_same_dirent(pTHX_ const char *a, const char *b)
3092 char *fa = strrchr(a,'/');
3093 char *fb = strrchr(b,'/');
3096 SV * const tmpsv = sv_newmortal();
3098 PERL_ARGS_ASSERT_SAME_DIRENT;
3111 sv_setpvs(tmpsv, ".");
3113 sv_setpvn(tmpsv, a, fa - a);
3114 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
3117 sv_setpvs(tmpsv, ".");
3119 sv_setpvn(tmpsv, b, fb - b);
3120 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
3122 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3123 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3125 #endif /* !HAS_RENAME */
3128 Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3129 const char *const *const search_ext, I32 flags)
3131 const char *xfound = NULL;
3132 char *xfailed = NULL;
3133 char tmpbuf[MAXPATHLEN];
3138 #if defined(DOSISH) && !defined(OS2)
3139 # define SEARCH_EXTS ".bat", ".cmd", NULL
3140 # define MAX_EXT_LEN 4
3143 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3144 # define MAX_EXT_LEN 4
3147 # define SEARCH_EXTS ".pl", ".com", NULL
3148 # define MAX_EXT_LEN 4
3150 /* additional extensions to try in each dir if scriptname not found */
3152 static const char *const exts[] = { SEARCH_EXTS };
3153 const char *const *const ext = search_ext ? search_ext : exts;
3154 int extidx = 0, i = 0;
3155 const char *curext = NULL;
3157 PERL_UNUSED_ARG(search_ext);
3158 # define MAX_EXT_LEN 0
3161 PERL_ARGS_ASSERT_FIND_SCRIPT;
3164 * If dosearch is true and if scriptname does not contain path
3165 * delimiters, search the PATH for scriptname.
3167 * If SEARCH_EXTS is also defined, will look for each
3168 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3169 * while searching the PATH.
3171 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3172 * proceeds as follows:
3173 * If DOSISH or VMSISH:
3174 * + look for ./scriptname{,.foo,.bar}
3175 * + search the PATH for scriptname{,.foo,.bar}
3178 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3179 * this will not look in '.' if it's not in the PATH)
3184 # ifdef ALWAYS_DEFTYPES
3185 len = strlen(scriptname);
3186 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3187 int idx = 0, deftypes = 1;
3190 const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
3193 int idx = 0, deftypes = 1;
3196 const int hasdir = (strpbrk(scriptname,":[</") != NULL);
3198 /* The first time through, just add SEARCH_EXTS to whatever we
3199 * already have, so we can check for default file types. */
3201 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3208 if ((strlen(tmpbuf) + strlen(scriptname)
3209 + MAX_EXT_LEN) >= sizeof tmpbuf)
3210 continue; /* don't search dir with too-long name */
3211 my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
3215 if (strEQ(scriptname, "-"))
3217 if (dosearch) { /* Look in '.' first. */
3218 const char *cur = scriptname;
3220 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3222 if (strEQ(ext[i++],curext)) {
3223 extidx = -1; /* already has an ext */
3228 DEBUG_p(PerlIO_printf(Perl_debug_log,
3229 "Looking for %s\n",cur));
3232 if (PerlLIO_stat(cur,&statbuf) >= 0
3233 && !S_ISDIR(statbuf.st_mode)) {
3242 if (cur == scriptname) {
3243 len = strlen(scriptname);
3244 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3246 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3249 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3250 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
3255 if (dosearch && !strchr(scriptname, '/')
3257 && !strchr(scriptname, '\\')
3259 && (s = PerlEnv_getenv("PATH")))
3263 bufend = s + strlen(s);
3264 while (s < bufend) {
3268 && *s != ';'; len++, s++) {
3269 if (len < sizeof tmpbuf)
3272 if (len < sizeof tmpbuf)
3275 s = delimcpy_no_escape(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
3280 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3281 continue; /* don't search dir with too-long name */
3284 && tmpbuf[len - 1] != '/'
3285 && tmpbuf[len - 1] != '\\'
3288 tmpbuf[len++] = '/';
3289 if (len == 2 && tmpbuf[0] == '.')
3291 (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
3295 len = strlen(tmpbuf);
3296 if (extidx > 0) /* reset after previous loop */
3300 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3301 retval = PerlLIO_stat(tmpbuf,&statbuf);
3302 if (S_ISDIR(statbuf.st_mode)) {
3306 } while ( retval < 0 /* not there */
3307 && extidx>=0 && ext[extidx] /* try an extension? */
3308 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
3313 if (S_ISREG(statbuf.st_mode)
3314 && cando(S_IRUSR,TRUE,&statbuf)
3315 #if !defined(DOSISH)
3316 && cando(S_IXUSR,TRUE,&statbuf)
3320 xfound = tmpbuf; /* bingo! */
3324 xfailed = savepv(tmpbuf);
3329 if (!xfound && !seen_dot && !xfailed &&
3330 (PerlLIO_stat(scriptname,&statbuf) < 0
3331 || S_ISDIR(statbuf.st_mode)))
3333 seen_dot = 1; /* Disable message. */
3338 if (flags & 1) { /* do or die? */
3339 /* diag_listed_as: Can't execute %s */
3340 Perl_croak(aTHX_ "Can't %s %s%s%s",
3341 (xfailed ? "execute" : "find"),
3342 (xfailed ? xfailed : scriptname),
3343 (xfailed ? "" : " on PATH"),
3344 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3349 scriptname = xfound;
3351 return (scriptname ? savepv(scriptname) : NULL);
3354 #ifndef PERL_GET_CONTEXT_DEFINED
3357 Perl_get_context(void)
3359 #if defined(USE_ITHREADS)
3361 # ifdef OLD_PTHREADS_API
3363 int error = pthread_getspecific(PL_thr_key, &t);
3365 Perl_croak_nocontext("panic: pthread_getspecific, error=%d", error);
3367 # elif defined(I_MACH_CTHREADS)
3368 return (void*)cthread_data(cthread_self());
3370 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3378 Perl_set_context(void *t)
3380 #if defined(USE_ITHREADS)
3383 PERL_ARGS_ASSERT_SET_CONTEXT;
3384 #if defined(USE_ITHREADS)
3385 # ifdef I_MACH_CTHREADS
3386 cthread_set_data(cthread_self(), t);
3389 const int error = pthread_setspecific(PL_thr_key, t);
3391 Perl_croak_nocontext("panic: pthread_setspecific, error=%d", error);
3399 #endif /* !PERL_GET_CONTEXT_DEFINED */
3401 #if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
3405 PERL_UNUSED_CONTEXT;
3411 Perl_get_op_names(pTHX)
3413 PERL_UNUSED_CONTEXT;
3414 return (char **)PL_op_name;
3418 Perl_get_op_descs(pTHX)
3420 PERL_UNUSED_CONTEXT;
3421 return (char **)PL_op_desc;
3425 Perl_get_no_modify(pTHX)
3427 PERL_UNUSED_CONTEXT;
3428 return PL_no_modify;
3432 Perl_get_opargs(pTHX)
3434 PERL_UNUSED_CONTEXT;
3435 return (U32 *)PL_opargs;
3439 Perl_get_ppaddr(pTHX)
3442 PERL_UNUSED_CONTEXT;
3443 return (PPADDR_t*)PL_ppaddr;
3446 #ifndef HAS_GETENV_LEN
3448 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3450 char * const env_trans = PerlEnv_getenv(env_elem);
3451 PERL_UNUSED_CONTEXT;
3452 PERL_ARGS_ASSERT_GETENV_LEN;
3454 *len = strlen(env_trans);
3461 Perl_get_vtbl(pTHX_ int vtbl_id)
3463 PERL_UNUSED_CONTEXT;
3465 return (vtbl_id < 0 || vtbl_id >= magic_vtable_max)
3466 ? NULL : (MGVTBL*)PL_magic_vtables + vtbl_id;
3470 Perl_my_fflush_all(pTHX)
3472 #if defined(USE_PERLIO) || defined(FFLUSH_NULL)
3473 return PerlIO_flush(NULL);
3475 # if defined(HAS__FWALK)
3476 extern int fflush(FILE *);
3477 /* undocumented, unprototyped, but very useful BSDism */
3478 extern void _fwalk(int (*)(FILE *));
3482 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3484 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3485 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3486 # elif defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3487 open_max = sysconf(_SC_OPEN_MAX);
3488 # elif defined(FOPEN_MAX)
3489 open_max = FOPEN_MAX;
3490 # elif defined(OPEN_MAX)
3491 open_max = OPEN_MAX;
3492 # elif defined(_NFILE)
3497 for (i = 0; i < open_max; i++)
3498 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3499 STDIO_STREAM_ARRAY[i]._file < open_max &&
3500 STDIO_STREAM_ARRAY[i]._flag)
3501 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3505 SETERRNO(EBADF,RMS_IFI);
3512 Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have)
3514 if (ckWARN(WARN_IO)) {
3516 = gv && (isGV_with_GP(gv))
3519 const char * const direction = have == '>' ? "out" : "in";
3521 if (name && HEK_LEN(name))
3522 Perl_warner(aTHX_ packWARN(WARN_IO),
3523 "Filehandle %" HEKf " opened only for %sput",
3524 HEKfARG(name), direction);
3526 Perl_warner(aTHX_ packWARN(WARN_IO),
3527 "Filehandle opened only for %sput", direction);
3532 Perl_report_evil_fh(pTHX_ const GV *gv)
3534 const IO *io = gv ? GvIO(gv) : NULL;
3535 const PERL_BITFIELD16 op = PL_op->op_type;
3539 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3541 warn_type = WARN_CLOSED;
3545 warn_type = WARN_UNOPENED;
3548 if (ckWARN(warn_type)) {
3550 = gv && isGV_with_GP(gv) && GvENAMELEN(gv) ?
3551 sv_2mortal(newSVhek(GvENAME_HEK(gv))) : NULL;
3552 const char * const pars =
3553 (const char *)(OP_IS_FILETEST(op) ? "" : "()");
3554 const char * const func =
3556 (op == OP_READLINE || op == OP_RCATLINE
3557 ? "readline" : /* "<HANDLE>" not nice */
3558 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3560 const char * const type =
3562 (OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET)
3563 ? "socket" : "filehandle");
3564 const bool have_name = name && SvCUR(name);
3565 Perl_warner(aTHX_ packWARN(warn_type),
3566 "%s%s on %s %s%s%" SVf, func, pars, vile, type,
3567 have_name ? " " : "",
3568 SVfARG(have_name ? name : &PL_sv_no));
3569 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3571 aTHX_ packWARN(warn_type),
3572 "\t(Are you trying to call %s%s on dirhandle%s%" SVf "?)\n",
3573 func, pars, have_name ? " " : "",
3574 SVfARG(have_name ? name : &PL_sv_no)
3579 /* To workaround core dumps from the uninitialised tm_zone we get the
3580 * system to give us a reasonable struct to copy. This fix means that
3581 * strftime uses the tm_zone and tm_gmtoff values returned by
3582 * localtime(time()). That should give the desired result most of the
3583 * time. But probably not always!
3585 * This does not address tzname aspects of NETaa14816.
3590 # ifndef STRUCT_TM_HASZONE
3591 # define STRUCT_TM_HASZONE
3595 #ifdef STRUCT_TM_HASZONE /* Backward compat */
3596 # ifndef HAS_TM_TM_ZONE
3597 # define HAS_TM_TM_ZONE
3602 Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
3604 #ifdef HAS_TM_TM_ZONE
3606 const struct tm* my_tm;
3607 PERL_UNUSED_CONTEXT;
3608 PERL_ARGS_ASSERT_INIT_TM;
3610 my_tm = localtime(&now);
3612 Copy(my_tm, ptm, 1, struct tm);
3614 PERL_UNUSED_CONTEXT;
3615 PERL_ARGS_ASSERT_INIT_TM;
3616 PERL_UNUSED_ARG(ptm);
3621 * mini_mktime - normalise struct tm values without the localtime()
3622 * semantics (and overhead) of mktime().
3625 Perl_mini_mktime(struct tm *ptm)
3629 int month, mday, year, jday;
3630 int odd_cent, odd_year;
3632 PERL_ARGS_ASSERT_MINI_MKTIME;
3634 #define DAYS_PER_YEAR 365
3635 #define DAYS_PER_QYEAR (4*DAYS_PER_YEAR+1)
3636 #define DAYS_PER_CENT (25*DAYS_PER_QYEAR-1)
3637 #define DAYS_PER_QCENT (4*DAYS_PER_CENT+1)
3638 #define SECS_PER_HOUR (60*60)
3639 #define SECS_PER_DAY (24*SECS_PER_HOUR)
3640 /* parentheses deliberately absent on these two, otherwise they don't work */
3641 #define MONTH_TO_DAYS 153/5
3642 #define DAYS_TO_MONTH 5/153
3643 /* offset to bias by March (month 4) 1st between month/mday & year finding */
3644 #define YEAR_ADJUST (4*MONTH_TO_DAYS+1)
3645 /* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
3646 #define WEEKDAY_BIAS 6 /* (1+6)%7 makes Sunday 0 again */
3649 * Year/day algorithm notes:
3651 * With a suitable offset for numeric value of the month, one can find
3652 * an offset into the year by considering months to have 30.6 (153/5) days,
3653 * using integer arithmetic (i.e., with truncation). To avoid too much
3654 * messing about with leap days, we consider January and February to be
3655 * the 13th and 14th month of the previous year. After that transformation,
3656 * we need the month index we use to be high by 1 from 'normal human' usage,
3657 * so the month index values we use run from 4 through 15.
3659 * Given that, and the rules for the Gregorian calendar (leap years are those
3660 * divisible by 4 unless also divisible by 100, when they must be divisible
3661 * by 400 instead), we can simply calculate the number of days since some
3662 * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
3663 * the days we derive from our month index, and adding in the day of the
3664 * month. The value used here is not adjusted for the actual origin which
3665 * it normally would use (1 January A.D. 1), since we're not exposing it.
3666 * We're only building the value so we can turn around and get the
3667 * normalised values for the year, month, day-of-month, and day-of-year.
3669 * For going backward, we need to bias the value we're using so that we find
3670 * the right year value. (Basically, we don't want the contribution of
3671 * March 1st to the number to apply while deriving the year). Having done
3672 * that, we 'count up' the contribution to the year number by accounting for
3673 * full quadracenturies (400-year periods) with their extra leap days, plus
3674 * the contribution from full centuries (to avoid counting in the lost leap
3675 * days), plus the contribution from full quad-years (to count in the normal
3676 * leap days), plus the leftover contribution from any non-leap years.
3677 * At this point, if we were working with an actual leap day, we'll have 0
3678 * days left over. This is also true for March 1st, however. So, we have
3679 * to special-case that result, and (earlier) keep track of the 'odd'
3680 * century and year contributions. If we got 4 extra centuries in a qcent,
3681 * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
3682 * Otherwise, we add back in the earlier bias we removed (the 123 from
3683 * figuring in March 1st), find the month index (integer division by 30.6),
3684 * and the remainder is the day-of-month. We then have to convert back to
3685 * 'real' months (including fixing January and February from being 14/15 in
3686 * the previous year to being in the proper year). After that, to get
3687 * tm_yday, we work with the normalised year and get a new yearday value for
3688 * January 1st, which we subtract from the yearday value we had earlier,
3689 * representing the date we've re-built. This is done from January 1
3690 * because tm_yday is 0-origin.
3692 * Since POSIX time routines are only guaranteed to work for times since the
3693 * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
3694 * applies Gregorian calendar rules even to dates before the 16th century
3695 * doesn't bother me. Besides, you'd need cultural context for a given
3696 * date to know whether it was Julian or Gregorian calendar, and that's
3697 * outside the scope for this routine. Since we convert back based on the
3698 * same rules we used to build the yearday, you'll only get strange results
3699 * for input which needed normalising, or for the 'odd' century years which
3700 * were leap years in the Julian calendar but not in the Gregorian one.
3701 * I can live with that.
3703 * This algorithm also fails to handle years before A.D. 1 gracefully, but
3704 * that's still outside the scope for POSIX time manipulation, so I don't
3710 year = 1900 + ptm->tm_year;
3711 month = ptm->tm_mon;
3712 mday = ptm->tm_mday;
3718 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
3719 yearday += month*MONTH_TO_DAYS + mday + jday;
3721 * Note that we don't know when leap-seconds were or will be,
3722 * so we have to trust the user if we get something which looks
3723 * like a sensible leap-second. Wild values for seconds will
3724 * be rationalised, however.
3726 if ((unsigned) ptm->tm_sec <= 60) {
3733 secs += 60 * ptm->tm_min;
3734 secs += SECS_PER_HOUR * ptm->tm_hour;
3736 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3737 /* got negative remainder, but need positive time */
3738 /* back off an extra day to compensate */
3739 yearday += (secs/SECS_PER_DAY)-1;
3740 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
3743 yearday += (secs/SECS_PER_DAY);
3744 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
3747 else if (secs >= SECS_PER_DAY) {
3748 yearday += (secs/SECS_PER_DAY);
3749 secs %= SECS_PER_DAY;
3751 ptm->tm_hour = secs/SECS_PER_HOUR;
3752 secs %= SECS_PER_HOUR;
3753 ptm->tm_min = secs/60;
3755 ptm->tm_sec += secs;
3756 /* done with time of day effects */
3758 * The algorithm for yearday has (so far) left it high by 428.
3759 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
3760 * bias it by 123 while trying to figure out what year it
3761 * really represents. Even with this tweak, the reverse
3762 * translation fails for years before A.D. 0001.
3763 * It would still fail for Feb 29, but we catch that one below.
3765 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
3766 yearday -= YEAR_ADJUST;
3767 year = (yearday / DAYS_PER_QCENT) * 400;
3768 yearday %= DAYS_PER_QCENT;
3769 odd_cent = yearday / DAYS_PER_CENT;
3770 year += odd_cent * 100;
3771 yearday %= DAYS_PER_CENT;
3772 year += (yearday / DAYS_PER_QYEAR) * 4;
3773 yearday %= DAYS_PER_QYEAR;
3774 odd_year = yearday / DAYS_PER_YEAR;
3776 yearday %= DAYS_PER_YEAR;
3777 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
3782 yearday += YEAR_ADJUST; /* recover March 1st crock */
3783 month = yearday*DAYS_TO_MONTH;
3784 yearday -= month*MONTH_TO_DAYS;
3785 /* recover other leap-year adjustment */
3794 ptm->tm_year = year - 1900;
3796 ptm->tm_mday = yearday;
3797 ptm->tm_mon = month;
3801 ptm->tm_mon = month - 1;
3803 /* re-build yearday based on Jan 1 to get tm_yday */
3805 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
3806 yearday += 14*MONTH_TO_DAYS + 1;
3807 ptm->tm_yday = jday - yearday;
3808 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
3812 Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst)
3816 /* strftime(), but with a different API so that the return value is a pointer
3817 * to the formatted result (which MUST be arranged to be FREED BY THE
3818 * CALLER). This allows this function to increase the buffer size as needed,
3819 * so that the caller doesn't have to worry about that.
3821 * Note that yday and wday effectively are ignored by this function, as
3822 * mini_mktime() overwrites them */
3829 PERL_ARGS_ASSERT_MY_STRFTIME;
3831 init_tm(&mytm); /* XXX workaround - see init_tm() above */
3834 mytm.tm_hour = hour;
3835 mytm.tm_mday = mday;
3837 mytm.tm_year = year;
3838 mytm.tm_wday = wday;
3839 mytm.tm_yday = yday;
3840 mytm.tm_isdst = isdst;
3842 /* use libc to get the values for tm_gmtoff and tm_zone [perl #18238] */
3843 #if defined(HAS_MKTIME) && (defined(HAS_TM_TM_GMTOFF) || defined(HAS_TM_TM_ZONE))
3848 #ifdef HAS_TM_TM_GMTOFF
3849 mytm.tm_gmtoff = mytm2.tm_gmtoff;
3851 #ifdef HAS_TM_TM_ZONE
3852 mytm.tm_zone = mytm2.tm_zone;
3857 Newx(buf, buflen, char);
3859 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* fmt checked by caller */
3860 len = strftime(buf, buflen, fmt, &mytm);
3861 GCC_DIAG_RESTORE_STMT;
3864 ** The following is needed to handle to the situation where
3865 ** tmpbuf overflows. Basically we want to allocate a buffer
3866 ** and try repeatedly. The reason why it is so complicated
3867 ** is that getting a return value of 0 from strftime can indicate
3868 ** one of the following:
3869 ** 1. buffer overflowed,
3870 ** 2. illegal conversion specifier, or
3871 ** 3. the format string specifies nothing to be returned(not
3872 ** an error). This could be because format is an empty string
3873 ** or it specifies %p that yields an empty string in some locale.
3874 ** If there is a better way to make it portable, go ahead by
3877 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
3880 /* Possibly buf overflowed - try again with a bigger buf */
3881 const int fmtlen = strlen(fmt);
3882 int bufsize = fmtlen + buflen;
3884 Renew(buf, bufsize, char);
3887 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* fmt checked by caller */
3888 buflen = strftime(buf, bufsize, fmt, &mytm);
3889 GCC_DIAG_RESTORE_STMT;
3891 if (buflen > 0 && buflen < bufsize)
3893 /* heuristic to prevent out-of-memory errors */
3894 if (bufsize > 100*fmtlen) {
3900 Renew(buf, bufsize, char);
3905 Perl_croak(aTHX_ "panic: no strftime");
3911 #define SV_CWD_RETURN_UNDEF \
3915 #define SV_CWD_ISDOT(dp) \
3916 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
3917 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
3920 =head1 Miscellaneous Functions
3922 =for apidoc getcwd_sv
3924 Fill C<sv> with current working directory
3929 /* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
3930 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
3931 * getcwd(3) if available
3932 * Comments from the original:
3933 * This is a faster version of getcwd. It's also more dangerous
3934 * because you might chdir out of a directory that you can't chdir
3938 Perl_getcwd_sv(pTHX_ SV *sv)
3943 PERL_ARGS_ASSERT_GETCWD_SV;
3947 char buf[MAXPATHLEN];
3949 /* Some getcwd()s automatically allocate a buffer of the given
3950 * size from the heap if they are given a NULL buffer pointer.
3951 * The problem is that this behaviour is not portable. */
3952 if (getcwd(buf, sizeof(buf) - 1)) {
3957 SV_CWD_RETURN_UNDEF;
3964 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
3968 SvUPGRADE(sv, SVt_PV);
3970 if (PerlLIO_lstat(".", &statbuf) < 0) {
3971 SV_CWD_RETURN_UNDEF;
3974 orig_cdev = statbuf.st_dev;
3975 orig_cino = statbuf.st_ino;
3985 if (PerlDir_chdir("..") < 0) {
3986 SV_CWD_RETURN_UNDEF;
3988 if (PerlLIO_stat(".", &statbuf) < 0) {
3989 SV_CWD_RETURN_UNDEF;
3992 cdev = statbuf.st_dev;
3993 cino = statbuf.st_ino;
3995 if (odev == cdev && oino == cino) {
3998 if (!(dir = PerlDir_open("."))) {
3999 SV_CWD_RETURN_UNDEF;
4002 while ((dp = PerlDir_read(dir)) != NULL) {
4004 namelen = dp->d_namlen;
4006 namelen = strlen(dp->d_name);
4009 if (SV_CWD_ISDOT(dp)) {
4013 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
4014 SV_CWD_RETURN_UNDEF;
4017 tdev = statbuf.st_dev;
4018 tino = statbuf.st_ino;
4019 if (tino == oino && tdev == odev) {
4025 SV_CWD_RETURN_UNDEF;
4028 if (pathlen + namelen + 1 >= MAXPATHLEN) {
4029 SV_CWD_RETURN_UNDEF;
4032 SvGROW(sv, pathlen + namelen + 1);
4036 Move(SvPVX_const(sv), SvPVX(sv) + namelen + 1, pathlen, char);
4039 /* prepend current directory to the front */
4041 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
4042 pathlen += (namelen + 1);
4044 #ifdef VOID_CLOSEDIR
4047 if (PerlDir_close(dir) < 0) {
4048 SV_CWD_RETURN_UNDEF;
4054 SvCUR_set(sv, pathlen);
4058 if (PerlDir_chdir(SvPVX_const(sv)) < 0) {
4059 SV_CWD_RETURN_UNDEF;
4062 if (PerlLIO_stat(".", &statbuf) < 0) {
4063 SV_CWD_RETURN_UNDEF;
4066 cdev = statbuf.st_dev;
4067 cino = statbuf.st_ino;
4069 if (cdev != orig_cdev || cino != orig_cino) {
4070 Perl_croak(aTHX_ "Unstable directory path, "
4071 "current directory changed unexpectedly");
4084 #if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET) && defined(SOCK_DGRAM) && defined(HAS_SELECT)
4085 # define EMULATE_SOCKETPAIR_UDP
4088 #ifdef EMULATE_SOCKETPAIR_UDP
4090 S_socketpair_udp (int fd[2]) {
4092 /* Fake a datagram socketpair using UDP to localhost. */
4093 int sockets[2] = {-1, -1};
4094 struct sockaddr_in addresses[2];
4096 Sock_size_t size = sizeof(struct sockaddr_in);
4097 unsigned short port;
4100 memset(&addresses, 0, sizeof(addresses));
4103 sockets[i] = PerlSock_socket(AF_INET, SOCK_DGRAM, PF_INET);
4104 if (sockets[i] == -1)
4105 goto tidy_up_and_fail;
4107 addresses[i].sin_family = AF_INET;
4108 addresses[i].sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4109 addresses[i].sin_port = 0; /* kernel choses port. */
4110 if (PerlSock_bind(sockets[i], (struct sockaddr *) &addresses[i],
4111 sizeof(struct sockaddr_in)) == -1)
4112 goto tidy_up_and_fail;
4115 /* Now have 2 UDP sockets. Find out which port each is connected to, and
4116 for each connect the other socket to it. */
4119 if (PerlSock_getsockname(sockets[i], (struct sockaddr *) &addresses[i],
4121 goto tidy_up_and_fail;
4122 if (size != sizeof(struct sockaddr_in))
4123 goto abort_tidy_up_and_fail;
4124 /* !1 is 0, !0 is 1 */
4125 if (PerlSock_connect(sockets[!i], (struct sockaddr *) &addresses[i],
4126 sizeof(struct sockaddr_in)) == -1)
4127 goto tidy_up_and_fail;
4130 /* Now we have 2 sockets connected to each other. I don't trust some other
4131 process not to have already sent a packet to us (by random) so send
4132 a packet from each to the other. */
4135 /* I'm going to send my own port number. As a short.
4136 (Who knows if someone somewhere has sin_port as a bitfield and needs
4137 this routine. (I'm assuming crays have socketpair)) */
4138 port = addresses[i].sin_port;
4139 got = PerlLIO_write(sockets[i], &port, sizeof(port));
4140 if (got != sizeof(port)) {
4142 goto tidy_up_and_fail;
4143 goto abort_tidy_up_and_fail;
4147 /* Packets sent. I don't trust them to have arrived though.
4148 (As I understand it Solaris TCP stack is multithreaded. Non-blocking
4149 connect to localhost will use a second kernel thread. In 2.6 the
4150 first thread running the connect() returns before the second completes,
4151 so EINPROGRESS> In 2.7 the improved stack is faster and connect()
4152 returns 0. Poor programs have tripped up. One poor program's authors'
4153 had a 50-1 reverse stock split. Not sure how connected these were.)
4154 So I don't trust someone not to have an unpredictable UDP stack.
4158 struct timeval waitfor = {0, 100000}; /* You have 0.1 seconds */
4159 int max = sockets[1] > sockets[0] ? sockets[1] : sockets[0];
4163 FD_SET((unsigned int)sockets[0], &rset);
4164 FD_SET((unsigned int)sockets[1], &rset);
4166 got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
4167 if (got != 2 || !FD_ISSET(sockets[0], &rset)
4168 || !FD_ISSET(sockets[1], &rset)) {
4169 /* I hope this is portable and appropriate. */
4171 goto tidy_up_and_fail;
4172 goto abort_tidy_up_and_fail;
4176 /* And the paranoia department even now doesn't trust it to have arrive
4177 (hence MSG_DONTWAIT). Or that what arrives was sent by us. */
4179 struct sockaddr_in readfrom;
4180 unsigned short buffer[2];
4185 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4186 sizeof(buffer), MSG_DONTWAIT,
4187 (struct sockaddr *) &readfrom, &size);
4189 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4191 (struct sockaddr *) &readfrom, &size);
4195 goto tidy_up_and_fail;
4196 if (got != sizeof(port)
4197 || size != sizeof(struct sockaddr_in)
4198 /* Check other socket sent us its port. */
4199 || buffer[0] != (unsigned short) addresses[!i].sin_port
4200 /* Check kernel says we got the datagram from that socket */
4201 || readfrom.sin_family != addresses[!i].sin_family
4202 || readfrom.sin_addr.s_addr != addresses[!i].sin_addr.s_addr
4203 || readfrom.sin_port != addresses[!i].sin_port)
4204 goto abort_tidy_up_and_fail;
4207 /* My caller (my_socketpair) has validated that this is non-NULL */
4210 /* I hereby declare this connection open. May God bless all who cross
4214 abort_tidy_up_and_fail:
4215 errno = ECONNABORTED;
4219 if (sockets[0] != -1)
4220 PerlLIO_close(sockets[0]);
4221 if (sockets[1] != -1)
4222 PerlLIO_close(sockets[1]);
4227 #endif /* EMULATE_SOCKETPAIR_UDP */
4229 #if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET)
4231 Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
4232 /* Stevens says that family must be AF_LOCAL, protocol 0.
4233 I'm going to enforce that, then ignore it, and use TCP (or UDP). */
4238 struct sockaddr_in listen_addr;
4239 struct sockaddr_in connect_addr;
4244 || family != AF_UNIX
4247 errno = EAFNOSUPPORT;
4256 type &= ~SOCK_CLOEXEC;
4259 #ifdef EMULATE_SOCKETPAIR_UDP
4260 if (type == SOCK_DGRAM)
4261 return S_socketpair_udp(fd);
4264 aTHXa(PERL_GET_THX);
4265 listener = PerlSock_socket(AF_INET, type, 0);
4268 memset(&listen_addr, 0, sizeof(listen_addr));
4269 listen_addr.sin_family = AF_INET;
4270 listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4271 listen_addr.sin_port = 0; /* kernel choses port. */
4272 if (PerlSock_bind(listener, (struct sockaddr *) &listen_addr,
4273 sizeof(listen_addr)) == -1)
4274 goto tidy_up_and_fail;
4275 if (PerlSock_listen(listener, 1) == -1)
4276 goto tidy_up_and_fail;
4278 connector = PerlSock_socket(AF_INET, type, 0);
4279 if (connector == -1)
4280 goto tidy_up_and_fail;
4281 /* We want to find out the port number to connect to. */
4282 size = sizeof(connect_addr);
4283 if (PerlSock_getsockname(listener, (struct sockaddr *) &connect_addr,
4285 goto tidy_up_and_fail;
4286 if (size != sizeof(connect_addr))
4287 goto abort_tidy_up_and_fail;
4288 if (PerlSock_connect(connector, (struct sockaddr *) &connect_addr,
4289 sizeof(connect_addr)) == -1)
4290 goto tidy_up_and_fail;
4292 size = sizeof(listen_addr);
4293 acceptor = PerlSock_accept(listener, (struct sockaddr *) &listen_addr,
4296 goto tidy_up_and_fail;
4297 if (size != sizeof(listen_addr))
4298 goto abort_tidy_up_and_fail;
4299 PerlLIO_close(listener);
4300 /* Now check we are talking to ourself by matching port and host on the
4302 if (PerlSock_getsockname(connector, (struct sockaddr *) &connect_addr,
4304 goto tidy_up_and_fail;
4305 if (size != sizeof(connect_addr)
4306 || listen_addr.sin_family != connect_addr.sin_family
4307 || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr
4308 || listen_addr.sin_port != connect_addr.sin_port) {
4309 goto abort_tidy_up_and_fail;
4315 abort_tidy_up_and_fail:
4317 errno = ECONNABORTED; /* This would be the standard thing to do. */
4318 #elif defined(ECONNREFUSED)
4319 errno = ECONNREFUSED; /* E.g. Symbian does not have ECONNABORTED. */
4321 errno = ETIMEDOUT; /* Desperation time. */
4327 PerlLIO_close(listener);
4328 if (connector != -1)
4329 PerlLIO_close(connector);
4331 PerlLIO_close(acceptor);
4337 /* In any case have a stub so that there's code corresponding
4338 * to the my_socketpair in embed.fnc. */
4340 Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
4341 #ifdef HAS_SOCKETPAIR
4342 return socketpair(family, type, protocol, fd);
4351 =for apidoc sv_nosharing
4353 Dummy routine which "shares" an SV when there is no sharing module present.
4354 Or "locks" it. Or "unlocks" it. In other
4355 words, ignores its single SV argument.
4356 Exists to avoid test for a C<NULL> function pointer and because it could
4357 potentially warn under some level of strict-ness.
4363 Perl_sv_nosharing(pTHX_ SV *sv)
4365 PERL_UNUSED_CONTEXT;
4366 PERL_UNUSED_ARG(sv);
4371 =for apidoc sv_destroyable
4373 Dummy routine which reports that object can be destroyed when there is no
4374 sharing module present. It ignores its single SV argument, and returns
4375 'true'. Exists to avoid test for a C<NULL> function pointer and because it
4376 could potentially warn under some level of strict-ness.
4382 Perl_sv_destroyable(pTHX_ SV *sv)
4384 PERL_UNUSED_CONTEXT;
4385 PERL_UNUSED_ARG(sv);
4390 Perl_parse_unicode_opts(pTHX_ const char **popt)
4392 const char *p = *popt;
4395 PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS;
4399 const char* endptr = p + strlen(p);
4401 if (grok_atoUV(p, &uv, &endptr) && uv <= U32_MAX) {
4404 if (p && *p && *p != '\n' && *p != '\r') {
4406 goto the_end_of_the_opts_parser;
4408 Perl_croak(aTHX_ "Unknown Unicode option letter '%c'", *p);
4412 Perl_croak(aTHX_ "Invalid number '%s' for -C option.\n", p);
4418 case PERL_UNICODE_STDIN:
4419 opt |= PERL_UNICODE_STDIN_FLAG; break;
4420 case PERL_UNICODE_STDOUT:
4421 opt |= PERL_UNICODE_STDOUT_FLAG; break;
4422 case PERL_UNICODE_STDERR:
4423 opt |= PERL_UNICODE_STDERR_FLAG; break;
4424 case PERL_UNICODE_STD:
4425 opt |= PERL_UNICODE_STD_FLAG; break;
4426 case PERL_UNICODE_IN:
4427 opt |= PERL_UNICODE_IN_FLAG; break;
4428 case PERL_UNICODE_OUT:
4429 opt |= PERL_UNICODE_OUT_FLAG; break;
4430 case PERL_UNICODE_INOUT:
4431 opt |= PERL_UNICODE_INOUT_FLAG; break;
4432 case PERL_UNICODE_LOCALE:
4433 opt |= PERL_UNICODE_LOCALE_FLAG; break;
4434 case PERL_UNICODE_ARGV:
4435 opt |= PERL_UNICODE_ARGV_FLAG; break;
4436 case PERL_UNICODE_UTF8CACHEASSERT:
4437 opt |= PERL_UNICODE_UTF8CACHEASSERT_FLAG; break;
4439 if (*p != '\n' && *p != '\r') {
4440 if(isSPACE(*p)) goto the_end_of_the_opts_parser;
4443 "Unknown Unicode option letter '%c'", *p);
4450 opt = PERL_UNICODE_DEFAULT_FLAGS;
4452 the_end_of_the_opts_parser:
4454 if (opt & ~PERL_UNICODE_ALL_FLAGS)
4455 Perl_croak(aTHX_ "Unknown Unicode option value %" UVuf,
4456 (UV) (opt & ~PERL_UNICODE_ALL_FLAGS));
4464 # include <starlet.h>
4471 * This is really just a quick hack which grabs various garbage
4472 * values. It really should be a real hash algorithm which
4473 * spreads the effect of every input bit onto every output bit,
4474 * if someone who knows about such things would bother to write it.
4475 * Might be a good idea to add that function to CORE as well.
4476 * No numbers below come from careful analysis or anything here,
4477 * except they are primes and SEED_C1 > 1E6 to get a full-width
4478 * value from (tv_sec * SEED_C1 + tv_usec). The multipliers should
4479 * probably be bigger too.
4482 # define SEED_C1 1000003
4483 #define SEED_C4 73819
4485 # define SEED_C1 25747
4486 #define SEED_C4 20639
4490 #define SEED_C5 26107
4492 #ifndef PERL_NO_DEV_RANDOM
4496 #ifdef HAS_GETTIMEOFDAY
4497 struct timeval when;
4502 /* This test is an escape hatch, this symbol isn't set by Configure. */
4503 #ifndef PERL_NO_DEV_RANDOM
4504 #ifndef PERL_RANDOM_DEVICE
4505 /* /dev/random isn't used by default because reads from it will block
4506 * if there isn't enough entropy available. You can compile with
4507 * PERL_RANDOM_DEVICE to it if you'd prefer Perl to block until there
4508 * is enough real entropy to fill the seed. */
4509 # ifdef __amigaos4__
4510 # define PERL_RANDOM_DEVICE "RANDOM:SIZE=4"
4512 # define PERL_RANDOM_DEVICE "/dev/urandom"
4515 fd = PerlLIO_open_cloexec(PERL_RANDOM_DEVICE, 0);
4517 if (PerlLIO_read(fd, (void*)&u, sizeof u) != sizeof u)
4525 #ifdef HAS_GETTIMEOFDAY
4526 PerlProc_gettimeofday(&when,NULL);
4527 u = (U32)SEED_C1 * when.tv_sec + (U32)SEED_C2 * when.tv_usec;
4530 u = (U32)SEED_C1 * when;
4532 u += SEED_C3 * (U32)PerlProc_getpid();
4533 u += SEED_C4 * (U32)PTR2UV(PL_stack_sp);
4534 #ifndef PLAN9 /* XXX Plan9 assembler chokes on this; fix needed */
4535 u += SEED_C5 * (U32)PTR2UV(&when);
4541 Perl_get_hash_seed(pTHX_ unsigned char * const seed_buffer)
4543 #ifndef NO_PERL_HASH_ENV
4548 PERL_ARGS_ASSERT_GET_HASH_SEED;
4550 #ifndef NO_PERL_HASH_ENV
4551 env_pv= PerlEnv_getenv("PERL_HASH_SEED");
4555 /* ignore leading spaces */
4556 while (isSPACE(*env_pv))
4558 # ifdef USE_PERL_PERTURB_KEYS
4559 /* if they set it to "0" we disable key traversal randomization completely */
4560 if (strEQ(env_pv,"0")) {
4561 PL_hash_rand_bits_enabled= 0;
4563 /* otherwise switch to deterministic mode */
4564 PL_hash_rand_bits_enabled= 2;
4567 /* ignore a leading 0x... if it is there */
4568 if (env_pv[0] == '0' && env_pv[1] == 'x')
4571 for( i = 0; isXDIGIT(*env_pv) && i < PERL_HASH_SEED_BYTES; i++ ) {
4572 seed_buffer[i] = READ_XDIGIT(env_pv) << 4;
4573 if ( isXDIGIT(*env_pv)) {
4574 seed_buffer[i] |= READ_XDIGIT(env_pv);
4577 while (isSPACE(*env_pv))
4580 if (*env_pv && !isXDIGIT(*env_pv)) {
4581 Perl_warn(aTHX_ "perl: warning: Non hex character in '$ENV{PERL_HASH_SEED}', seed only partially set\n");
4583 /* should we check for unparsed crap? */
4584 /* should we warn about unused hex? */
4585 /* should we warn about insufficient hex? */
4588 #endif /* NO_PERL_HASH_ENV */
4590 for( i = 0; i < PERL_HASH_SEED_BYTES; i++ ) {
4591 seed_buffer[i] = (unsigned char)(Perl_internal_drand48() * (U8_MAX+1));
4594 #ifdef USE_PERL_PERTURB_KEYS
4595 { /* initialize PL_hash_rand_bits from the hash seed.
4596 * This value is highly volatile, it is updated every
4597 * hash insert, and is used as part of hash bucket chain
4598 * randomization and hash iterator randomization. */
4599 PL_hash_rand_bits= 0xbe49d17f; /* I just picked a number */
4600 for( i = 0; i < sizeof(UV) ; i++ ) {
4601 PL_hash_rand_bits += seed_buffer[i % PERL_HASH_SEED_BYTES];
4602 PL_hash_rand_bits = ROTL_UV(PL_hash_rand_bits,8);
4605 # ifndef NO_PERL_HASH_ENV
4606 env_pv= PerlEnv_getenv("PERL_PERTURB_KEYS");
4608 if (strEQ(env_pv,"0") || strEQ(env_pv,"NO")) {
4609 PL_hash_rand_bits_enabled= 0;
4610 } else if (strEQ(env_pv,"1") || strEQ(env_pv,"RANDOM")) {
4611 PL_hash_rand_bits_enabled= 1;
4612 } else if (strEQ(env_pv,"2") || strEQ(env_pv,"DETERMINISTIC")) {
4613 PL_hash_rand_bits_enabled= 2;
4615 Perl_warn(aTHX_ "perl: warning: strange setting in '$ENV{PERL_PERTURB_KEYS}': '%s'\n", env_pv);
4622 #ifdef PERL_GLOBAL_STRUCT
4624 #define PERL_GLOBAL_STRUCT_INIT
4625 #include "opcode.h" /* the ppaddr and check */
4628 Perl_init_global_struct(pTHX)
4630 struct perl_vars *plvarsp = NULL;
4631 # ifdef PERL_GLOBAL_STRUCT
4632 const IV nppaddr = C_ARRAY_LENGTH(Gppaddr);
4633 const IV ncheck = C_ARRAY_LENGTH(Gcheck);
4634 PERL_UNUSED_CONTEXT;
4635 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
4636 /* PerlMem_malloc() because can't use even safesysmalloc() this early. */
4637 plvarsp = (struct perl_vars*)PerlMem_malloc(sizeof(struct perl_vars));
4641 plvarsp = PL_VarsPtr;
4642 # endif /* PERL_GLOBAL_STRUCT_PRIVATE */
4647 # define PERLVAR(prefix,var,type) /**/
4648 # define PERLVARA(prefix,var,n,type) /**/
4649 # define PERLVARI(prefix,var,type,init) plvarsp->prefix##var = init;
4650 # define PERLVARIC(prefix,var,type,init) plvarsp->prefix##var = init;
4651 # include "perlvars.h"
4656 # ifdef PERL_GLOBAL_STRUCT
4659 PerlMem_malloc(nppaddr * sizeof(Perl_ppaddr_t));
4660 if (!plvarsp->Gppaddr)
4664 PerlMem_malloc(ncheck * sizeof(Perl_check_t));
4665 if (!plvarsp->Gcheck)
4667 Copy(Gppaddr, plvarsp->Gppaddr, nppaddr, Perl_ppaddr_t);
4668 Copy(Gcheck, plvarsp->Gcheck, ncheck, Perl_check_t);
4670 # ifdef PERL_SET_VARS
4671 PERL_SET_VARS(plvarsp);
4673 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
4674 plvarsp->Gsv_placeholder.sv_flags = 0;
4675 memset(plvarsp->Ghash_seed, 0, sizeof(plvarsp->Ghash_seed));
4677 # undef PERL_GLOBAL_STRUCT_INIT
4682 #endif /* PERL_GLOBAL_STRUCT */
4684 #ifdef PERL_GLOBAL_STRUCT
4687 Perl_free_global_struct(pTHX_ struct perl_vars *plvarsp)
4689 int veto = plvarsp->Gveto_cleanup;
4691 PERL_ARGS_ASSERT_FREE_GLOBAL_STRUCT;
4692 PERL_UNUSED_CONTEXT;
4693 # ifdef PERL_GLOBAL_STRUCT
4694 # ifdef PERL_UNSET_VARS
4695 PERL_UNSET_VARS(plvarsp);
4699 free(plvarsp->Gppaddr);
4700 free(plvarsp->Gcheck);
4701 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
4707 #endif /* PERL_GLOBAL_STRUCT */
4711 /* -DPERL_MEM_LOG: the Perl_mem_log_..() is compiled, including
4712 * the default implementation, unless -DPERL_MEM_LOG_NOIMPL is also
4713 * given, and you supply your own implementation.
4715 * The default implementation reads a single env var, PERL_MEM_LOG,
4716 * expecting one or more of the following:
4718 * \d+ - fd fd to write to : must be 1st (grok_atoUV)
4719 * 'm' - memlog was PERL_MEM_LOG=1
4720 * 's' - svlog was PERL_SV_LOG=1
4721 * 't' - timestamp was PERL_MEM_LOG_TIMESTAMP=1
4723 * This makes the logger controllable enough that it can reasonably be
4724 * added to the system perl.
4727 /* -DPERL_MEM_LOG_SPRINTF_BUF_SIZE=X: size of a (stack-allocated) buffer
4728 * the Perl_mem_log_...() will use (either via sprintf or snprintf).
4730 #define PERL_MEM_LOG_SPRINTF_BUF_SIZE 128
4732 /* -DPERL_MEM_LOG_FD=N: the file descriptor the Perl_mem_log_...()
4733 * writes to. In the default logger, this is settable at runtime.
4735 #ifndef PERL_MEM_LOG_FD
4736 # define PERL_MEM_LOG_FD 2 /* If STDERR is too boring for you. */
4739 #ifndef PERL_MEM_LOG_NOIMPL
4741 # ifdef DEBUG_LEAKING_SCALARS
4742 # define SV_LOG_SERIAL_FMT " [%lu]"
4743 # define _SV_LOG_SERIAL_ARG(sv) , (unsigned long) (sv)->sv_debug_serial
4745 # define SV_LOG_SERIAL_FMT
4746 # define _SV_LOG_SERIAL_ARG(sv)
4750 S_mem_log_common(enum mem_log_type mlt, const UV n,
4751 const UV typesize, const char *type_name, const SV *sv,
4752 Malloc_t oldalloc, Malloc_t newalloc,
4753 const char *filename, const int linenumber,
4754 const char *funcname)
4758 PERL_ARGS_ASSERT_MEM_LOG_COMMON;
4760 pmlenv = PerlEnv_getenv("PERL_MEM_LOG");
4763 if (mlt < MLT_NEW_SV ? strchr(pmlenv,'m') : strchr(pmlenv,'s'))
4765 /* We can't use SVs or PerlIO for obvious reasons,
4766 * so we'll use stdio and low-level IO instead. */
4767 char buf[PERL_MEM_LOG_SPRINTF_BUF_SIZE];
4769 # ifdef HAS_GETTIMEOFDAY
4770 # define MEM_LOG_TIME_FMT "%10d.%06d: "
4771 # define MEM_LOG_TIME_ARG (int)tv.tv_sec, (int)tv.tv_usec
4773 gettimeofday(&tv, 0);
4775 # define MEM_LOG_TIME_FMT "%10d: "
4776 # define MEM_LOG_TIME_ARG (int)when
4780 /* If there are other OS specific ways of hires time than
4781 * gettimeofday() (see dist/Time-HiRes), the easiest way is
4782 * probably that they would be used to fill in the struct
4786 const char* endptr = pmlenv + strlen(pmlenv);
4789 if (grok_atoUV(pmlenv, &uv, &endptr) /* Ignore endptr. */
4790 && uv && uv <= PERL_INT_MAX
4794 fd = PERL_MEM_LOG_FD;
4797 if (strchr(pmlenv, 't')) {
4798 len = my_snprintf(buf, sizeof(buf),
4799 MEM_LOG_TIME_FMT, MEM_LOG_TIME_ARG);
4800 PERL_UNUSED_RESULT(PerlLIO_write(fd, buf, len));
4804 len = my_snprintf(buf, sizeof(buf),
4805 "alloc: %s:%d:%s: %" IVdf " %" UVuf
4806 " %s = %" IVdf ": %" UVxf "\n",
4807 filename, linenumber, funcname, n, typesize,
4808 type_name, n * typesize, PTR2UV(newalloc));
4811 len = my_snprintf(buf, sizeof(buf),
4812 "realloc: %s:%d:%s: %" IVdf " %" UVuf
4813 " %s = %" IVdf ": %" UVxf " -> %" UVxf "\n",
4814 filename, linenumber, funcname, n, typesize,
4815 type_name, n * typesize, PTR2UV(oldalloc),
4819 len = my_snprintf(buf, sizeof(buf),
4820 "free: %s:%d:%s: %" UVxf "\n",
4821 filename, linenumber, funcname,
4826 len = my_snprintf(buf, sizeof(buf),
4827 "%s_SV: %s:%d:%s: %" UVxf SV_LOG_SERIAL_FMT "\n",
4828 mlt == MLT_NEW_SV ? "new" : "del",
4829 filename, linenumber, funcname,
4830 PTR2UV(sv) _SV_LOG_SERIAL_ARG(sv));
4835 PERL_UNUSED_RESULT(PerlLIO_write(fd, buf, len));
4839 #endif /* !PERL_MEM_LOG_NOIMPL */
4841 #ifndef PERL_MEM_LOG_NOIMPL
4843 mem_log_common_if(alty, num, tysz, tynm, sv, oal, nal, flnm, ln, fnnm) \
4844 mem_log_common (alty, num, tysz, tynm, sv, oal, nal, flnm, ln, fnnm)
4846 /* this is suboptimal, but bug compatible. User is providing their
4847 own implementation, but is getting these functions anyway, and they
4848 do nothing. But _NOIMPL users should be able to cope or fix */
4850 mem_log_common_if(alty, num, tysz, tynm, u, oal, nal, flnm, ln, fnnm) \
4851 /* mem_log_common_if_PERL_MEM_LOG_NOIMPL */
4855 Perl_mem_log_alloc(const UV n, const UV typesize, const char *type_name,
4857 const char *filename, const int linenumber,
4858 const char *funcname)
4860 PERL_ARGS_ASSERT_MEM_LOG_ALLOC;
4862 mem_log_common_if(MLT_ALLOC, n, typesize, type_name,
4863 NULL, NULL, newalloc,
4864 filename, linenumber, funcname);
4869 Perl_mem_log_realloc(const UV n, const UV typesize, const char *type_name,
4870 Malloc_t oldalloc, Malloc_t newalloc,
4871 const char *filename, const int linenumber,
4872 const char *funcname)
4874 PERL_ARGS_ASSERT_MEM_LOG_REALLOC;
4876 mem_log_common_if(MLT_REALLOC, n, typesize, type_name,
4877 NULL, oldalloc, newalloc,
4878 filename, linenumber, funcname);
4883 Perl_mem_log_free(Malloc_t oldalloc,
4884 const char *filename, const int linenumber,
4885 const char *funcname)
4887 PERL_ARGS_ASSERT_MEM_LOG_FREE;
4889 mem_log_common_if(MLT_FREE, 0, 0, "", NULL, oldalloc, NULL,
4890 filename, linenumber, funcname);
4895 Perl_mem_log_new_sv(const SV *sv,
4896 const char *filename, const int linenumber,
4897 const char *funcname)
4899 mem_log_common_if(MLT_NEW_SV, 0, 0, "", sv, NULL, NULL,
4900 filename, linenumber, funcname);
4904 Perl_mem_log_del_sv(const SV *sv,
4905 const char *filename, const int linenumber,
4906 const char *funcname)
4908 mem_log_common_if(MLT_DEL_SV, 0, 0, "", sv, NULL, NULL,
4909 filename, linenumber, funcname);
4912 #endif /* PERL_MEM_LOG */
4915 =for apidoc quadmath_format_single
4917 C<quadmath_snprintf()> is very strict about its C<format> string and will
4918 fail, returning -1, if the format is invalid. It accepts exactly
4921 C<quadmath_format_single()> checks that the intended single spec looks
4922 sane: begins with C<%>, has only one C<%>, ends with C<[efgaEFGA]>,
4923 and has C<Q> before it. This is not a full "printf syntax check",
4926 Returns the format if it is valid, NULL if not.
4928 C<quadmath_format_single()> can and will actually patch in the missing
4929 C<Q>, if necessary. In this case it will return the modified copy of
4930 the format, B<which the caller will need to free.>
4932 See also L</quadmath_format_needed>.
4938 Perl_quadmath_format_single(const char* format)
4942 PERL_ARGS_ASSERT_QUADMATH_FORMAT_SINGLE;
4944 if (format[0] != '%' || strchr(format + 1, '%'))
4946 len = strlen(format);
4947 /* minimum length three: %Qg */
4948 if (len < 3 || strchr("efgaEFGA", format[len - 1]) == NULL)
4950 if (format[len - 2] != 'Q') {
4952 Newx(fixed, len + 2, char);
4953 memcpy(fixed, format, len - 1);
4954 fixed[len - 1] = 'Q';
4955 fixed[len ] = format[len - 1];
4957 return (const char*)fixed;
4964 =for apidoc quadmath_format_needed
4966 C<quadmath_format_needed()> returns true if the C<format> string seems to
4967 contain at least one non-Q-prefixed C<%[efgaEFGA]> format specifier,
4968 or returns false otherwise.
4970 The format specifier detection is not complete printf-syntax detection,
4971 but it should catch most common cases.
4973 If true is returned, those arguments B<should> in theory be processed
4974 with C<quadmath_snprintf()>, but in case there is more than one such
4975 format specifier (see L</quadmath_format_single>), and if there is
4976 anything else beyond that one (even just a single byte), they
4977 B<cannot> be processed because C<quadmath_snprintf()> is very strict,
4978 accepting only one format spec, and nothing else.
4979 In this case, the code should probably fail.
4985 Perl_quadmath_format_needed(const char* format)
4987 const char *p = format;
4990 PERL_ARGS_ASSERT_QUADMATH_FORMAT_NEEDED;
4992 while ((q = strchr(p, '%'))) {
4994 if (*q == '+') /* plus */
4996 if (*q == '#') /* alt */
4998 if (*q == '*') /* width */
5002 while (isDIGIT(*q)) q++;
5005 if (*q == '.' && (q[1] == '*' || isDIGIT(q[1]))) { /* prec */
5010 while (isDIGIT(*q)) q++;
5012 if (strchr("efgaEFGA", *q)) /* Would have needed 'Q' in front. */
5021 =for apidoc my_snprintf
5023 The C library C<snprintf> functionality, if available and
5024 standards-compliant (uses C<vsnprintf>, actually). However, if the
5025 C<vsnprintf> is not available, will unfortunately use the unsafe
5026 C<vsprintf> which can overrun the buffer (there is an overrun check,
5027 but that may be too late). Consider using C<sv_vcatpvf> instead, or
5028 getting C<vsnprintf>.
5033 Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...)
5037 PERL_ARGS_ASSERT_MY_SNPRINTF;
5038 #ifndef HAS_VSNPRINTF
5039 PERL_UNUSED_VAR(len);
5041 va_start(ap, format);
5044 const char* qfmt = quadmath_format_single(format);
5045 bool quadmath_valid = FALSE;
5047 /* If the format looked promising, use it as quadmath. */
5048 retval = quadmath_snprintf(buffer, len, qfmt, va_arg(ap, NV));
5050 if (qfmt != format) {
5054 Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s\"", qfmt);
5056 quadmath_valid = TRUE;
5061 assert(qfmt == NULL);
5062 /* quadmath_format_single() will return false for example for