3 * Copyright (c) 1991-2001, 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)
33 /* Put this after #includes because fork and vfork prototypes may
41 # include <sys/wait.h>
52 long xcount[MAXXCOUNT];
53 long lastxcount[MAXXCOUNT];
54 long xycount[MAXXCOUNT][MAXYCOUNT];
55 long lastxycount[MAXXCOUNT][MAXYCOUNT];
59 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
60 # define FD_CLOEXEC 1 /* NeXT needs this */
63 /* paranoid version of system's malloc() */
65 /* NOTE: Do not call the next three routines directly. Use the macros
66 * in handy.h, so that we can easily redefine everything to do tracking of
67 * allocated hunks back to the original New to track down any memory leaks.
68 * XXX This advice seems to be widely ignored :-( --AD August 1996.
72 Perl_safesysmalloc(MEM_SIZE size)
78 PerlIO_printf(Perl_error_log,
79 "Allocation too large: %lx\n", size) FLUSH;
82 #endif /* HAS_64K_LIMIT */
85 Perl_croak_nocontext("panic: malloc");
87 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
88 PERL_ALLOC_CHECK(ptr);
89 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
95 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
102 /* paranoid version of system's realloc() */
105 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
109 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
110 Malloc_t PerlMem_realloc();
111 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
115 PerlIO_printf(Perl_error_log,
116 "Reallocation too large: %lx\n", size) FLUSH;
119 #endif /* HAS_64K_LIMIT */
126 return safesysmalloc(size);
129 Perl_croak_nocontext("panic: realloc");
131 ptr = (Malloc_t)PerlMem_realloc(where,size);
132 PERL_ALLOC_CHECK(ptr);
134 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
135 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
142 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
149 /* safe version of system's free() */
152 Perl_safesysfree(Malloc_t where)
154 #ifdef PERL_IMPLICIT_SYS
157 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
164 /* safe version of system's calloc() */
167 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
173 if (size * count > 0xffff) {
174 PerlIO_printf(Perl_error_log,
175 "Allocation too large: %lx\n", size * count) FLUSH;
178 #endif /* HAS_64K_LIMIT */
180 if ((long)size < 0 || (long)count < 0)
181 Perl_croak_nocontext("panic: calloc");
184 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
185 PERL_ALLOC_CHECK(ptr);
186 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));
188 memset((void*)ptr, 0, size);
194 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
203 struct mem_test_strut {
211 # define ALIGN sizeof(struct mem_test_strut)
213 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
214 # define typeof_chunk(ch) \
215 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
216 # define set_typeof_chunk(ch,t) \
217 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
218 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
221 ? ((size) - 1)/8 + 5 \
225 Perl_safexmalloc(I32 x, MEM_SIZE size)
227 register char* where = (char*)safemalloc(size + ALIGN);
230 xycount[x][SIZE_TO_Y(size)]++;
231 set_typeof_chunk(where, x);
232 sizeof_chunk(where) = size;
233 return (Malloc_t)(where + ALIGN);
237 Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
239 char *where = (char*)wh;
242 return safexmalloc(0,size);
245 MEM_SIZE old = sizeof_chunk(where - ALIGN);
246 int t = typeof_chunk(where - ALIGN);
247 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
249 xycount[t][SIZE_TO_Y(old)]--;
250 xycount[t][SIZE_TO_Y(size)]++;
251 xcount[t] += size - old;
252 sizeof_chunk(new) = size;
253 return (Malloc_t)(new + ALIGN);
258 Perl_safexfree(Malloc_t wh)
261 char *where = (char*)wh;
267 size = sizeof_chunk(where);
268 x = where[0] + 100 * where[1];
270 xycount[x][SIZE_TO_Y(size)]--;
275 Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
277 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
279 xycount[x][SIZE_TO_Y(size)]++;
280 memset((void*)(where + ALIGN), 0, size * count);
281 set_typeof_chunk(where, x);
282 sizeof_chunk(where) = size;
283 return (Malloc_t)(where + ALIGN);
287 S_xstat(pTHX_ int flag)
289 register I32 i, j, total = 0;
290 I32 subtot[MAXYCOUNT];
292 for (j = 0; j < MAXYCOUNT; j++) {
296 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);
297 for (i = 0; i < MAXXCOUNT; i++) {
299 for (j = 0; j < MAXYCOUNT; j++) {
300 subtot[j] += xycount[i][j];
303 ? xcount[i] /* Have something */
305 ? xcount[i] != lastxcount[i] /* Changed */
306 : xcount[i] > lastxcount[i])) { /* Growed */
307 PerlIO_printf(Perl_debug_log,"%2d %02d %7ld ", i / 100, i % 100,
308 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
309 lastxcount[i] = xcount[i];
310 for (j = 0; j < MAXYCOUNT; j++) {
312 ? xycount[i][j] /* Have something */
314 ? xycount[i][j] != lastxycount[i][j] /* Changed */
315 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
316 PerlIO_printf(Perl_debug_log,"%3ld ",
318 ? xycount[i][j] - lastxycount[i][j]
320 lastxycount[i][j] = xycount[i][j];
322 PerlIO_printf(Perl_debug_log, " . ", xycount[i][j]);
325 PerlIO_printf(Perl_debug_log, "\n");
329 PerlIO_printf(Perl_debug_log, "Total %7ld ", total);
330 for (j = 0; j < MAXYCOUNT; j++) {
332 PerlIO_printf(Perl_debug_log, "%3ld ", subtot[j]);
334 PerlIO_printf(Perl_debug_log, " . ");
337 PerlIO_printf(Perl_debug_log, "\n");
341 #endif /* LEAKTEST */
343 /* copy a string up to some (non-backslashed) delimiter, if any */
346 Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
349 for (tolen = 0; from < fromend; from++, tolen++) {
351 if (from[1] == delim)
360 else if (*from == delim)
371 /* return ptr to little string in big string, NULL if not found */
372 /* This routine was donated by Corey Satten. */
375 Perl_instr(pTHX_ register const char *big, register const char *little)
377 register const char *s, *x;
388 for (x=big,s=little; *s; /**/ ) {
397 return (char*)(big-1);
402 /* same as instr but allow embedded nulls */
405 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
407 register const char *s, *x;
408 register I32 first = *little;
409 register const char *littleend = lend;
411 if (!first && little >= littleend)
413 if (bigend - big < littleend - little)
415 bigend -= littleend - little++;
416 while (big <= bigend) {
419 for (x=big,s=little; s < littleend; /**/ ) {
426 return (char*)(big-1);
431 /* reverse of the above--find last substring */
434 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
436 register const char *bigbeg;
437 register const char *s, *x;
438 register I32 first = *little;
439 register const char *littleend = lend;
441 if (!first && little >= littleend)
442 return (char*)bigend;
444 big = bigend - (littleend - little++);
445 while (big >= bigbeg) {
448 for (x=big+2,s=little; s < littleend; /**/ ) {
455 return (char*)(big+1);
461 * Set up for a new ctype locale.
464 Perl_new_ctype(pTHX_ char *newctype)
466 #ifdef USE_LOCALE_CTYPE
470 for (i = 0; i < 256; i++) {
472 PL_fold_locale[i] = toLOWER_LC(i);
473 else if (isLOWER_LC(i))
474 PL_fold_locale[i] = toUPPER_LC(i);
476 PL_fold_locale[i] = i;
479 #endif /* USE_LOCALE_CTYPE */
483 * Standardize the locale name from a string returned by 'setlocale'.
485 * The standard return value of setlocale() is either
486 * (1) "xx_YY" if the first argument of setlocale() is not LC_ALL
487 * (2) "xa_YY xb_YY ..." if the first argument of setlocale() is LC_ALL
488 * (the space-separated values represent the various sublocales,
489 * in some unspecificed order)
491 * In some platforms it has a form like "LC_SOMETHING=Lang_Country.866\n",
492 * which is harmful for further use of the string in setlocale().
496 S_stdize_locale(pTHX_ char *locs)
501 if ((s = strchr(locs, '='))) {
505 if ((t = strchr(s, '.'))) {
508 if ((u = strchr(t, '\n'))) {
512 Move(s + 1, locs, len, char);
521 Perl_croak(aTHX_ "Can't fix broken locale name \"%s\"", locs);
527 * Set up for a new collation locale.
530 Perl_new_collate(pTHX_ char *newcoll)
532 #ifdef USE_LOCALE_COLLATE
535 if (PL_collation_name) {
537 Safefree(PL_collation_name);
538 PL_collation_name = NULL;
540 PL_collation_standard = TRUE;
541 PL_collxfrm_base = 0;
542 PL_collxfrm_mult = 2;
546 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
548 Safefree(PL_collation_name);
549 PL_collation_name = stdize_locale(savepv(newcoll));
550 PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
553 /* 2: at most so many chars ('a', 'b'). */
554 /* 50: surely no system expands a char more. */
555 #define XFRMBUFSIZE (2 * 50)
556 char xbuf[XFRMBUFSIZE];
557 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
558 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
559 SSize_t mult = fb - fa;
561 Perl_croak(aTHX_ "strxfrm() gets absurd");
562 PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
563 PL_collxfrm_mult = mult;
567 #endif /* USE_LOCALE_COLLATE */
571 Perl_set_numeric_radix(pTHX)
573 #ifdef USE_LOCALE_NUMERIC
574 # ifdef HAS_LOCALECONV
578 if (lc && lc->decimal_point) {
579 if (lc->decimal_point[0] == '.' && lc->decimal_point[1] == 0) {
580 SvREFCNT_dec(PL_numeric_radix);
581 PL_numeric_radix = 0;
584 if (PL_numeric_radix)
585 sv_setpv(PL_numeric_radix, lc->decimal_point);
587 PL_numeric_radix = newSVpv(lc->decimal_point, 0);
591 PL_numeric_radix = 0;
592 # endif /* HAS_LOCALECONV */
593 #endif /* USE_LOCALE_NUMERIC */
597 * Set up for a new numeric locale.
600 Perl_new_numeric(pTHX_ char *newnum)
602 #ifdef USE_LOCALE_NUMERIC
605 if (PL_numeric_name) {
606 Safefree(PL_numeric_name);
607 PL_numeric_name = NULL;
609 PL_numeric_standard = TRUE;
610 PL_numeric_local = TRUE;
614 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
615 Safefree(PL_numeric_name);
616 PL_numeric_name = stdize_locale(savepv(newnum));
617 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
618 PL_numeric_local = TRUE;
622 #endif /* USE_LOCALE_NUMERIC */
626 Perl_set_numeric_standard(pTHX)
628 #ifdef USE_LOCALE_NUMERIC
630 if (! PL_numeric_standard) {
631 setlocale(LC_NUMERIC, "C");
632 PL_numeric_standard = TRUE;
633 PL_numeric_local = FALSE;
637 #endif /* USE_LOCALE_NUMERIC */
641 Perl_set_numeric_local(pTHX)
643 #ifdef USE_LOCALE_NUMERIC
645 if (! PL_numeric_local) {
646 setlocale(LC_NUMERIC, PL_numeric_name);
647 PL_numeric_standard = FALSE;
648 PL_numeric_local = TRUE;
652 #endif /* USE_LOCALE_NUMERIC */
656 * Initialize locale awareness.
659 Perl_init_i18nl10n(pTHX_ int printwarn)
663 * 1 = set ok or not applicable,
664 * 0 = fallback to C locale,
665 * -1 = fallback to C locale failed
668 #if defined(USE_LOCALE)
670 #ifdef USE_LOCALE_CTYPE
671 char *curctype = NULL;
672 #endif /* USE_LOCALE_CTYPE */
673 #ifdef USE_LOCALE_COLLATE
674 char *curcoll = NULL;
675 #endif /* USE_LOCALE_COLLATE */
676 #ifdef USE_LOCALE_NUMERIC
678 #endif /* USE_LOCALE_NUMERIC */
680 char *language = PerlEnv_getenv("LANGUAGE");
682 char *lc_all = PerlEnv_getenv("LC_ALL");
683 char *lang = PerlEnv_getenv("LANG");
684 bool setlocale_failure = FALSE;
686 #ifdef LOCALE_ENVIRON_REQUIRED
689 * Ultrix setlocale(..., "") fails if there are no environment
690 * variables from which to get a locale name.
697 if (setlocale(LC_ALL, ""))
700 setlocale_failure = TRUE;
702 if (!setlocale_failure) {
703 #ifdef USE_LOCALE_CTYPE
706 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
708 setlocale_failure = TRUE;
710 curctype = savepv(curctype);
711 #endif /* USE_LOCALE_CTYPE */
712 #ifdef USE_LOCALE_COLLATE
714 setlocale(LC_COLLATE,
715 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
717 setlocale_failure = TRUE;
719 curcoll = savepv(curcoll);
720 #endif /* USE_LOCALE_COLLATE */
721 #ifdef USE_LOCALE_NUMERIC
723 setlocale(LC_NUMERIC,
724 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
726 setlocale_failure = TRUE;
728 curnum = savepv(curnum);
729 #endif /* USE_LOCALE_NUMERIC */
734 #endif /* !LOCALE_ENVIRON_REQUIRED */
737 if (! setlocale(LC_ALL, ""))
738 setlocale_failure = TRUE;
741 if (!setlocale_failure) {
742 #ifdef USE_LOCALE_CTYPE
743 if (! (curctype = setlocale(LC_CTYPE, "")))
744 setlocale_failure = TRUE;
746 curctype = savepv(curctype);
747 #endif /* USE_LOCALE_CTYPE */
748 #ifdef USE_LOCALE_COLLATE
749 if (! (curcoll = setlocale(LC_COLLATE, "")))
750 setlocale_failure = TRUE;
752 curcoll = savepv(curcoll);
753 #endif /* USE_LOCALE_COLLATE */
754 #ifdef USE_LOCALE_NUMERIC
755 if (! (curnum = setlocale(LC_NUMERIC, "")))
756 setlocale_failure = TRUE;
758 curnum = savepv(curnum);
759 #endif /* USE_LOCALE_NUMERIC */
762 if (setlocale_failure) {
764 bool locwarn = (printwarn > 1 ||
766 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p))));
771 PerlIO_printf(Perl_error_log,
772 "perl: warning: Setting locale failed.\n");
776 PerlIO_printf(Perl_error_log,
777 "perl: warning: Setting locale failed for the categories:\n\t");
778 #ifdef USE_LOCALE_CTYPE
780 PerlIO_printf(Perl_error_log, "LC_CTYPE ");
781 #endif /* USE_LOCALE_CTYPE */
782 #ifdef USE_LOCALE_COLLATE
784 PerlIO_printf(Perl_error_log, "LC_COLLATE ");
785 #endif /* USE_LOCALE_COLLATE */
786 #ifdef USE_LOCALE_NUMERIC
788 PerlIO_printf(Perl_error_log, "LC_NUMERIC ");
789 #endif /* USE_LOCALE_NUMERIC */
790 PerlIO_printf(Perl_error_log, "\n");
794 PerlIO_printf(Perl_error_log,
795 "perl: warning: Please check that your locale settings:\n");
798 PerlIO_printf(Perl_error_log,
799 "\tLANGUAGE = %c%s%c,\n",
800 language ? '"' : '(',
801 language ? language : "unset",
802 language ? '"' : ')');
805 PerlIO_printf(Perl_error_log,
806 "\tLC_ALL = %c%s%c,\n",
808 lc_all ? lc_all : "unset",
811 #if defined(USE_ENVIRON_ARRAY)
814 for (e = environ; *e; e++) {
815 if (strnEQ(*e, "LC_", 3)
816 && strnNE(*e, "LC_ALL=", 7)
817 && (p = strchr(*e, '=')))
818 PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n",
819 (int)(p - *e), *e, p + 1);
823 PerlIO_printf(Perl_error_log,
824 "\t(possibly more locale environment variables)\n");
827 PerlIO_printf(Perl_error_log,
830 lang ? lang : "unset",
833 PerlIO_printf(Perl_error_log,
834 " are supported and installed on your system.\n");
839 if (setlocale(LC_ALL, "C")) {
841 PerlIO_printf(Perl_error_log,
842 "perl: warning: Falling back to the standard locale (\"C\").\n");
847 PerlIO_printf(Perl_error_log,
848 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
855 #ifdef USE_LOCALE_CTYPE
856 || !(curctype || setlocale(LC_CTYPE, "C"))
857 #endif /* USE_LOCALE_CTYPE */
858 #ifdef USE_LOCALE_COLLATE
859 || !(curcoll || setlocale(LC_COLLATE, "C"))
860 #endif /* USE_LOCALE_COLLATE */
861 #ifdef USE_LOCALE_NUMERIC
862 || !(curnum || setlocale(LC_NUMERIC, "C"))
863 #endif /* USE_LOCALE_NUMERIC */
867 PerlIO_printf(Perl_error_log,
868 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
872 #endif /* ! LC_ALL */
874 #ifdef USE_LOCALE_CTYPE
875 curctype = savepv(setlocale(LC_CTYPE, Nullch));
876 #endif /* USE_LOCALE_CTYPE */
877 #ifdef USE_LOCALE_COLLATE
878 curcoll = savepv(setlocale(LC_COLLATE, Nullch));
879 #endif /* USE_LOCALE_COLLATE */
880 #ifdef USE_LOCALE_NUMERIC
881 curnum = savepv(setlocale(LC_NUMERIC, Nullch));
882 #endif /* USE_LOCALE_NUMERIC */
886 #ifdef USE_LOCALE_CTYPE
888 #endif /* USE_LOCALE_CTYPE */
890 #ifdef USE_LOCALE_COLLATE
891 new_collate(curcoll);
892 #endif /* USE_LOCALE_COLLATE */
894 #ifdef USE_LOCALE_NUMERIC
896 #endif /* USE_LOCALE_NUMERIC */
899 #endif /* USE_LOCALE */
901 #ifdef USE_LOCALE_CTYPE
902 if (curctype != NULL)
904 #endif /* USE_LOCALE_CTYPE */
905 #ifdef USE_LOCALE_COLLATE
908 #endif /* USE_LOCALE_COLLATE */
909 #ifdef USE_LOCALE_NUMERIC
912 #endif /* USE_LOCALE_NUMERIC */
916 /* Backwards compatibility. */
918 Perl_init_i18nl14n(pTHX_ int printwarn)
920 return init_i18nl10n(printwarn);
923 #ifdef USE_LOCALE_COLLATE
926 * mem_collxfrm() is a bit like strxfrm() but with two important
927 * differences. First, it handles embedded NULs. Second, it allocates
928 * a bit more memory than needed for the transformed data itself.
929 * The real transformed data begins at offset sizeof(collationix).
930 * Please see sv_collxfrm() to see how this is used.
933 Perl_mem_collxfrm(pTHX_ const char *s, STRLEN len, STRLEN *xlen)
936 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
938 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
939 /* the +1 is for the terminating NUL. */
941 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
942 New(171, xbuf, xAlloc, char);
946 *(U32*)xbuf = PL_collation_ix;
947 xout = sizeof(PL_collation_ix);
948 for (xin = 0; xin < len; ) {
952 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
955 if (xused < xAlloc - xout)
957 xAlloc = (2 * xAlloc) + 1;
958 Renew(xbuf, xAlloc, char);
963 xin += strlen(s + xin) + 1;
966 /* Embedded NULs are understood but silently skipped
967 * because they make no sense in locale collation. */
971 *xlen = xout - sizeof(PL_collation_ix);
980 #endif /* USE_LOCALE_COLLATE */
982 #define FBM_TABLE_OFFSET 2 /* Number of bytes between EOS and table*/
984 /* As a space optimization, we do not compile tables for strings of length
985 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
986 special-cased in fbm_instr().
988 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
991 =for apidoc fbm_compile
993 Analyses the string in order to make fast searches on it using fbm_instr()
994 -- the Boyer-Moore algorithm.
1000 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
1007 U32 frequency = 256;
1009 if (flags & FBMcf_TAIL)
1010 sv_catpvn(sv, "\n", 1); /* Taken into account in fbm_instr() */
1011 s = (U8*)SvPV_force(sv, len);
1012 (void)SvUPGRADE(sv, SVt_PVBM);
1013 if (len == 0) /* TAIL might be on on a zero-length string. */
1023 Sv_Grow(sv, len + 256 + FBM_TABLE_OFFSET);
1024 table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
1025 s = table - 1 - FBM_TABLE_OFFSET; /* last char */
1026 memset((void*)table, mlen, 256);
1027 table[-1] = (U8)flags;
1029 sb = s - mlen + 1; /* first char (maybe) */
1031 if (table[*s] == mlen)
1036 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
1039 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
1040 for (i = 0; i < len; i++) {
1041 if (PL_freq[s[i]] < frequency) {
1043 frequency = PL_freq[s[i]];
1046 BmRARE(sv) = s[rarest];
1047 BmPREVIOUS(sv) = rarest;
1048 BmUSEFUL(sv) = 100; /* Initial value */
1049 if (flags & FBMcf_TAIL)
1051 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",
1052 BmRARE(sv),BmPREVIOUS(sv)));
1055 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
1056 /* If SvTAIL is actually due to \Z or \z, this gives false positives
1060 =for apidoc fbm_instr
1062 Returns the location of the SV in the string delimited by C<str> and
1063 C<strend>. It returns C<Nullch> if the string can't be found. The C<sv>
1064 does not have to be fbm_compiled, but the search will not be as fast
1071 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
1073 register unsigned char *s;
1075 register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
1076 register STRLEN littlelen = l;
1077 register I32 multiline = flags & FBMrf_MULTILINE;
1079 if (bigend - big < littlelen) {
1080 if ( SvTAIL(littlestr)
1081 && (bigend - big == littlelen - 1)
1083 || (*big == *little &&
1084 memEQ((char *)big, (char *)little, littlelen - 1))))
1089 if (littlelen <= 2) { /* Special-cased */
1091 if (littlelen == 1) {
1092 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
1093 /* Know that bigend != big. */
1094 if (bigend[-1] == '\n')
1095 return (char *)(bigend - 1);
1096 return (char *) bigend;
1099 while (s < bigend) {
1104 if (SvTAIL(littlestr))
1105 return (char *) bigend;
1109 return (char*)big; /* Cannot be SvTAIL! */
1111 /* littlelen is 2 */
1112 if (SvTAIL(littlestr) && !multiline) {
1113 if (bigend[-1] == '\n' && bigend[-2] == *little)
1114 return (char*)bigend - 2;
1115 if (bigend[-1] == *little)
1116 return (char*)bigend - 1;
1120 /* This should be better than FBM if c1 == c2, and almost
1121 as good otherwise: maybe better since we do less indirection.
1122 And we save a lot of memory by caching no table. */
1123 register unsigned char c1 = little[0];
1124 register unsigned char c2 = little[1];
1129 while (s <= bigend) {
1132 return (char*)s - 1;
1139 goto check_1char_anchor;
1150 goto check_1char_anchor;
1153 while (s <= bigend) {
1156 return (char*)s - 1;
1158 goto check_1char_anchor;
1167 check_1char_anchor: /* One char and anchor! */
1168 if (SvTAIL(littlestr) && (*bigend == *little))
1169 return (char *)bigend; /* bigend is already decremented. */
1172 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
1173 s = bigend - littlelen;
1174 if (s >= big && bigend[-1] == '\n' && *s == *little
1175 /* Automatically of length > 2 */
1176 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1178 return (char*)s; /* how sweet it is */
1181 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
1183 return (char*)s + 1; /* how sweet it is */
1187 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
1188 char *b = ninstr((char*)big,(char*)bigend,
1189 (char*)little, (char*)little + littlelen);
1191 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
1192 /* Chop \n from littlestr: */
1193 s = bigend - littlelen + 1;
1195 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1204 { /* Do actual FBM. */
1205 register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
1206 register unsigned char *oldlittle;
1208 if (littlelen > bigend - big)
1210 --littlelen; /* Last char found by table lookup */
1212 s = big + littlelen;
1213 little += littlelen; /* last char */
1220 if ((tmp = table[*s])) {
1222 if (bigend - s > tmp) {
1228 if ((s += tmp) < bigend)
1233 else { /* less expensive than calling strncmp() */
1234 register unsigned char *olds = s;
1239 if (*--s == *--little)
1241 s = olds + 1; /* here we pay the price for failure */
1243 if (s < bigend) /* fake up continue to outer loop */
1251 if ( s == bigend && (table[-1] & FBMcf_TAIL)
1252 && memEQ((char *)(bigend - littlelen),
1253 (char *)(oldlittle - littlelen), littlelen) )
1254 return (char*)bigend - littlelen;
1259 /* start_shift, end_shift are positive quantities which give offsets
1260 of ends of some substring of bigstr.
1261 If `last' we want the last occurence.
1262 old_posp is the way of communication between consequent calls if
1263 the next call needs to find the .
1264 The initial *old_posp should be -1.
1266 Note that we take into account SvTAIL, so one can get extra
1267 optimizations if _ALL flag is set.
1270 /* If SvTAIL is actually due to \Z or \z, this gives false positives
1271 if PL_multiline. In fact if !PL_multiline the autoritative answer
1272 is not supported yet. */
1275 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1277 register unsigned char *s, *x;
1278 register unsigned char *big;
1280 register I32 previous;
1282 register unsigned char *little;
1283 register I32 stop_pos;
1284 register unsigned char *littleend;
1288 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1289 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
1291 if ( BmRARE(littlestr) == '\n'
1292 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
1293 little = (unsigned char *)(SvPVX(littlestr));
1294 littleend = little + SvCUR(littlestr);
1301 little = (unsigned char *)(SvPVX(littlestr));
1302 littleend = little + SvCUR(littlestr);
1304 /* The value of pos we can start at: */
1305 previous = BmPREVIOUS(littlestr);
1306 big = (unsigned char *)(SvPVX(bigstr));
1307 /* The value of pos we can stop at: */
1308 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1309 if (previous + start_shift > stop_pos) {
1310 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
1314 while (pos < previous + start_shift) {
1315 if (!(pos += PL_screamnext[pos]))
1320 if (pos >= stop_pos) break;
1321 if (big[pos-previous] != first)
1323 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1329 if (s == littleend) {
1331 if (!last) return (char *)(big+pos-previous);
1334 } while ( pos += PL_screamnext[pos] );
1335 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1336 #else /* !POINTERRIGOR */
1339 if (pos >= stop_pos) break;
1340 if (big[pos] != first)
1342 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1348 if (s == littleend) {
1350 if (!last) return (char *)(big+pos);
1353 } while ( pos += PL_screamnext[pos] );
1355 return (char *)(big+(*old_posp));
1356 #endif /* POINTERRIGOR */
1358 if (!SvTAIL(littlestr) || (end_shift > 0))
1360 /* Ignore the trailing "\n". This code is not microoptimized */
1361 big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
1362 stop_pos = littleend - little; /* Actual littlestr len */
1367 && ((stop_pos == 1) ||
1368 memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
1374 Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
1376 register U8 *a = (U8 *)s1;
1377 register U8 *b = (U8 *)s2;
1379 if (*a != *b && *a != PL_fold[*b])
1387 Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
1389 register U8 *a = (U8 *)s1;
1390 register U8 *b = (U8 *)s2;
1392 if (*a != *b && *a != PL_fold_locale[*b])
1399 /* copy a string to a safe spot */
1404 Copy a string to a safe spot. This does not use an SV.
1410 Perl_savepv(pTHX_ const char *sv)
1412 register char *newaddr;
1414 New(902,newaddr,strlen(sv)+1,char);
1415 (void)strcpy(newaddr,sv);
1419 /* same thing but with a known length */
1424 Copy a string to a safe spot. The C<len> indicates number of bytes to
1425 copy. This does not use an SV.
1431 Perl_savepvn(pTHX_ const char *sv, register I32 len)
1433 register char *newaddr;
1435 New(903,newaddr,len+1,char);
1436 Copy(sv,newaddr,len,char); /* might not be null terminated */
1437 newaddr[len] = '\0'; /* is now */
1441 /* the SV for Perl_form() and mess() is not kept in an arena */
1450 return sv_2mortal(newSVpvn("",0));
1455 /* Create as PVMG now, to avoid any upgrading later */
1456 New(905, sv, 1, SV);
1457 Newz(905, any, 1, XPVMG);
1458 SvFLAGS(sv) = SVt_PVMG;
1459 SvANY(sv) = (void*)any;
1460 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1465 #if defined(PERL_IMPLICIT_CONTEXT)
1467 Perl_form_nocontext(const char* pat, ...)
1472 va_start(args, pat);
1473 retval = vform(pat, &args);
1477 #endif /* PERL_IMPLICIT_CONTEXT */
1480 Perl_form(pTHX_ const char* pat, ...)
1484 va_start(args, pat);
1485 retval = vform(pat, &args);
1491 Perl_vform(pTHX_ const char *pat, va_list *args)
1493 SV *sv = mess_alloc();
1494 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1498 #if defined(PERL_IMPLICIT_CONTEXT)
1500 Perl_mess_nocontext(const char *pat, ...)
1505 va_start(args, pat);
1506 retval = vmess(pat, &args);
1510 #endif /* PERL_IMPLICIT_CONTEXT */
1513 Perl_mess(pTHX_ const char *pat, ...)
1517 va_start(args, pat);
1518 retval = vmess(pat, &args);
1524 Perl_vmess(pTHX_ const char *pat, va_list *args)
1526 SV *sv = mess_alloc();
1527 static char dgd[] = " during global destruction.\n";
1529 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1530 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1531 if (CopLINE(PL_curcop))
1532 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1533 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
1534 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1535 bool line_mode = (RsSIMPLE(PL_rs) &&
1536 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1537 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
1538 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1539 line_mode ? "line" : "chunk",
1540 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1544 Perl_sv_catpvf(aTHX_ sv, " thread %ld", thr->tid);
1546 sv_catpv(sv, PL_dirty ? dgd : ".\n");
1552 Perl_vdie(pTHX_ const char* pat, va_list *args)
1555 int was_in_eval = PL_in_eval;
1562 DEBUG_S(PerlIO_printf(Perl_debug_log,
1563 "%p: die: curstack = %p, mainstack = %p\n",
1564 thr, PL_curstack, PL_mainstack));
1567 msv = vmess(pat, args);
1568 if (PL_errors && SvCUR(PL_errors)) {
1569 sv_catsv(PL_errors, msv);
1570 message = SvPV(PL_errors, msglen);
1571 SvCUR_set(PL_errors, 0);
1574 message = SvPV(msv,msglen);
1581 DEBUG_S(PerlIO_printf(Perl_debug_log,
1582 "%p: die: message = %s\ndiehook = %p\n",
1583 thr, message, PL_diehook));
1585 /* sv_2cv might call Perl_croak() */
1586 SV *olddiehook = PL_diehook;
1588 SAVESPTR(PL_diehook);
1589 PL_diehook = Nullsv;
1590 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1592 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1599 msg = newSVpvn(message, msglen);
1607 PUSHSTACKi(PERLSI_DIEHOOK);
1611 call_sv((SV*)cv, G_DISCARD);
1617 PL_restartop = die_where(message, msglen);
1618 DEBUG_S(PerlIO_printf(Perl_debug_log,
1619 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1620 thr, PL_restartop, was_in_eval, PL_top_env));
1621 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1623 return PL_restartop;
1626 #if defined(PERL_IMPLICIT_CONTEXT)
1628 Perl_die_nocontext(const char* pat, ...)
1633 va_start(args, pat);
1634 o = vdie(pat, &args);
1638 #endif /* PERL_IMPLICIT_CONTEXT */
1641 Perl_die(pTHX_ const char* pat, ...)
1645 va_start(args, pat);
1646 o = vdie(pat, &args);
1652 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1662 msv = vmess(pat, args);
1663 if (PL_errors && SvCUR(PL_errors)) {
1664 sv_catsv(PL_errors, msv);
1665 message = SvPV(PL_errors, msglen);
1666 SvCUR_set(PL_errors, 0);
1669 message = SvPV(msv,msglen);
1676 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s",
1677 PTR2UV(thr), message));
1680 /* sv_2cv might call Perl_croak() */
1681 SV *olddiehook = PL_diehook;
1683 SAVESPTR(PL_diehook);
1684 PL_diehook = Nullsv;
1685 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1687 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1694 msg = newSVpvn(message, msglen);
1702 PUSHSTACKi(PERLSI_DIEHOOK);
1706 call_sv((SV*)cv, G_DISCARD);
1712 PL_restartop = die_where(message, msglen);
1717 /* SFIO can really mess with your errno */
1720 PerlIO *serr = Perl_error_log;
1722 PerlIO_write(serr, message, msglen);
1723 (void)PerlIO_flush(serr);
1731 #if defined(PERL_IMPLICIT_CONTEXT)
1733 Perl_croak_nocontext(const char *pat, ...)
1737 va_start(args, pat);
1742 #endif /* PERL_IMPLICIT_CONTEXT */
1747 This is the XSUB-writer's interface to Perl's C<die> function.
1748 Normally use this function the same way you use the C C<printf>
1749 function. See C<warn>.
1751 If you want to throw an exception object, assign the object to
1752 C<$@> and then pass C<Nullch> to croak():
1754 errsv = get_sv("@", TRUE);
1755 sv_setsv(errsv, exception_object);
1762 Perl_croak(pTHX_ const char *pat, ...)
1765 va_start(args, pat);
1772 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1781 msv = vmess(pat, args);
1782 message = SvPV(msv, msglen);
1785 /* sv_2cv might call Perl_warn() */
1786 SV *oldwarnhook = PL_warnhook;
1788 SAVESPTR(PL_warnhook);
1789 PL_warnhook = Nullsv;
1790 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1792 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1798 msg = newSVpvn(message, msglen);
1802 PUSHSTACKi(PERLSI_WARNHOOK);
1806 call_sv((SV*)cv, G_DISCARD);
1813 PerlIO *serr = Perl_error_log;
1815 PerlIO_write(serr, message, msglen);
1817 DEBUG_L(*message == '!'
1818 ? (xstat(message[1]=='!'
1819 ? (message[2]=='!' ? 2 : 1)
1824 (void)PerlIO_flush(serr);
1828 #if defined(PERL_IMPLICIT_CONTEXT)
1830 Perl_warn_nocontext(const char *pat, ...)
1834 va_start(args, pat);
1838 #endif /* PERL_IMPLICIT_CONTEXT */
1843 This is the XSUB-writer's interface to Perl's C<warn> function. Use this
1844 function the same way you use the C C<printf> function. See
1851 Perl_warn(pTHX_ const char *pat, ...)
1854 va_start(args, pat);
1859 #if defined(PERL_IMPLICIT_CONTEXT)
1861 Perl_warner_nocontext(U32 err, const char *pat, ...)
1865 va_start(args, pat);
1866 vwarner(err, pat, &args);
1869 #endif /* PERL_IMPLICIT_CONTEXT */
1872 Perl_warner(pTHX_ U32 err, const char* pat,...)
1875 va_start(args, pat);
1876 vwarner(err, pat, &args);
1881 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1890 msv = vmess(pat, args);
1891 message = SvPV(msv, msglen);
1895 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s", PTR2UV(thr), message));
1896 #endif /* USE_THREADS */
1898 /* sv_2cv might call Perl_croak() */
1899 SV *olddiehook = PL_diehook;
1901 SAVESPTR(PL_diehook);
1902 PL_diehook = Nullsv;
1903 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1905 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1911 msg = newSVpvn(message, msglen);
1915 PUSHSTACKi(PERLSI_DIEHOOK);
1919 call_sv((SV*)cv, G_DISCARD);
1925 PL_restartop = die_where(message, msglen);
1929 PerlIO *serr = Perl_error_log;
1930 PerlIO_write(serr, message, msglen);
1931 (void)PerlIO_flush(serr);
1938 /* sv_2cv might call Perl_warn() */
1939 SV *oldwarnhook = PL_warnhook;
1941 SAVESPTR(PL_warnhook);
1942 PL_warnhook = Nullsv;
1943 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1945 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1951 msg = newSVpvn(message, msglen);
1955 PUSHSTACKi(PERLSI_WARNHOOK);
1959 call_sv((SV*)cv, G_DISCARD);
1966 PerlIO *serr = Perl_error_log;
1967 PerlIO_write(serr, message, msglen);
1969 DEBUG_L(*message == '!'
1970 ? (xstat(message[1]=='!'
1971 ? (message[2]=='!' ? 2 : 1)
1976 (void)PerlIO_flush(serr);
1981 #ifdef USE_ENVIRON_ARRAY
1982 /* VMS' and EPOC's my_setenv() is in vms.c and epoc.c */
1985 Perl_my_setenv(pTHX_ char *nam, char *val)
1987 #ifndef PERL_USE_SAFE_PUTENV
1988 /* most putenv()s leak, so we manipulate environ directly */
1989 register I32 i=setenv_getix(nam); /* where does it go? */
1991 if (environ == PL_origenviron) { /* need we copy environment? */
1997 for (max = i; environ[max]; max++) ;
1998 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1999 for (j=0; j<max; j++) { /* copy environment */
2000 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
2001 strcpy(tmpenv[j], environ[j]);
2003 tmpenv[max] = Nullch;
2004 environ = tmpenv; /* tell exec where it is now */
2007 safesysfree(environ[i]);
2008 while (environ[i]) {
2009 environ[i] = environ[i+1];
2014 if (!environ[i]) { /* does not exist yet */
2015 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
2016 environ[i+1] = Nullch; /* make sure it's null terminated */
2019 safesysfree(environ[i]);
2020 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
2022 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
2024 #else /* PERL_USE_SAFE_PUTENV */
2025 # if defined(__CYGWIN__)
2026 setenv(nam, val, 1);
2030 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
2031 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
2032 (void)putenv(new_env);
2033 # endif /* __CYGWIN__ */
2034 #endif /* PERL_USE_SAFE_PUTENV */
2040 Perl_my_setenv(pTHX_ char *nam,char *val)
2043 #ifdef USE_WIN32_RTL_ENV
2045 register char *envstr;
2046 STRLEN namlen = strlen(nam);
2048 char *oldstr = environ[setenv_getix(nam)];
2050 /* putenv() has totally broken semantics in both the Borland
2051 * and Microsoft CRTLs. They either store the passed pointer in
2052 * the environment without making a copy, or make a copy and don't
2053 * free it. And on top of that, they dont free() old entries that
2054 * are being replaced/deleted. This means the caller must
2055 * free any old entries somehow, or we end up with a memory
2056 * leak every time my_setenv() is called. One might think
2057 * one could directly manipulate environ[], like the UNIX code
2058 * above, but direct changes to environ are not allowed when
2059 * calling putenv(), since the RTLs maintain an internal
2060 * *copy* of environ[]. Bad, bad, *bad* stink.
2071 vallen = strlen(val);
2072 envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
2073 (void)sprintf(envstr,"%s=%s",nam,val);
2074 (void)PerlEnv_putenv(envstr);
2076 safesysfree(oldstr);
2078 safesysfree(envstr); /* MSVCRT leaks without this */
2081 #else /* !USE_WIN32_RTL_ENV */
2083 register char *envstr;
2084 STRLEN len = strlen(nam) + 3;
2089 New(904, envstr, len, char);
2090 (void)sprintf(envstr,"%s=%s",nam,val);
2091 (void)PerlEnv_putenv(envstr);
2100 Perl_setenv_getix(pTHX_ char *nam)
2102 register I32 i, len = strlen(nam);
2104 for (i = 0; environ[i]; i++) {
2107 strnicmp(environ[i],nam,len) == 0
2109 strnEQ(environ[i],nam,len)
2111 && environ[i][len] == '=')
2112 break; /* strnEQ must come first to avoid */
2113 } /* potential SEGV's */
2117 #endif /* !VMS && !EPOC*/
2119 #ifdef UNLINK_ALL_VERSIONS
2121 Perl_unlnk(pTHX_ char *f) /* unlink all versions of a file */
2125 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
2130 /* this is a drop-in replacement for bcopy() */
2131 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
2133 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
2137 if (from - to >= 0) {
2145 *(--to) = *(--from);
2151 /* this is a drop-in replacement for memset() */
2154 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
2164 /* this is a drop-in replacement for bzero() */
2165 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2167 Perl_my_bzero(register char *loc, register I32 len)
2177 /* this is a drop-in replacement for memcmp() */
2178 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2180 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
2182 register U8 *a = (U8 *)s1;
2183 register U8 *b = (U8 *)s2;
2187 if (tmp = *a++ - *b++)
2192 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2196 #ifdef USE_CHAR_VSPRINTF
2201 vsprintf(char *dest, const char *pat, char *args)
2205 fakebuf._ptr = dest;
2206 fakebuf._cnt = 32767;
2210 fakebuf._flag = _IOWRT|_IOSTRG;
2211 _doprnt(pat, args, &fakebuf); /* what a kludge */
2212 (void)putc('\0', &fakebuf);
2213 #ifdef USE_CHAR_VSPRINTF
2216 return 0; /* perl doesn't use return value */
2220 #endif /* HAS_VPRINTF */
2223 #if BYTEORDER != 0x4321
2225 Perl_my_swap(pTHX_ short s)
2227 #if (BYTEORDER & 1) == 0
2230 result = ((s & 255) << 8) + ((s >> 8) & 255);
2238 Perl_my_htonl(pTHX_ long l)
2242 char c[sizeof(long)];
2245 #if BYTEORDER == 0x1234
2246 u.c[0] = (l >> 24) & 255;
2247 u.c[1] = (l >> 16) & 255;
2248 u.c[2] = (l >> 8) & 255;
2252 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2253 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2258 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2259 u.c[o & 0xf] = (l >> s) & 255;
2267 Perl_my_ntohl(pTHX_ long l)
2271 char c[sizeof(long)];
2274 #if BYTEORDER == 0x1234
2275 u.c[0] = (l >> 24) & 255;
2276 u.c[1] = (l >> 16) & 255;
2277 u.c[2] = (l >> 8) & 255;
2281 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2282 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2289 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2290 l |= (u.c[o & 0xf] & 255) << s;
2297 #endif /* BYTEORDER != 0x4321 */
2301 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2302 * If these functions are defined,
2303 * the BYTEORDER is neither 0x1234 nor 0x4321.
2304 * However, this is not assumed.
2308 #define HTOV(name,type) \
2310 name (register type n) \
2314 char c[sizeof(type)]; \
2318 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2319 u.c[i] = (n >> s) & 0xFF; \
2324 #define VTOH(name,type) \
2326 name (register type n) \
2330 char c[sizeof(type)]; \
2336 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2337 n += (u.c[i] & 0xFF) << s; \
2342 #if defined(HAS_HTOVS) && !defined(htovs)
2345 #if defined(HAS_HTOVL) && !defined(htovl)
2348 #if defined(HAS_VTOHS) && !defined(vtohs)
2351 #if defined(HAS_VTOHL) && !defined(vtohl)
2355 /* VMS' my_popen() is in VMS.c, same with OS/2. */
2356 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2358 Perl_my_popen(pTHX_ char *cmd, char *mode)
2361 register I32 This, that;
2364 I32 doexec = strNE(cmd,"-");
2368 PERL_FLUSHALL_FOR_CHILD;
2371 return my_syspopen(aTHX_ cmd,mode);
2374 This = (*mode == 'w');
2376 if (doexec && PL_tainting) {
2378 taint_proper("Insecure %s%s", "EXEC");
2380 if (PerlProc_pipe(p) < 0)
2382 if (doexec && PerlProc_pipe(pp) >= 0)
2384 while ((pid = (doexec?vfork():fork())) < 0) {
2385 if (errno != EAGAIN) {
2386 PerlLIO_close(p[This]);
2388 PerlLIO_close(pp[0]);
2389 PerlLIO_close(pp[1]);
2392 Perl_croak(aTHX_ "Can't fork");
2404 PerlLIO_close(p[THAT]);
2406 PerlLIO_close(pp[0]);
2407 #if defined(HAS_FCNTL) && defined(F_SETFD)
2408 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2411 if (p[THIS] != (*mode == 'r')) {
2412 PerlLIO_dup2(p[THIS], *mode == 'r');
2413 PerlLIO_close(p[THIS]);
2417 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2423 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2427 do_exec3(cmd,pp[1],did_pipes); /* may or may not use the shell */
2430 #endif /* defined OS2 */
2432 if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
2433 sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2435 hv_clear(PL_pidstatus); /* we have no children */
2440 do_execfree(); /* free any memory malloced by child on vfork */
2441 PerlLIO_close(p[that]);
2443 PerlLIO_close(pp[1]);
2444 if (p[that] < p[This]) {
2445 PerlLIO_dup2(p[This], p[that]);
2446 PerlLIO_close(p[This]);
2450 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2452 (void)SvUPGRADE(sv,SVt_IV);
2454 PL_forkprocess = pid;
2455 if (did_pipes && pid > 0) {
2459 while (n < sizeof(int)) {
2460 n1 = PerlLIO_read(pp[0],
2461 (void*)(((char*)&errkid)+n),
2467 PerlLIO_close(pp[0]);
2469 if (n) { /* Error */
2471 if (n != sizeof(int))
2472 Perl_croak(aTHX_ "panic: kid popen errno read");
2474 pid2 = wait4pid(pid, &status, 0);
2475 } while (pid2 == -1 && errno == EINTR);
2476 errno = errkid; /* Propagate errno from kid */
2481 PerlLIO_close(pp[0]);
2482 return PerlIO_fdopen(p[This], mode);
2485 #if defined(atarist) || defined(DJGPP)
2488 Perl_my_popen(pTHX_ char *cmd, char *mode)
2490 PERL_FLUSHALL_FOR_CHILD;
2491 /* Call system's popen() to get a FILE *, then import it.
2492 used 0 for 2nd parameter to PerlIO_importFILE;
2495 return PerlIO_importFILE(popen(cmd, mode), 0);
2499 #endif /* !DOSISH */
2503 Perl_dump_fds(pTHX_ char *s)
2506 struct stat tmpstatbuf;
2508 PerlIO_printf(Perl_debug_log,"%s", s);
2509 for (fd = 0; fd < 32; fd++) {
2510 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2511 PerlIO_printf(Perl_debug_log," %d",fd);
2513 PerlIO_printf(Perl_debug_log,"\n");
2515 #endif /* DUMP_FDS */
2519 dup2(int oldfd, int newfd)
2521 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2524 PerlLIO_close(newfd);
2525 return fcntl(oldfd, F_DUPFD, newfd);
2527 #define DUP2_MAX_FDS 256
2528 int fdtmp[DUP2_MAX_FDS];
2534 PerlLIO_close(newfd);
2535 /* good enough for low fd's... */
2536 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2537 if (fdx >= DUP2_MAX_FDS) {
2545 PerlLIO_close(fdtmp[--fdx]);
2552 #ifdef HAS_SIGACTION
2555 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2557 struct sigaction act, oact;
2559 act.sa_handler = handler;
2560 sigemptyset(&act.sa_mask);
2563 #if !defined(USE_PERLIO) || defined(PERL_OLD_SIGNALS)
2564 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2568 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2569 act.sa_flags |= SA_NOCLDWAIT;
2571 if (sigaction(signo, &act, &oact) == -1)
2574 return oact.sa_handler;
2578 Perl_rsignal_state(pTHX_ int signo)
2580 struct sigaction oact;
2582 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2585 return oact.sa_handler;
2589 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2591 struct sigaction act;
2593 act.sa_handler = handler;
2594 sigemptyset(&act.sa_mask);
2597 #if !defined(USE_PERLIO) || defined(PERL_OLD_SIGNALS)
2598 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2602 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2603 act.sa_flags |= SA_NOCLDWAIT;
2605 return sigaction(signo, &act, save);
2609 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2611 return sigaction(signo, save, (struct sigaction *)NULL);
2614 #else /* !HAS_SIGACTION */
2617 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2619 return PerlProc_signal(signo, handler);
2622 static int sig_trapped;
2632 Perl_rsignal_state(pTHX_ int signo)
2634 Sighandler_t oldsig;
2637 oldsig = PerlProc_signal(signo, sig_trap);
2638 PerlProc_signal(signo, oldsig);
2640 PerlProc_kill(PerlProc_getpid(), signo);
2645 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2647 *save = PerlProc_signal(signo, handler);
2648 return (*save == SIG_ERR) ? -1 : 0;
2652 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2654 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2657 #endif /* !HAS_SIGACTION */
2658 #endif /* !PERL_MICRO */
2660 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2661 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2663 Perl_my_pclose(pTHX_ PerlIO *ptr)
2665 Sigsave_t hstat, istat, qstat;
2673 int saved_vaxc_errno;
2676 int saved_win32_errno;
2680 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2682 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
2684 *svp = &PL_sv_undef;
2686 if (pid == -1) { /* Opened by popen. */
2687 return my_syspclose(ptr);
2690 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2691 saved_errno = errno;
2693 saved_vaxc_errno = vaxc$errno;
2696 saved_win32_errno = GetLastError();
2700 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2703 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2704 rsignal_save(SIGINT, SIG_IGN, &istat);
2705 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2708 pid2 = wait4pid(pid, &status, 0);
2709 } while (pid2 == -1 && errno == EINTR);
2711 rsignal_restore(SIGHUP, &hstat);
2712 rsignal_restore(SIGINT, &istat);
2713 rsignal_restore(SIGQUIT, &qstat);
2716 SETERRNO(saved_errno, saved_vaxc_errno);
2719 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2721 #endif /* !DOSISH */
2723 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
2725 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2729 char spid[TYPE_CHARS(int)];
2733 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2735 sprintf(spid, "%"IVdf, (IV)pid);
2736 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2737 if (svp && *svp != &PL_sv_undef) {
2738 *statusp = SvIVX(*svp);
2739 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2746 hv_iterinit(PL_pidstatus);
2747 if ((entry = hv_iternext(PL_pidstatus))) {
2748 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2749 sv = hv_iterval(PL_pidstatus,entry);
2750 *statusp = SvIVX(sv);
2751 sprintf(spid, "%"IVdf, (IV)pid);
2752 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2758 # ifdef HAS_WAITPID_RUNTIME
2759 if (!HAS_WAITPID_RUNTIME)
2762 return PerlProc_waitpid(pid,statusp,flags);
2764 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2765 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2767 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2772 Perl_croak(aTHX_ "Can't do waitpid with flags");
2774 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2775 pidgone(result,*statusp);
2783 #endif /* !DOSISH || OS2 || WIN32 */
2787 Perl_pidgone(pTHX_ Pid_t pid, int status)
2790 char spid[TYPE_CHARS(int)];
2792 sprintf(spid, "%"IVdf, (IV)pid);
2793 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2794 (void)SvUPGRADE(sv,SVt_IV);
2799 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2802 int /* Cannot prototype with I32
2804 my_syspclose(PerlIO *ptr)
2807 Perl_my_pclose(pTHX_ PerlIO *ptr)
2810 /* Needs work for PerlIO ! */
2811 FILE *f = PerlIO_findFILE(ptr);
2812 I32 result = pclose(f);
2814 result = (result << 8) & 0xff00;
2816 PerlIO_releaseFILE(ptr,f);
2822 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2825 register const char *frombase = from;
2828 register const char c = *from;
2833 while (count-- > 0) {
2834 for (todo = len; todo > 0; todo--) {
2842 Perl_cast_ulong(pTHX_ NV f)
2847 # define BIGDOUBLE 2147483648.0
2849 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2852 return (unsigned long)f;
2854 return (unsigned long)along;
2858 /* Unfortunately, on some systems the cast_uv() function doesn't
2859 work with the system-supplied definition of ULONG_MAX. The
2860 comparison (f >= ULONG_MAX) always comes out true. It must be a
2861 problem with the compiler constant folding.
2863 In any case, this workaround should be fine on any two's complement
2864 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2866 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2869 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2871 -- Kenneth Albanowski <kjahds@kjahds.com>
2875 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2879 Perl_cast_i32(pTHX_ NV f)
2882 return (I32) I32_MAX;
2884 return (I32) I32_MIN;
2889 Perl_cast_iv(pTHX_ NV f)
2894 if (f >= (NV)UV_MAX)
2905 Perl_cast_uv(pTHX_ NV f)
2908 return (UV) MY_UV_MAX;
2922 Perl_same_dirent(pTHX_ char *a, char *b)
2924 char *fa = strrchr(a,'/');
2925 char *fb = strrchr(b,'/');
2926 struct stat tmpstatbuf1;
2927 struct stat tmpstatbuf2;
2928 SV *tmpsv = sv_newmortal();
2941 sv_setpv(tmpsv, ".");
2943 sv_setpvn(tmpsv, a, fa - a);
2944 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2947 sv_setpv(tmpsv, ".");
2949 sv_setpvn(tmpsv, b, fb - b);
2950 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2952 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2953 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2955 #endif /* !HAS_RENAME */
2958 Perl_scan_bin(pTHX_ char *start, STRLEN len, STRLEN *retlen)
2960 register char *s = start;
2961 register NV rnv = 0.0;
2962 register UV ruv = 0;
2963 register bool seenb = FALSE;
2964 register bool overflowed = FALSE;
2966 for (; len-- && *s; s++) {
2967 if (!(*s == '0' || *s == '1')) {
2968 if (*s == '_' && len && *retlen
2969 && (s[1] == '0' || s[1] == '1'))
2974 else if (seenb == FALSE && *s == 'b' && ruv == 0) {
2975 /* Disallow 0bbb0b0bbb... */
2980 if (ckWARN(WARN_DIGIT))
2981 Perl_warner(aTHX_ WARN_DIGIT,
2982 "Illegal binary digit '%c' ignored", *s);
2987 register UV xuv = ruv << 1;
2989 if ((xuv >> 1) != ruv) {
2992 if (ckWARN_d(WARN_OVERFLOW))
2993 Perl_warner(aTHX_ WARN_OVERFLOW,
2994 "Integer overflow in binary number");
2997 ruv = xuv | (*s - '0');
3001 /* If an NV has not enough bits in its mantissa to
3002 * represent an UV this summing of small low-order numbers
3003 * is a waste of time (because the NV cannot preserve
3004 * the low-order bits anyway): we could just remember when
3005 * did we overflow and in the end just multiply rnv by the
3012 if ( ( overflowed && rnv > 4294967295.0)
3014 || (!overflowed && ruv > 0xffffffff )
3017 if (ckWARN(WARN_PORTABLE))
3018 Perl_warner(aTHX_ WARN_PORTABLE,
3019 "Binary number > 0b11111111111111111111111111111111 non-portable");
3021 *retlen = s - start;
3026 Perl_scan_oct(pTHX_ char *start, STRLEN len, STRLEN *retlen)
3028 register char *s = start;
3029 register NV rnv = 0.0;
3030 register UV ruv = 0;
3031 register bool overflowed = FALSE;
3033 for (; len-- && *s; s++) {
3034 if (!(*s >= '0' && *s <= '7')) {
3035 if (*s == '_' && len && *retlen
3036 && (s[1] >= '0' && s[1] <= '7'))
3042 /* Allow \octal to work the DWIM way (that is, stop scanning
3043 * as soon as non-octal characters are seen, complain only iff
3044 * someone seems to want to use the digits eight and nine). */
3045 if (*s == '8' || *s == '9') {
3046 if (ckWARN(WARN_DIGIT))
3047 Perl_warner(aTHX_ WARN_DIGIT,
3048 "Illegal octal digit '%c' ignored", *s);
3054 register UV xuv = ruv << 3;
3056 if ((xuv >> 3) != ruv) {
3059 if (ckWARN_d(WARN_OVERFLOW))
3060 Perl_warner(aTHX_ WARN_OVERFLOW,
3061 "Integer overflow in octal number");
3064 ruv = xuv | (*s - '0');
3068 /* If an NV has not enough bits in its mantissa to
3069 * represent an UV this summing of small low-order numbers
3070 * is a waste of time (because the NV cannot preserve
3071 * the low-order bits anyway): we could just remember when
3072 * did we overflow and in the end just multiply rnv by the
3073 * right amount of 8-tuples. */
3074 rnv += (NV)(*s - '0');
3079 if ( ( overflowed && rnv > 4294967295.0)
3081 || (!overflowed && ruv > 0xffffffff )
3084 if (ckWARN(WARN_PORTABLE))
3085 Perl_warner(aTHX_ WARN_PORTABLE,
3086 "Octal number > 037777777777 non-portable");
3088 *retlen = s - start;
3093 Perl_scan_hex(pTHX_ char *start, STRLEN len, STRLEN *retlen)
3095 register char *s = start;
3096 register NV rnv = 0.0;
3097 register UV ruv = 0;
3098 register bool overflowed = FALSE;
3106 else if (len > 3 && s[0] == '0' && s[1] == 'x') {
3112 for (; len-- && *s; s++) {
3113 hexdigit = strchr((char *) PL_hexdigit, *s);
3115 if (*s == '_' && len && *retlen && s[1]
3116 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
3122 if (ckWARN(WARN_DIGIT))
3123 Perl_warner(aTHX_ WARN_DIGIT,
3124 "Illegal hexadecimal digit '%c' ignored", *s);
3129 register UV xuv = ruv << 4;
3131 if ((xuv >> 4) != ruv) {
3134 if (ckWARN_d(WARN_OVERFLOW))
3135 Perl_warner(aTHX_ WARN_OVERFLOW,
3136 "Integer overflow in hexadecimal number");
3139 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
3143 /* If an NV has not enough bits in its mantissa to
3144 * represent an UV this summing of small low-order numbers
3145 * is a waste of time (because the NV cannot preserve
3146 * the low-order bits anyway): we could just remember when
3147 * did we overflow and in the end just multiply rnv by the
3148 * right amount of 16-tuples. */
3149 rnv += (NV)((hexdigit - PL_hexdigit) & 15);
3154 if ( ( overflowed && rnv > 4294967295.0)
3156 || (!overflowed && ruv > 0xffffffff )
3159 if (ckWARN(WARN_PORTABLE))
3160 Perl_warner(aTHX_ WARN_PORTABLE,
3161 "Hexadecimal number > 0xffffffff non-portable");
3163 *retlen = s - start;
3168 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3170 char *xfound = Nullch;
3171 char *xfailed = Nullch;
3172 char tmpbuf[MAXPATHLEN];
3176 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3177 # define SEARCH_EXTS ".bat", ".cmd", NULL
3178 # define MAX_EXT_LEN 4
3181 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3182 # define MAX_EXT_LEN 4
3185 # define SEARCH_EXTS ".pl", ".com", NULL
3186 # define MAX_EXT_LEN 4
3188 /* additional extensions to try in each dir if scriptname not found */
3190 char *exts[] = { SEARCH_EXTS };
3191 char **ext = search_ext ? search_ext : exts;
3192 int extidx = 0, i = 0;
3193 char *curext = Nullch;
3195 # define MAX_EXT_LEN 0
3199 * If dosearch is true and if scriptname does not contain path
3200 * delimiters, search the PATH for scriptname.
3202 * If SEARCH_EXTS is also defined, will look for each
3203 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3204 * while searching the PATH.
3206 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3207 * proceeds as follows:
3208 * If DOSISH or VMSISH:
3209 * + look for ./scriptname{,.foo,.bar}
3210 * + search the PATH for scriptname{,.foo,.bar}
3213 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3214 * this will not look in '.' if it's not in the PATH)
3219 # ifdef ALWAYS_DEFTYPES
3220 len = strlen(scriptname);
3221 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3222 int hasdir, idx = 0, deftypes = 1;
3225 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3228 int hasdir, idx = 0, deftypes = 1;
3231 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3233 /* The first time through, just add SEARCH_EXTS to whatever we
3234 * already have, so we can check for default file types. */
3236 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3242 if ((strlen(tmpbuf) + strlen(scriptname)
3243 + MAX_EXT_LEN) >= sizeof tmpbuf)
3244 continue; /* don't search dir with too-long name */
3245 strcat(tmpbuf, scriptname);
3249 if (strEQ(scriptname, "-"))
3251 if (dosearch) { /* Look in '.' first. */
3252 char *cur = scriptname;
3254 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3256 if (strEQ(ext[i++],curext)) {
3257 extidx = -1; /* already has an ext */
3262 DEBUG_p(PerlIO_printf(Perl_debug_log,
3263 "Looking for %s\n",cur));
3264 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3265 && !S_ISDIR(PL_statbuf.st_mode)) {
3273 if (cur == scriptname) {
3274 len = strlen(scriptname);
3275 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3277 cur = strcpy(tmpbuf, scriptname);
3279 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3280 && strcpy(tmpbuf+len, ext[extidx++]));
3285 #ifdef MACOS_TRADITIONAL
3286 if (dosearch && !strchr(scriptname, ':') &&
3287 (s = PerlEnv_getenv("Commands")))
3289 if (dosearch && !strchr(scriptname, '/')
3291 && !strchr(scriptname, '\\')
3293 && (s = PerlEnv_getenv("PATH")))
3298 PL_bufend = s + strlen(s);
3299 while (s < PL_bufend) {
3300 #ifdef MACOS_TRADITIONAL
3301 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3305 #if defined(atarist) || defined(DOSISH)
3310 && *s != ';'; len++, s++) {
3311 if (len < sizeof tmpbuf)
3314 if (len < sizeof tmpbuf)
3316 #else /* ! (atarist || DOSISH) */
3317 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3320 #endif /* ! (atarist || DOSISH) */
3321 #endif /* MACOS_TRADITIONAL */
3324 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3325 continue; /* don't search dir with too-long name */
3326 #ifdef MACOS_TRADITIONAL
3327 if (len && tmpbuf[len - 1] != ':')
3328 tmpbuf[len++] = ':';
3331 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3332 && tmpbuf[len - 1] != '/'
3333 && tmpbuf[len - 1] != '\\'
3336 tmpbuf[len++] = '/';
3337 if (len == 2 && tmpbuf[0] == '.')
3340 (void)strcpy(tmpbuf + len, scriptname);
3344 len = strlen(tmpbuf);
3345 if (extidx > 0) /* reset after previous loop */
3349 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3350 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3351 if (S_ISDIR(PL_statbuf.st_mode)) {
3355 } while ( retval < 0 /* not there */
3356 && extidx>=0 && ext[extidx] /* try an extension? */
3357 && strcpy(tmpbuf+len, ext[extidx++])
3362 if (S_ISREG(PL_statbuf.st_mode)
3363 && cando(S_IRUSR,TRUE,&PL_statbuf)
3364 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3365 && cando(S_IXUSR,TRUE,&PL_statbuf)
3369 xfound = tmpbuf; /* bingo! */
3373 xfailed = savepv(tmpbuf);
3376 if (!xfound && !seen_dot && !xfailed &&
3377 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
3378 || S_ISDIR(PL_statbuf.st_mode)))
3380 seen_dot = 1; /* Disable message. */
3382 if (flags & 1) { /* do or die? */
3383 Perl_croak(aTHX_ "Can't %s %s%s%s",
3384 (xfailed ? "execute" : "find"),
3385 (xfailed ? xfailed : scriptname),
3386 (xfailed ? "" : " on PATH"),
3387 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3389 scriptname = Nullch;
3393 scriptname = xfound;
3395 return (scriptname ? savepv(scriptname) : Nullch);
3398 #ifndef PERL_GET_CONTEXT_DEFINED
3401 Perl_get_context(void)
3403 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3404 # ifdef OLD_PTHREADS_API
3406 if (pthread_getspecific(PL_thr_key, &t))
3407 Perl_croak_nocontext("panic: pthread_getspecific");
3410 # ifdef I_MACH_CTHREADS
3411 return (void*)cthread_data(cthread_self());
3413 return (void*)pthread_getspecific(PL_thr_key);
3422 Perl_set_context(void *t)
3424 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3425 # ifdef I_MACH_CTHREADS
3426 cthread_set_data(cthread_self(), t);
3428 if (pthread_setspecific(PL_thr_key, t))
3429 Perl_croak_nocontext("panic: pthread_setspecific");
3434 #endif /* !PERL_GET_CONTEXT_DEFINED */
3439 /* Very simplistic scheduler for now */
3443 thr = thr->i.next_run;
3447 Perl_cond_init(pTHX_ perl_cond *cp)
3453 Perl_cond_signal(pTHX_ perl_cond *cp)
3456 perl_cond cond = *cp;
3461 /* Insert t in the runnable queue just ahead of us */
3462 t->i.next_run = thr->i.next_run;
3463 thr->i.next_run->i.prev_run = t;
3464 t->i.prev_run = thr;
3465 thr->i.next_run = t;
3466 thr->i.wait_queue = 0;
3467 /* Remove from the wait queue */
3473 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3476 perl_cond cond, cond_next;
3478 for (cond = *cp; cond; cond = cond_next) {
3480 /* Insert t in the runnable queue just ahead of us */
3481 t->i.next_run = thr->i.next_run;
3482 thr->i.next_run->i.prev_run = t;
3483 t->i.prev_run = thr;
3484 thr->i.next_run = t;
3485 thr->i.wait_queue = 0;
3486 /* Remove from the wait queue */
3487 cond_next = cond->next;
3494 Perl_cond_wait(pTHX_ perl_cond *cp)
3498 if (thr->i.next_run == thr)
3499 Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3501 New(666, cond, 1, struct perl_wait_queue);
3505 thr->i.wait_queue = cond;
3506 /* Remove ourselves from runnable queue */
3507 thr->i.next_run->i.prev_run = thr->i.prev_run;
3508 thr->i.prev_run->i.next_run = thr->i.next_run;
3510 #endif /* FAKE_THREADS */
3513 Perl_condpair_magic(pTHX_ SV *sv)
3517 SvUPGRADE(sv, SVt_PVMG);
3518 mg = mg_find(sv, 'm');
3522 New(53, cp, 1, condpair_t);
3523 MUTEX_INIT(&cp->mutex);
3524 COND_INIT(&cp->owner_cond);
3525 COND_INIT(&cp->cond);
3527 LOCK_CRED_MUTEX; /* XXX need separate mutex? */
3528 mg = mg_find(sv, 'm');
3530 /* someone else beat us to initialising it */
3531 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
3532 MUTEX_DESTROY(&cp->mutex);
3533 COND_DESTROY(&cp->owner_cond);
3534 COND_DESTROY(&cp->cond);
3538 sv_magic(sv, Nullsv, 'm', 0, 0);
3540 mg->mg_ptr = (char *)cp;
3541 mg->mg_len = sizeof(cp);
3542 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
3543 DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
3544 "%p: condpair_magic %p\n", thr, sv));)
3551 Perl_sv_lock(pTHX_ SV *osv)
3561 mg = condpair_magic(sv);
3562 MUTEX_LOCK(MgMUTEXP(mg));
3563 if (MgOWNER(mg) == thr)
3564 MUTEX_UNLOCK(MgMUTEXP(mg));
3567 COND_WAIT(MgOWNERCONDP(mg), MgMUTEXP(mg));
3569 DEBUG_S(PerlIO_printf(Perl_debug_log,
3570 "0x%"UVxf": Perl_lock lock 0x%"UVxf"\n",
3571 PTR2UV(thr), PTR2UV(sv));)
3572 MUTEX_UNLOCK(MgMUTEXP(mg));
3573 SAVEDESTRUCTOR_X(Perl_unlock_condpair, sv);
3575 UNLOCK_SV_LOCK_MUTEX;
3580 * Make a new perl thread structure using t as a prototype. Some of the
3581 * fields for the new thread are copied from the prototype thread, t,
3582 * so t should not be running in perl at the time this function is
3583 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3584 * thread calling new_struct_thread) clearly satisfies this constraint.
3586 struct perl_thread *
3587 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3589 #if !defined(PERL_IMPLICIT_CONTEXT)
3590 struct perl_thread *thr;
3596 sv = newSVpvn("", 0);
3597 SvGROW(sv, sizeof(struct perl_thread) + 1);
3598 SvCUR_set(sv, sizeof(struct perl_thread));
3599 thr = (Thread) SvPVX(sv);
3601 memset(thr, 0xab, sizeof(struct perl_thread));
3608 Zero(&PL_hv_fetch_ent_mh, 1, HE);
3609 PL_efloatbuf = (char*)NULL;
3612 Zero(thr, 1, struct perl_thread);
3618 PL_curcop = &PL_compiling;
3619 thr->interp = t->interp;
3620 thr->cvcache = newHV();
3621 thr->threadsv = newAV();
3622 thr->specific = newAV();
3623 thr->errsv = newSVpvn("", 0);
3624 thr->flags = THRf_R_JOINABLE;
3626 MUTEX_INIT(&thr->mutex);
3630 PL_in_eval = EVAL_NULL; /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR|EVAL_INREQUIRE) */
3633 PL_statname = NEWSV(66,0);
3634 PL_errors = newSVpvn("", 0);
3636 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3637 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3638 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3639 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3640 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3642 PL_reginterp_cnt = 0;
3643 PL_lastscream = Nullsv;
3646 PL_reg_start_tmp = 0;
3647 PL_reg_start_tmpl = 0;
3648 PL_reg_poscache = Nullch;
3650 /* parent thread's data needs to be locked while we make copy */
3651 MUTEX_LOCK(&t->mutex);
3653 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3654 PL_protect = t->Tprotect;
3657 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
3658 PL_defstash = t->Tdefstash; /* XXX maybe these should */
3659 PL_curstash = t->Tcurstash; /* always be set to main? */
3661 PL_tainted = t->Ttainted;
3662 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
3663 PL_nrs = newSVsv(t->Tnrs);
3664 PL_rs = t->Tnrs ? SvREFCNT_inc(PL_nrs) : Nullsv;
3665 PL_last_in_gv = Nullgv;
3666 PL_ofs_sv = t->Tofs_sv ? SvREFCNT_inc(PL_ofs_sv) : Nullsv;
3667 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3668 PL_chopset = t->Tchopset;
3669 PL_bodytarget = newSVsv(t->Tbodytarget);
3670 PL_toptarget = newSVsv(t->Ttoptarget);
3671 if (t->Tformtarget == t->Ttoptarget)
3672 PL_formtarget = PL_toptarget;
3674 PL_formtarget = PL_bodytarget;
3676 /* Initialise all per-thread SVs that the template thread used */
3677 svp = AvARRAY(t->threadsv);
3678 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3679 if (*svp && *svp != &PL_sv_undef) {
3680 SV *sv = newSVsv(*svp);
3681 av_store(thr->threadsv, i, sv);
3682 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3683 DEBUG_S(PerlIO_printf(Perl_debug_log,
3684 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3688 thr->threadsvp = AvARRAY(thr->threadsv);
3690 MUTEX_LOCK(&PL_threads_mutex);
3692 thr->tid = ++PL_threadnum;
3693 thr->next = t->next;
3696 thr->next->prev = thr;
3697 MUTEX_UNLOCK(&PL_threads_mutex);
3699 /* done copying parent's state */
3700 MUTEX_UNLOCK(&t->mutex);
3702 #ifdef HAVE_THREAD_INTERN
3703 Perl_init_thread_intern(thr);
3704 #endif /* HAVE_THREAD_INTERN */
3707 #endif /* USE_THREADS */
3709 #if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
3711 * This hack is to force load of "huge" support from libm.a
3712 * So it is in perl for (say) POSIX to use.
3713 * Needed for SunOS with Sun's 'acc' for example.
3718 # if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3725 #ifdef PERL_GLOBAL_STRUCT
3734 Perl_get_op_names(pTHX)
3740 Perl_get_op_descs(pTHX)
3746 Perl_get_no_modify(pTHX)
3748 return (char*)PL_no_modify;
3752 Perl_get_opargs(pTHX)
3758 Perl_get_ppaddr(pTHX)
3760 return (PPADDR_t*)PL_ppaddr;
3763 #ifndef HAS_GETENV_LEN
3765 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3767 char *env_trans = PerlEnv_getenv(env_elem);
3769 *len = strlen(env_trans);
3776 Perl_get_vtbl(pTHX_ int vtbl_id)
3778 MGVTBL* result = Null(MGVTBL*);
3782 result = &PL_vtbl_sv;
3785 result = &PL_vtbl_env;
3787 case want_vtbl_envelem:
3788 result = &PL_vtbl_envelem;
3791 result = &PL_vtbl_sig;
3793 case want_vtbl_sigelem:
3794 result = &PL_vtbl_sigelem;
3796 case want_vtbl_pack:
3797 result = &PL_vtbl_pack;
3799 case want_vtbl_packelem:
3800 result = &PL_vtbl_packelem;
3802 case want_vtbl_dbline:
3803 result = &PL_vtbl_dbline;
3806 result = &PL_vtbl_isa;
3808 case want_vtbl_isaelem:
3809 result = &PL_vtbl_isaelem;
3811 case want_vtbl_arylen:
3812 result = &PL_vtbl_arylen;
3814 case want_vtbl_glob:
3815 result = &PL_vtbl_glob;
3817 case want_vtbl_mglob:
3818 result = &PL_vtbl_mglob;
3820 case want_vtbl_nkeys:
3821 result = &PL_vtbl_nkeys;
3823 case want_vtbl_taint:
3824 result = &PL_vtbl_taint;
3826 case want_vtbl_substr:
3827 result = &PL_vtbl_substr;
3830 result = &PL_vtbl_vec;
3833 result = &PL_vtbl_pos;
3836 result = &PL_vtbl_bm;
3839 result = &PL_vtbl_fm;
3841 case want_vtbl_uvar:
3842 result = &PL_vtbl_uvar;
3845 case want_vtbl_mutex:
3846 result = &PL_vtbl_mutex;
3849 case want_vtbl_defelem:
3850 result = &PL_vtbl_defelem;
3852 case want_vtbl_regexp:
3853 result = &PL_vtbl_regexp;
3855 case want_vtbl_regdata:
3856 result = &PL_vtbl_regdata;
3858 case want_vtbl_regdatum:
3859 result = &PL_vtbl_regdatum;
3861 #ifdef USE_LOCALE_COLLATE
3862 case want_vtbl_collxfrm:
3863 result = &PL_vtbl_collxfrm;
3866 case want_vtbl_amagic:
3867 result = &PL_vtbl_amagic;
3869 case want_vtbl_amagicelem:
3870 result = &PL_vtbl_amagicelem;
3872 case want_vtbl_backref:
3873 result = &PL_vtbl_backref;
3880 Perl_my_fflush_all(pTHX)
3882 #if defined(FFLUSH_NULL)
3883 return PerlIO_flush(NULL);
3885 # if defined(HAS__FWALK)
3886 /* undocumented, unprototyped, but very useful BSDism */
3887 extern void _fwalk(int (*)(FILE *));
3892 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3893 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3894 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3896 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3897 open_max = sysconf(_SC_OPEN_MAX);
3900 open_max = FOPEN_MAX;
3903 open_max = OPEN_MAX;
3914 for (i = 0; i < open_max; i++)
3915 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3916 STDIO_STREAM_ARRAY[i]._file < open_max &&
3917 STDIO_STREAM_ARRAY[i]._flag)
3918 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3922 SETERRNO(EBADF,RMS$_IFI);
3929 Perl_my_atof(pTHX_ const char* s)
3932 #ifdef USE_LOCALE_NUMERIC
3933 if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3937 SET_NUMERIC_STANDARD();
3939 SET_NUMERIC_LOCAL();
3940 if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3952 Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op)
3957 op == OP_READLINE ? "readline" : /* "<HANDLE>" not nice */
3958 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3960 char *pars = OP_IS_FILETEST(op) ? "" : "()";
3961 char *type = OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET) ?
3962 "socket" : "filehandle";
3965 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3967 warn_type = WARN_CLOSED;
3971 warn_type = WARN_UNOPENED;
3974 if (gv && isGV(gv)) {
3975 SV *sv = sv_newmortal();
3976 gv_efullname4(sv, gv, Nullch, FALSE);
3980 if (op == OP_phoney_OUTPUT_ONLY || op == OP_phoney_INPUT_ONLY) {
3982 Perl_warner(aTHX_ WARN_IO, "Filehandle %s opened only for %sput",
3984 (op == OP_phoney_INPUT_ONLY ? "in" : "out"));
3986 Perl_warner(aTHX_ WARN_IO, "Filehandle opened only for %sput",
3987 (op == OP_phoney_INPUT_ONLY ? "in" : "out"));
3988 } else if (name && *name) {
3989 Perl_warner(aTHX_ warn_type,
3990 "%s%s on %s %s %s", func, pars, vile, type, name);
3991 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3992 Perl_warner(aTHX_ warn_type,
3993 "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3997 Perl_warner(aTHX_ warn_type,
3998 "%s%s on %s %s", func, pars, vile, type);
3999 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
4000 Perl_warner(aTHX_ warn_type,
4001 "\t(Are you trying to call %s%s on dirhandle?)\n",
4008 Perl_ebcdic_control(pTHX_ int ch)
4016 if ((ctlp = strchr(controllablechars, ch)) == 0) {
4017 Perl_die(aTHX_ "unrecognised control character '%c'\n", ch);
4020 if (ctlp == controllablechars)
4021 return('\177'); /* DEL */
4023 return((unsigned char)(ctlp - controllablechars - 1));
4024 } else { /* Want uncontrol */
4025 if (ch == '\177' || ch == -1)
4027 else if (ch == '\157')
4029 else if (ch == '\174')
4031 else if (ch == '^') /* '\137' in 1047, '\260' in 819 */
4033 else if (ch == '\155')
4035 else if (0 < ch && ch < (sizeof(controllablechars) - 1))
4036 return(controllablechars[ch+1]);
4038 Perl_die(aTHX_ "invalid control request: '\\%03o'\n", ch & 0xFF);