3 * Copyright (c) 1991-1997, 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
18 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
23 # define SIG_ERR ((Sighandler_t) -1)
26 /* XXX If this causes problems, set i_unistd=undef in the hint file. */
35 /* Put this after #includes because fork and vfork prototypes may
46 # include <sys/file.h>
50 # include <sys/wait.h>
57 static void xstat _((int));
58 long xcount[MAXXCOUNT];
59 long lastxcount[MAXXCOUNT];
60 long xycount[MAXXCOUNT][MAXYCOUNT];
61 long lastxycount[MAXXCOUNT][MAXYCOUNT];
67 /* paranoid version of malloc */
69 /* NOTE: Do not call the next three routines directly. Use the macros
70 * in handy.h, so that we can easily redefine everything to do tracking of
71 * allocated hunks back to the original New to track down any memory leaks.
72 * XXX This advice seems to be widely ignored :-( --AD August 1996.
76 safemalloc(MEM_SIZE size)
81 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
84 #endif /* HAS_64K_LIMIT */
87 croak("panic: malloc");
89 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
90 #if !(defined(I286) || defined(atarist))
91 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
93 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
100 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
107 /* paranoid version of realloc */
110 saferealloc(Malloc_t where,MEM_SIZE size)
113 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
114 Malloc_t PerlMem_realloc();
115 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
119 PerlIO_printf(PerlIO_stderr(),
120 "Reallocation too large: %lx\n", size) FLUSH;
123 #endif /* HAS_64K_LIMIT */
130 return safemalloc(size);
133 croak("panic: realloc");
135 ptr = PerlMem_realloc(where,size);
137 #if !(defined(I286) || defined(atarist))
139 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,PL_an++);
140 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
144 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,an++);
145 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
154 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
161 /* safe version of free */
164 safefree(Malloc_t where)
166 #if !(defined(I286) || defined(atarist))
167 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,PL_an++));
169 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,an++));
177 /* safe version of calloc */
180 safecalloc(MEM_SIZE count, MEM_SIZE size)
185 if (size * count > 0xffff) {
186 PerlIO_printf(PerlIO_stderr(),
187 "Allocation too large: %lx\n", size * count) FLUSH;
190 #endif /* HAS_64K_LIMIT */
192 if ((long)size < 0 || (long)count < 0)
193 croak("panic: calloc");
196 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
197 #if !(defined(I286) || defined(atarist))
198 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
200 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
203 memset((void*)ptr, 0, size);
209 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
216 #endif /* !MYMALLOC */
220 struct mem_test_strut {
228 # define ALIGN sizeof(struct mem_test_strut)
230 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
231 # define typeof_chunk(ch) \
232 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
233 # define set_typeof_chunk(ch,t) \
234 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
235 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
238 ? ((size) - 1)/8 + 5 \
242 safexmalloc(I32 x, MEM_SIZE size)
244 register char* where = (char*)safemalloc(size + ALIGN);
247 xycount[x][SIZE_TO_Y(size)]++;
248 set_typeof_chunk(where, x);
249 sizeof_chunk(where) = size;
250 return (Malloc_t)(where + ALIGN);
254 safexrealloc(Malloc_t wh, MEM_SIZE size)
256 char *where = (char*)wh;
259 return safexmalloc(0,size);
262 MEM_SIZE old = sizeof_chunk(where - ALIGN);
263 int t = typeof_chunk(where - ALIGN);
264 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
266 xycount[t][SIZE_TO_Y(old)]--;
267 xycount[t][SIZE_TO_Y(size)]++;
268 xcount[t] += size - old;
269 sizeof_chunk(new) = size;
270 return (Malloc_t)(new + ALIGN);
275 safexfree(Malloc_t wh)
278 char *where = (char*)wh;
284 size = sizeof_chunk(where);
285 x = where[0] + 100 * where[1];
287 xycount[x][SIZE_TO_Y(size)]--;
292 safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
294 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
296 xycount[x][SIZE_TO_Y(size)]++;
297 memset((void*)(where + ALIGN), 0, size * count);
298 set_typeof_chunk(where, x);
299 sizeof_chunk(where) = size;
300 return (Malloc_t)(where + ALIGN);
306 register I32 i, j, total = 0;
307 I32 subtot[MAXYCOUNT];
309 for (j = 0; j < MAXYCOUNT; j++) {
313 PerlIO_printf(PerlIO_stderr(), " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
314 for (i = 0; i < MAXXCOUNT; i++) {
316 for (j = 0; j < MAXYCOUNT; j++) {
317 subtot[j] += xycount[i][j];
320 ? xcount[i] /* Have something */
322 ? xcount[i] != lastxcount[i] /* Changed */
323 : xcount[i] > lastxcount[i])) { /* Growed */
324 PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100,
325 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
326 lastxcount[i] = xcount[i];
327 for (j = 0; j < MAXYCOUNT; j++) {
329 ? xycount[i][j] /* Have something */
331 ? xycount[i][j] != lastxycount[i][j] /* Changed */
332 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
333 PerlIO_printf(PerlIO_stderr(),"%3ld ",
335 ? xycount[i][j] - lastxycount[i][j]
337 lastxycount[i][j] = xycount[i][j];
339 PerlIO_printf(PerlIO_stderr(), " . ", xycount[i][j]);
342 PerlIO_printf(PerlIO_stderr(), "\n");
346 PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
347 for (j = 0; j < MAXYCOUNT; j++) {
349 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
351 PerlIO_printf(PerlIO_stderr(), " . ");
354 PerlIO_printf(PerlIO_stderr(), "\n");
358 #endif /* LEAKTEST */
360 /* copy a string up to some (non-backslashed) delimiter, if any */
363 delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
366 for (tolen = 0; from < fromend; from++, tolen++) {
368 if (from[1] == delim)
377 else if (*from == delim)
388 /* return ptr to little string in big string, NULL if not found */
389 /* This routine was donated by Corey Satten. */
392 instr(register char *big, register char *little)
394 register char *s, *x;
405 for (x=big,s=little; *s; /**/ ) {
419 /* same as instr but allow embedded nulls */
422 ninstr(register char *big, register char *bigend, char *little, char *lend)
424 register char *s, *x;
425 register I32 first = *little;
426 register char *littleend = lend;
428 if (!first && little >= littleend)
430 if (bigend - big < littleend - little)
432 bigend -= littleend - little++;
433 while (big <= bigend) {
436 for (x=big,s=little; s < littleend; /**/ ) {
448 /* reverse of the above--find last substring */
451 rninstr(register char *big, char *bigend, char *little, char *lend)
453 register char *bigbeg;
454 register char *s, *x;
455 register I32 first = *little;
456 register char *littleend = lend;
458 if (!first && little >= littleend)
461 big = bigend - (littleend - little++);
462 while (big >= bigbeg) {
465 for (x=big+2,s=little; s < littleend; /**/ ) {
478 * Set up for a new ctype locale.
481 perl_new_ctype(char *newctype)
483 #ifdef USE_LOCALE_CTYPE
487 for (i = 0; i < 256; i++) {
489 fold_locale[i] = toLOWER_LC(i);
490 else if (isLOWER_LC(i))
491 fold_locale[i] = toUPPER_LC(i);
496 #endif /* USE_LOCALE_CTYPE */
500 * Set up for a new collation locale.
503 perl_new_collate(char *newcoll)
505 #ifdef USE_LOCALE_COLLATE
508 if (PL_collation_name) {
510 Safefree(PL_collation_name);
511 PL_collation_name = NULL;
512 PL_collation_standard = TRUE;
513 PL_collxfrm_base = 0;
514 PL_collxfrm_mult = 2;
519 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
521 Safefree(PL_collation_name);
522 PL_collation_name = savepv(newcoll);
523 PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
526 /* 2: at most so many chars ('a', 'b'). */
527 /* 50: surely no system expands a char more. */
528 #define XFRMBUFSIZE (2 * 50)
529 char xbuf[XFRMBUFSIZE];
530 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
531 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
532 SSize_t mult = fb - fa;
534 croak("strxfrm() gets absurd");
535 PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
536 PL_collxfrm_mult = mult;
540 #endif /* USE_LOCALE_COLLATE */
544 * Set up for a new numeric locale.
547 perl_new_numeric(char *newnum)
549 #ifdef USE_LOCALE_NUMERIC
552 if (PL_numeric_name) {
553 Safefree(PL_numeric_name);
554 PL_numeric_name = NULL;
555 PL_numeric_standard = TRUE;
556 PL_numeric_local = TRUE;
561 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
562 Safefree(PL_numeric_name);
563 PL_numeric_name = savepv(newnum);
564 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
565 PL_numeric_local = TRUE;
568 #endif /* USE_LOCALE_NUMERIC */
572 perl_set_numeric_standard(void)
574 #ifdef USE_LOCALE_NUMERIC
576 if (! PL_numeric_standard) {
577 setlocale(LC_NUMERIC, "C");
578 PL_numeric_standard = TRUE;
579 PL_numeric_local = FALSE;
582 #endif /* USE_LOCALE_NUMERIC */
586 perl_set_numeric_local(void)
588 #ifdef USE_LOCALE_NUMERIC
590 if (! PL_numeric_local) {
591 setlocale(LC_NUMERIC, PL_numeric_name);
592 PL_numeric_standard = FALSE;
593 PL_numeric_local = TRUE;
596 #endif /* USE_LOCALE_NUMERIC */
601 * Initialize locale awareness.
604 perl_init_i18nl10n(int printwarn)
608 * 1 = set ok or not applicable,
609 * 0 = fallback to C locale,
610 * -1 = fallback to C locale failed
615 #ifdef USE_LOCALE_CTYPE
616 char *curctype = NULL;
617 #endif /* USE_LOCALE_CTYPE */
618 #ifdef USE_LOCALE_COLLATE
619 char *curcoll = NULL;
620 #endif /* USE_LOCALE_COLLATE */
621 #ifdef USE_LOCALE_NUMERIC
623 #endif /* USE_LOCALE_NUMERIC */
624 char *lc_all = PerlEnv_getenv("LC_ALL");
625 char *lang = PerlEnv_getenv("LANG");
626 bool setlocale_failure = FALSE;
628 #ifdef LOCALE_ENVIRON_REQUIRED
631 * Ultrix setlocale(..., "") fails if there are no environment
632 * variables from which to get a locale name.
639 if (setlocale(LC_ALL, ""))
642 setlocale_failure = TRUE;
644 if (!setlocale_failure)
647 #ifdef USE_LOCALE_CTYPE
648 if (! (curctype = setlocale(LC_CTYPE,
649 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
651 setlocale_failure = TRUE;
652 #endif /* USE_LOCALE_CTYPE */
653 #ifdef USE_LOCALE_COLLATE
654 if (! (curcoll = setlocale(LC_COLLATE,
655 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
657 setlocale_failure = TRUE;
658 #endif /* USE_LOCALE_COLLATE */
659 #ifdef USE_LOCALE_NUMERIC
660 if (! (curnum = setlocale(LC_NUMERIC,
661 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
663 setlocale_failure = TRUE;
664 #endif /* USE_LOCALE_NUMERIC */
667 #else /* !LOCALE_ENVIRON_REQUIRED */
671 if (! setlocale(LC_ALL, ""))
672 setlocale_failure = TRUE;
674 #ifdef USE_LOCALE_CTYPE
675 curctype = setlocale(LC_CTYPE, Nullch);
676 #endif /* USE_LOCALE_CTYPE */
677 #ifdef USE_LOCALE_COLLATE
678 curcoll = setlocale(LC_COLLATE, Nullch);
679 #endif /* USE_LOCALE_COLLATE */
680 #ifdef USE_LOCALE_NUMERIC
681 curnum = setlocale(LC_NUMERIC, Nullch);
682 #endif /* USE_LOCALE_NUMERIC */
687 #ifdef USE_LOCALE_CTYPE
688 if (! (curctype = setlocale(LC_CTYPE, "")))
689 setlocale_failure = TRUE;
690 #endif /* USE_LOCALE_CTYPE */
691 #ifdef USE_LOCALE_COLLATE
692 if (! (curcoll = setlocale(LC_COLLATE, "")))
693 setlocale_failure = TRUE;
694 #endif /* USE_LOCALE_COLLATE */
695 #ifdef USE_LOCALE_NUMERIC
696 if (! (curnum = setlocale(LC_NUMERIC, "")))
697 setlocale_failure = TRUE;
698 #endif /* USE_LOCALE_NUMERIC */
702 #endif /* !LOCALE_ENVIRON_REQUIRED */
704 if (setlocale_failure) {
706 bool locwarn = (printwarn > 1 ||
708 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
713 PerlIO_printf(PerlIO_stderr(),
714 "perl: warning: Setting locale failed.\n");
718 PerlIO_printf(PerlIO_stderr(),
719 "perl: warning: Setting locale failed for the categories:\n\t");
720 #ifdef USE_LOCALE_CTYPE
722 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
723 #endif /* USE_LOCALE_CTYPE */
724 #ifdef USE_LOCALE_COLLATE
726 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
727 #endif /* USE_LOCALE_COLLATE */
728 #ifdef USE_LOCALE_NUMERIC
730 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
731 #endif /* USE_LOCALE_NUMERIC */
732 PerlIO_printf(PerlIO_stderr(), "\n");
736 PerlIO_printf(PerlIO_stderr(),
737 "perl: warning: Please check that your locale settings:\n");
739 PerlIO_printf(PerlIO_stderr(),
740 "\tLC_ALL = %c%s%c,\n",
742 lc_all ? lc_all : "unset",
747 for (e = environ; *e; e++) {
748 if (strnEQ(*e, "LC_", 3)
749 && strnNE(*e, "LC_ALL=", 7)
750 && (p = strchr(*e, '=')))
751 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
752 (int)(p - *e), *e, p + 1);
756 PerlIO_printf(PerlIO_stderr(),
759 lang ? lang : "unset",
762 PerlIO_printf(PerlIO_stderr(),
763 " are supported and installed on your system.\n");
768 if (setlocale(LC_ALL, "C")) {
770 PerlIO_printf(PerlIO_stderr(),
771 "perl: warning: Falling back to the standard locale (\"C\").\n");
776 PerlIO_printf(PerlIO_stderr(),
777 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
784 #ifdef USE_LOCALE_CTYPE
785 || !(curctype || setlocale(LC_CTYPE, "C"))
786 #endif /* USE_LOCALE_CTYPE */
787 #ifdef USE_LOCALE_COLLATE
788 || !(curcoll || setlocale(LC_COLLATE, "C"))
789 #endif /* USE_LOCALE_COLLATE */
790 #ifdef USE_LOCALE_NUMERIC
791 || !(curnum || setlocale(LC_NUMERIC, "C"))
792 #endif /* USE_LOCALE_NUMERIC */
796 PerlIO_printf(PerlIO_stderr(),
797 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
801 #endif /* ! LC_ALL */
803 #ifdef USE_LOCALE_CTYPE
804 curctype = setlocale(LC_CTYPE, Nullch);
805 #endif /* USE_LOCALE_CTYPE */
806 #ifdef USE_LOCALE_COLLATE
807 curcoll = setlocale(LC_COLLATE, Nullch);
808 #endif /* USE_LOCALE_COLLATE */
809 #ifdef USE_LOCALE_NUMERIC
810 curnum = setlocale(LC_NUMERIC, Nullch);
811 #endif /* USE_LOCALE_NUMERIC */
814 #ifdef USE_LOCALE_CTYPE
815 perl_new_ctype(curctype);
816 #endif /* USE_LOCALE_CTYPE */
818 #ifdef USE_LOCALE_COLLATE
819 perl_new_collate(curcoll);
820 #endif /* USE_LOCALE_COLLATE */
822 #ifdef USE_LOCALE_NUMERIC
823 perl_new_numeric(curnum);
824 #endif /* USE_LOCALE_NUMERIC */
826 #endif /* USE_LOCALE */
831 /* Backwards compatibility. */
833 perl_init_i18nl14n(int printwarn)
835 return perl_init_i18nl10n(printwarn);
838 #ifdef USE_LOCALE_COLLATE
841 * mem_collxfrm() is a bit like strxfrm() but with two important
842 * differences. First, it handles embedded NULs. Second, it allocates
843 * a bit more memory than needed for the transformed data itself.
844 * The real transformed data begins at offset sizeof(collationix).
845 * Please see sv_collxfrm() to see how this is used.
848 mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
851 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
853 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
854 /* the +1 is for the terminating NUL. */
856 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
857 New(171, xbuf, xAlloc, char);
861 *(U32*)xbuf = PL_collation_ix;
862 xout = sizeof(PL_collation_ix);
863 for (xin = 0; xin < len; ) {
867 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
870 if (xused < xAlloc - xout)
872 xAlloc = (2 * xAlloc) + 1;
873 Renew(xbuf, xAlloc, char);
878 xin += strlen(s + xin) + 1;
881 /* Embedded NULs are understood but silently skipped
882 * because they make no sense in locale collation. */
886 *xlen = xout - sizeof(PL_collation_ix);
895 #endif /* USE_LOCALE_COLLATE */
898 fbm_compile(SV *sv, U32 flags /* not used yet */)
900 register unsigned char *s;
901 register unsigned char *table;
903 register U32 len = SvCUR(sv);
907 sv_upgrade(sv, SVt_PVBM);
908 if (len > 255 || len == 0) /* TAIL might be on on a zero-length string. */
909 return; /* can't have offsets that big */
911 Sv_Grow(sv,len + 258);
912 table = (unsigned char*)(SvPVX(sv) + len + 1);
914 for (i = 0; i < 256; i++) {
918 while (s >= (unsigned char*)(SvPVX(sv)))
920 if (table[*s] == len)
925 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
928 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
929 for (i = 0; i < len; i++) {
930 if (freq[s[i]] < frequency) {
932 frequency = freq[s[i]];
935 BmRARE(sv) = s[rarest];
936 BmPREVIOUS(sv) = rarest;
937 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
941 fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
943 register unsigned char *s;
945 register I32 littlelen;
946 register unsigned char *little;
947 register unsigned char *table;
948 register unsigned char *olds;
949 register unsigned char *oldlittle;
951 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
953 char *l = SvPV(littlestr,len);
955 if (SvTAIL(littlestr)) { /* Can be only 0-len constant
956 substr => we can ignore SvVALID */
959 if ((s = (unsigned char*)ninstr((char*)big, (char*)bigend,
964 if (bigend > big && bigend[-1] == '\n')
965 return (char *)(bigend - 1);
967 return (char *) bigend;
971 return ninstr((char*)big,(char*)bigend, l, l + len);
974 littlelen = SvCUR(littlestr);
975 if (SvTAIL(littlestr) && !PL_multiline) { /* tail anchored? */
976 if (littlelen > bigend - big)
978 little = (unsigned char*)SvPVX(littlestr);
979 s = bigend - littlelen;
981 && bigend[-1] == '\n'
982 && s[-1] == *little && memEQ((char*)s - 1,(char*)little,littlelen))
983 return (char*)s - 1; /* how sweet it is */
984 else if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
985 return (char*)s; /* how sweet it is */
988 if (littlelen <= 2) {
989 unsigned char c1 = (unsigned char)SvPVX(littlestr)[0];
990 unsigned char c2 = (unsigned char)SvPVX(littlestr)[1];
991 /* This may do extra comparisons if littlelen == 2, but this
992 should be hidden in the noise since we do less indirection. */
996 while (s <= bigend) {
998 && (littlelen == 1 || s[1] == c2)
999 && (!SvTAIL(littlestr)
1001 || s[littlelen] == '\n')) /* Automatically multiline */
1009 table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
1010 if (--littlelen >= bigend - big)
1012 s = big + littlelen;
1013 oldlittle = little = table - 2;
1017 if (tmp = table[*s]) {
1019 if (bigend - s > tmp) {
1024 if ((s += tmp) < bigend)
1030 tmp = littlelen; /* less expensive than calling strncmp() */
1033 if (*--s == *--little)
1036 s = olds + 1; /* here we pay the price for failure */
1038 if (s < bigend) /* fake up continue to outer loop */
1042 if (SvTAIL(littlestr) /* automatically multiline */
1043 && olds + 1 != bigend
1052 /* start_shift, end_shift are positive quantities which give offsets
1053 of ends of some substring of bigstr.
1054 If `last' we want the last occurence.
1055 old_posp is the way of communication between consequent calls if
1056 the next call needs to find the .
1057 The initial *old_posp should be -1.
1058 Note that we do not take into account SvTAIL, so it may give wrong
1059 positives if _ALL flag is set.
1063 screaminstr(SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1066 register unsigned char *s, *x;
1067 register unsigned char *big;
1069 register I32 previous;
1071 register unsigned char *little;
1072 register I32 stop_pos;
1073 register unsigned char *littleend;
1077 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1078 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0))
1080 little = (unsigned char *)(SvPVX(littlestr));
1081 littleend = little + SvCUR(littlestr);
1083 /* The value of pos we can start at: */
1084 previous = BmPREVIOUS(littlestr);
1085 big = (unsigned char *)(SvPVX(bigstr));
1086 /* The value of pos we can stop at: */
1087 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1088 if (previous + start_shift > stop_pos) return Nullch;
1089 while (pos < previous + start_shift) {
1090 if (!(pos += PL_screamnext[pos]))
1095 if (pos >= stop_pos) break;
1096 if (big[pos-previous] != first)
1098 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1104 if (s == littleend) {
1106 if (!last) return (char *)(big+pos-previous);
1109 } while ( pos += screamnext[pos] );
1110 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1111 #else /* !POINTERRIGOR */
1114 if (pos >= stop_pos) break;
1115 if (big[pos] != first)
1117 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1123 if (s == littleend) {
1125 if (!last) return (char *)(big+pos);
1128 } while ( pos += PL_screamnext[pos] );
1129 return (last && found) ? (char *)(big+(*old_posp)) : Nullch;
1130 #endif /* POINTERRIGOR */
1134 ibcmp(char *s1, char *s2, register I32 len)
1136 register U8 *a = (U8 *)s1;
1137 register U8 *b = (U8 *)s2;
1139 if (*a != *b && *a != fold[*b])
1147 ibcmp_locale(char *s1, char *s2, register I32 len)
1149 register U8 *a = (U8 *)s1;
1150 register U8 *b = (U8 *)s2;
1152 if (*a != *b && *a != fold_locale[*b])
1159 /* copy a string to a safe spot */
1164 register char *newaddr;
1166 New(902,newaddr,strlen(sv)+1,char);
1167 (void)strcpy(newaddr,sv);
1171 /* same thing but with a known length */
1174 savepvn(char *sv, register I32 len)
1176 register char *newaddr;
1178 New(903,newaddr,len+1,char);
1179 Copy(sv,newaddr,len,char); /* might not be null terminated */
1180 newaddr[len] = '\0'; /* is now */
1184 /* the SV for form() and mess() is not kept in an arena */
1192 /* Create as PVMG now, to avoid any upgrading later */
1193 New(905, sv, 1, SV);
1194 Newz(905, any, 1, XPVMG);
1195 SvFLAGS(sv) = SVt_PVMG;
1196 SvANY(sv) = (void*)any;
1197 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1202 form(const char* pat, ...)
1205 va_start(args, pat);
1207 PL_mess_sv = mess_alloc();
1208 sv_vsetpvfn(PL_mess_sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1210 return SvPVX(PL_mess_sv);
1214 mess(const char *pat, va_list *args)
1217 static char dgd[] = " during global destruction.\n";
1220 PL_mess_sv = mess_alloc();
1222 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1223 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1228 if (PL_curcop->cop_line)
1229 sv_catpvf(sv, " at %_ line %ld",
1230 GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1231 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1232 bool line_mode = (RsSIMPLE(PL_rs) &&
1233 SvLEN(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1234 sv_catpvf(sv, ", <%s> %s %ld",
1235 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1236 line_mode ? "line" : "chunk",
1237 (long)IoLINES(GvIOp(PL_last_in_gv)));
1239 sv_catpv(sv, ".\n");
1246 die(const char* pat, ...)
1251 int was_in_eval = PL_in_eval;
1257 DEBUG_L(PerlIO_printf(PerlIO_stderr(),
1258 "%p: die: curstack = %p, mainstack = %p\n",
1259 thr, PL_curstack, PL_mainstack));
1260 #endif /* USE_THREADS */
1262 va_start(args, pat);
1263 message = pat ? mess(pat, &args) : Nullch;
1267 DEBUG_L(PerlIO_printf(PerlIO_stderr(),
1268 "%p: die: message = %s\ndiehook = %p\n",
1269 thr, message, PL_diehook));
1270 #endif /* USE_THREADS */
1272 /* sv_2cv might call croak() */
1273 SV *olddiehook = PL_diehook;
1275 SAVESPTR(PL_diehook);
1276 PL_diehook = Nullsv;
1277 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1279 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1285 msg = newSVpv(message, 0);
1293 PUSHSTACKi(PERLSI_DIEHOOK);
1297 perl_call_sv((SV*)cv, G_DISCARD);
1303 PL_restartop = die_where(message);
1305 DEBUG_L(PerlIO_printf(PerlIO_stderr(),
1306 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1307 thr, PL_restartop, was_in_eval, PL_top_env));
1308 #endif /* USE_THREADS */
1309 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1311 return PL_restartop;
1315 croak(const char* pat, ...)
1324 va_start(args, pat);
1325 message = mess(pat, &args);
1328 DEBUG_L(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1329 #endif /* USE_THREADS */
1331 /* sv_2cv might call croak() */
1332 SV *olddiehook = PL_diehook;
1334 SAVESPTR(PL_diehook);
1335 PL_diehook = Nullsv;
1336 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1338 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1343 msg = newSVpv(message, 0);
1347 PUSHSTACKi(PERLSI_DIEHOOK);
1351 perl_call_sv((SV*)cv, G_DISCARD);
1357 PL_restartop = die_where(message);
1360 PerlIO_puts(PerlIO_stderr(),message);
1361 (void)PerlIO_flush(PerlIO_stderr());
1366 warn(const char* pat,...)
1374 va_start(args, pat);
1375 message = mess(pat, &args);
1379 /* sv_2cv might call warn() */
1381 SV *oldwarnhook = PL_warnhook;
1383 SAVESPTR(PL_warnhook);
1384 PL_warnhook = Nullsv;
1385 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1387 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1392 msg = newSVpv(message, 0);
1396 PUSHSTACKi(PERLSI_WARNHOOK);
1400 perl_call_sv((SV*)cv, G_DISCARD);
1406 PerlIO_puts(PerlIO_stderr(),message);
1408 DEBUG_L(*message == '!'
1409 ? (xstat(message[1]=='!'
1410 ? (message[2]=='!' ? 2 : 1)
1415 (void)PerlIO_flush(PerlIO_stderr());
1418 #ifndef VMS /* VMS' my_setenv() is in VMS.c */
1421 my_setenv(char *nam, char *val)
1423 register I32 i=setenv_getix(nam); /* where does it go? */
1425 if (environ == PL_origenviron) { /* need we copy environment? */
1431 for (max = i; environ[max]; max++) ;
1432 New(901,tmpenv, max+2, char*);
1433 for (j=0; j<max; j++) /* copy environment */
1434 tmpenv[j] = savepv(environ[j]);
1435 tmpenv[max] = Nullch;
1436 environ = tmpenv; /* tell exec where it is now */
1439 Safefree(environ[i]);
1440 while (environ[i]) {
1441 environ[i] = environ[i+1];
1446 if (!environ[i]) { /* does not exist yet */
1447 Renew(environ, i+2, char*); /* just expand it a bit */
1448 environ[i+1] = Nullch; /* make sure it's null terminated */
1451 Safefree(environ[i]);
1452 New(904, environ[i], strlen(nam) + strlen(val) + 2, char);
1454 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1456 /* MS-DOS requires environment variable names to be in uppercase */
1457 /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1458 * some utilities and applications may break because they only look
1459 * for upper case strings. (Fixed strupr() bug here.)]
1461 strcpy(environ[i],nam); strupr(environ[i]);
1462 (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1466 #else /* if WIN32 */
1469 my_setenv(char *nam,char *val)
1472 #ifdef USE_WIN32_RTL_ENV
1474 register char *envstr;
1475 STRLEN namlen = strlen(nam);
1477 char *oldstr = environ[setenv_getix(nam)];
1479 /* putenv() has totally broken semantics in both the Borland
1480 * and Microsoft CRTLs. They either store the passed pointer in
1481 * the environment without making a copy, or make a copy and don't
1482 * free it. And on top of that, they dont free() old entries that
1483 * are being replaced/deleted. This means the caller must
1484 * free any old entries somehow, or we end up with a memory
1485 * leak every time my_setenv() is called. One might think
1486 * one could directly manipulate environ[], like the UNIX code
1487 * above, but direct changes to environ are not allowed when
1488 * calling putenv(), since the RTLs maintain an internal
1489 * *copy* of environ[]. Bad, bad, *bad* stink.
1500 vallen = strlen(val);
1501 New(904, envstr, namlen + vallen + 3, char);
1502 (void)sprintf(envstr,"%s=%s",nam,val);
1503 (void)PerlEnv_putenv(envstr);
1507 Safefree(envstr); /* MSVCRT leaks without this */
1510 #else /* !USE_WIN32_RTL_ENV */
1512 /* The sane way to deal with the environment.
1513 * Has these advantages over putenv() & co.:
1514 * * enables us to store a truly empty value in the
1515 * environment (like in UNIX).
1516 * * we don't have to deal with RTL globals, bugs and leaks.
1518 * Why you may want to enable USE_WIN32_RTL_ENV:
1519 * * environ[] and RTL functions will not reflect changes,
1520 * which might be an issue if extensions want to access
1521 * the env. via RTL. This cuts both ways, since RTL will
1522 * not see changes made by extensions that call the Win32
1523 * functions directly, either.
1526 SetEnvironmentVariable(nam,val);
1534 setenv_getix(char *nam)
1536 register I32 i, len = strlen(nam);
1538 for (i = 0; environ[i]; i++) {
1541 strnicmp(environ[i],nam,len) == 0
1543 strnEQ(environ[i],nam,len)
1545 && environ[i][len] == '=')
1546 break; /* strnEQ must come first to avoid */
1547 } /* potential SEGV's */
1553 #ifdef UNLINK_ALL_VERSIONS
1555 unlnk(f) /* unlink all versions of a file */
1560 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1565 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1567 my_bcopy(register char *from,register char *to,register I32 len)
1571 if (from - to >= 0) {
1579 *(--to) = *(--from);
1587 my_memset(loc,ch,len)
1600 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1614 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1616 my_memcmp(s1,s2,len)
1621 register U8 *a = (U8 *)s1;
1622 register U8 *b = (U8 *)s2;
1626 if (tmp = *a++ - *b++)
1631 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1635 #ifdef USE_CHAR_VSPRINTF
1640 vsprintf(dest, pat, args)
1647 fakebuf._ptr = dest;
1648 fakebuf._cnt = 32767;
1652 fakebuf._flag = _IOWRT|_IOSTRG;
1653 _doprnt(pat, args, &fakebuf); /* what a kludge */
1654 (void)putc('\0', &fakebuf);
1655 #ifdef USE_CHAR_VSPRINTF
1658 return 0; /* perl doesn't use return value */
1662 #endif /* HAS_VPRINTF */
1665 #if BYTEORDER != 0x4321
1669 #if (BYTEORDER & 1) == 0
1672 result = ((s & 255) << 8) + ((s >> 8) & 255);
1684 char c[sizeof(long)];
1687 #if BYTEORDER == 0x1234
1688 u.c[0] = (l >> 24) & 255;
1689 u.c[1] = (l >> 16) & 255;
1690 u.c[2] = (l >> 8) & 255;
1694 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1695 croak("Unknown BYTEORDER\n");
1700 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1701 u.c[o & 0xf] = (l >> s) & 255;
1713 char c[sizeof(long)];
1716 #if BYTEORDER == 0x1234
1717 u.c[0] = (l >> 24) & 255;
1718 u.c[1] = (l >> 16) & 255;
1719 u.c[2] = (l >> 8) & 255;
1723 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1724 croak("Unknown BYTEORDER\n");
1731 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1732 l |= (u.c[o & 0xf] & 255) << s;
1739 #endif /* BYTEORDER != 0x4321 */
1743 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1744 * If these functions are defined,
1745 * the BYTEORDER is neither 0x1234 nor 0x4321.
1746 * However, this is not assumed.
1750 #define HTOV(name,type) \
1757 char c[sizeof(type)]; \
1761 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1762 u.c[i] = (n >> s) & 0xFF; \
1767 #define VTOH(name,type) \
1774 char c[sizeof(type)]; \
1780 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1781 n += (u.c[i] & 0xFF) << s; \
1786 #if defined(HAS_HTOVS) && !defined(htovs)
1789 #if defined(HAS_HTOVL) && !defined(htovl)
1792 #if defined(HAS_VTOHS) && !defined(vtohs)
1795 #if defined(HAS_VTOHL) && !defined(vtohl)
1799 /* VMS' my_popen() is in VMS.c, same with OS/2. */
1800 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
1802 my_popen(char *cmd, char *mode)
1805 register I32 This, that;
1808 I32 doexec = strNE(cmd,"-");
1812 return my_syspopen(cmd,mode);
1815 This = (*mode == 'w');
1817 if (doexec && PL_tainting) {
1819 taint_proper("Insecure %s%s", "EXEC");
1821 if (PerlProc_pipe(p) < 0)
1823 while ((pid = (doexec?vfork():fork())) < 0) {
1824 if (errno != EAGAIN) {
1825 PerlLIO_close(p[This]);
1827 croak("Can't fork");
1839 PerlLIO_close(p[THAT]);
1840 if (p[THIS] != (*mode == 'r')) {
1841 PerlLIO_dup2(p[THIS], *mode == 'r');
1842 PerlLIO_close(p[THIS]);
1845 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1851 for (fd = maxsysfd + 1; fd < NOFILE; fd++)
1854 do_exec(cmd); /* may or may not use the shell */
1858 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1859 sv_setiv(GvSV(tmpgv), (IV)getpid());
1861 hv_clear(PL_pidstatus); /* we have no children */
1866 do_execfree(); /* free any memory malloced by child on vfork */
1867 PerlLIO_close(p[that]);
1868 if (p[that] < p[This]) {
1869 PerlLIO_dup2(p[This], p[that]);
1870 PerlLIO_close(p[This]);
1873 sv = *av_fetch(PL_fdpid,p[This],TRUE);
1874 (void)SvUPGRADE(sv,SVt_IV);
1876 PL_forkprocess = pid;
1877 return PerlIO_fdopen(p[This], mode);
1880 #if defined(atarist) || defined(DJGPP)
1887 /* Needs work for PerlIO ! */
1888 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
1889 return popen(PerlIO_exportFILE(cmd, 0), mode);
1893 #endif /* !DOSISH */
1900 struct stat tmpstatbuf;
1902 PerlIO_printf(PerlIO_stderr(),"%s", s);
1903 for (fd = 0; fd < 32; fd++) {
1904 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
1905 PerlIO_printf(PerlIO_stderr()," %d",fd);
1907 PerlIO_printf(PerlIO_stderr(),"\n");
1909 #endif /* DUMP_FDS */
1917 #if defined(HAS_FCNTL) && defined(F_DUPFD)
1920 PerlLIO_close(newfd);
1921 return fcntl(oldfd, F_DUPFD, newfd);
1923 #define DUP2_MAX_FDS 256
1924 int fdtmp[DUP2_MAX_FDS];
1930 PerlLIO_close(newfd);
1931 /* good enough for low fd's... */
1932 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
1933 if (fdx >= DUP2_MAX_FDS) {
1941 PerlLIO_close(fdtmp[--fdx]);
1948 #ifdef HAS_SIGACTION
1951 rsignal(int signo, Sighandler_t handler)
1953 struct sigaction act, oact;
1955 act.sa_handler = handler;
1956 sigemptyset(&act.sa_mask);
1959 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1962 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
1963 act.sa_flags |= SA_NOCLDWAIT;
1965 if (sigaction(signo, &act, &oact) == -1)
1968 return oact.sa_handler;
1972 rsignal_state(int signo)
1974 struct sigaction oact;
1976 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
1979 return oact.sa_handler;
1983 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
1985 struct sigaction act;
1987 act.sa_handler = handler;
1988 sigemptyset(&act.sa_mask);
1991 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1994 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
1995 act.sa_flags |= SA_NOCLDWAIT;
1997 return sigaction(signo, &act, save);
2001 rsignal_restore(int signo, Sigsave_t *save)
2003 return sigaction(signo, save, (struct sigaction *)NULL);
2006 #else /* !HAS_SIGACTION */
2009 rsignal(int signo, Sighandler_t handler)
2011 return PerlProc_signal(signo, handler);
2014 static int sig_trapped;
2024 rsignal_state(int signo)
2026 Sighandler_t oldsig;
2029 oldsig = PerlProc_signal(signo, sig_trap);
2030 PerlProc_signal(signo, oldsig);
2032 PerlProc_kill(getpid(), signo);
2037 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2039 *save = PerlProc_signal(signo, handler);
2040 return (*save == SIG_ERR) ? -1 : 0;
2044 rsignal_restore(int signo, Sigsave_t *save)
2046 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2049 #endif /* !HAS_SIGACTION */
2051 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2052 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
2054 my_pclose(PerlIO *ptr)
2056 Sigsave_t hstat, istat, qstat;
2064 int saved_vaxc_errno;
2067 int saved_win32_errno;
2070 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2071 pid = (int)SvIVX(*svp);
2073 *svp = &PL_sv_undef;
2075 if (pid == -1) { /* Opened by popen. */
2076 return my_syspclose(ptr);
2079 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2080 saved_errno = errno;
2082 saved_vaxc_errno = vaxc$errno;
2085 saved_win32_errno = GetLastError();
2089 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2091 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2092 rsignal_save(SIGINT, SIG_IGN, &istat);
2093 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2095 pid2 = wait4pid(pid, &status, 0);
2096 } while (pid2 == -1 && errno == EINTR);
2097 rsignal_restore(SIGHUP, &hstat);
2098 rsignal_restore(SIGINT, &istat);
2099 rsignal_restore(SIGQUIT, &qstat);
2101 SETERRNO(saved_errno, saved_vaxc_errno);
2104 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2106 #endif /* !DOSISH */
2108 #if !defined(DOSISH) || defined(OS2) || defined(WIN32)
2110 wait4pid(int pid, int *statusp, int flags)
2114 char spid[TYPE_CHARS(int)];
2119 sprintf(spid, "%d", pid);
2120 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2121 if (svp && *svp != &PL_sv_undef) {
2122 *statusp = SvIVX(*svp);
2123 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2130 hv_iterinit(PL_pidstatus);
2131 if (entry = hv_iternext(PL_pidstatus)) {
2132 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2133 sv = hv_iterval(PL_pidstatus,entry);
2134 *statusp = SvIVX(sv);
2135 sprintf(spid, "%d", pid);
2136 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2141 # ifdef HAS_WAITPID_RUNTIME
2142 if (!HAS_WAITPID_RUNTIME)
2145 return PerlProc_waitpid(pid,statusp,flags);
2147 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2148 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2150 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2155 croak("Can't do waitpid with flags");
2157 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2158 pidgone(result,*statusp);
2166 #endif /* !DOSISH || OS2 || WIN32 */
2170 pidgone(int pid, int status)
2173 char spid[TYPE_CHARS(int)];
2175 sprintf(spid, "%d", pid);
2176 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2177 (void)SvUPGRADE(sv,SVt_IV);
2182 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2185 int /* Cannot prototype with I32
2194 /* Needs work for PerlIO ! */
2195 FILE *f = PerlIO_findFILE(ptr);
2196 I32 result = pclose(f);
2197 PerlIO_releaseFILE(ptr,f);
2203 repeatcpy(register char *to, register char *from, I32 len, register I32 count)
2206 register char *frombase = from;
2214 while (count-- > 0) {
2215 for (todo = len; todo > 0; todo--) {
2222 #ifndef CASTNEGFLOAT
2230 # define BIGDOUBLE 2147483648.0
2232 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2235 return (unsigned long)f;
2237 return (unsigned long)along;
2244 /* Unfortunately, on some systems the cast_uv() function doesn't
2245 work with the system-supplied definition of ULONG_MAX. The
2246 comparison (f >= ULONG_MAX) always comes out true. It must be a
2247 problem with the compiler constant folding.
2249 In any case, this workaround should be fine on any two's complement
2250 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2252 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2255 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2257 -- Kenneth Albanowski <kjahds@kjahds.com>
2261 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2269 return (I32) I32_MAX;
2271 return (I32) I32_MIN;
2291 return (UV) MY_UV_MAX;
2303 char *fa = strrchr(a,'/');
2304 char *fb = strrchr(b,'/');
2305 struct stat tmpstatbuf1;
2306 struct stat tmpstatbuf2;
2307 SV *tmpsv = sv_newmortal();
2320 sv_setpv(tmpsv, ".");
2322 sv_setpvn(tmpsv, a, fa - a);
2323 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2326 sv_setpv(tmpsv, ".");
2328 sv_setpvn(tmpsv, b, fb - b);
2329 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2331 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2332 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2334 #endif /* !HAS_RENAME */
2337 scan_oct(char *start, I32 len, I32 *retlen)
2339 register char *s = start;
2340 register UV retval = 0;
2341 bool overflowed = FALSE;
2343 while (len && *s >= '0' && *s <= '7') {
2344 register UV n = retval << 3;
2345 if (!overflowed && (n >> 3) != retval) {
2346 warn("Integer overflow in octal number");
2349 retval = n | (*s++ - '0');
2352 if (PL_dowarn && len && (*s == '8' || *s == '9'))
2353 warn("Illegal octal digit ignored");
2354 *retlen = s - start;
2359 scan_hex(char *start, I32 len, I32 *retlen)
2361 register char *s = start;
2362 register UV retval = 0;
2363 bool overflowed = FALSE;
2366 while (len-- && *s && (tmp = strchr((char *) PL_hexdigit, *s))) {
2367 register UV n = retval << 4;
2368 if (!overflowed && (n >> 4) != retval) {
2369 warn("Integer overflow in hex number");
2372 retval = n | ((tmp - PL_hexdigit) & 15);
2375 if (PL_dowarn && !tmp) {
2376 warn("Illegal hex digit ignored");
2378 *retlen = s - start;
2383 find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2386 char *xfound = Nullch;
2387 char *xfailed = Nullch;
2392 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2393 # define SEARCH_EXTS ".bat", ".cmd", NULL
2394 # define MAX_EXT_LEN 4
2397 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2398 # define MAX_EXT_LEN 4
2401 # define SEARCH_EXTS ".pl", ".com", NULL
2402 # define MAX_EXT_LEN 4
2404 /* additional extensions to try in each dir if scriptname not found */
2406 char *exts[] = { SEARCH_EXTS };
2407 char **ext = search_ext ? search_ext : exts;
2408 int extidx = 0, i = 0;
2409 char *curext = Nullch;
2411 # define MAX_EXT_LEN 0
2415 * If dosearch is true and if scriptname does not contain path
2416 * delimiters, search the PATH for scriptname.
2418 * If SEARCH_EXTS is also defined, will look for each
2419 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2420 * while searching the PATH.
2422 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2423 * proceeds as follows:
2424 * If DOSISH or VMSISH:
2425 * + look for ./scriptname{,.foo,.bar}
2426 * + search the PATH for scriptname{,.foo,.bar}
2429 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2430 * this will not look in '.' if it's not in the PATH)
2435 # ifdef ALWAYS_DEFTYPES
2436 len = strlen(scriptname);
2437 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2438 int hasdir, idx = 0, deftypes = 1;
2441 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2444 int hasdir, idx = 0, deftypes = 1;
2447 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2449 /* The first time through, just add SEARCH_EXTS to whatever we
2450 * already have, so we can check for default file types. */
2452 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
2458 if ((strlen(tmpbuf) + strlen(scriptname)
2459 + MAX_EXT_LEN) >= sizeof tmpbuf)
2460 continue; /* don't search dir with too-long name */
2461 strcat(tmpbuf, scriptname);
2465 if (strEQ(scriptname, "-"))
2467 if (dosearch) { /* Look in '.' first. */
2468 char *cur = scriptname;
2470 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2472 if (strEQ(ext[i++],curext)) {
2473 extidx = -1; /* already has an ext */
2478 DEBUG_p(PerlIO_printf(Perl_debug_log,
2479 "Looking for %s\n",cur));
2480 if (PerlLIO_stat(cur,&statbuf) >= 0) {
2488 if (cur == scriptname) {
2489 len = strlen(scriptname);
2490 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
2492 cur = strcpy(tmpbuf, scriptname);
2494 } while (extidx >= 0 && ext[extidx] /* try an extension? */
2495 && strcpy(tmpbuf+len, ext[extidx++]));
2500 if (dosearch && !strchr(scriptname, '/')
2502 && !strchr(scriptname, '\\')
2504 && (s = PerlEnv_getenv("PATH"))) {
2507 PL_bufend = s + strlen(s);
2508 while (s < PL_bufend) {
2509 #if defined(atarist) || defined(DOSISH)
2514 && *s != ';'; len++, s++) {
2515 if (len < sizeof tmpbuf)
2518 if (len < sizeof tmpbuf)
2520 #else /* ! (atarist || DOSISH) */
2521 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2524 #endif /* ! (atarist || DOSISH) */
2527 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
2528 continue; /* don't search dir with too-long name */
2530 #if defined(atarist) || defined(DOSISH)
2531 && tmpbuf[len - 1] != '/'
2532 && tmpbuf[len - 1] != '\\'
2535 tmpbuf[len++] = '/';
2536 if (len == 2 && tmpbuf[0] == '.')
2538 (void)strcpy(tmpbuf + len, scriptname);
2542 len = strlen(tmpbuf);
2543 if (extidx > 0) /* reset after previous loop */
2547 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
2548 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
2550 } while ( retval < 0 /* not there */
2551 && extidx>=0 && ext[extidx] /* try an extension? */
2552 && strcpy(tmpbuf+len, ext[extidx++])
2557 if (S_ISREG(PL_statbuf.st_mode)
2558 && cando(S_IRUSR,TRUE,&PL_statbuf)
2560 && cando(S_IXUSR,TRUE,&PL_statbuf)
2564 xfound = tmpbuf; /* bingo! */
2568 xfailed = savepv(tmpbuf);
2571 if (!xfound && !seen_dot && !xfailed && (PerlLIO_stat(scriptname,&PL_statbuf) < 0))
2573 seen_dot = 1; /* Disable message. */
2575 if (flags & 1) { /* do or die? */
2576 croak("Can't %s %s%s%s",
2577 (xfailed ? "execute" : "find"),
2578 (xfailed ? xfailed : scriptname),
2579 (xfailed ? "" : " on PATH"),
2580 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2582 scriptname = Nullch;
2586 scriptname = xfound;
2588 return (scriptname ? savepv(scriptname) : Nullch);
2594 /* Very simplistic scheduler for now */
2598 thr = thr->i.next_run;
2609 perl_cond_signal(cp)
2613 perl_cond cond = *cp;
2618 /* Insert t in the runnable queue just ahead of us */
2619 t->i.next_run = thr->i.next_run;
2620 thr->i.next_run->i.prev_run = t;
2621 t->i.prev_run = thr;
2622 thr->i.next_run = t;
2623 thr->i.wait_queue = 0;
2624 /* Remove from the wait queue */
2630 perl_cond_broadcast(cp)
2634 perl_cond cond, cond_next;
2636 for (cond = *cp; cond; cond = cond_next) {
2638 /* Insert t in the runnable queue just ahead of us */
2639 t->i.next_run = thr->i.next_run;
2640 thr->i.next_run->i.prev_run = t;
2641 t->i.prev_run = thr;
2642 thr->i.next_run = t;
2643 thr->i.wait_queue = 0;
2644 /* Remove from the wait queue */
2645 cond_next = cond->next;
2657 if (thr->i.next_run == thr)
2658 croak("panic: perl_cond_wait called by last runnable thread");
2660 New(666, cond, 1, struct perl_wait_queue);
2664 thr->i.wait_queue = cond;
2665 /* Remove ourselves from runnable queue */
2666 thr->i.next_run->i.prev_run = thr->i.prev_run;
2667 thr->i.prev_run->i.next_run = thr->i.next_run;
2669 #endif /* FAKE_THREADS */
2671 #ifdef OLD_PTHREADS_API
2672 struct perl_thread *
2677 if (pthread_getspecific(thr_key, &t))
2678 croak("panic: pthread_getspecific");
2679 return (struct perl_thread *) t;
2681 #endif /* OLD_PTHREADS_API */
2684 condpair_magic(SV *sv)
2688 SvUPGRADE(sv, SVt_PVMG);
2689 mg = mg_find(sv, 'm');
2693 New(53, cp, 1, condpair_t);
2694 MUTEX_INIT(&cp->mutex);
2695 COND_INIT(&cp->owner_cond);
2696 COND_INIT(&cp->cond);
2699 mg = mg_find(sv, 'm');
2701 /* someone else beat us to initialising it */
2703 MUTEX_DESTROY(&cp->mutex);
2704 COND_DESTROY(&cp->owner_cond);
2705 COND_DESTROY(&cp->cond);
2709 sv_magic(sv, Nullsv, 'm', 0, 0);
2711 mg->mg_ptr = (char *)cp;
2712 mg->mg_len = sizeof(cp);
2714 DEBUG_L(WITH_THR(PerlIO_printf(PerlIO_stderr(),
2715 "%p: condpair_magic %p\n", thr, sv));)
2722 * Make a new perl thread structure using t as a prototype. Some of the
2723 * fields for the new thread are copied from the prototype thread, t,
2724 * so t should not be running in perl at the time this function is
2725 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2726 * thread calling new_struct_thread) clearly satisfies this constraint.
2728 struct perl_thread *
2729 new_struct_thread(struct perl_thread *t)
2731 struct perl_thread *thr;
2736 sv = newSVpv("", 0);
2737 SvGROW(sv, sizeof(struct perl_thread) + 1);
2738 SvCUR_set(sv, sizeof(struct perl_thread));
2739 thr = (Thread) SvPVX(sv);
2741 memset(thr, 0xab, sizeof(struct perl_thread));
2753 PL_curcop = &PL_compiling;
2754 thr->cvcache = newHV();
2755 thr->threadsv = newAV();
2756 thr->specific = newAV();
2757 thr->errsv = newSVpv("", 0);
2758 thr->errhv = newHV();
2759 thr->flags = THRf_R_JOINABLE;
2760 MUTEX_INIT(&thr->mutex);
2762 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
2763 PL_defstash = t->Tdefstash; /* XXX maybe these should */
2764 PL_curstash = t->Tcurstash; /* always be set to main? */
2767 /* top_env needs to be non-zero. It points to an area
2768 in which longjmp() stuff is stored, as C callstack
2769 info there at least is thread specific this has to
2770 be per-thread. Otherwise a 'die' in a thread gives
2771 that thread the C stack of last thread to do an eval {}!
2772 See comments in scope.h
2773 Initialize top entry (as in perl.c for main thread)
2775 PL_start_env.je_prev = NULL;
2776 PL_start_env.je_ret = -1;
2777 PL_start_env.je_mustcatch = TRUE;
2778 PL_top_env = &PL_start_env;
2783 PL_tainted = t->Ttainted;
2784 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
2785 PL_nrs = newSVsv(t->Tnrs);
2786 PL_rs = SvREFCNT_inc(PL_nrs);
2787 PL_last_in_gv = (GV*)SvREFCNT_inc(t->Tlast_in_gv);
2788 PL_ofslen = t->Tofslen;
2789 PL_ofs = savepvn(t->Tofs, PL_ofslen);
2790 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
2791 PL_chopset = t->Tchopset;
2792 PL_formtarget = newSVsv(t->Tformtarget);
2793 PL_bodytarget = newSVsv(t->Tbodytarget);
2794 PL_toptarget = newSVsv(t->Ttoptarget);
2796 PL_statname = NEWSV(66,0);
2798 PL_regcompp = FUNC_NAME_TO_PTR(pregcomp);
2799 PL_regexecp = FUNC_NAME_TO_PTR(regexec_flags);
2801 PL_reginterp_cnt = 0;
2802 PL_lastscream = Nullsv;
2805 PL_reg_start_tmp = 0;
2806 PL_reg_start_tmpl = 0;
2808 /* Initialise all per-thread SVs that the template thread used */
2809 svp = AvARRAY(t->threadsv);
2810 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
2811 if (*svp && *svp != &PL_sv_undef) {
2812 SV *sv = newSVsv(*svp);
2813 av_store(thr->threadsv, i, sv);
2814 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
2815 DEBUG_L(PerlIO_printf(PerlIO_stderr(),
2816 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
2819 thr->threadsvp = AvARRAY(thr->threadsv);
2821 MUTEX_LOCK(&PL_threads_mutex);
2823 thr->tid = ++PL_threadnum;
2824 thr->next = t->next;
2827 thr->next->prev = thr;
2828 MUTEX_UNLOCK(&PL_threads_mutex);
2830 #ifdef HAVE_THREAD_INTERN
2831 init_thread_intern(thr);
2832 #endif /* HAVE_THREAD_INTERN */
2835 #endif /* USE_THREADS */
2839 * This hack is to force load of "huge" support from libm.a
2840 * So it is in perl for (say) POSIX to use.
2841 * Needed for SunOS with Sun's 'acc' for example.
2850 #ifdef PERL_GLOBAL_STRUCT
2873 return (char*)no_modify;
2884 get_specialsv_list(void)
2886 return PL_specialsv_list;