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)
87 PerlIO_printf(PerlIO_stderr(),
88 "Allocation too large: %lx\n", size) FLUSH;
91 #endif /* HAS_64K_LIMIT */
94 Perl_croak_nocontext("panic: malloc");
96 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
97 #if !(defined(I286) || defined(atarist))
98 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
100 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
107 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
108 WITH_THX(my_exit(1));
114 /* paranoid version of system's realloc() */
117 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
120 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
121 Malloc_t PerlMem_realloc();
122 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
126 PerlIO_printf(PerlIO_stderr(),
127 "Reallocation too large: %lx\n", size) FLUSH;
128 WITH_THX(my_exit(1));
130 #endif /* HAS_64K_LIMIT */
137 return safesysmalloc(size);
140 Perl_croak_nocontext("panic: realloc");
142 ptr = PerlMem_realloc(where,size);
144 #if !(defined(I286) || defined(atarist))
146 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,PL_an++);
147 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
151 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,PL_an++);
152 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
161 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
162 WITH_THX(my_exit(1));
168 /* safe version of system's free() */
171 Perl_safesysfree(Malloc_t where)
173 #if !(defined(I286) || defined(atarist))
174 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,PL_an++));
176 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,PL_an++));
184 /* safe version of system's calloc() */
187 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
192 if (size * count > 0xffff) {
193 PerlIO_printf(PerlIO_stderr(),
194 "Allocation too large: %lx\n", size * count) FLUSH;
195 WITH_THX(my_exit(1));
197 #endif /* HAS_64K_LIMIT */
199 if ((long)size < 0 || (long)count < 0)
200 Perl_croak_nocontext("panic: calloc");
203 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
204 #if !(defined(I286) || defined(atarist))
205 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
207 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
210 memset((void*)ptr, 0, size);
216 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
217 WITH_THX(my_exit(1));
225 struct mem_test_strut {
233 # define ALIGN sizeof(struct mem_test_strut)
235 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
236 # define typeof_chunk(ch) \
237 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
238 # define set_typeof_chunk(ch,t) \
239 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
240 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
243 ? ((size) - 1)/8 + 5 \
247 Perl_safexmalloc(I32 x, MEM_SIZE size)
249 register char* where = (char*)safemalloc(size + ALIGN);
252 xycount[x][SIZE_TO_Y(size)]++;
253 set_typeof_chunk(where, x);
254 sizeof_chunk(where) = size;
255 return (Malloc_t)(where + ALIGN);
259 Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
261 char *where = (char*)wh;
264 return safexmalloc(0,size);
267 MEM_SIZE old = sizeof_chunk(where - ALIGN);
268 int t = typeof_chunk(where - ALIGN);
269 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
271 xycount[t][SIZE_TO_Y(old)]--;
272 xycount[t][SIZE_TO_Y(size)]++;
273 xcount[t] += size - old;
274 sizeof_chunk(new) = size;
275 return (Malloc_t)(new + ALIGN);
280 Perl_safexfree(Malloc_t wh)
283 char *where = (char*)wh;
289 size = sizeof_chunk(where);
290 x = where[0] + 100 * where[1];
292 xycount[x][SIZE_TO_Y(size)]--;
297 Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
299 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
301 xycount[x][SIZE_TO_Y(size)]++;
302 memset((void*)(where + ALIGN), 0, size * count);
303 set_typeof_chunk(where, x);
304 sizeof_chunk(where) = size;
305 return (Malloc_t)(where + ALIGN);
309 S_xstat(pTHX_ int flag)
311 register I32 i, j, total = 0;
312 I32 subtot[MAXYCOUNT];
314 for (j = 0; j < MAXYCOUNT; j++) {
318 PerlIO_printf(PerlIO_stderr(), " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
319 for (i = 0; i < MAXXCOUNT; i++) {
321 for (j = 0; j < MAXYCOUNT; j++) {
322 subtot[j] += xycount[i][j];
325 ? xcount[i] /* Have something */
327 ? xcount[i] != lastxcount[i] /* Changed */
328 : xcount[i] > lastxcount[i])) { /* Growed */
329 PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100,
330 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
331 lastxcount[i] = xcount[i];
332 for (j = 0; j < MAXYCOUNT; j++) {
334 ? xycount[i][j] /* Have something */
336 ? xycount[i][j] != lastxycount[i][j] /* Changed */
337 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
338 PerlIO_printf(PerlIO_stderr(),"%3ld ",
340 ? xycount[i][j] - lastxycount[i][j]
342 lastxycount[i][j] = xycount[i][j];
344 PerlIO_printf(PerlIO_stderr(), " . ", xycount[i][j]);
347 PerlIO_printf(PerlIO_stderr(), "\n");
351 PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
352 for (j = 0; j < MAXYCOUNT; j++) {
354 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
356 PerlIO_printf(PerlIO_stderr(), " . ");
359 PerlIO_printf(PerlIO_stderr(), "\n");
363 #endif /* LEAKTEST */
365 /* copy a string up to some (non-backslashed) delimiter, if any */
368 Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
371 for (tolen = 0; from < fromend; from++, tolen++) {
373 if (from[1] == delim)
382 else if (*from == delim)
393 /* return ptr to little string in big string, NULL if not found */
394 /* This routine was donated by Corey Satten. */
397 Perl_instr(pTHX_ register const char *big, register const char *little)
399 register const char *s, *x;
410 for (x=big,s=little; *s; /**/ ) {
419 return (char*)(big-1);
424 /* same as instr but allow embedded nulls */
427 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
429 register const char *s, *x;
430 register I32 first = *little;
431 register const char *littleend = lend;
433 if (!first && little >= littleend)
435 if (bigend - big < littleend - little)
437 bigend -= littleend - little++;
438 while (big <= bigend) {
441 for (x=big,s=little; s < littleend; /**/ ) {
448 return (char*)(big-1);
453 /* reverse of the above--find last substring */
456 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
458 register const char *bigbeg;
459 register const char *s, *x;
460 register I32 first = *little;
461 register const char *littleend = lend;
463 if (!first && little >= littleend)
464 return (char*)bigend;
466 big = bigend - (littleend - little++);
467 while (big >= bigbeg) {
470 for (x=big+2,s=little; s < littleend; /**/ ) {
477 return (char*)(big+1);
483 * Set up for a new ctype locale.
486 Perl_new_ctype(pTHX_ const char *newctype)
488 #ifdef USE_LOCALE_CTYPE
492 for (i = 0; i < 256; i++) {
494 PL_fold_locale[i] = toLOWER_LC(i);
495 else if (isLOWER_LC(i))
496 PL_fold_locale[i] = toUPPER_LC(i);
498 PL_fold_locale[i] = i;
501 #endif /* USE_LOCALE_CTYPE */
505 * Set up for a new collation locale.
508 Perl_new_collate(pTHX_ const char *newcoll)
510 #ifdef USE_LOCALE_COLLATE
513 if (PL_collation_name) {
515 Safefree(PL_collation_name);
516 PL_collation_name = NULL;
517 PL_collation_standard = TRUE;
518 PL_collxfrm_base = 0;
519 PL_collxfrm_mult = 2;
524 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
526 Safefree(PL_collation_name);
527 PL_collation_name = savepv(newcoll);
528 PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
531 /* 2: at most so many chars ('a', 'b'). */
532 /* 50: surely no system expands a char more. */
533 #define XFRMBUFSIZE (2 * 50)
534 char xbuf[XFRMBUFSIZE];
535 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
536 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
537 SSize_t mult = fb - fa;
539 Perl_croak(aTHX_ "strxfrm() gets absurd");
540 PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
541 PL_collxfrm_mult = mult;
545 #endif /* USE_LOCALE_COLLATE */
549 Perl_set_numeric_radix(pTHX)
551 #ifdef USE_LOCALE_NUMERIC
552 # ifdef HAS_LOCALECONV
556 if (lc && lc->decimal_point)
557 /* We assume that decimal separator aka the radix
558 * character is always a single character. If it
559 * ever is a string, this needs to be rethunk. */
560 PL_numeric_radix = *lc->decimal_point;
562 PL_numeric_radix = 0;
563 # endif /* HAS_LOCALECONV */
565 PL_numeric_radix = 0;
566 #endif /* USE_LOCALE_NUMERIC */
570 * Set up for a new numeric locale.
573 Perl_new_numeric(pTHX_ const char *newnum)
575 #ifdef USE_LOCALE_NUMERIC
578 if (PL_numeric_name) {
579 Safefree(PL_numeric_name);
580 PL_numeric_name = NULL;
581 PL_numeric_standard = TRUE;
582 PL_numeric_local = TRUE;
587 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
588 Safefree(PL_numeric_name);
589 PL_numeric_name = savepv(newnum);
590 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
591 PL_numeric_local = TRUE;
595 #endif /* USE_LOCALE_NUMERIC */
599 Perl_set_numeric_standard(pTHX)
601 #ifdef USE_LOCALE_NUMERIC
603 if (! PL_numeric_standard) {
604 setlocale(LC_NUMERIC, "C");
605 PL_numeric_standard = TRUE;
606 PL_numeric_local = FALSE;
609 #endif /* USE_LOCALE_NUMERIC */
613 Perl_set_numeric_local(pTHX)
615 #ifdef USE_LOCALE_NUMERIC
617 if (! PL_numeric_local) {
618 setlocale(LC_NUMERIC, PL_numeric_name);
619 PL_numeric_standard = FALSE;
620 PL_numeric_local = TRUE;
624 #endif /* USE_LOCALE_NUMERIC */
628 * Initialize locale awareness.
631 Perl_init_i18nl10n(pTHX_ int printwarn)
635 * 1 = set ok or not applicable,
636 * 0 = fallback to C locale,
637 * -1 = fallback to C locale failed
642 #ifdef USE_LOCALE_CTYPE
643 char *curctype = NULL;
644 #endif /* USE_LOCALE_CTYPE */
645 #ifdef USE_LOCALE_COLLATE
646 char *curcoll = NULL;
647 #endif /* USE_LOCALE_COLLATE */
648 #ifdef USE_LOCALE_NUMERIC
650 #endif /* USE_LOCALE_NUMERIC */
652 char *language = PerlEnv_getenv("LANGUAGE");
654 char *lc_all = PerlEnv_getenv("LC_ALL");
655 char *lang = PerlEnv_getenv("LANG");
656 bool setlocale_failure = FALSE;
658 #ifdef LOCALE_ENVIRON_REQUIRED
661 * Ultrix setlocale(..., "") fails if there are no environment
662 * variables from which to get a locale name.
669 if (setlocale(LC_ALL, ""))
672 setlocale_failure = TRUE;
674 if (!setlocale_failure) {
675 #ifdef USE_LOCALE_CTYPE
678 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
680 setlocale_failure = TRUE;
681 #endif /* USE_LOCALE_CTYPE */
682 #ifdef USE_LOCALE_COLLATE
684 setlocale(LC_COLLATE,
685 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
687 setlocale_failure = TRUE;
688 #endif /* USE_LOCALE_COLLATE */
689 #ifdef USE_LOCALE_NUMERIC
691 setlocale(LC_NUMERIC,
692 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
694 setlocale_failure = TRUE;
695 #endif /* USE_LOCALE_NUMERIC */
700 #endif /* !LOCALE_ENVIRON_REQUIRED */
703 if (! setlocale(LC_ALL, ""))
704 setlocale_failure = TRUE;
707 if (!setlocale_failure) {
708 #ifdef USE_LOCALE_CTYPE
709 if (! (curctype = setlocale(LC_CTYPE, "")))
710 setlocale_failure = TRUE;
711 #endif /* USE_LOCALE_CTYPE */
712 #ifdef USE_LOCALE_COLLATE
713 if (! (curcoll = setlocale(LC_COLLATE, "")))
714 setlocale_failure = TRUE;
715 #endif /* USE_LOCALE_COLLATE */
716 #ifdef USE_LOCALE_NUMERIC
717 if (! (curnum = setlocale(LC_NUMERIC, "")))
718 setlocale_failure = TRUE;
719 #endif /* USE_LOCALE_NUMERIC */
722 if (setlocale_failure) {
724 bool locwarn = (printwarn > 1 ||
726 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
731 PerlIO_printf(PerlIO_stderr(),
732 "perl: warning: Setting locale failed.\n");
736 PerlIO_printf(PerlIO_stderr(),
737 "perl: warning: Setting locale failed for the categories:\n\t");
738 #ifdef USE_LOCALE_CTYPE
740 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
741 #endif /* USE_LOCALE_CTYPE */
742 #ifdef USE_LOCALE_COLLATE
744 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
745 #endif /* USE_LOCALE_COLLATE */
746 #ifdef USE_LOCALE_NUMERIC
748 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
749 #endif /* USE_LOCALE_NUMERIC */
750 PerlIO_printf(PerlIO_stderr(), "\n");
754 PerlIO_printf(PerlIO_stderr(),
755 "perl: warning: Please check that your locale settings:\n");
758 PerlIO_printf(PerlIO_stderr(),
759 "\tLANGUAGE = %c%s%c,\n",
760 language ? '"' : '(',
761 language ? language : "unset",
762 language ? '"' : ')');
765 PerlIO_printf(PerlIO_stderr(),
766 "\tLC_ALL = %c%s%c,\n",
768 lc_all ? lc_all : "unset",
773 for (e = environ; *e; e++) {
774 if (strnEQ(*e, "LC_", 3)
775 && strnNE(*e, "LC_ALL=", 7)
776 && (p = strchr(*e, '=')))
777 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
778 (int)(p - *e), *e, p + 1);
782 PerlIO_printf(PerlIO_stderr(),
785 lang ? lang : "unset",
788 PerlIO_printf(PerlIO_stderr(),
789 " are supported and installed on your system.\n");
794 if (setlocale(LC_ALL, "C")) {
796 PerlIO_printf(PerlIO_stderr(),
797 "perl: warning: Falling back to the standard locale (\"C\").\n");
802 PerlIO_printf(PerlIO_stderr(),
803 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
810 #ifdef USE_LOCALE_CTYPE
811 || !(curctype || setlocale(LC_CTYPE, "C"))
812 #endif /* USE_LOCALE_CTYPE */
813 #ifdef USE_LOCALE_COLLATE
814 || !(curcoll || setlocale(LC_COLLATE, "C"))
815 #endif /* USE_LOCALE_COLLATE */
816 #ifdef USE_LOCALE_NUMERIC
817 || !(curnum || setlocale(LC_NUMERIC, "C"))
818 #endif /* USE_LOCALE_NUMERIC */
822 PerlIO_printf(PerlIO_stderr(),
823 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
827 #endif /* ! LC_ALL */
829 #ifdef USE_LOCALE_CTYPE
830 curctype = setlocale(LC_CTYPE, Nullch);
831 #endif /* USE_LOCALE_CTYPE */
832 #ifdef USE_LOCALE_COLLATE
833 curcoll = setlocale(LC_COLLATE, Nullch);
834 #endif /* USE_LOCALE_COLLATE */
835 #ifdef USE_LOCALE_NUMERIC
836 curnum = setlocale(LC_NUMERIC, Nullch);
837 #endif /* USE_LOCALE_NUMERIC */
840 #ifdef USE_LOCALE_CTYPE
842 #endif /* USE_LOCALE_CTYPE */
844 #ifdef USE_LOCALE_COLLATE
845 new_collate(curcoll);
846 #endif /* USE_LOCALE_COLLATE */
848 #ifdef USE_LOCALE_NUMERIC
850 #endif /* USE_LOCALE_NUMERIC */
852 #endif /* USE_LOCALE */
857 /* Backwards compatibility. */
859 Perl_init_i18nl14n(pTHX_ int printwarn)
861 return init_i18nl10n(printwarn);
864 #ifdef USE_LOCALE_COLLATE
867 * mem_collxfrm() is a bit like strxfrm() but with two important
868 * differences. First, it handles embedded NULs. Second, it allocates
869 * a bit more memory than needed for the transformed data itself.
870 * The real transformed data begins at offset sizeof(collationix).
871 * Please see sv_collxfrm() to see how this is used.
874 Perl_mem_collxfrm(pTHX_ const char *s, STRLEN len, STRLEN *xlen)
877 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
879 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
880 /* the +1 is for the terminating NUL. */
882 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
883 New(171, xbuf, xAlloc, char);
887 *(U32*)xbuf = PL_collation_ix;
888 xout = sizeof(PL_collation_ix);
889 for (xin = 0; xin < len; ) {
893 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
896 if (xused < xAlloc - xout)
898 xAlloc = (2 * xAlloc) + 1;
899 Renew(xbuf, xAlloc, char);
904 xin += strlen(s + xin) + 1;
907 /* Embedded NULs are understood but silently skipped
908 * because they make no sense in locale collation. */
912 *xlen = xout - sizeof(PL_collation_ix);
921 #endif /* USE_LOCALE_COLLATE */
923 #define FBM_TABLE_OFFSET 2 /* Number of bytes between EOS and table*/
925 /* As a space optimization, we do not compile tables for strings of length
926 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
927 special-cased in fbm_instr().
929 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
932 Perl_fbm_compile(pTHX_ SV *sv, U32 flags /* not used yet */)
941 if (flags & FBMcf_TAIL)
942 sv_catpvn(sv, "\n", 1); /* Taken into account in fbm_instr() */
943 s = (U8*)SvPV_force(sv, len);
944 (void)SvUPGRADE(sv, SVt_PVBM);
945 if (len == 0) /* TAIL might be on on a zero-length string. */
953 Sv_Grow(sv,len + 256 + FBM_TABLE_OFFSET);
954 table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
955 s = table - 1 - FBM_TABLE_OFFSET; /* Last char */
956 for (i = 0; i < 256; i++) {
959 table[-1] = flags; /* Not used yet */
963 if (table[*s] == mlen)
968 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
971 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
972 for (i = 0; i < len; i++) {
973 if (PL_freq[s[i]] < frequency) {
975 frequency = PL_freq[s[i]];
978 BmRARE(sv) = s[rarest];
979 BmPREVIOUS(sv) = rarest;
980 BmUSEFUL(sv) = 100; /* Initial value */
981 if (flags & FBMcf_TAIL)
983 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
986 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
987 /* If SvTAIL is actually due to \Z or \z, this gives false positives
991 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
993 register unsigned char *s;
995 register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
996 register STRLEN littlelen = l;
997 register I32 multiline = flags & FBMrf_MULTILINE;
999 if (bigend - big < littlelen) {
1001 if ( SvTAIL(littlestr)
1002 && (bigend - big == littlelen - 1)
1004 || *big == *little && memEQ(big, little, littlelen - 1)))
1009 if (littlelen <= 2) { /* Special-cased */
1012 if (littlelen == 1) {
1013 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
1014 /* Know that bigend != big. */
1015 if (bigend[-1] == '\n')
1016 return (char *)(bigend - 1);
1017 return (char *) bigend;
1020 while (s < bigend) {
1025 if (SvTAIL(littlestr))
1026 return (char *) bigend;
1030 return (char*)big; /* Cannot be SvTAIL! */
1032 /* littlelen is 2 */
1033 if (SvTAIL(littlestr) && !multiline) {
1034 if (bigend[-1] == '\n' && bigend[-2] == *little)
1035 return (char*)bigend - 2;
1036 if (bigend[-1] == *little)
1037 return (char*)bigend - 1;
1041 /* This should be better than FBM if c1 == c2, and almost
1042 as good otherwise: maybe better since we do less indirection.
1043 And we save a lot of memory by caching no table. */
1044 register unsigned char c1 = little[0];
1045 register unsigned char c2 = little[1];
1050 while (s <= bigend) {
1053 return (char*)s - 1;
1060 goto check_1char_anchor;
1071 goto check_1char_anchor;
1074 while (s <= bigend) {
1077 return (char*)s - 1;
1079 goto check_1char_anchor;
1088 check_1char_anchor: /* One char and anchor! */
1089 if (SvTAIL(littlestr) && (*bigend == *little))
1090 return (char *)bigend; /* bigend is already decremented. */
1093 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
1094 s = bigend - littlelen;
1096 && bigend[-1] == '\n'
1098 /* Automatically of length > 2 */
1099 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1100 return (char*)s; /* how sweet it is */
1101 if (s[1] == *little && memEQ((char*)s + 2,(char*)little + 1,
1103 return (char*)s + 1; /* how sweet it is */
1106 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
1107 char *b = ninstr((char*)big,(char*)bigend,
1108 (char*)little, (char*)little + littlelen);
1110 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
1111 /* Chop \n from littlestr: */
1112 s = bigend - littlelen + 1;
1113 if (*s == *little && memEQ((char*)s + 1, (char*)little + 1,
1121 { /* Do actual FBM. */
1122 register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
1123 register unsigned char *oldlittle;
1125 if (littlelen > bigend - big)
1127 --littlelen; /* Last char found by table lookup */
1129 s = big + littlelen;
1130 little += littlelen; /* last char */
1137 if (tmp = table[*s]) {
1139 if (bigend - s > tmp) {
1145 if ((s += tmp) < bigend)
1150 else { /* less expensive than calling strncmp() */
1151 register unsigned char *olds = s;
1156 if (*--s == *--little)
1159 s = olds + 1; /* here we pay the price for failure */
1161 if (s < bigend) /* fake up continue to outer loop */
1169 if ( s == bigend && (table[-1] & FBMcf_TAIL)
1170 && memEQ(bigend - littlelen, oldlittle - littlelen, littlelen) )
1171 return (char*)bigend - littlelen;
1176 /* start_shift, end_shift are positive quantities which give offsets
1177 of ends of some substring of bigstr.
1178 If `last' we want the last occurence.
1179 old_posp is the way of communication between consequent calls if
1180 the next call needs to find the .
1181 The initial *old_posp should be -1.
1183 Note that we take into account SvTAIL, so one can get extra
1184 optimizations if _ALL flag is set.
1187 /* If SvTAIL is actually due to \Z or \z, this gives false positives
1188 if PL_multiline. In fact if !PL_multiline the autoritative answer
1189 is not supported yet. */
1192 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1195 register unsigned char *s, *x;
1196 register unsigned char *big;
1198 register I32 previous;
1200 register unsigned char *little;
1201 register I32 stop_pos;
1202 register unsigned char *littleend;
1206 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1207 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
1209 if ( BmRARE(littlestr) == '\n'
1210 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
1211 little = (unsigned char *)(SvPVX(littlestr));
1212 littleend = little + SvCUR(littlestr);
1219 little = (unsigned char *)(SvPVX(littlestr));
1220 littleend = little + SvCUR(littlestr);
1222 /* The value of pos we can start at: */
1223 previous = BmPREVIOUS(littlestr);
1224 big = (unsigned char *)(SvPVX(bigstr));
1225 /* The value of pos we can stop at: */
1226 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1227 if (previous + start_shift > stop_pos) {
1228 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
1232 while (pos < previous + start_shift) {
1233 if (!(pos += PL_screamnext[pos]))
1238 if (pos >= stop_pos) break;
1239 if (big[pos-previous] != first)
1241 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1247 if (s == littleend) {
1249 if (!last) return (char *)(big+pos-previous);
1252 } while ( pos += PL_screamnext[pos] );
1253 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1254 #else /* !POINTERRIGOR */
1257 if (pos >= stop_pos) break;
1258 if (big[pos] != first)
1260 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1266 if (s == littleend) {
1268 if (!last) return (char *)(big+pos);
1271 } while ( pos += PL_screamnext[pos] );
1273 return (char *)(big+(*old_posp));
1274 #endif /* POINTERRIGOR */
1276 if (!SvTAIL(littlestr) || (end_shift > 0))
1278 /* Ignore the trailing "\n". This code is not microoptimized */
1279 big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
1280 stop_pos = littleend - little; /* Actual littlestr len */
1285 && ((stop_pos == 1) || memEQ(big + 1, little, stop_pos - 1)))
1291 Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
1293 register U8 *a = (U8 *)s1;
1294 register U8 *b = (U8 *)s2;
1296 if (*a != *b && *a != PL_fold[*b])
1304 Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
1306 register U8 *a = (U8 *)s1;
1307 register U8 *b = (U8 *)s2;
1309 if (*a != *b && *a != PL_fold_locale[*b])
1316 /* copy a string to a safe spot */
1319 Perl_savepv(pTHX_ const char *sv)
1321 register char *newaddr;
1323 New(902,newaddr,strlen(sv)+1,char);
1324 (void)strcpy(newaddr,sv);
1328 /* same thing but with a known length */
1331 Perl_savepvn(pTHX_ const char *sv, register I32 len)
1333 register char *newaddr;
1335 New(903,newaddr,len+1,char);
1336 Copy(sv,newaddr,len,char); /* might not be null terminated */
1337 newaddr[len] = '\0'; /* is now */
1341 /* the SV for Perl_form() and mess() is not kept in an arena */
1351 return sv_2mortal(newSVpvn("",0));
1356 /* Create as PVMG now, to avoid any upgrading later */
1357 New(905, sv, 1, SV);
1358 Newz(905, any, 1, XPVMG);
1359 SvFLAGS(sv) = SVt_PVMG;
1360 SvANY(sv) = (void*)any;
1361 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1366 #if defined(PERL_IMPLICIT_CONTEXT)
1368 Perl_form_nocontext(const char* pat, ...)
1373 va_start(args, pat);
1374 retval = vform(pat, &args);
1378 #endif /* PERL_IMPLICIT_CONTEXT */
1381 Perl_form(pTHX_ const char* pat, ...)
1385 va_start(args, pat);
1386 retval = vform(pat, &args);
1392 Perl_vform(pTHX_ const char *pat, va_list *args)
1394 SV *sv = mess_alloc();
1395 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1400 Perl_mess(pTHX_ const char *pat, va_list *args)
1402 SV *sv = mess_alloc();
1403 static char dgd[] = " during global destruction.\n";
1405 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1406 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1408 if (PL_curcop->cop_line)
1409 Perl_sv_catpvf(aTHX_ sv, " at %_ line %ld",
1410 GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1411 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1412 bool line_mode = (RsSIMPLE(PL_rs) &&
1413 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1414 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %ld",
1415 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1416 line_mode ? "line" : "chunk",
1417 (long)IoLINES(GvIOp(PL_last_in_gv)));
1421 Perl_sv_catpvf(aTHX_ sv, " thread %ld", thr->tid);
1423 sv_catpv(sv, PL_dirty ? dgd : ".\n");
1429 Perl_vdie(pTHX_ const char* pat, va_list *args)
1433 int was_in_eval = PL_in_eval;
1440 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1441 "%p: die: curstack = %p, mainstack = %p\n",
1442 thr, PL_curstack, PL_mainstack));
1445 msv = mess(pat, args);
1446 message = SvPV(msv,msglen);
1452 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1453 "%p: die: message = %s\ndiehook = %p\n",
1454 thr, message, PL_diehook));
1456 /* sv_2cv might call Perl_croak() */
1457 SV *olddiehook = PL_diehook;
1459 SAVESPTR(PL_diehook);
1460 PL_diehook = Nullsv;
1461 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1463 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1469 msg = newSVpvn(message, msglen);
1477 PUSHSTACKi(PERLSI_DIEHOOK);
1481 call_sv((SV*)cv, G_DISCARD);
1487 PL_restartop = die_where(message, msglen);
1488 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1489 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1490 thr, PL_restartop, was_in_eval, PL_top_env));
1491 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1493 return PL_restartop;
1496 #if defined(PERL_IMPLICIT_CONTEXT)
1498 Perl_die_nocontext(const char* pat, ...)
1503 va_start(args, pat);
1504 o = vdie(pat, &args);
1508 #endif /* PERL_IMPLICIT_CONTEXT */
1511 Perl_die(pTHX_ const char* pat, ...)
1515 va_start(args, pat);
1516 o = vdie(pat, &args);
1522 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1532 msv = mess(pat, args);
1533 message = SvPV(msv,msglen);
1534 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1536 /* sv_2cv might call Perl_croak() */
1537 SV *olddiehook = PL_diehook;
1539 SAVESPTR(PL_diehook);
1540 PL_diehook = Nullsv;
1541 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1543 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1548 msg = newSVpvn(message, msglen);
1552 PUSHSTACKi(PERLSI_DIEHOOK);
1556 call_sv((SV*)cv, G_DISCARD);
1562 PL_restartop = die_where(message, msglen);
1567 /* SFIO can really mess with your errno */
1570 PerlIO_write(PerlIO_stderr(), message, msglen);
1571 (void)PerlIO_flush(PerlIO_stderr());
1579 #if defined(PERL_IMPLICIT_CONTEXT)
1581 Perl_croak_nocontext(const char *pat, ...)
1585 va_start(args, pat);
1590 #endif /* PERL_IMPLICIT_CONTEXT */
1593 Perl_croak(pTHX_ const char *pat, ...)
1596 va_start(args, pat);
1603 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1612 msv = mess(pat, args);
1613 message = SvPV(msv, msglen);
1616 /* sv_2cv might call Perl_warn() */
1618 SV *oldwarnhook = PL_warnhook;
1620 SAVESPTR(PL_warnhook);
1621 PL_warnhook = Nullsv;
1622 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1624 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1629 msg = newSVpvn(message, msglen);
1633 PUSHSTACKi(PERLSI_WARNHOOK);
1637 call_sv((SV*)cv, G_DISCARD);
1643 PerlIO_write(PerlIO_stderr(), message, msglen);
1645 DEBUG_L(*message == '!'
1646 ? (xstat(message[1]=='!'
1647 ? (message[2]=='!' ? 2 : 1)
1652 (void)PerlIO_flush(PerlIO_stderr());
1655 #if defined(PERL_IMPLICIT_CONTEXT)
1657 Perl_warn_nocontext(const char *pat, ...)
1661 va_start(args, pat);
1665 #endif /* PERL_IMPLICIT_CONTEXT */
1668 Perl_warn(pTHX_ const char *pat, ...)
1671 va_start(args, pat);
1676 #if defined(PERL_IMPLICIT_CONTEXT)
1678 Perl_warner_nocontext(U32 err, const char *pat, ...)
1682 va_start(args, pat);
1683 vwarner(err, pat, &args);
1686 #endif /* PERL_IMPLICIT_CONTEXT */
1689 Perl_warner(pTHX_ U32 err, const char* pat,...)
1692 va_start(args, pat);
1693 vwarner(err, pat, &args);
1698 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1708 msv = mess(pat, args);
1709 message = SvPV(msv, msglen);
1713 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1714 #endif /* USE_THREADS */
1716 /* sv_2cv might call Perl_croak() */
1717 SV *olddiehook = PL_diehook;
1719 SAVESPTR(PL_diehook);
1720 PL_diehook = Nullsv;
1721 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1723 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1728 msg = newSVpvn(message, msglen);
1735 call_sv((SV*)cv, G_DISCARD);
1741 PL_restartop = die_where(message, msglen);
1744 PerlIO_write(PerlIO_stderr(), message, msglen);
1745 (void)PerlIO_flush(PerlIO_stderr());
1751 /* sv_2cv might call Perl_warn() */
1753 SV *oldwarnhook = PL_warnhook;
1755 SAVESPTR(PL_warnhook);
1756 PL_warnhook = Nullsv;
1757 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1759 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1764 msg = newSVpvn(message, msglen);
1771 call_sv((SV*)cv, G_DISCARD);
1777 PerlIO_write(PerlIO_stderr(), message, msglen);
1781 (void)PerlIO_flush(PerlIO_stderr());
1785 #ifndef VMS /* VMS' my_setenv() is in VMS.c */
1786 #if !defined(WIN32) && !defined(CYGWIN32)
1788 Perl_my_setenv(pTHX_ char *nam, char *val)
1790 #ifndef PERL_USE_SAFE_PUTENV
1791 /* most putenv()s leak, so we manipulate environ directly */
1792 register I32 i=setenv_getix(nam); /* where does it go? */
1794 if (environ == PL_origenviron) { /* need we copy environment? */
1800 for (max = i; environ[max]; max++) ;
1801 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1802 for (j=0; j<max; j++) { /* copy environment */
1803 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1804 strcpy(tmpenv[j], environ[j]);
1806 tmpenv[max] = Nullch;
1807 environ = tmpenv; /* tell exec where it is now */
1810 safesysfree(environ[i]);
1811 while (environ[i]) {
1812 environ[i] = environ[i+1];
1817 if (!environ[i]) { /* does not exist yet */
1818 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1819 environ[i+1] = Nullch; /* make sure it's null terminated */
1822 safesysfree(environ[i]);
1823 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1826 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1828 /* MS-DOS requires environment variable names to be in uppercase */
1829 /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1830 * some utilities and applications may break because they only look
1831 * for upper case strings. (Fixed strupr() bug here.)]
1833 strcpy(environ[i],nam); strupr(environ[i]);
1834 (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1837 #else /* PERL_USE_SAFE_PUTENV */
1840 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1842 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1844 strcpy(new_env,nam); strupr(new_env);
1845 (void)sprintf(new_env + strlen(nam),"=%s",val);
1847 (void)putenv(new_env);
1848 #endif /* PERL_USE_SAFE_PUTENV */
1851 #else /* WIN32 || CYGWIN32 */
1852 #if defined(CYGWIN32)
1854 * Save environ of perl.exe, currently Cygwin links in separate environ's
1855 * for each exe/dll. Probably should be a member of impure_ptr.
1857 static char ***Perl_main_environ;
1860 Perl_my_setenv_init(char ***penviron)
1862 Perl_main_environ = penviron;
1866 my_setenv(char *nam, char *val)
1868 /* You can not directly manipulate the environ[] array because
1869 * the routines do some additional work that syncs the Cygwin
1870 * environment with the Windows environment.
1872 char *oldstr = environ[setenv_getix(nam)];
1881 setenv(nam, val, 1);
1882 environ = *Perl_main_environ; /* environ realloc can occur in setenv */
1883 if(oldstr && environ[setenv_getix(nam)] != oldstr)
1886 #else /* if WIN32 */
1889 Perl_my_setenv(pTHX_ char *nam,char *val)
1892 #ifdef USE_WIN32_RTL_ENV
1894 register char *envstr;
1895 STRLEN namlen = strlen(nam);
1897 char *oldstr = environ[setenv_getix(nam)];
1899 /* putenv() has totally broken semantics in both the Borland
1900 * and Microsoft CRTLs. They either store the passed pointer in
1901 * the environment without making a copy, or make a copy and don't
1902 * free it. And on top of that, they dont free() old entries that
1903 * are being replaced/deleted. This means the caller must
1904 * free any old entries somehow, or we end up with a memory
1905 * leak every time my_setenv() is called. One might think
1906 * one could directly manipulate environ[], like the UNIX code
1907 * above, but direct changes to environ are not allowed when
1908 * calling putenv(), since the RTLs maintain an internal
1909 * *copy* of environ[]. Bad, bad, *bad* stink.
1920 vallen = strlen(val);
1921 envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
1922 (void)sprintf(envstr,"%s=%s",nam,val);
1923 (void)PerlEnv_putenv(envstr);
1925 safesysfree(oldstr);
1927 safesysfree(envstr); /* MSVCRT leaks without this */
1930 #else /* !USE_WIN32_RTL_ENV */
1932 register char *envstr;
1933 STRLEN len = strlen(nam) + 3;
1938 New(904, envstr, len, char);
1939 (void)sprintf(envstr,"%s=%s",nam,val);
1940 (void)PerlEnv_putenv(envstr);
1950 Perl_setenv_getix(pTHX_ char *nam)
1952 register I32 i, len = strlen(nam);
1954 for (i = 0; environ[i]; i++) {
1957 strnicmp(environ[i],nam,len) == 0
1959 strnEQ(environ[i],nam,len)
1961 && environ[i][len] == '=')
1962 break; /* strnEQ must come first to avoid */
1963 } /* potential SEGV's */
1969 #ifdef UNLINK_ALL_VERSIONS
1971 Perl_unlnk(pTHX_ char *f) /* unlink all versions of a file */
1975 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1980 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1982 Perl_my_bcopy(pTHX_ register const char *from,register char *to,register I32 len)
1986 if (from - to >= 0) {
1994 *(--to) = *(--from);
2002 Perl_my_memset(pTHX_ register char *loc, register I32 ch, register I32 len)
2012 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2014 Perl_my_bzero(pTHX_ register char *loc, register I32 len)
2024 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2026 Perl_my_memcmp(pTHX_ const char *s1, const char *s2, register I32 len)
2028 register U8 *a = (U8 *)s1;
2029 register U8 *b = (U8 *)s2;
2033 if (tmp = *a++ - *b++)
2038 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2042 #ifdef USE_CHAR_VSPRINTF
2047 vsprintf(char *dest, const char *pat, char *args)
2051 fakebuf._ptr = dest;
2052 fakebuf._cnt = 32767;
2056 fakebuf._flag = _IOWRT|_IOSTRG;
2057 _doprnt(pat, args, &fakebuf); /* what a kludge */
2058 (void)putc('\0', &fakebuf);
2059 #ifdef USE_CHAR_VSPRINTF
2062 return 0; /* perl doesn't use return value */
2066 #endif /* HAS_VPRINTF */
2069 #if BYTEORDER != 0x4321
2071 Perl_my_swap(pTHX_ short s)
2073 #if (BYTEORDER & 1) == 0
2076 result = ((s & 255) << 8) + ((s >> 8) & 255);
2084 Perl_my_htonl(pTHX_ long l)
2088 char c[sizeof(long)];
2091 #if BYTEORDER == 0x1234
2092 u.c[0] = (l >> 24) & 255;
2093 u.c[1] = (l >> 16) & 255;
2094 u.c[2] = (l >> 8) & 255;
2098 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2099 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2104 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2105 u.c[o & 0xf] = (l >> s) & 255;
2113 Perl_my_ntohl(pTHX_ long l)
2117 char c[sizeof(long)];
2120 #if BYTEORDER == 0x1234
2121 u.c[0] = (l >> 24) & 255;
2122 u.c[1] = (l >> 16) & 255;
2123 u.c[2] = (l >> 8) & 255;
2127 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2128 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2135 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2136 l |= (u.c[o & 0xf] & 255) << s;
2143 #endif /* BYTEORDER != 0x4321 */
2147 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2148 * If these functions are defined,
2149 * the BYTEORDER is neither 0x1234 nor 0x4321.
2150 * However, this is not assumed.
2154 #define HTOV(name,type) \
2156 name (register type n) \
2160 char c[sizeof(type)]; \
2164 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2165 u.c[i] = (n >> s) & 0xFF; \
2170 #define VTOH(name,type) \
2172 name (register type n) \
2176 char c[sizeof(type)]; \
2182 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2183 n += (u.c[i] & 0xFF) << s; \
2188 #if defined(HAS_HTOVS) && !defined(htovs)
2191 #if defined(HAS_HTOVL) && !defined(htovl)
2194 #if defined(HAS_VTOHS) && !defined(vtohs)
2197 #if defined(HAS_VTOHL) && !defined(vtohl)
2201 /* VMS' my_popen() is in VMS.c, same with OS/2. */
2202 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC)
2204 Perl_my_popen(pTHX_ char *cmd, char *mode)
2207 register I32 This, that;
2210 I32 doexec = strNE(cmd,"-");
2214 PERL_FLUSHALL_FOR_CHILD;
2217 return my_syspopen(cmd,mode);
2220 This = (*mode == 'w');
2222 if (doexec && PL_tainting) {
2224 taint_proper("Insecure %s%s", "EXEC");
2226 if (PerlProc_pipe(p) < 0)
2228 if (doexec && PerlProc_pipe(pp) >= 0)
2230 while ((pid = (doexec?vfork():fork())) < 0) {
2231 if (errno != EAGAIN) {
2232 PerlLIO_close(p[This]);
2234 PerlLIO_close(pp[0]);
2235 PerlLIO_close(pp[1]);
2238 Perl_croak(aTHX_ "Can't fork");
2250 PerlLIO_close(p[THAT]);
2252 PerlLIO_close(pp[0]);
2253 #if defined(HAS_FCNTL) && defined(F_SETFD)
2254 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2257 if (p[THIS] != (*mode == 'r')) {
2258 PerlLIO_dup2(p[THIS], *mode == 'r');
2259 PerlLIO_close(p[THIS]);
2263 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2269 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2273 do_exec3(cmd,pp[1],did_pipes); /* may or may not use the shell */
2276 #endif /* defined OS2 */
2278 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
2279 sv_setiv(GvSV(tmpgv), (IV)getpid());
2281 hv_clear(PL_pidstatus); /* we have no children */
2286 do_execfree(); /* free any memory malloced by child on vfork */
2287 PerlLIO_close(p[that]);
2289 PerlLIO_close(pp[1]);
2290 if (p[that] < p[This]) {
2291 PerlLIO_dup2(p[This], p[that]);
2292 PerlLIO_close(p[This]);
2295 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2296 (void)SvUPGRADE(sv,SVt_IV);
2298 PL_forkprocess = pid;
2299 if (did_pipes && pid > 0) {
2303 while (n < sizeof(int)) {
2304 n1 = PerlLIO_read(pp[0],
2305 (void*)(((char*)&errkid)+n),
2311 PerlLIO_close(pp[0]);
2313 if (n) { /* Error */
2314 if (n != sizeof(int))
2315 Perl_croak(aTHX_ "panic: kid popen errno read");
2316 errno = errkid; /* Propagate errno from kid */
2321 PerlLIO_close(pp[0]);
2322 return PerlIO_fdopen(p[This], mode);
2325 #if defined(atarist) || defined(DJGPP)
2328 Perl_my_popen(pTHX_ char *cmd, char *mode)
2330 /* Needs work for PerlIO ! */
2331 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2332 PERL_FLUSHALL_FOR_CHILD;
2333 return popen(PerlIO_exportFILE(cmd, 0), mode);
2337 #endif /* !DOSISH */
2341 Perl_dump_fds(pTHX_ char *s)
2344 struct stat tmpstatbuf;
2346 PerlIO_printf(PerlIO_stderr(),"%s", s);
2347 for (fd = 0; fd < 32; fd++) {
2348 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2349 PerlIO_printf(PerlIO_stderr()," %d",fd);
2351 PerlIO_printf(PerlIO_stderr(),"\n");
2353 #endif /* DUMP_FDS */
2357 dup2(int oldfd, int newfd)
2359 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2362 PerlLIO_close(newfd);
2363 return fcntl(oldfd, F_DUPFD, newfd);
2365 #define DUP2_MAX_FDS 256
2366 int fdtmp[DUP2_MAX_FDS];
2372 PerlLIO_close(newfd);
2373 /* good enough for low fd's... */
2374 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2375 if (fdx >= DUP2_MAX_FDS) {
2383 PerlLIO_close(fdtmp[--fdx]);
2390 #ifdef HAS_SIGACTION
2393 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2395 struct sigaction act, oact;
2397 act.sa_handler = handler;
2398 sigemptyset(&act.sa_mask);
2401 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2404 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2405 act.sa_flags |= SA_NOCLDWAIT;
2407 if (sigaction(signo, &act, &oact) == -1)
2410 return oact.sa_handler;
2414 Perl_rsignal_state(pTHX_ int signo)
2416 struct sigaction oact;
2418 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2421 return oact.sa_handler;
2425 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2427 struct sigaction act;
2429 act.sa_handler = handler;
2430 sigemptyset(&act.sa_mask);
2433 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2436 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2437 act.sa_flags |= SA_NOCLDWAIT;
2439 return sigaction(signo, &act, save);
2443 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2445 return sigaction(signo, save, (struct sigaction *)NULL);
2448 #else /* !HAS_SIGACTION */
2451 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2453 return PerlProc_signal(signo, handler);
2456 static int sig_trapped;
2466 Perl_rsignal_state(pTHX_ int signo)
2468 Sighandler_t oldsig;
2471 oldsig = PerlProc_signal(signo, sig_trap);
2472 PerlProc_signal(signo, oldsig);
2474 PerlProc_kill(getpid(), signo);
2479 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2481 *save = PerlProc_signal(signo, handler);
2482 return (*save == SIG_ERR) ? -1 : 0;
2486 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2488 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2491 #endif /* !HAS_SIGACTION */
2493 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2494 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC)
2496 Perl_my_pclose(pTHX_ PerlIO *ptr)
2498 Sigsave_t hstat, istat, qstat;
2506 int saved_vaxc_errno;
2509 int saved_win32_errno;
2512 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2513 pid = (int)SvIVX(*svp);
2515 *svp = &PL_sv_undef;
2517 if (pid == -1) { /* Opened by popen. */
2518 return my_syspclose(ptr);
2521 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2522 saved_errno = errno;
2524 saved_vaxc_errno = vaxc$errno;
2527 saved_win32_errno = GetLastError();
2531 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2533 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2534 rsignal_save(SIGINT, SIG_IGN, &istat);
2535 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2537 pid2 = wait4pid(pid, &status, 0);
2538 } while (pid2 == -1 && errno == EINTR);
2539 rsignal_restore(SIGHUP, &hstat);
2540 rsignal_restore(SIGINT, &istat);
2541 rsignal_restore(SIGQUIT, &qstat);
2543 SETERRNO(saved_errno, saved_vaxc_errno);
2546 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2548 #endif /* !DOSISH */
2550 #if !defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(CYGWIN32)
2552 Perl_wait4pid(pTHX_ int pid, int *statusp, int flags)
2556 char spid[TYPE_CHARS(int)];
2561 sprintf(spid, "%d", pid);
2562 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2563 if (svp && *svp != &PL_sv_undef) {
2564 *statusp = SvIVX(*svp);
2565 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2572 hv_iterinit(PL_pidstatus);
2573 if (entry = hv_iternext(PL_pidstatus)) {
2574 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2575 sv = hv_iterval(PL_pidstatus,entry);
2576 *statusp = SvIVX(sv);
2577 sprintf(spid, "%d", pid);
2578 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2583 # ifdef HAS_WAITPID_RUNTIME
2584 if (!HAS_WAITPID_RUNTIME)
2587 return PerlProc_waitpid(pid,statusp,flags);
2589 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2590 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2592 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2597 Perl_croak(aTHX_ "Can't do waitpid with flags");
2599 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2600 pidgone(result,*statusp);
2608 #endif /* !DOSISH || OS2 || WIN32 */
2612 Perl_pidgone(pTHX_ int pid, int status)
2615 char spid[TYPE_CHARS(int)];
2617 sprintf(spid, "%d", pid);
2618 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2619 (void)SvUPGRADE(sv,SVt_IV);
2624 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2627 int /* Cannot prototype with I32
2629 my_syspclose(PerlIO *ptr)
2632 Perl_my_pclose(pTHX_ PerlIO *ptr)
2635 /* Needs work for PerlIO ! */
2636 FILE *f = PerlIO_findFILE(ptr);
2637 I32 result = pclose(f);
2638 PerlIO_releaseFILE(ptr,f);
2644 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2647 register const char *frombase = from;
2650 register const char c = *from;
2655 while (count-- > 0) {
2656 for (todo = len; todo > 0; todo--) {
2664 Perl_cast_ulong(pTHX_ NV f)
2669 # define BIGDOUBLE 2147483648.0
2671 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2674 return (unsigned long)f;
2676 return (unsigned long)along;
2680 /* Unfortunately, on some systems the cast_uv() function doesn't
2681 work with the system-supplied definition of ULONG_MAX. The
2682 comparison (f >= ULONG_MAX) always comes out true. It must be a
2683 problem with the compiler constant folding.
2685 In any case, this workaround should be fine on any two's complement
2686 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2688 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2691 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2693 -- Kenneth Albanowski <kjahds@kjahds.com>
2697 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2701 Perl_cast_i32(pTHX_ NV f)
2704 return (I32) I32_MAX;
2706 return (I32) I32_MIN;
2711 Perl_cast_iv(pTHX_ NV f)
2716 if (f >= (NV)UV_MAX)
2727 Perl_cast_uv(pTHX_ NV f)
2730 return (UV) MY_UV_MAX;
2744 Perl_same_dirent(pTHX_ char *a, char *b)
2746 char *fa = strrchr(a,'/');
2747 char *fb = strrchr(b,'/');
2748 struct stat tmpstatbuf1;
2749 struct stat tmpstatbuf2;
2750 SV *tmpsv = sv_newmortal();
2763 sv_setpv(tmpsv, ".");
2765 sv_setpvn(tmpsv, a, fa - a);
2766 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2769 sv_setpv(tmpsv, ".");
2771 sv_setpvn(tmpsv, b, fb - b);
2772 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2774 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2775 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2777 #endif /* !HAS_RENAME */
2780 Perl_scan_bin(pTHX_ char *start, I32 len, I32 *retlen)
2782 register char *s = start;
2783 register UV retval = 0;
2784 bool overflowed = FALSE;
2785 while (len && *s >= '0' && *s <= '1') {
2786 register UV n = retval << 1;
2787 if (!overflowed && (n >> 1) != retval) {
2789 if (ckWARN_d(WARN_UNSAFE))
2790 Perl_warner(aTHX_ WARN_UNSAFE, "Integer overflow in binary number");
2793 retval = n | (*s++ - '0');
2796 if (len && (*s >= '2' && *s <= '9')) {
2798 if (ckWARN(WARN_UNSAFE))
2799 Perl_warner(aTHX_ WARN_UNSAFE, "Illegal binary digit '%c' ignored", *s);
2801 *retlen = s - start;
2805 Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen)
2807 register char *s = start;
2808 register UV retval = 0;
2809 bool overflowed = FALSE;
2811 while (len && *s >= '0' && *s <= '7') {
2812 register UV n = retval << 3;
2813 if (!overflowed && (n >> 3) != retval) {
2815 if (ckWARN_d(WARN_UNSAFE))
2816 Perl_warner(aTHX_ WARN_UNSAFE, "Integer overflow in octal number");
2819 retval = n | (*s++ - '0');
2822 if (len && (*s == '8' || *s == '9')) {
2824 if (ckWARN(WARN_OCTAL))
2825 Perl_warner(aTHX_ WARN_OCTAL, "Illegal octal digit '%c' ignored", *s);
2827 *retlen = s - start;
2832 Perl_scan_hex(pTHX_ char *start, I32 len, I32 *retlen)
2834 register char *s = start;
2835 register UV retval = 0;
2836 bool overflowed = FALSE;
2840 while (len-- && *s) {
2841 tmp = strchr((char *) PL_hexdigit, *s++);
2843 if (*(s-1) == '_' || (*(s-1) == 'x' && retval == 0))
2848 if (ckWARN(WARN_UNSAFE))
2849 Perl_warner(aTHX_ WARN_UNSAFE,"Illegal hexadecimal digit '%c' ignored", *s);
2854 if (!overflowed && (n >> 4) != retval) {
2856 if (ckWARN_d(WARN_UNSAFE))
2857 Perl_warner(aTHX_ WARN_UNSAFE, "Integer overflow in hexadecimal number");
2860 retval = n | ((tmp - PL_hexdigit) & 15);
2862 *retlen = s - start;
2867 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
2870 char *xfound = Nullch;
2871 char *xfailed = Nullch;
2872 char tmpbuf[MAXPATHLEN];
2876 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2877 # define SEARCH_EXTS ".bat", ".cmd", NULL
2878 # define MAX_EXT_LEN 4
2881 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2882 # define MAX_EXT_LEN 4
2885 # define SEARCH_EXTS ".pl", ".com", NULL
2886 # define MAX_EXT_LEN 4
2888 /* additional extensions to try in each dir if scriptname not found */
2890 char *exts[] = { SEARCH_EXTS };
2891 char **ext = search_ext ? search_ext : exts;
2892 int extidx = 0, i = 0;
2893 char *curext = Nullch;
2895 # define MAX_EXT_LEN 0
2899 * If dosearch is true and if scriptname does not contain path
2900 * delimiters, search the PATH for scriptname.
2902 * If SEARCH_EXTS is also defined, will look for each
2903 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2904 * while searching the PATH.
2906 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2907 * proceeds as follows:
2908 * If DOSISH or VMSISH:
2909 * + look for ./scriptname{,.foo,.bar}
2910 * + search the PATH for scriptname{,.foo,.bar}
2913 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2914 * this will not look in '.' if it's not in the PATH)
2919 # ifdef ALWAYS_DEFTYPES
2920 len = strlen(scriptname);
2921 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2922 int hasdir, idx = 0, deftypes = 1;
2925 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2928 int hasdir, idx = 0, deftypes = 1;
2931 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2933 /* The first time through, just add SEARCH_EXTS to whatever we
2934 * already have, so we can check for default file types. */
2936 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
2942 if ((strlen(tmpbuf) + strlen(scriptname)
2943 + MAX_EXT_LEN) >= sizeof tmpbuf)
2944 continue; /* don't search dir with too-long name */
2945 strcat(tmpbuf, scriptname);
2949 if (strEQ(scriptname, "-"))
2951 if (dosearch) { /* Look in '.' first. */
2952 char *cur = scriptname;
2954 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2956 if (strEQ(ext[i++],curext)) {
2957 extidx = -1; /* already has an ext */
2962 DEBUG_p(PerlIO_printf(Perl_debug_log,
2963 "Looking for %s\n",cur));
2964 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2965 && !S_ISDIR(PL_statbuf.st_mode)) {
2973 if (cur == scriptname) {
2974 len = strlen(scriptname);
2975 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
2977 cur = strcpy(tmpbuf, scriptname);
2979 } while (extidx >= 0 && ext[extidx] /* try an extension? */
2980 && strcpy(tmpbuf+len, ext[extidx++]));
2985 if (dosearch && !strchr(scriptname, '/')
2987 && !strchr(scriptname, '\\')
2989 && (s = PerlEnv_getenv("PATH"))) {
2992 PL_bufend = s + strlen(s);
2993 while (s < PL_bufend) {
2994 #if defined(atarist) || defined(DOSISH)
2999 && *s != ';'; len++, s++) {
3000 if (len < sizeof tmpbuf)
3003 if (len < sizeof tmpbuf)
3005 #else /* ! (atarist || DOSISH) */
3006 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3009 #endif /* ! (atarist || DOSISH) */
3012 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3013 continue; /* don't search dir with too-long name */
3015 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3016 && tmpbuf[len - 1] != '/'
3017 && tmpbuf[len - 1] != '\\'
3020 tmpbuf[len++] = '/';
3021 if (len == 2 && tmpbuf[0] == '.')
3023 (void)strcpy(tmpbuf + len, scriptname);
3027 len = strlen(tmpbuf);
3028 if (extidx > 0) /* reset after previous loop */
3032 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3033 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3034 if (S_ISDIR(PL_statbuf.st_mode)) {
3038 } while ( retval < 0 /* not there */
3039 && extidx>=0 && ext[extidx] /* try an extension? */
3040 && strcpy(tmpbuf+len, ext[extidx++])
3045 if (S_ISREG(PL_statbuf.st_mode)
3046 && cando(S_IRUSR,TRUE,&PL_statbuf)
3048 && cando(S_IXUSR,TRUE,&PL_statbuf)
3052 xfound = tmpbuf; /* bingo! */
3056 xfailed = savepv(tmpbuf);
3059 if (!xfound && !seen_dot && !xfailed &&
3060 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
3061 || S_ISDIR(PL_statbuf.st_mode)))
3063 seen_dot = 1; /* Disable message. */
3065 if (flags & 1) { /* do or die? */
3066 Perl_croak(aTHX_ "Can't %s %s%s%s",
3067 (xfailed ? "execute" : "find"),
3068 (xfailed ? xfailed : scriptname),
3069 (xfailed ? "" : " on PATH"),
3070 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3072 scriptname = Nullch;
3076 scriptname = xfound;
3078 return (scriptname ? savepv(scriptname) : Nullch);
3084 /* Very simplistic scheduler for now */
3088 thr = thr->i.next_run;
3092 Perl_cond_init(pTHX_ perl_cond *cp)
3098 Perl_cond_signal(pTHX_ perl_cond *cp)
3101 perl_cond cond = *cp;
3106 /* Insert t in the runnable queue just ahead of us */
3107 t->i.next_run = thr->i.next_run;
3108 thr->i.next_run->i.prev_run = t;
3109 t->i.prev_run = thr;
3110 thr->i.next_run = t;
3111 thr->i.wait_queue = 0;
3112 /* Remove from the wait queue */
3118 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3121 perl_cond cond, cond_next;
3123 for (cond = *cp; cond; cond = cond_next) {
3125 /* Insert t in the runnable queue just ahead of us */
3126 t->i.next_run = thr->i.next_run;
3127 thr->i.next_run->i.prev_run = t;
3128 t->i.prev_run = thr;
3129 thr->i.next_run = t;
3130 thr->i.wait_queue = 0;
3131 /* Remove from the wait queue */
3132 cond_next = cond->next;
3139 Perl_cond_wait(pTHX_ perl_cond *cp)
3143 if (thr->i.next_run == thr)
3144 Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3146 New(666, cond, 1, struct perl_wait_queue);
3150 thr->i.wait_queue = cond;
3151 /* Remove ourselves from runnable queue */
3152 thr->i.next_run->i.prev_run = thr->i.prev_run;
3153 thr->i.prev_run->i.next_run = thr->i.next_run;
3155 #endif /* FAKE_THREADS */
3157 #ifdef PTHREAD_GETSPECIFIC_INT
3158 struct perl_thread *
3163 if (pthread_getspecific(PL_thr_key, &t))
3164 Perl_croak(aTHX_ "panic: pthread_getspecific");
3165 return (struct perl_thread *) t;
3170 Perl_condpair_magic(pTHX_ SV *sv)
3174 SvUPGRADE(sv, SVt_PVMG);
3175 mg = mg_find(sv, 'm');
3179 New(53, cp, 1, condpair_t);
3180 MUTEX_INIT(&cp->mutex);
3181 COND_INIT(&cp->owner_cond);
3182 COND_INIT(&cp->cond);
3184 MUTEX_LOCK(&PL_cred_mutex); /* XXX need separate mutex? */
3185 mg = mg_find(sv, 'm');
3187 /* someone else beat us to initialising it */
3188 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
3189 MUTEX_DESTROY(&cp->mutex);
3190 COND_DESTROY(&cp->owner_cond);
3191 COND_DESTROY(&cp->cond);
3195 sv_magic(sv, Nullsv, 'm', 0, 0);
3197 mg->mg_ptr = (char *)cp;
3198 mg->mg_len = sizeof(cp);
3199 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
3200 DEBUG_S(WITH_THR(PerlIO_printf(PerlIO_stderr(),
3201 "%p: condpair_magic %p\n", thr, sv));)
3208 * Make a new perl thread structure using t as a prototype. Some of the
3209 * fields for the new thread are copied from the prototype thread, t,
3210 * so t should not be running in perl at the time this function is
3211 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3212 * thread calling new_struct_thread) clearly satisfies this constraint.
3214 struct perl_thread *
3215 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3217 #if !defined(PERL_IMPLICIT_CONTEXT)
3218 struct perl_thread *thr;
3224 sv = newSVpvn("", 0);
3225 SvGROW(sv, sizeof(struct perl_thread) + 1);
3226 SvCUR_set(sv, sizeof(struct perl_thread));
3227 thr = (Thread) SvPVX(sv);
3229 memset(thr, 0xab, sizeof(struct perl_thread));
3236 Zero(&PL_hv_fetch_ent_mh, 1, HE);
3238 Zero(thr, 1, struct perl_thread);
3241 PL_protect = MEMBER_TO_FPTR(Perl_default_protect);
3246 PL_curcop = &PL_compiling;
3247 thr->interp = t->interp;
3248 thr->cvcache = newHV();
3249 thr->threadsv = newAV();
3250 thr->specific = newAV();
3251 thr->errsv = newSVpvn("", 0);
3252 thr->errhv = newHV();
3253 thr->flags = THRf_R_JOINABLE;
3254 MUTEX_INIT(&thr->mutex);
3256 /* top_env needs to be non-zero. It points to an area
3257 in which longjmp() stuff is stored, as C callstack
3258 info there at least is thread specific this has to
3259 be per-thread. Otherwise a 'die' in a thread gives
3260 that thread the C stack of last thread to do an eval {}!
3261 See comments in scope.h
3262 Initialize top entry (as in perl.c for main thread)
3264 PL_start_env.je_prev = NULL;
3265 PL_start_env.je_ret = -1;
3266 PL_start_env.je_mustcatch = TRUE;
3267 PL_top_env = &PL_start_env;
3269 PL_in_eval = EVAL_NULL; /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
3272 PL_statname = NEWSV(66,0);
3274 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3275 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3276 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3277 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3278 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3280 PL_reginterp_cnt = 0;
3281 PL_lastscream = Nullsv;
3284 PL_reg_start_tmp = 0;
3285 PL_reg_start_tmpl = 0;
3287 /* parent thread's data needs to be locked while we make copy */
3288 MUTEX_LOCK(&t->mutex);
3290 PL_protect = t->Tprotect;
3292 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
3293 PL_defstash = t->Tdefstash; /* XXX maybe these should */
3294 PL_curstash = t->Tcurstash; /* always be set to main? */
3296 PL_tainted = t->Ttainted;
3297 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
3298 PL_nrs = newSVsv(t->Tnrs);
3299 PL_rs = SvREFCNT_inc(PL_nrs);
3300 PL_last_in_gv = Nullgv;
3301 PL_ofslen = t->Tofslen;
3302 PL_ofs = savepvn(t->Tofs, PL_ofslen);
3303 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3304 PL_chopset = t->Tchopset;
3305 PL_formtarget = newSVsv(t->Tformtarget);
3306 PL_bodytarget = newSVsv(t->Tbodytarget);
3307 PL_toptarget = newSVsv(t->Ttoptarget);
3309 /* Initialise all per-thread SVs that the template thread used */
3310 svp = AvARRAY(t->threadsv);
3311 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3312 if (*svp && *svp != &PL_sv_undef) {
3313 SV *sv = newSVsv(*svp);
3314 av_store(thr->threadsv, i, sv);
3315 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3316 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
3317 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
3320 thr->threadsvp = AvARRAY(thr->threadsv);
3322 MUTEX_LOCK(&PL_threads_mutex);
3324 thr->tid = ++PL_threadnum;
3325 thr->next = t->next;
3328 thr->next->prev = thr;
3329 MUTEX_UNLOCK(&PL_threads_mutex);
3331 /* done copying parent's state */
3332 MUTEX_UNLOCK(&t->mutex);
3334 #ifdef HAVE_THREAD_INTERN
3335 Perl_init_thread_intern(thr);
3336 #endif /* HAVE_THREAD_INTERN */
3339 #endif /* USE_THREADS */
3343 * This hack is to force load of "huge" support from libm.a
3344 * So it is in perl for (say) POSIX to use.
3345 * Needed for SunOS with Sun's 'acc' for example.
3354 #ifdef PERL_GLOBAL_STRUCT
3363 Perl_get_op_names(pTHX)
3369 Perl_get_op_descs(pTHX)
3375 Perl_get_no_modify(pTHX)
3377 return (char*)PL_no_modify;
3381 Perl_get_opargs(pTHX)
3387 Perl_get_ppaddr(pTHX)
3392 #ifndef HAS_GETENV_LEN
3394 Perl_getenv_len(pTHX_ char *env_elem, unsigned long *len)
3396 char *env_trans = PerlEnv_getenv(env_elem);
3398 *len = strlen(env_trans);
3405 Perl_get_vtbl(pTHX_ int vtbl_id)
3407 MGVTBL* result = Null(MGVTBL*);
3411 result = &PL_vtbl_sv;
3414 result = &PL_vtbl_env;
3416 case want_vtbl_envelem:
3417 result = &PL_vtbl_envelem;
3420 result = &PL_vtbl_sig;
3422 case want_vtbl_sigelem:
3423 result = &PL_vtbl_sigelem;
3425 case want_vtbl_pack:
3426 result = &PL_vtbl_pack;
3428 case want_vtbl_packelem:
3429 result = &PL_vtbl_packelem;
3431 case want_vtbl_dbline:
3432 result = &PL_vtbl_dbline;
3435 result = &PL_vtbl_isa;
3437 case want_vtbl_isaelem:
3438 result = &PL_vtbl_isaelem;
3440 case want_vtbl_arylen:
3441 result = &PL_vtbl_arylen;
3443 case want_vtbl_glob:
3444 result = &PL_vtbl_glob;
3446 case want_vtbl_mglob:
3447 result = &PL_vtbl_mglob;
3449 case want_vtbl_nkeys:
3450 result = &PL_vtbl_nkeys;
3452 case want_vtbl_taint:
3453 result = &PL_vtbl_taint;
3455 case want_vtbl_substr:
3456 result = &PL_vtbl_substr;
3459 result = &PL_vtbl_vec;
3462 result = &PL_vtbl_pos;
3465 result = &PL_vtbl_bm;
3468 result = &PL_vtbl_fm;
3470 case want_vtbl_uvar:
3471 result = &PL_vtbl_uvar;
3474 case want_vtbl_mutex:
3475 result = &PL_vtbl_mutex;
3478 case want_vtbl_defelem:
3479 result = &PL_vtbl_defelem;
3481 case want_vtbl_regexp:
3482 result = &PL_vtbl_regexp;
3484 case want_vtbl_regdata:
3485 result = &PL_vtbl_regdata;
3487 case want_vtbl_regdatum:
3488 result = &PL_vtbl_regdatum;
3490 #ifdef USE_LOCALE_COLLATE
3491 case want_vtbl_collxfrm:
3492 result = &PL_vtbl_collxfrm;
3495 case want_vtbl_amagic:
3496 result = &PL_vtbl_amagic;
3498 case want_vtbl_amagicelem:
3499 result = &PL_vtbl_amagicelem;
3501 case want_vtbl_backref:
3502 result = &PL_vtbl_backref;
3509 Perl_my_fflush_all(pTHX)
3512 return PerlIO_flush(NULL);
3515 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3516 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3517 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3519 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3520 open_max = sysconf(_SC_OPEN_MAX);
3523 open_max = FOPEN_MAX;
3526 open_max = OPEN_MAX;
3537 for (i = 0; i < open_max; i++)
3538 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3539 STDIO_STREAM_ARRAY[i]._file < open_max &&
3540 STDIO_STREAM_ARRAY[i]._flag)
3541 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3545 SETERRNO(EBADF,RMS$_IFI);
3551 Perl_my_atof(pTHX_ const char* s) {
3552 #ifdef USE_LOCALE_NUMERIC
3553 if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3557 SET_NUMERIC_STANDARD();
3559 SET_NUMERIC_LOCAL();
3560 if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3565 return Perl_atof(s);
3567 return Perl_atof(s);