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
31 # define SIG_ERR ((Sighandler_t) -1)
36 /* Missing protos on LynxOS */
41 # include <sys/wait.h>
46 # include <sys/select.h>
52 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
53 # define FD_CLOEXEC 1 /* NeXT needs this */
56 /* NOTE: Do not call the next three routines directly. Use the macros
57 * in handy.h, so that we can easily redefine everything to do tracking of
58 * allocated hunks back to the original New to track down any memory leaks.
59 * XXX This advice seems to be widely ignored :-( --AD August 1996.
66 /* Can't use PerlIO to write as it allocates memory */
67 PerlLIO_write(PerlIO_fileno(Perl_error_log),
68 PL_no_mem, strlen(PL_no_mem));
70 NORETURN_FUNCTION_END;
73 #if defined (DEBUGGING) || defined(PERL_IMPLICIT_SYS) || defined (PERL_TRACK_MEMPOOL)
74 # define ALWAYS_NEED_THX
77 /* paranoid version of system's malloc() */
80 Perl_safesysmalloc(MEM_SIZE size)
82 #ifdef ALWAYS_NEED_THX
88 PerlIO_printf(Perl_error_log,
89 "Allocation too large: %lx\n", size) FLUSH;
92 #endif /* HAS_64K_LIMIT */
93 #ifdef PERL_TRACK_MEMPOOL
98 Perl_croak_nocontext("panic: malloc");
100 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
101 PERL_ALLOC_CHECK(ptr);
103 #ifdef PERL_TRACK_MEMPOOL
104 struct perl_memory_debug_header *const header
105 = (struct perl_memory_debug_header *)ptr;
109 PoisonNew(((char *)ptr), size, char);
112 #ifdef PERL_TRACK_MEMPOOL
113 header->interpreter = aTHX;
114 /* Link us into the list. */
115 header->prev = &PL_memory_debug_header;
116 header->next = PL_memory_debug_header.next;
117 PL_memory_debug_header.next = header;
118 header->next->prev = header;
122 ptr = (Malloc_t)((char*)ptr+sTHX);
124 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
128 #ifndef ALWAYS_NEED_THX
134 return write_no_mem();
140 /* paranoid version of system's realloc() */
143 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
145 #ifdef ALWAYS_NEED_THX
149 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
150 Malloc_t PerlMem_realloc();
151 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
155 PerlIO_printf(Perl_error_log,
156 "Reallocation too large: %lx\n", size) FLUSH;
159 #endif /* HAS_64K_LIMIT */
166 return safesysmalloc(size);
167 #ifdef PERL_TRACK_MEMPOOL
168 where = (Malloc_t)((char*)where-sTHX);
171 struct perl_memory_debug_header *const header
172 = (struct perl_memory_debug_header *)where;
174 if (header->interpreter != aTHX) {
175 Perl_croak_nocontext("panic: realloc from wrong pool");
177 assert(header->next->prev == header);
178 assert(header->prev->next == header);
180 if (header->size > size) {
181 const MEM_SIZE freed_up = header->size - size;
182 char *start_of_freed = ((char *)where) + size;
183 PoisonFree(start_of_freed, freed_up, char);
191 Perl_croak_nocontext("panic: realloc");
193 ptr = (Malloc_t)PerlMem_realloc(where,size);
194 PERL_ALLOC_CHECK(ptr);
196 /* MUST do this fixup first, before doing ANYTHING else, as anything else
197 might allocate memory/free/move memory, and until we do the fixup, it
198 may well be chasing (and writing to) free memory. */
199 #ifdef PERL_TRACK_MEMPOOL
201 struct perl_memory_debug_header *const header
202 = (struct perl_memory_debug_header *)ptr;
205 if (header->size < size) {
206 const MEM_SIZE fresh = size - header->size;
207 char *start_of_fresh = ((char *)ptr) + size;
208 PoisonNew(start_of_fresh, fresh, char);
212 header->next->prev = header;
213 header->prev->next = header;
215 ptr = (Malloc_t)((char*)ptr+sTHX);
219 /* In particular, must do that fixup above before logging anything via
220 *printf(), as it can reallocate memory, which can cause SEGVs. */
222 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
223 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
230 #ifndef ALWAYS_NEED_THX
236 return write_no_mem();
242 /* safe version of system's free() */
245 Perl_safesysfree(Malloc_t where)
247 #ifdef ALWAYS_NEED_THX
252 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
254 #ifdef PERL_TRACK_MEMPOOL
255 where = (Malloc_t)((char*)where-sTHX);
257 struct perl_memory_debug_header *const header
258 = (struct perl_memory_debug_header *)where;
260 if (header->interpreter != aTHX) {
261 Perl_croak_nocontext("panic: free from wrong pool");
264 Perl_croak_nocontext("panic: duplicate free");
266 if (!(header->next) || header->next->prev != header
267 || header->prev->next != header) {
268 Perl_croak_nocontext("panic: bad free");
270 /* Unlink us from the chain. */
271 header->next->prev = header->prev;
272 header->prev->next = header->next;
274 PoisonNew(where, header->size, char);
276 /* Trigger the duplicate free warning. */
284 /* safe version of system's calloc() */
287 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
289 #ifdef ALWAYS_NEED_THX
293 MEM_SIZE total_size = 0;
295 /* Even though calloc() for zero bytes is strange, be robust. */
296 if (size && (count <= MEM_SIZE_MAX / size))
297 total_size = size * count;
299 Perl_croak_nocontext("%s", PL_memory_wrap);
300 #ifdef PERL_TRACK_MEMPOOL
301 if (sTHX <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
304 Perl_croak_nocontext("%s", PL_memory_wrap);
307 if (total_size > 0xffff) {
308 PerlIO_printf(Perl_error_log,
309 "Allocation too large: %lx\n", total_size) FLUSH;
312 #endif /* HAS_64K_LIMIT */
314 if ((long)size < 0 || (long)count < 0)
315 Perl_croak_nocontext("panic: calloc");
317 #ifdef PERL_TRACK_MEMPOOL
318 /* Have to use malloc() because we've added some space for our tracking
320 /* malloc(0) is non-portable. */
321 ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
323 /* Use calloc() because it might save a memset() if the memory is fresh
324 and clean from the OS. */
326 ptr = (Malloc_t)PerlMem_calloc(count, size);
327 else /* calloc(0) is non-portable. */
328 ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
330 PERL_ALLOC_CHECK(ptr);
331 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));
333 #ifdef PERL_TRACK_MEMPOOL
335 struct perl_memory_debug_header *const header
336 = (struct perl_memory_debug_header *)ptr;
338 memset((void*)ptr, 0, total_size);
339 header->interpreter = aTHX;
340 /* Link us into the list. */
341 header->prev = &PL_memory_debug_header;
342 header->next = PL_memory_debug_header.next;
343 PL_memory_debug_header.next = header;
344 header->next->prev = header;
346 header->size = total_size;
348 ptr = (Malloc_t)((char*)ptr+sTHX);
354 #ifndef ALWAYS_NEED_THX
359 return write_no_mem();
363 /* These must be defined when not using Perl's malloc for binary
368 Malloc_t Perl_malloc (MEM_SIZE nbytes)
371 return (Malloc_t)PerlMem_malloc(nbytes);
374 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
377 return (Malloc_t)PerlMem_calloc(elements, size);
380 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
383 return (Malloc_t)PerlMem_realloc(where, nbytes);
386 Free_t Perl_mfree (Malloc_t where)
394 /* copy a string up to some (non-backslashed) delimiter, if any */
397 Perl_delimcpy(register char *to, register const char *toend, register const char *from, register const char *fromend, register int delim, I32 *retlen)
401 PERL_ARGS_ASSERT_DELIMCPY;
403 for (tolen = 0; from < fromend; from++, tolen++) {
405 if (from[1] != delim) {
412 else if (*from == delim)
423 /* return ptr to little string in big string, NULL if not found */
424 /* This routine was donated by Corey Satten. */
427 Perl_instr(register const char *big, register const char *little)
431 PERL_ARGS_ASSERT_INSTR;
439 register const char *s, *x;
442 for (x=big,s=little; *s; /**/ ) {
453 return (char*)(big-1);
458 /* same as instr but allow embedded nulls */
461 Perl_ninstr(const char *big, const char *bigend, const char *little, const char *lend)
463 PERL_ARGS_ASSERT_NINSTR;
467 const char first = *little;
469 bigend -= lend - little++;
471 while (big <= bigend) {
472 if (*big++ == first) {
473 for (x=big,s=little; s < lend; x++,s++) {
477 return (char*)(big-1);
484 /* reverse of the above--find last substring */
487 Perl_rninstr(register const char *big, const char *bigend, const char *little, const char *lend)
489 register const char *bigbeg;
490 register const I32 first = *little;
491 register const char * const littleend = lend;
493 PERL_ARGS_ASSERT_RNINSTR;
495 if (little >= littleend)
496 return (char*)bigend;
498 big = bigend - (littleend - little++);
499 while (big >= bigbeg) {
500 register const char *s, *x;
503 for (x=big+2,s=little; s < littleend; /**/ ) {
512 return (char*)(big+1);
517 /* As a space optimization, we do not compile tables for strings of length
518 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
519 special-cased in fbm_instr().
521 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
524 =head1 Miscellaneous Functions
526 =for apidoc fbm_compile
528 Analyses the string in order to make fast searches on it using fbm_instr()
529 -- the Boyer-Moore algorithm.
535 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
538 register const U8 *s;
544 PERL_ARGS_ASSERT_FBM_COMPILE;
546 if (flags & FBMcf_TAIL) {
547 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
548 sv_catpvs(sv, "\n"); /* Taken into account in fbm_instr() */
549 if (mg && mg->mg_len >= 0)
552 s = (U8*)SvPV_force_mutable(sv, len);
553 if (len == 0) /* TAIL might be on a zero-length string. */
555 SvUPGRADE(sv, SVt_PVGV);
560 const unsigned char *sb;
561 const U8 mlen = (len>255) ? 255 : (U8)len;
564 Sv_Grow(sv, len + 256 + PERL_FBM_TABLE_OFFSET);
566 = (unsigned char*)(SvPVX_mutable(sv) + len + PERL_FBM_TABLE_OFFSET);
567 s = table - 1 - PERL_FBM_TABLE_OFFSET; /* last char */
568 memset((void*)table, mlen, 256);
570 sb = s - mlen + 1; /* first char (maybe) */
572 if (table[*s] == mlen)
577 Sv_Grow(sv, len + PERL_FBM_TABLE_OFFSET);
579 sv_magic(sv, NULL, PERL_MAGIC_bm, NULL, 0); /* deep magic */
581 s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
582 for (i = 0; i < len; i++) {
583 if (PL_freq[s[i]] < frequency) {
585 frequency = PL_freq[s[i]];
588 BmFLAGS(sv) = (U8)flags;
589 BmRARE(sv) = s[rarest];
590 BmPREVIOUS(sv) = rarest;
591 BmUSEFUL(sv) = 100; /* Initial value */
592 if (flags & FBMcf_TAIL)
594 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %lu\n",
595 BmRARE(sv),(unsigned long)BmPREVIOUS(sv)));
598 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
599 /* If SvTAIL is actually due to \Z or \z, this gives false positives
603 =for apidoc fbm_instr
605 Returns the location of the SV in the string delimited by C<str> and
606 C<strend>. It returns C<NULL> if the string can't be found. The C<sv>
607 does not have to be fbm_compiled, but the search will not be as fast
614 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
616 register unsigned char *s;
618 register const unsigned char *little
619 = (const unsigned char *)SvPV_const(littlestr,l);
620 register STRLEN littlelen = l;
621 register const I32 multiline = flags & FBMrf_MULTILINE;
623 PERL_ARGS_ASSERT_FBM_INSTR;
625 if ((STRLEN)(bigend - big) < littlelen) {
626 if ( SvTAIL(littlestr)
627 && ((STRLEN)(bigend - big) == littlelen - 1)
629 || (*big == *little &&
630 memEQ((char *)big, (char *)little, littlelen - 1))))
635 if (littlelen <= 2) { /* Special-cased */
637 if (littlelen == 1) {
638 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
639 /* Know that bigend != big. */
640 if (bigend[-1] == '\n')
641 return (char *)(bigend - 1);
642 return (char *) bigend;
650 if (SvTAIL(littlestr))
651 return (char *) bigend;
655 return (char*)big; /* Cannot be SvTAIL! */
658 if (SvTAIL(littlestr) && !multiline) {
659 if (bigend[-1] == '\n' && bigend[-2] == *little)
660 return (char*)bigend - 2;
661 if (bigend[-1] == *little)
662 return (char*)bigend - 1;
666 /* This should be better than FBM if c1 == c2, and almost
667 as good otherwise: maybe better since we do less indirection.
668 And we save a lot of memory by caching no table. */
669 const unsigned char c1 = little[0];
670 const unsigned char c2 = little[1];
675 while (s <= bigend) {
685 goto check_1char_anchor;
696 goto check_1char_anchor;
699 while (s <= bigend) {
704 goto check_1char_anchor;
713 check_1char_anchor: /* One char and anchor! */
714 if (SvTAIL(littlestr) && (*bigend == *little))
715 return (char *)bigend; /* bigend is already decremented. */
718 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
719 s = bigend - littlelen;
720 if (s >= big && bigend[-1] == '\n' && *s == *little
721 /* Automatically of length > 2 */
722 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
724 return (char*)s; /* how sweet it is */
727 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
729 return (char*)s + 1; /* how sweet it is */
733 if (!SvVALID(littlestr)) {
734 char * const b = ninstr((char*)big,(char*)bigend,
735 (char*)little, (char*)little + littlelen);
737 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
738 /* Chop \n from littlestr: */
739 s = bigend - littlelen + 1;
741 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
751 if (littlelen > (STRLEN)(bigend - big))
755 register const unsigned char * const table
756 = little + littlelen + PERL_FBM_TABLE_OFFSET;
757 register const unsigned char *oldlittle;
759 --littlelen; /* Last char found by table lookup */
762 little += littlelen; /* last char */
768 if ((tmp = table[*s])) {
769 if ((s += tmp) < bigend)
773 else { /* less expensive than calling strncmp() */
774 register unsigned char * const olds = s;
779 if (*--s == *--little)
781 s = olds + 1; /* here we pay the price for failure */
783 if (s < bigend) /* fake up continue to outer loop */
792 && (BmFLAGS(littlestr) & FBMcf_TAIL)
793 && memEQ((char *)(bigend - littlelen),
794 (char *)(oldlittle - littlelen), littlelen) )
795 return (char*)bigend - littlelen;
800 /* start_shift, end_shift are positive quantities which give offsets
801 of ends of some substring of bigstr.
802 If "last" we want the last occurrence.
803 old_posp is the way of communication between consequent calls if
804 the next call needs to find the .
805 The initial *old_posp should be -1.
807 Note that we take into account SvTAIL, so one can get extra
808 optimizations if _ALL flag is set.
811 /* If SvTAIL is actually due to \Z or \z, this gives false positives
812 if PL_multiline. In fact if !PL_multiline the authoritative answer
813 is not supported yet. */
816 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
819 register const unsigned char *big;
821 register I32 previous;
823 register const unsigned char *little;
824 register I32 stop_pos;
825 register const unsigned char *littleend;
828 PERL_ARGS_ASSERT_SCREAMINSTR;
830 assert(SvTYPE(littlestr) == SVt_PVGV);
831 assert(SvVALID(littlestr));
834 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
835 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
837 if ( BmRARE(littlestr) == '\n'
838 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
839 little = (const unsigned char *)(SvPVX_const(littlestr));
840 littleend = little + SvCUR(littlestr);
847 little = (const unsigned char *)(SvPVX_const(littlestr));
848 littleend = little + SvCUR(littlestr);
850 /* The value of pos we can start at: */
851 previous = BmPREVIOUS(littlestr);
852 big = (const unsigned char *)(SvPVX_const(bigstr));
853 /* The value of pos we can stop at: */
854 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
855 if (previous + start_shift > stop_pos) {
857 stop_pos does not include SvTAIL in the count, so this check is incorrect
858 (I think) - see [ID 20010618.006] and t/op/study.t. HVDS 2001/06/19
861 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
866 while (pos < previous + start_shift) {
867 if (!(pos += PL_screamnext[pos]))
872 register const unsigned char *s, *x;
873 if (pos >= stop_pos) break;
874 if (big[pos] != first)
876 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
882 if (s == littleend) {
884 if (!last) return (char *)(big+pos);
887 } while ( pos += PL_screamnext[pos] );
889 return (char *)(big+(*old_posp));
891 if (!SvTAIL(littlestr) || (end_shift > 0))
893 /* Ignore the trailing "\n". This code is not microoptimized */
894 big = (const unsigned char *)(SvPVX_const(bigstr) + SvCUR(bigstr));
895 stop_pos = littleend - little; /* Actual littlestr len */
900 && ((stop_pos == 1) ||
901 memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
909 Returns true if the leading len bytes of the strings s1 and s2 are the same
910 case-insensitively; false otherwise. Uppercase and lowercase ASCII range bytes
911 match themselves and their opposite case counterparts. Non-cased and non-ASCII
912 range bytes match only themselves.
919 Perl_foldEQ(const char *s1, const char *s2, register I32 len)
921 register const U8 *a = (const U8 *)s1;
922 register const U8 *b = (const U8 *)s2;
924 PERL_ARGS_ASSERT_FOLDEQ;
927 if (*a != *b && *a != PL_fold[*b])
934 Perl_foldEQ_latin1(const char *s1, const char *s2, register I32 len)
936 /* Compare non-utf8 using Unicode (Latin1) semantics. Does not work on
937 * MICRO_SIGN, LATIN_SMALL_LETTER_SHARP_S, nor
938 * LATIN_SMALL_LETTER_Y_WITH_DIAERESIS, and does not check for these. Nor
939 * does it check that the strings each have at least 'len' characters */
941 register const U8 *a = (const U8 *)s1;
942 register const U8 *b = (const U8 *)s2;
944 PERL_ARGS_ASSERT_FOLDEQ_LATIN1;
947 if (*a != *b && *a != PL_fold_latin1[*b]) {
956 =for apidoc foldEQ_locale
958 Returns true if the leading len bytes of the strings s1 and s2 are the same
959 case-insensitively in the current locale; false otherwise.
965 Perl_foldEQ_locale(const char *s1, const char *s2, register I32 len)
968 register const U8 *a = (const U8 *)s1;
969 register const U8 *b = (const U8 *)s2;
971 PERL_ARGS_ASSERT_FOLDEQ_LOCALE;
974 if (*a != *b && *a != PL_fold_locale[*b])
981 /* copy a string to a safe spot */
984 =head1 Memory Management
988 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
989 string which is a duplicate of C<pv>. The size of the string is
990 determined by C<strlen()>. The memory allocated for the new string can
991 be freed with the C<Safefree()> function.
997 Perl_savepv(pTHX_ const char *pv)
1004 const STRLEN pvlen = strlen(pv)+1;
1005 Newx(newaddr, pvlen, char);
1006 return (char*)memcpy(newaddr, pv, pvlen);
1010 /* same thing but with a known length */
1015 Perl's version of what C<strndup()> would be if it existed. Returns a
1016 pointer to a newly allocated string which is a duplicate of the first
1017 C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for
1018 the new string can be freed with the C<Safefree()> function.
1024 Perl_savepvn(pTHX_ const char *pv, register I32 len)
1026 register char *newaddr;
1027 PERL_UNUSED_CONTEXT;
1029 Newx(newaddr,len+1,char);
1030 /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
1032 /* might not be null terminated */
1033 newaddr[len] = '\0';
1034 return (char *) CopyD(pv,newaddr,len,char);
1037 return (char *) ZeroD(newaddr,len+1,char);
1042 =for apidoc savesharedpv
1044 A version of C<savepv()> which allocates the duplicate string in memory
1045 which is shared between threads.
1050 Perl_savesharedpv(pTHX_ const char *pv)
1052 register char *newaddr;
1057 pvlen = strlen(pv)+1;
1058 newaddr = (char*)PerlMemShared_malloc(pvlen);
1060 return write_no_mem();
1062 return (char*)memcpy(newaddr, pv, pvlen);
1066 =for apidoc savesharedpvn
1068 A version of C<savepvn()> which allocates the duplicate string in memory
1069 which is shared between threads. (With the specific difference that a NULL
1070 pointer is not acceptable)
1075 Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
1077 char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
1079 PERL_ARGS_ASSERT_SAVESHAREDPVN;
1082 return write_no_mem();
1084 newaddr[len] = '\0';
1085 return (char*)memcpy(newaddr, pv, len);
1089 =for apidoc savesvpv
1091 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
1092 the passed in SV using C<SvPV()>
1098 Perl_savesvpv(pTHX_ SV *sv)
1101 const char * const pv = SvPV_const(sv, len);
1102 register char *newaddr;
1104 PERL_ARGS_ASSERT_SAVESVPV;
1107 Newx(newaddr,len,char);
1108 return (char *) CopyD(pv,newaddr,len,char);
1112 =for apidoc savesharedsvpv
1114 A version of C<savesharedpv()> which allocates the duplicate string in
1115 memory which is shared between threads.
1121 Perl_savesharedsvpv(pTHX_ SV *sv)
1124 const char * const pv = SvPV_const(sv, len);
1126 PERL_ARGS_ASSERT_SAVESHAREDSVPV;
1128 return savesharedpvn(pv, len);
1131 /* the SV for Perl_form() and mess() is not kept in an arena */
1140 if (PL_phase != PERL_PHASE_DESTRUCT)
1141 return newSVpvs_flags("", SVs_TEMP);
1146 /* Create as PVMG now, to avoid any upgrading later */
1148 Newxz(any, 1, XPVMG);
1149 SvFLAGS(sv) = SVt_PVMG;
1150 SvANY(sv) = (void*)any;
1152 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1157 #if defined(PERL_IMPLICIT_CONTEXT)
1159 Perl_form_nocontext(const char* pat, ...)
1164 PERL_ARGS_ASSERT_FORM_NOCONTEXT;
1165 va_start(args, pat);
1166 retval = vform(pat, &args);
1170 #endif /* PERL_IMPLICIT_CONTEXT */
1173 =head1 Miscellaneous Functions
1176 Takes a sprintf-style format pattern and conventional
1177 (non-SV) arguments and returns the formatted string.
1179 (char *) Perl_form(pTHX_ const char* pat, ...)
1181 can be used any place a string (char *) is required:
1183 char * s = Perl_form("%d.%d",major,minor);
1185 Uses a single private buffer so if you want to format several strings you
1186 must explicitly copy the earlier strings away (and free the copies when you
1193 Perl_form(pTHX_ const char* pat, ...)
1197 PERL_ARGS_ASSERT_FORM;
1198 va_start(args, pat);
1199 retval = vform(pat, &args);
1205 Perl_vform(pTHX_ const char *pat, va_list *args)
1207 SV * const sv = mess_alloc();
1208 PERL_ARGS_ASSERT_VFORM;
1209 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1214 =for apidoc Am|SV *|mess|const char *pat|...
1216 Take a sprintf-style format pattern and argument list. These are used to
1217 generate a string message. If the message does not end with a newline,
1218 then it will be extended with some indication of the current location
1219 in the code, as described for L</mess_sv>.
1221 Normally, the resulting message is returned in a new mortal SV.
1222 During global destruction a single SV may be shared between uses of
1228 #if defined(PERL_IMPLICIT_CONTEXT)
1230 Perl_mess_nocontext(const char *pat, ...)
1235 PERL_ARGS_ASSERT_MESS_NOCONTEXT;
1236 va_start(args, pat);
1237 retval = vmess(pat, &args);
1241 #endif /* PERL_IMPLICIT_CONTEXT */
1244 Perl_mess(pTHX_ const char *pat, ...)
1248 PERL_ARGS_ASSERT_MESS;
1249 va_start(args, pat);
1250 retval = vmess(pat, &args);
1256 S_closest_cop(pTHX_ const COP *cop, const OP *o)
1259 /* Look for PL_op starting from o. cop is the last COP we've seen. */
1261 PERL_ARGS_ASSERT_CLOSEST_COP;
1263 if (!o || o == PL_op)
1266 if (o->op_flags & OPf_KIDS) {
1268 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
1271 /* If the OP_NEXTSTATE has been optimised away we can still use it
1272 * the get the file and line number. */
1274 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
1275 cop = (const COP *)kid;
1277 /* Keep searching, and return when we've found something. */
1279 new_cop = closest_cop(cop, kid);
1285 /* Nothing found. */
1291 =for apidoc Am|SV *|mess_sv|SV *basemsg|bool consume
1293 Expands a message, intended for the user, to include an indication of
1294 the current location in the code, if the message does not already appear
1297 C<basemsg> is the initial message or object. If it is a reference, it
1298 will be used as-is and will be the result of this function. Otherwise it
1299 is used as a string, and if it already ends with a newline, it is taken
1300 to be complete, and the result of this function will be the same string.
1301 If the message does not end with a newline, then a segment such as C<at
1302 foo.pl line 37> will be appended, and possibly other clauses indicating
1303 the current state of execution. The resulting message will end with a
1306 Normally, the resulting message is returned in a new mortal SV.
1307 During global destruction a single SV may be shared between uses of this
1308 function. If C<consume> is true, then the function is permitted (but not
1309 required) to modify and return C<basemsg> instead of allocating a new SV.
1315 Perl_mess_sv(pTHX_ SV *basemsg, bool consume)
1320 PERL_ARGS_ASSERT_MESS_SV;
1322 if (SvROK(basemsg)) {
1328 sv_setsv(sv, basemsg);
1333 if (SvPOK(basemsg) && consume) {
1338 sv_copypv(sv, basemsg);
1341 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1343 * Try and find the file and line for PL_op. This will usually be
1344 * PL_curcop, but it might be a cop that has been optimised away. We
1345 * can try to find such a cop by searching through the optree starting
1346 * from the sibling of PL_curcop.
1349 const COP *cop = closest_cop(PL_curcop, PL_curcop->op_sibling);
1354 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1355 OutCopFILE(cop), (IV)CopLINE(cop));
1356 /* Seems that GvIO() can be untrustworthy during global destruction. */
1357 if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1358 && IoLINES(GvIOp(PL_last_in_gv)))
1360 const bool line_mode = (RsSIMPLE(PL_rs) &&
1361 SvCUR(PL_rs) == 1 && *SvPVX_const(PL_rs) == '\n');
1362 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
1363 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1364 line_mode ? "line" : "chunk",
1365 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1367 if (PL_phase == PERL_PHASE_DESTRUCT)
1368 sv_catpvs(sv, " during global destruction");
1369 sv_catpvs(sv, ".\n");
1375 =for apidoc Am|SV *|vmess|const char *pat|va_list *args
1377 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1378 argument list. These are used to generate a string message. If the
1379 message does not end with a newline, then it will be extended with
1380 some indication of the current location in the code, as described for
1383 Normally, the resulting message is returned in a new mortal SV.
1384 During global destruction a single SV may be shared between uses of
1391 Perl_vmess(pTHX_ const char *pat, va_list *args)
1394 SV * const sv = mess_alloc();
1396 PERL_ARGS_ASSERT_VMESS;
1398 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1399 return mess_sv(sv, 1);
1403 Perl_write_to_stderr(pTHX_ SV* msv)
1409 PERL_ARGS_ASSERT_WRITE_TO_STDERR;
1411 if (PL_stderrgv && SvREFCNT(PL_stderrgv)
1412 && (io = GvIO(PL_stderrgv))
1413 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
1420 SAVESPTR(PL_stderrgv);
1423 PUSHSTACKi(PERLSI_MAGIC);
1427 PUSHs(SvTIED_obj(MUTABLE_SV(io), mg));
1430 call_method("PRINT", G_SCALAR);
1438 /* SFIO can really mess with your errno */
1441 PerlIO * const serr = Perl_error_log;
1443 do_print(msv, serr);
1444 (void)PerlIO_flush(serr);
1452 =head1 Warning and Dieing
1455 /* Common code used in dieing and warning */
1458 S_with_queued_errors(pTHX_ SV *ex)
1460 PERL_ARGS_ASSERT_WITH_QUEUED_ERRORS;
1461 if (PL_errors && SvCUR(PL_errors) && !SvROK(ex)) {
1462 sv_catsv(PL_errors, ex);
1463 ex = sv_mortalcopy(PL_errors);
1464 SvCUR_set(PL_errors, 0);
1470 S_invoke_exception_hook(pTHX_ SV *ex, bool warn)
1476 SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1477 /* sv_2cv might call Perl_croak() or Perl_warner() */
1478 SV * const oldhook = *hook;
1486 cv = sv_2cv(oldhook, &stash, &gv, 0);
1488 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1498 exarg = newSVsv(ex);
1499 SvREADONLY_on(exarg);
1502 PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
1506 call_sv(MUTABLE_SV(cv), G_DISCARD);
1515 =for apidoc Am|OP *|die_sv|SV *baseex
1517 Behaves the same as L</croak_sv>, except for the return type.
1518 It should be used only where the C<OP *> return type is required.
1519 The function never actually returns.
1525 Perl_die_sv(pTHX_ SV *baseex)
1527 PERL_ARGS_ASSERT_DIE_SV;
1534 =for apidoc Am|OP *|die|const char *pat|...
1536 Behaves the same as L</croak>, except for the return type.
1537 It should be used only where the C<OP *> return type is required.
1538 The function never actually returns.
1543 #if defined(PERL_IMPLICIT_CONTEXT)
1545 Perl_die_nocontext(const char* pat, ...)
1549 va_start(args, pat);
1555 #endif /* PERL_IMPLICIT_CONTEXT */
1558 Perl_die(pTHX_ const char* pat, ...)
1561 va_start(args, pat);
1569 =for apidoc Am|void|croak_sv|SV *baseex
1571 This is an XS interface to Perl's C<die> function.
1573 C<baseex> is the error message or object. If it is a reference, it
1574 will be used as-is. Otherwise it is used as a string, and if it does
1575 not end with a newline then it will be extended with some indication of
1576 the current location in the code, as described for L</mess_sv>.
1578 The error message or object will be used as an exception, by default
1579 returning control to the nearest enclosing C<eval>, but subject to
1580 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak_sv>
1581 function never returns normally.
1583 To die with a simple string message, the L</croak> function may be
1590 Perl_croak_sv(pTHX_ SV *baseex)
1592 SV *ex = with_queued_errors(mess_sv(baseex, 0));
1593 PERL_ARGS_ASSERT_CROAK_SV;
1594 invoke_exception_hook(ex, FALSE);
1599 =for apidoc Am|void|vcroak|const char *pat|va_list *args
1601 This is an XS interface to Perl's C<die> function.
1603 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1604 argument list. These are used to generate a string message. If the
1605 message does not end with a newline, then it will be extended with
1606 some indication of the current location in the code, as described for
1609 The error message will be used as an exception, by default
1610 returning control to the nearest enclosing C<eval>, but subject to
1611 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1612 function never returns normally.
1614 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1615 (C<$@>) will be used as an error message or object instead of building an
1616 error message from arguments. If you want to throw a non-string object,
1617 or build an error message in an SV yourself, it is preferable to use
1618 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1624 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1626 SV *ex = with_queued_errors(pat ? vmess(pat, args) : mess_sv(ERRSV, 0));
1627 invoke_exception_hook(ex, FALSE);
1632 =for apidoc Am|void|croak|const char *pat|...
1634 This is an XS interface to Perl's C<die> function.
1636 Take a sprintf-style format pattern and argument list. These are used to
1637 generate a string message. If the message does not end with a newline,
1638 then it will be extended with some indication of the current location
1639 in the code, as described for L</mess_sv>.
1641 The error message will be used as an exception, by default
1642 returning control to the nearest enclosing C<eval>, but subject to
1643 modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1644 function never returns normally.
1646 For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1647 (C<$@>) will be used as an error message or object instead of building an
1648 error message from arguments. If you want to throw a non-string object,
1649 or build an error message in an SV yourself, it is preferable to use
1650 the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1655 #if defined(PERL_IMPLICIT_CONTEXT)
1657 Perl_croak_nocontext(const char *pat, ...)
1661 va_start(args, pat);
1666 #endif /* PERL_IMPLICIT_CONTEXT */
1669 Perl_croak(pTHX_ const char *pat, ...)
1672 va_start(args, pat);
1679 =for apidoc Am|void|croak_no_modify
1681 Exactly equivalent to C<Perl_croak(aTHX_ "%s", PL_no_modify)>, but generates
1682 terser object code than using C<Perl_croak>. Less code used on exception code
1683 paths reduces CPU cache pressure.
1689 Perl_croak_no_modify(pTHX)
1691 Perl_croak(aTHX_ "%s", PL_no_modify);
1695 =for apidoc Am|void|warn_sv|SV *baseex
1697 This is an XS interface to Perl's C<warn> function.
1699 C<baseex> is the error message or object. If it is a reference, it
1700 will be used as-is. Otherwise it is used as a string, and if it does
1701 not end with a newline then it will be extended with some indication of
1702 the current location in the code, as described for L</mess_sv>.
1704 The error message or object will by default be written to standard error,
1705 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1707 To warn with a simple string message, the L</warn> function may be
1714 Perl_warn_sv(pTHX_ SV *baseex)
1716 SV *ex = mess_sv(baseex, 0);
1717 PERL_ARGS_ASSERT_WARN_SV;
1718 if (!invoke_exception_hook(ex, TRUE))
1719 write_to_stderr(ex);
1723 =for apidoc Am|void|vwarn|const char *pat|va_list *args
1725 This is an XS interface to Perl's C<warn> function.
1727 C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1728 argument list. These are used to generate a string message. If the
1729 message does not end with a newline, then it will be extended with
1730 some indication of the current location in the code, as described for
1733 The error message or object will by default be written to standard error,
1734 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1736 Unlike with L</vcroak>, C<pat> is not permitted to be null.
1742 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1744 SV *ex = vmess(pat, args);
1745 PERL_ARGS_ASSERT_VWARN;
1746 if (!invoke_exception_hook(ex, TRUE))
1747 write_to_stderr(ex);
1751 =for apidoc Am|void|warn|const char *pat|...
1753 This is an XS interface to Perl's C<warn> function.
1755 Take a sprintf-style format pattern and argument list. These are used to
1756 generate a string message. If the message does not end with a newline,
1757 then it will be extended with some indication of the current location
1758 in the code, as described for L</mess_sv>.
1760 The error message or object will by default be written to standard error,
1761 but this is subject to modification by a C<$SIG{__WARN__}> handler.
1763 Unlike with L</croak>, C<pat> is not permitted to be null.
1768 #if defined(PERL_IMPLICIT_CONTEXT)
1770 Perl_warn_nocontext(const char *pat, ...)
1774 PERL_ARGS_ASSERT_WARN_NOCONTEXT;
1775 va_start(args, pat);
1779 #endif /* PERL_IMPLICIT_CONTEXT */
1782 Perl_warn(pTHX_ const char *pat, ...)
1785 PERL_ARGS_ASSERT_WARN;
1786 va_start(args, pat);
1791 #if defined(PERL_IMPLICIT_CONTEXT)
1793 Perl_warner_nocontext(U32 err, const char *pat, ...)
1797 PERL_ARGS_ASSERT_WARNER_NOCONTEXT;
1798 va_start(args, pat);
1799 vwarner(err, pat, &args);
1802 #endif /* PERL_IMPLICIT_CONTEXT */
1805 Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...)
1807 PERL_ARGS_ASSERT_CK_WARNER_D;
1809 if (Perl_ckwarn_d(aTHX_ err)) {
1811 va_start(args, pat);
1812 vwarner(err, pat, &args);
1818 Perl_ck_warner(pTHX_ U32 err, const char* pat, ...)
1820 PERL_ARGS_ASSERT_CK_WARNER;
1822 if (Perl_ckwarn(aTHX_ err)) {
1824 va_start(args, pat);
1825 vwarner(err, pat, &args);
1831 Perl_warner(pTHX_ U32 err, const char* pat,...)
1834 PERL_ARGS_ASSERT_WARNER;
1835 va_start(args, pat);
1836 vwarner(err, pat, &args);
1841 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1844 PERL_ARGS_ASSERT_VWARNER;
1845 if (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) {
1846 SV * const msv = vmess(pat, args);
1848 invoke_exception_hook(msv, FALSE);
1852 Perl_vwarn(aTHX_ pat, args);
1856 /* implements the ckWARN? macros */
1859 Perl_ckwarn(pTHX_ U32 w)
1862 /* If lexical warnings have not been set, use $^W. */
1864 return PL_dowarn & G_WARN_ON;
1866 return ckwarn_common(w);
1869 /* implements the ckWARN?_d macro */
1872 Perl_ckwarn_d(pTHX_ U32 w)
1875 /* If lexical warnings have not been set then default classes warn. */
1879 return ckwarn_common(w);
1883 S_ckwarn_common(pTHX_ U32 w)
1885 if (PL_curcop->cop_warnings == pWARN_ALL)
1888 if (PL_curcop->cop_warnings == pWARN_NONE)
1891 /* Check the assumption that at least the first slot is non-zero. */
1892 assert(unpackWARN1(w));
1894 /* Check the assumption that it is valid to stop as soon as a zero slot is
1896 if (!unpackWARN2(w)) {
1897 assert(!unpackWARN3(w));
1898 assert(!unpackWARN4(w));
1899 } else if (!unpackWARN3(w)) {
1900 assert(!unpackWARN4(w));
1903 /* Right, dealt with all the special cases, which are implemented as non-
1904 pointers, so there is a pointer to a real warnings mask. */
1906 if (isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)))
1908 } while (w >>= WARNshift);
1913 /* Set buffer=NULL to get a new one. */
1915 Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
1917 const MEM_SIZE len_wanted = sizeof(STRLEN) + size;
1918 PERL_UNUSED_CONTEXT;
1919 PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD;
1922 (specialWARN(buffer) ?
1923 PerlMemShared_malloc(len_wanted) :
1924 PerlMemShared_realloc(buffer, len_wanted));
1926 Copy(bits, (buffer + 1), size, char);
1930 /* since we've already done strlen() for both nam and val
1931 * we can use that info to make things faster than
1932 * sprintf(s, "%s=%s", nam, val)
1934 #define my_setenv_format(s, nam, nlen, val, vlen) \
1935 Copy(nam, s, nlen, char); \
1937 Copy(val, s+(nlen+1), vlen, char); \
1938 *(s+(nlen+1+vlen)) = '\0'
1940 #ifdef USE_ENVIRON_ARRAY
1941 /* VMS' my_setenv() is in vms.c */
1942 #if !defined(WIN32) && !defined(NETWARE)
1944 Perl_my_setenv(pTHX_ const char *nam, const char *val)
1948 /* only parent thread can modify process environment */
1949 if (PL_curinterp == aTHX)
1952 #ifndef PERL_USE_SAFE_PUTENV
1953 if (!PL_use_safe_putenv) {
1954 /* most putenv()s leak, so we manipulate environ directly */
1956 register const I32 len = strlen(nam);
1959 /* where does it go? */
1960 for (i = 0; environ[i]; i++) {
1961 if (strnEQ(environ[i],nam,len) && environ[i][len] == '=')
1965 if (environ == PL_origenviron) { /* need we copy environment? */
1971 while (environ[max])
1973 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1974 for (j=0; j<max; j++) { /* copy environment */
1975 const int len = strlen(environ[j]);
1976 tmpenv[j] = (char*)safesysmalloc((len+1)*sizeof(char));
1977 Copy(environ[j], tmpenv[j], len+1, char);
1980 environ = tmpenv; /* tell exec where it is now */
1983 safesysfree(environ[i]);
1984 while (environ[i]) {
1985 environ[i] = environ[i+1];
1990 if (!environ[i]) { /* does not exist yet */
1991 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1992 environ[i+1] = NULL; /* make sure it's null terminated */
1995 safesysfree(environ[i]);
1999 environ[i] = (char*)safesysmalloc((nlen+vlen+2) * sizeof(char));
2000 /* all that work just for this */
2001 my_setenv_format(environ[i], nam, nlen, val, vlen);
2004 # if defined(__CYGWIN__) || defined(EPOC) || defined(__SYMBIAN32__) || defined(__riscos__)
2005 # if defined(HAS_UNSETENV)
2007 (void)unsetenv(nam);
2009 (void)setenv(nam, val, 1);
2011 # else /* ! HAS_UNSETENV */
2012 (void)setenv(nam, val, 1);
2013 # endif /* HAS_UNSETENV */
2015 # if defined(HAS_UNSETENV)
2017 (void)unsetenv(nam);
2019 const int nlen = strlen(nam);
2020 const int vlen = strlen(val);
2021 char * const new_env =
2022 (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2023 my_setenv_format(new_env, nam, nlen, val, vlen);
2024 (void)putenv(new_env);
2026 # else /* ! HAS_UNSETENV */
2028 const int nlen = strlen(nam);
2034 new_env = (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2035 /* all that work just for this */
2036 my_setenv_format(new_env, nam, nlen, val, vlen);
2037 (void)putenv(new_env);
2038 # endif /* HAS_UNSETENV */
2039 # endif /* __CYGWIN__ */
2040 #ifndef PERL_USE_SAFE_PUTENV
2046 #else /* WIN32 || NETWARE */
2049 Perl_my_setenv(pTHX_ const char *nam, const char *val)
2052 register char *envstr;
2053 const int nlen = strlen(nam);
2060 Newx(envstr, nlen+vlen+2, char);
2061 my_setenv_format(envstr, nam, nlen, val, vlen);
2062 (void)PerlEnv_putenv(envstr);
2066 #endif /* WIN32 || NETWARE */
2068 #endif /* !VMS && !EPOC*/
2070 #ifdef UNLINK_ALL_VERSIONS
2072 Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
2076 PERL_ARGS_ASSERT_UNLNK;
2078 while (PerlLIO_unlink(f) >= 0)
2080 return retries ? 0 : -1;
2084 /* this is a drop-in replacement for bcopy() */
2085 #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
2087 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
2089 char * const retval = to;
2091 PERL_ARGS_ASSERT_MY_BCOPY;
2093 if (from - to >= 0) {
2101 *(--to) = *(--from);
2107 /* this is a drop-in replacement for memset() */
2110 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
2112 char * const retval = loc;
2114 PERL_ARGS_ASSERT_MY_MEMSET;
2122 /* this is a drop-in replacement for bzero() */
2123 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2125 Perl_my_bzero(register char *loc, register I32 len)
2127 char * const retval = loc;
2129 PERL_ARGS_ASSERT_MY_BZERO;
2137 /* this is a drop-in replacement for memcmp() */
2138 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2140 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
2142 register const U8 *a = (const U8 *)s1;
2143 register const U8 *b = (const U8 *)s2;
2146 PERL_ARGS_ASSERT_MY_MEMCMP;
2149 if ((tmp = *a++ - *b++))
2154 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2157 /* This vsprintf replacement should generally never get used, since
2158 vsprintf was available in both System V and BSD 2.11. (There may
2159 be some cross-compilation or embedded set-ups where it is needed,
2162 If you encounter a problem in this function, it's probably a symptom
2163 that Configure failed to detect your system's vprintf() function.
2164 See the section on "item vsprintf" in the INSTALL file.
2166 This version may compile on systems with BSD-ish <stdio.h>,
2167 but probably won't on others.
2170 #ifdef USE_CHAR_VSPRINTF
2175 vsprintf(char *dest, const char *pat, void *args)
2179 #if defined(STDIO_PTR_LVALUE) && defined(STDIO_CNT_LVALUE)
2180 FILE_ptr(&fakebuf) = (STDCHAR *) dest;
2181 FILE_cnt(&fakebuf) = 32767;
2183 /* These probably won't compile -- If you really need
2184 this, you'll have to figure out some other method. */
2185 fakebuf._ptr = dest;
2186 fakebuf._cnt = 32767;
2191 fakebuf._flag = _IOWRT|_IOSTRG;
2192 _doprnt(pat, args, &fakebuf); /* what a kludge */
2193 #if defined(STDIO_PTR_LVALUE)
2194 *(FILE_ptr(&fakebuf)++) = '\0';
2196 /* PerlIO has probably #defined away fputc, but we want it here. */
2198 # undef fputc /* XXX Should really restore it later */
2200 (void)fputc('\0', &fakebuf);
2202 #ifdef USE_CHAR_VSPRINTF
2205 return 0; /* perl doesn't use return value */
2209 #endif /* HAS_VPRINTF */
2212 #if BYTEORDER != 0x4321
2214 Perl_my_swap(pTHX_ short s)
2216 #if (BYTEORDER & 1) == 0
2219 result = ((s & 255) << 8) + ((s >> 8) & 255);
2227 Perl_my_htonl(pTHX_ long l)
2231 char c[sizeof(long)];
2234 #if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678
2235 #if BYTEORDER == 0x12345678
2238 u.c[0] = (l >> 24) & 255;
2239 u.c[1] = (l >> 16) & 255;
2240 u.c[2] = (l >> 8) & 255;
2244 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2245 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2250 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2251 u.c[o & 0xf] = (l >> s) & 255;
2259 Perl_my_ntohl(pTHX_ long l)
2263 char c[sizeof(long)];
2266 #if BYTEORDER == 0x1234
2267 u.c[0] = (l >> 24) & 255;
2268 u.c[1] = (l >> 16) & 255;
2269 u.c[2] = (l >> 8) & 255;
2273 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2274 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2281 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2282 l |= (u.c[o & 0xf] & 255) << s;
2289 #endif /* BYTEORDER != 0x4321 */
2293 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2294 * If these functions are defined,
2295 * the BYTEORDER is neither 0x1234 nor 0x4321.
2296 * However, this is not assumed.
2300 #define HTOLE(name,type) \
2302 name (register type n) \
2306 char c[sizeof(type)]; \
2309 register U32 s = 0; \
2310 for (i = 0; i < sizeof(u.c); i++, s += 8) { \
2311 u.c[i] = (n >> s) & 0xFF; \
2316 #define LETOH(name,type) \
2318 name (register type n) \
2322 char c[sizeof(type)]; \
2325 register U32 s = 0; \
2328 for (i = 0; i < sizeof(u.c); i++, s += 8) { \
2329 n |= ((type)(u.c[i] & 0xFF)) << s; \
2335 * Big-endian byte order functions.
2338 #define HTOBE(name,type) \
2340 name (register type n) \
2344 char c[sizeof(type)]; \
2347 register U32 s = 8*(sizeof(u.c)-1); \
2348 for (i = 0; i < sizeof(u.c); i++, s -= 8) { \
2349 u.c[i] = (n >> s) & 0xFF; \
2354 #define BETOH(name,type) \
2356 name (register type n) \
2360 char c[sizeof(type)]; \
2363 register U32 s = 8*(sizeof(u.c)-1); \
2366 for (i = 0; i < sizeof(u.c); i++, s -= 8) { \
2367 n |= ((type)(u.c[i] & 0xFF)) << s; \
2373 * If we just can't do it...
2376 #define NOT_AVAIL(name,type) \
2378 name (register type n) \
2380 Perl_croak_nocontext(#name "() not available"); \
2381 return n; /* not reached */ \
2385 #if defined(HAS_HTOVS) && !defined(htovs)
2388 #if defined(HAS_HTOVL) && !defined(htovl)
2391 #if defined(HAS_VTOHS) && !defined(vtohs)
2394 #if defined(HAS_VTOHL) && !defined(vtohl)
2398 #ifdef PERL_NEED_MY_HTOLE16
2400 HTOLE(Perl_my_htole16,U16)
2402 NOT_AVAIL(Perl_my_htole16,U16)
2405 #ifdef PERL_NEED_MY_LETOH16
2407 LETOH(Perl_my_letoh16,U16)
2409 NOT_AVAIL(Perl_my_letoh16,U16)
2412 #ifdef PERL_NEED_MY_HTOBE16
2414 HTOBE(Perl_my_htobe16,U16)
2416 NOT_AVAIL(Perl_my_htobe16,U16)
2419 #ifdef PERL_NEED_MY_BETOH16
2421 BETOH(Perl_my_betoh16,U16)
2423 NOT_AVAIL(Perl_my_betoh16,U16)
2427 #ifdef PERL_NEED_MY_HTOLE32
2429 HTOLE(Perl_my_htole32,U32)
2431 NOT_AVAIL(Perl_my_htole32,U32)
2434 #ifdef PERL_NEED_MY_LETOH32
2436 LETOH(Perl_my_letoh32,U32)
2438 NOT_AVAIL(Perl_my_letoh32,U32)
2441 #ifdef PERL_NEED_MY_HTOBE32
2443 HTOBE(Perl_my_htobe32,U32)
2445 NOT_AVAIL(Perl_my_htobe32,U32)
2448 #ifdef PERL_NEED_MY_BETOH32
2450 BETOH(Perl_my_betoh32,U32)
2452 NOT_AVAIL(Perl_my_betoh32,U32)
2456 #ifdef PERL_NEED_MY_HTOLE64
2458 HTOLE(Perl_my_htole64,U64)
2460 NOT_AVAIL(Perl_my_htole64,U64)
2463 #ifdef PERL_NEED_MY_LETOH64
2465 LETOH(Perl_my_letoh64,U64)
2467 NOT_AVAIL(Perl_my_letoh64,U64)
2470 #ifdef PERL_NEED_MY_HTOBE64
2472 HTOBE(Perl_my_htobe64,U64)
2474 NOT_AVAIL(Perl_my_htobe64,U64)
2477 #ifdef PERL_NEED_MY_BETOH64
2479 BETOH(Perl_my_betoh64,U64)
2481 NOT_AVAIL(Perl_my_betoh64,U64)
2485 #ifdef PERL_NEED_MY_HTOLES
2486 HTOLE(Perl_my_htoles,short)
2488 #ifdef PERL_NEED_MY_LETOHS
2489 LETOH(Perl_my_letohs,short)
2491 #ifdef PERL_NEED_MY_HTOBES
2492 HTOBE(Perl_my_htobes,short)
2494 #ifdef PERL_NEED_MY_BETOHS
2495 BETOH(Perl_my_betohs,short)
2498 #ifdef PERL_NEED_MY_HTOLEI
2499 HTOLE(Perl_my_htolei,int)
2501 #ifdef PERL_NEED_MY_LETOHI
2502 LETOH(Perl_my_letohi,int)
2504 #ifdef PERL_NEED_MY_HTOBEI
2505 HTOBE(Perl_my_htobei,int)
2507 #ifdef PERL_NEED_MY_BETOHI
2508 BETOH(Perl_my_betohi,int)
2511 #ifdef PERL_NEED_MY_HTOLEL
2512 HTOLE(Perl_my_htolel,long)
2514 #ifdef PERL_NEED_MY_LETOHL
2515 LETOH(Perl_my_letohl,long)
2517 #ifdef PERL_NEED_MY_HTOBEL
2518 HTOBE(Perl_my_htobel,long)
2520 #ifdef PERL_NEED_MY_BETOHL
2521 BETOH(Perl_my_betohl,long)
2525 Perl_my_swabn(void *ptr, int n)
2527 register char *s = (char *)ptr;
2528 register char *e = s + (n-1);
2531 PERL_ARGS_ASSERT_MY_SWABN;
2533 for (n /= 2; n > 0; s++, e--, n--) {
2541 Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
2543 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(OS2) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(NETWARE) && !defined(__LIBCATAMOUNT__)
2546 register I32 This, that;
2552 PERL_ARGS_ASSERT_MY_POPEN_LIST;
2554 PERL_FLUSHALL_FOR_CHILD;
2555 This = (*mode == 'w');
2559 taint_proper("Insecure %s%s", "EXEC");
2561 if (PerlProc_pipe(p) < 0)
2563 /* Try for another pipe pair for error return */
2564 if (PerlProc_pipe(pp) >= 0)
2566 while ((pid = PerlProc_fork()) < 0) {
2567 if (errno != EAGAIN) {
2568 PerlLIO_close(p[This]);
2569 PerlLIO_close(p[that]);
2571 PerlLIO_close(pp[0]);
2572 PerlLIO_close(pp[1]);
2576 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2585 /* Close parent's end of error status pipe (if any) */
2587 PerlLIO_close(pp[0]);
2588 #if defined(HAS_FCNTL) && defined(F_SETFD)
2589 /* Close error pipe automatically if exec works */
2590 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2593 /* Now dup our end of _the_ pipe to right position */
2594 if (p[THIS] != (*mode == 'r')) {
2595 PerlLIO_dup2(p[THIS], *mode == 'r');
2596 PerlLIO_close(p[THIS]);
2597 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2598 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2601 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2602 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2603 /* No automatic close - do it by hand */
2610 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
2616 do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
2622 do_execfree(); /* free any memory malloced by child on fork */
2624 PerlLIO_close(pp[1]);
2625 /* Keep the lower of the two fd numbers */
2626 if (p[that] < p[This]) {
2627 PerlLIO_dup2(p[This], p[that]);
2628 PerlLIO_close(p[This]);
2632 PerlLIO_close(p[that]); /* close child's end of pipe */
2634 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2635 SvUPGRADE(sv,SVt_IV);
2637 PL_forkprocess = pid;
2638 /* If we managed to get status pipe check for exec fail */
2639 if (did_pipes && pid > 0) {
2644 while (n < sizeof(int)) {
2645 n1 = PerlLIO_read(pp[0],
2646 (void*)(((char*)&errkid)+n),
2652 PerlLIO_close(pp[0]);
2654 if (n) { /* Error */
2656 PerlLIO_close(p[This]);
2657 if (n != sizeof(int))
2658 Perl_croak(aTHX_ "panic: kid popen errno read");
2660 pid2 = wait4pid(pid, &status, 0);
2661 } while (pid2 == -1 && errno == EINTR);
2662 errno = errkid; /* Propagate errno from kid */
2667 PerlLIO_close(pp[0]);
2668 return PerlIO_fdopen(p[This], mode);
2670 # ifdef OS2 /* Same, without fork()ing and all extra overhead... */
2671 return my_syspopen4(aTHX_ NULL, mode, n, args);
2673 Perl_croak(aTHX_ "List form of piped open not implemented");
2674 return (PerlIO *) NULL;
2679 /* VMS' my_popen() is in VMS.c, same with OS/2. */
2680 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(__LIBCATAMOUNT__)
2682 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2686 register I32 This, that;
2689 const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
2693 PERL_ARGS_ASSERT_MY_POPEN;
2695 PERL_FLUSHALL_FOR_CHILD;
2698 return my_syspopen(aTHX_ cmd,mode);
2701 This = (*mode == 'w');
2703 if (doexec && PL_tainting) {
2705 taint_proper("Insecure %s%s", "EXEC");
2707 if (PerlProc_pipe(p) < 0)
2709 if (doexec && PerlProc_pipe(pp) >= 0)
2711 while ((pid = PerlProc_fork()) < 0) {
2712 if (errno != EAGAIN) {
2713 PerlLIO_close(p[This]);
2714 PerlLIO_close(p[that]);
2716 PerlLIO_close(pp[0]);
2717 PerlLIO_close(pp[1]);
2720 Perl_croak(aTHX_ "Can't fork: %s", Strerror(errno));
2723 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2734 PerlLIO_close(pp[0]);
2735 #if defined(HAS_FCNTL) && defined(F_SETFD)
2736 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2739 if (p[THIS] != (*mode == 'r')) {
2740 PerlLIO_dup2(p[THIS], *mode == 'r');
2741 PerlLIO_close(p[THIS]);
2742 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2743 PerlLIO_close(p[THAT]);
2746 PerlLIO_close(p[THAT]);
2749 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2756 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2761 /* may or may not use the shell */
2762 do_exec3(cmd, pp[1], did_pipes);
2765 #endif /* defined OS2 */
2767 #ifdef PERLIO_USING_CRLF
2768 /* Since we circumvent IO layers when we manipulate low-level
2769 filedescriptors directly, need to manually switch to the
2770 default, binary, low-level mode; see PerlIOBuf_open(). */
2771 PerlLIO_setmode((*mode == 'r'), O_BINARY);
2774 if ((tmpgv = gv_fetchpvs("$", GV_ADD|GV_NOTQUAL, SVt_PV))) {
2775 SvREADONLY_off(GvSV(tmpgv));
2776 sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2777 SvREADONLY_on(GvSV(tmpgv));
2779 #ifdef THREADS_HAVE_PIDS
2780 PL_ppid = (IV)getppid();
2783 #ifdef PERL_USES_PL_PIDSTATUS
2784 hv_clear(PL_pidstatus); /* we have no children */
2790 do_execfree(); /* free any memory malloced by child on vfork */
2792 PerlLIO_close(pp[1]);
2793 if (p[that] < p[This]) {
2794 PerlLIO_dup2(p[This], p[that]);
2795 PerlLIO_close(p[This]);
2799 PerlLIO_close(p[that]);
2801 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2802 SvUPGRADE(sv,SVt_IV);
2804 PL_forkprocess = pid;
2805 if (did_pipes && pid > 0) {
2810 while (n < sizeof(int)) {
2811 n1 = PerlLIO_read(pp[0],
2812 (void*)(((char*)&errkid)+n),
2818 PerlLIO_close(pp[0]);
2820 if (n) { /* Error */
2822 PerlLIO_close(p[This]);
2823 if (n != sizeof(int))
2824 Perl_croak(aTHX_ "panic: kid popen errno read");
2826 pid2 = wait4pid(pid, &status, 0);
2827 } while (pid2 == -1 && errno == EINTR);
2828 errno = errkid; /* Propagate errno from kid */
2833 PerlLIO_close(pp[0]);
2834 return PerlIO_fdopen(p[This], mode);
2837 #if defined(atarist) || defined(EPOC)
2840 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2842 PERL_ARGS_ASSERT_MY_POPEN;
2843 PERL_FLUSHALL_FOR_CHILD;
2844 /* Call system's popen() to get a FILE *, then import it.
2845 used 0 for 2nd parameter to PerlIO_importFILE;
2848 return PerlIO_importFILE(popen(cmd, mode), 0);
2852 FILE *djgpp_popen();
2854 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2856 PERL_FLUSHALL_FOR_CHILD;
2857 /* Call system's popen() to get a FILE *, then import it.
2858 used 0 for 2nd parameter to PerlIO_importFILE;
2861 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2864 #if defined(__LIBCATAMOUNT__)
2866 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2874 #endif /* !DOSISH */
2876 /* this is called in parent before the fork() */
2878 Perl_atfork_lock(void)
2881 #if defined(USE_ITHREADS)
2882 /* locks must be held in locking order (if any) */
2884 MUTEX_LOCK(&PL_malloc_mutex);
2890 /* this is called in both parent and child after the fork() */
2892 Perl_atfork_unlock(void)
2895 #if defined(USE_ITHREADS)
2896 /* locks must be released in same order as in atfork_lock() */
2898 MUTEX_UNLOCK(&PL_malloc_mutex);
2907 #if defined(HAS_FORK)
2909 #if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
2914 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2915 * handlers elsewhere in the code */
2920 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2921 Perl_croak_nocontext("fork() not available");
2923 #endif /* HAS_FORK */
2928 Perl_dump_fds(pTHX_ const char *const s)
2933 PERL_ARGS_ASSERT_DUMP_FDS;
2935 PerlIO_printf(Perl_debug_log,"%s", s);
2936 for (fd = 0; fd < 32; fd++) {
2937 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2938 PerlIO_printf(Perl_debug_log," %d",fd);
2940 PerlIO_printf(Perl_debug_log,"\n");
2943 #endif /* DUMP_FDS */
2947 dup2(int oldfd, int newfd)
2949 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2952 PerlLIO_close(newfd);
2953 return fcntl(oldfd, F_DUPFD, newfd);
2955 #define DUP2_MAX_FDS 256
2956 int fdtmp[DUP2_MAX_FDS];
2962 PerlLIO_close(newfd);
2963 /* good enough for low fd's... */
2964 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2965 if (fdx >= DUP2_MAX_FDS) {
2973 PerlLIO_close(fdtmp[--fdx]);
2980 #ifdef HAS_SIGACTION
2983 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2986 struct sigaction act, oact;
2989 /* only "parent" interpreter can diddle signals */
2990 if (PL_curinterp != aTHX)
2991 return (Sighandler_t) SIG_ERR;
2994 act.sa_handler = (void(*)(int))handler;
2995 sigemptyset(&act.sa_mask);
2998 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2999 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
3001 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
3002 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
3003 act.sa_flags |= SA_NOCLDWAIT;
3005 if (sigaction(signo, &act, &oact) == -1)
3006 return (Sighandler_t) SIG_ERR;
3008 return (Sighandler_t) oact.sa_handler;
3012 Perl_rsignal_state(pTHX_ int signo)
3014 struct sigaction oact;
3015 PERL_UNUSED_CONTEXT;
3017 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
3018 return (Sighandler_t) SIG_ERR;
3020 return (Sighandler_t) oact.sa_handler;
3024 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
3027 struct sigaction act;
3029 PERL_ARGS_ASSERT_RSIGNAL_SAVE;
3032 /* only "parent" interpreter can diddle signals */
3033 if (PL_curinterp != aTHX)
3037 act.sa_handler = (void(*)(int))handler;
3038 sigemptyset(&act.sa_mask);
3041 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
3042 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
3044 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
3045 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
3046 act.sa_flags |= SA_NOCLDWAIT;
3048 return sigaction(signo, &act, save);
3052 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
3056 /* only "parent" interpreter can diddle signals */
3057 if (PL_curinterp != aTHX)
3061 return sigaction(signo, save, (struct sigaction *)NULL);
3064 #else /* !HAS_SIGACTION */
3067 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
3069 #if defined(USE_ITHREADS) && !defined(WIN32)
3070 /* only "parent" interpreter can diddle signals */
3071 if (PL_curinterp != aTHX)
3072 return (Sighandler_t) SIG_ERR;
3075 return PerlProc_signal(signo, handler);
3086 Perl_rsignal_state(pTHX_ int signo)
3089 Sighandler_t oldsig;
3091 #if defined(USE_ITHREADS) && !defined(WIN32)
3092 /* only "parent" interpreter can diddle signals */
3093 if (PL_curinterp != aTHX)
3094 return (Sighandler_t) SIG_ERR;
3098 oldsig = PerlProc_signal(signo, sig_trap);
3099 PerlProc_signal(signo, oldsig);
3101 PerlProc_kill(PerlProc_getpid(), signo);
3106 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
3108 #if defined(USE_ITHREADS) && !defined(WIN32)
3109 /* only "parent" interpreter can diddle signals */
3110 if (PL_curinterp != aTHX)
3113 *save = PerlProc_signal(signo, handler);
3114 return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
3118 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
3120 #if defined(USE_ITHREADS) && !defined(WIN32)
3121 /* only "parent" interpreter can diddle signals */
3122 if (PL_curinterp != aTHX)
3125 return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
3128 #endif /* !HAS_SIGACTION */
3129 #endif /* !PERL_MICRO */
3131 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
3132 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(__LIBCATAMOUNT__)
3134 Perl_my_pclose(pTHX_ PerlIO *ptr)
3137 Sigsave_t hstat, istat, qstat;
3145 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
3146 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
3148 *svp = &PL_sv_undef;
3150 if (pid == -1) { /* Opened by popen. */
3151 return my_syspclose(ptr);
3154 close_failed = (PerlIO_close(ptr) == EOF);
3157 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
3160 rsignal_save(SIGHUP, (Sighandler_t) SIG_IGN, &hstat);
3161 rsignal_save(SIGINT, (Sighandler_t) SIG_IGN, &istat);
3162 rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qstat);
3165 pid2 = wait4pid(pid, &status, 0);
3166 } while (pid2 == -1 && errno == EINTR);
3168 rsignal_restore(SIGHUP, &hstat);
3169 rsignal_restore(SIGINT, &istat);
3170 rsignal_restore(SIGQUIT, &qstat);
3176 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
3179 #if defined(__LIBCATAMOUNT__)
3181 Perl_my_pclose(pTHX_ PerlIO *ptr)
3186 #endif /* !DOSISH */
3188 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(__LIBCATAMOUNT__)
3190 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
3194 PERL_ARGS_ASSERT_WAIT4PID;
3197 #ifdef PERL_USES_PL_PIDSTATUS
3200 /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
3201 pid, rather than a string form. */
3202 SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
3203 if (svp && *svp != &PL_sv_undef) {
3204 *statusp = SvIVX(*svp);
3205 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
3213 hv_iterinit(PL_pidstatus);
3214 if ((entry = hv_iternext(PL_pidstatus))) {
3215 SV * const sv = hv_iterval(PL_pidstatus,entry);
3217 const char * const spid = hv_iterkey(entry,&len);
3219 assert (len == sizeof(Pid_t));
3220 memcpy((char *)&pid, spid, len);
3221 *statusp = SvIVX(sv);
3222 /* The hash iterator is currently on this entry, so simply
3223 calling hv_delete would trigger the lazy delete, which on
3224 aggregate does more work, beacuse next call to hv_iterinit()
3225 would spot the flag, and have to call the delete routine,
3226 while in the meantime any new entries can't re-use that
3228 hv_iterinit(PL_pidstatus);
3229 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
3236 # ifdef HAS_WAITPID_RUNTIME
3237 if (!HAS_WAITPID_RUNTIME)
3240 result = PerlProc_waitpid(pid,statusp,flags);
3243 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
3244 result = wait4((pid==-1)?0:pid,statusp,flags,NULL);
3247 #ifdef PERL_USES_PL_PIDSTATUS
3248 #if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
3253 Perl_croak(aTHX_ "Can't do waitpid with flags");
3255 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
3256 pidgone(result,*statusp);
3262 #if defined(HAS_WAITPID) || defined(HAS_WAIT4)
3265 if (result < 0 && errno == EINTR) {
3267 errno = EINTR; /* reset in case a signal handler changed $! */
3271 #endif /* !DOSISH || OS2 || WIN32 || NETWARE */
3273 #ifdef PERL_USES_PL_PIDSTATUS
3275 S_pidgone(pTHX_ Pid_t pid, int status)
3279 sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
3280 SvUPGRADE(sv,SVt_IV);
3281 SvIV_set(sv, status);
3286 #if defined(atarist) || defined(OS2) || defined(EPOC)
3289 int /* Cannot prototype with I32
3291 my_syspclose(PerlIO *ptr)
3294 Perl_my_pclose(pTHX_ PerlIO *ptr)
3297 /* Needs work for PerlIO ! */
3298 FILE * const f = PerlIO_findFILE(ptr);
3299 const I32 result = pclose(f);
3300 PerlIO_releaseFILE(ptr,f);
3308 Perl_my_pclose(pTHX_ PerlIO *ptr)
3310 /* Needs work for PerlIO ! */
3311 FILE * const f = PerlIO_findFILE(ptr);
3312 I32 result = djgpp_pclose(f);
3313 result = (result << 8) & 0xff00;
3314 PerlIO_releaseFILE(ptr,f);
3319 #define PERL_REPEATCPY_LINEAR 4
3321 Perl_repeatcpy(register char *to, register const char *from, I32 len, register I32 count)
3323 PERL_ARGS_ASSERT_REPEATCPY;
3326 memset(to, *from, count);
3328 register char *p = to;
3329 I32 items, linear, half;
3331 linear = count < PERL_REPEATCPY_LINEAR ? count : PERL_REPEATCPY_LINEAR;
3332 for (items = 0; items < linear; ++items) {
3333 register const char *q = from;
3335 for (todo = len; todo > 0; todo--)
3340 while (items <= half) {
3341 I32 size = items * len;
3342 memcpy(p, to, size);
3348 memcpy(p, to, (count - items) * len);
3354 Perl_same_dirent(pTHX_ const char *a, const char *b)
3356 char *fa = strrchr(a,'/');
3357 char *fb = strrchr(b,'/');
3360 SV * const tmpsv = sv_newmortal();
3362 PERL_ARGS_ASSERT_SAME_DIRENT;
3375 sv_setpvs(tmpsv, ".");
3377 sv_setpvn(tmpsv, a, fa - a);
3378 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
3381 sv_setpvs(tmpsv, ".");
3383 sv_setpvn(tmpsv, b, fb - b);
3384 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
3386 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3387 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3389 #endif /* !HAS_RENAME */
3392 Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3393 const char *const *const search_ext, I32 flags)
3396 const char *xfound = NULL;
3397 char *xfailed = NULL;
3398 char tmpbuf[MAXPATHLEN];
3403 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3404 # define SEARCH_EXTS ".bat", ".cmd", NULL
3405 # define MAX_EXT_LEN 4
3408 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3409 # define MAX_EXT_LEN 4
3412 # define SEARCH_EXTS ".pl", ".com", NULL
3413 # define MAX_EXT_LEN 4
3415 /* additional extensions to try in each dir if scriptname not found */
3417 static const char *const exts[] = { SEARCH_EXTS };
3418 const char *const *const ext = search_ext ? search_ext : exts;
3419 int extidx = 0, i = 0;
3420 const char *curext = NULL;
3422 PERL_UNUSED_ARG(search_ext);
3423 # define MAX_EXT_LEN 0
3426 PERL_ARGS_ASSERT_FIND_SCRIPT;
3429 * If dosearch is true and if scriptname does not contain path
3430 * delimiters, search the PATH for scriptname.
3432 * If SEARCH_EXTS is also defined, will look for each
3433 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3434 * while searching the PATH.
3436 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3437 * proceeds as follows:
3438 * If DOSISH or VMSISH:
3439 * + look for ./scriptname{,.foo,.bar}
3440 * + search the PATH for scriptname{,.foo,.bar}
3443 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3444 * this will not look in '.' if it's not in the PATH)
3449 # ifdef ALWAYS_DEFTYPES
3450 len = strlen(scriptname);
3451 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3452 int idx = 0, deftypes = 1;
3455 const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
3458 int idx = 0, deftypes = 1;
3461 const int hasdir = (strpbrk(scriptname,":[</") != NULL);
3463 /* The first time through, just add SEARCH_EXTS to whatever we
3464 * already have, so we can check for default file types. */
3466 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3472 if ((strlen(tmpbuf) + strlen(scriptname)
3473 + MAX_EXT_LEN) >= sizeof tmpbuf)
3474 continue; /* don't search dir with too-long name */
3475 my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
3479 if (strEQ(scriptname, "-"))
3481 if (dosearch) { /* Look in '.' first. */
3482 const char *cur = scriptname;
3484 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3486 if (strEQ(ext[i++],curext)) {
3487 extidx = -1; /* already has an ext */
3492 DEBUG_p(PerlIO_printf(Perl_debug_log,
3493 "Looking for %s\n",cur));
3494 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3495 && !S_ISDIR(PL_statbuf.st_mode)) {
3503 if (cur == scriptname) {
3504 len = strlen(scriptname);
3505 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3507 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3510 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3511 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
3516 if (dosearch && !strchr(scriptname, '/')
3518 && !strchr(scriptname, '\\')
3520 && (s = PerlEnv_getenv("PATH")))
3524 bufend = s + strlen(s);
3525 while (s < bufend) {
3526 #if defined(atarist) || defined(DOSISH)
3531 && *s != ';'; len++, s++) {
3532 if (len < sizeof tmpbuf)
3535 if (len < sizeof tmpbuf)
3537 #else /* ! (atarist || DOSISH) */
3538 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
3541 #endif /* ! (atarist || DOSISH) */
3544 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3545 continue; /* don't search dir with too-long name */
3547 # if defined(atarist) || defined(DOSISH)
3548 && tmpbuf[len - 1] != '/'
3549 && tmpbuf[len - 1] != '\\'
3552 tmpbuf[len++] = '/';
3553 if (len == 2 && tmpbuf[0] == '.')
3555 (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
3559 len = strlen(tmpbuf);
3560 if (extidx > 0) /* reset after previous loop */
3564 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3565 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3566 if (S_ISDIR(PL_statbuf.st_mode)) {
3570 } while ( retval < 0 /* not there */
3571 && extidx>=0 && ext[extidx] /* try an extension? */
3572 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
3577 if (S_ISREG(PL_statbuf.st_mode)
3578 && cando(S_IRUSR,TRUE,&PL_statbuf)
3579 #if !defined(DOSISH)
3580 && cando(S_IXUSR,TRUE,&PL_statbuf)
3584 xfound = tmpbuf; /* bingo! */
3588 xfailed = savepv(tmpbuf);
3591 if (!xfound && !seen_dot && !xfailed &&
3592 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
3593 || S_ISDIR(PL_statbuf.st_mode)))
3595 seen_dot = 1; /* Disable message. */
3597 if (flags & 1) { /* do or die? */
3598 Perl_croak(aTHX_ "Can't %s %s%s%s",
3599 (xfailed ? "execute" : "find"),
3600 (xfailed ? xfailed : scriptname),
3601 (xfailed ? "" : " on PATH"),
3602 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3607 scriptname = xfound;
3609 return (scriptname ? savepv(scriptname) : NULL);
3612 #ifndef PERL_GET_CONTEXT_DEFINED
3615 Perl_get_context(void)
3618 #if defined(USE_ITHREADS)
3619 # ifdef OLD_PTHREADS_API
3621 if (pthread_getspecific(PL_thr_key, &t))
3622 Perl_croak_nocontext("panic: pthread_getspecific");
3625 # ifdef I_MACH_CTHREADS
3626 return (void*)cthread_data(cthread_self());
3628 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3637 Perl_set_context(void *t)
3640 PERL_ARGS_ASSERT_SET_CONTEXT;
3641 #if defined(USE_ITHREADS)
3642 # ifdef I_MACH_CTHREADS
3643 cthread_set_data(cthread_self(), t);
3645 if (pthread_setspecific(PL_thr_key, t))
3646 Perl_croak_nocontext("panic: pthread_setspecific");
3653 #endif /* !PERL_GET_CONTEXT_DEFINED */
3655 #if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
3664 Perl_get_op_names(pTHX)
3666 PERL_UNUSED_CONTEXT;
3667 return (char **)PL_op_name;
3671 Perl_get_op_descs(pTHX)
3673 PERL_UNUSED_CONTEXT;
3674 return (char **)PL_op_desc;
3678 Perl_get_no_modify(pTHX)
3680 PERL_UNUSED_CONTEXT;
3681 return PL_no_modify;
3685 Perl_get_opargs(pTHX)
3687 PERL_UNUSED_CONTEXT;
3688 return (U32 *)PL_opargs;
3692 Perl_get_ppaddr(pTHX)
3695 PERL_UNUSED_CONTEXT;
3696 return (PPADDR_t*)PL_ppaddr;
3699 #ifndef HAS_GETENV_LEN
3701 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3703 char * const env_trans = PerlEnv_getenv(env_elem);
3704 PERL_UNUSED_CONTEXT;
3705 PERL_ARGS_ASSERT_GETENV_LEN;
3707 *len = strlen(env_trans);
3714 Perl_get_vtbl(pTHX_ int vtbl_id)
3716 const MGVTBL* result;
3717 PERL_UNUSED_CONTEXT;
3721 result = &PL_vtbl_sv;
3724 result = &PL_vtbl_env;
3726 case want_vtbl_envelem:
3727 result = &PL_vtbl_envelem;
3730 result = &PL_vtbl_sig;
3732 case want_vtbl_sigelem:
3733 result = &PL_vtbl_sigelem;
3735 case want_vtbl_pack:
3736 result = &PL_vtbl_pack;
3738 case want_vtbl_packelem:
3739 result = &PL_vtbl_packelem;
3741 case want_vtbl_dbline:
3742 result = &PL_vtbl_dbline;
3745 result = &PL_vtbl_isa;
3747 case want_vtbl_isaelem:
3748 result = &PL_vtbl_isaelem;
3750 case want_vtbl_arylen:
3751 result = &PL_vtbl_arylen;
3753 case want_vtbl_mglob:
3754 result = &PL_vtbl_mglob;
3756 case want_vtbl_nkeys:
3757 result = &PL_vtbl_nkeys;
3759 case want_vtbl_taint:
3760 result = &PL_vtbl_taint;
3762 case want_vtbl_substr:
3763 result = &PL_vtbl_substr;
3766 result = &PL_vtbl_vec;
3769 result = &PL_vtbl_pos;
3772 result = &PL_vtbl_bm;
3775 result = &PL_vtbl_fm;
3777 case want_vtbl_uvar:
3778 result = &PL_vtbl_uvar;
3780 case want_vtbl_defelem:
3781 result = &PL_vtbl_defelem;
3783 case want_vtbl_regexp:
3784 result = &PL_vtbl_regexp;
3786 case want_vtbl_regdata:
3787 result = &PL_vtbl_regdata;
3789 case want_vtbl_regdatum:
3790 result = &PL_vtbl_regdatum;
3792 #ifdef USE_LOCALE_COLLATE
3793 case want_vtbl_collxfrm:
3794 result = &PL_vtbl_collxfrm;
3797 case want_vtbl_amagic:
3798 result = &PL_vtbl_amagic;
3800 case want_vtbl_amagicelem:
3801 result = &PL_vtbl_amagicelem;
3803 case want_vtbl_backref:
3804 result = &PL_vtbl_backref;
3806 case want_vtbl_utf8:
3807 result = &PL_vtbl_utf8;
3813 return (MGVTBL*)result;
3817 Perl_my_fflush_all(pTHX)
3819 #if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
3820 return PerlIO_flush(NULL);
3822 # if defined(HAS__FWALK)
3823 extern int fflush(FILE *);
3824 /* undocumented, unprototyped, but very useful BSDism */
3825 extern void _fwalk(int (*)(FILE *));
3829 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3831 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3832 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3834 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3835 open_max = sysconf(_SC_OPEN_MAX);
3838 open_max = FOPEN_MAX;
3841 open_max = OPEN_MAX;
3852 for (i = 0; i < open_max; i++)
3853 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3854 STDIO_STREAM_ARRAY[i]._file < open_max &&
3855 STDIO_STREAM_ARRAY[i]._flag)
3856 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3860 SETERRNO(EBADF,RMS_IFI);
3867 Perl_report_wrongway_fh(pTHX_ const GV *gv, char have)
3869 if (ckWARN(WARN_IO)) {
3870 const char * const name
3871 = gv && (isGV(gv) || isGV_with_GP(gv)) ? GvENAME(gv) : NULL;
3872 const char * const direction = have == '>' ? "out" : "in";
3875 Perl_warner(aTHX_ packWARN(WARN_IO),
3876 "Filehandle %s opened only for %sput",
3879 Perl_warner(aTHX_ packWARN(WARN_IO),
3880 "Filehandle opened only for %sput", direction);
3885 Perl_report_evil_fh(pTHX_ const GV *gv)
3887 const IO *io = gv ? GvIO(gv) : NULL;
3888 const PERL_BITFIELD16 op = PL_op->op_type;
3892 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3894 warn_type = WARN_CLOSED;
3898 warn_type = WARN_UNOPENED;
3901 if (ckWARN(warn_type)) {
3902 const char * const name
3903 = gv && (isGV(gv) || isGV_with_GP(gv)) ? GvENAME(gv) : NULL;
3904 const char * const pars =
3905 (const char *)(OP_IS_FILETEST(op) ? "" : "()");
3906 const char * const func =
3908 (op == OP_READLINE ? "readline" : /* "<HANDLE>" not nice */
3909 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3911 const char * const type =
3913 (OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET)
3914 ? "socket" : "filehandle");
3915 if (name && *name) {
3916 Perl_warner(aTHX_ packWARN(warn_type),
3917 "%s%s on %s %s %s", func, pars, vile, type, name);
3918 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3920 aTHX_ packWARN(warn_type),
3921 "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3926 Perl_warner(aTHX_ packWARN(warn_type),
3927 "%s%s on %s %s", func, pars, vile, type);
3928 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3930 aTHX_ packWARN(warn_type),
3931 "\t(Are you trying to call %s%s on dirhandle?)\n",
3938 /* XXX Add documentation after final interface and behavior is decided */
3939 /* May want to show context for error, so would pass Perl_bslash_c(pTHX_ const char* current, const char* start, const bool output_warning)
3940 U8 source = *current;
3942 May want to add eg, WARN_REGEX
3946 Perl_grok_bslash_c(pTHX_ const char source, const bool output_warning)
3951 if (! isASCII(source)) {
3952 Perl_croak(aTHX_ "Character following \"\\c\" must be ASCII");
3955 result = toCTRL(source);
3956 if (! isCNTRL(result)) {
3957 if (source == '{') {
3958 Perl_croak(aTHX_ "It is proposed that \"\\c{\" no longer be valid. It has historically evaluated to\n \";\". If you disagree with this proposal, send email to perl5-porters@perl.org\nOtherwise, or in the meantime, you can work around this failure by changing\n\"\\c{\" to \";\"");
3960 else if (output_warning) {
3963 if (! isALNUM(result)) {
3964 clearer[i++] = '\\';
3966 clearer[i++] = result;
3967 clearer[i++] = '\0';
3969 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED),
3970 "\"\\c%c\" more clearly written simply as \"%s\"",
3980 Perl_grok_bslash_o(pTHX_ const char *s,
3983 const char** error_msg,
3984 const bool output_warning)
3987 /* Documentation to be supplied when interface nailed down finally
3988 * This returns FALSE if there is an error which the caller need not recover
3989 * from; , otherwise TRUE. In either case the caller should look at *len
3991 * s points to a string that begins with 'o', and the previous character
3993 * uv points to a UV that will hold the output value, valid only if the
3994 * return from the function is TRUE
3995 * len on success will point to the next character in the string past the
3996 * end of this construct.
3997 * on failure, it will point to the failure
3998 * error_msg is a pointer that will be set to an internal buffer giving an
3999 * error message upon failure (the return is FALSE). Untouched if
4001 * output_warning says whether to output any warning messages, or suppress
4006 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
4007 | PERL_SCAN_DISALLOW_PREFIX
4008 /* XXX Until the message is improved in grok_oct, handle errors
4010 | PERL_SCAN_SILENT_ILLDIGIT;
4012 PERL_ARGS_ASSERT_GROK_BSLASH_O;
4019 *len = 1; /* Move past the o */
4020 *error_msg = "Missing braces on \\o{}";
4026 *len = 2; /* Move past the o{ */
4027 *error_msg = "Missing right brace on \\o{";
4031 /* Return past the '}' no matter what is inside the braces */
4032 *len = e - s + 2; /* 2 = 1 for the o + 1 for the '}' */
4034 s++; /* Point to first digit */
4036 numbers_len = e - s;
4037 if (numbers_len == 0) {
4038 *error_msg = "Number with no digits";
4042 *uv = NATIVE_TO_UNI(grok_oct(s, &numbers_len, &flags, NULL));
4043 /* Note that if has non-octal, will ignore everything starting with that up
4046 if (output_warning && numbers_len != (STRLEN) (e - s)) {
4047 Perl_ck_warner(aTHX_ packWARN(WARN_DIGIT),
4048 /* diag_listed_as: Non-octal character '%c'. Resolved as "%s" */
4049 "Non-octal character '%c'. Resolved as \"\\o{%.*s}\"",
4058 /* To workaround core dumps from the uninitialised tm_zone we get the
4059 * system to give us a reasonable struct to copy. This fix means that
4060 * strftime uses the tm_zone and tm_gmtoff values returned by
4061 * localtime(time()). That should give the desired result most of the
4062 * time. But probably not always!
4064 * This does not address tzname aspects of NETaa14816.
4069 # ifndef STRUCT_TM_HASZONE
4070 # define STRUCT_TM_HASZONE
4074 #ifdef STRUCT_TM_HASZONE /* Backward compat */
4075 # ifndef HAS_TM_TM_ZONE
4076 # define HAS_TM_TM_ZONE
4081 Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
4083 #ifdef HAS_TM_TM_ZONE
4085 const struct tm* my_tm;
4086 PERL_ARGS_ASSERT_INIT_TM;
4088 my_tm = localtime(&now);
4090 Copy(my_tm, ptm, 1, struct tm);
4092 PERL_ARGS_ASSERT_INIT_TM;
4093 PERL_UNUSED_ARG(ptm);
4098 * mini_mktime - normalise struct tm values without the localtime()
4099 * semantics (and overhead) of mktime().
4102 Perl_mini_mktime(pTHX_ struct tm *ptm)
4106 int month, mday, year, jday;
4107 int odd_cent, odd_year;
4108 PERL_UNUSED_CONTEXT;
4110 PERL_ARGS_ASSERT_MINI_MKTIME;
4112 #define DAYS_PER_YEAR 365
4113 #define DAYS_PER_QYEAR (4*DAYS_PER_YEAR+1)
4114 #define DAYS_PER_CENT (25*DAYS_PER_QYEAR-1)
4115 #define DAYS_PER_QCENT (4*DAYS_PER_CENT+1)
4116 #define SECS_PER_HOUR (60*60)
4117 #define SECS_PER_DAY (24*SECS_PER_HOUR)
4118 /* parentheses deliberately absent on these two, otherwise they don't work */
4119 #define MONTH_TO_DAYS 153/5
4120 #define DAYS_TO_MONTH 5/153
4121 /* offset to bias by March (month 4) 1st between month/mday & year finding */
4122 #define YEAR_ADJUST (4*MONTH_TO_DAYS+1)
4123 /* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
4124 #define WEEKDAY_BIAS 6 /* (1+6)%7 makes Sunday 0 again */
4127 * Year/day algorithm notes:
4129 * With a suitable offset for numeric value of the month, one can find
4130 * an offset into the year by considering months to have 30.6 (153/5) days,
4131 * using integer arithmetic (i.e., with truncation). To avoid too much
4132 * messing about with leap days, we consider January and February to be
4133 * the 13th and 14th month of the previous year. After that transformation,
4134 * we need the month index we use to be high by 1 from 'normal human' usage,
4135 * so the month index values we use run from 4 through 15.
4137 * Given that, and the rules for the Gregorian calendar (leap years are those
4138 * divisible by 4 unless also divisible by 100, when they must be divisible
4139 * by 400 instead), we can simply calculate the number of days since some
4140 * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
4141 * the days we derive from our month index, and adding in the day of the
4142 * month. The value used here is not adjusted for the actual origin which
4143 * it normally would use (1 January A.D. 1), since we're not exposing it.
4144 * We're only building the value so we can turn around and get the
4145 * normalised values for the year, month, day-of-month, and day-of-year.
4147 * For going backward, we need to bias the value we're using so that we find
4148 * the right year value. (Basically, we don't want the contribution of
4149 * March 1st to the number to apply while deriving the year). Having done
4150 * that, we 'count up' the contribution to the year number by accounting for
4151 * full quadracenturies (400-year periods) with their extra leap days, plus
4152 * the contribution from full centuries (to avoid counting in the lost leap
4153 * days), plus the contribution from full quad-years (to count in the normal
4154 * leap days), plus the leftover contribution from any non-leap years.
4155 * At this point, if we were working with an actual leap day, we'll have 0
4156 * days left over. This is also true for March 1st, however. So, we have
4157 * to special-case that result, and (earlier) keep track of the 'odd'
4158 * century and year contributions. If we got 4 extra centuries in a qcent,
4159 * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
4160 * Otherwise, we add back in the earlier bias we removed (the 123 from
4161 * figuring in March 1st), find the month index (integer division by 30.6),
4162 * and the remainder is the day-of-month. We then have to convert back to
4163 * 'real' months (including fixing January and February from being 14/15 in
4164 * the previous year to being in the proper year). After that, to get
4165 * tm_yday, we work with the normalised year and get a new yearday value for
4166 * January 1st, which we subtract from the yearday value we had earlier,
4167 * representing the date we've re-built. This is done from January 1
4168 * because tm_yday is 0-origin.
4170 * Since POSIX time routines are only guaranteed to work for times since the
4171 * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
4172 * applies Gregorian calendar rules even to dates before the 16th century
4173 * doesn't bother me. Besides, you'd need cultural context for a given
4174 * date to know whether it was Julian or Gregorian calendar, and that's
4175 * outside the scope for this routine. Since we convert back based on the
4176 * same rules we used to build the yearday, you'll only get strange results
4177 * for input which needed normalising, or for the 'odd' century years which
4178 * were leap years in the Julian calander but not in the Gregorian one.
4179 * I can live with that.
4181 * This algorithm also fails to handle years before A.D. 1 gracefully, but
4182 * that's still outside the scope for POSIX time manipulation, so I don't
4186 year = 1900 + ptm->tm_year;
4187 month = ptm->tm_mon;
4188 mday = ptm->tm_mday;
4189 /* allow given yday with no month & mday to dominate the result */
4190 if (ptm->tm_yday >= 0 && mday <= 0 && month <= 0) {
4193 jday = 1 + ptm->tm_yday;
4202 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
4203 yearday += month*MONTH_TO_DAYS + mday + jday;
4205 * Note that we don't know when leap-seconds were or will be,
4206 * so we have to trust the user if we get something which looks
4207 * like a sensible leap-second. Wild values for seconds will
4208 * be rationalised, however.
4210 if ((unsigned) ptm->tm_sec <= 60) {
4217 secs += 60 * ptm->tm_min;
4218 secs += SECS_PER_HOUR * ptm->tm_hour;
4220 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
4221 /* got negative remainder, but need positive time */
4222 /* back off an extra day to compensate */
4223 yearday += (secs/SECS_PER_DAY)-1;
4224 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
4227 yearday += (secs/SECS_PER_DAY);
4228 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
4231 else if (secs >= SECS_PER_DAY) {
4232 yearday += (secs/SECS_PER_DAY);
4233 secs %= SECS_PER_DAY;
4235 ptm->tm_hour = secs/SECS_PER_HOUR;
4236 secs %= SECS_PER_HOUR;
4237 ptm->tm_min = secs/60;
4239 ptm->tm_sec += secs;
4240 /* done with time of day effects */
4242 * The algorithm for yearday has (so far) left it high by 428.
4243 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
4244 * bias it by 123 while trying to figure out what year it
4245 * really represents. Even with this tweak, the reverse
4246 * translation fails for years before A.D. 0001.
4247 * It would still fail for Feb 29, but we catch that one below.
4249 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
4250 yearday -= YEAR_ADJUST;
4251 year = (yearday / DAYS_PER_QCENT) * 400;
4252 yearday %= DAYS_PER_QCENT;
4253 odd_cent = yearday / DAYS_PER_CENT;
4254 year += odd_cent * 100;
4255 yearday %= DAYS_PER_CENT;
4256 year += (yearday / DAYS_PER_QYEAR) * 4;
4257 yearday %= DAYS_PER_QYEAR;
4258 odd_year = yearday / DAYS_PER_YEAR;
4260 yearday %= DAYS_PER_YEAR;
4261 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
4266 yearday += YEAR_ADJUST; /* recover March 1st crock */
4267 month = yearday*DAYS_TO_MONTH;
4268 yearday -= month*MONTH_TO_DAYS;
4269 /* recover other leap-year adjustment */
4278 ptm->tm_year = year - 1900;
4280 ptm->tm_mday = yearday;
4281 ptm->tm_mon = month;
4285 ptm->tm_mon = month - 1;
4287 /* re-build yearday based on Jan 1 to get tm_yday */
4289 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
4290 yearday += 14*MONTH_TO_DAYS + 1;
4291 ptm->tm_yday = jday - yearday;
4292 /* fix tm_wday if not overridden by caller */
4293 if ((unsigned)ptm->tm_wday > 6)
4294 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
4298 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)
4306 PERL_ARGS_ASSERT_MY_STRFTIME;
4308 init_tm(&mytm); /* XXX workaround - see init_tm() above */
4311 mytm.tm_hour = hour;
4312 mytm.tm_mday = mday;
4314 mytm.tm_year = year;
4315 mytm.tm_wday = wday;
4316 mytm.tm_yday = yday;
4317 mytm.tm_isdst = isdst;
4319 /* use libc to get the values for tm_gmtoff and tm_zone [perl #18238] */
4320 #if defined(HAS_MKTIME) && (defined(HAS_TM_TM_GMTOFF) || defined(HAS_TM_TM_ZONE))
4325 #ifdef HAS_TM_TM_GMTOFF
4326 mytm.tm_gmtoff = mytm2.tm_gmtoff;
4328 #ifdef HAS_TM_TM_ZONE
4329 mytm.tm_zone = mytm2.tm_zone;
4334 Newx(buf, buflen, char);
4335 len = strftime(buf, buflen, fmt, &mytm);
4337 ** The following is needed to handle to the situation where
4338 ** tmpbuf overflows. Basically we want to allocate a buffer
4339 ** and try repeatedly. The reason why it is so complicated
4340 ** is that getting a return value of 0 from strftime can indicate
4341 ** one of the following:
4342 ** 1. buffer overflowed,
4343 ** 2. illegal conversion specifier, or
4344 ** 3. the format string specifies nothing to be returned(not
4345 ** an error). This could be because format is an empty string
4346 ** or it specifies %p that yields an empty string in some locale.
4347 ** If there is a better way to make it portable, go ahead by
4350 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
4353 /* Possibly buf overflowed - try again with a bigger buf */
4354 const int fmtlen = strlen(fmt);
4355 int bufsize = fmtlen + buflen;
4357 Renew(buf, bufsize, char);
4359 buflen = strftime(buf, bufsize, fmt, &mytm);
4360 if (buflen > 0 && buflen < bufsize)
4362 /* heuristic to prevent out-of-memory errors */
4363 if (bufsize > 100*fmtlen) {
4369 Renew(buf, bufsize, char);
4374 Perl_croak(aTHX_ "panic: no strftime");
4380 #define SV_CWD_RETURN_UNDEF \
4381 sv_setsv(sv, &PL_sv_undef); \
4384 #define SV_CWD_ISDOT(dp) \
4385 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
4386 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
4389 =head1 Miscellaneous Functions
4391 =for apidoc getcwd_sv
4393 Fill the sv with current working directory
4398 /* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
4399 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
4400 * getcwd(3) if available
4401 * Comments from the orignal:
4402 * This is a faster version of getcwd. It's also more dangerous
4403 * because you might chdir out of a directory that you can't chdir
4407 Perl_getcwd_sv(pTHX_ register SV *sv)
4411 #ifndef INCOMPLETE_TAINTS
4415 PERL_ARGS_ASSERT_GETCWD_SV;
4419 char buf[MAXPATHLEN];
4421 /* Some getcwd()s automatically allocate a buffer of the given
4422 * size from the heap if they are given a NULL buffer pointer.
4423 * The problem is that this behaviour is not portable. */
4424 if (getcwd(buf, sizeof(buf) - 1)) {
4429 sv_setsv(sv, &PL_sv_undef);
4437 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
4441 SvUPGRADE(sv, SVt_PV);
4443 if (PerlLIO_lstat(".", &statbuf) < 0) {
4444 SV_CWD_RETURN_UNDEF;
4447 orig_cdev = statbuf.st_dev;
4448 orig_cino = statbuf.st_ino;
4458 if (PerlDir_chdir("..") < 0) {
4459 SV_CWD_RETURN_UNDEF;
4461 if (PerlLIO_stat(".", &statbuf) < 0) {
4462 SV_CWD_RETURN_UNDEF;
4465 cdev = statbuf.st_dev;
4466 cino = statbuf.st_ino;
4468 if (odev == cdev && oino == cino) {
4471 if (!(dir = PerlDir_open("."))) {
4472 SV_CWD_RETURN_UNDEF;
4475 while ((dp = PerlDir_read(dir)) != NULL) {
4477 namelen = dp->d_namlen;
4479 namelen = strlen(dp->d_name);
4482 if (SV_CWD_ISDOT(dp)) {
4486 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
4487 SV_CWD_RETURN_UNDEF;
4490 tdev = statbuf.st_dev;
4491 tino = statbuf.st_ino;
4492 if (tino == oino && tdev == odev) {
4498 SV_CWD_RETURN_UNDEF;
4501 if (pathlen + namelen + 1 >= MAXPATHLEN) {
4502 SV_CWD_RETURN_UNDEF;
4505 SvGROW(sv, pathlen + namelen + 1);
4509 Move(SvPVX_const(sv), SvPVX(sv) + namelen + 1, pathlen, char);
4512 /* prepend current directory to the front */
4514 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
4515 pathlen += (namelen + 1);
4517 #ifdef VOID_CLOSEDIR
4520 if (PerlDir_close(dir) < 0) {
4521 SV_CWD_RETURN_UNDEF;
4527 SvCUR_set(sv, pathlen);
4531 if (PerlDir_chdir(SvPVX_const(sv)) < 0) {
4532 SV_CWD_RETURN_UNDEF;
4535 if (PerlLIO_stat(".", &statbuf) < 0) {
4536 SV_CWD_RETURN_UNDEF;
4539 cdev = statbuf.st_dev;
4540 cino = statbuf.st_ino;
4542 if (cdev != orig_cdev || cino != orig_cino) {
4543 Perl_croak(aTHX_ "Unstable directory path, "
4544 "current directory changed unexpectedly");
4555 #define VERSION_MAX 0x7FFFFFFF
4558 =for apidoc prescan_version
4560 Validate that a given string can be parsed as a version object, but doesn't
4561 actually perform the parsing. Can use either strict or lax validation rules.
4562 Can optionally set a number of hint variables to save the parsing code
4563 some time when tokenizing.
4568 Perl_prescan_version(pTHX_ const char *s, bool strict,
4569 const char **errstr,
4570 bool *sqv, int *ssaw_decimal, int *swidth, bool *salpha) {
4571 bool qv = (sqv ? *sqv : FALSE);
4573 int saw_decimal = 0;
4577 PERL_ARGS_ASSERT_PRESCAN_VERSION;
4579 if (qv && isDIGIT(*d))
4580 goto dotted_decimal_version;
4582 if (*d == 'v') { /* explicit v-string */
4587 else { /* degenerate v-string */
4588 /* requires v1.2.3 */
4589 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions require at least three parts)");
4592 dotted_decimal_version:
4593 if (strict && d[0] == '0' && isDIGIT(d[1])) {
4594 /* no leading zeros allowed */
4595 BADVERSION(s,errstr,"Invalid version format (no leading zeros)");
4598 while (isDIGIT(*d)) /* integer part */
4604 d++; /* decimal point */
4609 /* require v1.2.3 */
4610 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions require at least three parts)");
4613 goto version_prescan_finish;
4620 while (isDIGIT(*d)) { /* just keep reading */
4622 while (isDIGIT(*d)) {
4624 /* maximum 3 digits between decimal */
4625 if (strict && j > 3) {
4626 BADVERSION(s,errstr,"Invalid version format (maximum 3 digits between decimals)");
4631 BADVERSION(s,errstr,"Invalid version format (no underscores)");
4634 BADVERSION(s,errstr,"Invalid version format (multiple underscores)");
4639 else if (*d == '.') {
4641 BADVERSION(s,errstr,"Invalid version format (underscores before decimal)");
4646 else if (!isDIGIT(*d)) {
4652 if (strict && i < 2) {
4653 /* requires v1.2.3 */
4654 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions require at least three parts)");
4657 } /* end if dotted-decimal */
4659 { /* decimal versions */
4660 /* special strict case for leading '.' or '0' */
4663 BADVERSION(s,errstr,"Invalid version format (0 before decimal required)");
4665 if (*d == '0' && isDIGIT(d[1])) {
4666 BADVERSION(s,errstr,"Invalid version format (no leading zeros)");
4670 /* consume all of the integer part */
4674 /* look for a fractional part */
4676 /* we found it, so consume it */
4680 else if (!*d || *d == ';' || isSPACE(*d) || *d == '{' || *d == '}') {
4683 BADVERSION(s,errstr,"Invalid version format (version required)");
4685 /* found just an integer */
4686 goto version_prescan_finish;
4688 else if ( d == s ) {
4689 /* didn't find either integer or period */
4690 BADVERSION(s,errstr,"Invalid version format (non-numeric data)");
4692 else if (*d == '_') {
4693 /* underscore can't come after integer part */
4695 BADVERSION(s,errstr,"Invalid version format (no underscores)");
4697 else if (isDIGIT(d[1])) {
4698 BADVERSION(s,errstr,"Invalid version format (alpha without decimal)");
4701 BADVERSION(s,errstr,"Invalid version format (misplaced underscore)");
4705 /* anything else after integer part is just invalid data */
4706 BADVERSION(s,errstr,"Invalid version format (non-numeric data)");
4709 /* scan the fractional part after the decimal point*/
4711 if (!isDIGIT(*d) && (strict || ! (!*d || *d == ';' || isSPACE(*d) || *d == '{' || *d == '}') )) {
4712 /* strict or lax-but-not-the-end */
4713 BADVERSION(s,errstr,"Invalid version format (fractional part required)");
4716 while (isDIGIT(*d)) {
4718 if (*d == '.' && isDIGIT(d[-1])) {
4720 BADVERSION(s,errstr,"Invalid version format (underscores before decimal)");
4723 BADVERSION(s,errstr,"Invalid version format (dotted-decimal versions must begin with 'v')");
4725 d = (char *)s; /* start all over again */
4727 goto dotted_decimal_version;
4731 BADVERSION(s,errstr,"Invalid version format (no underscores)");
4734 BADVERSION(s,errstr,"Invalid version format (multiple underscores)");
4736 if ( ! isDIGIT(d[1]) ) {
4737 BADVERSION(s,errstr,"Invalid version format (misplaced underscore)");
4745 version_prescan_finish:
4749 if (!isDIGIT(*d) && (! (!*d || *d == ';' || *d == '{' || *d == '}') )) {
4750 /* trailing non-numeric data */
4751 BADVERSION(s,errstr,"Invalid version format (non-numeric data)");
4759 *ssaw_decimal = saw_decimal;
4766 =for apidoc scan_version
4768 Returns a pointer to the next character after the parsed
4769 version string, as well as upgrading the passed in SV to
4772 Function must be called with an already existing SV like
4775 s = scan_version(s, SV *sv, bool qv);
4777 Performs some preprocessing to the string to ensure that
4778 it has the correct characteristics of a version. Flags the
4779 object if it contains an underscore (which denotes this
4780 is an alpha version). The boolean qv denotes that the version
4781 should be interpreted as if it had multiple decimals, even if
4788 Perl_scan_version(pTHX_ const char *s, SV *rv, bool qv)
4793 const char *errstr = NULL;
4794 int saw_decimal = 0;
4798 AV * const av = newAV();
4799 SV * const hv = newSVrv(rv, "version"); /* create an SV and upgrade the RV */
4801 PERL_ARGS_ASSERT_SCAN_VERSION;
4803 (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
4805 #ifndef NODEFAULT_SHAREKEYS
4806 HvSHAREKEYS_on(hv); /* key-sharing on by default */
4809 while (isSPACE(*s)) /* leading whitespace is OK */
4812 last = prescan_version(s, FALSE, &errstr, &qv, &saw_decimal, &width, &alpha);
4814 /* "undef" is a special case and not an error */
4815 if ( ! ( *s == 'u' && strEQ(s,"undef")) ) {
4816 Perl_croak(aTHX_ "%s", errstr);
4826 (void)hv_stores(MUTABLE_HV(hv), "qv", newSViv(qv));
4828 (void)hv_stores(MUTABLE_HV(hv), "alpha", newSViv(alpha));
4829 if ( !qv && width < 3 )
4830 (void)hv_stores(MUTABLE_HV(hv), "width", newSViv(width));
4832 while (isDIGIT(*pos))
4834 if (!isALPHA(*pos)) {
4840 /* this is atoi() that delimits on underscores */
4841 const char *end = pos;
4845 /* the following if() will only be true after the decimal
4846 * point of a version originally created with a bare
4847 * floating point number, i.e. not quoted in any way
4849 if ( !qv && s > start && saw_decimal == 1 ) {
4853 rev += (*s - '0') * mult;
4855 if ( (PERL_ABS(orev) > PERL_ABS(rev))
4856 || (PERL_ABS(rev) > VERSION_MAX )) {
4857 Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4858 "Integer overflow in version %d",VERSION_MAX);
4869 while (--end >= s) {
4871 rev += (*end - '0') * mult;
4873 if ( (PERL_ABS(orev) > PERL_ABS(rev))
4874 || (PERL_ABS(rev) > VERSION_MAX )) {
4875 Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
4876 "Integer overflow in version");
4885 /* Append revision */
4886 av_push(av, newSViv(rev));
4891 else if ( *pos == '.' )
4893 else if ( *pos == '_' && isDIGIT(pos[1]) )
4895 else if ( *pos == ',' && isDIGIT(pos[1]) )
4897 else if ( isDIGIT(*pos) )
4904 while ( isDIGIT(*pos) )
4909 while ( ( isDIGIT(*pos) || *pos == '_' ) && digits < 3 ) {
4917 if ( qv ) { /* quoted versions always get at least three terms*/
4918 I32 len = av_len(av);
4919 /* This for loop appears to trigger a compiler bug on OS X, as it
4920 loops infinitely. Yes, len is negative. No, it makes no sense.
4921 Compiler in question is:
4922 gcc version 3.3 20030304 (Apple Computer, Inc. build 1640)
4923 for ( len = 2 - len; len > 0; len-- )
4924 av_push(MUTABLE_AV(sv), newSViv(0));
4928 av_push(av, newSViv(0));
4931 /* need to save off the current version string for later */
4933 SV * orig = newSVpvn("v.Inf", sizeof("v.Inf")-1);
4934 (void)hv_stores(MUTABLE_HV(hv), "original", orig);
4935 (void)hv_stores(MUTABLE_HV(hv), "vinf", newSViv(1));
4937 else if ( s > start ) {
4938 SV * orig = newSVpvn(start,s-start);
4939 if ( qv && saw_decimal == 1 && *start != 'v' ) {
4940 /* need to insert a v to be consistent */
4941 sv_insert(orig, 0, 0, "v", 1);
4943 (void)hv_stores(MUTABLE_HV(hv), "original", orig);
4946 (void)hv_stores(MUTABLE_HV(hv), "original", newSVpvs("0"));
4947 av_push(av, newSViv(0));
4950 /* And finally, store the AV in the hash */
4951 (void)hv_stores(MUTABLE_HV(hv), "version", newRV_noinc(MUTABLE_SV(av)));
4953 /* fix RT#19517 - special case 'undef' as string */
4954 if ( *s == 'u' && strEQ(s,"undef") ) {
4962 =for apidoc new_version
4964 Returns a new version object based on the passed in SV:
4966 SV *sv = new_version(SV *ver);
4968 Does not alter the passed in ver SV. See "upg_version" if you
4969 want to upgrade the SV.
4975 Perl_new_version(pTHX_ SV *ver)
4978 SV * const rv = newSV(0);
4979 PERL_ARGS_ASSERT_NEW_VERSION;
4980 if ( sv_derived_from(ver,"version") ) /* can just copy directly */
4983 AV * const av = newAV();
4985 /* This will get reblessed later if a derived class*/
4986 SV * const hv = newSVrv(rv, "version");
4987 (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
4988 #ifndef NODEFAULT_SHAREKEYS
4989 HvSHAREKEYS_on(hv); /* key-sharing on by default */
4995 /* Begin copying all of the elements */
4996 if ( hv_exists(MUTABLE_HV(ver), "qv", 2) )
4997 (void)hv_stores(MUTABLE_HV(hv), "qv", newSViv(1));
4999 if ( hv_exists(MUTABLE_HV(ver), "alpha", 5) )
5000 (void)hv_stores(MUTABLE_HV(hv), "alpha", newSViv(1));
5002 if ( hv_exists(MUTABLE_HV(ver), "width", 5 ) )
5004 const I32 width = SvIV(*hv_fetchs(MUTABLE_HV(ver), "width", FALSE));
5005 (void)hv_stores(MUTABLE_HV(hv), "width", newSViv(width));
5008 if ( hv_exists(MUTABLE_HV(ver), "original", 8 ) )
5010 SV * pv = *hv_fetchs(MUTABLE_HV(ver), "original", FALSE);
5011 (void)hv_stores(MUTABLE_HV(hv), "original", newSVsv(pv));
5014 sav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(ver), "version", FALSE)));
5015 /* This will get reblessed later if a derived class*/
5016 for ( key = 0; key <= av_len(sav); key++ )
5018 const I32 rev = SvIV(*av_fetch(sav, key, FALSE));
5019 av_push(av, newSViv(rev));
5022 (void)hv_stores(MUTABLE_HV(hv), "version", newRV_noinc(MUTABLE_SV(av)));
5027 const MAGIC* const mg = SvVSTRING_mg(ver);
5028 if ( mg ) { /* already a v-string */
5029 const STRLEN len = mg->mg_len;
5030 char * const version = savepvn( (const char*)mg->mg_ptr, len);