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
137 if (size + PERL_MEMORY_DEBUG_HEADER_SIZE < size)
139 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
142 if ((SSize_t)size < 0)
143 Perl_croak_nocontext("panic: malloc, size=%"UVuf, (UV) size);
145 if (!size) size = 1; /* malloc(0) is NASTY on our system */
146 #ifdef PERL_DEBUG_READONLY_COW
147 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
148 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
149 perror("mmap failed");
153 ptr = (Malloc_t)PerlMem_malloc(size?size:1);
155 PERL_ALLOC_CHECK(ptr);
158 struct perl_memory_debug_header *const header
159 = (struct perl_memory_debug_header *)ptr;
163 PoisonNew(((char *)ptr), size, char);
166 #ifdef PERL_TRACK_MEMPOOL
167 header->interpreter = aTHX;
168 /* Link us into the list. */
169 header->prev = &PL_memory_debug_header;
170 header->next = PL_memory_debug_header.next;
171 PL_memory_debug_header.next = header;
172 maybe_protect_rw(header->next);
173 header->next->prev = header;
174 maybe_protect_ro(header->next);
175 # ifdef PERL_DEBUG_READONLY_COW
176 header->readonly = 0;
182 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
183 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
191 #ifndef ALWAYS_NEED_THX
203 /* paranoid version of system's realloc() */
206 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
208 #ifdef ALWAYS_NEED_THX
212 #ifdef PERL_DEBUG_READONLY_COW
213 const MEM_SIZE oldsize = where
214 ? ((struct perl_memory_debug_header *)((char *)where - PERL_MEMORY_DEBUG_HEADER_SIZE))->size
217 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
218 Malloc_t PerlMem_realloc();
219 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
226 ptr = safesysmalloc(size);
230 where = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
231 if (size + PERL_MEMORY_DEBUG_HEADER_SIZE < size)
233 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
235 struct perl_memory_debug_header *const header
236 = (struct perl_memory_debug_header *)where;
238 # ifdef PERL_TRACK_MEMPOOL
239 if (header->interpreter != aTHX) {
240 Perl_croak_nocontext("panic: realloc from wrong pool, %p!=%p",
241 header->interpreter, aTHX);
243 assert(header->next->prev == header);
244 assert(header->prev->next == header);
246 if (header->size > size) {
247 const MEM_SIZE freed_up = header->size - size;
248 char *start_of_freed = ((char *)where) + size;
249 PoisonFree(start_of_freed, freed_up, char);
259 if ((SSize_t)size < 0)
260 Perl_croak_nocontext("panic: realloc, size=%"UVuf, (UV)size);
262 #ifdef PERL_DEBUG_READONLY_COW
263 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
264 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
265 perror("mmap failed");
268 Copy(where,ptr,oldsize < size ? oldsize : size,char);
269 if (munmap(where, oldsize)) {
270 perror("munmap failed");
274 ptr = (Malloc_t)PerlMem_realloc(where,size);
276 PERL_ALLOC_CHECK(ptr);
278 /* MUST do this fixup first, before doing ANYTHING else, as anything else
279 might allocate memory/free/move memory, and until we do the fixup, it
280 may well be chasing (and writing to) free memory. */
282 #ifdef PERL_TRACK_MEMPOOL
283 struct perl_memory_debug_header *const header
284 = (struct perl_memory_debug_header *)ptr;
287 if (header->size < size) {
288 const MEM_SIZE fresh = size - header->size;
289 char *start_of_fresh = ((char *)ptr) + size;
290 PoisonNew(start_of_fresh, fresh, char);
294 maybe_protect_rw(header->next);
295 header->next->prev = header;
296 maybe_protect_ro(header->next);
297 maybe_protect_rw(header->prev);
298 header->prev->next = header;
299 maybe_protect_ro(header->prev);
301 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
304 /* In particular, must do that fixup above before logging anything via
305 *printf(), as it can reallocate memory, which can cause SEGVs. */
307 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
308 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
315 #ifndef ALWAYS_NEED_THX
328 /* safe version of system's free() */
331 Perl_safesysfree(Malloc_t where)
333 #ifdef ALWAYS_NEED_THX
336 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
339 Malloc_t where_intrn = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
341 struct perl_memory_debug_header *const header
342 = (struct perl_memory_debug_header *)where_intrn;
345 const MEM_SIZE size = header->size;
347 # ifdef PERL_TRACK_MEMPOOL
348 if (header->interpreter != aTHX) {
349 Perl_croak_nocontext("panic: free from wrong pool, %p!=%p",
350 header->interpreter, aTHX);
353 Perl_croak_nocontext("panic: duplicate free");
356 Perl_croak_nocontext("panic: bad free, header->next==NULL");
357 if (header->next->prev != header || header->prev->next != header) {
358 Perl_croak_nocontext("panic: bad free, ->next->prev=%p, "
359 "header=%p, ->prev->next=%p",
360 header->next->prev, header,
363 /* Unlink us from the chain. */
364 maybe_protect_rw(header->next);
365 header->next->prev = header->prev;
366 maybe_protect_ro(header->next);
367 maybe_protect_rw(header->prev);
368 header->prev->next = header->next;
369 maybe_protect_ro(header->prev);
370 maybe_protect_rw(header);
372 PoisonNew(where_intrn, size, char);
374 /* Trigger the duplicate free warning. */
377 # ifdef PERL_DEBUG_READONLY_COW
378 if (munmap(where_intrn, size)) {
379 perror("munmap failed");
385 Malloc_t where_intrn = where;
387 #ifndef PERL_DEBUG_READONLY_COW
388 PerlMem_free(where_intrn);
393 /* safe version of system's calloc() */
396 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
398 #ifdef ALWAYS_NEED_THX
402 #if defined(USE_MDH) || defined(DEBUGGING)
403 MEM_SIZE total_size = 0;
406 /* Even though calloc() for zero bytes is strange, be robust. */
407 if (size && (count <= MEM_SIZE_MAX / size)) {
408 #if defined(USE_MDH) || defined(DEBUGGING)
409 total_size = size * count;
415 if (PERL_MEMORY_DEBUG_HEADER_SIZE <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
416 total_size += PERL_MEMORY_DEBUG_HEADER_SIZE;
421 if ((SSize_t)size < 0 || (SSize_t)count < 0)
422 Perl_croak_nocontext("panic: calloc, size=%"UVuf", count=%"UVuf,
423 (UV)size, (UV)count);
425 #ifdef PERL_DEBUG_READONLY_COW
426 if ((ptr = mmap(0, total_size ? total_size : 1, PROT_READ|PROT_WRITE,
427 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
428 perror("mmap failed");
431 #elif defined(PERL_TRACK_MEMPOOL)
432 /* Have to use malloc() because we've added some space for our tracking
434 /* malloc(0) is non-portable. */
435 ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
437 /* Use calloc() because it might save a memset() if the memory is fresh
438 and clean from the OS. */
440 ptr = (Malloc_t)PerlMem_calloc(count, size);
441 else /* calloc(0) is non-portable. */
442 ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
444 PERL_ALLOC_CHECK(ptr);
445 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)total_size));
449 struct perl_memory_debug_header *const header
450 = (struct perl_memory_debug_header *)ptr;
452 # ifndef PERL_DEBUG_READONLY_COW
453 memset((void*)ptr, 0, total_size);
455 # ifdef PERL_TRACK_MEMPOOL
456 header->interpreter = aTHX;
457 /* Link us into the list. */
458 header->prev = &PL_memory_debug_header;
459 header->next = PL_memory_debug_header.next;
460 PL_memory_debug_header.next = header;
461 maybe_protect_rw(header->next);
462 header->next->prev = header;
463 maybe_protect_ro(header->next);
464 # ifdef PERL_DEBUG_READONLY_COW
465 header->readonly = 0;
469 header->size = total_size;
471 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
477 #ifndef ALWAYS_NEED_THX
486 /* These must be defined when not using Perl's malloc for binary
491 Malloc_t Perl_malloc (MEM_SIZE nbytes)
493 #ifdef PERL_IMPLICIT_SYS
496 return (Malloc_t)PerlMem_malloc(nbytes);
499 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
501 #ifdef PERL_IMPLICIT_SYS
504 return (Malloc_t)PerlMem_calloc(elements, size);
507 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
509 #ifdef PERL_IMPLICIT_SYS
512 return (Malloc_t)PerlMem_realloc(where, nbytes);
515 Free_t Perl_mfree (Malloc_t where)
517 #ifdef PERL_IMPLICIT_SYS
525 /* copy a string up to some (non-backslashed) delimiter, if any */
528 Perl_delimcpy(char *to, const char *toend, const char *from, const char *fromend, int delim, I32 *retlen)
532 PERL_ARGS_ASSERT_DELIMCPY;
534 for (tolen = 0; from < fromend; from++, tolen++) {
536 if (from[1] != delim) {
543 else if (*from == delim)
554 /* return ptr to little string in big string, NULL if not found */
555 /* This routine was donated by Corey Satten. */
558 Perl_instr(const char *big, const char *little)
561 PERL_ARGS_ASSERT_INSTR;
563 return strstr((char*)big, (char*)little);
566 /* same as instr but allow embedded nulls. The end pointers point to 1 beyond
567 * the final character desired to be checked */
570 Perl_ninstr(const char *big, const char *bigend, const char *little, const char *lend)
572 PERL_ARGS_ASSERT_NINSTR;
576 const char first = *little;
578 bigend -= lend - little++;
580 while (big <= bigend) {
581 if (*big++ == first) {
582 for (x=big,s=little; s < lend; x++,s++) {
586 return (char*)(big-1);
593 /* reverse of the above--find last substring */
596 Perl_rninstr(const char *big, const char *bigend, const char *little, const char *lend)
599 const I32 first = *little;
600 const char * const littleend = lend;
602 PERL_ARGS_ASSERT_RNINSTR;
604 if (little >= littleend)
605 return (char*)bigend;
607 big = bigend - (littleend - little++);
608 while (big >= bigbeg) {
612 for (x=big+2,s=little; s < littleend; /**/ ) {
621 return (char*)(big+1);
626 /* As a space optimization, we do not compile tables for strings of length
627 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
628 special-cased in fbm_instr().
630 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
633 =head1 Miscellaneous Functions
635 =for apidoc fbm_compile
637 Analyses the string in order to make fast searches on it using C<fbm_instr()>
638 -- the Boyer-Moore algorithm.
644 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
651 PERL_DEB( STRLEN rarest = 0 );
653 PERL_ARGS_ASSERT_FBM_COMPILE;
655 if (isGV_with_GP(sv) || SvROK(sv))
661 if (flags & FBMcf_TAIL) {
662 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
663 sv_catpvs(sv, "\n"); /* Taken into account in fbm_instr() */
664 if (mg && mg->mg_len >= 0)
667 if (!SvPOK(sv) || SvNIOKp(sv))
668 s = (U8*)SvPV_force_mutable(sv, len);
669 else s = (U8 *)SvPV_mutable(sv, len);
670 if (len == 0) /* TAIL might be on a zero-length string. */
672 SvUPGRADE(sv, SVt_PVMG);
677 /* "deep magic", the comment used to add. The use of MAGIC itself isn't
678 really. MAGIC was originally added in 79072805bf63abe5 (perl 5.0 alpha 2)
679 to call SvVALID_off() if the scalar was assigned to.
681 The comment itself (and "deeper magic" below) date back to
682 378cc40b38293ffc (perl 2.0). "deep magic" was an annotation on
684 where the magic (presumably) was that the scalar had a BM table hidden
687 As MAGIC is always present on BMs [in Perl 5 :-)], we can use it to store
688 the table instead of the previous (somewhat hacky) approach of co-opting
689 the string buffer and storing it after the string. */
691 assert(!mg_find(sv, PERL_MAGIC_bm));
692 mg = sv_magicext(sv, NULL, PERL_MAGIC_bm, &PL_vtbl_bm, NULL, 0);
696 /* Shorter strings are special-cased in Perl_fbm_instr(), and don't use
698 const U8 mlen = (len>255) ? 255 : (U8)len;
699 const unsigned char *const sb = s + len - mlen; /* first char (maybe) */
702 Newx(table, 256, U8);
703 memset((void*)table, mlen, 256);
704 mg->mg_ptr = (char *)table;
707 s += len - 1; /* last char */
710 if (table[*s] == mlen)
716 s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
717 for (i = 0; i < len; i++) {
718 if (PL_freq[s[i]] < frequency) {
719 PERL_DEB( rarest = i );
720 frequency = PL_freq[s[i]];
723 BmUSEFUL(sv) = 100; /* Initial value */
724 if (flags & FBMcf_TAIL)
726 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %"UVuf"\n",
727 s[rarest], (UV)rarest));
732 =for apidoc fbm_instr
734 Returns the location of the SV in the string delimited by C<big> and
735 C<bigend> (C<bigend>) is the char following the last char).
736 It returns C<NULL> if the string can't be found. The C<sv>
737 does not have to be C<fbm_compiled>, but the search will not be as fast
742 If SvTAIL(littlestr) is true, a fake "\n" was appended to to the string
743 during FBM compilation due to FBMcf_TAIL in flags. It indicates that
744 the littlestr must be anchored to the end of bigstr (or to any \n if
747 E.g. The regex compiler would compile /abc/ to a littlestr of "abc",
748 while /abc$/ compiles to "abc\n" with SvTAIL() true.
750 A littlestr of "abc", !SvTAIL matches as /abc/;
751 a littlestr of "ab\n", SvTAIL matches as:
752 without FBMrf_MULTILINE: /ab\n?\z/
753 with FBMrf_MULTILINE: /ab\n/ || /ab\z/;
755 (According to Ilya from 1999; I don't know if this is still true, DAPM 2015):
756 "If SvTAIL is actually due to \Z or \z, this gives false positives
762 Perl_fbm_instr(pTHX_ unsigned char *big, unsigned char *bigend, SV *littlestr, U32 flags)
766 const unsigned char *little = (const unsigned char *)SvPV_const(littlestr,l);
767 STRLEN littlelen = l;
768 const I32 multiline = flags & FBMrf_MULTILINE;
770 PERL_ARGS_ASSERT_FBM_INSTR;
772 if ((STRLEN)(bigend - big) < littlelen) {
773 if ( SvTAIL(littlestr)
774 && ((STRLEN)(bigend - big) == littlelen - 1)
776 || (*big == *little &&
777 memEQ((char *)big, (char *)little, littlelen - 1))))
782 switch (littlelen) { /* Special cases for 0, 1 and 2 */
784 return (char*)big; /* Cannot be SvTAIL! */
787 if (SvTAIL(littlestr) && !multiline) /* Anchor only! */
788 /* [-1] is safe because we know that bigend != big. */
789 return (char *) (bigend - (bigend[-1] == '\n'));
791 s = (unsigned char *)memchr((void*)big, *little, bigend-big);
794 if (SvTAIL(littlestr))
795 return (char *) bigend;
799 if (SvTAIL(littlestr) && !multiline) {
800 /* a littlestr with SvTAIL must be of the form "X\n" (where X
801 * is a single char). It is anchored, and can only match
802 * "....X\n" or "....X" */
803 if (bigend[-2] == *little && bigend[-1] == '\n')
804 return (char*)bigend - 2;
805 if (bigend[-1] == *little)
806 return (char*)bigend - 1;
811 /* memchr() is likely to be very fast, possibly using whatever
812 * hardware support is available, such as checking a whole
813 * cache line in one instruction.
814 * So for a 2 char pattern, calling memchr() is likely to be
815 * faster than running FBM, or rolling our own. The previous
816 * version of this code was roll-your-own which typically
817 * only needed to read every 2nd char, which was good back in
818 * the day, but no longer.
820 unsigned char c1 = little[0];
821 unsigned char c2 = little[1];
823 /* *** for all this case, bigend points to the last char,
824 * not the trailing \0: this makes the conditions slightly
830 /* do a quick test for c1 before calling memchr();
831 * this avoids the expensive fn call overhead when
832 * there are lots of c1's */
833 if (LIKELY(*s != c1)) {
835 s = (unsigned char *)memchr((void*)s, c1, bigend - s);
842 /* failed; try searching for c2 this time; that way
843 * we don't go pathologically slow when the string
844 * consists mostly of c1's or vice versa.
849 s = (unsigned char *)memchr((void*)s, c2, bigend - s + 1);
857 /* c1, c2 the same */
867 s = (unsigned char *)memchr((void*)s, c1, bigend - s);
868 if (!s || s >= bigend)
875 /* failed to find 2 chars; try anchored match at end without
877 if (SvTAIL(littlestr) && bigend[0] == little[0])
878 return (char *)bigend;
883 break; /* Only lengths 0 1 and 2 have special-case code. */
886 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
887 s = bigend - littlelen;
888 if (s >= big && bigend[-1] == '\n' && *s == *little
889 /* Automatically of length > 2 */
890 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
892 return (char*)s; /* how sweet it is */
895 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
897 return (char*)s + 1; /* how sweet it is */
902 if (!SvVALID(littlestr)) {
903 /* not compiled; use Perl_ninstr() instead */
904 char * const b = ninstr((char*)big,(char*)bigend,
905 (char*)little, (char*)little + littlelen);
907 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
908 /* Chop \n from littlestr: */
909 s = bigend - littlelen + 1;
911 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
921 if (littlelen > (STRLEN)(bigend - big))
925 const MAGIC *const mg = mg_find(littlestr, PERL_MAGIC_bm);
926 const unsigned char *oldlittle;
930 --littlelen; /* Last char found by table lookup */
933 little += littlelen; /* last char */
936 const unsigned char * const table = (const unsigned char *) mg->mg_ptr;
937 const unsigned char lastc = *little;
941 if ((tmp = table[*s])) {
942 /* *s != lastc; earliest position it could match now is
943 * tmp slots further on */
944 if ((s += tmp) >= bigend)
946 if (LIKELY(*s != lastc)) {
948 s = (unsigned char *)memchr((void*)s, lastc, bigend - s);
958 /* hand-rolled strncmp(): less expensive than calling the
959 * real function (maybe???) */
961 unsigned char * const olds = s;
966 if (*--s == *--little)
968 s = olds + 1; /* here we pay the price for failure */
970 if (s < bigend) /* fake up continue to outer loop */
980 && memEQ((char *)(bigend - littlelen),
981 (char *)(oldlittle - littlelen), littlelen) )
982 return (char*)bigend - littlelen;
991 Returns true if the leading C<len> bytes of the strings C<s1> and C<s2> are the
993 case-insensitively; false otherwise. Uppercase and lowercase ASCII range bytes
994 match themselves and their opposite case counterparts. Non-cased and non-ASCII
995 range bytes match only themselves.
1002 Perl_foldEQ(const char *s1, const char *s2, I32 len)
1004 const U8 *a = (const U8 *)s1;
1005 const U8 *b = (const U8 *)s2;
1007 PERL_ARGS_ASSERT_FOLDEQ;
1012 if (*a != *b && *a != PL_fold[*b])
1019 Perl_foldEQ_latin1(const char *s1, const char *s2, I32 len)
1021 /* Compare non-utf8 using Unicode (Latin1) semantics. Does not work on
1022 * MICRO_SIGN, LATIN_SMALL_LETTER_SHARP_S, nor
1023 * LATIN_SMALL_LETTER_Y_WITH_DIAERESIS, and does not check for these. Nor
1024 * does it check that the strings each have at least 'len' characters */
1026 const U8 *a = (const U8 *)s1;
1027 const U8 *b = (const U8 *)s2;
1029 PERL_ARGS_ASSERT_FOLDEQ_LATIN1;
1034 if (*a != *b && *a != PL_fold_latin1[*b]) {
1043 =for apidoc foldEQ_locale
1045 Returns true if the leading C<len> bytes of the strings C<s1> and C<s2> are the
1046 same case-insensitively in the current locale; false otherwise.
1052 Perl_foldEQ_locale(const char *s1, const char *s2, I32 len)
1055 const U8 *a = (const U8 *)s1;
1056 const U8 *b = (const U8 *)s2;
1058 PERL_ARGS_ASSERT_FOLDEQ_LOCALE;
1063 if (*a != *b && *a != PL_fold_locale[*b])
1070 /* copy a string to a safe spot */
1073 =head1 Memory Management
1077 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
1078 string which is a duplicate of C<pv>. The size of the string is
1079 determined by C<strlen()>, which means it may not contain embedded C<NUL>
1080 characters and must have a trailing C<NUL>. The memory allocated for the new
1081 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</savesharedpv>>.
1091 Perl_savepv(pTHX_ const char *pv)
1093 PERL_UNUSED_CONTEXT;
1098 const STRLEN pvlen = strlen(pv)+1;
1099 Newx(newaddr, pvlen, char);
1100 return (char*)memcpy(newaddr, pv, pvlen);
1104 /* same thing but with a known length */
1109 Perl's version of what C<strndup()> would be if it existed. Returns a
1110 pointer to a newly allocated string which is a duplicate of the first
1111 C<len> bytes from C<pv>, plus a trailing
1112 C<NUL> byte. The memory allocated for
1113 the new string can be freed with the C<Safefree()> function.
1115 On some platforms, Windows for example, all allocated memory owned by a thread
1116 is deallocated when that thread ends. So if you need that not to happen, you
1117 need to use the shared memory functions, such as C<L</savesharedpvn>>.
1123 Perl_savepvn(pTHX_ const char *pv, I32 len)
1126 PERL_UNUSED_CONTEXT;
1130 Newx(newaddr,len+1,char);
1131 /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
1133 /* might not be null terminated */
1134 newaddr[len] = '\0';
1135 return (char *) CopyD(pv,newaddr,len,char);
1138 return (char *) ZeroD(newaddr,len+1,char);
1143 =for apidoc savesharedpv
1145 A version of C<savepv()> which allocates the duplicate string in memory
1146 which is shared between threads.
1151 Perl_savesharedpv(pTHX_ const char *pv)
1156 PERL_UNUSED_CONTEXT;
1161 pvlen = strlen(pv)+1;
1162 newaddr = (char*)PerlMemShared_malloc(pvlen);
1166 return (char*)memcpy(newaddr, pv, pvlen);
1170 =for apidoc savesharedpvn
1172 A version of C<savepvn()> which allocates the duplicate string in memory
1173 which is shared between threads. (With the specific difference that a C<NULL>
1174 pointer is not acceptable)
1179 Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
1181 char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
1183 PERL_UNUSED_CONTEXT;
1184 /* PERL_ARGS_ASSERT_SAVESHAREDPVN; */
1189 newaddr[len] = '\0';
1190 return (char*)memcpy(newaddr, pv, len);
1194 =for apidoc savesvpv
1196 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
1197 the passed in SV using C<SvPV()>
1199 On some platforms, Windows for example, all allocated memory owned by a thread
1200 is deallocated when that thread ends. So if you need that not to happen, you
1201 need to use the shared memory functions, such as C<L</savesharedsvpv>>.
1207 Perl_savesvpv(pTHX_ SV *sv)
1210 const char * const pv = SvPV_const(sv, len);
1213 PERL_ARGS_ASSERT_SAVESVPV;
1216 Newx(newaddr,len,char);
1217 return (char *) CopyD(pv,newaddr,len,char);
1221 =for apidoc savesharedsvpv
1223 A version of C<savesharedpv()> which allocates the duplicate string in
1224 memory which is shared between threads.
1230 Perl_savesharedsvpv(pTHX_ SV *sv)
1233 const char * const pv = SvPV_const(sv, len);
1235 PERL_ARGS_ASSERT_SAVESHAREDSVPV;
1237 return savesharedpvn(pv, len);
1240 /* the SV for Perl_form() and mess() is not kept in an arena */
1248 if (PL_phase != PERL_PHASE_DESTRUCT)
1249 return newSVpvs_flags("", SVs_TEMP);
1254 /* Create as PVMG now, to avoid any upgrading later */
1256 Newxz(any, 1, XPVMG);
1257 SvFLAGS(sv) = SVt_PVMG;
1258 SvANY(sv) = (void*)any;
1260 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1265 #if defined(PERL_IMPLICIT_CONTEXT)
1267 Perl_form_nocontext(const char* pat, ...)
1272 PERL_ARGS_ASSERT_FORM_NOCONTEXT;
1273 va_start(args, pat);
1274 retval = vform(pat, &args);
1278 #endif /* PERL_IMPLICIT_CONTEXT */
1281 =head1 Miscellaneous Functions
1284 Takes a sprintf-style format pattern and conventional
1285 (non-SV) arguments and returns the formatted string.
1287 (char *) Perl_form(pTHX_ const char* pat, ...)
1289 can be used any place a string (char *) is required:
1291 char * s = Perl_form("%d.%d",major,minor);
1293 Uses a single private buffer so if you want to format several strings you
1294 must explicitly copy the earlier strings away (and free the copies when you
1301 Perl_form(pTHX_ const char* pat, ...)
1305 PERL_ARGS_ASSERT_FORM;
1306 va_start(args, pat);
1307 retval = vform(pat, &args);
1313 Perl_vform(pTHX_ const char *pat, va_list *args)
1315 SV * const sv = mess_alloc();
1316 PERL_ARGS_ASSERT_VFORM;
1317 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1322 =for apidoc Am|SV *|mess|const char *pat|...
1324 Take a sprintf-style format pattern and argument list. These are used to
1325 generate a string message. If the message does not end with a newline,
1326 then it will be extended with some indication of the current location
1327 in the code, as described for L</mess_sv>.
1329 Normally, the resulting message is returned in a new mortal SV.
1330 During global destruction a single SV may be shared between uses of
1336 #if defined(PERL_IMPLICIT_CONTEXT)
1338 Perl_mess_nocontext(const char *pat, ...)
1343 PERL_ARGS_ASSERT_MESS_NOCONTEXT;
1344 va_start(args, pat);
1345 retval = vmess(pat, &args);
1349 #endif /* PERL_IMPLICIT_CONTEXT */
1352 Perl_mess(pTHX_ const char *pat, ...)
1356 PERL_ARGS_ASSERT_MESS;
1357 va_start(args, pat);
1358 retval = vmess(pat, &args);
1364 Perl_closest_cop(pTHX_ const COP *cop, const OP *o, const OP *curop,
1367 /* Look for curop starting from o. cop is the last COP we've seen. */
1368 /* opnext means that curop is actually the ->op_next of the op we are
1371 PERL_ARGS_ASSERT_CLOSEST_COP;
1373 if (!o || !curop || (
1374 opnext ? o->op_next == curop && o->op_type != OP_SCOPE : o == curop
1378 if (o->op_flags & OPf_KIDS) {
1380 for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) {
1383 /* If the OP_NEXTSTATE has been optimised away we can still use it
1384 * the get the file and line number. */
1386 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
1387 cop = (const COP *)kid;
1389 /* Keep searching, and return when we've found something. */
1391 new_cop = closest_cop(cop, kid, curop, opnext);
1397 /* Nothing found. */
1403 =for apidoc Am|SV *|mess_sv|SV *basemsg|bool consume
1405 Expands a message, intended for the user, to include an indication of
1406 the current location in the code, if the message does not already appear
1409 C<basemsg> is the initial message or object. If it is a reference, it
1410 will be used as-is and will be the result of this function. Otherwise it
1411 is used as a string, and if it already ends with a newline, it is taken
1412 to be complete, and the result of this function will be the same string.
1413 If the message does not end with a newline, then a segment such as C<at
1414 foo.pl line 37> will be appended, and possibly other clauses indicating
1415 the current state of execution. The resulting message will end with a
1418 Normally, the resulting message is returned in a new mortal SV.
1419 During global destruction a single SV may be shared between uses of this
1420 function. If C<consume> is true, then the function is permitted (but not
1421 required) to modify and return C<basemsg> instead of allocating a new SV.
1427 Perl_mess_sv(pTHX_ SV *basemsg, bool consume)
1431 #if defined(USE_C_BACKTRACE) && defined(USE_C_BACKTRACE_ON_ERROR)
1435 /* The PERL_C_BACKTRACE_ON_WARN must be an integer of one or more. */
1436 if ((ws = PerlEnv_getenv("PERL_C_BACKTRACE_ON_ERROR"))
1437 && grok_atoUV(ws, &wi, NULL)
1438 && wi <= PERL_INT_MAX
1440 Perl_dump_c_backtrace(aTHX_ Perl_debug_log, (int)wi, 1);
1445 PERL_ARGS_ASSERT_MESS_SV;
1447 if (SvROK(basemsg)) {
1453 sv_setsv(sv, basemsg);
1458 if (SvPOK(basemsg) && consume) {
1463 sv_copypv(sv, basemsg);
1466 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1468 * Try and find the file and line for PL_op. This will usually be
1469 * PL_curcop, but it might be a cop that has been optimised away. We
1470 * can try to find such a cop by searching through the optree starting
1471 * from the sibling of PL_curcop.
1475 closest_cop(PL_curcop, OpSIBLING(PL_curcop), PL_op, FALSE);
1480 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1481 OutCopFILE(cop), (IV)CopLINE(cop));
1482 /* Seems that GvIO() can be untrustworthy during global destruction. */
1483 if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1484 && IoLINES(GvIOp(PL_last_in_gv)))
1487 const bool line_mode = (RsSIMPLE(PL_rs) &&
1488 *SvPV_const(PL_rs,l) == '\n' && l == 1);
1489 Perl_sv_catpvf(aTHX_ sv, ", <%"SVf"> %s %"IVdf,
1490 SVfARG(PL_last_in_gv == PL_argvgv
1492 : sv_2mortal(newSVhek(GvNAME_HEK(PL_last_in_gv)))),
1493 line_mode ? "line" : "chunk",
1494 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1496 if (PL_phase == PERL_PHASE_DESTRUCT)
1497 sv_catpvs(sv, " during global destruction");
1498 sv_catpvs(sv, ".\n");
1504 =for apidoc Am|SV *|vmess|const char *pat|va_list *args
1506 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1507 argument list, respectively. These are used to generate a string message. If
1509 message does not end with a newline, then it will be extended with
1510 some indication of the current location in the code, as described for
1513 Normally, the resulting message is returned in a new mortal SV.
1514 During global destruction a single SV may be shared between uses of
1521 Perl_vmess(pTHX_ const char *pat, va_list *args)
1523 SV * const sv = mess_alloc();
1525 PERL_ARGS_ASSERT_VMESS;
1527 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1528 return mess_sv(sv, 1);
1532 Perl_write_to_stderr(pTHX_ SV* msv)
1537 PERL_ARGS_ASSERT_WRITE_TO_STDERR;
1539 if (PL_stderrgv && SvREFCNT(PL_stderrgv)
1540 && (io = GvIO(PL_stderrgv))
1541 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
1542 Perl_magic_methcall(aTHX_ MUTABLE_SV(io), mg, SV_CONST(PRINT),
1543 G_SCALAR | G_DISCARD | G_WRITING_TO_STDERR, 1, msv);
1545 PerlIO * const serr = Perl_error_log;
1547 do_print(msv, serr);
1548 (void)PerlIO_flush(serr);
1553 =head1 Warning and Dieing
1556 /* Common code used in dieing and warning */
1559 S_with_queued_errors(pTHX_ SV *ex)
1561 PERL_ARGS_ASSERT_WITH_QUEUED_ERRORS;
1562 if (PL_errors && SvCUR(PL_errors) && !SvROK(ex)) {
1563 sv_catsv(PL_errors, ex);
1564 ex = sv_mortalcopy(PL_errors);
1565 SvCUR_set(PL_errors, 0);
1571 S_invoke_exception_hook(pTHX_ SV *ex, bool warn)
1576 SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1577 /* sv_2cv might call Perl_croak() or Perl_warner() */
1578 SV * const oldhook = *hook;
1586 cv = sv_2cv(oldhook, &stash, &gv, 0);
1588 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1598 exarg = newSVsv(ex);
1599 SvREADONLY_on(exarg);
1602 PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
1606 call_sv(MUTABLE_SV(cv), G_DISCARD);
1615 =for apidoc Am|OP *|die_sv|SV *baseex
1617 Behaves the same as L</croak_sv>, except for the return type.
1618 It should be used only where the C<OP *> return type is required.
1619 The function never actually returns.
1625 # pragma warning( push )
1626 # pragma warning( disable : 4646 ) /* warning C4646: function declared with
1627 __declspec(noreturn) has non-void return type */
1628 # pragma warning( disable : 4645 ) /* warning C4645: function declared with
1629 __declspec(noreturn) has a return statement */
1632 Perl_die_sv(pTHX_ SV *baseex)
1634 PERL_ARGS_ASSERT_DIE_SV;
1637 NORETURN_FUNCTION_END;
1640 # pragma warning( pop )
1644 =for apidoc Am|OP *|die|const char *pat|...
1646 Behaves the same as L</croak>, except for the return type.
1647 It should be used only where the C<OP *> return type is required.
1648 The function never actually returns.
1653 #if defined(PERL_IMPLICIT_CONTEXT)
1655 # pragma warning( push )
1656 # pragma warning( disable : 4646 ) /* warning C4646: function declared with
1657 __declspec(noreturn) has non-void return type */
1658 # pragma warning( disable : 4645 ) /* warning C4645: function declared with
1659 __declspec(noreturn) has a return statement */
1662 Perl_die_nocontext(const char* pat, ...)
1666 va_start(args, pat);
1668 NOT_REACHED; /* NOTREACHED */
1670 NORETURN_FUNCTION_END;
1673 # pragma warning( pop )
1675 #endif /* PERL_IMPLICIT_CONTEXT */
1678 # pragma warning( push )
1679 # pragma warning( disable : 4646 ) /* warning C4646: function declared with
1680 __declspec(noreturn) has non-void return type */
1681 # pragma warning( disable : 4645 ) /* warning C4645: function declared with
1682 __declspec(noreturn) has a return statement */
1685 Perl_die(pTHX_ const char* pat, ...)
1688 va_start(args, pat);
1690 NOT_REACHED; /* NOTREACHED */
1692 NORETURN_FUNCTION_END;
1695 # pragma warning( pop )
1699 =for apidoc Am|void|croak_sv|SV *baseex
1701 This is an XS interface to Perl's C<die> function.
1703 C<baseex> is the error message or object. If it is a reference, it
1704 will be used as-is. Otherwise it is used as a string, and if it does
1705 not end with a newline then it will be extended with some indication of
1706 the current location in the code, as described for L</mess_sv>.
1708 The error message or object will be used as an exception, by default
1709 returning control to the nearest enclosing C<eval>, but subject to
1710 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak_sv>
1711 function never returns normally.
1713 To die with a simple string message, the L</croak> function may be
1720 Perl_croak_sv(pTHX_ SV *baseex)
1722 SV *ex = with_queued_errors(mess_sv(baseex, 0));
1723 PERL_ARGS_ASSERT_CROAK_SV;
1724 invoke_exception_hook(ex, FALSE);
1729 =for apidoc Am|void|vcroak|const char *pat|va_list *args
1731 This is an XS interface to Perl's C<die> function.
1733 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1734 argument list. These are used to generate a string message. If the
1735 message does not end with a newline, then it will be extended with
1736 some indication of the current location in the code, as described for
1739 The error message will be used as an exception, by default
1740 returning control to the nearest enclosing C<eval>, but subject to
1741 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1742 function never returns normally.
1744 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1745 (C<$@>) will be used as an error message or object instead of building an
1746 error message from arguments. If you want to throw a non-string object,
1747 or build an error message in an SV yourself, it is preferable to use
1748 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1754 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1756 SV *ex = with_queued_errors(pat ? vmess(pat, args) : mess_sv(ERRSV, 0));
1757 invoke_exception_hook(ex, FALSE);
1762 =for apidoc Am|void|croak|const char *pat|...
1764 This is an XS interface to Perl's C<die> function.
1766 Take a sprintf-style format pattern and argument list. These are used to
1767 generate a string message. If the message does not end with a newline,
1768 then it will be extended with some indication of the current location
1769 in the code, as described for L</mess_sv>.
1771 The error message will be used as an exception, by default
1772 returning control to the nearest enclosing C<eval>, but subject to
1773 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1774 function never returns normally.
1776 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1777 (C<$@>) will be used as an error message or object instead of building an
1778 error message from arguments. If you want to throw a non-string object,
1779 or build an error message in an SV yourself, it is preferable to use
1780 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1785 #if defined(PERL_IMPLICIT_CONTEXT)
1787 Perl_croak_nocontext(const char *pat, ...)
1791 va_start(args, pat);
1793 NOT_REACHED; /* NOTREACHED */
1796 #endif /* PERL_IMPLICIT_CONTEXT */
1799 Perl_croak(pTHX_ const char *pat, ...)
1802 va_start(args, pat);
1804 NOT_REACHED; /* NOTREACHED */
1809 =for apidoc Am|void|croak_no_modify
1811 Exactly equivalent to C<Perl_croak(aTHX_ "%s", PL_no_modify)>, but generates
1812 terser object code than using C<Perl_croak>. Less code used on exception code
1813 paths reduces CPU cache pressure.
1819 Perl_croak_no_modify(void)
1821 Perl_croak_nocontext( "%s", PL_no_modify);
1824 /* does not return, used in util.c perlio.c and win32.c
1825 This is typically called when malloc returns NULL.
1828 Perl_croak_no_mem(void)
1832 int fd = PerlIO_fileno(Perl_error_log);
1834 SETERRNO(EBADF,RMS_IFI);
1836 /* Can't use PerlIO to write as it allocates memory */
1837 PERL_UNUSED_RESULT(PerlLIO_write(fd, PL_no_mem, sizeof(PL_no_mem)-1));
1842 /* does not return, used only in POPSTACK */
1844 Perl_croak_popstack(void)
1847 PerlIO_printf(Perl_error_log, "panic: POPSTACK\n");
1852 =for apidoc Am|void|warn_sv|SV *baseex
1854 This is an XS interface to Perl's C<warn> function.
1856 C<baseex> is the error message or object. If it is a reference, it
1857 will be used as-is. Otherwise it is used as a string, and if it does
1858 not end with a newline then it will be extended with some indication of
1859 the current location in the code, as described for L</mess_sv>.
1861 The error message or object will by default be written to standard error,
1862 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1864 To warn with a simple string message, the L</warn> function may be
1871 Perl_warn_sv(pTHX_ SV *baseex)
1873 SV *ex = mess_sv(baseex, 0);
1874 PERL_ARGS_ASSERT_WARN_SV;
1875 if (!invoke_exception_hook(ex, TRUE))
1876 write_to_stderr(ex);
1880 =for apidoc Am|void|vwarn|const char *pat|va_list *args
1882 This is an XS interface to Perl's C<warn> function.
1884 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1885 argument list. These are used to generate a string message. If the
1886 message does not end with a newline, then it will be extended with
1887 some indication of the current location in the code, as described for
1890 The error message or object will by default be written to standard error,
1891 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1893 Unlike with L</vcroak>, C<pat> is not permitted to be null.
1899 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1901 SV *ex = vmess(pat, args);
1902 PERL_ARGS_ASSERT_VWARN;
1903 if (!invoke_exception_hook(ex, TRUE))
1904 write_to_stderr(ex);
1908 =for apidoc Am|void|warn|const char *pat|...
1910 This is an XS interface to Perl's C<warn> function.
1912 Take a sprintf-style format pattern and argument list. These are used to
1913 generate a string message. If the message does not end with a newline,
1914 then it will be extended with some indication of the current location
1915 in the code, as described for L</mess_sv>.
1917 The error message or object will by default be written to standard error,
1918 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1920 Unlike with L</croak>, C<pat> is not permitted to be null.
1925 #if defined(PERL_IMPLICIT_CONTEXT)
1927 Perl_warn_nocontext(const char *pat, ...)
1931 PERL_ARGS_ASSERT_WARN_NOCONTEXT;
1932 va_start(args, pat);
1936 #endif /* PERL_IMPLICIT_CONTEXT */
1939 Perl_warn(pTHX_ const char *pat, ...)
1942 PERL_ARGS_ASSERT_WARN;
1943 va_start(args, pat);
1948 #if defined(PERL_IMPLICIT_CONTEXT)
1950 Perl_warner_nocontext(U32 err, const char *pat, ...)
1954 PERL_ARGS_ASSERT_WARNER_NOCONTEXT;
1955 va_start(args, pat);
1956 vwarner(err, pat, &args);
1959 #endif /* PERL_IMPLICIT_CONTEXT */
1962 Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...)
1964 PERL_ARGS_ASSERT_CK_WARNER_D;
1966 if (Perl_ckwarn_d(aTHX_ err)) {
1968 va_start(args, pat);
1969 vwarner(err, pat, &args);
1975 Perl_ck_warner(pTHX_ U32 err, const char* pat, ...)
1977 PERL_ARGS_ASSERT_CK_WARNER;
1979 if (Perl_ckwarn(aTHX_ err)) {
1981 va_start(args, pat);
1982 vwarner(err, pat, &args);
1988 Perl_warner(pTHX_ U32 err, const char* pat,...)
1991 PERL_ARGS_ASSERT_WARNER;
1992 va_start(args, pat);
1993 vwarner(err, pat, &args);
1998 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
2001 PERL_ARGS_ASSERT_VWARNER;
2003 (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) &&
2004 !(PL_in_eval & EVAL_KEEPERR)
2006 SV * const msv = vmess(pat, args);
2008 if (PL_parser && PL_parser->error_count) {
2012 invoke_exception_hook(msv, FALSE);
2017 Perl_vwarn(aTHX_ pat, args);
2021 /* implements the ckWARN? macros */
2024 Perl_ckwarn(pTHX_ U32 w)
2026 /* If lexical warnings have not been set, use $^W. */
2028 return PL_dowarn & G_WARN_ON;
2030 return ckwarn_common(w);
2033 /* implements the ckWARN?_d macro */
2036 Perl_ckwarn_d(pTHX_ U32 w)
2038 /* If lexical warnings have not been set then default classes warn. */
2042 return ckwarn_common(w);
2046 S_ckwarn_common(pTHX_ U32 w)
2048 if (PL_curcop->cop_warnings == pWARN_ALL)
2051 if (PL_curcop->cop_warnings == pWARN_NONE)
2054 /* Check the assumption that at least the first slot is non-zero. */
2055 assert(unpackWARN1(w));
2057 /* Check the assumption that it is valid to stop as soon as a zero slot is
2059 if (!unpackWARN2(w)) {
2060 assert(!unpackWARN3(w));
2061 assert(!unpackWARN4(w));
2062 } else if (!unpackWARN3(w)) {
2063 assert(!unpackWARN4(w));
2066 /* Right, dealt with all the special cases, which are implemented as non-
2067 pointers, so there is a pointer to a real warnings mask. */
2069 if (isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)))
2071 } while (w >>= WARNshift);
2076 /* Set buffer=NULL to get a new one. */
2078 Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
2080 const MEM_SIZE len_wanted =
2081 sizeof(STRLEN) + (size > WARNsize ? size : WARNsize);
2082 PERL_UNUSED_CONTEXT;
2083 PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD;
2086 (specialWARN(buffer) ?
2087 PerlMemShared_malloc(len_wanted) :
2088 PerlMemShared_realloc(buffer, len_wanted));
2090 Copy(bits, (buffer + 1), size, char);
2091 if (size < WARNsize)
2092 Zero((char *)(buffer + 1) + size, WARNsize - size, char);
2096 /* since we've already done strlen() for both nam and val
2097 * we can use that info to make things faster than
2098 * sprintf(s, "%s=%s", nam, val)
2100 #define my_setenv_format(s, nam, nlen, val, vlen) \
2101 Copy(nam, s, nlen, char); \
2103 Copy(val, s+(nlen+1), vlen, char); \
2104 *(s+(nlen+1+vlen)) = '\0'
2106 #ifdef USE_ENVIRON_ARRAY
2107 /* VMS' my_setenv() is in vms.c */
2108 #if !defined(WIN32) && !defined(NETWARE)
2110 Perl_my_setenv(pTHX_ const char *nam, const char *val)
2114 amigaos4_obtain_environ(__FUNCTION__);
2117 /* only parent thread can modify process environment */
2118 if (PL_curinterp == aTHX)
2121 #ifndef PERL_USE_SAFE_PUTENV
2122 if (!PL_use_safe_putenv) {
2123 /* most putenv()s leak, so we manipulate environ directly */
2125 const I32 len = strlen(nam);
2128 /* where does it go? */
2129 for (i = 0; environ[i]; i++) {
2130 if (strnEQ(environ[i],nam,len) && environ[i][len] == '=')
2134 if (environ == PL_origenviron) { /* need we copy environment? */
2140 while (environ[max])
2142 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
2143 for (j=0; j<max; j++) { /* copy environment */
2144 const int len = strlen(environ[j]);
2145 tmpenv[j] = (char*)safesysmalloc((len+1)*sizeof(char));
2146 Copy(environ[j], tmpenv[j], len+1, char);
2149 environ = tmpenv; /* tell exec where it is now */
2152 safesysfree(environ[i]);
2153 while (environ[i]) {
2154 environ[i] = environ[i+1];
2163 if (!environ[i]) { /* does not exist yet */
2164 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
2165 environ[i+1] = NULL; /* make sure it's null terminated */
2168 safesysfree(environ[i]);
2172 environ[i] = (char*)safesysmalloc((nlen+vlen+2) * sizeof(char));
2173 /* all that work just for this */
2174 my_setenv_format(environ[i], nam, nlen, val, vlen);
2177 /* This next branch should only be called #if defined(HAS_SETENV), but
2178 Configure doesn't test for that yet. For Solaris, setenv() and unsetenv()
2179 were introduced in Solaris 9, so testing for HAS UNSETENV is sufficient.
2181 # if defined(__CYGWIN__)|| defined(__SYMBIAN32__) || defined(__riscos__) || (defined(__sun) && defined(HAS_UNSETENV))
2182 # if defined(HAS_UNSETENV)
2184 (void)unsetenv(nam);
2186 (void)setenv(nam, val, 1);
2188 # else /* ! HAS_UNSETENV */
2189 (void)setenv(nam, val, 1);
2190 # endif /* HAS_UNSETENV */
2192 # if defined(HAS_UNSETENV)
2194 if (environ) /* old glibc can crash with null environ */
2195 (void)unsetenv(nam);
2197 const int nlen = strlen(nam);
2198 const int vlen = strlen(val);
2199 char * const new_env =
2200 (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2201 my_setenv_format(new_env, nam, nlen, val, vlen);
2202 (void)putenv(new_env);
2204 # else /* ! HAS_UNSETENV */
2206 const int nlen = strlen(nam);
2212 new_env = (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2213 /* all that work just for this */
2214 my_setenv_format(new_env, nam, nlen, val, vlen);
2215 (void)putenv(new_env);
2216 # endif /* HAS_UNSETENV */
2217 # endif /* __CYGWIN__ */
2218 #ifndef PERL_USE_SAFE_PUTENV
2224 amigaos4_release_environ(__FUNCTION__);
2228 #else /* WIN32 || NETWARE */
2231 Perl_my_setenv(pTHX_ const char *nam, const char *val)
2235 const int nlen = strlen(nam);
2242 Newx(envstr, nlen+vlen+2, char);
2243 my_setenv_format(envstr, nam, nlen, val, vlen);
2244 (void)PerlEnv_putenv(envstr);
2248 #endif /* WIN32 || NETWARE */
2252 #ifdef UNLINK_ALL_VERSIONS
2254 Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
2258 PERL_ARGS_ASSERT_UNLNK;
2260 while (PerlLIO_unlink(f) >= 0)
2262 return retries ? 0 : -1;
2266 /* this is a drop-in replacement for bcopy() */
2267 #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
2269 Perl_my_bcopy(const char *from, char *to, I32 len)
2271 char * const retval = to;
2273 PERL_ARGS_ASSERT_MY_BCOPY;
2277 if (from - to >= 0) {
2285 *(--to) = *(--from);
2291 /* this is a drop-in replacement for memset() */
2294 Perl_my_memset(char *loc, I32 ch, I32 len)
2296 char * const retval = loc;
2298 PERL_ARGS_ASSERT_MY_MEMSET;
2308 /* this is a drop-in replacement for bzero() */
2309 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2311 Perl_my_bzero(char *loc, I32 len)
2313 char * const retval = loc;
2315 PERL_ARGS_ASSERT_MY_BZERO;
2325 /* this is a drop-in replacement for memcmp() */
2326 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2328 Perl_my_memcmp(const char *s1, const char *s2, I32 len)
2330 const U8 *a = (const U8 *)s1;
2331 const U8 *b = (const U8 *)s2;
2334 PERL_ARGS_ASSERT_MY_MEMCMP;
2339 if ((tmp = *a++ - *b++))
2344 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2347 /* This vsprintf replacement should generally never get used, since
2348 vsprintf was available in both System V and BSD 2.11. (There may
2349 be some cross-compilation or embedded set-ups where it is needed,
2352 If you encounter a problem in this function, it's probably a symptom
2353 that Configure failed to detect your system's vprintf() function.
2354 See the section on "item vsprintf" in the INSTALL file.
2356 This version may compile on systems with BSD-ish <stdio.h>,
2357 but probably won't on others.
2360 #ifdef USE_CHAR_VSPRINTF
2365 vsprintf(char *dest, const char *pat, void *args)
2369 #if defined(STDIO_PTR_LVALUE) && defined(STDIO_CNT_LVALUE)
2370 FILE_ptr(&fakebuf) = (STDCHAR *) dest;
2371 FILE_cnt(&fakebuf) = 32767;
2373 /* These probably won't compile -- If you really need
2374 this, you'll have to figure out some other method. */
2375 fakebuf._ptr = dest;
2376 fakebuf._cnt = 32767;
2381 fakebuf._flag = _IOWRT|_IOSTRG;
2382 _doprnt(pat, args, &fakebuf); /* what a kludge */
2383 #if defined(STDIO_PTR_LVALUE)
2384 *(FILE_ptr(&fakebuf)++) = '\0';
2386 /* PerlIO has probably #defined away fputc, but we want it here. */
2388 # undef fputc /* XXX Should really restore it later */
2390 (void)fputc('\0', &fakebuf);
2392 #ifdef USE_CHAR_VSPRINTF
2395 return 0; /* perl doesn't use return value */
2399 #endif /* HAS_VPRINTF */
2402 Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
2404 #if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(OS2) && !defined(VMS) && !defined(NETWARE) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2412 PERL_ARGS_ASSERT_MY_POPEN_LIST;
2414 PERL_FLUSHALL_FOR_CHILD;
2415 This = (*mode == 'w');
2419 taint_proper("Insecure %s%s", "EXEC");
2421 if (PerlProc_pipe(p) < 0)
2423 /* Try for another pipe pair for error return */
2424 if (PerlProc_pipe(pp) >= 0)
2426 while ((pid = PerlProc_fork()) < 0) {
2427 if (errno != EAGAIN) {
2428 PerlLIO_close(p[This]);
2429 PerlLIO_close(p[that]);
2431 PerlLIO_close(pp[0]);
2432 PerlLIO_close(pp[1]);
2436 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2445 /* Close parent's end of error status pipe (if any) */
2447 PerlLIO_close(pp[0]);
2448 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
2449 /* Close error pipe automatically if exec works */
2450 if (fcntl(pp[1], F_SETFD, FD_CLOEXEC) < 0)
2454 /* Now dup our end of _the_ pipe to right position */
2455 if (p[THIS] != (*mode == 'r')) {
2456 PerlLIO_dup2(p[THIS], *mode == 'r');
2457 PerlLIO_close(p[THIS]);
2458 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2459 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2462 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2463 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2464 /* No automatic close - do it by hand */
2471 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
2477 do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
2483 do_execfree(); /* free any memory malloced by child on fork */
2485 PerlLIO_close(pp[1]);
2486 /* Keep the lower of the two fd numbers */
2487 if (p[that] < p[This]) {
2488 PerlLIO_dup2(p[This], p[that]);
2489 PerlLIO_close(p[This]);
2493 PerlLIO_close(p[that]); /* close child's end of pipe */
2495 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2496 SvUPGRADE(sv,SVt_IV);
2498 PL_forkprocess = pid;
2499 /* If we managed to get status pipe check for exec fail */
2500 if (did_pipes && pid > 0) {
2505 while (n < sizeof(int)) {
2506 n1 = PerlLIO_read(pp[0],
2507 (void*)(((char*)&errkid)+n),
2513 PerlLIO_close(pp[0]);
2515 if (n) { /* Error */
2517 PerlLIO_close(p[This]);
2518 if (n != sizeof(int))
2519 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", n);
2521 pid2 = wait4pid(pid, &status, 0);
2522 } while (pid2 == -1 && errno == EINTR);
2523 errno = errkid; /* Propagate errno from kid */
2528 PerlLIO_close(pp[0]);
2529 return PerlIO_fdopen(p[This], mode);
2531 # if defined(OS2) /* Same, without fork()ing and all extra overhead... */
2532 return my_syspopen4(aTHX_ NULL, mode, n, args);
2533 # elif defined(WIN32)
2534 return win32_popenlist(mode, n, args);
2536 Perl_croak(aTHX_ "List form of piped open not implemented");
2537 return (PerlIO *) NULL;
2542 /* VMS' my_popen() is in VMS.c, same with OS/2 and AmigaOS 4. */
2543 #if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2545 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2551 const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
2555 PERL_ARGS_ASSERT_MY_POPEN;
2557 PERL_FLUSHALL_FOR_CHILD;
2560 return my_syspopen(aTHX_ cmd,mode);
2563 This = (*mode == 'w');
2565 if (doexec && TAINTING_get) {
2567 taint_proper("Insecure %s%s", "EXEC");
2569 if (PerlProc_pipe(p) < 0)
2571 if (doexec && PerlProc_pipe(pp) >= 0)
2573 while ((pid = PerlProc_fork()) < 0) {
2574 if (errno != EAGAIN) {
2575 PerlLIO_close(p[This]);
2576 PerlLIO_close(p[that]);
2578 PerlLIO_close(pp[0]);
2579 PerlLIO_close(pp[1]);
2582 Perl_croak(aTHX_ "Can't fork: %s", Strerror(errno));
2585 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2595 PerlLIO_close(pp[0]);
2596 #if defined(HAS_FCNTL) && defined(F_SETFD)
2597 if (fcntl(pp[1], F_SETFD, FD_CLOEXEC) < 0)
2601 if (p[THIS] != (*mode == 'r')) {
2602 PerlLIO_dup2(p[THIS], *mode == 'r');
2603 PerlLIO_close(p[THIS]);
2604 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2605 PerlLIO_close(p[THAT]);
2608 PerlLIO_close(p[THAT]);
2611 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2618 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2623 /* may or may not use the shell */
2624 do_exec3(cmd, pp[1], did_pipes);
2627 #endif /* defined OS2 */
2629 #ifdef PERLIO_USING_CRLF
2630 /* Since we circumvent IO layers when we manipulate low-level
2631 filedescriptors directly, need to manually switch to the
2632 default, binary, low-level mode; see PerlIOBuf_open(). */
2633 PerlLIO_setmode((*mode == 'r'), O_BINARY);
2636 #ifdef PERL_USES_PL_PIDSTATUS
2637 hv_clear(PL_pidstatus); /* we have no children */
2643 do_execfree(); /* free any memory malloced by child on vfork */
2645 PerlLIO_close(pp[1]);
2646 if (p[that] < p[This]) {
2647 PerlLIO_dup2(p[This], p[that]);
2648 PerlLIO_close(p[This]);
2652 PerlLIO_close(p[that]);
2654 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2655 SvUPGRADE(sv,SVt_IV);
2657 PL_forkprocess = pid;
2658 if (did_pipes && pid > 0) {
2663 while (n < sizeof(int)) {
2664 n1 = PerlLIO_read(pp[0],
2665 (void*)(((char*)&errkid)+n),
2671 PerlLIO_close(pp[0]);
2673 if (n) { /* Error */
2675 PerlLIO_close(p[This]);
2676 if (n != sizeof(int))
2677 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", n);
2679 pid2 = wait4pid(pid, &status, 0);
2680 } while (pid2 == -1 && errno == EINTR);
2681 errno = errkid; /* Propagate errno from kid */
2686 PerlLIO_close(pp[0]);
2687 return PerlIO_fdopen(p[This], mode);
2691 FILE *djgpp_popen();
2693 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2695 PERL_FLUSHALL_FOR_CHILD;
2696 /* Call system's popen() to get a FILE *, then import it.
2697 used 0 for 2nd parameter to PerlIO_importFILE;
2700 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2703 #if defined(__LIBCATAMOUNT__)
2705 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2712 #endif /* !DOSISH */
2714 /* this is called in parent before the fork() */
2716 Perl_atfork_lock(void)
2717 #if defined(USE_ITHREADS)
2719 PERL_TSA_ACQUIRE(PL_perlio_mutex)
2722 PERL_TSA_ACQUIRE(PL_malloc_mutex)
2724 PERL_TSA_ACQUIRE(PL_op_mutex)
2727 #if defined(USE_ITHREADS)
2729 /* locks must be held in locking order (if any) */
2731 MUTEX_LOCK(&PL_perlio_mutex);
2734 MUTEX_LOCK(&PL_malloc_mutex);
2740 /* this is called in both parent and child after the fork() */
2742 Perl_atfork_unlock(void)
2743 #if defined(USE_ITHREADS)
2745 PERL_TSA_RELEASE(PL_perlio_mutex)
2748 PERL_TSA_RELEASE(PL_malloc_mutex)
2750 PERL_TSA_RELEASE(PL_op_mutex)
2753 #if defined(USE_ITHREADS)
2755 /* locks must be released in same order as in atfork_lock() */
2757 MUTEX_UNLOCK(&PL_perlio_mutex);
2760 MUTEX_UNLOCK(&PL_malloc_mutex);
2769 #if defined(HAS_FORK)
2771 #if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
2776 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2777 * handlers elsewhere in the code */
2781 #elif defined(__amigaos4__)
2782 return amigaos_fork();
2784 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2785 Perl_croak_nocontext("fork() not available");
2787 #endif /* HAS_FORK */
2792 dup2(int oldfd, int newfd)
2794 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2797 PerlLIO_close(newfd);
2798 return fcntl(oldfd, F_DUPFD, newfd);
2800 #define DUP2_MAX_FDS 256
2801 int fdtmp[DUP2_MAX_FDS];
2807 PerlLIO_close(newfd);
2808 /* good enough for low fd's... */
2809 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2810 if (fdx >= DUP2_MAX_FDS) {
2818 PerlLIO_close(fdtmp[--fdx]);
2825 #ifdef HAS_SIGACTION
2828 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2830 struct sigaction act, oact;
2834 /* only "parent" interpreter can diddle signals */
2835 if (PL_curinterp != aTHX)
2836 return (Sighandler_t) SIG_ERR;
2839 act.sa_handler = (void(*)(int))handler;
2840 sigemptyset(&act.sa_mask);
2843 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2844 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2846 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2847 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2848 act.sa_flags |= SA_NOCLDWAIT;
2850 if (sigaction(signo, &act, &oact) == -1)
2851 return (Sighandler_t) SIG_ERR;
2853 return (Sighandler_t) oact.sa_handler;
2857 Perl_rsignal_state(pTHX_ int signo)
2859 struct sigaction oact;
2860 PERL_UNUSED_CONTEXT;
2862 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2863 return (Sighandler_t) SIG_ERR;
2865 return (Sighandler_t) oact.sa_handler;
2869 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2874 struct sigaction act;
2876 PERL_ARGS_ASSERT_RSIGNAL_SAVE;
2879 /* only "parent" interpreter can diddle signals */
2880 if (PL_curinterp != aTHX)
2884 act.sa_handler = (void(*)(int))handler;
2885 sigemptyset(&act.sa_mask);
2888 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2889 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2891 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2892 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2893 act.sa_flags |= SA_NOCLDWAIT;
2895 return sigaction(signo, &act, save);
2899 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2904 PERL_UNUSED_CONTEXT;
2906 /* only "parent" interpreter can diddle signals */
2907 if (PL_curinterp != aTHX)
2911 return sigaction(signo, save, (struct sigaction *)NULL);
2914 #else /* !HAS_SIGACTION */
2917 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2919 #if defined(USE_ITHREADS) && !defined(WIN32)
2920 /* only "parent" interpreter can diddle signals */
2921 if (PL_curinterp != aTHX)
2922 return (Sighandler_t) SIG_ERR;
2925 return PerlProc_signal(signo, handler);
2936 Perl_rsignal_state(pTHX_ int signo)
2939 Sighandler_t oldsig;
2941 #if defined(USE_ITHREADS) && !defined(WIN32)
2942 /* only "parent" interpreter can diddle signals */
2943 if (PL_curinterp != aTHX)
2944 return (Sighandler_t) SIG_ERR;
2948 oldsig = PerlProc_signal(signo, sig_trap);
2949 PerlProc_signal(signo, oldsig);
2951 PerlProc_kill(PerlProc_getpid(), signo);
2956 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2958 #if defined(USE_ITHREADS) && !defined(WIN32)
2959 /* only "parent" interpreter can diddle signals */
2960 if (PL_curinterp != aTHX)
2963 *save = PerlProc_signal(signo, handler);
2964 return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
2968 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2970 #if defined(USE_ITHREADS) && !defined(WIN32)
2971 /* only "parent" interpreter can diddle signals */
2972 if (PL_curinterp != aTHX)
2975 return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
2978 #endif /* !HAS_SIGACTION */
2979 #endif /* !PERL_MICRO */
2981 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2982 #if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2984 Perl_my_pclose(pTHX_ PerlIO *ptr)
2992 const int fd = PerlIO_fileno(ptr);
2995 svp = av_fetch(PL_fdpid,fd,TRUE);
2996 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
3000 #if defined(USE_PERLIO)
3001 /* Find out whether the refcount is low enough for us to wait for the
3002 child proc without blocking. */
3003 should_wait = PerlIOUnix_refcnt(fd) == 1 && pid > 0;
3005 should_wait = pid > 0;
3009 if (pid == -1) { /* Opened by popen. */
3010 return my_syspclose(ptr);
3013 close_failed = (PerlIO_close(ptr) == EOF);
3015 if (should_wait) do {
3016 pid2 = wait4pid(pid, &status, 0);
3017 } while (pid2 == -1 && errno == EINTR);
3024 ? pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status)
3029 #if defined(__LIBCATAMOUNT__)
3031 Perl_my_pclose(pTHX_ PerlIO *ptr)
3036 #endif /* !DOSISH */
3038 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(__LIBCATAMOUNT__)
3040 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
3043 PERL_ARGS_ASSERT_WAIT4PID;
3044 #ifdef PERL_USES_PL_PIDSTATUS
3046 /* PERL_USES_PL_PIDSTATUS is only defined when neither
3047 waitpid() nor wait4() is available, or on OS/2, which
3048 doesn't appear to support waiting for a progress group
3049 member, so we can only treat a 0 pid as an unknown child.
3056 /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
3057 pid, rather than a string form. */
3058 SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
3059 if (svp && *svp != &PL_sv_undef) {
3060 *statusp = SvIVX(*svp);
3061 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
3069 hv_iterinit(PL_pidstatus);
3070 if ((entry = hv_iternext(PL_pidstatus))) {
3071 SV * const sv = hv_iterval(PL_pidstatus,entry);
3073 const char * const spid = hv_iterkey(entry,&len);
3075 assert (len == sizeof(Pid_t));
3076 memcpy((char *)&pid, spid, len);
3077 *statusp = SvIVX(sv);
3078 /* The hash iterator is currently on this entry, so simply
3079 calling hv_delete would trigger the lazy delete, which on
3080 aggregate does more work, because next call to hv_iterinit()
3081 would spot the flag, and have to call the delete routine,
3082 while in the meantime any new entries can't re-use that
3084 hv_iterinit(PL_pidstatus);
3085 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
3092 # ifdef HAS_WAITPID_RUNTIME
3093 if (!HAS_WAITPID_RUNTIME)
3096 result = PerlProc_waitpid(pid,statusp,flags);
3099 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
3100 result = wait4(pid,statusp,flags,NULL);
3103 #ifdef PERL_USES_PL_PIDSTATUS
3104 #if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
3109 Perl_croak(aTHX_ "Can't do waitpid with flags");
3111 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
3112 pidgone(result,*statusp);
3118 #if defined(HAS_WAITPID) || defined(HAS_WAIT4)
3121 if (result < 0 && errno == EINTR) {
3123 errno = EINTR; /* reset in case a signal handler changed $! */
3127 #endif /* !DOSISH || OS2 || WIN32 || NETWARE */
3129 #ifdef PERL_USES_PL_PIDSTATUS
3131 S_pidgone(pTHX_ Pid_t pid, int status)
3135 sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
3136 SvUPGRADE(sv,SVt_IV);
3137 SvIV_set(sv, status);
3142 #if defined(OS2) || defined(__amigaos4__)
3143 # if defined(__amigaos4__) && defined(pclose)
3148 int /* Cannot prototype with I32
3150 my_syspclose(PerlIO *ptr)
3153 Perl_my_pclose(pTHX_ PerlIO *ptr)
3156 /* Needs work for PerlIO ! */
3157 FILE * const f = PerlIO_findFILE(ptr);
3158 const I32 result = pclose(f);
3159 PerlIO_releaseFILE(ptr,f);
3167 Perl_my_pclose(pTHX_ PerlIO *ptr)
3169 /* Needs work for PerlIO ! */
3170 FILE * const f = PerlIO_findFILE(ptr);
3171 I32 result = djgpp_pclose(f);
3172 result = (result << 8) & 0xff00;
3173 PerlIO_releaseFILE(ptr,f);
3178 #define PERL_REPEATCPY_LINEAR 4
3180 Perl_repeatcpy(char *to, const char *from, I32 len, IV count)
3182 PERL_ARGS_ASSERT_REPEATCPY;
3187 croak_memory_wrap();
3190 memset(to, *from, count);
3193 IV items, linear, half;
3195 linear = count < PERL_REPEATCPY_LINEAR ? count : PERL_REPEATCPY_LINEAR;
3196 for (items = 0; items < linear; ++items) {
3197 const char *q = from;
3199 for (todo = len; todo > 0; todo--)
3204 while (items <= half) {
3205 IV size = items * len;
3206 memcpy(p, to, size);
3212 memcpy(p, to, (count - items) * len);
3218 Perl_same_dirent(pTHX_ const char *a, const char *b)
3220 char *fa = strrchr(a,'/');
3221 char *fb = strrchr(b,'/');
3224 SV * const tmpsv = sv_newmortal();
3226 PERL_ARGS_ASSERT_SAME_DIRENT;
3239 sv_setpvs(tmpsv, ".");
3241 sv_setpvn(tmpsv, a, fa - a);
3242 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
3245 sv_setpvs(tmpsv, ".");
3247 sv_setpvn(tmpsv, b, fb - b);
3248 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
3250 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3251 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3253 #endif /* !HAS_RENAME */
3256 Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3257 const char *const *const search_ext, I32 flags)
3259 const char *xfound = NULL;
3260 char *xfailed = NULL;
3261 char tmpbuf[MAXPATHLEN];
3266 #if defined(DOSISH) && !defined(OS2)
3267 # define SEARCH_EXTS ".bat", ".cmd", NULL
3268 # define MAX_EXT_LEN 4
3271 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3272 # define MAX_EXT_LEN 4
3275 # define SEARCH_EXTS ".pl", ".com", NULL
3276 # define MAX_EXT_LEN 4
3278 /* additional extensions to try in each dir if scriptname not found */
3280 static const char *const exts[] = { SEARCH_EXTS };
3281 const char *const *const ext = search_ext ? search_ext : exts;
3282 int extidx = 0, i = 0;
3283 const char *curext = NULL;
3285 PERL_UNUSED_ARG(search_ext);
3286 # define MAX_EXT_LEN 0
3289 PERL_ARGS_ASSERT_FIND_SCRIPT;
3292 * If dosearch is true and if scriptname does not contain path
3293 * delimiters, search the PATH for scriptname.
3295 * If SEARCH_EXTS is also defined, will look for each
3296 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3297 * while searching the PATH.
3299 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3300 * proceeds as follows:
3301 * If DOSISH or VMSISH:
3302 * + look for ./scriptname{,.foo,.bar}
3303 * + search the PATH for scriptname{,.foo,.bar}
3306 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3307 * this will not look in '.' if it's not in the PATH)
3312 # ifdef ALWAYS_DEFTYPES
3313 len = strlen(scriptname);
3314 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3315 int idx = 0, deftypes = 1;
3318 const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
3321 int idx = 0, deftypes = 1;
3324 const int hasdir = (strpbrk(scriptname,":[</") != NULL);
3326 /* The first time through, just add SEARCH_EXTS to whatever we
3327 * already have, so we can check for default file types. */
3329 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3336 if ((strlen(tmpbuf) + strlen(scriptname)
3337 + MAX_EXT_LEN) >= sizeof tmpbuf)
3338 continue; /* don't search dir with too-long name */
3339 my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
3343 if (strEQ(scriptname, "-"))
3345 if (dosearch) { /* Look in '.' first. */
3346 const char *cur = scriptname;
3348 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3350 if (strEQ(ext[i++],curext)) {
3351 extidx = -1; /* already has an ext */
3356 DEBUG_p(PerlIO_printf(Perl_debug_log,
3357 "Looking for %s\n",cur));
3360 if (PerlLIO_stat(cur,&statbuf) >= 0
3361 && !S_ISDIR(statbuf.st_mode)) {
3370 if (cur == scriptname) {
3371 len = strlen(scriptname);
3372 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3374 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3377 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3378 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
3383 if (dosearch && !strchr(scriptname, '/')
3385 && !strchr(scriptname, '\\')
3387 && (s = PerlEnv_getenv("PATH")))
3391 bufend = s + strlen(s);
3392 while (s < bufend) {
3396 && *s != ';'; len++, s++) {
3397 if (len < sizeof tmpbuf)
3400 if (len < sizeof tmpbuf)
3403 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
3409 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3410 continue; /* don't search dir with too-long name */
3413 && tmpbuf[len - 1] != '/'
3414 && tmpbuf[len - 1] != '\\'
3417 tmpbuf[len++] = '/';
3418 if (len == 2 && tmpbuf[0] == '.')
3420 (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
3424 len = strlen(tmpbuf);
3425 if (extidx > 0) /* reset after previous loop */
3429 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3430 retval = PerlLIO_stat(tmpbuf,&statbuf);
3431 if (S_ISDIR(statbuf.st_mode)) {
3435 } while ( retval < 0 /* not there */
3436 && extidx>=0 && ext[extidx] /* try an extension? */
3437 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
3442 if (S_ISREG(statbuf.st_mode)
3443 && cando(S_IRUSR,TRUE,&statbuf)
3444 #if !defined(DOSISH)
3445 && cando(S_IXUSR,TRUE,&statbuf)
3449 xfound = tmpbuf; /* bingo! */
3453 xfailed = savepv(tmpbuf);
3458 if (!xfound && !seen_dot && !xfailed &&
3459 (PerlLIO_stat(scriptname,&statbuf) < 0
3460 || S_ISDIR(statbuf.st_mode)))
3462 seen_dot = 1; /* Disable message. */
3467 if (flags & 1) { /* do or die? */
3468 /* diag_listed_as: Can't execute %s */
3469 Perl_croak(aTHX_ "Can't %s %s%s%s",
3470 (xfailed ? "execute" : "find"),
3471 (xfailed ? xfailed : scriptname),
3472 (xfailed ? "" : " on PATH"),
3473 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3478 scriptname = xfound;
3480 return (scriptname ? savepv(scriptname) : NULL);
3483 #ifndef PERL_GET_CONTEXT_DEFINED
3486 Perl_get_context(void)
3488 #if defined(USE_ITHREADS)
3490 # ifdef OLD_PTHREADS_API
3492 int error = pthread_getspecific(PL_thr_key, &t)
3494 Perl_croak_nocontext("panic: pthread_getspecific, error=%d", error);
3497 # ifdef I_MACH_CTHREADS
3498 return (void*)cthread_data(cthread_self());
3500 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3509 Perl_set_context(void *t)
3511 #if defined(USE_ITHREADS)
3514 PERL_ARGS_ASSERT_SET_CONTEXT;
3515 #if defined(USE_ITHREADS)
3516 # ifdef I_MACH_CTHREADS
3517 cthread_set_data(cthread_self(), t);
3520 const int error = pthread_setspecific(PL_thr_key, t);
3522 Perl_croak_nocontext("panic: pthread_setspecific, error=%d", error);
3530 #endif /* !PERL_GET_CONTEXT_DEFINED */
3532 #if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
3536 PERL_UNUSED_CONTEXT;
3542 Perl_get_op_names(pTHX)
3544 PERL_UNUSED_CONTEXT;
3545 return (char **)PL_op_name;
3549 Perl_get_op_descs(pTHX)
3551 PERL_UNUSED_CONTEXT;
3552 return (char **)PL_op_desc;
3556 Perl_get_no_modify(pTHX)
3558 PERL_UNUSED_CONTEXT;
3559 return PL_no_modify;
3563 Perl_get_opargs(pTHX)
3565 PERL_UNUSED_CONTEXT;
3566 return (U32 *)PL_opargs;
3570 Perl_get_ppaddr(pTHX)
3573 PERL_UNUSED_CONTEXT;
3574 return (PPADDR_t*)PL_ppaddr;
3577 #ifndef HAS_GETENV_LEN
3579 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3581 char * const env_trans = PerlEnv_getenv(env_elem);
3582 PERL_UNUSED_CONTEXT;
3583 PERL_ARGS_ASSERT_GETENV_LEN;
3585 *len = strlen(env_trans);
3592 Perl_get_vtbl(pTHX_ int vtbl_id)
3594 PERL_UNUSED_CONTEXT;
3596 return (vtbl_id < 0 || vtbl_id >= magic_vtable_max)
3597 ? NULL : (MGVTBL*)PL_magic_vtables + vtbl_id;
3601 Perl_my_fflush_all(pTHX)
3603 #if defined(USE_PERLIO) || defined(FFLUSH_NULL)
3604 return PerlIO_flush(NULL);
3606 # if defined(HAS__FWALK)
3607 extern int fflush(FILE *);
3608 /* undocumented, unprototyped, but very useful BSDism */
3609 extern void _fwalk(int (*)(FILE *));
3613 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3615 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3616 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3618 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3619 open_max = sysconf(_SC_OPEN_MAX);
3622 open_max = FOPEN_MAX;
3625 open_max = OPEN_MAX;
3636 for (i = 0; i < open_max; i++)
3637 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3638 STDIO_STREAM_ARRAY[i]._file < open_max &&
3639 STDIO_STREAM_ARRAY[i]._flag)
3640 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3644 SETERRNO(EBADF,RMS_IFI);
3651 Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have)
3653 if (ckWARN(WARN_IO)) {
3655 = gv && (isGV_with_GP(gv))
3658 const char * const direction = have == '>' ? "out" : "in";
3660 if (name && HEK_LEN(name))
3661 Perl_warner(aTHX_ packWARN(WARN_IO),
3662 "Filehandle %"HEKf" opened only for %sput",
3663 HEKfARG(name), direction);
3665 Perl_warner(aTHX_ packWARN(WARN_IO),
3666 "Filehandle opened only for %sput", direction);
3671 Perl_report_evil_fh(pTHX_ const GV *gv)
3673 const IO *io = gv ? GvIO(gv) : NULL;
3674 const PERL_BITFIELD16 op = PL_op->op_type;
3678 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3680 warn_type = WARN_CLOSED;
3684 warn_type = WARN_UNOPENED;
3687 if (ckWARN(warn_type)) {
3689 = gv && isGV_with_GP(gv) && GvENAMELEN(gv) ?
3690 sv_2mortal(newSVhek(GvENAME_HEK(gv))) : NULL;
3691 const char * const pars =
3692 (const char *)(OP_IS_FILETEST(op) ? "" : "()");
3693 const char * const func =
3695 (op == OP_READLINE || op == OP_RCATLINE
3696 ? "readline" : /* "<HANDLE>" not nice */
3697 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3699 const char * const type =
3701 (OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET)
3702 ? "socket" : "filehandle");
3703 const bool have_name = name && SvCUR(name);
3704 Perl_warner(aTHX_ packWARN(warn_type),
3705 "%s%s on %s %s%s%"SVf, func, pars, vile, type,
3706 have_name ? " " : "",
3707 SVfARG(have_name ? name : &PL_sv_no));
3708 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3710 aTHX_ packWARN(warn_type),
3711 "\t(Are you trying to call %s%s on dirhandle%s%"SVf"?)\n",
3712 func, pars, have_name ? " " : "",
3713 SVfARG(have_name ? name : &PL_sv_no)
3718 /* To workaround core dumps from the uninitialised tm_zone we get the
3719 * system to give us a reasonable struct to copy. This fix means that
3720 * strftime uses the tm_zone and tm_gmtoff values returned by
3721 * localtime(time()). That should give the desired result most of the
3722 * time. But probably not always!
3724 * This does not address tzname aspects of NETaa14816.
3729 # ifndef STRUCT_TM_HASZONE
3730 # define STRUCT_TM_HASZONE
3734 #ifdef STRUCT_TM_HASZONE /* Backward compat */
3735 # ifndef HAS_TM_TM_ZONE
3736 # define HAS_TM_TM_ZONE
3741 Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
3743 #ifdef HAS_TM_TM_ZONE
3745 const struct tm* my_tm;
3746 PERL_UNUSED_CONTEXT;
3747 PERL_ARGS_ASSERT_INIT_TM;
3749 my_tm = localtime(&now);
3751 Copy(my_tm, ptm, 1, struct tm);
3753 PERL_UNUSED_CONTEXT;
3754 PERL_ARGS_ASSERT_INIT_TM;
3755 PERL_UNUSED_ARG(ptm);
3760 * mini_mktime - normalise struct tm values without the localtime()
3761 * semantics (and overhead) of mktime().
3764 Perl_mini_mktime(struct tm *ptm)
3768 int month, mday, year, jday;
3769 int odd_cent, odd_year;
3771 PERL_ARGS_ASSERT_MINI_MKTIME;
3773 #define DAYS_PER_YEAR 365
3774 #define DAYS_PER_QYEAR (4*DAYS_PER_YEAR+1)
3775 #define DAYS_PER_CENT (25*DAYS_PER_QYEAR-1)
3776 #define DAYS_PER_QCENT (4*DAYS_PER_CENT+1)
3777 #define SECS_PER_HOUR (60*60)
3778 #define SECS_PER_DAY (24*SECS_PER_HOUR)
3779 /* parentheses deliberately absent on these two, otherwise they don't work */
3780 #define MONTH_TO_DAYS 153/5
3781 #define DAYS_TO_MONTH 5/153
3782 /* offset to bias by March (month 4) 1st between month/mday & year finding */
3783 #define YEAR_ADJUST (4*MONTH_TO_DAYS+1)
3784 /* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
3785 #define WEEKDAY_BIAS 6 /* (1+6)%7 makes Sunday 0 again */
3788 * Year/day algorithm notes:
3790 * With a suitable offset for numeric value of the month, one can find
3791 * an offset into the year by considering months to have 30.6 (153/5) days,
3792 * using integer arithmetic (i.e., with truncation). To avoid too much
3793 * messing about with leap days, we consider January and February to be
3794 * the 13th and 14th month of the previous year. After that transformation,
3795 * we need the month index we use to be high by 1 from 'normal human' usage,
3796 * so the month index values we use run from 4 through 15.
3798 * Given that, and the rules for the Gregorian calendar (leap years are those
3799 * divisible by 4 unless also divisible by 100, when they must be divisible
3800 * by 400 instead), we can simply calculate the number of days since some
3801 * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
3802 * the days we derive from our month index, and adding in the day of the
3803 * month. The value used here is not adjusted for the actual origin which
3804 * it normally would use (1 January A.D. 1), since we're not exposing it.
3805 * We're only building the value so we can turn around and get the
3806 * normalised values for the year, month, day-of-month, and day-of-year.
3808 * For going backward, we need to bias the value we're using so that we find
3809 * the right year value. (Basically, we don't want the contribution of
3810 * March 1st to the number to apply while deriving the year). Having done
3811 * that, we 'count up' the contribution to the year number by accounting for
3812 * full quadracenturies (400-year periods) with their extra leap days, plus
3813 * the contribution from full centuries (to avoid counting in the lost leap
3814 * days), plus the contribution from full quad-years (to count in the normal
3815 * leap days), plus the leftover contribution from any non-leap years.
3816 * At this point, if we were working with an actual leap day, we'll have 0
3817 * days left over. This is also true for March 1st, however. So, we have
3818 * to special-case that result, and (earlier) keep track of the 'odd'
3819 * century and year contributions. If we got 4 extra centuries in a qcent,
3820 * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
3821 * Otherwise, we add back in the earlier bias we removed (the 123 from
3822 * figuring in March 1st), find the month index (integer division by 30.6),
3823 * and the remainder is the day-of-month. We then have to convert back to
3824 * 'real' months (including fixing January and February from being 14/15 in
3825 * the previous year to being in the proper year). After that, to get
3826 * tm_yday, we work with the normalised year and get a new yearday value for
3827 * January 1st, which we subtract from the yearday value we had earlier,
3828 * representing the date we've re-built. This is done from January 1
3829 * because tm_yday is 0-origin.
3831 * Since POSIX time routines are only guaranteed to work for times since the
3832 * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
3833 * applies Gregorian calendar rules even to dates before the 16th century
3834 * doesn't bother me. Besides, you'd need cultural context for a given
3835 * date to know whether it was Julian or Gregorian calendar, and that's
3836 * outside the scope for this routine. Since we convert back based on the
3837 * same rules we used to build the yearday, you'll only get strange results
3838 * for input which needed normalising, or for the 'odd' century years which
3839 * were leap years in the Julian calendar but not in the Gregorian one.
3840 * I can live with that.
3842 * This algorithm also fails to handle years before A.D. 1 gracefully, but
3843 * that's still outside the scope for POSIX time manipulation, so I don't
3847 year = 1900 + ptm->tm_year;
3848 month = ptm->tm_mon;
3849 mday = ptm->tm_mday;
3855 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
3856 yearday += month*MONTH_TO_DAYS + mday + jday;
3858 * Note that we don't know when leap-seconds were or will be,
3859 * so we have to trust the user if we get something which looks
3860 * like a sensible leap-second. Wild values for seconds will
3861 * be rationalised, however.
3863 if ((unsigned) ptm->tm_sec <= 60) {
3870 secs += 60 * ptm->tm_min;
3871 secs += SECS_PER_HOUR * ptm->tm_hour;
3873 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3874 /* got negative remainder, but need positive time */
3875 /* back off an extra day to compensate */
3876 yearday += (secs/SECS_PER_DAY)-1;
3877 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
3880 yearday += (secs/SECS_PER_DAY);
3881 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
3884 else if (secs >= SECS_PER_DAY) {
3885 yearday += (secs/SECS_PER_DAY);
3886 secs %= SECS_PER_DAY;
3888 ptm->tm_hour = secs/SECS_PER_HOUR;
3889 secs %= SECS_PER_HOUR;
3890 ptm->tm_min = secs/60;
3892 ptm->tm_sec += secs;
3893 /* done with time of day effects */
3895 * The algorithm for yearday has (so far) left it high by 428.
3896 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
3897 * bias it by 123 while trying to figure out what year it
3898 * really represents. Even with this tweak, the reverse
3899 * translation fails for years before A.D. 0001.
3900 * It would still fail for Feb 29, but we catch that one below.
3902 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
3903 yearday -= YEAR_ADJUST;
3904 year = (yearday / DAYS_PER_QCENT) * 400;
3905 yearday %= DAYS_PER_QCENT;
3906 odd_cent = yearday / DAYS_PER_CENT;
3907 year += odd_cent * 100;
3908 yearday %= DAYS_PER_CENT;
3909 year += (yearday / DAYS_PER_QYEAR) * 4;
3910 yearday %= DAYS_PER_QYEAR;
3911 odd_year = yearday / DAYS_PER_YEAR;
3913 yearday %= DAYS_PER_YEAR;
3914 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
3919 yearday += YEAR_ADJUST; /* recover March 1st crock */
3920 month = yearday*DAYS_TO_MONTH;
3921 yearday -= month*MONTH_TO_DAYS;
3922 /* recover other leap-year adjustment */
3931 ptm->tm_year = year - 1900;
3933 ptm->tm_mday = yearday;
3934 ptm->tm_mon = month;
3938 ptm->tm_mon = month - 1;
3940 /* re-build yearday based on Jan 1 to get tm_yday */
3942 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
3943 yearday += 14*MONTH_TO_DAYS + 1;
3944 ptm->tm_yday = jday - yearday;
3945 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
3949 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)
3953 /* Note that yday and wday effectively are ignored by this function, as mini_mktime() overwrites them */
3960 PERL_ARGS_ASSERT_MY_STRFTIME;
3962 init_tm(&mytm); /* XXX workaround - see init_tm() above */
3965 mytm.tm_hour = hour;
3966 mytm.tm_mday = mday;
3968 mytm.tm_year = year;
3969 mytm.tm_wday = wday;
3970 mytm.tm_yday = yday;
3971 mytm.tm_isdst = isdst;
3973 /* use libc to get the values for tm_gmtoff and tm_zone [perl #18238] */
3974 #if defined(HAS_MKTIME) && (defined(HAS_TM_TM_GMTOFF) || defined(HAS_TM_TM_ZONE))
3979 #ifdef HAS_TM_TM_GMTOFF
3980 mytm.tm_gmtoff = mytm2.tm_gmtoff;
3982 #ifdef HAS_TM_TM_ZONE
3983 mytm.tm_zone = mytm2.tm_zone;
3988 Newx(buf, buflen, char);
3990 GCC_DIAG_IGNORE(-Wformat-nonliteral); /* fmt checked by caller */
3991 len = strftime(buf, buflen, fmt, &mytm);
3995 ** The following is needed to handle to the situation where
3996 ** tmpbuf overflows. Basically we want to allocate a buffer
3997 ** and try repeatedly. The reason why it is so complicated
3998 ** is that getting a return value of 0 from strftime can indicate
3999 ** one of the following:
4000 ** 1. buffer overflowed,
4001 ** 2. illegal conversion specifier, or
4002 ** 3. the format string specifies nothing to be returned(not
4003 ** an error). This could be because format is an empty string
4004 ** or it specifies %p that yields an empty string in some locale.
4005 ** If there is a better way to make it portable, go ahead by
4008 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
4011 /* Possibly buf overflowed - try again with a bigger buf */
4012 const int fmtlen = strlen(fmt);
4013 int bufsize = fmtlen + buflen;
4015 Renew(buf, bufsize, char);
4018 GCC_DIAG_IGNORE(-Wformat-nonliteral); /* fmt checked by caller */
4019 buflen = strftime(buf, bufsize, fmt, &mytm);
4022 if (buflen > 0 && buflen < bufsize)
4024 /* heuristic to prevent out-of-memory errors */
4025 if (bufsize > 100*fmtlen) {
4031 Renew(buf, bufsize, char);
4036 Perl_croak(aTHX_ "panic: no strftime");
4042 #define SV_CWD_RETURN_UNDEF \
4043 sv_setsv(sv, &PL_sv_undef); \
4046 #define SV_CWD_ISDOT(dp) \
4047 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
4048 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
4051 =head1 Miscellaneous Functions
4053 =for apidoc getcwd_sv
4055 Fill C<sv> with current working directory
4060 /* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
4061 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
4062 * getcwd(3) if available
4063 * Comments from the original:
4064 * This is a faster version of getcwd. It's also more dangerous
4065 * because you might chdir out of a directory that you can't chdir
4069 Perl_getcwd_sv(pTHX_ SV *sv)
4074 PERL_ARGS_ASSERT_GETCWD_SV;
4078 char buf[MAXPATHLEN];
4080 /* Some getcwd()s automatically allocate a buffer of the given
4081 * size from the heap if they are given a NULL buffer pointer.
4082 * The problem is that this behaviour is not portable. */
4083 if (getcwd(buf, sizeof(buf) - 1)) {
4088 sv_setsv(sv, &PL_sv_undef);
4096 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
4100 SvUPGRADE(sv, SVt_PV);
4102 if (PerlLIO_lstat(".", &statbuf) < 0) {
4103 SV_CWD_RETURN_UNDEF;
4106 orig_cdev = statbuf.st_dev;
4107 orig_cino = statbuf.st_ino;
4117 if (PerlDir_chdir("..") < 0) {
4118 SV_CWD_RETURN_UNDEF;
4120 if (PerlLIO_stat(".", &statbuf) < 0) {
4121 SV_CWD_RETURN_UNDEF;
4124 cdev = statbuf.st_dev;
4125 cino = statbuf.st_ino;
4127 if (odev == cdev && oino == cino) {
4130 if (!(dir = PerlDir_open("."))) {
4131 SV_CWD_RETURN_UNDEF;
4134 while ((dp = PerlDir_read(dir)) != NULL) {
4136 namelen = dp->d_namlen;
4138 namelen = strlen(dp->d_name);
4141 if (SV_CWD_ISDOT(dp)) {
4145 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
4146 SV_CWD_RETURN_UNDEF;
4149 tdev = statbuf.st_dev;
4150 tino = statbuf.st_ino;
4151 if (tino == oino && tdev == odev) {
4157 SV_CWD_RETURN_UNDEF;
4160 if (pathlen + namelen + 1 >= MAXPATHLEN) {
4161 SV_CWD_RETURN_UNDEF;
4164 SvGROW(sv, pathlen + namelen + 1);
4168 Move(SvPVX_const(sv), SvPVX(sv) + namelen + 1, pathlen, char);
4171 /* prepend current directory to the front */
4173 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
4174 pathlen += (namelen + 1);
4176 #ifdef VOID_CLOSEDIR
4179 if (PerlDir_close(dir) < 0) {
4180 SV_CWD_RETURN_UNDEF;
4186 SvCUR_set(sv, pathlen);
4190 if (PerlDir_chdir(SvPVX_const(sv)) < 0) {
4191 SV_CWD_RETURN_UNDEF;
4194 if (PerlLIO_stat(".", &statbuf) < 0) {
4195 SV_CWD_RETURN_UNDEF;
4198 cdev = statbuf.st_dev;
4199 cino = statbuf.st_ino;
4201 if (cdev != orig_cdev || cino != orig_cino) {
4202 Perl_croak(aTHX_ "Unstable directory path, "
4203 "current directory changed unexpectedly");
4216 #if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET) && defined(SOCK_DGRAM) && defined(HAS_SELECT)
4217 # define EMULATE_SOCKETPAIR_UDP
4220 #ifdef EMULATE_SOCKETPAIR_UDP
4222 S_socketpair_udp (int fd[2]) {
4224 /* Fake a datagram socketpair using UDP to localhost. */
4225 int sockets[2] = {-1, -1};
4226 struct sockaddr_in addresses[2];
4228 Sock_size_t size = sizeof(struct sockaddr_in);
4229 unsigned short port;
4232 memset(&addresses, 0, sizeof(addresses));
4235 sockets[i] = PerlSock_socket(AF_INET, SOCK_DGRAM, PF_INET);
4236 if (sockets[i] == -1)
4237 goto tidy_up_and_fail;
4239 addresses[i].sin_family = AF_INET;
4240 addresses[i].sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4241 addresses[i].sin_port = 0; /* kernel choses port. */
4242 if (PerlSock_bind(sockets[i], (struct sockaddr *) &addresses[i],
4243 sizeof(struct sockaddr_in)) == -1)
4244 goto tidy_up_and_fail;
4247 /* Now have 2 UDP sockets. Find out which port each is connected to, and
4248 for each connect the other socket to it. */
4251 if (PerlSock_getsockname(sockets[i], (struct sockaddr *) &addresses[i],
4253 goto tidy_up_and_fail;
4254 if (size != sizeof(struct sockaddr_in))
4255 goto abort_tidy_up_and_fail;
4256 /* !1 is 0, !0 is 1 */
4257 if (PerlSock_connect(sockets[!i], (struct sockaddr *) &addresses[i],
4258 sizeof(struct sockaddr_in)) == -1)
4259 goto tidy_up_and_fail;
4262 /* Now we have 2 sockets connected to each other. I don't trust some other
4263 process not to have already sent a packet to us (by random) so send
4264 a packet from each to the other. */
4267 /* I'm going to send my own port number. As a short.
4268 (Who knows if someone somewhere has sin_port as a bitfield and needs
4269 this routine. (I'm assuming crays have socketpair)) */
4270 port = addresses[i].sin_port;
4271 got = PerlLIO_write(sockets[i], &port, sizeof(port));
4272 if (got != sizeof(port)) {
4274 goto tidy_up_and_fail;
4275 goto abort_tidy_up_and_fail;
4279 /* Packets sent. I don't trust them to have arrived though.
4280 (As I understand it Solaris TCP stack is multithreaded. Non-blocking
4281 connect to localhost will use a second kernel thread. In 2.6 the
4282 first thread running the connect() returns before the second completes,
4283 so EINPROGRESS> In 2.7 the improved stack is faster and connect()
4284 returns 0. Poor programs have tripped up. One poor program's authors'
4285 had a 50-1 reverse stock split. Not sure how connected these were.)
4286 So I don't trust someone not to have an unpredictable UDP stack.
4290 struct timeval waitfor = {0, 100000}; /* You have 0.1 seconds */
4291 int max = sockets[1] > sockets[0] ? sockets[1] : sockets[0];
4295 FD_SET((unsigned int)sockets[0], &rset);
4296 FD_SET((unsigned int)sockets[1], &rset);
4298 got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
4299 if (got != 2 || !FD_ISSET(sockets[0], &rset)
4300 || !FD_ISSET(sockets[1], &rset)) {
4301 /* I hope this is portable and appropriate. */
4303 goto tidy_up_and_fail;
4304 goto abort_tidy_up_and_fail;
4308 /* And the paranoia department even now doesn't trust it to have arrive
4309 (hence MSG_DONTWAIT). Or that what arrives was sent by us. */
4311 struct sockaddr_in readfrom;
4312 unsigned short buffer[2];
4317 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4318 sizeof(buffer), MSG_DONTWAIT,
4319 (struct sockaddr *) &readfrom, &size);
4321 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4323 (struct sockaddr *) &readfrom, &size);
4327 goto tidy_up_and_fail;
4328 if (got != sizeof(port)
4329 || size != sizeof(struct sockaddr_in)
4330 /* Check other socket sent us its port. */
4331 || buffer[0] != (unsigned short) addresses[!i].sin_port
4332 /* Check kernel says we got the datagram from that socket */
4333 || readfrom.sin_family != addresses[!i].sin_family
4334 || readfrom.sin_addr.s_addr != addresses[!i].sin_addr.s_addr
4335 || readfrom.sin_port != addresses[!i].sin_port)
4336 goto abort_tidy_up_and_fail;
4339 /* My caller (my_socketpair) has validated that this is non-NULL */
4342 /* I hereby declare this connection open. May God bless all who cross
4346 abort_tidy_up_and_fail:
4347 errno = ECONNABORTED;
4351 if (sockets[0] != -1)
4352 PerlLIO_close(sockets[0]);
4353 if (sockets[1] != -1)
4354 PerlLIO_close(sockets[1]);
4359 #endif /* EMULATE_SOCKETPAIR_UDP */
4361 #if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET)
4363 Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
4364 /* Stevens says that family must be AF_LOCAL, protocol 0.
4365 I'm going to enforce that, then ignore it, and use TCP (or UDP). */
4370 struct sockaddr_in listen_addr;
4371 struct sockaddr_in connect_addr;
4376 || family != AF_UNIX
4379 errno = EAFNOSUPPORT;
4387 #ifdef EMULATE_SOCKETPAIR_UDP
4388 if (type == SOCK_DGRAM)
4389 return S_socketpair_udp(fd);
4392 aTHXa(PERL_GET_THX);
4393 listener = PerlSock_socket(AF_INET, type, 0);
4396 memset(&listen_addr, 0, sizeof(listen_addr));
4397 listen_addr.sin_family = AF_INET;
4398 listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4399 listen_addr.sin_port = 0; /* kernel choses port. */
4400 if (PerlSock_bind(listener, (struct sockaddr *) &listen_addr,
4401 sizeof(listen_addr)) == -1)
4402 goto tidy_up_and_fail;
4403 if (PerlSock_listen(listener, 1) == -1)
4404 goto tidy_up_and_fail;
4406 connector = PerlSock_socket(AF_INET, type, 0);
4407 if (connector == -1)
4408 goto tidy_up_and_fail;
4409 /* We want to find out the port number to connect to. */
4410 size = sizeof(connect_addr);
4411 if (PerlSock_getsockname(listener, (struct sockaddr *) &connect_addr,
4413 goto tidy_up_and_fail;
4414 if (size != sizeof(connect_addr))
4415 goto abort_tidy_up_and_fail;
4416 if (PerlSock_connect(connector, (struct sockaddr *) &connect_addr,
4417 sizeof(connect_addr)) == -1)
4418 goto tidy_up_and_fail;
4420 size = sizeof(listen_addr);
4421 acceptor = PerlSock_accept(listener, (struct sockaddr *) &listen_addr,
4424 goto tidy_up_and_fail;
4425 if (size != sizeof(listen_addr))
4426 goto abort_tidy_up_and_fail;
4427 PerlLIO_close(listener);
4428 /* Now check we are talking to ourself by matching port and host on the
4430 if (PerlSock_getsockname(connector, (struct sockaddr *) &connect_addr,
4432 goto tidy_up_and_fail;
4433 if (size != sizeof(connect_addr)
4434 || listen_addr.sin_family != connect_addr.sin_family
4435 || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr
4436 || listen_addr.sin_port != connect_addr.sin_port) {
4437 goto abort_tidy_up_and_fail;
4443 abort_tidy_up_and_fail:
4445 errno = ECONNABORTED; /* This would be the standard thing to do. */
4447 # ifdef ECONNREFUSED
4448 errno = ECONNREFUSED; /* E.g. Symbian does not have ECONNABORTED. */
4450 errno = ETIMEDOUT; /* Desperation time. */
4457 PerlLIO_close(listener);
4458 if (connector != -1)
4459 PerlLIO_close(connector);
4461 PerlLIO_close(acceptor);
4467 /* In any case have a stub so that there's code corresponding
4468 * to the my_socketpair in embed.fnc. */
4470 Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
4471 #ifdef HAS_SOCKETPAIR
4472 return socketpair(family, type, protocol, fd);
4481 =for apidoc sv_nosharing
4483 Dummy routine which "shares" an SV when there is no sharing module present.
4484 Or "locks" it. Or "unlocks" it. In other
4485 words, ignores its single SV argument.
4486 Exists to avoid test for a C<NULL> function pointer and because it could
4487 potentially warn under some level of strict-ness.
4493 Perl_sv_nosharing(pTHX_ SV *sv)
4495 PERL_UNUSED_CONTEXT;
4496 PERL_UNUSED_ARG(sv);
4501 =for apidoc sv_destroyable
4503 Dummy routine which reports that object can be destroyed when there is no
4504 sharing module present. It ignores its single SV argument, and returns
4505 'true'. Exists to avoid test for a C<NULL> function pointer and because it
4506 could potentially warn under some level of strict-ness.
4512 Perl_sv_destroyable(pTHX_ SV *sv)
4514 PERL_UNUSED_CONTEXT;
4515 PERL_UNUSED_ARG(sv);
4520 Perl_parse_unicode_opts(pTHX_ const char **popt)
4522 const char *p = *popt;
4525 PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS;
4531 if (grok_atoUV(p, &uv, &endptr) && uv <= U32_MAX) {
4534 if (p && *p && *p != '\n' && *p != '\r') {
4536 goto the_end_of_the_opts_parser;
4538 Perl_croak(aTHX_ "Unknown Unicode option letter '%c'", *p);
4542 Perl_croak(aTHX_ "Invalid number '%s' for -C option.\n", p);
4548 case PERL_UNICODE_STDIN:
4549 opt |= PERL_UNICODE_STDIN_FLAG; break;
4550 case PERL_UNICODE_STDOUT:
4551 opt |= PERL_UNICODE_STDOUT_FLAG; break;
4552 case PERL_UNICODE_STDERR:
4553 opt |= PERL_UNICODE_STDERR_FLAG; break;
4554 case PERL_UNICODE_STD:
4555 opt |= PERL_UNICODE_STD_FLAG; break;
4556 case PERL_UNICODE_IN:
4557 opt |= PERL_UNICODE_IN_FLAG; break;
4558 case PERL_UNICODE_OUT:
4559 opt |= PERL_UNICODE_OUT_FLAG; break;
4560 case PERL_UNICODE_INOUT:
4561 opt |= PERL_UNICODE_INOUT_FLAG; break;
4562 case PERL_UNICODE_LOCALE:
4563 opt |= PERL_UNICODE_LOCALE_FLAG; break;
4564 case PERL_UNICODE_ARGV:
4565 opt |= PERL_UNICODE_ARGV_FLAG; break;
4566 case PERL_UNICODE_UTF8CACHEASSERT:
4567 opt |= PERL_UNICODE_UTF8CACHEASSERT_FLAG; break;
4569 if (*p != '\n' && *p != '\r') {
4570 if(isSPACE(*p)) goto the_end_of_the_opts_parser;
4573 "Unknown Unicode option letter '%c'", *p);
4580 opt = PERL_UNICODE_DEFAULT_FLAGS;
4582 the_end_of_the_opts_parser:
4584 if (opt & ~PERL_UNICODE_ALL_FLAGS)
4585 Perl_croak(aTHX_ "Unknown Unicode option value %"UVuf,
4586 (UV) (opt & ~PERL_UNICODE_ALL_FLAGS));
4594 # include <starlet.h>
4601 * This is really just a quick hack which grabs various garbage
4602 * values. It really should be a real hash algorithm which
4603 * spreads the effect of every input bit onto every output bit,
4604 * if someone who knows about such things would bother to write it.
4605 * Might be a good idea to add that function to CORE as well.
4606 * No numbers below come from careful analysis or anything here,
4607 * except they are primes and SEED_C1 > 1E6 to get a full-width
4608 * value from (tv_sec * SEED_C1 + tv_usec). The multipliers should
4609 * probably be bigger too.
4612 # define SEED_C1 1000003
4613 #define SEED_C4 73819
4615 # define SEED_C1 25747
4616 #define SEED_C4 20639
4620 #define SEED_C5 26107
4622 #ifndef PERL_NO_DEV_RANDOM
4626 #ifdef HAS_GETTIMEOFDAY
4627 struct timeval when;
4632 /* This test is an escape hatch, this symbol isn't set by Configure. */
4633 #ifndef PERL_NO_DEV_RANDOM
4634 #ifndef PERL_RANDOM_DEVICE
4635 /* /dev/random isn't used by default because reads from it will block
4636 * if there isn't enough entropy available. You can compile with
4637 * PERL_RANDOM_DEVICE to it if you'd prefer Perl to block until there
4638 * is enough real entropy to fill the seed. */
4639 # ifdef __amigaos4__
4640 # define PERL_RANDOM_DEVICE "RANDOM:SIZE=4"
4642 # define PERL_RANDOM_DEVICE "/dev/urandom"
4645 fd = PerlLIO_open(PERL_RANDOM_DEVICE, 0);
4647 if (PerlLIO_read(fd, (void*)&u, sizeof u) != sizeof u)
4655 #ifdef HAS_GETTIMEOFDAY
4656 PerlProc_gettimeofday(&when,NULL);
4657 u = (U32)SEED_C1 * when.tv_sec + (U32)SEED_C2 * when.tv_usec;
4660 u = (U32)SEED_C1 * when;
4662 u += SEED_C3 * (U32)PerlProc_getpid();
4663 u += SEED_C4 * (U32)PTR2UV(PL_stack_sp);
4664 #ifndef PLAN9 /* XXX Plan9 assembler chokes on this; fix needed */
4665 u += SEED_C5 * (U32)PTR2UV(&when);
4671 Perl_get_hash_seed(pTHX_ unsigned char * const seed_buffer)
4676 PERL_ARGS_ASSERT_GET_HASH_SEED;
4678 env_pv= PerlEnv_getenv("PERL_HASH_SEED");
4681 #ifndef USE_HASH_SEED_EXPLICIT
4683 /* ignore leading spaces */
4684 while (isSPACE(*env_pv))
4686 #ifdef USE_PERL_PERTURB_KEYS
4687 /* if they set it to "0" we disable key traversal randomization completely */
4688 if (strEQ(env_pv,"0")) {
4689 PL_hash_rand_bits_enabled= 0;
4691 /* otherwise switch to deterministic mode */
4692 PL_hash_rand_bits_enabled= 2;
4695 /* ignore a leading 0x... if it is there */
4696 if (env_pv[0] == '0' && env_pv[1] == 'x')
4699 for( i = 0; isXDIGIT(*env_pv) && i < PERL_HASH_SEED_BYTES; i++ ) {
4700 seed_buffer[i] = READ_XDIGIT(env_pv) << 4;
4701 if ( isXDIGIT(*env_pv)) {
4702 seed_buffer[i] |= READ_XDIGIT(env_pv);
4705 while (isSPACE(*env_pv))
4708 if (*env_pv && !isXDIGIT(*env_pv)) {
4709 Perl_warn(aTHX_ "perl: warning: Non hex character in '$ENV{PERL_HASH_SEED}', seed only partially set\n");
4711 /* should we check for unparsed crap? */
4712 /* should we warn about unused hex? */
4713 /* should we warn about insufficient hex? */
4718 (void)seedDrand01((Rand_seed_t)seed());
4720 for( i = 0; i < PERL_HASH_SEED_BYTES; i++ ) {
4721 seed_buffer[i] = (unsigned char)(Drand01() * (U8_MAX+1));
4724 #ifdef USE_PERL_PERTURB_KEYS
4725 { /* initialize PL_hash_rand_bits from the hash seed.
4726 * This value is highly volatile, it is updated every
4727 * hash insert, and is used as part of hash bucket chain
4728 * randomization and hash iterator randomization. */
4729 PL_hash_rand_bits= 0xbe49d17f; /* I just picked a number */
4730 for( i = 0; i < sizeof(UV) ; i++ ) {
4731 PL_hash_rand_bits += seed_buffer[i % PERL_HASH_SEED_BYTES];
4732 PL_hash_rand_bits = ROTL_UV(PL_hash_rand_bits,8);
4735 env_pv= PerlEnv_getenv("PERL_PERTURB_KEYS");
4737 if (strEQ(env_pv,"0") || strEQ(env_pv,"NO")) {
4738 PL_hash_rand_bits_enabled= 0;
4739 } else if (strEQ(env_pv,"1") || strEQ(env_pv,"RANDOM")) {
4740 PL_hash_rand_bits_enabled= 1;
4741 } else if (strEQ(env_pv,"2") || strEQ(env_pv,"DETERMINISTIC")) {
4742 PL_hash_rand_bits_enabled= 2;
4744 Perl_warn(aTHX_ "perl: warning: strange setting in '$ENV{PERL_PERTURB_KEYS}': '%s'\n", env_pv);
4750 #ifdef PERL_GLOBAL_STRUCT
4752 #define PERL_GLOBAL_STRUCT_INIT
4753 #include "opcode.h" /* the ppaddr and check */
4756 Perl_init_global_struct(pTHX)
4758 struct perl_vars *plvarsp = NULL;
4759 # ifdef PERL_GLOBAL_STRUCT
4760 const IV nppaddr = C_ARRAY_LENGTH(Gppaddr);
4761 const IV ncheck = C_ARRAY_LENGTH(Gcheck);
4762 PERL_UNUSED_CONTEXT;
4763 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
4764 /* PerlMem_malloc() because can't use even safesysmalloc() this early. */
4765 plvarsp = (struct perl_vars*)PerlMem_malloc(sizeof(struct perl_vars));
4769 plvarsp = PL_VarsPtr;
4770 # endif /* PERL_GLOBAL_STRUCT_PRIVATE */
4775 # define PERLVAR(prefix,var,type) /**/
4776 # define PERLVARA(prefix,var,n,type) /**/
4777 # define PERLVARI(prefix,var,type,init) plvarsp->prefix##var = init;
4778 # define PERLVARIC(prefix,var,type,init) plvarsp->prefix##var = init;
4779 # include "perlvars.h"
4784 # ifdef PERL_GLOBAL_STRUCT
4787 PerlMem_malloc(nppaddr * sizeof(Perl_ppaddr_t));
4788 if (!plvarsp->Gppaddr)
4792 PerlMem_malloc(ncheck * sizeof(Perl_check_t));
4793 if (!plvarsp->Gcheck)
4795 Copy(Gppaddr, plvarsp->Gppaddr, nppaddr, Perl_ppaddr_t);
4796 Copy(Gcheck, plvarsp->Gcheck, ncheck, Perl_check_t);
4798 # ifdef PERL_SET_VARS
4799 PERL_SET_VARS(plvarsp);
4801 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
4802 plvarsp->Gsv_placeholder.sv_flags = 0;
4803 memset(plvarsp->Ghash_seed, 0, sizeof(plvarsp->Ghash_seed));
4805 # undef PERL_GLOBAL_STRUCT_INIT
4810 #endif /* PERL_GLOBAL_STRUCT */
4812 #ifdef PERL_GLOBAL_STRUCT
4815 Perl_free_global_struct(pTHX_ struct perl_vars *plvarsp)
4817 int veto = plvarsp->Gveto_cleanup;
4819 PERL_ARGS_ASSERT_FREE_GLOBAL_STRUCT;
4820 PERL_UNUSED_CONTEXT;
4821 # ifdef PERL_GLOBAL_STRUCT
4822 # ifdef PERL_UNSET_VARS
4823 PERL_UNSET_VARS(plvarsp);
4827 free(plvarsp->Gppaddr);
4828 free(plvarsp->Gcheck);
4829 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
4835 #endif /* PERL_GLOBAL_STRUCT */
4839 /* -DPERL_MEM_LOG: the Perl_mem_log_..() is compiled, including
4840 * the default implementation, unless -DPERL_MEM_LOG_NOIMPL is also
4841 * given, and you supply your own implementation.
4843 * The default implementation reads a single env var, PERL_MEM_LOG,
4844 * expecting one or more of the following:
4846 * \d+ - fd fd to write to : must be 1st (grok_atoUV)
4847 * 'm' - memlog was PERL_MEM_LOG=1
4848 * 's' - svlog was PERL_SV_LOG=1
4849 * 't' - timestamp was PERL_MEM_LOG_TIMESTAMP=1
4851 * This makes the logger controllable enough that it can reasonably be
4852 * added to the system perl.
4855 /* -DPERL_MEM_LOG_SPRINTF_BUF_SIZE=X: size of a (stack-allocated) buffer
4856 * the Perl_mem_log_...() will use (either via sprintf or snprintf).
4858 #define PERL_MEM_LOG_SPRINTF_BUF_SIZE 128
4860 /* -DPERL_MEM_LOG_FD=N: the file descriptor the Perl_mem_log_...()
4861 * writes to. In the default logger, this is settable at runtime.
4863 #ifndef PERL_MEM_LOG_FD
4864 # define PERL_MEM_LOG_FD 2 /* If STDERR is too boring for you. */
4867 #ifndef PERL_MEM_LOG_NOIMPL
4869 # ifdef DEBUG_LEAKING_SCALARS
4870 # define SV_LOG_SERIAL_FMT " [%lu]"
4871 # define _SV_LOG_SERIAL_ARG(sv) , (unsigned long) (sv)->sv_debug_serial
4873 # define SV_LOG_SERIAL_FMT
4874 # define _SV_LOG_SERIAL_ARG(sv)
4878 S_mem_log_common(enum mem_log_type mlt, const UV n,
4879 const UV typesize, const char *type_name, const SV *sv,
4880 Malloc_t oldalloc, Malloc_t newalloc,
4881 const char *filename, const int linenumber,
4882 const char *funcname)
4886 PERL_ARGS_ASSERT_MEM_LOG_COMMON;
4888 pmlenv = PerlEnv_getenv("PERL_MEM_LOG");
4891 if (mlt < MLT_NEW_SV ? strchr(pmlenv,'m') : strchr(pmlenv,'s'))
4893 /* We can't use SVs or PerlIO for obvious reasons,
4894 * so we'll use stdio and low-level IO instead. */
4895 char buf[PERL_MEM_LOG_SPRINTF_BUF_SIZE];
4897 # ifdef HAS_GETTIMEOFDAY
4898 # define MEM_LOG_TIME_FMT "%10d.%06d: "
4899 # define MEM_LOG_TIME_ARG (int)tv.tv_sec, (int)tv.tv_usec
4901 gettimeofday(&tv, 0);
4903 # define MEM_LOG_TIME_FMT "%10d: "
4904 # define MEM_LOG_TIME_ARG (int)when
4908 /* If there are other OS specific ways of hires time than
4909 * gettimeofday() (see ext/Time-HiRes), the easiest way is
4910 * probably that they would be used to fill in the struct
4917 if (grok_atoUV(pmlenv, &uv, &endptr) /* Ignore endptr. */
4918 && uv && uv <= PERL_INT_MAX
4922 fd = PERL_MEM_LOG_FD;
4925 if (strchr(pmlenv, 't')) {
4926 len = my_snprintf(buf, sizeof(buf),
4927 MEM_LOG_TIME_FMT, MEM_LOG_TIME_ARG);
4928 PERL_UNUSED_RESULT(PerlLIO_write(fd, buf, len));
4932 len = my_snprintf(buf, sizeof(buf),
4933 "alloc: %s:%d:%s: %"IVdf" %"UVuf
4934 " %s = %"IVdf": %"UVxf"\n",
4935 filename, linenumber, funcname, n, typesize,
4936 type_name, n * typesize, PTR2UV(newalloc));
4939 len = my_snprintf(buf, sizeof(buf),
4940 "realloc: %s:%d:%s: %"IVdf" %"UVuf
4941 " %s = %"IVdf": %"UVxf" -> %"UVxf"\n",
4942 filename, linenumber, funcname, n, typesize,
4943 type_name, n * typesize, PTR2UV(oldalloc),
4947 len = my_snprintf(buf, sizeof(buf),
4948 "free: %s:%d:%s: %"UVxf"\n",
4949 filename, linenumber, funcname,
4954 len = my_snprintf(buf, sizeof(buf),
4955 "%s_SV: %s:%d:%s: %"UVxf SV_LOG_SERIAL_FMT "\n",
4956 mlt == MLT_NEW_SV ? "new" : "del",
4957 filename, linenumber, funcname,
4958 PTR2UV(sv) _SV_LOG_SERIAL_ARG(sv));
4963 PERL_UNUSED_RESULT(PerlLIO_write(fd, buf, len));
4967 #endif /* !PERL_MEM_LOG_NOIMPL */
4969 #ifndef PERL_MEM_LOG_NOIMPL
4971 mem_log_common_if(alty, num, tysz, tynm, sv, oal, nal, flnm, ln, fnnm) \
4972 mem_log_common (alty, num, tysz, tynm, sv, oal, nal, flnm, ln, fnnm)
4974 /* this is suboptimal, but bug compatible. User is providing their
4975 own implementation, but is getting these functions anyway, and they
4976 do nothing. But _NOIMPL users should be able to cope or fix */
4978 mem_log_common_if(alty, num, tysz, tynm, u, oal, nal, flnm, ln, fnnm) \
4979 /* mem_log_common_if_PERL_MEM_LOG_NOIMPL */
4983 Perl_mem_log_alloc(const UV n, const UV typesize, const char *type_name,
4985 const char *filename, const int linenumber,
4986 const char *funcname)
4988 mem_log_common_if(MLT_ALLOC, n, typesize, type_name,
4989 NULL, NULL, newalloc,
4990 filename, linenumber, funcname);
4995 Perl_mem_log_realloc(const UV n, const UV typesize, const char *type_name,
4996 Malloc_t oldalloc, Malloc_t newalloc,
4997 const char *filename, const int linenumber,
4998 const char *funcname)
5000 mem_log_common_if(MLT_REALLOC, n, typesize, type_name,
5001 NULL, oldalloc, newalloc,
5002 filename, linenumber, funcname);
5007 Perl_mem_log_free(Malloc_t oldalloc,
5008 const char *filename, const int linenumber,
5009 const char *funcname)
5011 mem_log_common_if(MLT_FREE, 0, 0, "", NULL, oldalloc, NULL,
5012 filename, linenumber, funcname);
5017 Perl_mem_log_new_sv(const SV *sv,
5018 const char *filename, const int linenumber,
5019 const char *funcname)
5021 mem_log_common_if(MLT_NEW_SV, 0, 0, "", sv, NULL, NULL,
5022 filename, linenumber, funcname);
5026 Perl_mem_log_del_sv(const SV *sv,
5027 const char *filename, const int linenumber,
5028 const char *funcname)
5030 mem_log_common_if(MLT_DEL_SV, 0, 0, "", sv, NULL, NULL,
5031 filename, linenumber, funcname);
5034 #endif /* PERL_MEM_LOG */
5037 =for apidoc my_sprintf
5039 The C library C<sprintf>, wrapped if necessary, to ensure that it will return
5040 the length of the string written to the buffer. Only rare pre-ANSI systems
5041 need the wrapper function - usually this is a direct call to C<sprintf>.
5045 #ifndef SPRINTF_RETURNS_STRLEN
5047 Perl_my_sprintf(char *buffer, const char* pat, ...)
5050 PERL_ARGS_ASSERT_MY_SPRINTF;
5051 va_start(args, pat);
5052 vsprintf(buffer, pat, args);
5054 return strlen(buffer);
5059 =for apidoc quadmath_format_single
5061 C<quadmath_snprintf()> is very strict about its C<format> string and will
5062 fail, returning -1, if the format is invalid. It accepts exactly
5065 C<quadmath_format_single()> checks that the intended single spec looks
5066 sane: begins with C<%>, has only one C<%>, ends with C<[efgaEFGA]>,
5067 and has C<Q> before it. This is not a full "printf syntax check",
5070 Returns the format if it is valid, NULL if not.
5072 C<quadmath_format_single()> can and will actually patch in the missing
5073 C<Q>, if necessary. In this case it will return the modified copy of
5074 the format, B<which the caller will need to free.>
5076 See also L</quadmath_format_needed>.
5082 Perl_quadmath_format_single(const char* format)
5086 PERL_ARGS_ASSERT_QUADMATH_FORMAT_SINGLE;
5088 if (format[0] != '%' || strchr(format + 1, '%'))