3 * Copyright (c) 1991-2000, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
11 * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12 * not content." --Gandalf
16 #define PERL_IN_UTIL_C
20 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
25 # define SIG_ERR ((Sighandler_t) -1)
29 /* XXX If this causes problems, set i_unistd=undef in the hint file. */
38 /* Put this after #includes because fork and vfork prototypes may
46 # include <sys/wait.h>
57 long xcount[MAXXCOUNT];
58 long lastxcount[MAXXCOUNT];
59 long xycount[MAXXCOUNT][MAXYCOUNT];
60 long lastxycount[MAXXCOUNT][MAXYCOUNT];
64 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
65 # define FD_CLOEXEC 1 /* NeXT needs this */
68 /* paranoid version of system's malloc() */
70 /* NOTE: Do not call the next three routines directly. Use the macros
71 * in handy.h, so that we can easily redefine everything to do tracking of
72 * allocated hunks back to the original New to track down any memory leaks.
73 * XXX This advice seems to be widely ignored :-( --AD August 1996.
77 Perl_safesysmalloc(MEM_SIZE size)
83 PerlIO_printf(Perl_error_log,
84 "Allocation too large: %lx\n", size) FLUSH;
87 #endif /* HAS_64K_LIMIT */
90 Perl_croak_nocontext("panic: malloc");
92 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
93 PERL_ALLOC_CHECK(ptr);
94 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
100 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
107 /* paranoid version of system's realloc() */
110 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
114 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
115 Malloc_t PerlMem_realloc();
116 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
120 PerlIO_printf(Perl_error_log,
121 "Reallocation too large: %lx\n", size) FLUSH;
124 #endif /* HAS_64K_LIMIT */
131 return safesysmalloc(size);
134 Perl_croak_nocontext("panic: realloc");
136 ptr = (Malloc_t)PerlMem_realloc(where,size);
137 PERL_ALLOC_CHECK(ptr);
139 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
140 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
147 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
154 /* safe version of system's free() */
157 Perl_safesysfree(Malloc_t where)
159 #ifdef PERL_IMPLICIT_SYS
162 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
169 /* safe version of system's calloc() */
172 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
178 if (size * count > 0xffff) {
179 PerlIO_printf(Perl_error_log,
180 "Allocation too large: %lx\n", size * count) FLUSH;
183 #endif /* HAS_64K_LIMIT */
185 if ((long)size < 0 || (long)count < 0)
186 Perl_croak_nocontext("panic: calloc");
189 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
190 PERL_ALLOC_CHECK(ptr);
191 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)size));
193 memset((void*)ptr, 0, size);
199 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
208 struct mem_test_strut {
216 # define ALIGN sizeof(struct mem_test_strut)
218 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
219 # define typeof_chunk(ch) \
220 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
221 # define set_typeof_chunk(ch,t) \
222 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
223 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
226 ? ((size) - 1)/8 + 5 \
230 Perl_safexmalloc(I32 x, MEM_SIZE size)
232 register char* where = (char*)safemalloc(size + ALIGN);
235 xycount[x][SIZE_TO_Y(size)]++;
236 set_typeof_chunk(where, x);
237 sizeof_chunk(where) = size;
238 return (Malloc_t)(where + ALIGN);
242 Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
244 char *where = (char*)wh;
247 return safexmalloc(0,size);
250 MEM_SIZE old = sizeof_chunk(where - ALIGN);
251 int t = typeof_chunk(where - ALIGN);
252 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
254 xycount[t][SIZE_TO_Y(old)]--;
255 xycount[t][SIZE_TO_Y(size)]++;
256 xcount[t] += size - old;
257 sizeof_chunk(new) = size;
258 return (Malloc_t)(new + ALIGN);
263 Perl_safexfree(Malloc_t wh)
266 char *where = (char*)wh;
272 size = sizeof_chunk(where);
273 x = where[0] + 100 * where[1];
275 xycount[x][SIZE_TO_Y(size)]--;
280 Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
282 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
284 xycount[x][SIZE_TO_Y(size)]++;
285 memset((void*)(where + ALIGN), 0, size * count);
286 set_typeof_chunk(where, x);
287 sizeof_chunk(where) = size;
288 return (Malloc_t)(where + ALIGN);
292 S_xstat(pTHX_ int flag)
294 register I32 i, j, total = 0;
295 I32 subtot[MAXYCOUNT];
297 for (j = 0; j < MAXYCOUNT; j++) {
301 PerlIO_printf(Perl_debug_log, " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
302 for (i = 0; i < MAXXCOUNT; i++) {
304 for (j = 0; j < MAXYCOUNT; j++) {
305 subtot[j] += xycount[i][j];
308 ? xcount[i] /* Have something */
310 ? xcount[i] != lastxcount[i] /* Changed */
311 : xcount[i] > lastxcount[i])) { /* Growed */
312 PerlIO_printf(Perl_debug_log,"%2d %02d %7ld ", i / 100, i % 100,
313 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
314 lastxcount[i] = xcount[i];
315 for (j = 0; j < MAXYCOUNT; j++) {
317 ? xycount[i][j] /* Have something */
319 ? xycount[i][j] != lastxycount[i][j] /* Changed */
320 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
321 PerlIO_printf(Perl_debug_log,"%3ld ",
323 ? xycount[i][j] - lastxycount[i][j]
325 lastxycount[i][j] = xycount[i][j];
327 PerlIO_printf(Perl_debug_log, " . ", xycount[i][j]);
330 PerlIO_printf(Perl_debug_log, "\n");
334 PerlIO_printf(Perl_debug_log, "Total %7ld ", total);
335 for (j = 0; j < MAXYCOUNT; j++) {
337 PerlIO_printf(Perl_debug_log, "%3ld ", subtot[j]);
339 PerlIO_printf(Perl_debug_log, " . ");
342 PerlIO_printf(Perl_debug_log, "\n");
346 #endif /* LEAKTEST */
348 /* copy a string up to some (non-backslashed) delimiter, if any */
351 Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
354 for (tolen = 0; from < fromend; from++, tolen++) {
356 if (from[1] == delim)
365 else if (*from == delim)
376 /* return ptr to little string in big string, NULL if not found */
377 /* This routine was donated by Corey Satten. */
380 Perl_instr(pTHX_ register const char *big, register const char *little)
382 register const char *s, *x;
393 for (x=big,s=little; *s; /**/ ) {
402 return (char*)(big-1);
407 /* same as instr but allow embedded nulls */
410 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
412 register const char *s, *x;
413 register I32 first = *little;
414 register const char *littleend = lend;
416 if (!first && little >= littleend)
418 if (bigend - big < littleend - little)
420 bigend -= littleend - little++;
421 while (big <= bigend) {
424 for (x=big,s=little; s < littleend; /**/ ) {
431 return (char*)(big-1);
436 /* reverse of the above--find last substring */
439 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
441 register const char *bigbeg;
442 register const char *s, *x;
443 register I32 first = *little;
444 register const char *littleend = lend;
446 if (!first && little >= littleend)
447 return (char*)bigend;
449 big = bigend - (littleend - little++);
450 while (big >= bigbeg) {
453 for (x=big+2,s=little; s < littleend; /**/ ) {
460 return (char*)(big+1);
466 * Set up for a new ctype locale.
469 Perl_new_ctype(pTHX_ const char *newctype)
471 #ifdef USE_LOCALE_CTYPE
475 for (i = 0; i < 256; i++) {
477 PL_fold_locale[i] = toLOWER_LC(i);
478 else if (isLOWER_LC(i))
479 PL_fold_locale[i] = toUPPER_LC(i);
481 PL_fold_locale[i] = i;
484 #endif /* USE_LOCALE_CTYPE */
488 * Set up for a new collation locale.
491 Perl_new_collate(pTHX_ const char *newcoll)
493 #ifdef USE_LOCALE_COLLATE
496 if (PL_collation_name) {
498 Safefree(PL_collation_name);
499 PL_collation_name = NULL;
500 PL_collation_standard = TRUE;
501 PL_collxfrm_base = 0;
502 PL_collxfrm_mult = 2;
507 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
509 Safefree(PL_collation_name);
510 PL_collation_name = savepv(newcoll);
511 PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
514 /* 2: at most so many chars ('a', 'b'). */
515 /* 50: surely no system expands a char more. */
516 #define XFRMBUFSIZE (2 * 50)
517 char xbuf[XFRMBUFSIZE];
518 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
519 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
520 SSize_t mult = fb - fa;
522 Perl_croak(aTHX_ "strxfrm() gets absurd");
523 PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
524 PL_collxfrm_mult = mult;
528 #endif /* USE_LOCALE_COLLATE */
532 Perl_set_numeric_radix(pTHX)
534 #ifdef USE_LOCALE_NUMERIC
535 # ifdef HAS_LOCALECONV
539 if (lc && lc->decimal_point)
540 /* We assume that decimal separator aka the radix
541 * character is always a single character. If it
542 * ever is a string, this needs to be rethunk. */
543 PL_numeric_radix = *lc->decimal_point;
545 PL_numeric_radix = 0;
546 # endif /* HAS_LOCALECONV */
547 #endif /* USE_LOCALE_NUMERIC */
551 * Set up for a new numeric locale.
554 Perl_new_numeric(pTHX_ const char *newnum)
556 #ifdef USE_LOCALE_NUMERIC
559 if (PL_numeric_name) {
560 Safefree(PL_numeric_name);
561 PL_numeric_name = NULL;
562 PL_numeric_standard = TRUE;
563 PL_numeric_local = TRUE;
568 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
569 Safefree(PL_numeric_name);
570 PL_numeric_name = savepv(newnum);
571 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
572 PL_numeric_local = TRUE;
576 #endif /* USE_LOCALE_NUMERIC */
580 Perl_set_numeric_standard(pTHX)
582 #ifdef USE_LOCALE_NUMERIC
584 if (! PL_numeric_standard) {
585 setlocale(LC_NUMERIC, "C");
586 PL_numeric_standard = TRUE;
587 PL_numeric_local = FALSE;
590 #endif /* USE_LOCALE_NUMERIC */
594 Perl_set_numeric_local(pTHX)
596 #ifdef USE_LOCALE_NUMERIC
598 if (! PL_numeric_local) {
599 setlocale(LC_NUMERIC, PL_numeric_name);
600 PL_numeric_standard = FALSE;
601 PL_numeric_local = TRUE;
605 #endif /* USE_LOCALE_NUMERIC */
609 * Initialize locale awareness.
612 Perl_init_i18nl10n(pTHX_ int printwarn)
616 * 1 = set ok or not applicable,
617 * 0 = fallback to C locale,
618 * -1 = fallback to C locale failed
623 #ifdef USE_LOCALE_CTYPE
624 char *curctype = NULL;
625 #endif /* USE_LOCALE_CTYPE */
626 #ifdef USE_LOCALE_COLLATE
627 char *curcoll = NULL;
628 #endif /* USE_LOCALE_COLLATE */
629 #ifdef USE_LOCALE_NUMERIC
631 #endif /* USE_LOCALE_NUMERIC */
633 char *language = PerlEnv_getenv("LANGUAGE");
635 char *lc_all = PerlEnv_getenv("LC_ALL");
636 char *lang = PerlEnv_getenv("LANG");
637 bool setlocale_failure = FALSE;
639 #ifdef LOCALE_ENVIRON_REQUIRED
642 * Ultrix setlocale(..., "") fails if there are no environment
643 * variables from which to get a locale name.
650 if (setlocale(LC_ALL, ""))
653 setlocale_failure = TRUE;
655 if (!setlocale_failure) {
656 #ifdef USE_LOCALE_CTYPE
659 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
661 setlocale_failure = TRUE;
662 #endif /* USE_LOCALE_CTYPE */
663 #ifdef USE_LOCALE_COLLATE
665 setlocale(LC_COLLATE,
666 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
668 setlocale_failure = TRUE;
669 #endif /* USE_LOCALE_COLLATE */
670 #ifdef USE_LOCALE_NUMERIC
672 setlocale(LC_NUMERIC,
673 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
675 setlocale_failure = TRUE;
676 #endif /* USE_LOCALE_NUMERIC */
681 #endif /* !LOCALE_ENVIRON_REQUIRED */
684 if (! setlocale(LC_ALL, ""))
685 setlocale_failure = TRUE;
688 if (!setlocale_failure) {
689 #ifdef USE_LOCALE_CTYPE
690 if (! (curctype = setlocale(LC_CTYPE, "")))
691 setlocale_failure = TRUE;
692 #endif /* USE_LOCALE_CTYPE */
693 #ifdef USE_LOCALE_COLLATE
694 if (! (curcoll = setlocale(LC_COLLATE, "")))
695 setlocale_failure = TRUE;
696 #endif /* USE_LOCALE_COLLATE */
697 #ifdef USE_LOCALE_NUMERIC
698 if (! (curnum = setlocale(LC_NUMERIC, "")))
699 setlocale_failure = TRUE;
700 #endif /* USE_LOCALE_NUMERIC */
703 if (setlocale_failure) {
705 bool locwarn = (printwarn > 1 ||
707 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p))));
712 PerlIO_printf(Perl_error_log,
713 "perl: warning: Setting locale failed.\n");
717 PerlIO_printf(Perl_error_log,
718 "perl: warning: Setting locale failed for the categories:\n\t");
719 #ifdef USE_LOCALE_CTYPE
721 PerlIO_printf(Perl_error_log, "LC_CTYPE ");
722 #endif /* USE_LOCALE_CTYPE */
723 #ifdef USE_LOCALE_COLLATE
725 PerlIO_printf(Perl_error_log, "LC_COLLATE ");
726 #endif /* USE_LOCALE_COLLATE */
727 #ifdef USE_LOCALE_NUMERIC
729 PerlIO_printf(Perl_error_log, "LC_NUMERIC ");
730 #endif /* USE_LOCALE_NUMERIC */
731 PerlIO_printf(Perl_error_log, "\n");
735 PerlIO_printf(Perl_error_log,
736 "perl: warning: Please check that your locale settings:\n");
739 PerlIO_printf(Perl_error_log,
740 "\tLANGUAGE = %c%s%c,\n",
741 language ? '"' : '(',
742 language ? language : "unset",
743 language ? '"' : ')');
746 PerlIO_printf(Perl_error_log,
747 "\tLC_ALL = %c%s%c,\n",
749 lc_all ? lc_all : "unset",
754 for (e = environ; *e; e++) {
755 if (strnEQ(*e, "LC_", 3)
756 && strnNE(*e, "LC_ALL=", 7)
757 && (p = strchr(*e, '=')))
758 PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n",
759 (int)(p - *e), *e, p + 1);
763 PerlIO_printf(Perl_error_log,
766 lang ? lang : "unset",
769 PerlIO_printf(Perl_error_log,
770 " are supported and installed on your system.\n");
775 if (setlocale(LC_ALL, "C")) {
777 PerlIO_printf(Perl_error_log,
778 "perl: warning: Falling back to the standard locale (\"C\").\n");
783 PerlIO_printf(Perl_error_log,
784 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
791 #ifdef USE_LOCALE_CTYPE
792 || !(curctype || setlocale(LC_CTYPE, "C"))
793 #endif /* USE_LOCALE_CTYPE */
794 #ifdef USE_LOCALE_COLLATE
795 || !(curcoll || setlocale(LC_COLLATE, "C"))
796 #endif /* USE_LOCALE_COLLATE */
797 #ifdef USE_LOCALE_NUMERIC
798 || !(curnum || setlocale(LC_NUMERIC, "C"))
799 #endif /* USE_LOCALE_NUMERIC */
803 PerlIO_printf(Perl_error_log,
804 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
808 #endif /* ! LC_ALL */
810 #ifdef USE_LOCALE_CTYPE
811 curctype = setlocale(LC_CTYPE, Nullch);
812 #endif /* USE_LOCALE_CTYPE */
813 #ifdef USE_LOCALE_COLLATE
814 curcoll = setlocale(LC_COLLATE, Nullch);
815 #endif /* USE_LOCALE_COLLATE */
816 #ifdef USE_LOCALE_NUMERIC
817 curnum = setlocale(LC_NUMERIC, Nullch);
818 #endif /* USE_LOCALE_NUMERIC */
821 #ifdef USE_LOCALE_CTYPE
823 #endif /* USE_LOCALE_CTYPE */
825 #ifdef USE_LOCALE_COLLATE
826 new_collate(curcoll);
827 #endif /* USE_LOCALE_COLLATE */
829 #ifdef USE_LOCALE_NUMERIC
831 #endif /* USE_LOCALE_NUMERIC */
833 #endif /* USE_LOCALE */
838 /* Backwards compatibility. */
840 Perl_init_i18nl14n(pTHX_ int printwarn)
842 return init_i18nl10n(printwarn);
845 #ifdef USE_LOCALE_COLLATE
848 * mem_collxfrm() is a bit like strxfrm() but with two important
849 * differences. First, it handles embedded NULs. Second, it allocates
850 * a bit more memory than needed for the transformed data itself.
851 * The real transformed data begins at offset sizeof(collationix).
852 * Please see sv_collxfrm() to see how this is used.
855 Perl_mem_collxfrm(pTHX_ const char *s, STRLEN len, STRLEN *xlen)
858 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
860 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
861 /* the +1 is for the terminating NUL. */
863 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
864 New(171, xbuf, xAlloc, char);
868 *(U32*)xbuf = PL_collation_ix;
869 xout = sizeof(PL_collation_ix);
870 for (xin = 0; xin < len; ) {
874 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
877 if (xused < xAlloc - xout)
879 xAlloc = (2 * xAlloc) + 1;
880 Renew(xbuf, xAlloc, char);
885 xin += strlen(s + xin) + 1;
888 /* Embedded NULs are understood but silently skipped
889 * because they make no sense in locale collation. */
893 *xlen = xout - sizeof(PL_collation_ix);
902 #endif /* USE_LOCALE_COLLATE */
904 #define FBM_TABLE_OFFSET 2 /* Number of bytes between EOS and table*/
906 /* As a space optimization, we do not compile tables for strings of length
907 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
908 special-cased in fbm_instr().
910 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
913 =for apidoc fbm_compile
915 Analyses the string in order to make fast searches on it using fbm_instr()
916 -- the Boyer-Moore algorithm.
922 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
931 if (flags & FBMcf_TAIL)
932 sv_catpvn(sv, "\n", 1); /* Taken into account in fbm_instr() */
933 s = (U8*)SvPV_force(sv, len);
934 (void)SvUPGRADE(sv, SVt_PVBM);
935 if (len == 0) /* TAIL might be on on a zero-length string. */
945 Sv_Grow(sv, len + 256 + FBM_TABLE_OFFSET);
946 table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
947 s = table - 1 - FBM_TABLE_OFFSET; /* last char */
948 memset((void*)table, mlen, 256);
949 table[-1] = (U8)flags;
951 sb = s - mlen + 1; /* first char (maybe) */
953 if (table[*s] == mlen)
958 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
961 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
962 for (i = 0; i < len; i++) {
963 if (PL_freq[s[i]] < frequency) {
965 frequency = PL_freq[s[i]];
968 BmRARE(sv) = s[rarest];
969 BmPREVIOUS(sv) = rarest;
970 BmUSEFUL(sv) = 100; /* Initial value */
971 if (flags & FBMcf_TAIL)
973 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",
974 BmRARE(sv),BmPREVIOUS(sv)));
977 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
978 /* If SvTAIL is actually due to \Z or \z, this gives false positives
982 =for apidoc fbm_instr
984 Returns the location of the SV in the string delimited by C<str> and
985 C<strend>. It returns C<Nullch> if the string can't be found. The C<sv>
986 does not have to be fbm_compiled, but the search will not be as fast
993 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
995 register unsigned char *s;
997 register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
998 register STRLEN littlelen = l;
999 register I32 multiline = flags & FBMrf_MULTILINE;
1001 if (bigend - big < littlelen) {
1002 if ( SvTAIL(littlestr)
1003 && (bigend - big == littlelen - 1)
1005 || (*big == *little &&
1006 memEQ((char *)big, (char *)little, littlelen - 1))))
1011 if (littlelen <= 2) { /* Special-cased */
1013 if (littlelen == 1) {
1014 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
1015 /* Know that bigend != big. */
1016 if (bigend[-1] == '\n')
1017 return (char *)(bigend - 1);
1018 return (char *) bigend;
1021 while (s < bigend) {
1026 if (SvTAIL(littlestr))
1027 return (char *) bigend;
1031 return (char*)big; /* Cannot be SvTAIL! */
1033 /* littlelen is 2 */
1034 if (SvTAIL(littlestr) && !multiline) {
1035 if (bigend[-1] == '\n' && bigend[-2] == *little)
1036 return (char*)bigend - 2;
1037 if (bigend[-1] == *little)
1038 return (char*)bigend - 1;
1042 /* This should be better than FBM if c1 == c2, and almost
1043 as good otherwise: maybe better since we do less indirection.
1044 And we save a lot of memory by caching no table. */
1045 register unsigned char c1 = little[0];
1046 register unsigned char c2 = little[1];
1051 while (s <= bigend) {
1054 return (char*)s - 1;
1061 goto check_1char_anchor;
1072 goto check_1char_anchor;
1075 while (s <= bigend) {
1078 return (char*)s - 1;
1080 goto check_1char_anchor;
1089 check_1char_anchor: /* One char and anchor! */
1090 if (SvTAIL(littlestr) && (*bigend == *little))
1091 return (char *)bigend; /* bigend is already decremented. */
1094 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
1095 s = bigend - littlelen;
1096 if (s >= big && bigend[-1] == '\n' && *s == *little
1097 /* Automatically of length > 2 */
1098 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1100 return (char*)s; /* how sweet it is */
1103 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
1105 return (char*)s + 1; /* how sweet it is */
1109 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
1110 char *b = ninstr((char*)big,(char*)bigend,
1111 (char*)little, (char*)little + littlelen);
1113 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
1114 /* Chop \n from littlestr: */
1115 s = bigend - littlelen + 1;
1117 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1126 { /* Do actual FBM. */
1127 register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
1128 register unsigned char *oldlittle;
1130 if (littlelen > bigend - big)
1132 --littlelen; /* Last char found by table lookup */
1134 s = big + littlelen;
1135 little += littlelen; /* last char */
1142 if ((tmp = table[*s])) {
1144 if (bigend - s > tmp) {
1150 if ((s += tmp) < bigend)
1155 else { /* less expensive than calling strncmp() */
1156 register unsigned char *olds = s;
1161 if (*--s == *--little)
1163 s = olds + 1; /* here we pay the price for failure */
1165 if (s < bigend) /* fake up continue to outer loop */
1173 if ( s == bigend && (table[-1] & FBMcf_TAIL)
1174 && memEQ((char *)(bigend - littlelen),
1175 (char *)(oldlittle - littlelen), littlelen) )
1176 return (char*)bigend - littlelen;
1181 /* start_shift, end_shift are positive quantities which give offsets
1182 of ends of some substring of bigstr.
1183 If `last' we want the last occurence.
1184 old_posp is the way of communication between consequent calls if
1185 the next call needs to find the .
1186 The initial *old_posp should be -1.
1188 Note that we take into account SvTAIL, so one can get extra
1189 optimizations if _ALL flag is set.
1192 /* If SvTAIL is actually due to \Z or \z, this gives false positives
1193 if PL_multiline. In fact if !PL_multiline the autoritative answer
1194 is not supported yet. */
1197 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1200 register unsigned char *s, *x;
1201 register unsigned char *big;
1203 register I32 previous;
1205 register unsigned char *little;
1206 register I32 stop_pos;
1207 register unsigned char *littleend;
1211 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1212 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
1214 if ( BmRARE(littlestr) == '\n'
1215 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
1216 little = (unsigned char *)(SvPVX(littlestr));
1217 littleend = little + SvCUR(littlestr);
1224 little = (unsigned char *)(SvPVX(littlestr));
1225 littleend = little + SvCUR(littlestr);
1227 /* The value of pos we can start at: */
1228 previous = BmPREVIOUS(littlestr);
1229 big = (unsigned char *)(SvPVX(bigstr));
1230 /* The value of pos we can stop at: */
1231 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1232 if (previous + start_shift > stop_pos) {
1233 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
1237 while (pos < previous + start_shift) {
1238 if (!(pos += PL_screamnext[pos]))
1243 if (pos >= stop_pos) break;
1244 if (big[pos-previous] != first)
1246 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1252 if (s == littleend) {
1254 if (!last) return (char *)(big+pos-previous);
1257 } while ( pos += PL_screamnext[pos] );
1258 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1259 #else /* !POINTERRIGOR */
1262 if (pos >= stop_pos) break;
1263 if (big[pos] != first)
1265 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1271 if (s == littleend) {
1273 if (!last) return (char *)(big+pos);
1276 } while ( pos += PL_screamnext[pos] );
1278 return (char *)(big+(*old_posp));
1279 #endif /* POINTERRIGOR */
1281 if (!SvTAIL(littlestr) || (end_shift > 0))
1283 /* Ignore the trailing "\n". This code is not microoptimized */
1284 big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
1285 stop_pos = littleend - little; /* Actual littlestr len */
1290 && ((stop_pos == 1) ||
1291 memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
1297 Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
1299 register U8 *a = (U8 *)s1;
1300 register U8 *b = (U8 *)s2;
1302 if (*a != *b && *a != PL_fold[*b])
1310 Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
1312 register U8 *a = (U8 *)s1;
1313 register U8 *b = (U8 *)s2;
1315 if (*a != *b && *a != PL_fold_locale[*b])
1322 /* copy a string to a safe spot */
1327 Copy a string to a safe spot. This does not use an SV.
1333 Perl_savepv(pTHX_ const char *sv)
1335 register char *newaddr;
1337 New(902,newaddr,strlen(sv)+1,char);
1338 (void)strcpy(newaddr,sv);
1342 /* same thing but with a known length */
1347 Copy a string to a safe spot. The C<len> indicates number of bytes to
1348 copy. This does not use an SV.
1354 Perl_savepvn(pTHX_ const char *sv, register I32 len)
1356 register char *newaddr;
1358 New(903,newaddr,len+1,char);
1359 Copy(sv,newaddr,len,char); /* might not be null terminated */
1360 newaddr[len] = '\0'; /* is now */
1364 /* the SV for Perl_form() and mess() is not kept in an arena */
1374 return sv_2mortal(newSVpvn("",0));
1379 /* Create as PVMG now, to avoid any upgrading later */
1380 New(905, sv, 1, SV);
1381 Newz(905, any, 1, XPVMG);
1382 SvFLAGS(sv) = SVt_PVMG;
1383 SvANY(sv) = (void*)any;
1384 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1389 #if defined(PERL_IMPLICIT_CONTEXT)
1391 Perl_form_nocontext(const char* pat, ...)
1396 va_start(args, pat);
1397 retval = vform(pat, &args);
1401 #endif /* PERL_IMPLICIT_CONTEXT */
1404 Perl_form(pTHX_ const char* pat, ...)
1408 va_start(args, pat);
1409 retval = vform(pat, &args);
1415 Perl_vform(pTHX_ const char *pat, va_list *args)
1417 SV *sv = mess_alloc();
1418 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1422 #if defined(PERL_IMPLICIT_CONTEXT)
1424 Perl_mess_nocontext(const char *pat, ...)
1429 va_start(args, pat);
1430 retval = vmess(pat, &args);
1434 #endif /* PERL_IMPLICIT_CONTEXT */
1437 Perl_mess(pTHX_ const char *pat, ...)
1441 va_start(args, pat);
1442 retval = vmess(pat, &args);
1448 Perl_vmess(pTHX_ const char *pat, va_list *args)
1450 SV *sv = mess_alloc();
1451 static char dgd[] = " during global destruction.\n";
1453 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1454 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1456 if (CopLINE(PL_curcop))
1457 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1458 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
1459 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1460 bool line_mode = (RsSIMPLE(PL_rs) &&
1461 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1462 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
1463 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1464 line_mode ? "line" : "chunk",
1465 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1469 Perl_sv_catpvf(aTHX_ sv, " thread %ld", thr->tid);
1471 sv_catpv(sv, PL_dirty ? dgd : ".\n");
1477 Perl_vdie(pTHX_ const char* pat, va_list *args)
1481 int was_in_eval = PL_in_eval;
1488 DEBUG_S(PerlIO_printf(Perl_debug_log,
1489 "%p: die: curstack = %p, mainstack = %p\n",
1490 thr, PL_curstack, PL_mainstack));
1493 msv = vmess(pat, args);
1494 if (PL_errors && SvCUR(PL_errors)) {
1495 sv_catsv(PL_errors, msv);
1496 message = SvPV(PL_errors, msglen);
1497 SvCUR_set(PL_errors, 0);
1500 message = SvPV(msv,msglen);
1507 DEBUG_S(PerlIO_printf(Perl_debug_log,
1508 "%p: die: message = %s\ndiehook = %p\n",
1509 thr, message, PL_diehook));
1511 /* sv_2cv might call Perl_croak() */
1512 SV *olddiehook = PL_diehook;
1514 SAVESPTR(PL_diehook);
1515 PL_diehook = Nullsv;
1516 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1518 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1525 msg = newSVpvn(message, msglen);
1533 PUSHSTACKi(PERLSI_DIEHOOK);
1537 call_sv((SV*)cv, G_DISCARD);
1543 PL_restartop = die_where(message, msglen);
1544 DEBUG_S(PerlIO_printf(Perl_debug_log,
1545 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1546 thr, PL_restartop, was_in_eval, PL_top_env));
1547 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1549 return PL_restartop;
1552 #if defined(PERL_IMPLICIT_CONTEXT)
1554 Perl_die_nocontext(const char* pat, ...)
1559 va_start(args, pat);
1560 o = vdie(pat, &args);
1564 #endif /* PERL_IMPLICIT_CONTEXT */
1567 Perl_die(pTHX_ const char* pat, ...)
1571 va_start(args, pat);
1572 o = vdie(pat, &args);
1578 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1589 msv = vmess(pat, args);
1590 if (PL_errors && SvCUR(PL_errors)) {
1591 sv_catsv(PL_errors, msv);
1592 message = SvPV(PL_errors, msglen);
1593 SvCUR_set(PL_errors, 0);
1596 message = SvPV(msv,msglen);
1603 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s",
1604 PTR2UV(thr), message));
1607 /* sv_2cv might call Perl_croak() */
1608 SV *olddiehook = PL_diehook;
1610 SAVESPTR(PL_diehook);
1611 PL_diehook = Nullsv;
1612 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1614 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1621 msg = newSVpvn(message, msglen);
1629 PUSHSTACKi(PERLSI_DIEHOOK);
1633 call_sv((SV*)cv, G_DISCARD);
1639 PL_restartop = die_where(message, msglen);
1644 /* SFIO can really mess with your errno */
1647 PerlIO *serr = Perl_error_log;
1649 PerlIO_write(serr, message, msglen);
1650 (void)PerlIO_flush(serr);
1658 #if defined(PERL_IMPLICIT_CONTEXT)
1660 Perl_croak_nocontext(const char *pat, ...)
1664 va_start(args, pat);
1669 #endif /* PERL_IMPLICIT_CONTEXT */
1674 This is the XSUB-writer's interface to Perl's C<die> function.
1675 Normally use this function the same way you use the C C<printf>
1676 function. See C<warn>.
1678 If you want to throw an exception object, assign the object to
1679 C<$@> and then pass C<Nullch> to croak():
1681 errsv = get_sv("@", TRUE);
1682 sv_setsv(errsv, exception_object);
1689 Perl_croak(pTHX_ const char *pat, ...)
1692 va_start(args, pat);
1699 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1708 msv = vmess(pat, args);
1709 message = SvPV(msv, msglen);
1712 /* sv_2cv might call Perl_warn() */
1714 SV *oldwarnhook = PL_warnhook;
1716 SAVESPTR(PL_warnhook);
1717 PL_warnhook = Nullsv;
1718 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1720 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1726 msg = newSVpvn(message, msglen);
1730 PUSHSTACKi(PERLSI_WARNHOOK);
1734 call_sv((SV*)cv, G_DISCARD);
1741 PerlIO *serr = Perl_error_log;
1743 PerlIO_write(serr, message, msglen);
1745 DEBUG_L(*message == '!'
1746 ? (xstat(message[1]=='!'
1747 ? (message[2]=='!' ? 2 : 1)
1752 (void)PerlIO_flush(serr);
1756 #if defined(PERL_IMPLICIT_CONTEXT)
1758 Perl_warn_nocontext(const char *pat, ...)
1762 va_start(args, pat);
1766 #endif /* PERL_IMPLICIT_CONTEXT */
1771 This is the XSUB-writer's interface to Perl's C<warn> function. Use this
1772 function the same way you use the C C<printf> function. See
1779 Perl_warn(pTHX_ const char *pat, ...)
1782 va_start(args, pat);
1787 #if defined(PERL_IMPLICIT_CONTEXT)
1789 Perl_warner_nocontext(U32 err, const char *pat, ...)
1793 va_start(args, pat);
1794 vwarner(err, pat, &args);
1797 #endif /* PERL_IMPLICIT_CONTEXT */
1800 Perl_warner(pTHX_ U32 err, const char* pat,...)
1803 va_start(args, pat);
1804 vwarner(err, pat, &args);
1809 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1819 msv = vmess(pat, args);
1820 message = SvPV(msv, msglen);
1824 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s", PTR2UV(thr), message));
1825 #endif /* USE_THREADS */
1827 /* sv_2cv might call Perl_croak() */
1828 SV *olddiehook = PL_diehook;
1830 SAVESPTR(PL_diehook);
1831 PL_diehook = Nullsv;
1832 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1834 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1840 msg = newSVpvn(message, msglen);
1844 PUSHSTACKi(PERLSI_DIEHOOK);
1848 call_sv((SV*)cv, G_DISCARD);
1854 PL_restartop = die_where(message, msglen);
1858 PerlIO *serr = Perl_error_log;
1859 PerlIO_write(serr, message, msglen);
1860 (void)PerlIO_flush(serr);
1867 /* sv_2cv might call Perl_warn() */
1869 SV *oldwarnhook = PL_warnhook;
1871 SAVESPTR(PL_warnhook);
1872 PL_warnhook = Nullsv;
1873 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1875 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1881 msg = newSVpvn(message, msglen);
1885 PUSHSTACKi(PERLSI_WARNHOOK);
1889 call_sv((SV*)cv, G_DISCARD);
1896 PerlIO *serr = Perl_error_log;
1897 PerlIO_write(serr, message, msglen);
1901 (void)PerlIO_flush(serr);
1906 #ifndef VMS /* VMS' my_setenv() is in VMS.c */
1907 #if !defined(WIN32) && !defined(__CYGWIN__)
1909 Perl_my_setenv(pTHX_ char *nam, char *val)
1911 #ifndef PERL_USE_SAFE_PUTENV
1912 /* most putenv()s leak, so we manipulate environ directly */
1913 register I32 i=setenv_getix(nam); /* where does it go? */
1915 if (environ == PL_origenviron) { /* need we copy environment? */
1921 for (max = i; environ[max]; max++) ;
1922 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1923 for (j=0; j<max; j++) { /* copy environment */
1924 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1925 strcpy(tmpenv[j], environ[j]);
1927 tmpenv[max] = Nullch;
1928 environ = tmpenv; /* tell exec where it is now */
1931 safesysfree(environ[i]);
1932 while (environ[i]) {
1933 environ[i] = environ[i+1];
1938 if (!environ[i]) { /* does not exist yet */
1939 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1940 environ[i+1] = Nullch; /* make sure it's null terminated */
1943 safesysfree(environ[i]);
1944 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1946 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1948 #else /* PERL_USE_SAFE_PUTENV */
1951 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1952 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1953 (void)putenv(new_env);
1954 #endif /* PERL_USE_SAFE_PUTENV */
1957 #else /* WIN32 || __CYGWIN__ */
1958 #if defined(__CYGWIN__)
1960 * Save environ of perl.exe, currently Cygwin links in separate environ's
1961 * for each exe/dll. Probably should be a member of impure_ptr.
1963 static char ***Perl_main_environ;
1966 Perl_my_setenv_init(char ***penviron)
1968 Perl_main_environ = penviron;
1972 Perl_my_setenv(pTHX_ char *nam, char *val)
1974 /* You can not directly manipulate the environ[] array because
1975 * the routines do some additional work that syncs the Cygwin
1976 * environment with the Windows environment.
1978 char *oldstr = environ[setenv_getix(nam)];
1984 safesysfree(oldstr);
1987 setenv(nam, val, 1);
1988 environ = *Perl_main_environ; /* environ realloc can occur in setenv */
1989 if(oldstr && environ[setenv_getix(nam)] != oldstr)
1990 safesysfree(oldstr);
1992 #else /* if WIN32 */
1995 Perl_my_setenv(pTHX_ char *nam,char *val)
1998 #ifdef USE_WIN32_RTL_ENV
2000 register char *envstr;
2001 STRLEN namlen = strlen(nam);
2003 char *oldstr = environ[setenv_getix(nam)];
2005 /* putenv() has totally broken semantics in both the Borland
2006 * and Microsoft CRTLs. They either store the passed pointer in
2007 * the environment without making a copy, or make a copy and don't
2008 * free it. And on top of that, they dont free() old entries that
2009 * are being replaced/deleted. This means the caller must
2010 * free any old entries somehow, or we end up with a memory
2011 * leak every time my_setenv() is called. One might think
2012 * one could directly manipulate environ[], like the UNIX code
2013 * above, but direct changes to environ are not allowed when
2014 * calling putenv(), since the RTLs maintain an internal
2015 * *copy* of environ[]. Bad, bad, *bad* stink.
2026 vallen = strlen(val);
2027 envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
2028 (void)sprintf(envstr,"%s=%s",nam,val);
2029 (void)PerlEnv_putenv(envstr);
2031 safesysfree(oldstr);
2033 safesysfree(envstr); /* MSVCRT leaks without this */
2036 #else /* !USE_WIN32_RTL_ENV */
2038 register char *envstr;
2039 STRLEN len = strlen(nam) + 3;
2044 New(904, envstr, len, char);
2045 (void)sprintf(envstr,"%s=%s",nam,val);
2046 (void)PerlEnv_putenv(envstr);
2056 Perl_setenv_getix(pTHX_ char *nam)
2058 register I32 i, len = strlen(nam);
2060 for (i = 0; environ[i]; i++) {
2063 strnicmp(environ[i],nam,len) == 0
2065 strnEQ(environ[i],nam,len)
2067 && environ[i][len] == '=')
2068 break; /* strnEQ must come first to avoid */
2069 } /* potential SEGV's */
2075 #ifdef UNLINK_ALL_VERSIONS
2077 Perl_unlnk(pTHX_ char *f) /* unlink all versions of a file */
2081 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
2086 /* this is a drop-in replacement for bcopy() */
2087 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
2089 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
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)
2120 /* this is a drop-in replacement for bzero() */
2121 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2123 Perl_my_bzero(register char *loc, register I32 len)
2133 /* this is a drop-in replacement for memcmp() */
2134 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2136 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
2138 register U8 *a = (U8 *)s1;
2139 register U8 *b = (U8 *)s2;
2143 if (tmp = *a++ - *b++)
2148 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2152 #ifdef USE_CHAR_VSPRINTF
2157 vsprintf(char *dest, const char *pat, char *args)
2161 fakebuf._ptr = dest;
2162 fakebuf._cnt = 32767;
2166 fakebuf._flag = _IOWRT|_IOSTRG;
2167 _doprnt(pat, args, &fakebuf); /* what a kludge */
2168 (void)putc('\0', &fakebuf);
2169 #ifdef USE_CHAR_VSPRINTF
2172 return 0; /* perl doesn't use return value */
2176 #endif /* HAS_VPRINTF */
2179 #if BYTEORDER != 0x4321
2181 Perl_my_swap(pTHX_ short s)
2183 #if (BYTEORDER & 1) == 0
2186 result = ((s & 255) << 8) + ((s >> 8) & 255);
2194 Perl_my_htonl(pTHX_ long l)
2198 char c[sizeof(long)];
2201 #if BYTEORDER == 0x1234
2202 u.c[0] = (l >> 24) & 255;
2203 u.c[1] = (l >> 16) & 255;
2204 u.c[2] = (l >> 8) & 255;
2208 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2209 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2214 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2215 u.c[o & 0xf] = (l >> s) & 255;
2223 Perl_my_ntohl(pTHX_ long l)
2227 char c[sizeof(long)];
2230 #if BYTEORDER == 0x1234
2231 u.c[0] = (l >> 24) & 255;
2232 u.c[1] = (l >> 16) & 255;
2233 u.c[2] = (l >> 8) & 255;
2237 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2238 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2245 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2246 l |= (u.c[o & 0xf] & 255) << s;
2253 #endif /* BYTEORDER != 0x4321 */
2257 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2258 * If these functions are defined,
2259 * the BYTEORDER is neither 0x1234 nor 0x4321.
2260 * However, this is not assumed.
2264 #define HTOV(name,type) \
2266 name (register type n) \
2270 char c[sizeof(type)]; \
2274 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2275 u.c[i] = (n >> s) & 0xFF; \
2280 #define VTOH(name,type) \
2282 name (register type n) \
2286 char c[sizeof(type)]; \
2292 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2293 n += (u.c[i] & 0xFF) << s; \
2298 #if defined(HAS_HTOVS) && !defined(htovs)
2301 #if defined(HAS_HTOVL) && !defined(htovl)
2304 #if defined(HAS_VTOHS) && !defined(vtohs)
2307 #if defined(HAS_VTOHL) && !defined(vtohl)
2311 /* VMS' my_popen() is in VMS.c, same with OS/2. */
2312 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2314 Perl_my_popen(pTHX_ char *cmd, char *mode)
2317 register I32 This, that;
2320 I32 doexec = strNE(cmd,"-");
2324 PERL_FLUSHALL_FOR_CHILD;
2327 return my_syspopen(aTHX_ cmd,mode);
2330 This = (*mode == 'w');
2332 if (doexec && PL_tainting) {
2334 taint_proper("Insecure %s%s", "EXEC");
2336 if (PerlProc_pipe(p) < 0)
2338 if (doexec && PerlProc_pipe(pp) >= 0)
2340 while ((pid = (doexec?vfork():fork())) < 0) {
2341 if (errno != EAGAIN) {
2342 PerlLIO_close(p[This]);
2344 PerlLIO_close(pp[0]);
2345 PerlLIO_close(pp[1]);
2348 Perl_croak(aTHX_ "Can't fork");
2360 PerlLIO_close(p[THAT]);
2362 PerlLIO_close(pp[0]);
2363 #if defined(HAS_FCNTL) && defined(F_SETFD)
2364 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2367 if (p[THIS] != (*mode == 'r')) {
2368 PerlLIO_dup2(p[THIS], *mode == 'r');
2369 PerlLIO_close(p[THIS]);
2373 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2379 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2383 do_exec3(cmd,pp[1],did_pipes); /* may or may not use the shell */
2386 #endif /* defined OS2 */
2388 if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
2389 sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2391 hv_clear(PL_pidstatus); /* we have no children */
2396 do_execfree(); /* free any memory malloced by child on vfork */
2397 PerlLIO_close(p[that]);
2399 PerlLIO_close(pp[1]);
2400 if (p[that] < p[This]) {
2401 PerlLIO_dup2(p[This], p[that]);
2402 PerlLIO_close(p[This]);
2406 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2408 (void)SvUPGRADE(sv,SVt_IV);
2410 PL_forkprocess = pid;
2411 if (did_pipes && pid > 0) {
2415 while (n < sizeof(int)) {
2416 n1 = PerlLIO_read(pp[0],
2417 (void*)(((char*)&errkid)+n),
2423 PerlLIO_close(pp[0]);
2425 if (n) { /* Error */
2426 if (n != sizeof(int))
2427 Perl_croak(aTHX_ "panic: kid popen errno read");
2428 errno = errkid; /* Propagate errno from kid */
2433 PerlLIO_close(pp[0]);
2434 return PerlIO_fdopen(p[This], mode);
2437 #if defined(atarist) || defined(DJGPP)
2440 Perl_my_popen(pTHX_ char *cmd, char *mode)
2442 /* Needs work for PerlIO ! */
2443 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2444 PERL_FLUSHALL_FOR_CHILD;
2445 return popen(PerlIO_exportFILE(cmd, 0), mode);
2449 #endif /* !DOSISH */
2453 Perl_dump_fds(pTHX_ char *s)
2456 struct stat tmpstatbuf;
2458 PerlIO_printf(Perl_debug_log,"%s", s);
2459 for (fd = 0; fd < 32; fd++) {
2460 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2461 PerlIO_printf(Perl_debug_log," %d",fd);
2463 PerlIO_printf(Perl_debug_log,"\n");
2465 #endif /* DUMP_FDS */
2469 dup2(int oldfd, int newfd)
2471 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2474 PerlLIO_close(newfd);
2475 return fcntl(oldfd, F_DUPFD, newfd);
2477 #define DUP2_MAX_FDS 256
2478 int fdtmp[DUP2_MAX_FDS];
2484 PerlLIO_close(newfd);
2485 /* good enough for low fd's... */
2486 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2487 if (fdx >= DUP2_MAX_FDS) {
2495 PerlLIO_close(fdtmp[--fdx]);
2502 #ifdef HAS_SIGACTION
2505 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2507 struct sigaction act, oact;
2509 act.sa_handler = handler;
2510 sigemptyset(&act.sa_mask);
2513 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2516 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2517 act.sa_flags |= SA_NOCLDWAIT;
2519 if (sigaction(signo, &act, &oact) == -1)
2522 return oact.sa_handler;
2526 Perl_rsignal_state(pTHX_ int signo)
2528 struct sigaction oact;
2530 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2533 return oact.sa_handler;
2537 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2539 struct sigaction act;
2541 act.sa_handler = handler;
2542 sigemptyset(&act.sa_mask);
2545 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2548 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2549 act.sa_flags |= SA_NOCLDWAIT;
2551 return sigaction(signo, &act, save);
2555 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2557 return sigaction(signo, save, (struct sigaction *)NULL);
2560 #else /* !HAS_SIGACTION */
2563 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2565 return PerlProc_signal(signo, handler);
2568 static int sig_trapped;
2578 Perl_rsignal_state(pTHX_ int signo)
2580 Sighandler_t oldsig;
2583 oldsig = PerlProc_signal(signo, sig_trap);
2584 PerlProc_signal(signo, oldsig);
2586 PerlProc_kill(PerlProc_getpid(), signo);
2591 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2593 *save = PerlProc_signal(signo, handler);
2594 return (*save == SIG_ERR) ? -1 : 0;
2598 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2600 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2603 #endif /* !HAS_SIGACTION */
2604 #endif /* !PERL_MICRO */
2606 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2607 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2609 Perl_my_pclose(pTHX_ PerlIO *ptr)
2611 Sigsave_t hstat, istat, qstat;
2619 int saved_vaxc_errno;
2622 int saved_win32_errno;
2626 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2630 *svp = &PL_sv_undef;
2632 if (pid == -1) { /* Opened by popen. */
2633 return my_syspclose(ptr);
2636 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2637 saved_errno = errno;
2639 saved_vaxc_errno = vaxc$errno;
2642 saved_win32_errno = GetLastError();
2646 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2649 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2650 rsignal_save(SIGINT, SIG_IGN, &istat);
2651 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2654 pid2 = wait4pid(pid, &status, 0);
2655 } while (pid2 == -1 && errno == EINTR);
2657 rsignal_restore(SIGHUP, &hstat);
2658 rsignal_restore(SIGINT, &istat);
2659 rsignal_restore(SIGQUIT, &qstat);
2662 SETERRNO(saved_errno, saved_vaxc_errno);
2665 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2667 #endif /* !DOSISH */
2669 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
2671 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2675 char spid[TYPE_CHARS(int)];
2680 sprintf(spid, "%"IVdf, (IV)pid);
2681 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2682 if (svp && *svp != &PL_sv_undef) {
2683 *statusp = SvIVX(*svp);
2684 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2691 hv_iterinit(PL_pidstatus);
2692 if ((entry = hv_iternext(PL_pidstatus))) {
2693 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2694 sv = hv_iterval(PL_pidstatus,entry);
2695 *statusp = SvIVX(sv);
2696 sprintf(spid, "%"IVdf, (IV)pid);
2697 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2702 # ifdef HAS_WAITPID_RUNTIME
2703 if (!HAS_WAITPID_RUNTIME)
2706 return PerlProc_waitpid(pid,statusp,flags);
2708 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2709 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2711 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2716 Perl_croak(aTHX_ "Can't do waitpid with flags");
2718 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2719 pidgone(result,*statusp);
2727 #endif /* !DOSISH || OS2 || WIN32 */
2731 Perl_pidgone(pTHX_ Pid_t pid, int status)
2734 char spid[TYPE_CHARS(int)];
2736 sprintf(spid, "%"IVdf, (IV)pid);
2737 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2738 (void)SvUPGRADE(sv,SVt_IV);
2743 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2746 int /* Cannot prototype with I32
2748 my_syspclose(PerlIO *ptr)
2751 Perl_my_pclose(pTHX_ PerlIO *ptr)
2754 /* Needs work for PerlIO ! */
2755 FILE *f = PerlIO_findFILE(ptr);
2756 I32 result = pclose(f);
2758 result = (result << 8) & 0xff00;
2760 PerlIO_releaseFILE(ptr,f);
2766 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2769 register const char *frombase = from;
2772 register const char c = *from;
2777 while (count-- > 0) {
2778 for (todo = len; todo > 0; todo--) {
2786 Perl_cast_ulong(pTHX_ NV f)
2791 # define BIGDOUBLE 2147483648.0
2793 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2796 return (unsigned long)f;
2798 return (unsigned long)along;
2802 /* Unfortunately, on some systems the cast_uv() function doesn't
2803 work with the system-supplied definition of ULONG_MAX. The
2804 comparison (f >= ULONG_MAX) always comes out true. It must be a
2805 problem with the compiler constant folding.
2807 In any case, this workaround should be fine on any two's complement
2808 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2810 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2813 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2815 -- Kenneth Albanowski <kjahds@kjahds.com>
2819 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2823 Perl_cast_i32(pTHX_ NV f)
2826 return (I32) I32_MAX;
2828 return (I32) I32_MIN;
2833 Perl_cast_iv(pTHX_ NV f)
2838 if (f >= (NV)UV_MAX)
2849 Perl_cast_uv(pTHX_ NV f)
2852 return (UV) MY_UV_MAX;
2866 Perl_same_dirent(pTHX_ char *a, char *b)
2868 char *fa = strrchr(a,'/');
2869 char *fb = strrchr(b,'/');
2870 struct stat tmpstatbuf1;
2871 struct stat tmpstatbuf2;
2872 SV *tmpsv = sv_newmortal();
2885 sv_setpv(tmpsv, ".");
2887 sv_setpvn(tmpsv, a, fa - a);
2888 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2891 sv_setpv(tmpsv, ".");
2893 sv_setpvn(tmpsv, b, fb - b);
2894 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2896 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2897 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2899 #endif /* !HAS_RENAME */
2902 Perl_scan_bin(pTHX_ char *start, I32 len, I32 *retlen)
2904 register char *s = start;
2905 register NV rnv = 0.0;
2906 register UV ruv = 0;
2907 register bool seenb = FALSE;
2908 register bool overflowed = FALSE;
2910 for (; len-- && *s; s++) {
2911 if (!(*s == '0' || *s == '1')) {
2912 if (*s == '_' && len && *retlen
2913 && (s[1] == '0' || s[1] == '1'))
2918 else if (seenb == FALSE && *s == 'b' && ruv == 0) {
2919 /* Disallow 0bbb0b0bbb... */
2925 if (ckWARN(WARN_DIGIT))
2926 Perl_warner(aTHX_ WARN_DIGIT,
2927 "Illegal binary digit '%c' ignored", *s);
2932 register UV xuv = ruv << 1;
2934 if ((xuv >> 1) != ruv) {
2938 if (ckWARN_d(WARN_OVERFLOW))
2939 Perl_warner(aTHX_ WARN_OVERFLOW,
2940 "Integer overflow in binary number");
2943 ruv = xuv | (*s - '0');
2947 /* If an NV has not enough bits in its mantissa to
2948 * represent an UV this summing of small low-order numbers
2949 * is a waste of time (because the NV cannot preserve
2950 * the low-order bits anyway): we could just remember when
2951 * did we overflow and in the end just multiply rnv by the
2958 if ( ( overflowed && rnv > 4294967295.0)
2960 || (!overflowed && ruv > 0xffffffff )
2964 if (ckWARN(WARN_PORTABLE))
2965 Perl_warner(aTHX_ WARN_PORTABLE,
2966 "Binary number > 0b11111111111111111111111111111111 non-portable");
2968 *retlen = s - start;
2973 Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen)
2975 register char *s = start;
2976 register NV rnv = 0.0;
2977 register UV ruv = 0;
2978 register bool overflowed = FALSE;
2980 for (; len-- && *s; s++) {
2981 if (!(*s >= '0' && *s <= '7')) {
2982 if (*s == '_' && len && *retlen
2983 && (s[1] >= '0' && s[1] <= '7'))
2989 /* Allow \octal to work the DWIM way (that is, stop scanning
2990 * as soon as non-octal characters are seen, complain only iff
2991 * someone seems to want to use the digits eight and nine). */
2992 if (*s == '8' || *s == '9') {
2994 if (ckWARN(WARN_DIGIT))
2995 Perl_warner(aTHX_ WARN_DIGIT,
2996 "Illegal octal digit '%c' ignored", *s);
3002 register UV xuv = ruv << 3;
3004 if ((xuv >> 3) != ruv) {
3008 if (ckWARN_d(WARN_OVERFLOW))
3009 Perl_warner(aTHX_ WARN_OVERFLOW,
3010 "Integer overflow in octal number");
3013 ruv = xuv | (*s - '0');
3017 /* If an NV has not enough bits in its mantissa to
3018 * represent an UV this summing of small low-order numbers
3019 * is a waste of time (because the NV cannot preserve
3020 * the low-order bits anyway): we could just remember when
3021 * did we overflow and in the end just multiply rnv by the
3022 * right amount of 8-tuples. */
3023 rnv += (NV)(*s - '0');
3028 if ( ( overflowed && rnv > 4294967295.0)
3030 || (!overflowed && ruv > 0xffffffff )
3034 if (ckWARN(WARN_PORTABLE))
3035 Perl_warner(aTHX_ WARN_PORTABLE,
3036 "Octal number > 037777777777 non-portable");
3038 *retlen = s - start;
3043 Perl_scan_hex(pTHX_ char *start, I32 len, I32 *retlen)
3045 register char *s = start;
3046 register NV rnv = 0.0;
3047 register UV ruv = 0;
3048 register bool seenx = FALSE;
3049 register bool overflowed = FALSE;
3052 for (; len-- && *s; s++) {
3053 hexdigit = strchr((char *) PL_hexdigit, *s);
3055 if (*s == '_' && len && *retlen && s[1]
3056 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
3061 else if (seenx == FALSE && *s == 'x' && ruv == 0) {
3062 /* Disallow 0xxx0x0xxx... */
3068 if (ckWARN(WARN_DIGIT))
3069 Perl_warner(aTHX_ WARN_DIGIT,
3070 "Illegal hexadecimal digit '%c' ignored", *s);
3075 register UV xuv = ruv << 4;
3077 if ((xuv >> 4) != ruv) {
3081 if (ckWARN_d(WARN_OVERFLOW))
3082 Perl_warner(aTHX_ WARN_OVERFLOW,
3083 "Integer overflow in hexadecimal number");
3086 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
3090 /* If an NV has not enough bits in its mantissa to
3091 * represent an UV this summing of small low-order numbers
3092 * is a waste of time (because the NV cannot preserve
3093 * the low-order bits anyway): we could just remember when
3094 * did we overflow and in the end just multiply rnv by the
3095 * right amount of 16-tuples. */
3096 rnv += (NV)((hexdigit - PL_hexdigit) & 15);
3101 if ( ( overflowed && rnv > 4294967295.0)
3103 || (!overflowed && ruv > 0xffffffff )
3107 if (ckWARN(WARN_PORTABLE))
3108 Perl_warner(aTHX_ WARN_PORTABLE,
3109 "Hexadecimal number > 0xffffffff non-portable");
3111 *retlen = s - start;
3116 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3119 char *xfound = Nullch;
3120 char *xfailed = Nullch;
3121 char tmpbuf[MAXPATHLEN];
3125 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3126 # define SEARCH_EXTS ".bat", ".cmd", NULL
3127 # define MAX_EXT_LEN 4
3130 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3131 # define MAX_EXT_LEN 4
3134 # define SEARCH_EXTS ".pl", ".com", NULL
3135 # define MAX_EXT_LEN 4
3137 /* additional extensions to try in each dir if scriptname not found */
3139 char *exts[] = { SEARCH_EXTS };
3140 char **ext = search_ext ? search_ext : exts;
3141 int extidx = 0, i = 0;
3142 char *curext = Nullch;
3144 # define MAX_EXT_LEN 0
3148 * If dosearch is true and if scriptname does not contain path
3149 * delimiters, search the PATH for scriptname.
3151 * If SEARCH_EXTS is also defined, will look for each
3152 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3153 * while searching the PATH.
3155 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3156 * proceeds as follows:
3157 * If DOSISH or VMSISH:
3158 * + look for ./scriptname{,.foo,.bar}
3159 * + search the PATH for scriptname{,.foo,.bar}
3162 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3163 * this will not look in '.' if it's not in the PATH)
3168 # ifdef ALWAYS_DEFTYPES
3169 len = strlen(scriptname);
3170 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3171 int hasdir, idx = 0, deftypes = 1;
3174 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3177 int hasdir, idx = 0, deftypes = 1;
3180 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3182 /* The first time through, just add SEARCH_EXTS to whatever we
3183 * already have, so we can check for default file types. */
3185 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3191 if ((strlen(tmpbuf) + strlen(scriptname)
3192 + MAX_EXT_LEN) >= sizeof tmpbuf)
3193 continue; /* don't search dir with too-long name */
3194 strcat(tmpbuf, scriptname);
3198 if (strEQ(scriptname, "-"))
3200 if (dosearch) { /* Look in '.' first. */
3201 char *cur = scriptname;
3203 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3205 if (strEQ(ext[i++],curext)) {
3206 extidx = -1; /* already has an ext */
3211 DEBUG_p(PerlIO_printf(Perl_debug_log,
3212 "Looking for %s\n",cur));
3213 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3214 && !S_ISDIR(PL_statbuf.st_mode)) {
3222 if (cur == scriptname) {
3223 len = strlen(scriptname);
3224 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3226 cur = strcpy(tmpbuf, scriptname);
3228 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3229 && strcpy(tmpbuf+len, ext[extidx++]));
3234 #ifdef MACOS_TRADITIONAL
3235 if (dosearch && !strchr(scriptname, ':') &&
3236 (s = PerlEnv_getenv("Commands")))
3238 if (dosearch && !strchr(scriptname, '/')
3240 && !strchr(scriptname, '\\')
3242 && (s = PerlEnv_getenv("PATH")))
3247 PL_bufend = s + strlen(s);
3248 while (s < PL_bufend) {
3249 #ifdef MACOS_TRADITIONAL
3250 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3254 #if defined(atarist) || defined(DOSISH)
3259 && *s != ';'; len++, s++) {
3260 if (len < sizeof tmpbuf)
3263 if (len < sizeof tmpbuf)
3265 #else /* ! (atarist || DOSISH) */
3266 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3269 #endif /* ! (atarist || DOSISH) */
3270 #endif /* MACOS_TRADITIONAL */
3273 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3274 continue; /* don't search dir with too-long name */
3275 #ifdef MACOS_TRADITIONAL
3276 if (len && tmpbuf[len - 1] != ':')
3277 tmpbuf[len++] = ':';
3280 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3281 && tmpbuf[len - 1] != '/'
3282 && tmpbuf[len - 1] != '\\'
3285 tmpbuf[len++] = '/';
3286 if (len == 2 && tmpbuf[0] == '.')
3289 (void)strcpy(tmpbuf + len, scriptname);
3293 len = strlen(tmpbuf);
3294 if (extidx > 0) /* reset after previous loop */
3298 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3299 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3300 if (S_ISDIR(PL_statbuf.st_mode)) {
3304 } while ( retval < 0 /* not there */
3305 && extidx>=0 && ext[extidx] /* try an extension? */
3306 && strcpy(tmpbuf+len, ext[extidx++])
3311 if (S_ISREG(PL_statbuf.st_mode)
3312 && cando(S_IRUSR,TRUE,&PL_statbuf)
3313 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3314 && cando(S_IXUSR,TRUE,&PL_statbuf)
3318 xfound = tmpbuf; /* bingo! */
3322 xfailed = savepv(tmpbuf);
3325 if (!xfound && !seen_dot && !xfailed &&
3326 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
3327 || S_ISDIR(PL_statbuf.st_mode)))
3329 seen_dot = 1; /* Disable message. */
3331 if (flags & 1) { /* do or die? */
3332 Perl_croak(aTHX_ "Can't %s %s%s%s",
3333 (xfailed ? "execute" : "find"),
3334 (xfailed ? xfailed : scriptname),
3335 (xfailed ? "" : " on PATH"),
3336 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3338 scriptname = Nullch;
3342 scriptname = xfound;
3344 return (scriptname ? savepv(scriptname) : Nullch);
3347 #ifndef PERL_GET_CONTEXT_DEFINED
3350 Perl_get_context(void)
3352 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3353 # ifdef OLD_PTHREADS_API
3355 if (pthread_getspecific(PL_thr_key, &t))
3356 Perl_croak_nocontext("panic: pthread_getspecific");
3359 # ifdef I_MACH_CTHREADS
3360 return (void*)cthread_data(cthread_self());
3362 return (void*)pthread_getspecific(PL_thr_key);
3371 Perl_set_context(void *t)
3373 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3374 # ifdef I_MACH_CTHREADS
3375 cthread_set_data(cthread_self(), t);
3377 if (pthread_setspecific(PL_thr_key, t))
3378 Perl_croak_nocontext("panic: pthread_setspecific");
3383 #endif /* !PERL_GET_CONTEXT_DEFINED */
3388 /* Very simplistic scheduler for now */
3392 thr = thr->i.next_run;
3396 Perl_cond_init(pTHX_ perl_cond *cp)
3402 Perl_cond_signal(pTHX_ perl_cond *cp)
3405 perl_cond cond = *cp;
3410 /* Insert t in the runnable queue just ahead of us */
3411 t->i.next_run = thr->i.next_run;
3412 thr->i.next_run->i.prev_run = t;
3413 t->i.prev_run = thr;
3414 thr->i.next_run = t;
3415 thr->i.wait_queue = 0;
3416 /* Remove from the wait queue */
3422 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3425 perl_cond cond, cond_next;
3427 for (cond = *cp; cond; cond = cond_next) {
3429 /* Insert t in the runnable queue just ahead of us */
3430 t->i.next_run = thr->i.next_run;
3431 thr->i.next_run->i.prev_run = t;
3432 t->i.prev_run = thr;
3433 thr->i.next_run = t;
3434 thr->i.wait_queue = 0;
3435 /* Remove from the wait queue */
3436 cond_next = cond->next;
3443 Perl_cond_wait(pTHX_ perl_cond *cp)
3447 if (thr->i.next_run == thr)
3448 Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3450 New(666, cond, 1, struct perl_wait_queue);
3454 thr->i.wait_queue = cond;
3455 /* Remove ourselves from runnable queue */
3456 thr->i.next_run->i.prev_run = thr->i.prev_run;
3457 thr->i.prev_run->i.next_run = thr->i.next_run;
3459 #endif /* FAKE_THREADS */
3462 Perl_condpair_magic(pTHX_ SV *sv)
3466 SvUPGRADE(sv, SVt_PVMG);
3467 mg = mg_find(sv, 'm');
3471 New(53, cp, 1, condpair_t);
3472 MUTEX_INIT(&cp->mutex);
3473 COND_INIT(&cp->owner_cond);
3474 COND_INIT(&cp->cond);
3476 LOCK_CRED_MUTEX; /* XXX need separate mutex? */
3477 mg = mg_find(sv, 'm');
3479 /* someone else beat us to initialising it */
3480 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
3481 MUTEX_DESTROY(&cp->mutex);
3482 COND_DESTROY(&cp->owner_cond);
3483 COND_DESTROY(&cp->cond);
3487 sv_magic(sv, Nullsv, 'm', 0, 0);
3489 mg->mg_ptr = (char *)cp;
3490 mg->mg_len = sizeof(cp);
3491 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
3492 DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
3493 "%p: condpair_magic %p\n", thr, sv));)
3500 Perl_sv_lock(pTHX_ SV *osv)
3510 mg = condpair_magic(sv);
3511 MUTEX_LOCK(MgMUTEXP(mg));
3512 if (MgOWNER(mg) == thr)
3513 MUTEX_UNLOCK(MgMUTEXP(mg));
3516 COND_WAIT(MgOWNERCONDP(mg), MgMUTEXP(mg));
3518 DEBUG_S(PerlIO_printf(Perl_debug_log,
3519 "0x%"UVxf": Perl_lock lock 0x%"UVxf"\n",
3520 PTR2UV(thr), PTR2UV(sv));)
3521 MUTEX_UNLOCK(MgMUTEXP(mg));
3522 SAVEDESTRUCTOR_X(Perl_unlock_condpair, sv);
3524 UNLOCK_SV_LOCK_MUTEX;
3529 * Make a new perl thread structure using t as a prototype. Some of the
3530 * fields for the new thread are copied from the prototype thread, t,
3531 * so t should not be running in perl at the time this function is
3532 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3533 * thread calling new_struct_thread) clearly satisfies this constraint.
3535 struct perl_thread *
3536 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3538 #if !defined(PERL_IMPLICIT_CONTEXT)
3539 struct perl_thread *thr;
3545 sv = newSVpvn("", 0);
3546 SvGROW(sv, sizeof(struct perl_thread) + 1);
3547 SvCUR_set(sv, sizeof(struct perl_thread));
3548 thr = (Thread) SvPVX(sv);
3550 memset(thr, 0xab, sizeof(struct perl_thread));
3557 Zero(&PL_hv_fetch_ent_mh, 1, HE);
3559 Zero(thr, 1, struct perl_thread);
3565 PL_curcop = &PL_compiling;
3566 thr->interp = t->interp;
3567 thr->cvcache = newHV();
3568 thr->threadsv = newAV();
3569 thr->specific = newAV();
3570 thr->errsv = newSVpvn("", 0);
3571 thr->flags = THRf_R_JOINABLE;
3572 MUTEX_INIT(&thr->mutex);
3576 PL_in_eval = EVAL_NULL; /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
3579 PL_statname = NEWSV(66,0);
3580 PL_errors = newSVpvn("", 0);
3582 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3583 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3584 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3585 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3586 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3588 PL_reginterp_cnt = 0;
3589 PL_lastscream = Nullsv;
3592 PL_reg_start_tmp = 0;
3593 PL_reg_start_tmpl = 0;
3594 PL_reg_poscache = Nullch;
3596 /* parent thread's data needs to be locked while we make copy */
3597 MUTEX_LOCK(&t->mutex);
3599 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3600 PL_protect = t->Tprotect;
3603 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
3604 PL_defstash = t->Tdefstash; /* XXX maybe these should */
3605 PL_curstash = t->Tcurstash; /* always be set to main? */
3607 PL_tainted = t->Ttainted;
3608 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
3609 PL_nrs = newSVsv(t->Tnrs);
3610 PL_rs = SvREFCNT_inc(PL_nrs);
3611 PL_last_in_gv = Nullgv;
3612 PL_ofslen = t->Tofslen;
3613 PL_ofs = savepvn(t->Tofs, PL_ofslen);
3614 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3615 PL_chopset = t->Tchopset;
3616 PL_bodytarget = newSVsv(t->Tbodytarget);
3617 PL_toptarget = newSVsv(t->Ttoptarget);
3618 if (t->Tformtarget == t->Ttoptarget)
3619 PL_formtarget = PL_toptarget;
3621 PL_formtarget = PL_bodytarget;
3623 /* Initialise all per-thread SVs that the template thread used */
3624 svp = AvARRAY(t->threadsv);
3625 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3626 if (*svp && *svp != &PL_sv_undef) {
3627 SV *sv = newSVsv(*svp);
3628 av_store(thr->threadsv, i, sv);
3629 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3630 DEBUG_S(PerlIO_printf(Perl_debug_log,
3631 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3635 thr->threadsvp = AvARRAY(thr->threadsv);
3637 MUTEX_LOCK(&PL_threads_mutex);
3639 thr->tid = ++PL_threadnum;
3640 thr->next = t->next;
3643 thr->next->prev = thr;
3644 MUTEX_UNLOCK(&PL_threads_mutex);
3646 /* done copying parent's state */
3647 MUTEX_UNLOCK(&t->mutex);
3649 #ifdef HAVE_THREAD_INTERN
3650 Perl_init_thread_intern(thr);
3651 #endif /* HAVE_THREAD_INTERN */
3654 #endif /* USE_THREADS */
3656 #if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
3658 * This hack is to force load of "huge" support from libm.a
3659 * So it is in perl for (say) POSIX to use.
3660 * Needed for SunOS with Sun's 'acc' for example.
3665 # if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3672 #ifdef PERL_GLOBAL_STRUCT
3681 Perl_get_op_names(pTHX)
3687 Perl_get_op_descs(pTHX)
3693 Perl_get_no_modify(pTHX)
3695 return (char*)PL_no_modify;
3699 Perl_get_opargs(pTHX)
3705 Perl_get_ppaddr(pTHX)
3707 return (PPADDR_t*)PL_ppaddr;
3710 #ifndef HAS_GETENV_LEN
3712 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3714 char *env_trans = PerlEnv_getenv(env_elem);
3716 *len = strlen(env_trans);
3723 Perl_get_vtbl(pTHX_ int vtbl_id)
3725 MGVTBL* result = Null(MGVTBL*);
3729 result = &PL_vtbl_sv;
3732 result = &PL_vtbl_env;
3734 case want_vtbl_envelem:
3735 result = &PL_vtbl_envelem;
3738 result = &PL_vtbl_sig;
3740 case want_vtbl_sigelem:
3741 result = &PL_vtbl_sigelem;
3743 case want_vtbl_pack:
3744 result = &PL_vtbl_pack;
3746 case want_vtbl_packelem:
3747 result = &PL_vtbl_packelem;
3749 case want_vtbl_dbline:
3750 result = &PL_vtbl_dbline;
3753 result = &PL_vtbl_isa;
3755 case want_vtbl_isaelem:
3756 result = &PL_vtbl_isaelem;
3758 case want_vtbl_arylen:
3759 result = &PL_vtbl_arylen;
3761 case want_vtbl_glob:
3762 result = &PL_vtbl_glob;
3764 case want_vtbl_mglob:
3765 result = &PL_vtbl_mglob;
3767 case want_vtbl_nkeys:
3768 result = &PL_vtbl_nkeys;
3770 case want_vtbl_taint:
3771 result = &PL_vtbl_taint;
3773 case want_vtbl_substr:
3774 result = &PL_vtbl_substr;
3777 result = &PL_vtbl_vec;
3780 result = &PL_vtbl_pos;
3783 result = &PL_vtbl_bm;
3786 result = &PL_vtbl_fm;
3788 case want_vtbl_uvar:
3789 result = &PL_vtbl_uvar;
3792 case want_vtbl_mutex:
3793 result = &PL_vtbl_mutex;
3796 case want_vtbl_defelem:
3797 result = &PL_vtbl_defelem;
3799 case want_vtbl_regexp:
3800 result = &PL_vtbl_regexp;
3802 case want_vtbl_regdata:
3803 result = &PL_vtbl_regdata;
3805 case want_vtbl_regdatum:
3806 result = &PL_vtbl_regdatum;
3808 #ifdef USE_LOCALE_COLLATE
3809 case want_vtbl_collxfrm:
3810 result = &PL_vtbl_collxfrm;
3813 case want_vtbl_amagic:
3814 result = &PL_vtbl_amagic;
3816 case want_vtbl_amagicelem:
3817 result = &PL_vtbl_amagicelem;
3819 case want_vtbl_backref:
3820 result = &PL_vtbl_backref;
3827 Perl_my_fflush_all(pTHX)
3830 return PerlIO_flush(NULL);
3833 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3834 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3835 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3837 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3838 open_max = sysconf(_SC_OPEN_MAX);
3841 open_max = FOPEN_MAX;
3844 open_max = OPEN_MAX;
3855 for (i = 0; i < open_max; i++)
3856 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3857 STDIO_STREAM_ARRAY[i]._file < open_max &&
3858 STDIO_STREAM_ARRAY[i]._flag)
3859 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3863 SETERRNO(EBADF,RMS$_IFI);
3869 Perl_my_atof(pTHX_ const char* s)
3871 #ifdef USE_LOCALE_NUMERIC
3872 if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3876 SET_NUMERIC_STANDARD();
3878 SET_NUMERIC_LOCAL();
3879 if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3884 return Perl_atof(s);
3886 return Perl_atof(s);
3891 Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op)
3896 op == OP_READLINE ? "readline" : /* "<HANDLE>" not nice */
3897 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3899 char *pars = OP_IS_FILETEST(op) ? "" : "()";
3900 char *type = OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET) ?
3901 "socket" : "filehandle";
3904 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3906 warn_type = WARN_CLOSED;
3910 warn_type = WARN_UNOPENED;
3913 if (gv && isGV(gv)) {
3914 SV *sv = sv_newmortal();
3915 gv_efullname4(sv, gv, Nullch, FALSE);
3919 if (name && *name) {
3920 Perl_warner(aTHX_ warn_type,
3921 "%s%s on %s %s %s", func, pars, vile, type, name);
3922 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3923 Perl_warner(aTHX_ warn_type,
3924 "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3928 Perl_warner(aTHX_ warn_type,
3929 "%s%s on %s %s", func, pars, vile, type);
3930 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3931 Perl_warner(aTHX_ warn_type,
3932 "\t(Are you trying to call %s%s on dirhandle?)\n",