3 * Copyright (c) 1991-1999, 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
19 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
24 # define SIG_ERR ((Sighandler_t) -1)
27 /* XXX If this causes problems, set i_unistd=undef in the hint file. */
36 /* Put this after #includes because fork and vfork prototypes may
47 # include <sys/file.h>
51 # include <sys/wait.h>
62 long xcount[MAXXCOUNT];
63 long lastxcount[MAXXCOUNT];
64 long xycount[MAXXCOUNT][MAXYCOUNT];
65 long lastxycount[MAXXCOUNT][MAXYCOUNT];
69 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
70 # define FD_CLOEXEC 1 /* NeXT needs this */
73 /* paranoid version of system's malloc() */
75 /* NOTE: Do not call the next three routines directly. Use the macros
76 * in handy.h, so that we can easily redefine everything to do tracking of
77 * allocated hunks back to the original New to track down any memory leaks.
78 * XXX This advice seems to be widely ignored :-( --AD August 1996.
82 Perl_safesysmalloc(MEM_SIZE size)
88 PerlIO_printf(PerlIO_stderr(),
89 "Allocation too large: %lx\n", size) FLUSH;
92 #endif /* HAS_64K_LIMIT */
95 Perl_croak_nocontext("panic: malloc");
97 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
98 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
104 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
111 /* paranoid version of system's realloc() */
114 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
118 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
119 Malloc_t PerlMem_realloc();
120 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
124 PerlIO_printf(PerlIO_stderr(),
125 "Reallocation too large: %lx\n", size) FLUSH;
128 #endif /* HAS_64K_LIMIT */
135 return safesysmalloc(size);
138 Perl_croak_nocontext("panic: realloc");
140 ptr = PerlMem_realloc(where,size);
142 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,PL_an++));
143 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size));
150 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
157 /* safe version of system's free() */
160 Perl_safesysfree(Malloc_t where)
163 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,PL_an++));
170 /* safe version of system's calloc() */
173 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
179 if (size * count > 0xffff) {
180 PerlIO_printf(PerlIO_stderr(),
181 "Allocation too large: %lx\n", size * count) FLUSH;
184 #endif /* HAS_64K_LIMIT */
186 if ((long)size < 0 || (long)count < 0)
187 Perl_croak_nocontext("panic: calloc");
190 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
191 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
193 memset((void*)ptr, 0, size);
199 PerlIO_puts(PerlIO_stderr(),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(PerlIO_stderr(), " 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(PerlIO_stderr(),"%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(PerlIO_stderr(),"%3ld ",
323 ? xycount[i][j] - lastxycount[i][j]
325 lastxycount[i][j] = xycount[i][j];
327 PerlIO_printf(PerlIO_stderr(), " . ", xycount[i][j]);
330 PerlIO_printf(PerlIO_stderr(), "\n");
334 PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
335 for (j = 0; j < MAXYCOUNT; j++) {
337 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
339 PerlIO_printf(PerlIO_stderr(), " . ");
342 PerlIO_printf(PerlIO_stderr(), "\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 */
548 PL_numeric_radix = 0;
549 #endif /* USE_LOCALE_NUMERIC */
553 * Set up for a new numeric locale.
556 Perl_new_numeric(pTHX_ const char *newnum)
558 #ifdef USE_LOCALE_NUMERIC
561 if (PL_numeric_name) {
562 Safefree(PL_numeric_name);
563 PL_numeric_name = NULL;
564 PL_numeric_standard = TRUE;
565 PL_numeric_local = TRUE;
570 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
571 Safefree(PL_numeric_name);
572 PL_numeric_name = savepv(newnum);
573 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
574 PL_numeric_local = TRUE;
578 #endif /* USE_LOCALE_NUMERIC */
582 Perl_set_numeric_standard(pTHX)
584 #ifdef USE_LOCALE_NUMERIC
586 if (! PL_numeric_standard) {
587 setlocale(LC_NUMERIC, "C");
588 PL_numeric_standard = TRUE;
589 PL_numeric_local = FALSE;
592 #endif /* USE_LOCALE_NUMERIC */
596 Perl_set_numeric_local(pTHX)
598 #ifdef USE_LOCALE_NUMERIC
600 if (! PL_numeric_local) {
601 setlocale(LC_NUMERIC, PL_numeric_name);
602 PL_numeric_standard = FALSE;
603 PL_numeric_local = TRUE;
607 #endif /* USE_LOCALE_NUMERIC */
611 * Initialize locale awareness.
614 Perl_init_i18nl10n(pTHX_ int printwarn)
618 * 1 = set ok or not applicable,
619 * 0 = fallback to C locale,
620 * -1 = fallback to C locale failed
625 #ifdef USE_LOCALE_CTYPE
626 char *curctype = NULL;
627 #endif /* USE_LOCALE_CTYPE */
628 #ifdef USE_LOCALE_COLLATE
629 char *curcoll = NULL;
630 #endif /* USE_LOCALE_COLLATE */
631 #ifdef USE_LOCALE_NUMERIC
633 #endif /* USE_LOCALE_NUMERIC */
635 char *language = PerlEnv_getenv("LANGUAGE");
637 char *lc_all = PerlEnv_getenv("LC_ALL");
638 char *lang = PerlEnv_getenv("LANG");
639 bool setlocale_failure = FALSE;
641 #ifdef LOCALE_ENVIRON_REQUIRED
644 * Ultrix setlocale(..., "") fails if there are no environment
645 * variables from which to get a locale name.
652 if (setlocale(LC_ALL, ""))
655 setlocale_failure = TRUE;
657 if (!setlocale_failure) {
658 #ifdef USE_LOCALE_CTYPE
661 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
663 setlocale_failure = TRUE;
664 #endif /* USE_LOCALE_CTYPE */
665 #ifdef USE_LOCALE_COLLATE
667 setlocale(LC_COLLATE,
668 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
670 setlocale_failure = TRUE;
671 #endif /* USE_LOCALE_COLLATE */
672 #ifdef USE_LOCALE_NUMERIC
674 setlocale(LC_NUMERIC,
675 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
677 setlocale_failure = TRUE;
678 #endif /* USE_LOCALE_NUMERIC */
683 #endif /* !LOCALE_ENVIRON_REQUIRED */
686 if (! setlocale(LC_ALL, ""))
687 setlocale_failure = TRUE;
690 if (!setlocale_failure) {
691 #ifdef USE_LOCALE_CTYPE
692 if (! (curctype = setlocale(LC_CTYPE, "")))
693 setlocale_failure = TRUE;
694 #endif /* USE_LOCALE_CTYPE */
695 #ifdef USE_LOCALE_COLLATE
696 if (! (curcoll = setlocale(LC_COLLATE, "")))
697 setlocale_failure = TRUE;
698 #endif /* USE_LOCALE_COLLATE */
699 #ifdef USE_LOCALE_NUMERIC
700 if (! (curnum = setlocale(LC_NUMERIC, "")))
701 setlocale_failure = TRUE;
702 #endif /* USE_LOCALE_NUMERIC */
705 if (setlocale_failure) {
707 bool locwarn = (printwarn > 1 ||
709 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
714 PerlIO_printf(PerlIO_stderr(),
715 "perl: warning: Setting locale failed.\n");
719 PerlIO_printf(PerlIO_stderr(),
720 "perl: warning: Setting locale failed for the categories:\n\t");
721 #ifdef USE_LOCALE_CTYPE
723 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
724 #endif /* USE_LOCALE_CTYPE */
725 #ifdef USE_LOCALE_COLLATE
727 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
728 #endif /* USE_LOCALE_COLLATE */
729 #ifdef USE_LOCALE_NUMERIC
731 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
732 #endif /* USE_LOCALE_NUMERIC */
733 PerlIO_printf(PerlIO_stderr(), "\n");
737 PerlIO_printf(PerlIO_stderr(),
738 "perl: warning: Please check that your locale settings:\n");
741 PerlIO_printf(PerlIO_stderr(),
742 "\tLANGUAGE = %c%s%c,\n",
743 language ? '"' : '(',
744 language ? language : "unset",
745 language ? '"' : ')');
748 PerlIO_printf(PerlIO_stderr(),
749 "\tLC_ALL = %c%s%c,\n",
751 lc_all ? lc_all : "unset",
756 for (e = environ; *e; e++) {
757 if (strnEQ(*e, "LC_", 3)
758 && strnNE(*e, "LC_ALL=", 7)
759 && (p = strchr(*e, '=')))
760 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
761 (int)(p - *e), *e, p + 1);
765 PerlIO_printf(PerlIO_stderr(),
768 lang ? lang : "unset",
771 PerlIO_printf(PerlIO_stderr(),
772 " are supported and installed on your system.\n");
777 if (setlocale(LC_ALL, "C")) {
779 PerlIO_printf(PerlIO_stderr(),
780 "perl: warning: Falling back to the standard locale (\"C\").\n");
785 PerlIO_printf(PerlIO_stderr(),
786 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
793 #ifdef USE_LOCALE_CTYPE
794 || !(curctype || setlocale(LC_CTYPE, "C"))
795 #endif /* USE_LOCALE_CTYPE */
796 #ifdef USE_LOCALE_COLLATE
797 || !(curcoll || setlocale(LC_COLLATE, "C"))
798 #endif /* USE_LOCALE_COLLATE */
799 #ifdef USE_LOCALE_NUMERIC
800 || !(curnum || setlocale(LC_NUMERIC, "C"))
801 #endif /* USE_LOCALE_NUMERIC */
805 PerlIO_printf(PerlIO_stderr(),
806 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
810 #endif /* ! LC_ALL */
812 #ifdef USE_LOCALE_CTYPE
813 curctype = setlocale(LC_CTYPE, Nullch);
814 #endif /* USE_LOCALE_CTYPE */
815 #ifdef USE_LOCALE_COLLATE
816 curcoll = setlocale(LC_COLLATE, Nullch);
817 #endif /* USE_LOCALE_COLLATE */
818 #ifdef USE_LOCALE_NUMERIC
819 curnum = setlocale(LC_NUMERIC, Nullch);
820 #endif /* USE_LOCALE_NUMERIC */
823 #ifdef USE_LOCALE_CTYPE
825 #endif /* USE_LOCALE_CTYPE */
827 #ifdef USE_LOCALE_COLLATE
828 new_collate(curcoll);
829 #endif /* USE_LOCALE_COLLATE */
831 #ifdef USE_LOCALE_NUMERIC
833 #endif /* USE_LOCALE_NUMERIC */
835 #endif /* USE_LOCALE */
840 /* Backwards compatibility. */
842 Perl_init_i18nl14n(pTHX_ int printwarn)
844 return init_i18nl10n(printwarn);
847 #ifdef USE_LOCALE_COLLATE
850 * mem_collxfrm() is a bit like strxfrm() but with two important
851 * differences. First, it handles embedded NULs. Second, it allocates
852 * a bit more memory than needed for the transformed data itself.
853 * The real transformed data begins at offset sizeof(collationix).
854 * Please see sv_collxfrm() to see how this is used.
857 Perl_mem_collxfrm(pTHX_ const char *s, STRLEN len, STRLEN *xlen)
860 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
862 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
863 /* the +1 is for the terminating NUL. */
865 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
866 New(171, xbuf, xAlloc, char);
870 *(U32*)xbuf = PL_collation_ix;
871 xout = sizeof(PL_collation_ix);
872 for (xin = 0; xin < len; ) {
876 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
879 if (xused < xAlloc - xout)
881 xAlloc = (2 * xAlloc) + 1;
882 Renew(xbuf, xAlloc, char);
887 xin += strlen(s + xin) + 1;
890 /* Embedded NULs are understood but silently skipped
891 * because they make no sense in locale collation. */
895 *xlen = xout - sizeof(PL_collation_ix);
904 #endif /* USE_LOCALE_COLLATE */
906 #define FBM_TABLE_OFFSET 2 /* Number of bytes between EOS and table*/
908 /* As a space optimization, we do not compile tables for strings of length
909 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
910 special-cased in fbm_instr().
912 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
915 Perl_fbm_compile(pTHX_ SV *sv, U32 flags /* not used yet */)
924 if (flags & FBMcf_TAIL)
925 sv_catpvn(sv, "\n", 1); /* Taken into account in fbm_instr() */
926 s = (U8*)SvPV_force(sv, len);
927 (void)SvUPGRADE(sv, SVt_PVBM);
928 if (len == 0) /* TAIL might be on on a zero-length string. */
936 Sv_Grow(sv,len + 256 + FBM_TABLE_OFFSET);
937 table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
938 s = table - 1 - FBM_TABLE_OFFSET; /* Last char */
939 for (i = 0; i < 256; i++) {
942 table[-1] = flags; /* Not used yet */
946 if (table[*s] == mlen)
951 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
954 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
955 for (i = 0; i < len; i++) {
956 if (PL_freq[s[i]] < frequency) {
958 frequency = PL_freq[s[i]];
961 BmRARE(sv) = s[rarest];
962 BmPREVIOUS(sv) = rarest;
963 BmUSEFUL(sv) = 100; /* Initial value */
964 if (flags & FBMcf_TAIL)
966 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
969 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
970 /* If SvTAIL is actually due to \Z or \z, this gives false positives
974 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
976 register unsigned char *s;
978 register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
979 register STRLEN littlelen = l;
980 register I32 multiline = flags & FBMrf_MULTILINE;
982 if (bigend - big < littlelen) {
984 if ( SvTAIL(littlestr)
985 && (bigend - big == littlelen - 1)
987 || *big == *little && memEQ(big, little, littlelen - 1)))
992 if (littlelen <= 2) { /* Special-cased */
995 if (littlelen == 1) {
996 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
997 /* Know that bigend != big. */
998 if (bigend[-1] == '\n')
999 return (char *)(bigend - 1);
1000 return (char *) bigend;
1003 while (s < bigend) {
1008 if (SvTAIL(littlestr))
1009 return (char *) bigend;
1013 return (char*)big; /* Cannot be SvTAIL! */
1015 /* littlelen is 2 */
1016 if (SvTAIL(littlestr) && !multiline) {
1017 if (bigend[-1] == '\n' && bigend[-2] == *little)
1018 return (char*)bigend - 2;
1019 if (bigend[-1] == *little)
1020 return (char*)bigend - 1;
1024 /* This should be better than FBM if c1 == c2, and almost
1025 as good otherwise: maybe better since we do less indirection.
1026 And we save a lot of memory by caching no table. */
1027 register unsigned char c1 = little[0];
1028 register unsigned char c2 = little[1];
1033 while (s <= bigend) {
1036 return (char*)s - 1;
1043 goto check_1char_anchor;
1054 goto check_1char_anchor;
1057 while (s <= bigend) {
1060 return (char*)s - 1;
1062 goto check_1char_anchor;
1071 check_1char_anchor: /* One char and anchor! */
1072 if (SvTAIL(littlestr) && (*bigend == *little))
1073 return (char *)bigend; /* bigend is already decremented. */
1076 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
1077 s = bigend - littlelen;
1079 && bigend[-1] == '\n'
1081 /* Automatically of length > 2 */
1082 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1083 return (char*)s; /* how sweet it is */
1084 if (s[1] == *little && memEQ((char*)s + 2,(char*)little + 1,
1086 return (char*)s + 1; /* how sweet it is */
1089 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
1090 char *b = ninstr((char*)big,(char*)bigend,
1091 (char*)little, (char*)little + littlelen);
1093 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
1094 /* Chop \n from littlestr: */
1095 s = bigend - littlelen + 1;
1096 if (*s == *little && memEQ((char*)s + 1, (char*)little + 1,
1104 { /* Do actual FBM. */
1105 register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
1106 register unsigned char *oldlittle;
1108 if (littlelen > bigend - big)
1110 --littlelen; /* Last char found by table lookup */
1112 s = big + littlelen;
1113 little += littlelen; /* last char */
1120 if (tmp = table[*s]) {
1122 if (bigend - s > tmp) {
1128 if ((s += tmp) < bigend)
1133 else { /* less expensive than calling strncmp() */
1134 register unsigned char *olds = s;
1139 if (*--s == *--little)
1142 s = olds + 1; /* here we pay the price for failure */
1144 if (s < bigend) /* fake up continue to outer loop */
1152 if ( s == bigend && (table[-1] & FBMcf_TAIL)
1153 && memEQ(bigend - littlelen, oldlittle - littlelen, littlelen) )
1154 return (char*)bigend - littlelen;
1159 /* start_shift, end_shift are positive quantities which give offsets
1160 of ends of some substring of bigstr.
1161 If `last' we want the last occurence.
1162 old_posp is the way of communication between consequent calls if
1163 the next call needs to find the .
1164 The initial *old_posp should be -1.
1166 Note that we take into account SvTAIL, so one can get extra
1167 optimizations if _ALL flag is set.
1170 /* If SvTAIL is actually due to \Z or \z, this gives false positives
1171 if PL_multiline. In fact if !PL_multiline the autoritative answer
1172 is not supported yet. */
1175 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1178 register unsigned char *s, *x;
1179 register unsigned char *big;
1181 register I32 previous;
1183 register unsigned char *little;
1184 register I32 stop_pos;
1185 register unsigned char *littleend;
1189 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1190 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
1192 if ( BmRARE(littlestr) == '\n'
1193 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
1194 little = (unsigned char *)(SvPVX(littlestr));
1195 littleend = little + SvCUR(littlestr);
1202 little = (unsigned char *)(SvPVX(littlestr));
1203 littleend = little + SvCUR(littlestr);
1205 /* The value of pos we can start at: */
1206 previous = BmPREVIOUS(littlestr);
1207 big = (unsigned char *)(SvPVX(bigstr));
1208 /* The value of pos we can stop at: */
1209 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1210 if (previous + start_shift > stop_pos) {
1211 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
1215 while (pos < previous + start_shift) {
1216 if (!(pos += PL_screamnext[pos]))
1221 if (pos >= stop_pos) break;
1222 if (big[pos-previous] != first)
1224 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1230 if (s == littleend) {
1232 if (!last) return (char *)(big+pos-previous);
1235 } while ( pos += PL_screamnext[pos] );
1236 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1237 #else /* !POINTERRIGOR */
1240 if (pos >= stop_pos) break;
1241 if (big[pos] != first)
1243 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1249 if (s == littleend) {
1251 if (!last) return (char *)(big+pos);
1254 } while ( pos += PL_screamnext[pos] );
1256 return (char *)(big+(*old_posp));
1257 #endif /* POINTERRIGOR */
1259 if (!SvTAIL(littlestr) || (end_shift > 0))
1261 /* Ignore the trailing "\n". This code is not microoptimized */
1262 big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
1263 stop_pos = littleend - little; /* Actual littlestr len */
1268 && ((stop_pos == 1) || memEQ(big + 1, little, stop_pos - 1)))
1274 Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
1276 register U8 *a = (U8 *)s1;
1277 register U8 *b = (U8 *)s2;
1279 if (*a != *b && *a != PL_fold[*b])
1287 Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
1289 register U8 *a = (U8 *)s1;
1290 register U8 *b = (U8 *)s2;
1292 if (*a != *b && *a != PL_fold_locale[*b])
1299 /* copy a string to a safe spot */
1302 Perl_savepv(pTHX_ const char *sv)
1304 register char *newaddr;
1306 New(902,newaddr,strlen(sv)+1,char);
1307 (void)strcpy(newaddr,sv);
1311 /* same thing but with a known length */
1314 Perl_savepvn(pTHX_ const char *sv, register I32 len)
1316 register char *newaddr;
1318 New(903,newaddr,len+1,char);
1319 Copy(sv,newaddr,len,char); /* might not be null terminated */
1320 newaddr[len] = '\0'; /* is now */
1324 /* the SV for Perl_form() and mess() is not kept in an arena */
1334 return sv_2mortal(newSVpvn("",0));
1339 /* Create as PVMG now, to avoid any upgrading later */
1340 New(905, sv, 1, SV);
1341 Newz(905, any, 1, XPVMG);
1342 SvFLAGS(sv) = SVt_PVMG;
1343 SvANY(sv) = (void*)any;
1344 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1349 #if defined(PERL_IMPLICIT_CONTEXT)
1351 Perl_form_nocontext(const char* pat, ...)
1356 va_start(args, pat);
1357 retval = vform(pat, &args);
1361 #endif /* PERL_IMPLICIT_CONTEXT */
1364 Perl_form(pTHX_ const char* pat, ...)
1368 va_start(args, pat);
1369 retval = vform(pat, &args);
1375 Perl_vform(pTHX_ const char *pat, va_list *args)
1377 SV *sv = mess_alloc();
1378 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1382 #if defined(PERL_IMPLICIT_CONTEXT)
1384 Perl_mess_nocontext(const char *pat, ...)
1389 va_start(args, pat);
1390 retval = vmess(pat, &args);
1394 #endif /* PERL_IMPLICIT_CONTEXT */
1397 Perl_mess(pTHX_ const char *pat, ...)
1401 va_start(args, pat);
1402 retval = vmess(pat, &args);
1408 Perl_vmess(pTHX_ const char *pat, va_list *args)
1410 SV *sv = mess_alloc();
1411 static char dgd[] = " during global destruction.\n";
1413 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1414 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1417 if (PL_curcop->cop_line)
1418 Perl_sv_catpvf(aTHX_ sv, " at %_ line %" PERL_PRId64,
1419 GvSV(PL_curcop->cop_filegv), (IV)PL_curcop->cop_line);
1421 if (PL_curcop->cop_line)
1422 Perl_sv_catpvf(aTHX_ sv, " at %_ line %ld",
1423 GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1425 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1426 bool line_mode = (RsSIMPLE(PL_rs) &&
1427 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1429 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %" PERL_PRId64,
1430 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1431 line_mode ? "line" : "chunk",
1432 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1434 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %ld",
1435 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1436 line_mode ? "line" : "chunk",
1437 (long)IoLINES(GvIOp(PL_last_in_gv)));
1442 Perl_sv_catpvf(aTHX_ sv, " thread %ld", thr->tid);
1444 sv_catpv(sv, PL_dirty ? dgd : ".\n");
1450 Perl_vdie(pTHX_ const char* pat, va_list *args)
1454 int was_in_eval = PL_in_eval;
1461 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1462 "%p: die: curstack = %p, mainstack = %p\n",
1463 thr, PL_curstack, PL_mainstack));
1466 msv = vmess(pat, args);
1467 if (PL_errors && SvCUR(PL_errors)) {
1468 sv_catsv(PL_errors, msv);
1469 message = SvPV(PL_errors, msglen);
1470 SvCUR_set(PL_errors, 0);
1473 message = SvPV(msv,msglen);
1479 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1480 "%p: die: message = %s\ndiehook = %p\n",
1481 thr, message, PL_diehook));
1483 /* sv_2cv might call Perl_croak() */
1484 SV *olddiehook = PL_diehook;
1486 SAVESPTR(PL_diehook);
1487 PL_diehook = Nullsv;
1488 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1490 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1496 msg = newSVpvn(message, msglen);
1504 PUSHSTACKi(PERLSI_DIEHOOK);
1508 /* HACK - REVISIT - avoid CATCH_SET(TRUE) in call_sv()
1509 or we come back here due to a JMPENV_JMP() and do
1510 a POPSTACK - but die_where() will have already done
1511 one as it unwound - NI-S 1999/08/14 */
1512 call_sv((SV*)cv, G_DISCARD|G_NOCATCH);
1518 PL_restartop = die_where(message, msglen);
1519 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1520 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1521 thr, PL_restartop, was_in_eval, PL_top_env));
1522 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1524 return PL_restartop;
1527 #if defined(PERL_IMPLICIT_CONTEXT)
1529 Perl_die_nocontext(const char* pat, ...)
1534 va_start(args, pat);
1535 o = vdie(pat, &args);
1539 #endif /* PERL_IMPLICIT_CONTEXT */
1542 Perl_die(pTHX_ const char* pat, ...)
1546 va_start(args, pat);
1547 o = vdie(pat, &args);
1553 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1563 msv = vmess(pat, args);
1564 if (PL_errors && SvCUR(PL_errors)) {
1565 sv_catsv(PL_errors, msv);
1566 message = SvPV(PL_errors, msglen);
1567 SvCUR_set(PL_errors, 0);
1570 message = SvPV(msv,msglen);
1572 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s",
1573 (unsigned long) thr, message));
1576 /* sv_2cv might call Perl_croak() */
1577 SV *olddiehook = PL_diehook;
1579 SAVESPTR(PL_diehook);
1580 PL_diehook = Nullsv;
1581 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1583 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1588 msg = newSVpvn(message, msglen);
1592 PUSHSTACKi(PERLSI_DIEHOOK);
1596 call_sv((SV*)cv, G_DISCARD);
1602 PL_restartop = die_where(message, msglen);
1607 /* SFIO can really mess with your errno */
1610 PerlIO_write(PerlIO_stderr(), message, msglen);
1611 (void)PerlIO_flush(PerlIO_stderr());
1619 #if defined(PERL_IMPLICIT_CONTEXT)
1621 Perl_croak_nocontext(const char *pat, ...)
1625 va_start(args, pat);
1630 #endif /* PERL_IMPLICIT_CONTEXT */
1633 Perl_croak(pTHX_ const char *pat, ...)
1636 va_start(args, pat);
1643 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1652 msv = vmess(pat, args);
1653 message = SvPV(msv, msglen);
1656 /* sv_2cv might call Perl_warn() */
1658 SV *oldwarnhook = PL_warnhook;
1660 SAVESPTR(PL_warnhook);
1661 PL_warnhook = Nullsv;
1662 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1664 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1669 msg = newSVpvn(message, msglen);
1673 PUSHSTACKi(PERLSI_WARNHOOK);
1677 call_sv((SV*)cv, G_DISCARD);
1683 PerlIO_write(PerlIO_stderr(), message, msglen);
1685 DEBUG_L(*message == '!'
1686 ? (xstat(message[1]=='!'
1687 ? (message[2]=='!' ? 2 : 1)
1692 (void)PerlIO_flush(PerlIO_stderr());
1695 #if defined(PERL_IMPLICIT_CONTEXT)
1697 Perl_warn_nocontext(const char *pat, ...)
1701 va_start(args, pat);
1705 #endif /* PERL_IMPLICIT_CONTEXT */
1708 Perl_warn(pTHX_ const char *pat, ...)
1711 va_start(args, pat);
1716 #if defined(PERL_IMPLICIT_CONTEXT)
1718 Perl_warner_nocontext(U32 err, const char *pat, ...)
1722 va_start(args, pat);
1723 vwarner(err, pat, &args);
1726 #endif /* PERL_IMPLICIT_CONTEXT */
1729 Perl_warner(pTHX_ U32 err, const char* pat,...)
1732 va_start(args, pat);
1733 vwarner(err, pat, &args);
1738 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1748 msv = vmess(pat, args);
1749 message = SvPV(msv, msglen);
1753 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1754 #endif /* USE_THREADS */
1756 /* sv_2cv might call Perl_croak() */
1757 SV *olddiehook = PL_diehook;
1759 SAVESPTR(PL_diehook);
1760 PL_diehook = Nullsv;
1761 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1763 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1768 msg = newSVpvn(message, msglen);
1775 call_sv((SV*)cv, G_DISCARD);
1781 PL_restartop = die_where(message, msglen);
1784 PerlIO_write(PerlIO_stderr(), message, msglen);
1785 (void)PerlIO_flush(PerlIO_stderr());
1791 /* sv_2cv might call Perl_warn() */
1793 SV *oldwarnhook = PL_warnhook;
1795 SAVESPTR(PL_warnhook);
1796 PL_warnhook = Nullsv;
1797 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1799 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1804 msg = newSVpvn(message, msglen);
1811 call_sv((SV*)cv, G_DISCARD);
1817 PerlIO_write(PerlIO_stderr(), message, msglen);
1821 (void)PerlIO_flush(PerlIO_stderr());
1825 #ifndef VMS /* VMS' my_setenv() is in VMS.c */
1826 #if !defined(WIN32) && !defined(CYGWIN)
1828 Perl_my_setenv(pTHX_ char *nam, char *val)
1830 #ifndef PERL_USE_SAFE_PUTENV
1831 /* most putenv()s leak, so we manipulate environ directly */
1832 register I32 i=setenv_getix(nam); /* where does it go? */
1834 if (environ == PL_origenviron) { /* need we copy environment? */
1840 for (max = i; environ[max]; max++) ;
1841 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1842 for (j=0; j<max; j++) { /* copy environment */
1843 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1844 strcpy(tmpenv[j], environ[j]);
1846 tmpenv[max] = Nullch;
1847 environ = tmpenv; /* tell exec where it is now */
1850 safesysfree(environ[i]);
1851 while (environ[i]) {
1852 environ[i] = environ[i+1];
1857 if (!environ[i]) { /* does not exist yet */
1858 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1859 environ[i+1] = Nullch; /* make sure it's null terminated */
1862 safesysfree(environ[i]);
1863 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1865 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1867 #else /* PERL_USE_SAFE_PUTENV */
1870 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1871 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1872 (void)putenv(new_env);
1873 #endif /* PERL_USE_SAFE_PUTENV */
1876 #else /* WIN32 || CYGWIN */
1879 * Save environ of perl.exe, currently Cygwin links in separate environ's
1880 * for each exe/dll. Probably should be a member of impure_ptr.
1882 static char ***Perl_main_environ;
1885 Perl_my_setenv_init(char ***penviron)
1887 Perl_main_environ = penviron;
1891 my_setenv(char *nam, char *val)
1893 /* You can not directly manipulate the environ[] array because
1894 * the routines do some additional work that syncs the Cygwin
1895 * environment with the Windows environment.
1897 char *oldstr = environ[setenv_getix(nam)];
1906 setenv(nam, val, 1);
1907 environ = *Perl_main_environ; /* environ realloc can occur in setenv */
1908 if(oldstr && environ[setenv_getix(nam)] != oldstr)
1911 #else /* if WIN32 */
1914 Perl_my_setenv(pTHX_ char *nam,char *val)
1917 #ifdef USE_WIN32_RTL_ENV
1919 register char *envstr;
1920 STRLEN namlen = strlen(nam);
1922 char *oldstr = environ[setenv_getix(nam)];
1924 /* putenv() has totally broken semantics in both the Borland
1925 * and Microsoft CRTLs. They either store the passed pointer in
1926 * the environment without making a copy, or make a copy and don't
1927 * free it. And on top of that, they dont free() old entries that
1928 * are being replaced/deleted. This means the caller must
1929 * free any old entries somehow, or we end up with a memory
1930 * leak every time my_setenv() is called. One might think
1931 * one could directly manipulate environ[], like the UNIX code
1932 * above, but direct changes to environ are not allowed when
1933 * calling putenv(), since the RTLs maintain an internal
1934 * *copy* of environ[]. Bad, bad, *bad* stink.
1945 vallen = strlen(val);
1946 envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
1947 (void)sprintf(envstr,"%s=%s",nam,val);
1948 (void)PerlEnv_putenv(envstr);
1950 safesysfree(oldstr);
1952 safesysfree(envstr); /* MSVCRT leaks without this */
1955 #else /* !USE_WIN32_RTL_ENV */
1957 register char *envstr;
1958 STRLEN len = strlen(nam) + 3;
1963 New(904, envstr, len, char);
1964 (void)sprintf(envstr,"%s=%s",nam,val);
1965 (void)PerlEnv_putenv(envstr);
1975 Perl_setenv_getix(pTHX_ char *nam)
1977 register I32 i, len = strlen(nam);
1979 for (i = 0; environ[i]; i++) {
1982 strnicmp(environ[i],nam,len) == 0
1984 strnEQ(environ[i],nam,len)
1986 && environ[i][len] == '=')
1987 break; /* strnEQ must come first to avoid */
1988 } /* potential SEGV's */
1994 #ifdef UNLINK_ALL_VERSIONS
1996 Perl_unlnk(pTHX_ char *f) /* unlink all versions of a file */
2000 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
2005 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
2007 Perl_my_bcopy(pTHX_ register const char *from,register char *to,register I32 len)
2011 if (from - to >= 0) {
2019 *(--to) = *(--from);
2027 Perl_my_memset(pTHX_ register char *loc, register I32 ch, register I32 len)
2037 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2039 Perl_my_bzero(pTHX_ register char *loc, register I32 len)
2049 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2051 Perl_my_memcmp(pTHX_ const char *s1, const char *s2, register I32 len)
2053 register U8 *a = (U8 *)s1;
2054 register U8 *b = (U8 *)s2;
2058 if (tmp = *a++ - *b++)
2063 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2067 #ifdef USE_CHAR_VSPRINTF
2072 vsprintf(char *dest, const char *pat, char *args)
2076 fakebuf._ptr = dest;
2077 fakebuf._cnt = 32767;
2081 fakebuf._flag = _IOWRT|_IOSTRG;
2082 _doprnt(pat, args, &fakebuf); /* what a kludge */
2083 (void)putc('\0', &fakebuf);
2084 #ifdef USE_CHAR_VSPRINTF
2087 return 0; /* perl doesn't use return value */
2091 #endif /* HAS_VPRINTF */
2094 #if BYTEORDER != 0x4321
2096 Perl_my_swap(pTHX_ short s)
2098 #if (BYTEORDER & 1) == 0
2101 result = ((s & 255) << 8) + ((s >> 8) & 255);
2109 Perl_my_htonl(pTHX_ long l)
2113 char c[sizeof(long)];
2116 #if BYTEORDER == 0x1234
2117 u.c[0] = (l >> 24) & 255;
2118 u.c[1] = (l >> 16) & 255;
2119 u.c[2] = (l >> 8) & 255;
2123 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2124 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2129 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2130 u.c[o & 0xf] = (l >> s) & 255;
2138 Perl_my_ntohl(pTHX_ long l)
2142 char c[sizeof(long)];
2145 #if BYTEORDER == 0x1234
2146 u.c[0] = (l >> 24) & 255;
2147 u.c[1] = (l >> 16) & 255;
2148 u.c[2] = (l >> 8) & 255;
2152 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2153 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2160 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2161 l |= (u.c[o & 0xf] & 255) << s;
2168 #endif /* BYTEORDER != 0x4321 */
2172 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2173 * If these functions are defined,
2174 * the BYTEORDER is neither 0x1234 nor 0x4321.
2175 * However, this is not assumed.
2179 #define HTOV(name,type) \
2181 name (register type n) \
2185 char c[sizeof(type)]; \
2189 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2190 u.c[i] = (n >> s) & 0xFF; \
2195 #define VTOH(name,type) \
2197 name (register type n) \
2201 char c[sizeof(type)]; \
2207 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2208 n += (u.c[i] & 0xFF) << s; \
2213 #if defined(HAS_HTOVS) && !defined(htovs)
2216 #if defined(HAS_HTOVL) && !defined(htovl)
2219 #if defined(HAS_VTOHS) && !defined(vtohs)
2222 #if defined(HAS_VTOHL) && !defined(vtohl)
2226 /* VMS' my_popen() is in VMS.c, same with OS/2. */
2227 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC)
2229 Perl_my_popen(pTHX_ char *cmd, char *mode)
2232 register I32 This, that;
2235 I32 doexec = strNE(cmd,"-");
2239 PERL_FLUSHALL_FOR_CHILD;
2242 return my_syspopen(cmd,mode);
2245 This = (*mode == 'w');
2247 if (doexec && PL_tainting) {
2249 taint_proper("Insecure %s%s", "EXEC");
2251 if (PerlProc_pipe(p) < 0)
2253 if (doexec && PerlProc_pipe(pp) >= 0)
2255 while ((pid = (doexec?vfork():fork())) < 0) {
2256 if (errno != EAGAIN) {
2257 PerlLIO_close(p[This]);
2259 PerlLIO_close(pp[0]);
2260 PerlLIO_close(pp[1]);
2263 Perl_croak(aTHX_ "Can't fork");
2275 PerlLIO_close(p[THAT]);
2277 PerlLIO_close(pp[0]);
2278 #if defined(HAS_FCNTL) && defined(F_SETFD)
2279 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2282 if (p[THIS] != (*mode == 'r')) {
2283 PerlLIO_dup2(p[THIS], *mode == 'r');
2284 PerlLIO_close(p[THIS]);
2288 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2294 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2298 do_exec3(cmd,pp[1],did_pipes); /* may or may not use the shell */
2301 #endif /* defined OS2 */
2303 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
2304 sv_setiv(GvSV(tmpgv), getpid());
2306 hv_clear(PL_pidstatus); /* we have no children */
2311 do_execfree(); /* free any memory malloced by child on vfork */
2312 PerlLIO_close(p[that]);
2314 PerlLIO_close(pp[1]);
2315 if (p[that] < p[This]) {
2316 PerlLIO_dup2(p[This], p[that]);
2317 PerlLIO_close(p[This]);
2320 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2321 (void)SvUPGRADE(sv,SVt_IV);
2323 PL_forkprocess = pid;
2324 if (did_pipes && pid > 0) {
2328 while (n < sizeof(int)) {
2329 n1 = PerlLIO_read(pp[0],
2330 (void*)(((char*)&errkid)+n),
2336 PerlLIO_close(pp[0]);
2338 if (n) { /* Error */
2339 if (n != sizeof(int))
2340 Perl_croak(aTHX_ "panic: kid popen errno read");
2341 errno = errkid; /* Propagate errno from kid */
2346 PerlLIO_close(pp[0]);
2347 return PerlIO_fdopen(p[This], mode);
2350 #if defined(atarist) || defined(DJGPP)
2353 Perl_my_popen(pTHX_ char *cmd, char *mode)
2355 /* Needs work for PerlIO ! */
2356 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2357 PERL_FLUSHALL_FOR_CHILD;
2358 return popen(PerlIO_exportFILE(cmd, 0), mode);
2362 #endif /* !DOSISH */
2366 Perl_dump_fds(pTHX_ char *s)
2369 struct stat tmpstatbuf;
2371 PerlIO_printf(PerlIO_stderr(),"%s", s);
2372 for (fd = 0; fd < 32; fd++) {
2373 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2374 PerlIO_printf(PerlIO_stderr()," %d",fd);
2376 PerlIO_printf(PerlIO_stderr(),"\n");
2378 #endif /* DUMP_FDS */
2382 dup2(int oldfd, int newfd)
2384 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2387 PerlLIO_close(newfd);
2388 return fcntl(oldfd, F_DUPFD, newfd);
2390 #define DUP2_MAX_FDS 256
2391 int fdtmp[DUP2_MAX_FDS];
2397 PerlLIO_close(newfd);
2398 /* good enough for low fd's... */
2399 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2400 if (fdx >= DUP2_MAX_FDS) {
2408 PerlLIO_close(fdtmp[--fdx]);
2415 #ifdef HAS_SIGACTION
2418 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2420 struct sigaction act, oact;
2422 act.sa_handler = handler;
2423 sigemptyset(&act.sa_mask);
2426 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2429 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2430 act.sa_flags |= SA_NOCLDWAIT;
2432 if (sigaction(signo, &act, &oact) == -1)
2435 return oact.sa_handler;
2439 Perl_rsignal_state(pTHX_ int signo)
2441 struct sigaction oact;
2443 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2446 return oact.sa_handler;
2450 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2452 struct sigaction act;
2454 act.sa_handler = handler;
2455 sigemptyset(&act.sa_mask);
2458 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2461 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2462 act.sa_flags |= SA_NOCLDWAIT;
2464 return sigaction(signo, &act, save);
2468 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2470 return sigaction(signo, save, (struct sigaction *)NULL);
2473 #else /* !HAS_SIGACTION */
2476 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2478 return PerlProc_signal(signo, handler);
2481 static int sig_trapped;
2491 Perl_rsignal_state(pTHX_ int signo)
2493 Sighandler_t oldsig;
2496 oldsig = PerlProc_signal(signo, sig_trap);
2497 PerlProc_signal(signo, oldsig);
2499 PerlProc_kill(getpid(), signo);
2504 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2506 *save = PerlProc_signal(signo, handler);
2507 return (*save == SIG_ERR) ? -1 : 0;
2511 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2513 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2516 #endif /* !HAS_SIGACTION */
2518 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2519 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC)
2521 Perl_my_pclose(pTHX_ PerlIO *ptr)
2523 Sigsave_t hstat, istat, qstat;
2531 int saved_vaxc_errno;
2534 int saved_win32_errno;
2537 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2540 *svp = &PL_sv_undef;
2542 if (pid == -1) { /* Opened by popen. */
2543 return my_syspclose(ptr);
2546 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2547 saved_errno = errno;
2549 saved_vaxc_errno = vaxc$errno;
2552 saved_win32_errno = GetLastError();
2556 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2558 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2559 rsignal_save(SIGINT, SIG_IGN, &istat);
2560 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2562 pid2 = wait4pid(pid, &status, 0);
2563 } while (pid2 == -1 && errno == EINTR);
2564 rsignal_restore(SIGHUP, &hstat);
2565 rsignal_restore(SIGINT, &istat);
2566 rsignal_restore(SIGQUIT, &qstat);
2568 SETERRNO(saved_errno, saved_vaxc_errno);
2571 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2573 #endif /* !DOSISH */
2575 #if !defined(DOSISH) || defined(OS2) || defined(WIN32)
2577 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2581 char spid[TYPE_CHARS(int)];
2586 sprintf(spid, "%d", pid);
2587 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2588 if (svp && *svp != &PL_sv_undef) {
2589 *statusp = SvIVX(*svp);
2590 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2597 hv_iterinit(PL_pidstatus);
2598 if (entry = hv_iternext(PL_pidstatus)) {
2599 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2600 sv = hv_iterval(PL_pidstatus,entry);
2601 *statusp = SvIVX(sv);
2602 sprintf(spid, "%d", pid);
2603 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2608 # ifdef HAS_WAITPID_RUNTIME
2609 if (!HAS_WAITPID_RUNTIME)
2612 return PerlProc_waitpid(pid,statusp,flags);
2614 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2615 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2617 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2622 Perl_croak(aTHX_ "Can't do waitpid with flags");
2624 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2625 pidgone(result,*statusp);
2633 #endif /* !DOSISH || OS2 || WIN32 */
2637 Perl_pidgone(pTHX_ Pid_t pid, int status)
2640 char spid[TYPE_CHARS(int)];
2642 sprintf(spid, "%d", pid);
2643 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2644 (void)SvUPGRADE(sv,SVt_IV);
2649 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2652 int /* Cannot prototype with I32
2654 my_syspclose(PerlIO *ptr)
2657 Perl_my_pclose(pTHX_ PerlIO *ptr)
2660 /* Needs work for PerlIO ! */
2661 FILE *f = PerlIO_findFILE(ptr);
2662 I32 result = pclose(f);
2664 result = (result << 8) & 0xff00;
2666 PerlIO_releaseFILE(ptr,f);
2672 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2675 register const char *frombase = from;
2678 register const char c = *from;
2683 while (count-- > 0) {
2684 for (todo = len; todo > 0; todo--) {
2692 Perl_cast_ulong(pTHX_ NV f)
2697 # define BIGDOUBLE 2147483648.0
2699 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2702 return (unsigned long)f;
2704 return (unsigned long)along;
2708 /* Unfortunately, on some systems the cast_uv() function doesn't
2709 work with the system-supplied definition of ULONG_MAX. The
2710 comparison (f >= ULONG_MAX) always comes out true. It must be a
2711 problem with the compiler constant folding.
2713 In any case, this workaround should be fine on any two's complement
2714 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2716 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2719 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2721 -- Kenneth Albanowski <kjahds@kjahds.com>
2725 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2729 Perl_cast_i32(pTHX_ NV f)
2732 return (I32) I32_MAX;
2734 return (I32) I32_MIN;
2739 Perl_cast_iv(pTHX_ NV f)
2744 if (f >= (NV)UV_MAX)
2755 Perl_cast_uv(pTHX_ NV f)
2758 return (UV) MY_UV_MAX;
2772 Perl_same_dirent(pTHX_ char *a, char *b)
2774 char *fa = strrchr(a,'/');
2775 char *fb = strrchr(b,'/');
2776 struct stat tmpstatbuf1;
2777 struct stat tmpstatbuf2;
2778 SV *tmpsv = sv_newmortal();
2791 sv_setpv(tmpsv, ".");
2793 sv_setpvn(tmpsv, a, fa - a);
2794 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2797 sv_setpv(tmpsv, ".");
2799 sv_setpvn(tmpsv, b, fb - b);
2800 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2802 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2803 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2805 #endif /* !HAS_RENAME */
2808 Perl_scan_bin(pTHX_ char *start, I32 len, I32 *retlen)
2810 register char *s = start;
2811 register NV rnv = 0.0;
2812 register UV ruv = 0;
2813 register bool seenb = FALSE;
2814 register bool overflowed = FALSE;
2816 for (; len-- && *s; s++) {
2817 if (!(*s == '0' || *s == '1')) {
2819 continue; /* Note: does not check for __ and the like. */
2820 if (seenb == FALSE && *s == 'b' && ruv == 0) {
2821 /* Disallow 0bbb0b0bbb... */
2827 if (ckWARN(WARN_DIGIT))
2828 Perl_warner(aTHX_ WARN_DIGIT,
2829 "Illegal binary digit '%c' ignored", *s);
2834 register UV xuv = ruv << 1;
2836 if ((xuv >> 1) != ruv) {
2840 if (ckWARN_d(WARN_OVERFLOW))
2841 Perl_warner(aTHX_ WARN_OVERFLOW,
2842 "Integer overflow in binary number");
2844 ruv = xuv | (*s - '0');
2848 /* If an NV has not enough bits in its mantissa to
2849 * represent an UV this summing of small low-order numbers
2850 * is a waste of time (because the NV cannot preserve
2851 * the low-order bits anyway): we could just remember when
2852 * did we overflow and in the end just multiply rnv by the
2859 if ( ( overflowed && rnv > 4294967295.0)
2861 || (!overflowed && ruv > 0xffffffff )
2865 if (ckWARN(WARN_PORTABLE))
2866 Perl_warner(aTHX_ WARN_PORTABLE,
2867 "Binary number > 0b11111111111111111111111111111111 non-portable");
2869 *retlen = s - start;
2874 Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen)
2876 register char *s = start;
2877 register NV rnv = 0.0;
2878 register UV ruv = 0;
2879 register bool overflowed = FALSE;
2881 for (; len-- && *s; s++) {
2882 if (!(*s >= '0' && *s <= '7')) {
2884 continue; /* Note: does not check for __ and the like. */
2886 /* Allow \octal to work the DWIM way (that is, stop scanning
2887 * as soon as non-octal characters are seen, complain only iff
2888 * someone seems to want to use the digits eight and nine). */
2889 if (*s == '8' || *s == '9') {
2891 if (ckWARN(WARN_DIGIT))
2892 Perl_warner(aTHX_ WARN_DIGIT,
2893 "Illegal octal digit '%c' ignored", *s);
2899 register UV xuv = ruv << 3;
2901 if ((xuv >> 3) != ruv) {
2905 if (ckWARN_d(WARN_OVERFLOW))
2906 Perl_warner(aTHX_ WARN_OVERFLOW,
2907 "Integer overflow in octal number");
2909 ruv = xuv | (*s - '0');
2913 /* If an NV has not enough bits in its mantissa to
2914 * represent an UV this summing of small low-order numbers
2915 * is a waste of time (because the NV cannot preserve
2916 * the low-order bits anyway): we could just remember when
2917 * did we overflow and in the end just multiply rnv by the
2918 * right amount of 8-tuples. */
2919 rnv += (NV)(*s - '0');
2924 if ( ( overflowed && rnv > 4294967295.0)
2926 || (!overflowed && ruv > 0xffffffff )
2930 if (ckWARN(WARN_PORTABLE))
2931 Perl_warner(aTHX_ WARN_PORTABLE,
2932 "Octal number > 037777777777 non-portable");
2934 *retlen = s - start;
2939 Perl_scan_hex(pTHX_ char *start, I32 len, I32 *retlen)
2941 register char *s = start;
2942 register NV rnv = 0.0;
2943 register UV ruv = 0;
2944 register bool seenx = FALSE;
2945 register bool overflowed = FALSE;
2948 for (; len-- && *s; s++) {
2949 hexdigit = strchr((char *) PL_hexdigit, *s);
2952 continue; /* Note: does not check for __ and the like. */
2953 if (seenx == FALSE && *s == 'x' && ruv == 0) {
2954 /* Disallow 0xxx0x0xxx... */
2960 if (ckWARN(WARN_DIGIT))
2961 Perl_warner(aTHX_ WARN_DIGIT,
2962 "Illegal hexadecimal digit '%c' ignored", *s);
2967 register UV xuv = ruv << 4;
2969 if ((xuv >> 4) != ruv) {
2973 if (ckWARN_d(WARN_OVERFLOW))
2974 Perl_warner(aTHX_ WARN_OVERFLOW,
2975 "Integer overflow in hexadecimal number");
2977 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
2981 /* If an NV has not enough bits in its mantissa to
2982 * represent an UV this summing of small low-order numbers
2983 * is a waste of time (because the NV cannot preserve
2984 * the low-order bits anyway): we could just remember when
2985 * did we overflow and in the end just multiply rnv by the
2986 * right amount of 16-tuples. */
2987 rnv += (NV)((hexdigit - PL_hexdigit) & 15);
2992 if ( ( overflowed && rnv > 4294967295.0)
2994 || (!overflowed && ruv > 0xffffffff )
2998 if (ckWARN(WARN_PORTABLE))
2999 Perl_warner(aTHX_ WARN_PORTABLE,
3000 "Hexadecimal number > 0xffffffff non-portable");
3002 *retlen = s - start;
3007 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3010 char *xfound = Nullch;
3011 char *xfailed = Nullch;
3012 char tmpbuf[MAXPATHLEN];
3016 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3017 # define SEARCH_EXTS ".bat", ".cmd", NULL
3018 # define MAX_EXT_LEN 4
3021 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3022 # define MAX_EXT_LEN 4
3025 # define SEARCH_EXTS ".pl", ".com", NULL
3026 # define MAX_EXT_LEN 4
3028 /* additional extensions to try in each dir if scriptname not found */
3030 char *exts[] = { SEARCH_EXTS };
3031 char **ext = search_ext ? search_ext : exts;
3032 int extidx = 0, i = 0;
3033 char *curext = Nullch;
3035 # define MAX_EXT_LEN 0
3039 * If dosearch is true and if scriptname does not contain path
3040 * delimiters, search the PATH for scriptname.
3042 * If SEARCH_EXTS is also defined, will look for each
3043 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3044 * while searching the PATH.
3046 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3047 * proceeds as follows:
3048 * If DOSISH or VMSISH:
3049 * + look for ./scriptname{,.foo,.bar}
3050 * + search the PATH for scriptname{,.foo,.bar}
3053 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3054 * this will not look in '.' if it's not in the PATH)
3059 # ifdef ALWAYS_DEFTYPES
3060 len = strlen(scriptname);
3061 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3062 int hasdir, idx = 0, deftypes = 1;
3065 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3068 int hasdir, idx = 0, deftypes = 1;
3071 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3073 /* The first time through, just add SEARCH_EXTS to whatever we
3074 * already have, so we can check for default file types. */
3076 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3082 if ((strlen(tmpbuf) + strlen(scriptname)
3083 + MAX_EXT_LEN) >= sizeof tmpbuf)
3084 continue; /* don't search dir with too-long name */
3085 strcat(tmpbuf, scriptname);
3089 if (strEQ(scriptname, "-"))
3091 if (dosearch) { /* Look in '.' first. */
3092 char *cur = scriptname;
3094 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3096 if (strEQ(ext[i++],curext)) {
3097 extidx = -1; /* already has an ext */
3102 DEBUG_p(PerlIO_printf(Perl_debug_log,
3103 "Looking for %s\n",cur));
3104 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3105 && !S_ISDIR(PL_statbuf.st_mode)) {
3113 if (cur == scriptname) {
3114 len = strlen(scriptname);
3115 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3117 cur = strcpy(tmpbuf, scriptname);
3119 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3120 && strcpy(tmpbuf+len, ext[extidx++]));
3125 if (dosearch && !strchr(scriptname, '/')
3127 && !strchr(scriptname, '\\')
3129 && (s = PerlEnv_getenv("PATH"))) {
3132 PL_bufend = s + strlen(s);
3133 while (s < PL_bufend) {
3134 #if defined(atarist) || defined(DOSISH)
3139 && *s != ';'; len++, s++) {
3140 if (len < sizeof tmpbuf)
3143 if (len < sizeof tmpbuf)
3145 #else /* ! (atarist || DOSISH) */
3146 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3149 #endif /* ! (atarist || DOSISH) */
3152 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3153 continue; /* don't search dir with too-long name */
3155 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3156 && tmpbuf[len - 1] != '/'
3157 && tmpbuf[len - 1] != '\\'
3160 tmpbuf[len++] = '/';
3161 if (len == 2 && tmpbuf[0] == '.')
3163 (void)strcpy(tmpbuf + len, scriptname);
3167 len = strlen(tmpbuf);
3168 if (extidx > 0) /* reset after previous loop */
3172 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3173 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3174 if (S_ISDIR(PL_statbuf.st_mode)) {
3178 } while ( retval < 0 /* not there */
3179 && extidx>=0 && ext[extidx] /* try an extension? */
3180 && strcpy(tmpbuf+len, ext[extidx++])
3185 if (S_ISREG(PL_statbuf.st_mode)
3186 && cando(S_IRUSR,TRUE,&PL_statbuf)
3188 && cando(S_IXUSR,TRUE,&PL_statbuf)
3192 xfound = tmpbuf; /* bingo! */
3196 xfailed = savepv(tmpbuf);
3199 if (!xfound && !seen_dot && !xfailed &&
3200 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
3201 || S_ISDIR(PL_statbuf.st_mode)))
3203 seen_dot = 1; /* Disable message. */
3205 if (flags & 1) { /* do or die? */
3206 Perl_croak(aTHX_ "Can't %s %s%s%s",
3207 (xfailed ? "execute" : "find"),
3208 (xfailed ? xfailed : scriptname),
3209 (xfailed ? "" : " on PATH"),
3210 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3212 scriptname = Nullch;
3216 scriptname = xfound;
3218 return (scriptname ? savepv(scriptname) : Nullch);
3224 /* Very simplistic scheduler for now */
3228 thr = thr->i.next_run;
3232 Perl_cond_init(pTHX_ perl_cond *cp)
3238 Perl_cond_signal(pTHX_ perl_cond *cp)
3241 perl_cond cond = *cp;
3246 /* Insert t in the runnable queue just ahead of us */
3247 t->i.next_run = thr->i.next_run;
3248 thr->i.next_run->i.prev_run = t;
3249 t->i.prev_run = thr;
3250 thr->i.next_run = t;
3251 thr->i.wait_queue = 0;
3252 /* Remove from the wait queue */
3258 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3261 perl_cond cond, cond_next;
3263 for (cond = *cp; cond; cond = cond_next) {
3265 /* Insert t in the runnable queue just ahead of us */
3266 t->i.next_run = thr->i.next_run;
3267 thr->i.next_run->i.prev_run = t;
3268 t->i.prev_run = thr;
3269 thr->i.next_run = t;
3270 thr->i.wait_queue = 0;
3271 /* Remove from the wait queue */
3272 cond_next = cond->next;
3279 Perl_cond_wait(pTHX_ perl_cond *cp)
3283 if (thr->i.next_run == thr)
3284 Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3286 New(666, cond, 1, struct perl_wait_queue);
3290 thr->i.wait_queue = cond;
3291 /* Remove ourselves from runnable queue */
3292 thr->i.next_run->i.prev_run = thr->i.prev_run;
3293 thr->i.prev_run->i.next_run = thr->i.next_run;
3295 #endif /* FAKE_THREADS */
3297 #ifdef PTHREAD_GETSPECIFIC_INT
3298 struct perl_thread *
3303 if (pthread_getspecific(PL_thr_key, &t))
3304 Perl_croak(aTHX_ "panic: pthread_getspecific");
3305 return (struct perl_thread *) t;
3310 Perl_condpair_magic(pTHX_ SV *sv)
3314 SvUPGRADE(sv, SVt_PVMG);
3315 mg = mg_find(sv, 'm');
3319 New(53, cp, 1, condpair_t);
3320 MUTEX_INIT(&cp->mutex);
3321 COND_INIT(&cp->owner_cond);
3322 COND_INIT(&cp->cond);
3324 MUTEX_LOCK(&PL_cred_mutex); /* XXX need separate mutex? */
3325 mg = mg_find(sv, 'm');
3327 /* someone else beat us to initialising it */
3328 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
3329 MUTEX_DESTROY(&cp->mutex);
3330 COND_DESTROY(&cp->owner_cond);
3331 COND_DESTROY(&cp->cond);
3335 sv_magic(sv, Nullsv, 'm', 0, 0);
3337 mg->mg_ptr = (char *)cp;
3338 mg->mg_len = sizeof(cp);
3339 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
3340 DEBUG_S(WITH_THR(PerlIO_printf(PerlIO_stderr(),
3341 "%p: condpair_magic %p\n", thr, sv));)
3348 * Make a new perl thread structure using t as a prototype. Some of the
3349 * fields for the new thread are copied from the prototype thread, t,
3350 * so t should not be running in perl at the time this function is
3351 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3352 * thread calling new_struct_thread) clearly satisfies this constraint.
3354 struct perl_thread *
3355 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3357 #if !defined(PERL_IMPLICIT_CONTEXT)
3358 struct perl_thread *thr;
3364 sv = newSVpvn("", 0);
3365 SvGROW(sv, sizeof(struct perl_thread) + 1);
3366 SvCUR_set(sv, sizeof(struct perl_thread));
3367 thr = (Thread) SvPVX(sv);
3369 memset(thr, 0xab, sizeof(struct perl_thread));
3376 Zero(&PL_hv_fetch_ent_mh, 1, HE);
3378 Zero(thr, 1, struct perl_thread);
3381 PL_protect = MEMBER_TO_FPTR(Perl_default_protect);
3386 PL_curcop = &PL_compiling;
3387 thr->interp = t->interp;
3388 thr->cvcache = newHV();
3389 thr->threadsv = newAV();
3390 thr->specific = newAV();
3391 thr->errsv = newSVpvn("", 0);
3392 thr->errhv = newHV();
3393 thr->flags = THRf_R_JOINABLE;
3394 MUTEX_INIT(&thr->mutex);
3396 /* top_env needs to be non-zero. It points to an area
3397 in which longjmp() stuff is stored, as C callstack
3398 info there at least is thread specific this has to
3399 be per-thread. Otherwise a 'die' in a thread gives
3400 that thread the C stack of last thread to do an eval {}!
3401 See comments in scope.h
3402 Initialize top entry (as in perl.c for main thread)
3404 PL_start_env.je_prev = NULL;
3405 PL_start_env.je_ret = -1;
3406 PL_start_env.je_mustcatch = TRUE;
3407 PL_top_env = &PL_start_env;
3409 PL_in_eval = EVAL_NULL; /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
3412 PL_statname = NEWSV(66,0);
3413 PL_errors = newSVpvn("", 0);
3415 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3416 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3417 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3418 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3419 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3421 PL_reginterp_cnt = 0;
3422 PL_lastscream = Nullsv;
3425 PL_reg_start_tmp = 0;
3426 PL_reg_start_tmpl = 0;
3427 PL_reg_poscache = Nullch;
3429 /* parent thread's data needs to be locked while we make copy */
3430 MUTEX_LOCK(&t->mutex);
3432 PL_protect = t->Tprotect;
3434 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
3435 PL_defstash = t->Tdefstash; /* XXX maybe these should */
3436 PL_curstash = t->Tcurstash; /* always be set to main? */
3438 PL_tainted = t->Ttainted;
3439 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
3440 PL_nrs = newSVsv(t->Tnrs);
3441 PL_rs = SvREFCNT_inc(PL_nrs);
3442 PL_last_in_gv = Nullgv;
3443 PL_ofslen = t->Tofslen;
3444 PL_ofs = savepvn(t->Tofs, PL_ofslen);
3445 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3446 PL_chopset = t->Tchopset;
3447 PL_formtarget = newSVsv(t->Tformtarget);
3448 PL_bodytarget = newSVsv(t->Tbodytarget);
3449 PL_toptarget = newSVsv(t->Ttoptarget);
3451 /* Initialise all per-thread SVs that the template thread used */
3452 svp = AvARRAY(t->threadsv);
3453 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3454 if (*svp && *svp != &PL_sv_undef) {
3455 SV *sv = newSVsv(*svp);
3456 av_store(thr->threadsv, i, sv);
3457 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3458 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
3459 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
3462 thr->threadsvp = AvARRAY(thr->threadsv);
3464 MUTEX_LOCK(&PL_threads_mutex);
3466 thr->tid = ++PL_threadnum;
3467 thr->next = t->next;
3470 thr->next->prev = thr;
3471 MUTEX_UNLOCK(&PL_threads_mutex);
3473 /* done copying parent's state */
3474 MUTEX_UNLOCK(&t->mutex);
3476 #ifdef HAVE_THREAD_INTERN
3477 Perl_init_thread_intern(thr);
3478 #endif /* HAVE_THREAD_INTERN */
3481 #endif /* USE_THREADS */
3485 * This hack is to force load of "huge" support from libm.a
3486 * So it is in perl for (say) POSIX to use.
3487 * Needed for SunOS with Sun's 'acc' for example.
3496 #ifdef PERL_GLOBAL_STRUCT
3505 Perl_get_op_names(pTHX)
3511 Perl_get_op_descs(pTHX)
3517 Perl_get_no_modify(pTHX)
3519 return (char*)PL_no_modify;
3523 Perl_get_opargs(pTHX)
3529 Perl_get_ppaddr(pTHX)
3534 #ifndef HAS_GETENV_LEN
3536 Perl_getenv_len(pTHX_ char *env_elem, unsigned long *len)
3538 char *env_trans = PerlEnv_getenv(env_elem);
3540 *len = strlen(env_trans);
3547 Perl_get_vtbl(pTHX_ int vtbl_id)
3549 MGVTBL* result = Null(MGVTBL*);
3553 result = &PL_vtbl_sv;
3556 result = &PL_vtbl_env;
3558 case want_vtbl_envelem:
3559 result = &PL_vtbl_envelem;
3562 result = &PL_vtbl_sig;
3564 case want_vtbl_sigelem:
3565 result = &PL_vtbl_sigelem;
3567 case want_vtbl_pack:
3568 result = &PL_vtbl_pack;
3570 case want_vtbl_packelem:
3571 result = &PL_vtbl_packelem;
3573 case want_vtbl_dbline:
3574 result = &PL_vtbl_dbline;
3577 result = &PL_vtbl_isa;
3579 case want_vtbl_isaelem:
3580 result = &PL_vtbl_isaelem;
3582 case want_vtbl_arylen:
3583 result = &PL_vtbl_arylen;
3585 case want_vtbl_glob:
3586 result = &PL_vtbl_glob;
3588 case want_vtbl_mglob:
3589 result = &PL_vtbl_mglob;
3591 case want_vtbl_nkeys:
3592 result = &PL_vtbl_nkeys;
3594 case want_vtbl_taint:
3595 result = &PL_vtbl_taint;
3597 case want_vtbl_substr:
3598 result = &PL_vtbl_substr;
3601 result = &PL_vtbl_vec;
3604 result = &PL_vtbl_pos;
3607 result = &PL_vtbl_bm;
3610 result = &PL_vtbl_fm;
3612 case want_vtbl_uvar:
3613 result = &PL_vtbl_uvar;
3616 case want_vtbl_mutex:
3617 result = &PL_vtbl_mutex;
3620 case want_vtbl_defelem:
3621 result = &PL_vtbl_defelem;
3623 case want_vtbl_regexp:
3624 result = &PL_vtbl_regexp;
3626 case want_vtbl_regdata:
3627 result = &PL_vtbl_regdata;
3629 case want_vtbl_regdatum:
3630 result = &PL_vtbl_regdatum;
3632 #ifdef USE_LOCALE_COLLATE
3633 case want_vtbl_collxfrm:
3634 result = &PL_vtbl_collxfrm;
3637 case want_vtbl_amagic:
3638 result = &PL_vtbl_amagic;
3640 case want_vtbl_amagicelem:
3641 result = &PL_vtbl_amagicelem;
3643 case want_vtbl_backref:
3644 result = &PL_vtbl_backref;
3651 Perl_my_fflush_all(pTHX)
3654 return PerlIO_flush(NULL);
3657 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3658 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3659 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3661 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3662 open_max = sysconf(_SC_OPEN_MAX);
3665 open_max = FOPEN_MAX;
3668 open_max = OPEN_MAX;
3679 for (i = 0; i < open_max; i++)
3680 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3681 STDIO_STREAM_ARRAY[i]._file < open_max &&
3682 STDIO_STREAM_ARRAY[i]._flag)
3683 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3687 SETERRNO(EBADF,RMS$_IFI);
3693 Perl_my_atof(pTHX_ const char* s) {
3694 #ifdef USE_LOCALE_NUMERIC
3695 if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3699 SET_NUMERIC_STANDARD();
3701 SET_NUMERIC_LOCAL();
3702 if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3707 return Perl_atof(s);
3709 return Perl_atof(s);