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 #include "perliol.h" /* For PerlIOUnix_refcnt */
35 # define SIG_ERR ((Sighandler_t) -1)
40 /* Missing protos on LynxOS */
45 # include <sys/wait.h>
50 # include <sys/select.h>
56 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
57 # define FD_CLOEXEC 1 /* NeXT needs this */
60 /* NOTE: Do not call the next three routines directly. Use the macros
61 * in handy.h, so that we can easily redefine everything to do tracking of
62 * allocated hunks back to the original New to track down any memory leaks.
63 * XXX This advice seems to be widely ignored :-( --AD August 1996.
70 /* Can't use PerlIO to write as it allocates memory */
71 PerlLIO_write(PerlIO_fileno(Perl_error_log),
72 PL_no_mem, strlen(PL_no_mem));
74 NORETURN_FUNCTION_END;
77 #if defined (DEBUGGING) || defined(PERL_IMPLICIT_SYS) || defined (PERL_TRACK_MEMPOOL)
78 # define ALWAYS_NEED_THX
81 /* paranoid version of system's malloc() */
84 Perl_safesysmalloc(MEM_SIZE size)
86 #ifdef ALWAYS_NEED_THX
92 PerlIO_printf(Perl_error_log,
93 "Allocation too large: %lx\n", size) FLUSH;
96 #endif /* HAS_64K_LIMIT */
97 #ifdef PERL_TRACK_MEMPOOL
102 Perl_croak_nocontext("panic: malloc");
104 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
105 PERL_ALLOC_CHECK(ptr);
107 #ifdef PERL_TRACK_MEMPOOL
108 struct perl_memory_debug_header *const header
109 = (struct perl_memory_debug_header *)ptr;
113 PoisonNew(((char *)ptr), size, char);
116 #ifdef PERL_TRACK_MEMPOOL
117 header->interpreter = aTHX;
118 /* Link us into the list. */
119 header->prev = &PL_memory_debug_header;
120 header->next = PL_memory_debug_header.next;
121 PL_memory_debug_header.next = header;
122 header->next->prev = header;
126 ptr = (Malloc_t)((char*)ptr+sTHX);
128 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
132 #ifndef ALWAYS_NEED_THX
138 return write_no_mem();
144 /* paranoid version of system's realloc() */
147 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
149 #ifdef ALWAYS_NEED_THX
153 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
154 Malloc_t PerlMem_realloc();
155 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
159 PerlIO_printf(Perl_error_log,
160 "Reallocation too large: %lx\n", size) FLUSH;
163 #endif /* HAS_64K_LIMIT */
170 return safesysmalloc(size);
171 #ifdef PERL_TRACK_MEMPOOL
172 where = (Malloc_t)((char*)where-sTHX);
175 struct perl_memory_debug_header *const header
176 = (struct perl_memory_debug_header *)where;
178 if (header->interpreter != aTHX) {
179 Perl_croak_nocontext("panic: realloc from wrong pool");
181 assert(header->next->prev == header);
182 assert(header->prev->next == header);
184 if (header->size > size) {
185 const MEM_SIZE freed_up = header->size - size;
186 char *start_of_freed = ((char *)where) + size;
187 PoisonFree(start_of_freed, freed_up, char);
195 Perl_croak_nocontext("panic: realloc");
197 ptr = (Malloc_t)PerlMem_realloc(where,size);
198 PERL_ALLOC_CHECK(ptr);
200 /* MUST do this fixup first, before doing ANYTHING else, as anything else
201 might allocate memory/free/move memory, and until we do the fixup, it
202 may well be chasing (and writing to) free memory. */
203 #ifdef PERL_TRACK_MEMPOOL
205 struct perl_memory_debug_header *const header
206 = (struct perl_memory_debug_header *)ptr;
209 if (header->size < size) {
210 const MEM_SIZE fresh = size - header->size;
211 char *start_of_fresh = ((char *)ptr) + size;
212 PoisonNew(start_of_fresh, fresh, char);
216 header->next->prev = header;
217 header->prev->next = header;
219 ptr = (Malloc_t)((char*)ptr+sTHX);
223 /* In particular, must do that fixup above before logging anything via
224 *printf(), as it can reallocate memory, which can cause SEGVs. */
226 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
227 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
234 #ifndef ALWAYS_NEED_THX
240 return write_no_mem();
246 /* safe version of system's free() */
249 Perl_safesysfree(Malloc_t where)
251 #ifdef ALWAYS_NEED_THX
256 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
258 #ifdef PERL_TRACK_MEMPOOL
259 where = (Malloc_t)((char*)where-sTHX);
261 struct perl_memory_debug_header *const header
262 = (struct perl_memory_debug_header *)where;
264 if (header->interpreter != aTHX) {
265 Perl_croak_nocontext("panic: free from wrong pool");
268 Perl_croak_nocontext("panic: duplicate free");
270 if (!(header->next) || header->next->prev != header
271 || header->prev->next != header) {
272 Perl_croak_nocontext("panic: bad free");
274 /* Unlink us from the chain. */
275 header->next->prev = header->prev;
276 header->prev->next = header->next;
278 PoisonNew(where, header->size, char);
280 /* Trigger the duplicate free warning. */
288 /* safe version of system's calloc() */
291 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
293 #ifdef ALWAYS_NEED_THX
297 #if defined(PERL_TRACK_MEMPOOL) || defined(HAS_64K_LIMIT) || defined(DEBUGGING)
298 MEM_SIZE total_size = 0;
301 /* Even though calloc() for zero bytes is strange, be robust. */
302 if (size && (count <= MEM_SIZE_MAX / size)) {
303 #if defined(PERL_TRACK_MEMPOOL) || defined(HAS_64K_LIMIT) || defined(DEBUGGING)
304 total_size = size * count;
308 Perl_croak_nocontext("%s", PL_memory_wrap);
309 #ifdef PERL_TRACK_MEMPOOL
310 if (sTHX <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
313 Perl_croak_nocontext("%s", PL_memory_wrap);
316 if (total_size > 0xffff) {
317 PerlIO_printf(Perl_error_log,
318 "Allocation too large: %lx\n", total_size) FLUSH;
321 #endif /* HAS_64K_LIMIT */
323 if ((long)size < 0 || (long)count < 0)
324 Perl_croak_nocontext("panic: calloc");
326 #ifdef PERL_TRACK_MEMPOOL
327 /* Have to use malloc() because we've added some space for our tracking
329 /* malloc(0) is non-portable. */
330 ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
332 /* Use calloc() because it might save a memset() if the memory is fresh
333 and clean from the OS. */
335 ptr = (Malloc_t)PerlMem_calloc(count, size);
336 else /* calloc(0) is non-portable. */
337 ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
339 PERL_ALLOC_CHECK(ptr);
340 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));
342 #ifdef PERL_TRACK_MEMPOOL
344 struct perl_memory_debug_header *const header
345 = (struct perl_memory_debug_header *)ptr;
347 memset((void*)ptr, 0, total_size);
348 header->interpreter = aTHX;
349 /* Link us into the list. */
350 header->prev = &PL_memory_debug_header;
351 header->next = PL_memory_debug_header.next;
352 PL_memory_debug_header.next = header;
353 header->next->prev = header;
355 header->size = total_size;
357 ptr = (Malloc_t)((char*)ptr+sTHX);
363 #ifndef ALWAYS_NEED_THX
368 return write_no_mem();
372 /* These must be defined when not using Perl's malloc for binary
377 Malloc_t Perl_malloc (MEM_SIZE nbytes)
380 return (Malloc_t)PerlMem_malloc(nbytes);
383 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
386 return (Malloc_t)PerlMem_calloc(elements, size);
389 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
392 return (Malloc_t)PerlMem_realloc(where, nbytes);
395 Free_t Perl_mfree (Malloc_t where)
403 /* copy a string up to some (non-backslashed) delimiter, if any */
406 Perl_delimcpy(register char *to, register const char *toend, register const char *from, register const char *fromend, register int delim, I32 *retlen)
410 PERL_ARGS_ASSERT_DELIMCPY;
412 for (tolen = 0; from < fromend; from++, tolen++) {
414 if (from[1] != delim) {
421 else if (*from == delim)
432 /* return ptr to little string in big string, NULL if not found */
433 /* This routine was donated by Corey Satten. */
436 Perl_instr(register const char *big, register const char *little)
440 PERL_ARGS_ASSERT_INSTR;
448 register const char *s, *x;
451 for (x=big,s=little; *s; /**/ ) {
462 return (char*)(big-1);
467 /* same as instr but allow embedded nulls */
470 Perl_ninstr(const char *big, const char *bigend, const char *little, const char *lend)
472 PERL_ARGS_ASSERT_NINSTR;
476 const char first = *little;
478 bigend -= lend - little++;
480 while (big <= bigend) {
481 if (*big++ == first) {
482 for (x=big,s=little; s < lend; x++,s++) {
486 return (char*)(big-1);
493 /* reverse of the above--find last substring */
496 Perl_rninstr(register const char *big, const char *bigend, const char *little, const char *lend)
498 register const char *bigbeg;
499 register const I32 first = *little;
500 register const char * const littleend = lend;
502 PERL_ARGS_ASSERT_RNINSTR;
504 if (little >= littleend)
505 return (char*)bigend;
507 big = bigend - (littleend - little++);
508 while (big >= bigbeg) {
509 register const char *s, *x;
512 for (x=big+2,s=little; s < littleend; /**/ ) {
521 return (char*)(big+1);
526 /* As a space optimization, we do not compile tables for strings of length
527 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
528 special-cased in fbm_instr().
530 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
533 =head1 Miscellaneous Functions
535 =for apidoc fbm_compile
537 Analyses the string in order to make fast searches on it using fbm_instr()
538 -- the Boyer-Moore algorithm.
544 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
547 register const U8 *s;
553 PERL_ARGS_ASSERT_FBM_COMPILE;
555 if (flags & FBMcf_TAIL) {
556 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
557 sv_catpvs(sv, "\n"); /* Taken into account in fbm_instr() */
558 if (mg && mg->mg_len >= 0)
561 s = (U8*)SvPV_force_mutable(sv, len);
562 if (len == 0) /* TAIL might be on a zero-length string. */
564 SvUPGRADE(sv, SVt_PVGV);
569 const unsigned char *sb;
570 const U8 mlen = (len>255) ? 255 : (U8)len;
573 Sv_Grow(sv, len + 256 + PERL_FBM_TABLE_OFFSET);
575 = (unsigned char*)(SvPVX_mutable(sv) + len + PERL_FBM_TABLE_OFFSET);
576 s = table - 1 - PERL_FBM_TABLE_OFFSET; /* last char */
577 memset((void*)table, mlen, 256);
579 sb = s - mlen + 1; /* first char (maybe) */
581 if (table[*s] == mlen)
586 Sv_Grow(sv, len + PERL_FBM_TABLE_OFFSET);
588 sv_magic(sv, NULL, PERL_MAGIC_bm, NULL, 0); /* deep magic */
590 s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
591 for (i = 0; i < len; i++) {
592 if (PL_freq[s[i]] < frequency) {
594 frequency = PL_freq[s[i]];
597 BmFLAGS(sv) = (U8)flags;
598 BmRARE(sv) = s[rarest];
599 BmPREVIOUS(sv) = rarest;
600 BmUSEFUL(sv) = 100; /* Initial value */
601 if (flags & FBMcf_TAIL)
603 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %lu\n",
604 BmRARE(sv),(unsigned long)BmPREVIOUS(sv)));
607 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
608 /* If SvTAIL is actually due to \Z or \z, this gives false positives
612 =for apidoc fbm_instr
614 Returns the location of the SV in the string delimited by C<str> and
615 C<strend>. It returns C<NULL> if the string can't be found. The C<sv>
616 does not have to be fbm_compiled, but the search will not be as fast
623 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
625 register unsigned char *s;
627 register const unsigned char *little
628 = (const unsigned char *)SvPV_const(littlestr,l);
629 register STRLEN littlelen = l;
630 register const I32 multiline = flags & FBMrf_MULTILINE;
632 PERL_ARGS_ASSERT_FBM_INSTR;
634 if ((STRLEN)(bigend - big) < littlelen) {
635 if ( SvTAIL(littlestr)
636 && ((STRLEN)(bigend - big) == littlelen - 1)
638 || (*big == *little &&
639 memEQ((char *)big, (char *)little, littlelen - 1))))
644 if (littlelen <= 2) { /* Special-cased */
646 if (littlelen == 1) {
647 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
648 /* Know that bigend != big. */
649 if (bigend[-1] == '\n')
650 return (char *)(bigend - 1);
651 return (char *) bigend;
659 if (SvTAIL(littlestr))
660 return (char *) bigend;
664 return (char*)big; /* Cannot be SvTAIL! */
667 if (SvTAIL(littlestr) && !multiline) {
668 if (bigend[-1] == '\n' && bigend[-2] == *little)
669 return (char*)bigend - 2;
670 if (bigend[-1] == *little)
671 return (char*)bigend - 1;
675 /* This should be better than FBM if c1 == c2, and almost
676 as good otherwise: maybe better since we do less indirection.
677 And we save a lot of memory by caching no table. */
678 const unsigned char c1 = little[0];
679 const unsigned char c2 = little[1];
684 while (s <= bigend) {
694 goto check_1char_anchor;
705 goto check_1char_anchor;
708 while (s <= bigend) {
713 goto check_1char_anchor;
722 check_1char_anchor: /* One char and anchor! */
723 if (SvTAIL(littlestr) && (*bigend == *little))
724 return (char *)bigend; /* bigend is already decremented. */
727 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
728 s = bigend - littlelen;
729 if (s >= big && bigend[-1] == '\n' && *s == *little
730 /* Automatically of length > 2 */
731 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
733 return (char*)s; /* how sweet it is */
736 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
738 return (char*)s + 1; /* how sweet it is */
742 if (!SvVALID(littlestr)) {
743 char * const b = ninstr((char*)big,(char*)bigend,
744 (char*)little, (char*)little + littlelen);
746 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
747 /* Chop \n from littlestr: */
748 s = bigend - littlelen + 1;
750 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
760 if (littlelen > (STRLEN)(bigend - big))
764 register const unsigned char * const table
765 = little + littlelen + PERL_FBM_TABLE_OFFSET;
766 register const unsigned char *oldlittle;
768 --littlelen; /* Last char found by table lookup */
771 little += littlelen; /* last char */
777 if ((tmp = table[*s])) {
778 if ((s += tmp) < bigend)
782 else { /* less expensive than calling strncmp() */
783 register unsigned char * const olds = s;
788 if (*--s == *--little)
790 s = olds + 1; /* here we pay the price for failure */
792 if (s < bigend) /* fake up continue to outer loop */
801 && (BmFLAGS(littlestr) & FBMcf_TAIL)
802 && memEQ((char *)(bigend - littlelen),
803 (char *)(oldlittle - littlelen), littlelen) )
804 return (char*)bigend - littlelen;
809 /* start_shift, end_shift are positive quantities which give offsets
810 of ends of some substring of bigstr.
811 If "last" we want the last occurrence.
812 old_posp is the way of communication between consequent calls if
813 the next call needs to find the .
814 The initial *old_posp should be -1.
816 Note that we take into account SvTAIL, so one can get extra
817 optimizations if _ALL flag is set.
820 /* If SvTAIL is actually due to \Z or \z, this gives false positives
821 if PL_multiline. In fact if !PL_multiline the authoritative answer
822 is not supported yet. */
825 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
828 register const unsigned char *big;
830 register I32 previous;
832 register const unsigned char *little;
833 register I32 stop_pos;
834 register const unsigned char *littleend;
837 PERL_ARGS_ASSERT_SCREAMINSTR;
839 assert(SvTYPE(littlestr) == SVt_PVGV);
840 assert(SvVALID(littlestr));
843 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
844 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
846 if ( BmRARE(littlestr) == '\n'
847 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
848 little = (const unsigned char *)(SvPVX_const(littlestr));
849 littleend = little + SvCUR(littlestr);
856 little = (const unsigned char *)(SvPVX_const(littlestr));
857 littleend = little + SvCUR(littlestr);
859 /* The value of pos we can start at: */
860 previous = BmPREVIOUS(littlestr);
861 big = (const unsigned char *)(SvPVX_const(bigstr));
862 /* The value of pos we can stop at: */
863 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
864 if (previous + start_shift > stop_pos) {
866 stop_pos does not include SvTAIL in the count, so this check is incorrect
867 (I think) - see [ID 20010618.006] and t/op/study.t. HVDS 2001/06/19
870 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
875 while (pos < previous + start_shift) {
876 if (!(pos += PL_screamnext[pos]))
881 register const unsigned char *s, *x;
882 if (pos >= stop_pos) break;
883 if (big[pos] != first)
885 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
891 if (s == littleend) {
893 if (!last) return (char *)(big+pos);
896 } while ( pos += PL_screamnext[pos] );
898 return (char *)(big+(*old_posp));
900 if (!SvTAIL(littlestr) || (end_shift > 0))
902 /* Ignore the trailing "\n". This code is not microoptimized */
903 big = (const unsigned char *)(SvPVX_const(bigstr) + SvCUR(bigstr));
904 stop_pos = littleend - little; /* Actual littlestr len */
909 && ((stop_pos == 1) ||
910 memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
918 Returns true if the leading len bytes of the strings s1 and s2 are the same
919 case-insensitively; false otherwise. Uppercase and lowercase ASCII range bytes
920 match themselves and their opposite case counterparts. Non-cased and non-ASCII
921 range bytes match only themselves.
928 Perl_foldEQ(const char *s1, const char *s2, register I32 len)
930 register const U8 *a = (const U8 *)s1;
931 register const U8 *b = (const U8 *)s2;
933 PERL_ARGS_ASSERT_FOLDEQ;
936 if (*a != *b && *a != PL_fold[*b])
943 Perl_foldEQ_latin1(const char *s1, const char *s2, register I32 len)
945 /* Compare non-utf8 using Unicode (Latin1) semantics. Does not work on
946 * MICRO_SIGN, LATIN_SMALL_LETTER_SHARP_S, nor
947 * LATIN_SMALL_LETTER_Y_WITH_DIAERESIS, and does not check for these. Nor
948 * does it check that the strings each have at least 'len' characters */
950 register const U8 *a = (const U8 *)s1;
951 register const U8 *b = (const U8 *)s2;
953 PERL_ARGS_ASSERT_FOLDEQ_LATIN1;
956 if (*a != *b && *a != PL_fold_latin1[*b]) {
965 =for apidoc foldEQ_locale
967 Returns true if the leading len bytes of the strings s1 and s2 are the same
968 case-insensitively in the current locale; false otherwise.
974 Perl_foldEQ_locale(const char *s1, const char *s2, register I32 len)
977 register const U8 *a = (const U8 *)s1;
978 register const U8 *b = (const U8 *)s2;
980 PERL_ARGS_ASSERT_FOLDEQ_LOCALE;
983 if (*a != *b && *a != PL_fold_locale[*b])
990 /* copy a string to a safe spot */
993 =head1 Memory Management
997 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
998 string which is a duplicate of C<pv>. The size of the string is
999 determined by C<strlen()>. The memory allocated for the new string can
1000 be freed with the C<Safefree()> function.
1006 Perl_savepv(pTHX_ const char *pv)
1008 PERL_UNUSED_CONTEXT;
1013 const STRLEN pvlen = strlen(pv)+1;
1014 Newx(newaddr, pvlen, char);
1015 return (char*)memcpy(newaddr, pv, pvlen);
1019 /* same thing but with a known length */
1024 Perl's version of what C<strndup()> would be if it existed. Returns a
1025 pointer to a newly allocated string which is a duplicate of the first
1026 C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for
1027 the new string can be freed with the C<Safefree()> function.
1033 Perl_savepvn(pTHX_ const char *pv, register I32 len)
1035 register char *newaddr;
1036 PERL_UNUSED_CONTEXT;
1038 Newx(newaddr,len+1,char);
1039 /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
1041 /* might not be null terminated */
1042 newaddr[len] = '\0';
1043 return (char *) CopyD(pv,newaddr,len,char);
1046 return (char *) ZeroD(newaddr,len+1,char);
1051 =for apidoc savesharedpv
1053 A version of C<savepv()> which allocates the duplicate string in memory
1054 which is shared between threads.
1059 Perl_savesharedpv(pTHX_ const char *pv)
1061 register char *newaddr;
1066 pvlen = strlen(pv)+1;
1067 newaddr = (char*)PerlMemShared_malloc(pvlen);
1069 return write_no_mem();
1071 return (char*)memcpy(newaddr, pv, pvlen);
1075 =for apidoc savesharedpvn
1077 A version of C<savepvn()> which allocates the duplicate string in memory
1078 which is shared between threads. (With the specific difference that a NULL
1079 pointer is not acceptable)
1084 Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
1086 char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
1088 PERL_ARGS_ASSERT_SAVESHAREDPVN;
1091 return write_no_mem();
1093 newaddr[len] = '\0';
1094 return (char*)memcpy(newaddr, pv, len);
1098 =for apidoc savesvpv
1100 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
1101 the passed in SV using C<SvPV()>
1107 Perl_savesvpv(pTHX_ SV *sv)
1110 const char * const pv = SvPV_const(sv, len);
1111 register char *newaddr;
1113 PERL_ARGS_ASSERT_SAVESVPV;
1116 Newx(newaddr,len,char);
1117 return (char *) CopyD(pv,newaddr,len,char);
1121 =for apidoc savesharedsvpv
1123 A version of C<savesharedpv()> which allocates the duplicate string in
1124 memory which is shared between threads.
1130 Perl_savesharedsvpv(pTHX_ SV *sv)
1133 const char * const pv = SvPV_const(sv, len);
1135 PERL_ARGS_ASSERT_SAVESHAREDSVPV;
1137 return savesharedpvn(pv, len);
1140 /* the SV for Perl_form() and mess() is not kept in an arena */
1149 if (PL_phase != PERL_PHASE_DESTRUCT)
1150 return newSVpvs_flags("", SVs_TEMP);
1155 /* Create as PVMG now, to avoid any upgrading later */
1157 Newxz(any, 1, XPVMG);
1158 SvFLAGS(sv) = SVt_PVMG;
1159 SvANY(sv) = (void*)any;
1161 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1166 #if defined(PERL_IMPLICIT_CONTEXT)
1168 Perl_form_nocontext(const char* pat, ...)
1173 PERL_ARGS_ASSERT_FORM_NOCONTEXT;
1174 va_start(args, pat);
1175 retval = vform(pat, &args);
1179 #endif /* PERL_IMPLICIT_CONTEXT */
1182 =head1 Miscellaneous Functions
1185 Takes a sprintf-style format pattern and conventional
1186 (non-SV) arguments and returns the formatted string.
1188 (char *) Perl_form(pTHX_ const char* pat, ...)
1190 can be used any place a string (char *) is required:
1192 char * s = Perl_form("%d.%d",major,minor);
1194 Uses a single private buffer so if you want to format several strings you
1195 must explicitly copy the earlier strings away (and free the copies when you
1202 Perl_form(pTHX_ const char* pat, ...)
1206 PERL_ARGS_ASSERT_FORM;
1207 va_start(args, pat);
1208 retval = vform(pat, &args);
1214 Perl_vform(pTHX_ const char *pat, va_list *args)
1216 SV * const sv = mess_alloc();
1217 PERL_ARGS_ASSERT_VFORM;
1218 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1223 =for apidoc Am|SV *|mess|const char *pat|...
1225 Take a sprintf-style format pattern and argument list. These are used to
1226 generate a string message. If the message does not end with a newline,
1227 then it will be extended with some indication of the current location
1228 in the code, as described for L</mess_sv>.
1230 Normally, the resulting message is returned in a new mortal SV.
1231 During global destruction a single SV may be shared between uses of
1237 #if defined(PERL_IMPLICIT_CONTEXT)
1239 Perl_mess_nocontext(const char *pat, ...)
1244 PERL_ARGS_ASSERT_MESS_NOCONTEXT;
1245 va_start(args, pat);
1246 retval = vmess(pat, &args);
1250 #endif /* PERL_IMPLICIT_CONTEXT */
1253 Perl_mess(pTHX_ const char *pat, ...)
1257 PERL_ARGS_ASSERT_MESS;
1258 va_start(args, pat);
1259 retval = vmess(pat, &args);
1265 S_closest_cop(pTHX_ const COP *cop, const OP *o)
1268 /* Look for PL_op starting from o. cop is the last COP we've seen. */
1270 PERL_ARGS_ASSERT_CLOSEST_COP;
1272 if (!o || o == PL_op)
1275 if (o->op_flags & OPf_KIDS) {
1277 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
1280 /* If the OP_NEXTSTATE has been optimised away we can still use it
1281 * the get the file and line number. */
1283 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
1284 cop = (const COP *)kid;
1286 /* Keep searching, and return when we've found something. */
1288 new_cop = closest_cop(cop, kid);
1294 /* Nothing found. */
1300 =for apidoc Am|SV *|mess_sv|SV *basemsg|bool consume
1302 Expands a message, intended for the user, to include an indication of
1303 the current location in the code, if the message does not already appear
1306 C<basemsg> is the initial message or object. If it is a reference, it
1307 will be used as-is and will be the result of this function. Otherwise it
1308 is used as a string, and if it already ends with a newline, it is taken
1309 to be complete, and the result of this function will be the same string.
1310 If the message does not end with a newline, then a segment such as C<at
1311 foo.pl line 37> will be appended, and possibly other clauses indicating
1312 the current state of execution. The resulting message will end with a
1315 Normally, the resulting message is returned in a new mortal SV.
1316 During global destruction a single SV may be shared between uses of this
1317 function. If C<consume> is true, then the function is permitted (but not
1318 required) to modify and return C<basemsg> instead of allocating a new SV.
1324 Perl_mess_sv(pTHX_ SV *basemsg, bool consume)
1329 PERL_ARGS_ASSERT_MESS_SV;
1331 if (SvROK(basemsg)) {
1337 sv_setsv(sv, basemsg);
1342 if (SvPOK(basemsg) && consume) {
1347 sv_copypv(sv, basemsg);
1350 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1352 * Try and find the file and line for PL_op. This will usually be
1353 * PL_curcop, but it might be a cop that has been optimised away. We
1354 * can try to find such a cop by searching through the optree starting
1355 * from the sibling of PL_curcop.
1358 const COP *cop = closest_cop(PL_curcop, PL_curcop->op_sibling);
1363 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1364 OutCopFILE(cop), (IV)CopLINE(cop));
1365 /* Seems that GvIO() can be untrustworthy during global destruction. */
1366 if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1367 && IoLINES(GvIOp(PL_last_in_gv)))
1369 const bool line_mode = (RsSIMPLE(PL_rs) &&
1370 SvCUR(PL_rs) == 1 && *SvPVX_const(PL_rs) == '\n');
1371 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
1372 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1373 line_mode ? "line" : "chunk",
1374 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1376 if (PL_phase == PERL_PHASE_DESTRUCT)
1377 sv_catpvs(sv, " during global destruction");
1378 sv_catpvs(sv, ".\n");
1384 =for apidoc Am|SV *|vmess|const char *pat|va_list *args
1386 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1387 argument list. These are used to generate a string message. If the
1388 message does not end with a newline, then it will be extended with
1389 some indication of the current location in the code, as described for
1392 Normally, the resulting message is returned in a new mortal SV.
1393 During global destruction a single SV may be shared between uses of
1400 Perl_vmess(pTHX_ const char *pat, va_list *args)
1403 SV * const sv = mess_alloc();
1405 PERL_ARGS_ASSERT_VMESS;
1407 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1408 return mess_sv(sv, 1);
1412 Perl_write_to_stderr(pTHX_ SV* msv)
1418 PERL_ARGS_ASSERT_WRITE_TO_STDERR;
1420 if (PL_stderrgv && SvREFCNT(PL_stderrgv)
1421 && (io = GvIO(PL_stderrgv))
1422 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
1423 Perl_magic_methcall(aTHX_ MUTABLE_SV(io), mg, "PRINT",
1424 G_SCALAR | G_DISCARD | G_WRITING_TO_STDERR, 1, msv);
1427 /* SFIO can really mess with your errno */
1430 PerlIO * const serr = Perl_error_log;
1432 do_print(msv, serr);
1433 (void)PerlIO_flush(serr);
1441 =head1 Warning and Dieing
1444 /* Common code used in dieing and warning */
1447 S_with_queued_errors(pTHX_ SV *ex)
1449 PERL_ARGS_ASSERT_WITH_QUEUED_ERRORS;
1450 if (PL_errors && SvCUR(PL_errors) && !SvROK(ex)) {
1451 sv_catsv(PL_errors, ex);
1452 ex = sv_mortalcopy(PL_errors);
1453 SvCUR_set(PL_errors, 0);
1459 S_invoke_exception_hook(pTHX_ SV *ex, bool warn)
1465 SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1466 /* sv_2cv might call Perl_croak() or Perl_warner() */
1467 SV * const oldhook = *hook;
1475 cv = sv_2cv(oldhook, &stash, &gv, 0);
1477 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1487 exarg = newSVsv(ex);
1488 SvREADONLY_on(exarg);
1491 PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
1495 call_sv(MUTABLE_SV(cv), G_DISCARD);
1504 =for apidoc Am|OP *|die_sv|SV *baseex
1506 Behaves the same as L</croak_sv>, except for the return type.
1507 It should be used only where the C<OP *> return type is required.
1508 The function never actually returns.
1514 Perl_die_sv(pTHX_ SV *baseex)
1516 PERL_ARGS_ASSERT_DIE_SV;
1523 =for apidoc Am|OP *|die|const char *pat|...
1525 Behaves the same as L</croak>, except for the return type.
1526 It should be used only where the C<OP *> return type is required.
1527 The function never actually returns.
1532 #if defined(PERL_IMPLICIT_CONTEXT)
1534 Perl_die_nocontext(const char* pat, ...)
1538 va_start(args, pat);
1544 #endif /* PERL_IMPLICIT_CONTEXT */
1547 Perl_die(pTHX_ const char* pat, ...)
1550 va_start(args, pat);
1558 =for apidoc Am|void|croak_sv|SV *baseex
1560 This is an XS interface to Perl's C<die> function.
1562 C<baseex> is the error message or object. If it is a reference, it
1563 will be used as-is. Otherwise it is used as a string, and if it does
1564 not end with a newline then it will be extended with some indication of
1565 the current location in the code, as described for L</mess_sv>.
1567 The error message or object will be used as an exception, by default
1568 returning control to the nearest enclosing C<eval>, but subject to
1569 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak_sv>
1570 function never returns normally.
1572 To die with a simple string message, the L</croak> function may be
1579 Perl_croak_sv(pTHX_ SV *baseex)
1581 SV *ex = with_queued_errors(mess_sv(baseex, 0));
1582 PERL_ARGS_ASSERT_CROAK_SV;
1583 invoke_exception_hook(ex, FALSE);
1588 =for apidoc Am|void|vcroak|const char *pat|va_list *args
1590 This is an XS interface to Perl's C<die> function.
1592 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1593 argument list. These are used to generate a string message. If the
1594 message does not end with a newline, then it will be extended with
1595 some indication of the current location in the code, as described for
1598 The error message will be used as an exception, by default
1599 returning control to the nearest enclosing C<eval>, but subject to
1600 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1601 function never returns normally.
1603 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1604 (C<$@>) will be used as an error message or object instead of building an
1605 error message from arguments. If you want to throw a non-string object,
1606 or build an error message in an SV yourself, it is preferable to use
1607 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1613 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1615 SV *ex = with_queued_errors(pat ? vmess(pat, args) : mess_sv(ERRSV, 0));
1616 invoke_exception_hook(ex, FALSE);
1621 =for apidoc Am|void|croak|const char *pat|...
1623 This is an XS interface to Perl's C<die> function.
1625 Take a sprintf-style format pattern and argument list. These are used to
1626 generate a string message. If the message does not end with a newline,
1627 then it will be extended with some indication of the current location
1628 in the code, as described for L</mess_sv>.
1630 The error message will be used as an exception, by default
1631 returning control to the nearest enclosing C<eval>, but subject to
1632 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1633 function never returns normally.
1635 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1636 (C<$@>) will be used as an error message or object instead of building an
1637 error message from arguments. If you want to throw a non-string object,
1638 or build an error message in an SV yourself, it is preferable to use
1639 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1644 #if defined(PERL_IMPLICIT_CONTEXT)
1646 Perl_croak_nocontext(const char *pat, ...)
1650 va_start(args, pat);
1655 #endif /* PERL_IMPLICIT_CONTEXT */
1658 Perl_croak(pTHX_ const char *pat, ...)
1661 va_start(args, pat);
1668 =for apidoc Am|void|croak_no_modify
1670 Exactly equivalent to C<Perl_croak(aTHX_ "%s", PL_no_modify)>, but generates
1671 terser object code than using C<Perl_croak>. Less code used on exception code
1672 paths reduces CPU cache pressure.
1678 Perl_croak_no_modify(pTHX)
1680 Perl_croak(aTHX_ "%s", PL_no_modify);
1684 =for apidoc Am|void|warn_sv|SV *baseex
1686 This is an XS interface to Perl's C<warn> function.
1688 C<baseex> is the error message or object. If it is a reference, it
1689 will be used as-is. Otherwise it is used as a string, and if it does
1690 not end with a newline then it will be extended with some indication of
1691 the current location in the code, as described for L</mess_sv>.
1693 The error message or object will by default be written to standard error,
1694 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1696 To warn with a simple string message, the L</warn> function may be
1703 Perl_warn_sv(pTHX_ SV *baseex)
1705 SV *ex = mess_sv(baseex, 0);
1706 PERL_ARGS_ASSERT_WARN_SV;
1707 if (!invoke_exception_hook(ex, TRUE))
1708 write_to_stderr(ex);
1712 =for apidoc Am|void|vwarn|const char *pat|va_list *args
1714 This is an XS interface to Perl's C<warn> function.
1716 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1717 argument list. These are used to generate a string message. If the
1718 message does not end with a newline, then it will be extended with
1719 some indication of the current location in the code, as described for
1722 The error message or object will by default be written to standard error,
1723 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1725 Unlike with L</vcroak>, C<pat> is not permitted to be null.
1731 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1733 SV *ex = vmess(pat, args);
1734 PERL_ARGS_ASSERT_VWARN;
1735 if (!invoke_exception_hook(ex, TRUE))
1736 write_to_stderr(ex);
1740 =for apidoc Am|void|warn|const char *pat|...
1742 This is an XS interface to Perl's C<warn> function.
1744 Take a sprintf-style format pattern and argument list. These are used to
1745 generate a string message. If the message does not end with a newline,
1746 then it will be extended with some indication of the current location
1747 in the code, as described for L</mess_sv>.
1749 The error message or object will by default be written to standard error,
1750 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1752 Unlike with L</croak>, C<pat> is not permitted to be null.
1757 #if defined(PERL_IMPLICIT_CONTEXT)
1759 Perl_warn_nocontext(const char *pat, ...)
1763 PERL_ARGS_ASSERT_WARN_NOCONTEXT;
1764 va_start(args, pat);
1768 #endif /* PERL_IMPLICIT_CONTEXT */
1771 Perl_warn(pTHX_ const char *pat, ...)
1774 PERL_ARGS_ASSERT_WARN;
1775 va_start(args, pat);
1780 #if defined(PERL_IMPLICIT_CONTEXT)
1782 Perl_warner_nocontext(U32 err, const char *pat, ...)
1786 PERL_ARGS_ASSERT_WARNER_NOCONTEXT;
1787 va_start(args, pat);
1788 vwarner(err, pat, &args);
1791 #endif /* PERL_IMPLICIT_CONTEXT */
1794 Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...)
1796 PERL_ARGS_ASSERT_CK_WARNER_D;
1798 if (Perl_ckwarn_d(aTHX_ err)) {
1800 va_start(args, pat);
1801 vwarner(err, pat, &args);
1807 Perl_ck_warner(pTHX_ U32 err, const char* pat, ...)
1809 PERL_ARGS_ASSERT_CK_WARNER;
1811 if (Perl_ckwarn(aTHX_ err)) {
1813 va_start(args, pat);
1814 vwarner(err, pat, &args);
1820 Perl_warner(pTHX_ U32 err, const char* pat,...)
1823 PERL_ARGS_ASSERT_WARNER;
1824 va_start(args, pat);
1825 vwarner(err, pat, &args);
1830 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1833 PERL_ARGS_ASSERT_VWARNER;
1834 if (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) {
1835 SV * const msv = vmess(pat, args);
1837 invoke_exception_hook(msv, FALSE);
1841 Perl_vwarn(aTHX_ pat, args);
1845 /* implements the ckWARN? macros */
1848 Perl_ckwarn(pTHX_ U32 w)
1851 /* If lexical warnings have not been set, use $^W. */
1853 return PL_dowarn & G_WARN_ON;
1855 return ckwarn_common(w);
1858 /* implements the ckWARN?_d macro */
1861 Perl_ckwarn_d(pTHX_ U32 w)
1864 /* If lexical warnings have not been set then default classes warn. */
1868 return ckwarn_common(w);
1872 S_ckwarn_common(pTHX_ U32 w)
1874 if (PL_curcop->cop_warnings == pWARN_ALL)
1877 if (PL_curcop->cop_warnings == pWARN_NONE)
1880 /* Check the assumption that at least the first slot is non-zero. */
1881 assert(unpackWARN1(w));
1883 /* Check the assumption that it is valid to stop as soon as a zero slot is
1885 if (!unpackWARN2(w)) {
1886 assert(!unpackWARN3(w));
1887 assert(!unpackWARN4(w));
1888 } else if (!unpackWARN3(w)) {
1889 assert(!unpackWARN4(w));
1892 /* Right, dealt with all the special cases, which are implemented as non-
1893 pointers, so there is a pointer to a real warnings mask. */
1895 if (isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)))
1897 } while (w >>= WARNshift);
1902 /* Set buffer=NULL to get a new one. */
1904 Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
1906 const MEM_SIZE len_wanted = sizeof(STRLEN) + size;
1907 PERL_UNUSED_CONTEXT;
1908 PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD;
1911 (specialWARN(buffer) ?
1912 PerlMemShared_malloc(len_wanted) :
1913 PerlMemShared_realloc(buffer, len_wanted));
1915 Copy(bits, (buffer + 1), size, char);
1919 /* since we've already done strlen() for both nam and val
1920 * we can use that info to make things faster than
1921 * sprintf(s, "%s=%s", nam, val)
1923 #define my_setenv_format(s, nam, nlen, val, vlen) \
1924 Copy(nam, s, nlen, char); \
1926 Copy(val, s+(nlen+1), vlen, char); \
1927 *(s+(nlen+1+vlen)) = '\0'
1929 #ifdef USE_ENVIRON_ARRAY
1930 /* VMS' my_setenv() is in vms.c */
1931 #if !defined(WIN32) && !defined(NETWARE)
1933 Perl_my_setenv(pTHX_ const char *nam, const char *val)
1937 /* only parent thread can modify process environment */
1938 if (PL_curinterp == aTHX)
1941 #ifndef PERL_USE_SAFE_PUTENV
1942 if (!PL_use_safe_putenv) {
1943 /* most putenv()s leak, so we manipulate environ directly */
1945 register const I32 len = strlen(nam);
1948 /* where does it go? */
1949 for (i = 0; environ[i]; i++) {
1950 if (strnEQ(environ[i],nam,len) && environ[i][len] == '=')
1954 if (environ == PL_origenviron) { /* need we copy environment? */
1960 while (environ[max])
1962 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1963 for (j=0; j<max; j++) { /* copy environment */
1964 const int len = strlen(environ[j]);
1965 tmpenv[j] = (char*)safesysmalloc((len+1)*sizeof(char));
1966 Copy(environ[j], tmpenv[j], len+1, char);
1969 environ = tmpenv; /* tell exec where it is now */
1972 safesysfree(environ[i]);
1973 while (environ[i]) {
1974 environ[i] = environ[i+1];
1979 if (!environ[i]) { /* does not exist yet */
1980 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1981 environ[i+1] = NULL; /* make sure it's null terminated */
1984 safesysfree(environ[i]);
1988 environ[i] = (char*)safesysmalloc((nlen+vlen+2) * sizeof(char));
1989 /* all that work just for this */
1990 my_setenv_format(environ[i], nam, nlen, val, vlen);
1993 # if defined(__CYGWIN__) || defined(EPOC) || defined(__SYMBIAN32__) || defined(__riscos__)
1994 # if defined(HAS_UNSETENV)
1996 (void)unsetenv(nam);
1998 (void)setenv(nam, val, 1);
2000 # else /* ! HAS_UNSETENV */
2001 (void)setenv(nam, val, 1);
2002 # endif /* HAS_UNSETENV */
2004 # if defined(HAS_UNSETENV)
2006 (void)unsetenv(nam);
2008 const int nlen = strlen(nam);
2009 const int vlen = strlen(val);
2010 char * const new_env =
2011 (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2012 my_setenv_format(new_env, nam, nlen, val, vlen);
2013 (void)putenv(new_env);
2015 # else /* ! HAS_UNSETENV */
2017 const int nlen = strlen(nam);
2023 new_env = (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2024 /* all that work just for this */
2025 my_setenv_format(new_env, nam, nlen, val, vlen);
2026 (void)putenv(new_env);
2027 # endif /* HAS_UNSETENV */
2028 # endif /* __CYGWIN__ */
2029 #ifndef PERL_USE_SAFE_PUTENV
2035 #else /* WIN32 || NETWARE */
2038 Perl_my_setenv(pTHX_ const char *nam, const char *val)
2041 register char *envstr;
2042 const int nlen = strlen(nam);
2049 Newx(envstr, nlen+vlen+2, char);
2050 my_setenv_format(envstr, nam, nlen, val, vlen);
2051 (void)PerlEnv_putenv(envstr);
2055 #endif /* WIN32 || NETWARE */
2057 #endif /* !VMS && !EPOC*/
2059 #ifdef UNLINK_ALL_VERSIONS
2061 Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
2065 PERL_ARGS_ASSERT_UNLNK;
2067 while (PerlLIO_unlink(f) >= 0)
2069 return retries ? 0 : -1;
2073 /* this is a drop-in replacement for bcopy() */
2074 #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
2076 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
2078 char * const retval = to;
2080 PERL_ARGS_ASSERT_MY_BCOPY;
2082 if (from - to >= 0) {
2090 *(--to) = *(--from);
2096 /* this is a drop-in replacement for memset() */
2099 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
2101 char * const retval = loc;
2103 PERL_ARGS_ASSERT_MY_MEMSET;
2111 /* this is a drop-in replacement for bzero() */
2112 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2114 Perl_my_bzero(register char *loc, register I32 len)
2116 char * const retval = loc;
2118 PERL_ARGS_ASSERT_MY_BZERO;
2126 /* this is a drop-in replacement for memcmp() */
2127 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2129 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
2131 register const U8 *a = (const U8 *)s1;
2132 register const U8 *b = (const U8 *)s2;
2135 PERL_ARGS_ASSERT_MY_MEMCMP;
2138 if ((tmp = *a++ - *b++))
2143 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2146 /* This vsprintf replacement should generally never get used, since
2147 vsprintf was available in both System V and BSD 2.11. (There may
2148 be some cross-compilation or embedded set-ups where it is needed,
2151 If you encounter a problem in this function, it's probably a symptom
2152 that Configure failed to detect your system's vprintf() function.
2153 See the section on "item vsprintf" in the INSTALL file.
2155 This version may compile on systems with BSD-ish <stdio.h>,
2156 but probably won't on others.
2159 #ifdef USE_CHAR_VSPRINTF
2164 vsprintf(char *dest, const char *pat, void *args)
2168 #if defined(STDIO_PTR_LVALUE) && defined(STDIO_CNT_LVALUE)
2169 FILE_ptr(&fakebuf) = (STDCHAR *) dest;
2170 FILE_cnt(&fakebuf) = 32767;
2172 /* These probably won't compile -- If you really need
2173 this, you'll have to figure out some other method. */
2174 fakebuf._ptr = dest;
2175 fakebuf._cnt = 32767;
2180 fakebuf._flag = _IOWRT|_IOSTRG;
2181 _doprnt(pat, args, &fakebuf); /* what a kludge */
2182 #if defined(STDIO_PTR_LVALUE)
2183 *(FILE_ptr(&fakebuf)++) = '\0';
2185 /* PerlIO has probably #defined away fputc, but we want it here. */
2187 # undef fputc /* XXX Should really restore it later */
2189 (void)fputc('\0', &fakebuf);
2191 #ifdef USE_CHAR_VSPRINTF
2194 return 0; /* perl doesn't use return value */
2198 #endif /* HAS_VPRINTF */
2201 #if BYTEORDER != 0x4321
2203 Perl_my_swap(pTHX_ short s)
2205 #if (BYTEORDER & 1) == 0
2208 result = ((s & 255) << 8) + ((s >> 8) & 255);
2216 Perl_my_htonl(pTHX_ long l)
2220 char c[sizeof(long)];
2223 #if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678
2224 #if BYTEORDER == 0x12345678
2227 u.c[0] = (l >> 24) & 255;
2228 u.c[1] = (l >> 16) & 255;
2229 u.c[2] = (l >> 8) & 255;
2233 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2234 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2239 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2240 u.c[o & 0xf] = (l >> s) & 255;
2248 Perl_my_ntohl(pTHX_ long l)
2252 char c[sizeof(long)];
2255 #if BYTEORDER == 0x1234
2256 u.c[0] = (l >> 24) & 255;
2257 u.c[1] = (l >> 16) & 255;
2258 u.c[2] = (l >> 8) & 255;
2262 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2263 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2270 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2271 l |= (u.c[o & 0xf] & 255) << s;
2278 #endif /* BYTEORDER != 0x4321 */
2282 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2283 * If these functions are defined,
2284 * the BYTEORDER is neither 0x1234 nor 0x4321.
2285 * However, this is not assumed.
2289 #define HTOLE(name,type) \
2291 name (register type n) \
2295 char c[sizeof(type)]; \
2298 register U32 s = 0; \
2299 for (i = 0; i < sizeof(u.c); i++, s += 8) { \
2300 u.c[i] = (n >> s) & 0xFF; \
2305 #define LETOH(name,type) \
2307 name (register type n) \
2311 char c[sizeof(type)]; \
2314 register U32 s = 0; \
2317 for (i = 0; i < sizeof(u.c); i++, s += 8) { \
2318 n |= ((type)(u.c[i] & 0xFF)) << s; \
2324 * Big-endian byte order functions.
2327 #define HTOBE(name,type) \
2329 name (register type n) \
2333 char c[sizeof(type)]; \
2336 register U32 s = 8*(sizeof(u.c)-1); \
2337 for (i = 0; i < sizeof(u.c); i++, s -= 8) { \
2338 u.c[i] = (n >> s) & 0xFF; \
2343 #define BETOH(name,type) \
2345 name (register type n) \
2349 char c[sizeof(type)]; \
2352 register U32 s = 8*(sizeof(u.c)-1); \
2355 for (i = 0; i < sizeof(u.c); i++, s -= 8) { \
2356 n |= ((type)(u.c[i] & 0xFF)) << s; \
2362 * If we just can't do it...
2365 #define NOT_AVAIL(name,type) \
2367 name (register type n) \
2369 Perl_croak_nocontext(#name "() not available"); \
2370 return n; /* not reached */ \
2374 #if defined(HAS_HTOVS) && !defined(htovs)
2377 #if defined(HAS_HTOVL) && !defined(htovl)
2380 #if defined(HAS_VTOHS) && !defined(vtohs)
2383 #if defined(HAS_VTOHL) && !defined(vtohl)
2387 #ifdef PERL_NEED_MY_HTOLE16
2389 HTOLE(Perl_my_htole16,U16)
2391 NOT_AVAIL(Perl_my_htole16,U16)
2394 #ifdef PERL_NEED_MY_LETOH16
2396 LETOH(Perl_my_letoh16,U16)
2398 NOT_AVAIL(Perl_my_letoh16,U16)
2401 #ifdef PERL_NEED_MY_HTOBE16
2403 HTOBE(Perl_my_htobe16,U16)
2405 NOT_AVAIL(Perl_my_htobe16,U16)
2408 #ifdef PERL_NEED_MY_BETOH16
2410 BETOH(Perl_my_betoh16,U16)
2412 NOT_AVAIL(Perl_my_betoh16,U16)
2416 #ifdef PERL_NEED_MY_HTOLE32
2418 HTOLE(Perl_my_htole32,U32)
2420 NOT_AVAIL(Perl_my_htole32,U32)
2423 #ifdef PERL_NEED_MY_LETOH32
2425 LETOH(Perl_my_letoh32,U32)
2427 NOT_AVAIL(Perl_my_letoh32,U32)
2430 #ifdef PERL_NEED_MY_HTOBE32
2432 HTOBE(Perl_my_htobe32,U32)
2434 NOT_AVAIL(Perl_my_htobe32,U32)
2437 #ifdef PERL_NEED_MY_BETOH32
2439 BETOH(Perl_my_betoh32,U32)
2441 NOT_AVAIL(Perl_my_betoh32,U32)
2445 #ifdef PERL_NEED_MY_HTOLE64
2447 HTOLE(Perl_my_htole64,U64)
2449 NOT_AVAIL(Perl_my_htole64,U64)
2452 #ifdef PERL_NEED_MY_LETOH64
2454 LETOH(Perl_my_letoh64,U64)
2456 NOT_AVAIL(Perl_my_letoh64,U64)
2459 #ifdef PERL_NEED_MY_HTOBE64
2461 HTOBE(Perl_my_htobe64,U64)
2463 NOT_AVAIL(Perl_my_htobe64,U64)
2466 #ifdef PERL_NEED_MY_BETOH64
2468 BETOH(Perl_my_betoh64,U64)
2470 NOT_AVAIL(Perl_my_betoh64,U64)
2474 #ifdef PERL_NEED_MY_HTOLES
2475 HTOLE(Perl_my_htoles,short)
2477 #ifdef PERL_NEED_MY_LETOHS
2478 LETOH(Perl_my_letohs,short)
2480 #ifdef PERL_NEED_MY_HTOBES
2481 HTOBE(Perl_my_htobes,short)
2483 #ifdef PERL_NEED_MY_BETOHS
2484 BETOH(Perl_my_betohs,short)
2487 #ifdef PERL_NEED_MY_HTOLEI
2488 HTOLE(Perl_my_htolei,int)
2490 #ifdef PERL_NEED_MY_LETOHI
2491 LETOH(Perl_my_letohi,int)
2493 #ifdef PERL_NEED_MY_HTOBEI
2494 HTOBE(Perl_my_htobei,int)
2496 #ifdef PERL_NEED_MY_BETOHI
2497 BETOH(Perl_my_betohi,int)
2500 #ifdef PERL_NEED_MY_HTOLEL
2501 HTOLE(Perl_my_htolel,long)
2503 #ifdef PERL_NEED_MY_LETOHL
2504 LETOH(Perl_my_letohl,long)
2506 #ifdef PERL_NEED_MY_HTOBEL
2507 HTOBE(Perl_my_htobel,long)
2509 #ifdef PERL_NEED_MY_BETOHL
2510 BETOH(Perl_my_betohl,long)
2514 Perl_my_swabn(void *ptr, int n)
2516 register char *s = (char *)ptr;
2517 register char *e = s + (n-1);
2520 PERL_ARGS_ASSERT_MY_SWABN;
2522 for (n /= 2; n > 0; s++, e--, n--) {
2530 Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
2532 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(OS2) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(NETWARE) && !defined(__LIBCATAMOUNT__)
2535 register I32 This, that;
2541 PERL_ARGS_ASSERT_MY_POPEN_LIST;
2543 PERL_FLUSHALL_FOR_CHILD;
2544 This = (*mode == 'w');
2548 taint_proper("Insecure %s%s", "EXEC");
2550 if (PerlProc_pipe(p) < 0)
2552 /* Try for another pipe pair for error return */
2553 if (PerlProc_pipe(pp) >= 0)
2555 while ((pid = PerlProc_fork()) < 0) {
2556 if (errno != EAGAIN) {
2557 PerlLIO_close(p[This]);
2558 PerlLIO_close(p[that]);
2560 PerlLIO_close(pp[0]);
2561 PerlLIO_close(pp[1]);
2565 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2574 /* Close parent's end of error status pipe (if any) */
2576 PerlLIO_close(pp[0]);
2577 #if defined(HAS_FCNTL) && defined(F_SETFD)
2578 /* Close error pipe automatically if exec works */
2579 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2582 /* Now dup our end of _the_ pipe to right position */
2583 if (p[THIS] != (*mode == 'r')) {
2584 PerlLIO_dup2(p[THIS], *mode == 'r');
2585 PerlLIO_close(p[THIS]);
2586 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2587 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2590 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2591 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2592 /* No automatic close - do it by hand */
2599 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
2605 do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
2611 do_execfree(); /* free any memory malloced by child on fork */
2613 PerlLIO_close(pp[1]);
2614 /* Keep the lower of the two fd numbers */
2615 if (p[that] < p[This]) {
2616 PerlLIO_dup2(p[This], p[that]);
2617 PerlLIO_close(p[This]);
2621 PerlLIO_close(p[that]); /* close child's end of pipe */
2623 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2624 SvUPGRADE(sv,SVt_IV);
2626 PL_forkprocess = pid;
2627 /* If we managed to get status pipe check for exec fail */
2628 if (did_pipes && pid > 0) {
2633 while (n < sizeof(int)) {
2634 n1 = PerlLIO_read(pp[0],
2635 (void*)(((char*)&errkid)+n),
2641 PerlLIO_close(pp[0]);
2643 if (n) { /* Error */
2645 PerlLIO_close(p[This]);
2646 if (n != sizeof(int))
2647 Perl_croak(aTHX_ "panic: kid popen errno read");
2649 pid2 = wait4pid(pid, &status, 0);
2650 } while (pid2 == -1 && errno == EINTR);
2651 errno = errkid; /* Propagate errno from kid */
2656 PerlLIO_close(pp[0]);
2657 return PerlIO_fdopen(p[This], mode);
2659 # ifdef OS2 /* Same, without fork()ing and all extra overhead... */
2660 return my_syspopen4(aTHX_ NULL, mode, n, args);
2662 Perl_croak(aTHX_ "List form of piped open not implemented");
2663 return (PerlIO *) NULL;
2668 /* VMS' my_popen() is in VMS.c, same with OS/2. */
2669 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(__LIBCATAMOUNT__)
2671 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2675 register I32 This, that;
2678 const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
2682 PERL_ARGS_ASSERT_MY_POPEN;
2684 PERL_FLUSHALL_FOR_CHILD;
2687 return my_syspopen(aTHX_ cmd,mode);
2690 This = (*mode == 'w');
2692 if (doexec && PL_tainting) {
2694 taint_proper("Insecure %s%s", "EXEC");
2696 if (PerlProc_pipe(p) < 0)
2698 if (doexec && PerlProc_pipe(pp) >= 0)
2700 while ((pid = PerlProc_fork()) < 0) {
2701 if (errno != EAGAIN) {
2702 PerlLIO_close(p[This]);
2703 PerlLIO_close(p[that]);
2705 PerlLIO_close(pp[0]);
2706 PerlLIO_close(pp[1]);
2709 Perl_croak(aTHX_ "Can't fork: %s", Strerror(errno));
2712 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2723 PerlLIO_close(pp[0]);
2724 #if defined(HAS_FCNTL) && defined(F_SETFD)
2725 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2728 if (p[THIS] != (*mode == 'r')) {
2729 PerlLIO_dup2(p[THIS], *mode == 'r');
2730 PerlLIO_close(p[THIS]);
2731 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2732 PerlLIO_close(p[THAT]);
2735 PerlLIO_close(p[THAT]);
2738 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2745 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2750 /* may or may not use the shell */
2751 do_exec3(cmd, pp[1], did_pipes);
2754 #endif /* defined OS2 */
2756 #ifdef PERLIO_USING_CRLF
2757 /* Since we circumvent IO layers when we manipulate low-level
2758 filedescriptors directly, need to manually switch to the
2759 default, binary, low-level mode; see PerlIOBuf_open(). */
2760 PerlLIO_setmode((*mode == 'r'), O_BINARY);
2763 if ((tmpgv = gv_fetchpvs("$", GV_ADD|GV_NOTQUAL, SVt_PV))) {
2764 SvREADONLY_off(GvSV(tmpgv));
2765 sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2766 SvREADONLY_on(GvSV(tmpgv));
2768 #ifdef THREADS_HAVE_PIDS
2769 PL_ppid = (IV)getppid();
2772 #ifdef PERL_USES_PL_PIDSTATUS
2773 hv_clear(PL_pidstatus); /* we have no children */
2779 do_execfree(); /* free any memory malloced by child on vfork */
2781 PerlLIO_close(pp[1]);
2782 if (p[that] < p[This]) {
2783 PerlLIO_dup2(p[This], p[that]);
2784 PerlLIO_close(p[This]);
2788 PerlLIO_close(p[that]);
2790 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2791 SvUPGRADE(sv,SVt_IV);
2793 PL_forkprocess = pid;
2794 if (did_pipes && pid > 0) {
2799 while (n < sizeof(int)) {
2800 n1 = PerlLIO_read(pp[0],
2801 (void*)(((char*)&errkid)+n),
2807 PerlLIO_close(pp[0]);
2809 if (n) { /* Error */
2811 PerlLIO_close(p[This]);
2812 if (n != sizeof(int))
2813 Perl_croak(aTHX_ "panic: kid popen errno read");
2815 pid2 = wait4pid(pid, &status, 0);
2816 } while (pid2 == -1 && errno == EINTR);
2817 errno = errkid; /* Propagate errno from kid */
2822 PerlLIO_close(pp[0]);
2823 return PerlIO_fdopen(p[This], mode);
2826 #if defined(atarist) || defined(EPOC)
2829 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2831 PERL_ARGS_ASSERT_MY_POPEN;
2832 PERL_FLUSHALL_FOR_CHILD;
2833 /* Call system's popen() to get a FILE *, then import it.
2834 used 0 for 2nd parameter to PerlIO_importFILE;
2837 return PerlIO_importFILE(popen(cmd, mode), 0);
2841 FILE *djgpp_popen();
2843 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2845 PERL_FLUSHALL_FOR_CHILD;
2846 /* Call system's popen() to get a FILE *, then import it.
2847 used 0 for 2nd parameter to PerlIO_importFILE;
2850 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2853 #if defined(__LIBCATAMOUNT__)
2855 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2863 #endif /* !DOSISH */
2865 /* this is called in parent before the fork() */
2867 Perl_atfork_lock(void)
2870 #if defined(USE_ITHREADS)
2871 /* locks must be held in locking order (if any) */
2873 MUTEX_LOCK(&PL_malloc_mutex);
2879 /* this is called in both parent and child after the fork() */
2881 Perl_atfork_unlock(void)
2884 #if defined(USE_ITHREADS)
2885 /* locks must be released in same order as in atfork_lock() */
2887 MUTEX_UNLOCK(&PL_malloc_mutex);
2896 #if defined(HAS_FORK)
2898 #if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
2903 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2904 * handlers elsewhere in the code */
2909 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2910 Perl_croak_nocontext("fork() not available");
2912 #endif /* HAS_FORK */
2917 Perl_dump_fds(pTHX_ const char *const s)
2922 PERL_ARGS_ASSERT_DUMP_FDS;
2924 PerlIO_printf(Perl_debug_log,"%s", s);
2925 for (fd = 0; fd < 32; fd++) {
2926 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2927 PerlIO_printf(Perl_debug_log," %d",fd);
2929 PerlIO_printf(Perl_debug_log,"\n");
2932 #endif /* DUMP_FDS */
2936 dup2(int oldfd, int newfd)
2938 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2941 PerlLIO_close(newfd);
2942 return fcntl(oldfd, F_DUPFD, newfd);
2944 #define DUP2_MAX_FDS 256
2945 int fdtmp[DUP2_MAX_FDS];
2951 PerlLIO_close(newfd);
2952 /* good enough for low fd's... */
2953 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2954 if (fdx >= DUP2_MAX_FDS) {
2962 PerlLIO_close(fdtmp[--fdx]);
2969 #ifdef HAS_SIGACTION
2972 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2975 struct sigaction act, oact;
2978 /* only "parent" interpreter can diddle signals */
2979 if (PL_curinterp != aTHX)
2980 return (Sighandler_t) SIG_ERR;
2983 act.sa_handler = (void(*)(int))handler;
2984 sigemptyset(&act.sa_mask);
2987 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2988 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2990 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2991 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2992 act.sa_flags |= SA_NOCLDWAIT;
2994 if (sigaction(signo, &act, &oact) == -1)
2995 return (Sighandler_t) SIG_ERR;
2997 return (Sighandler_t) oact.sa_handler;
3001 Perl_rsignal_state(pTHX_ int signo)
3003 struct sigaction oact;
3004 PERL_UNUSED_CONTEXT;
3006 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
3007 return (Sighandler_t) SIG_ERR;
3009 return (Sighandler_t) oact.sa_handler;
3013 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
3016 struct sigaction act;
3018 PERL_ARGS_ASSERT_RSIGNAL_SAVE;
3021 /* only "parent" interpreter can diddle signals */
3022 if (PL_curinterp != aTHX)
3026 act.sa_handler = (void(*)(int))handler;
3027 sigemptyset(&act.sa_mask);
3030 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
3031 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
3033 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
3034 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
3035 act.sa_flags |= SA_NOCLDWAIT;
3037 return sigaction(signo, &act, save);
3041 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
3045 /* only "parent" interpreter can diddle signals */
3046 if (PL_curinterp != aTHX)
3050 return sigaction(signo, save, (struct sigaction *)NULL);
3053 #else /* !HAS_SIGACTION */
3056 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
3058 #if defined(USE_ITHREADS) && !defined(WIN32)
3059 /* only "parent" interpreter can diddle signals */
3060 if (PL_curinterp != aTHX)
3061 return (Sighandler_t) SIG_ERR;
3064 return PerlProc_signal(signo, handler);
3075 Perl_rsignal_state(pTHX_ int signo)
3078 Sighandler_t oldsig;
3080 #if defined(USE_ITHREADS) && !defined(WIN32)
3081 /* only "parent" interpreter can diddle signals */
3082 if (PL_curinterp != aTHX)
3083 return (Sighandler_t) SIG_ERR;
3087 oldsig = PerlProc_signal(signo, sig_trap);
3088 PerlProc_signal(signo, oldsig);
3090 PerlProc_kill(PerlProc_getpid(), signo);
3095 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
3097 #if defined(USE_ITHREADS) && !defined(WIN32)
3098 /* only "parent" interpreter can diddle signals */
3099 if (PL_curinterp != aTHX)
3102 *save = PerlProc_signal(signo, handler);
3103 return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
3107 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
3109 #if defined(USE_ITHREADS) && !defined(WIN32)
3110 /* only "parent" interpreter can diddle signals */
3111 if (PL_curinterp != aTHX)
3114 return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
3117 #endif /* !HAS_SIGACTION */
3118 #endif /* !PERL_MICRO */
3120 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
3121 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(__LIBCATAMOUNT__)
3123 Perl_my_pclose(pTHX_ PerlIO *ptr)
3126 Sigsave_t hstat, istat, qstat;
3133 const int fd = PerlIO_fileno(ptr);
3136 /* Find out whether the refcount is low enough for us to wait for the
3137 child proc without blocking. */
3138 const bool should_wait = PerlIOUnix_refcnt(fd) == 1;
3140 const bool should_wait = 1;
3143 svp = av_fetch(PL_fdpid,fd,TRUE);
3144 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
3146 *svp = &PL_sv_undef;
3148 if (pid == -1) { /* Opened by popen. */
3149 return my_syspclose(ptr);
3152 close_failed = (PerlIO_close(ptr) == EOF);
3155 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
3158 rsignal_save(SIGHUP, (Sighandler_t) SIG_IGN, &hstat);
3159 rsignal_save(SIGINT, (Sighandler_t) SIG_IGN, &istat);
3160 rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qstat);
3162 if (should_wait) do {
3163 pid2 = wait4pid(pid, &status, 0);
3164 } while (pid2 == -1 && errno == EINTR);
3166 rsignal_restore(SIGHUP, &hstat);
3167 rsignal_restore(SIGINT, &istat);
3168 rsignal_restore(SIGQUIT, &qstat);
3176 ? pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status)
3181 #if defined(__LIBCATAMOUNT__)
3183 Perl_my_pclose(pTHX_ PerlIO *ptr)
3188 #endif /* !DOSISH */
3190 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(__LIBCATAMOUNT__)
3192 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
3196 PERL_ARGS_ASSERT_WAIT4PID;
3199 #ifdef PERL_USES_PL_PIDSTATUS
3202 /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
3203 pid, rather than a string form. */
3204 SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
3205 if (svp && *svp != &PL_sv_undef) {
3206 *statusp = SvIVX(*svp);
3207 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
3215 hv_iterinit(PL_pidstatus);
3216 if ((entry = hv_iternext(PL_pidstatus))) {
3217 SV * const sv = hv_iterval(PL_pidstatus,entry);
3219 const char * const spid = hv_iterkey(entry,&len);
3221 assert (len == sizeof(Pid_t));
3222 memcpy((char *)&pid, spid, len);
3223 *statusp = SvIVX(sv);
3224 /* The hash iterator is currently on this entry, so simply
3225 calling hv_delete would trigger the lazy delete, which on
3226 aggregate does more work, beacuse next call to hv_iterinit()
3227 would spot the flag, and have to call the delete routine,
3228 while in the meantime any new entries can't re-use that
3230 hv_iterinit(PL_pidstatus);
3231 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
3238 # ifdef HAS_WAITPID_RUNTIME
3239 if (!HAS_WAITPID_RUNTIME)
3242 result = PerlProc_waitpid(pid,statusp,flags);
3245 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
3246 result = wait4((pid==-1)?0:pid,statusp,flags,NULL);
3249 #ifdef PERL_USES_PL_PIDSTATUS
3250 #if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
3255 Perl_croak(aTHX_ "Can't do waitpid with flags");
3257 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
3258 pidgone(result,*statusp);
3264 #if defined(HAS_WAITPID) || defined(HAS_WAIT4)
3267 if (result < 0 && errno == EINTR) {
3269 errno = EINTR; /* reset in case a signal handler changed $! */
3273 #endif /* !DOSISH || OS2 || WIN32 || NETWARE */
3275 #ifdef PERL_USES_PL_PIDSTATUS
3277 S_pidgone(pTHX_ Pid_t pid, int status)
3281 sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
3282 SvUPGRADE(sv,SVt_IV);
3283 SvIV_set(sv, status);
3288 #if defined(atarist) || defined(OS2) || defined(EPOC)
3291 int /* Cannot prototype with I32
3293 my_syspclose(PerlIO *ptr)
3296 Perl_my_pclose(pTHX_ PerlIO *ptr)
3299 /* Needs work for PerlIO ! */
3300 FILE * const f = PerlIO_findFILE(ptr);
3301 const I32 result = pclose(f);
3302 PerlIO_releaseFILE(ptr,f);
3310 Perl_my_pclose(pTHX_ PerlIO *ptr)
3312 /* Needs work for PerlIO ! */
3313 FILE * const f = PerlIO_findFILE(ptr);
3314 I32 result = djgpp_pclose(f);
3315 result = (result << 8) & 0xff00;
3316 PerlIO_releaseFILE(ptr,f);
3321 #define PERL_REPEATCPY_LINEAR 4
3323 Perl_repeatcpy(register char *to, register const char *from, I32 len, register I32 count)
3325 PERL_ARGS_ASSERT_REPEATCPY;
3328 memset(to, *from, count);
3330 register char *p = to;
3331 I32 items, linear, half;
3333 linear = count < PERL_REPEATCPY_LINEAR ? count : PERL_REPEATCPY_LINEAR;
3334 for (items = 0; items < linear; ++items) {
3335 register const char *q = from;
3337 for (todo = len; todo > 0; todo--)
3342 while (items <= half) {
3343 I32 size = items * len;
3344 memcpy(p, to, size);
3350 memcpy(p, to, (count - items) * len);
3356 Perl_same_dirent(pTHX_ const char *a, const char *b)
3358 char *fa = strrchr(a,'/');
3359 char *fb = strrchr(b,'/');
3362 SV * const tmpsv = sv_newmortal();
3364 PERL_ARGS_ASSERT_SAME_DIRENT;
3377 sv_setpvs(tmpsv, ".");
3379 sv_setpvn(tmpsv, a, fa - a);
3380 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
3383 sv_setpvs(tmpsv, ".");
3385 sv_setpvn(tmpsv, b, fb - b);
3386 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
3388 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3389 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3391 #endif /* !HAS_RENAME */
3394 Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3395 const char *const *const search_ext, I32 flags)
3398 const char *xfound = NULL;
3399 char *xfailed = NULL;
3400 char tmpbuf[MAXPATHLEN];
3405 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3406 # define SEARCH_EXTS ".bat", ".cmd", NULL
3407 # define MAX_EXT_LEN 4
3410 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3411 # define MAX_EXT_LEN 4
3414 # define SEARCH_EXTS ".pl", ".com", NULL
3415 # define MAX_EXT_LEN 4
3417 /* additional extensions to try in each dir if scriptname not found */
3419 static const char *const exts[] = { SEARCH_EXTS };
3420 const char *const *const ext = search_ext ? search_ext : exts;
3421 int extidx = 0, i = 0;
3422 const char *curext = NULL;
3424 PERL_UNUSED_ARG(search_ext);
3425 # define MAX_EXT_LEN 0
3428 PERL_ARGS_ASSERT_FIND_SCRIPT;
3431 * If dosearch is true and if scriptname does not contain path
3432 * delimiters, search the PATH for scriptname.
3434 * If SEARCH_EXTS is also defined, will look for each
3435 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3436 * while searching the PATH.
3438 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3439 * proceeds as follows:
3440 * If DOSISH or VMSISH:
3441 * + look for ./scriptname{,.foo,.bar}
3442 * + search the PATH for scriptname{,.foo,.bar}
3445 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3446 * this will not look in '.' if it's not in the PATH)
3451 # ifdef ALWAYS_DEFTYPES
3452 len = strlen(scriptname);
3453 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3454 int idx = 0, deftypes = 1;
3457 const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
3460 int idx = 0, deftypes = 1;
3463 const int hasdir = (strpbrk(scriptname,":[</") != NULL);
3465 /* The first time through, just add SEARCH_EXTS to whatever we
3466 * already have, so we can check for default file types. */
3468 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3474 if ((strlen(tmpbuf) + strlen(scriptname)
3475 + MAX_EXT_LEN) >= sizeof tmpbuf)
3476 continue; /* don't search dir with too-long name */
3477 my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
3481 if (strEQ(scriptname, "-"))
3483 if (dosearch) { /* Look in '.' first. */
3484 const char *cur = scriptname;
3486 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3488 if (strEQ(ext[i++],curext)) {
3489 extidx = -1; /* already has an ext */
3494 DEBUG_p(PerlIO_printf(Perl_debug_log,
3495 "Looking for %s\n",cur));
3496 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3497 && !S_ISDIR(PL_statbuf.st_mode)) {
3505 if (cur == scriptname) {
3506 len = strlen(scriptname);
3507 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3509 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3512 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3513 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
3518 if (dosearch && !strchr(scriptname, '/')
3520 && !strchr(scriptname, '\\')
3522 && (s = PerlEnv_getenv("PATH")))
3526 bufend = s + strlen(s);
3527 while (s < bufend) {
3528 #if defined(atarist) || defined(DOSISH)
3533 && *s != ';'; len++, s++) {
3534 if (len < sizeof tmpbuf)
3537 if (len < sizeof tmpbuf)
3539 #else /* ! (atarist || DOSISH) */
3540 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
3543 #endif /* ! (atarist || DOSISH) */
3546 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3547 continue; /* don't search dir with too-long name */
3549 # if defined(atarist) || defined(DOSISH)
3550 && tmpbuf[len - 1] != '/'
3551 && tmpbuf[len - 1] != '\\'
3554 tmpbuf[len++] = '/';
3555 if (len == 2 && tmpbuf[0] == '.')
3557 (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
3561 len = strlen(tmpbuf);
3562 if (extidx > 0) /* reset after previous loop */
3566 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3567 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3568 if (S_ISDIR(PL_statbuf.st_mode)) {
3572 } while ( retval < 0 /* not there */
3573 && extidx>=0 && ext[extidx] /* try an extension? */
3574 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
3579 if (S_ISREG(PL_statbuf.st_mode)
3580 && cando(S_IRUSR,TRUE,&PL_statbuf)
3581 #if !defined(DOSISH)
3582 && cando(S_IXUSR,TRUE,&PL_statbuf)
3586 xfound = tmpbuf; /* bingo! */
3590 xfailed = savepv(tmpbuf);
3593 if (!xfound && !seen_dot && !xfailed &&
3594 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
3595 || S_ISDIR(PL_statbuf.st_mode)))
3597 seen_dot = 1; /* Disable message. */
3599 if (flags & 1) { /* do or die? */
3600 Perl_croak(aTHX_ "Can't %s %s%s%s",
3601 (xfailed ? "execute" : "find"),
3602 (xfailed ? xfailed : scriptname),
3603 (xfailed ? "" : " on PATH"),
3604 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3609 scriptname = xfound;
3611 return (scriptname ? savepv(scriptname) : NULL);
3614 #ifndef PERL_GET_CONTEXT_DEFINED
3617 Perl_get_context(void)
3620 #if defined(USE_ITHREADS)
3621 # ifdef OLD_PTHREADS_API
3623 if (pthread_getspecific(PL_thr_key, &t))
3624 Perl_croak_nocontext("panic: pthread_getspecific");
3627 # ifdef I_MACH_CTHREADS
3628 return (void*)cthread_data(cthread_self());
3630 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3639 Perl_set_context(void *t)
3642 PERL_ARGS_ASSERT_SET_CONTEXT;
3643 #if defined(USE_ITHREADS)
3644 # ifdef I_MACH_CTHREADS
3645 cthread_set_data(cthread_self(), t);
3647 if (pthread_setspecific(PL_thr_key, t))
3648 Perl_croak_nocontext("panic: pthread_setspecific");
3655 #endif /* !PERL_GET_CONTEXT_DEFINED */
3657 #if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
3666 Perl_get_op_names(pTHX)
3668 PERL_UNUSED_CONTEXT;
3669 return (char **)PL_op_name;
3673 Perl_get_op_descs(pTHX)
3675 PERL_UNUSED_CONTEXT;
3676 return (char **)PL_op_desc;
3680 Perl_get_no_modify(pTHX)
3682 PERL_UNUSED_CONTEXT;
3683 return PL_no_modify;
3687 Perl_get_opargs(pTHX)
3689 PERL_UNUSED_CONTEXT;
3690 return (U32 *)PL_opargs;
3694 Perl_get_ppaddr(pTHX)
3697 PERL_UNUSED_CONTEXT;
3698 return (PPADDR_t*)PL_ppaddr;
3701 #ifndef HAS_GETENV_LEN
3703 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3705 char * const env_trans = PerlEnv_getenv(env_elem);
3706 PERL_UNUSED_CONTEXT;
3707 PERL_ARGS_ASSERT_GETENV_LEN;
3709 *len = strlen(env_trans);
3716 Perl_get_vtbl(pTHX_ int vtbl_id)
3718 const MGVTBL* result;
3719 PERL_UNUSED_CONTEXT;
3723 result = &PL_vtbl_sv;
3726 result = &PL_vtbl_env;
3728 case want_vtbl_envelem:
3729 result = &PL_vtbl_envelem;
3732 result = &PL_vtbl_sig;
3734 case want_vtbl_sigelem:
3735 result = &PL_vtbl_sigelem;
3737 case want_vtbl_pack:
3738 result = &PL_vtbl_pack;
3740 case want_vtbl_packelem:
3741 result = &PL_vtbl_packelem;
3743 case want_vtbl_dbline:
3744 result = &PL_vtbl_dbline;
3747 result = &PL_vtbl_isa;
3749 case want_vtbl_isaelem:
3750 result = &PL_vtbl_isaelem;
3752 case want_vtbl_arylen:
3753 result = &PL_vtbl_arylen;
3755 case want_vtbl_mglob:
3756 result = &PL_vtbl_mglob;
3758 case want_vtbl_nkeys:
3759 result = &PL_vtbl_nkeys;
3761 case want_vtbl_taint:
3762 result = &PL_vtbl_taint;
3764 case want_vtbl_substr:
3765 result = &PL_vtbl_substr;
3768 result = &PL_vtbl_vec;
3771 result = &PL_vtbl_pos;
3774 result = &PL_vtbl_bm;
3777 result = &PL_vtbl_fm;
3779 case want_vtbl_uvar:
3780 result = &PL_vtbl_uvar;
3782 case want_vtbl_defelem:
3783 result = &PL_vtbl_defelem;
3785 case want_vtbl_regexp:
3786 result = &PL_vtbl_regexp;
3788 case want_vtbl_regdata:
3789 result = &PL_vtbl_regdata;
3791 case want_vtbl_regdatum:
3792 result = &PL_vtbl_regdatum;
3794 #ifdef USE_LOCALE_COLLATE
3795 case want_vtbl_collxfrm:
3796 result = &PL_vtbl_collxfrm;
3799 case want_vtbl_amagic:
3800 result = &PL_vtbl_amagic;
3802 case want_vtbl_amagicelem:
3803 result = &PL_vtbl_amagicelem;
3805 case want_vtbl_backref:
3806 result = &PL_vtbl_backref;
3808 case want_vtbl_utf8:
3809 result = &PL_vtbl_utf8;
3815 return (MGVTBL*)result;
3819 Perl_my_fflush_all(pTHX)
3821 #if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
3822 return PerlIO_flush(NULL);
3824 # if defined(HAS__FWALK)
3825 extern int fflush(FILE *);
3826 /* undocumented, unprototyped, but very useful BSDism */
3827 extern void _fwalk(int (*)(FILE *));
3831 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3833 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3834 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3836 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3837 open_max = sysconf(_SC_OPEN_MAX);
3840 open_max = FOPEN_MAX;
3843 open_max = OPEN_MAX;
3854 for (i = 0; i < open_max; i++)
3855 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3856 STDIO_STREAM_ARRAY[i]._file < open_max &&
3857 STDIO_STREAM_ARRAY[i]._flag)
3858 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3862 SETERRNO(EBADF,RMS_IFI);
3869 Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have)
3871 if (ckWARN(WARN_IO)) {
3872 const char * const name
3873 = gv && (isGV(gv) || isGV_with_GP(gv)) ? GvENAME(gv) : NULL;
3874 const char * const direction = have == '>' ? "out" : "in";
3877 Perl_warner(aTHX_ packWARN(WARN_IO),
3878 "Filehandle %s opened only for %sput",
3881 Perl_warner(aTHX_ packWARN(WARN_IO),
3882 "Filehandle opened only for %sput", direction);
3887 Perl_report_evil_fh(pTHX_ const GV *gv)
3889 const IO *io = gv ? GvIO(gv) : NULL;
3890 const PERL_BITFIELD16 op = PL_op->op_type;
3894 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3896 warn_type = WARN_CLOSED;
3900 warn_type = WARN_UNOPENED;
3903 if (ckWARN(warn_type)) {
3904 const char * const name
3905 = gv && (isGV(gv) || isGV_with_GP(gv)) ? GvENAME(gv) : NULL;
3906 const char * const pars =
3907 (const char *)(OP_IS_FILETEST(op) ? "" : "()");
3908 const char * const func =
3910 (op == OP_READLINE ? "readline" : /* "<HANDLE>" not nice */
3911 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3913 const char * const type =
3915 (OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET)
3916 ? "socket" : "filehandle");
3917 if (name && *name) {
3918 Perl_warner(aTHX_ packWARN(warn_type),
3919 "%s%s on %s %s %s", func, pars, vile, type, name);
3920 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3922 aTHX_ packWARN(warn_type),
3923 "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3928 Perl_warner(aTHX_ packWARN(warn_type),
3929 "%s%s on %s %s", func, pars, vile, type);
3930 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3932 aTHX_ packWARN(warn_type),
3933 "\t(Are you trying to call %s%s on dirhandle?)\n",
3940 /* To workaround core dumps from the uninitialised tm_zone we get the
3941 * system to give us a reasonable struct to copy. This fix means that
3942 * strftime uses the tm_zone and tm_gmtoff values returned by
3943 * localtime(time()). That should give the desired result most of the
3944 * time. But probably not always!
3946 * This does not address tzname aspects of NETaa14816.
3951 # ifndef STRUCT_TM_HASZONE
3952 # define STRUCT_TM_HASZONE
3956 #ifdef STRUCT_TM_HASZONE /* Backward compat */
3957 # ifndef HAS_TM_TM_ZONE
3958 # define HAS_TM_TM_ZONE
3963 Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
3965 #ifdef HAS_TM_TM_ZONE
3967 const struct tm* my_tm;
3968 PERL_ARGS_ASSERT_INIT_TM;
3970 my_tm = localtime(&now);
3972 Copy(my_tm, ptm, 1, struct tm);
3974 PERL_ARGS_ASSERT_INIT_TM;
3975 PERL_UNUSED_ARG(ptm);
3980 * mini_mktime - normalise struct tm values without the localtime()
3981 * semantics (and overhead) of mktime().
3984 Perl_mini_mktime(pTHX_ struct tm *ptm)
3988 int month, mday, year, jday;
3989 int odd_cent, odd_year;
3990 PERL_UNUSED_CONTEXT;
3992 PERL_ARGS_ASSERT_MINI_MKTIME;
3994 #define DAYS_PER_YEAR 365
3995 #define DAYS_PER_QYEAR (4*DAYS_PER_YEAR+1)
3996 #define DAYS_PER_CENT (25*DAYS_PER_QYEAR-1)
3997 #define DAYS_PER_QCENT (4*DAYS_PER_CENT+1)
3998 #define SECS_PER_HOUR (60*60)
3999 #define SECS_PER_DAY (24*SECS_PER_HOUR)
4000 /* parentheses deliberately absent on these two, otherwise they don't work */
4001 #define MONTH_TO_DAYS 153/5
4002 #define DAYS_TO_MONTH 5/153
4003 /* offset to bias by March (month 4) 1st between month/mday & year finding */
4004 #define YEAR_ADJUST (4*MONTH_TO_DAYS+1)
4005 /* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
4006 #define WEEKDAY_BIAS 6 /* (1+6)%7 makes Sunday 0 again */
4009 * Year/day algorithm notes:
4011 * With a suitable offset for numeric value of the month, one can find
4012 * an offset into the year by considering months to have 30.6 (153/5) days,
4013 * using integer arithmetic (i.e., with truncation). To avoid too much
4014 * messing about with leap days, we consider January and February to be
4015 * the 13th and 14th month of the previous year. After that transformation,
4016 * we need the month index we use to be high by 1 from 'normal human' usage,
4017 * so the month index values we use run from 4 through 15.
4019 * Given that, and the rules for the Gregorian calendar (leap years are those
4020 * divisible by 4 unless also divisible by 100, when they must be divisible
4021 * by 400 instead), we can simply calculate the number of days since some
4022 * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
4023 * the days we derive from our month index, and adding in the day of the
4024 * month. The value used here is not adjusted for the actual origin which
4025 * it normally would use (1 January A.D. 1), since we're not exposing it.
4026 * We're only building the value so we can turn around and get the
4027 * normalised values for the year, month, day-of-month, and day-of-year.
4029 * For going backward, we need to bias the value we're using so that we find
4030 * the right year value. (Basically, we don't want the contribution of
4031 * March 1st to the number to apply while deriving the year). Having done
4032 * that, we 'count up' the contribution to the year number by accounting for
4033 * full quadracenturies (400-year periods) with their extra leap days, plus
4034 * the contribution from full centuries (to avoid counting in the lost leap
4035 * days), plus the contribution from full quad-years (to count in the normal
4036 * leap days), plus the leftover contribution from any non-leap years.
4037 * At this point, if we were working with an actual leap day, we'll have 0
4038 * days left over. This is also true for March 1st, however. So, we have
4039 * to special-case that result, and (earlier) keep track of the 'odd'
4040 * century and year contributions. If we got 4 extra centuries in a qcent,
4041 * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
4042 * Otherwise, we add back in the earlier bias we removed (the 123 from
4043 * figuring in March 1st), find the month index (integer division by 30.6),
4044 * and the remainder is the day-of-month. We then have to convert back to
4045 * 'real' months (including fixing January and February from being 14/15 in
4046 * the previous year to being in the proper year). After that, to get
4047 * tm_yday, we work with the normalised year and get a new yearday value for
4048 * January 1st, which we subtract from the yearday value we had earlier,
4049 * representing the date we've re-built. This is done from January 1
4050 * because tm_yday is 0-origin.
4052 * Since POSIX time routines are only guaranteed to work for times since the
4053 * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
4054 * applies Gregorian calendar rules even to dates before the 16th century
4055 * doesn't bother me. Besides, you'd need cultural context for a given
4056 * date to know whether it was Julian or Gregorian calendar, and that's
4057 * outside the scope for this routine. Since we convert back based on the
4058 * same rules we used to build the yearday, you'll only get strange results
4059 * for input which needed normalising, or for the 'odd' century years which
4060 * were leap years in the Julian calendar but not in the Gregorian one.
4061 * I can live with that.
4063 * This algorithm also fails to handle years before A.D. 1 gracefully, but
4064 * that's still outside the scope for POSIX time manipulation, so I don't
4068 year = 1900 + ptm->tm_year;
4069 month = ptm->tm_mon;
4070 mday = ptm->tm_mday;
4071 /* allow given yday with no month & mday to dominate the result */
4072 if (ptm->tm_yday >= 0 && mday <= 0 && month <= 0) {
4075 jday = 1 + ptm->tm_yday;
4084 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
4085 yearday += month*MONTH_TO_DAYS + mday + jday;
4087 * Note that we don't know when leap-seconds were or will be,
4088 * so we have to trust the user if we get something which looks
4089 * like a sensible leap-second. Wild values for seconds will
4090 * be rationalised, however.
4092 if ((unsigned) ptm->tm_sec <= 60) {
4099 secs += 60 * ptm->tm_min;
4100 secs += SECS_PER_HOUR * ptm->tm_hour;
4102 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
4103 /* got negative remainder, but need positive time */
4104 /* back off an extra day to compensate */
4105 yearday += (secs/SECS_PER_DAY)-1;
4106 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
4109 yearday += (secs/SECS_PER_DAY);
4110 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
4113 else if (secs >= SECS_PER_DAY) {
4114 yearday += (secs/SECS_PER_DAY);
4115 secs %= SECS_PER_DAY;
4117 ptm->tm_hour = secs/SECS_PER_HOUR;
4118 secs %= SECS_PER_HOUR;
4119 ptm->tm_min = secs/60;
4121 ptm->tm_sec += secs;
4122 /* done with time of day effects */
4124 * The algorithm for yearday has (so far) left it high by 428.
4125 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
4126 * bias it by 123 while trying to figure out what year it
4127 * really represents. Even with this tweak, the reverse
4128 * translation fails for years before A.D. 0001.
4129 * It would still fail for Feb 29, but we catch that one below.
4131 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
4132 yearday -= YEAR_ADJUST;
4133 year = (yearday / DAYS_PER_QCENT) * 400;
4134 yearday %= DAYS_PER_QCENT;
4135 odd_cent = yearday / DAYS_PER_CENT;
4136 year += odd_cent * 100;
4137 yearday %= DAYS_PER_CENT;
4138 year += (yearday / DAYS_PER_QYEAR) * 4;
4139 yearday %= DAYS_PER_QYEAR;
4140 odd_year = yearday / DAYS_PER_YEAR;
4142 yearday %= DAYS_PER_YEAR;
4143 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
4148 yearday += YEAR_ADJUST; /* recover March 1st crock */
4149 month = yearday*DAYS_TO_MONTH;
4150 yearday -= month*MONTH_TO_DAYS;
4151 /* recover other leap-year adjustment */
4160 ptm->tm_year = year - 1900;
4162 ptm->tm_mday = yearday;
4163 ptm->tm_mon = month;
4167 ptm->tm_mon = month - 1;
4169 /* re-build yearday based on Jan 1 to get tm_yday */
4171 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
4172 yearday += 14*MONTH_TO_DAYS + 1;
4173 ptm->tm_yday = jday - yearday;
4174 /* fix tm_wday if not overridden by caller */
4175 if ((unsigned)ptm->tm_wday > 6)
4176 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
4180 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)
4188 PERL_ARGS_ASSERT_MY_STRFTIME;
4190 init_tm(&mytm); /* XXX workaround - see init_tm() above */
4193 mytm.tm_hour = hour;
4194 mytm.tm_mday = mday;
4196 mytm.tm_year = year;
4197 mytm.tm_wday = wday;
4198 mytm.tm_yday = yday;
4199 mytm.tm_isdst = isdst;
4201 /* use libc to get the values for tm_gmtoff and tm_zone [perl #18238] */
4202 #if defined(HAS_MKTIME) && (defined(HAS_TM_TM_GMTOFF) || defined(HAS_TM_TM_ZONE))
4207 #ifdef HAS_TM_TM_GMTOFF
4208 mytm.tm_gmtoff = mytm2.tm_gmtoff;
4210 #ifdef HAS_TM_TM_ZONE
4211 mytm.tm_zone = mytm2.tm_zone;
4216 Newx(buf, buflen, char);
4217 len = strftime(buf, buflen, fmt, &mytm);
4219 ** The following is needed to handle to the situation where
4220 ** tmpbuf overflows. Basically we want to allocate a buffer
4221 ** and try repeatedly. The reason why it is so complicated
4222 ** is that getting a return value of 0 from strftime can indicate
4223 ** one of the following:
4224 ** 1. buffer overflowed,
4225 ** 2. illegal conversion specifier, or
4226 ** 3. the format string specifies nothing to be returned(not
4227 ** an error). This could be because format is an empty string
4228 ** or it specifies %p that yields an empty string in some locale.
4229 ** If there is a better way to make it portable, go ahead by
4232 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
4235 /* Possibly buf overflowed - try again with a bigger buf */
4236 const int fmtlen = strlen(fmt);
4237 int bufsize = fmtlen + buflen;
4239 Renew(buf, bufsize, char);
4241 buflen = strftime(buf, bufsize, fmt, &mytm);
4242 if (buflen > 0 && buflen < bufsize)
4244 /* heuristic to prevent out-of-memory errors */
4245 if (bufsize > 100*fmtlen) {
4251 Renew(buf, bufsize, char);
4256 Perl_croak(aTHX_ "panic: no strftime");
4262 #define SV_CWD_RETURN_UNDEF \
4263 sv_setsv(sv, &PL_sv_undef); \
4266 #define SV_CWD_ISDOT(dp) \
4267 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
4268 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
4271 =head1 Miscellaneous Functions
4273 =for apidoc getcwd_sv
4275 Fill the sv with current working directory
4280 /* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
4281 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
4282 * getcwd(3) if available
4283 * Comments from the orignal:
4284 * This is a faster version of getcwd. It's also more dangerous
4285 * because you might chdir out of a directory that you can't chdir
4289 Perl_getcwd_sv(pTHX_ register SV *sv)
4293 #ifndef INCOMPLETE_TAINTS
4297 PERL_ARGS_ASSERT_GETCWD_SV;
4301 char buf[MAXPATHLEN];
4303 /* Some getcwd()s automatically allocate a buffer of the given
4304 * size from the heap if they are given a NULL buffer pointer.
4305 * The problem is that this behaviour is not portable. */
4306 if (getcwd(buf, sizeof(buf) - 1)) {
4311 sv_setsv(sv, &PL_sv_undef);
4319 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
4323 SvUPGRADE(sv, SVt_PV);
4325 if (PerlLIO_lstat(".", &statbuf) < 0) {
4326 SV_CWD_RETURN_UNDEF;
4329 orig_cdev = statbuf.st_dev;
4330 orig_cino = statbuf.st_ino;
4340 if (PerlDir_chdir("..") < 0) {
4341 SV_CWD_RETURN_UNDEF;
4343 if (PerlLIO_stat(".", &statbuf) < 0) {
4344 SV_CWD_RETURN_UNDEF;
4347 cdev = statbuf.st_dev;
4348 cino = statbuf.st_ino;
4350 if (odev == cdev && oino == cino) {
4353 if (!(dir = PerlDir_open("."))) {
4354 SV_CWD_RETURN_UNDEF;
4357 while ((dp = PerlDir_read(dir)) != NULL) {
4359 namelen = dp->d_namlen;
4361 namelen = strlen(dp->d_name);
4364 if (SV_CWD_ISDOT(dp)) {
4368 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
4369 SV_CWD_RETURN_UNDEF;
4372 tdev = statbuf.st_dev;
4373 tino = statbuf.st_ino;
4374 if (tino == oino && tdev == odev) {
4380 SV_CWD_RETURN_UNDEF;
4383 if (pathlen + namelen + 1 >= MAXPATHLEN) {
4384 SV_CWD_RETURN_UNDEF;
4387 SvGROW(sv, pathlen + namelen + 1);
4391 Move(SvPVX_const(sv), SvPVX(sv) + namelen + 1, pathlen, char);
4394 /* prepend current directory to the front */
4396 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
4397 pathlen += (namelen + 1);
4399 #ifdef VOID_CLOSEDIR
4402 if (PerlDir_close(dir) < 0) {
4403 SV_CWD_RETURN_UNDEF;
4409 SvCUR_set(sv, pathlen);
4413 if (PerlDir_chdir(SvPVX_const(sv)) < 0) {
4414 SV_CWD_RETURN_UNDEF;
4417 if (PerlLIO_stat(".", &statbuf) < 0) {
4418 SV_CWD_RETURN_UNDEF;
4421 cdev = statbuf.st_dev;
4422 cino = statbuf.st_ino;
4424 if (cdev != orig_cdev || cino != orig_cino) {
4425 Perl_croak(aTHX_ "Unstable directory path, "
4426 "current directory changed unexpectedly");
4437 #define VERSION_MAX 0x7FFFFFFF
4440 =for apidoc prescan_version
4442 Validate that a given string can be parsed as a version object, but doesn't
4443 actually perform the parsing. Can use either strict or lax validation rules.
4444 Can optionally set a number of hint variables to save the parsing code
4445 some time when tokenizing.
4450 Perl_prescan_version(pTHX_ const char *s, bool strict,
4451 const char **errstr,
4452 bool *sqv, int *ssaw_decimal, int *swidth, bool *salpha) {
4453 bool qv = (sqv ? *sqv : FALSE);
4455 int saw_decimal = 0;
4459 PERL_ARGS_ASSERT_PRESCAN_VERSION;
4461 if (qv && isDIGIT(*d))
4462 goto dotted_decimal_version;
4464 if (*d == 'v') { /* explicit v-string */
4469 else { /* degenerate v-string */
4470 /* requires v1.2.3 */
4471 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions require at least three parts)");
4474 dotted_decimal_version:
4475 if (strict && d[0] == '0' && isDIGIT(d[1])) {
4476 /* no leading zeros allowed */
4477 BADVERSION(s,errstr,"Invalid version format (no leading zeros)");
4480 while (isDIGIT(*d)) /* integer part */
4486 d++; /* decimal point */
4491 /* require v1.2.3 */
4492 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions require at least three parts)");
4495 goto version_prescan_finish;
4502 while (isDIGIT(*d)) { /* just keep reading */
4504 while (isDIGIT(*d)) {
4506 /* maximum 3 digits between decimal */
4507 if (strict && j > 3) {
4508 BADVERSION(s,errstr,"Invalid version format (maximum 3 digits between decimals)");
4513 BADVERSION(s,errstr,"Invalid version format (no underscores)");
4516 BADVERSION(s,errstr,"Invalid version format (multiple underscores)");
4521 else if (*d == '.') {
4523 BADVERSION(s,errstr,"Invalid version format (underscores before decimal)");
4528 else if (!isDIGIT(*d)) {
4534 if (strict && i < 2) {
4535 /* requires v1.2.3 */
4536 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions require at least three parts)");
4539 } /* end if dotted-decimal */
4541 { /* decimal versions */
4542 /* special strict case for leading '.' or '0' */
4545 BADVERSION(s,errstr,"Invalid version format (0 before decimal required)");
4547 if (*d == '0' && isDIGIT(d[1])) {
4548 BADVERSION(s,errstr,"Invalid version format (no leading zeros)");
4552 /* consume all of the integer part */
4556 /* look for a fractional part */
4558 /* we found it, so consume it */
4562 else if (!*d || *d == ';' || isSPACE(*d) || *d == '{' || *d == '}') {
4565 BADVERSION(s,errstr,"Invalid version format (version required)");
4567 /* found just an integer */
4568 goto version_prescan_finish;
4570 else if ( d == s ) {
4571 /* didn't find either integer or period */
4572 BADVERSION(s,errstr,"Invalid version format (non-numeric data)");
4574 else if (*d == '_') {
4575 /* underscore can't come after integer part */
4577 BADVERSION(s,errstr,"Invalid version format (no underscores)");
4579 else if (isDIGIT(d[1])) {
4580 BADVERSION(s,errstr,"Invalid version format (alpha without decimal)");
4583 BADVERSION(s,errstr,"Invalid version format (misplaced underscore)");
4587 /* anything else after integer part is just invalid data */
4588 BADVERSION(s,errstr,"Invalid version format (non-numeric data)");
4591 /* scan the fractional part after the decimal point*/
4593 if (!isDIGIT(*d) && (strict || ! (!*d || *d == ';' || isSPACE(*d) || *d == '{' || *d == '}') )) {
4594 /* strict or lax-but-not-the-end */
4595 BADVERSION(s,errstr,"Invalid version format (fractional part required)");
4598 while (isDIGIT(*d)) {
4600 if (*d == '.' && isDIGIT(d[-1])) {
4602 BADVERSION(s,errstr,"Invalid version format (underscores before decimal)");
4605 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions must begin with 'v')");
4607 d = (char *)s; /* start all over again */
4609 goto dotted_decimal_version;
4613 BADVERSION(s,errstr,"Invalid version format (no underscores)");
4616 BADVERSION(s,errstr,"Invalid version format (multiple underscores)");
4618 if ( ! isDIGIT(d[1]) ) {
4619 BADVERSION(s,errstr,"Invalid version format (misplaced underscore)");
4627 version_prescan_finish:
4631 if (!isDIGIT(*d) && (! (!*d || *d == ';' || *d == '{' || *d == '}') )) {
4632 /* trailing non-numeric data */
4633 BADVERSION(s,errstr,"Invalid version format (non-numeric data)");
4641 *ssaw_decimal = saw_decimal;
4648 =for apidoc scan_version
4650 Returns a pointer to the next character after the parsed
4651 version string, as well as upgrading the passed in SV to
4654 Function must be called with an already existing SV like
4657 s = scan_version(s, SV *sv, bool qv);
4659 Performs some preprocessing to the string to ensure that
4660 it has the correct characteristics of a version. Flags the
4661 object if it contains an underscore (which denotes this
4662 is an alpha version). The boolean qv denotes that the version
4663 should be interpreted as if it had multiple decimals, even if
4670 Perl_scan_version(pTHX_ const char *s, SV *rv, bool qv)
4675 const char *errstr = NULL;
4676 int saw_decimal = 0;
4680 AV * const av = newAV();
4681 SV * const hv = newSVrv(rv, "version"); /* create an SV and upgrade the RV */
4683 PERL_ARGS_ASSERT_SCAN_VERSION;
4685 (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
4687 #ifndef NODEFAULT_SHAREKEYS
4688 HvSHAREKEYS_on(hv); /* key-sharing on by default */
4691 while (isSPACE(*s)) /* leading whitespace is OK */
4694 last = prescan_version(s, FALSE, &errstr, &qv, &saw_decimal, &width, &alpha);
4696 /* "undef" is a special case and not an error */
4697 if ( ! ( *s == 'u' && strEQ(s,"undef")) ) {
4698 Perl_croak(aTHX_ "%s", errstr);
4708 (void)hv_stores(MUTABLE_HV(hv), "qv", newSViv(qv));
4710 (void)hv_stores(MUTABLE_HV(hv), "alpha", newSViv(alpha));
4711 if ( !qv && width < 3 )
4712 (void)hv_stores(MUTABLE_HV(hv), "width", newSViv(width));
4714 while (isDIGIT(*pos))
4716 if (!isALPHA(*pos)) {
4722 /* this is atoi() that delimits on underscores */
4723 const char *end = pos;
4727 /* the following if() will only be true after the decimal
4728 * point of a version originally created with a bare
4729 * floating point number, i.e. not quoted in any way
4731 if ( !qv && s > start && saw_decimal == 1 ) {
4735 rev += (*s - '0') * mult;
4737 if ( (PERL_ABS(orev) > PERL_ABS(rev))
4738 || (PERL_ABS(rev) > VERSION_MAX )) {
4739 Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4740 "Integer overflow in version %d",VERSION_MAX);
4751 while (--end >= s) {
4753 rev += (*end - '0') * mult;
4755 if ( (PERL_ABS(orev) > PERL_ABS(rev))
4756 || (PERL_ABS(rev) > VERSION_MAX )) {
4757 Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4758 "Integer overflow in version");
4767 /* Append revision */
4768 av_push(av, newSViv(rev));
4773 else if ( *pos == '.' )
4775 else if ( *pos == '_' && isDIGIT(pos[1]) )
4777 else if ( *pos == ',' && isDIGIT(pos[1]) )
4779 else if ( isDIGIT(*pos) )
4786 while ( isDIGIT(*pos) )
4791 while ( ( isDIGIT(*pos) || *pos == '_' ) && digits < 3 ) {
4799 if ( qv ) { /* quoted versions always get at least three terms*/
4800 I32 len = av_len(av);
4801 /* This for loop appears to trigger a compiler bug on OS X, as it
4802 loops infinitely. Yes, len is negative. No, it makes no sense.
4803 Compiler in question is:
4804 gcc version 3.3 20030304 (Apple Computer, Inc. build 1640)
4805 for ( len = 2 - len; len > 0; len-- )
4806 av_push(MUTABLE_AV(sv), newSViv(0));
4810 av_push(av, newSViv(0));
4813 /* need to save off the current version string for later */
4815 SV * orig = newSVpvn("v.Inf", sizeof("v.Inf")-1);
4816 (void)hv_stores(MUTABLE_HV(hv), "original", orig);
4817 (void)hv_stores(MUTABLE_HV(hv), "vinf", newSViv(1));
4819 else if ( s > start ) {
4820 SV * orig = newSVpvn(start,s-start);
4821 if ( qv && saw_decimal == 1 && *start != 'v' ) {
4822 /* need to insert a v to be consistent */
4823 sv_insert(orig, 0, 0, "v", 1);
4825 (void)hv_stores(MUTABLE_HV(hv), "original", orig);
4828 (void)hv_stores(MUTABLE_HV(hv), "original", newSVpvs("0"));
4829 av_push(av, newSViv(0));
4832 /* And finally, store the AV in the hash */
4833 (void)hv_stores(MUTABLE_HV(hv), "version", newRV_noinc(MUTABLE_SV(av)));
4835 /* fix RT#19517 - special case 'undef' as string */
4836 if ( *s == 'u' && strEQ(s,"undef") ) {
4844 =for apidoc new_version
4846 Returns a new version object based on the passed in SV:
4848 SV *sv = new_version(SV *ver);
4850 Does not alter the passed in ver SV. See "upg_version" if you
4851 want to upgrade the SV.
4857 Perl_new_version(pTHX_ SV *ver)
4860 SV * const rv = newSV(0);
4861 PERL_ARGS_ASSERT_NEW_VERSION;
4862 if ( sv_derived_from(ver,"version") ) /* can just copy directly */
4865 AV * const av = newAV();
4867 /* This will get reblessed later if a derived class*/
4868 SV * const hv = newSVrv(rv, "version");
4869 (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
4870 #ifndef NODEFAULT_SHAREKEYS
4871 HvSHAREKEYS_on(hv); /* key-sharing on by default */
4877 /* Begin copying all of the elements */
4878 if ( hv_exists(MUTABLE_HV(ver), "qv", 2) )
4879 (void)hv_stores(MUTABLE_HV(hv), "qv", newSViv(1));
4881 if ( hv_exists(MUTABLE_HV(ver), "alpha", 5) )
4882 (void)hv_stores(MUTABLE_HV(hv), "alpha", newSViv(1));
4884 if ( hv_exists(MUTABLE_HV(ver), "width", 5 ) )
4886 const I32 width = SvIV(*hv_fetchs(MUTABLE_HV(ver), "width", FALSE));
4887 (void)hv_stores(MUTABLE_HV(hv), "width", newSViv(width));
4890 if ( hv_exists(MUTABLE_HV(ver), "original", 8 ) )
4892 SV * pv = *hv_fetchs(MUTABLE_HV(ver), "original", FALSE);
4893 (void)hv_stores(MUTABLE_HV(hv), "original", newSVsv(pv));
4896 sav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(ver), "version", FALSE)));
4897 /* This will get reblessed later if a derived class*/
4898 for ( key = 0; key <= av_len(sav); key++ )
4900 const I32 rev = SvIV(*av_fetch(sav, key, FALSE));
4901 av_push(av, newSViv(rev));
4904 (void)hv_stores(MUTABLE_HV(hv), "version", newRV_noinc(MUTABLE_SV(av)));
4909 const MAGIC* const mg = SvVSTRING_mg(ver);
4910 if ( mg ) { /* already a v-string */
4911 const STRLEN len = mg->mg_len;
4912 char * const version = savepvn( (const char*)mg->mg_ptr, len);
4913 sv_setpvn(rv,version,len);
4914 /* this is for consistency with the pure Perl class */
4915 if ( isDIGIT(*version) )
4916 sv_insert(rv, 0, 0, "v", 1);
4921 sv_setsv(rv,ver); /* make a duplicate */
4926 return upg_version(rv, FALSE);
4930 =for apidoc upg_version
4932 In-place upgrade of the supplied SV to a version object.
4934 SV *sv = upg_version(SV *sv, bool qv);
4936 Returns a pointer to the upgraded SV. Set the boolean qv if you want
4937 to force this SV to be interpreted as an "extended" version.
4943 Perl_upg_version(pTHX_ SV *ver, bool qv)
4945 const char *version, *s;
4950 PERL_ARGS_ASSERT_UPG_VERSION;
4952 if ( SvNOK(ver) && !( SvPOK(ver) && sv_len(ver) == 3 ) )
4954 /* may get too much accuracy */
4956 #ifdef USE_LOCALE_NUMERIC
4957 char *loc = setlocale(LC_NUMERIC, "C");
4959 STRLEN len = my_snprintf(tbuf, sizeof(tbuf), "%.9"NVff, SvNVX(ver));
4960 #ifdef USE_LOCALE_NUMERIC
4961 setlocale(LC_NUMERIC, loc);
4963 while (tbuf[len-1] == '0' && len > 0) len--;
4964 if ( tbuf[len-1] == '.' ) len--; /* eat the trailing decimal */
4965 version = savepvn(tbuf, len);
4968 else if ( (mg = SvVSTRING_mg(ver)) ) { /* already a v-string */
4969 version = savepvn( (const char*)mg->mg_ptr,mg->mg_len );
4973 else /* must be a string or something like a string */
4976 version = savepv(SvPV(ver,len));
4978 # if PERL_VERSION > 5
4979 /* This will only be executed for 5.6.0 - 5.8.0 inclusive */
4980 if ( len >= 3 && !instr(version,".") && !instr(version,"_")) {
4981 /* may be a v-string */
4982 char *testv = (char *)version;
4984 for (tlen=0; tlen < len; tlen++, testv++) {
4985 /* if one of the characters is non-text assume v-string */
4986 if (testv[0] < ' ') {
4987 SV * const nsv = sv_newmortal();
4990 int saw_decimal = 0;
4991 sv_setpvf(nsv,"v%vd",ver);
4992 pos = nver = savepv(SvPV_nolen(nsv));
4994 /* scan the resulting formatted string */
4995 pos++; /* skip the leading 'v' */
4996 while ( *pos == '.' || isDIGIT(*pos) ) {
5002 /* is definitely a v-string */
5003 if ( saw_decimal >= 2 ) {
5015 s = scan_version(version, ver, qv);
5017 Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
5018 "Version string '%s' contains invalid data; "
5019 "ignoring: '%s'", version, s);
5027 Validates that the SV contains valid internal structure for a version object.
5028 It may be passed either the version object (RV) or the hash itself (HV). If
5029 the structure is valid, it returns the HV. If the structure is invalid,
5032 SV *hv = vverify(sv);
5034 Note that it only confirms the bare minimum structure (so as n