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
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>
58 static void xstat _((int));
59 long xcount[MAXXCOUNT];
60 long lastxcount[MAXXCOUNT];
61 long xycount[MAXXCOUNT][MAXYCOUNT];
62 long lastxycount[MAXXCOUNT][MAXYCOUNT];
68 /* paranoid version of malloc */
70 /* NOTE: Do not call the next three routines directly. Use the macros
71 * in handy.h, so that we can easily redefine everything to do tracking of
72 * allocated hunks back to the original New to track down any memory leaks.
73 * XXX This advice seems to be widely ignored :-( --AD August 1996.
77 safemalloc(MEM_SIZE size)
82 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
85 #endif /* HAS_64K_LIMIT */
88 croak("panic: malloc");
90 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
91 #if !(defined(I286) || defined(atarist))
92 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
94 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
101 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
108 /* paranoid version of realloc */
111 saferealloc(Malloc_t where,MEM_SIZE size)
114 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
115 Malloc_t PerlMem_realloc();
116 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
120 PerlIO_printf(PerlIO_stderr(),
121 "Reallocation too large: %lx\n", size) FLUSH;
124 #endif /* HAS_64K_LIMIT */
131 return safemalloc(size);
134 croak("panic: realloc");
136 ptr = PerlMem_realloc(where,size);
138 #if !(defined(I286) || defined(atarist))
140 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,an++);
141 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
145 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,an++);
146 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
155 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
162 /* safe version of free */
165 safefree(Malloc_t where)
167 #if !(defined(I286) || defined(atarist))
168 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,an++));
170 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,an++));
178 /* safe version of calloc */
181 safecalloc(MEM_SIZE count, MEM_SIZE size)
186 if (size * count > 0xffff) {
187 PerlIO_printf(PerlIO_stderr(),
188 "Allocation too large: %lx\n", size * count) FLUSH;
191 #endif /* HAS_64K_LIMIT */
193 if ((long)size < 0 || (long)count < 0)
194 croak("panic: calloc");
197 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
198 #if !(defined(I286) || defined(atarist))
199 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
201 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
204 memset((void*)ptr, 0, size);
210 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
217 #endif /* !MYMALLOC */
221 struct mem_test_strut {
229 # define ALIGN sizeof(struct mem_test_strut)
231 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
232 # define typeof_chunk(ch) \
233 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
234 # define set_typeof_chunk(ch,t) \
235 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
236 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
239 ? ((size) - 1)/8 + 5 \
243 safexmalloc(I32 x, MEM_SIZE size)
245 register char* where = (char*)safemalloc(size + ALIGN);
248 xycount[x][SIZE_TO_Y(size)]++;
249 set_typeof_chunk(where, x);
250 sizeof_chunk(where) = size;
251 return (Malloc_t)(where + ALIGN);
255 safexrealloc(Malloc_t wh, MEM_SIZE size)
257 char *where = (char*)wh;
260 return safexmalloc(0,size);
263 MEM_SIZE old = sizeof_chunk(where - ALIGN);
264 int t = typeof_chunk(where - ALIGN);
265 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
267 xycount[t][SIZE_TO_Y(old)]--;
268 xycount[t][SIZE_TO_Y(size)]++;
269 xcount[t] += size - old;
270 sizeof_chunk(new) = size;
271 return (Malloc_t)(new + ALIGN);
276 safexfree(Malloc_t wh)
279 char *where = (char*)wh;
285 size = sizeof_chunk(where);
286 x = where[0] + 100 * where[1];
288 xycount[x][SIZE_TO_Y(size)]--;
293 safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
295 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
297 xycount[x][SIZE_TO_Y(size)]++;
298 memset((void*)(where + ALIGN), 0, size * count);
299 set_typeof_chunk(where, x);
300 sizeof_chunk(where) = size;
301 return (Malloc_t)(where + ALIGN);
307 register I32 i, j, total = 0;
308 I32 subtot[MAXYCOUNT];
310 for (j = 0; j < MAXYCOUNT; j++) {
314 PerlIO_printf(PerlIO_stderr(), " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
315 for (i = 0; i < MAXXCOUNT; i++) {
317 for (j = 0; j < MAXYCOUNT; j++) {
318 subtot[j] += xycount[i][j];
321 ? xcount[i] /* Have something */
323 ? xcount[i] != lastxcount[i] /* Changed */
324 : xcount[i] > lastxcount[i])) { /* Growed */
325 PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100,
326 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
327 lastxcount[i] = xcount[i];
328 for (j = 0; j < MAXYCOUNT; j++) {
330 ? xycount[i][j] /* Have something */
332 ? xycount[i][j] != lastxycount[i][j] /* Changed */
333 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
334 PerlIO_printf(PerlIO_stderr(),"%3ld ",
336 ? xycount[i][j] - lastxycount[i][j]
338 lastxycount[i][j] = xycount[i][j];
340 PerlIO_printf(PerlIO_stderr(), " . ", xycount[i][j]);
343 PerlIO_printf(PerlIO_stderr(), "\n");
347 PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
348 for (j = 0; j < MAXYCOUNT; j++) {
350 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
352 PerlIO_printf(PerlIO_stderr(), " . ");
355 PerlIO_printf(PerlIO_stderr(), "\n");
359 #endif /* LEAKTEST */
361 /* copy a string up to some (non-backslashed) delimiter, if any */
364 delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
367 for (tolen = 0; from < fromend; from++, tolen++) {
369 if (from[1] == delim)
378 else if (*from == delim)
389 /* return ptr to little string in big string, NULL if not found */
390 /* This routine was donated by Corey Satten. */
393 instr(register char *big, register char *little)
395 register char *s, *x;
406 for (x=big,s=little; *s; /**/ ) {
420 /* same as instr but allow embedded nulls */
423 ninstr(register char *big, register char *bigend, char *little, char *lend)
425 register char *s, *x;
426 register I32 first = *little;
427 register char *littleend = lend;
429 if (!first && little >= littleend)
431 if (bigend - big < littleend - little)
433 bigend -= littleend - little++;
434 while (big <= bigend) {
437 for (x=big,s=little; s < littleend; /**/ ) {
449 /* reverse of the above--find last substring */
452 rninstr(register char *big, char *bigend, char *little, char *lend)
454 register char *bigbeg;
455 register char *s, *x;
456 register I32 first = *little;
457 register char *littleend = lend;
459 if (!first && little >= littleend)
462 big = bigend - (littleend - little++);
463 while (big >= bigbeg) {
466 for (x=big+2,s=little; s < littleend; /**/ ) {
479 * Set up for a new ctype locale.
482 perl_new_ctype(char *newctype)
484 #ifdef USE_LOCALE_CTYPE
488 for (i = 0; i < 256; i++) {
490 fold_locale[i] = toLOWER_LC(i);
491 else if (isLOWER_LC(i))
492 fold_locale[i] = toUPPER_LC(i);
497 #endif /* USE_LOCALE_CTYPE */
501 * Set up for a new collation locale.
504 perl_new_collate(char *newcoll)
506 #ifdef USE_LOCALE_COLLATE
509 if (collation_name) {
511 Safefree(collation_name);
512 collation_name = NULL;
513 collation_standard = TRUE;
520 if (! collation_name || strNE(collation_name, newcoll)) {
522 Safefree(collation_name);
523 collation_name = savepv(newcoll);
524 collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
527 /* 2: at most so many chars ('a', 'b'). */
528 /* 50: surely no system expands a char more. */
529 #define XFRMBUFSIZE (2 * 50)
530 char xbuf[XFRMBUFSIZE];
531 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
532 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
533 SSize_t mult = fb - fa;
535 croak("strxfrm() gets absurd");
536 collxfrm_base = (fa > mult) ? (fa - mult) : 0;
537 collxfrm_mult = mult;
541 #endif /* USE_LOCALE_COLLATE */
545 * Set up for a new numeric locale.
548 perl_new_numeric(char *newnum)
550 #ifdef USE_LOCALE_NUMERIC
554 Safefree(numeric_name);
556 numeric_standard = TRUE;
557 numeric_local = TRUE;
562 if (! numeric_name || strNE(numeric_name, newnum)) {
563 Safefree(numeric_name);
564 numeric_name = savepv(newnum);
565 numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
566 numeric_local = TRUE;
569 #endif /* USE_LOCALE_NUMERIC */
573 perl_set_numeric_standard(void)
575 #ifdef USE_LOCALE_NUMERIC
577 if (! numeric_standard) {
578 setlocale(LC_NUMERIC, "C");
579 numeric_standard = TRUE;
580 numeric_local = FALSE;
583 #endif /* USE_LOCALE_NUMERIC */
587 perl_set_numeric_local(void)
589 #ifdef USE_LOCALE_NUMERIC
591 if (! numeric_local) {
592 setlocale(LC_NUMERIC, numeric_name);
593 numeric_standard = FALSE;
594 numeric_local = TRUE;
597 #endif /* USE_LOCALE_NUMERIC */
602 * Initialize locale awareness.
605 perl_init_i18nl10n(int printwarn)
609 * 1 = set ok or not applicable,
610 * 0 = fallback to C locale,
611 * -1 = fallback to C locale failed
616 #ifdef USE_LOCALE_CTYPE
617 char *curctype = NULL;
618 #endif /* USE_LOCALE_CTYPE */
619 #ifdef USE_LOCALE_COLLATE
620 char *curcoll = NULL;
621 #endif /* USE_LOCALE_COLLATE */
622 #ifdef USE_LOCALE_NUMERIC
624 #endif /* USE_LOCALE_NUMERIC */
625 char *lc_all = PerlEnv_getenv("LC_ALL");
626 char *lang = PerlEnv_getenv("LANG");
627 bool setlocale_failure = FALSE;
629 #ifdef LOCALE_ENVIRON_REQUIRED
632 * Ultrix setlocale(..., "") fails if there are no environment
633 * variables from which to get a locale name.
640 if (setlocale(LC_ALL, ""))
643 setlocale_failure = TRUE;
645 if (!setlocale_failure)
648 #ifdef USE_LOCALE_CTYPE
649 if (! (curctype = setlocale(LC_CTYPE,
650 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
652 setlocale_failure = TRUE;
653 #endif /* USE_LOCALE_CTYPE */
654 #ifdef USE_LOCALE_COLLATE
655 if (! (curcoll = setlocale(LC_COLLATE,
656 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
658 setlocale_failure = TRUE;
659 #endif /* USE_LOCALE_COLLATE */
660 #ifdef USE_LOCALE_NUMERIC
661 if (! (curnum = setlocale(LC_NUMERIC,
662 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
664 setlocale_failure = TRUE;
665 #endif /* USE_LOCALE_NUMERIC */
668 #else /* !LOCALE_ENVIRON_REQUIRED */
672 if (! setlocale(LC_ALL, ""))
673 setlocale_failure = TRUE;
675 #ifdef USE_LOCALE_CTYPE
676 curctype = setlocale(LC_CTYPE, Nullch);
677 #endif /* USE_LOCALE_CTYPE */
678 #ifdef USE_LOCALE_COLLATE
679 curcoll = setlocale(LC_COLLATE, Nullch);
680 #endif /* USE_LOCALE_COLLATE */
681 #ifdef USE_LOCALE_NUMERIC
682 curnum = setlocale(LC_NUMERIC, Nullch);
683 #endif /* USE_LOCALE_NUMERIC */
688 #ifdef USE_LOCALE_CTYPE
689 if (! (curctype = setlocale(LC_CTYPE, "")))
690 setlocale_failure = TRUE;
691 #endif /* USE_LOCALE_CTYPE */
692 #ifdef USE_LOCALE_COLLATE
693 if (! (curcoll = setlocale(LC_COLLATE, "")))
694 setlocale_failure = TRUE;
695 #endif /* USE_LOCALE_COLLATE */
696 #ifdef USE_LOCALE_NUMERIC
697 if (! (curnum = setlocale(LC_NUMERIC, "")))
698 setlocale_failure = TRUE;
699 #endif /* USE_LOCALE_NUMERIC */
703 #endif /* !LOCALE_ENVIRON_REQUIRED */
705 if (setlocale_failure) {
707 bool locwarn = (printwarn > 1 ||
709 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
714 PerlIO_printf(PerlIO_stderr(),
715 "perl: warning: Setting locale failed.\n");
719 PerlIO_printf(PerlIO_stderr(),
720 "perl: warning: Setting locale failed for the categories:\n\t");
721 #ifdef USE_LOCALE_CTYPE
723 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
724 #endif /* USE_LOCALE_CTYPE */
725 #ifdef USE_LOCALE_COLLATE
727 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
728 #endif /* USE_LOCALE_COLLATE */
729 #ifdef USE_LOCALE_NUMERIC
731 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
732 #endif /* USE_LOCALE_NUMERIC */
733 PerlIO_printf(PerlIO_stderr(), "\n");
737 PerlIO_printf(PerlIO_stderr(),
738 "perl: warning: Please check that your locale settings:\n");
740 PerlIO_printf(PerlIO_stderr(),
741 "\tLC_ALL = %c%s%c,\n",
743 lc_all ? lc_all : "unset",
748 for (e = environ; *e; e++) {
749 if (strnEQ(*e, "LC_", 3)
750 && strnNE(*e, "LC_ALL=", 7)
751 && (p = strchr(*e, '=')))
752 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
753 (int)(p - *e), *e, p + 1);
757 PerlIO_printf(PerlIO_stderr(),
760 lang ? lang : "unset",
763 PerlIO_printf(PerlIO_stderr(),
764 " are supported and installed on your system.\n");
769 if (setlocale(LC_ALL, "C")) {
771 PerlIO_printf(PerlIO_stderr(),
772 "perl: warning: Falling back to the standard locale (\"C\").\n");
777 PerlIO_printf(PerlIO_stderr(),
778 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
785 #ifdef USE_LOCALE_CTYPE
786 || !(curctype || setlocale(LC_CTYPE, "C"))
787 #endif /* USE_LOCALE_CTYPE */
788 #ifdef USE_LOCALE_COLLATE
789 || !(curcoll || setlocale(LC_COLLATE, "C"))
790 #endif /* USE_LOCALE_COLLATE */
791 #ifdef USE_LOCALE_NUMERIC
792 || !(curnum || setlocale(LC_NUMERIC, "C"))
793 #endif /* USE_LOCALE_NUMERIC */
797 PerlIO_printf(PerlIO_stderr(),
798 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
802 #endif /* ! LC_ALL */
804 #ifdef USE_LOCALE_CTYPE
805 curctype = setlocale(LC_CTYPE, Nullch);
806 #endif /* USE_LOCALE_CTYPE */
807 #ifdef USE_LOCALE_COLLATE
808 curcoll = setlocale(LC_COLLATE, Nullch);
809 #endif /* USE_LOCALE_COLLATE */
810 #ifdef USE_LOCALE_NUMERIC
811 curnum = setlocale(LC_NUMERIC, Nullch);
812 #endif /* USE_LOCALE_NUMERIC */
815 #ifdef USE_LOCALE_CTYPE
816 perl_new_ctype(curctype);
817 #endif /* USE_LOCALE_CTYPE */
819 #ifdef USE_LOCALE_COLLATE
820 perl_new_collate(curcoll);
821 #endif /* USE_LOCALE_COLLATE */
823 #ifdef USE_LOCALE_NUMERIC
824 perl_new_numeric(curnum);
825 #endif /* USE_LOCALE_NUMERIC */
827 #endif /* USE_LOCALE */
832 /* Backwards compatibility. */
834 perl_init_i18nl14n(int printwarn)
836 return perl_init_i18nl10n(printwarn);
839 #ifdef USE_LOCALE_COLLATE
842 * mem_collxfrm() is a bit like strxfrm() but with two important
843 * differences. First, it handles embedded NULs. Second, it allocates
844 * a bit more memory than needed for the transformed data itself.
845 * The real transformed data begins at offset sizeof(collationix).
846 * Please see sv_collxfrm() to see how this is used.
849 mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
852 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
854 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
855 /* the +1 is for the terminating NUL. */
857 xAlloc = sizeof(collation_ix) + collxfrm_base + (collxfrm_mult * len) + 1;
858 New(171, xbuf, xAlloc, char);
862 *(U32*)xbuf = collation_ix;
863 xout = sizeof(collation_ix);
864 for (xin = 0; xin < len; ) {
868 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
871 if (xused < xAlloc - xout)
873 xAlloc = (2 * xAlloc) + 1;
874 Renew(xbuf, xAlloc, char);
879 xin += strlen(s + xin) + 1;
882 /* Embedded NULs are understood but silently skipped
883 * because they make no sense in locale collation. */
887 *xlen = xout - sizeof(collation_ix);
896 #endif /* USE_LOCALE_COLLATE */
899 fbm_compile(SV *sv, U32 flags /* not used yet */)
901 register unsigned char *s;
902 register unsigned char *table;
904 register U32 len = SvCUR(sv);
908 sv_upgrade(sv, SVt_PVBM);
909 if (len > 255 || len == 0) /* TAIL might be on on a zero-length string. */
910 return; /* can't have offsets that big */
912 Sv_Grow(sv,len + 258);
913 table = (unsigned char*)(SvPVX(sv) + len + 1);
915 for (i = 0; i < 256; i++) {
919 while (s >= (unsigned char*)(SvPVX(sv)))
921 if (table[*s] == len)
926 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
929 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
930 for (i = 0; i < len; i++) {
931 if (freq[s[i]] < frequency) {
933 frequency = freq[s[i]];
936 BmRARE(sv) = s[rarest];
937 BmPREVIOUS(sv) = rarest;
938 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
942 fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr)
944 register unsigned char *s;
946 register I32 littlelen;
947 register unsigned char *little;
948 register unsigned char *table;
949 register unsigned char *olds;
950 register unsigned char *oldlittle;
952 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
954 char *l = SvPV(littlestr,len);
956 if (SvTAIL(littlestr)) { /* Can be only 0-len constant
957 substr => we can ignore SvVALID */
960 if ((s = (unsigned char*)ninstr((char*)big, (char*)bigend,
965 if (bigend > big && bigend[-1] == '\n')
966 return (char *)(bigend - 1);
968 return (char *) bigend;
972 return ninstr((char*)big,(char*)bigend, l, l + len);
975 littlelen = SvCUR(littlestr);
976 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
977 if (littlelen > bigend - big)
979 little = (unsigned char*)SvPVX(littlestr);
980 s = bigend - littlelen;
982 && bigend[-1] == '\n'
983 && s[-1] == *little && memEQ((char*)s - 1,(char*)little,littlelen))
984 return (char*)s - 1; /* how sweet it is */
985 else if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
986 return (char*)s; /* how sweet it is */
989 if (littlelen <= 2) {
990 unsigned char c1 = (unsigned char)SvPVX(littlestr)[0];
991 unsigned char c2 = (unsigned char)SvPVX(littlestr)[1];
992 /* This may do extra comparisons if littlelen == 2, but this
993 should be hidden in the noise since we do less indirection. */
997 while (s <= bigend) {
999 && (littlelen == 1 || s[1] == c2)
1000 && (!SvTAIL(littlestr)
1002 || s[littlelen] == '\n')) /* Automatically multiline */
1010 table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
1011 if (--littlelen >= bigend - big)
1013 s = big + littlelen;
1014 oldlittle = little = table - 2;
1018 if (tmp = table[*s]) {
1020 if (bigend - s > tmp) {
1025 if ((s += tmp) < bigend)
1031 tmp = littlelen; /* less expensive than calling strncmp() */
1034 if (*--s == *--little)
1037 s = olds + 1; /* here we pay the price for failure */
1039 if (s < bigend) /* fake up continue to outer loop */
1043 if (SvTAIL(littlestr) /* automatically multiline */
1044 && olds + 1 != bigend
1053 /* start_shift, end_shift are positive quantities which give offsets
1054 of ends of some substring of bigstr.
1055 If `last' we want the last occurence.
1056 old_posp is the way of communication between consequent calls if
1057 the next call needs to find the .
1058 The initial *old_posp should be -1.
1059 Note that we do not take into account SvTAIL, so it may give wrong
1060 positives if _ALL flag is set.
1064 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 = screamfirst[BmRARE(littlestr)]) < 0
1078 : (((pos = *old_posp), pos += 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 += screamnext[pos]))
1095 if (pos >= stop_pos) return Nullch;
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) return Nullch;
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 += 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 mess_sv = mess_alloc();
1208 sv_vsetpvfn(mess_sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1210 return SvPVX(mess_sv);
1214 mess(const char *pat, va_list *args)
1217 static char dgd[] = " during global destruction.\n";
1220 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 (curcop->cop_line)
1229 sv_catpvf(sv, " at %_ line %ld",
1230 GvSV(curcop->cop_filegv), (long)curcop->cop_line);
1231 if (GvIO(last_in_gv) && IoLINES(GvIOp(last_in_gv))) {
1232 bool line_mode = (RsSIMPLE(rs) &&
1233 SvLEN(rs) == 1 && *SvPVX(rs) == '\n');
1234 sv_catpvf(sv, ", <%s> %s %ld",
1235 last_in_gv == argvgv ? "" : GvNAME(last_in_gv),
1236 line_mode ? "line" : "chunk",
1237 (long)IoLINES(GvIOp(last_in_gv)));
1239 sv_catpv(sv, ".\n");
1246 die(const char* pat, ...)
1251 int was_in_eval = in_eval;
1257 DEBUG_L(PerlIO_printf(PerlIO_stderr(),
1258 "%p: die: curstack = %p, mainstack = %p\n",
1259 thr, curstack, 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, diehook));
1270 #endif /* USE_THREADS */
1272 /* sv_2cv might call croak() */
1273 SV *olddiehook = diehook;
1277 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1279 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1285 msg = newSVpv(message, 0);
1293 PUSHSTACK(SI_DIEHOOK);
1297 perl_call_sv((SV*)cv, G_DISCARD);
1303 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, restartop, was_in_eval, top_env));
1308 #endif /* USE_THREADS */
1309 if ((!restartop && was_in_eval) || top_env->je_prev)
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 = diehook;
1336 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1338 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1343 msg = newSVpv(message, 0);
1347 PUSHSTACK(SI_DIEHOOK);
1351 perl_call_sv((SV*)cv, G_DISCARD);
1357 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 = warnhook;
1385 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1387 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1392 msg = newSVpv(message, 0);
1396 PUSHSTACK(SI_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 == 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 && 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(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(fdpid,p[This],TRUE);
1874 (void)SvUPGRADE(sv,SVt_IV);
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 */
1961 if (sigaction(signo, &act, &oact) == -1)
1964 return oact.sa_handler;
1968 rsignal_state(int signo)
1970 struct sigaction oact;
1972 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
1975 return oact.sa_handler;
1979 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
1981 struct sigaction act;
1983 act.sa_handler = handler;
1984 sigemptyset(&act.sa_mask);
1987 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1989 return sigaction(signo, &act, save);
1993 rsignal_restore(int signo, Sigsave_t *save)
1995 return sigaction(signo, save, (struct sigaction *)NULL);
1998 #else /* !HAS_SIGACTION */
2001 rsignal(int signo, Sighandler_t handler)
2003 return PerlProc_signal(signo, handler);
2006 static int sig_trapped;
2016 rsignal_state(int signo)
2018 Sighandler_t oldsig;
2021 oldsig = PerlProc_signal(signo, sig_trap);
2022 PerlProc_signal(signo, oldsig);
2024 PerlProc_kill(getpid(), signo);
2029 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2031 *save = PerlProc_signal(signo, handler);
2032 return (*save == SIG_ERR) ? -1 : 0;
2036 rsignal_restore(int signo, Sigsave_t *save)
2038 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2041 #endif /* !HAS_SIGACTION */
2043 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2044 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
2046 my_pclose(PerlIO *ptr)
2048 Sigsave_t hstat, istat, qstat;
2056 int saved_vaxc_errno;
2059 int saved_win32_errno;
2062 svp = av_fetch(fdpid,PerlIO_fileno(ptr),TRUE);
2063 pid = (int)SvIVX(*svp);
2067 if (pid == -1) { /* Opened by popen. */
2068 return my_syspclose(ptr);
2071 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2072 saved_errno = errno;
2074 saved_vaxc_errno = vaxc$errno;
2077 saved_win32_errno = GetLastError();
2081 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2083 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2084 rsignal_save(SIGINT, SIG_IGN, &istat);
2085 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2087 pid2 = wait4pid(pid, &status, 0);
2088 } while (pid2 == -1 && errno == EINTR);
2089 rsignal_restore(SIGHUP, &hstat);
2090 rsignal_restore(SIGINT, &istat);
2091 rsignal_restore(SIGQUIT, &qstat);
2093 SETERRNO(saved_errno, saved_vaxc_errno);
2096 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2098 #endif /* !DOSISH */
2100 #if !defined(DOSISH) || defined(OS2) || defined(WIN32)
2102 wait4pid(int pid, int *statusp, int flags)
2106 char spid[TYPE_CHARS(int)];
2111 sprintf(spid, "%d", pid);
2112 svp = hv_fetch(pidstatus,spid,strlen(spid),FALSE);
2113 if (svp && *svp != &sv_undef) {
2114 *statusp = SvIVX(*svp);
2115 (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
2122 hv_iterinit(pidstatus);
2123 if (entry = hv_iternext(pidstatus)) {
2124 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2125 sv = hv_iterval(pidstatus,entry);
2126 *statusp = SvIVX(sv);
2127 sprintf(spid, "%d", pid);
2128 (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
2133 # ifdef HAS_WAITPID_RUNTIME
2134 if (!HAS_WAITPID_RUNTIME)
2137 return waitpid(pid,statusp,flags);
2139 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2140 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2142 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2147 croak("Can't do waitpid with flags");
2149 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2150 pidgone(result,*statusp);
2158 #endif /* !DOSISH || OS2 || WIN32 */
2162 pidgone(int pid, int status)
2165 char spid[TYPE_CHARS(int)];
2167 sprintf(spid, "%d", pid);
2168 sv = *hv_fetch(pidstatus,spid,strlen(spid),TRUE);
2169 (void)SvUPGRADE(sv,SVt_IV);
2174 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2177 int /* Cannot prototype with I32
2186 /* Needs work for PerlIO ! */
2187 FILE *f = PerlIO_findFILE(ptr);
2188 I32 result = pclose(f);
2189 PerlIO_releaseFILE(ptr,f);
2195 repeatcpy(register char *to, register char *from, I32 len, register I32 count)
2198 register char *frombase = from;
2206 while (count-- > 0) {
2207 for (todo = len; todo > 0; todo--) {
2214 #ifndef CASTNEGFLOAT
2222 # define BIGDOUBLE 2147483648.0
2224 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2227 return (unsigned long)f;
2229 return (unsigned long)along;
2236 /* Unfortunately, on some systems the cast_uv() function doesn't
2237 work with the system-supplied definition of ULONG_MAX. The
2238 comparison (f >= ULONG_MAX) always comes out true. It must be a
2239 problem with the compiler constant folding.
2241 In any case, this workaround should be fine on any two's complement
2242 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2244 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2247 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2249 -- Kenneth Albanowski <kjahds@kjahds.com>
2253 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2261 return (I32) I32_MAX;
2263 return (I32) I32_MIN;
2283 return (UV) MY_UV_MAX;
2295 char *fa = strrchr(a,'/');
2296 char *fb = strrchr(b,'/');
2297 struct stat tmpstatbuf1;
2298 struct stat tmpstatbuf2;
2299 SV *tmpsv = sv_newmortal();
2312 sv_setpv(tmpsv, ".");
2314 sv_setpvn(tmpsv, a, fa - a);
2315 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2318 sv_setpv(tmpsv, ".");
2320 sv_setpvn(tmpsv, b, fb - b);
2321 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2323 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2324 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2326 #endif /* !HAS_RENAME */
2329 scan_oct(char *start, I32 len, I32 *retlen)
2331 register char *s = start;
2332 register UV retval = 0;
2333 bool overflowed = FALSE;
2335 while (len && *s >= '0' && *s <= '7') {
2336 register UV n = retval << 3;
2337 if (!overflowed && (n >> 3) != retval) {
2338 warn("Integer overflow in octal number");
2341 retval = n | (*s++ - '0');
2344 if (dowarn && len && (*s == '8' || *s == '9'))
2345 warn("Illegal octal digit ignored");
2346 *retlen = s - start;
2351 scan_hex(char *start, I32 len, I32 *retlen)
2353 register char *s = start;
2354 register UV retval = 0;
2355 bool overflowed = FALSE;
2358 while (len-- && *s && (tmp = strchr((char *) hexdigit, *s))) {
2359 register UV n = retval << 4;
2360 if (!overflowed && (n >> 4) != retval) {
2361 warn("Integer overflow in hex number");
2364 retval = n | ((tmp - hexdigit) & 15);
2367 if (dowarn && !tmp) {
2368 warn("Illegal hex digit ignored");
2370 *retlen = s - start;
2375 find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2378 char *xfound = Nullch;
2379 char *xfailed = Nullch;
2383 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2384 # define SEARCH_EXTS ".bat", ".cmd", NULL
2385 # define MAX_EXT_LEN 4
2388 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2389 # define MAX_EXT_LEN 4
2392 # define SEARCH_EXTS ".pl", ".com", NULL
2393 # define MAX_EXT_LEN 4
2395 /* additional extensions to try in each dir if scriptname not found */
2397 char *exts[] = { SEARCH_EXTS };
2398 char **ext = search_ext ? search_ext : exts;
2399 int extidx = 0, i = 0;
2400 char *curext = Nullch;
2402 # define MAX_EXT_LEN 0
2406 * If dosearch is true and if scriptname does not contain path
2407 * delimiters, search the PATH for scriptname.
2409 * If SEARCH_EXTS is also defined, will look for each
2410 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2411 * while searching the PATH.
2413 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2414 * proceeds as follows:
2415 * If DOSISH or VMSISH:
2416 * + look for ./scriptname{,.foo,.bar}
2417 * + search the PATH for scriptname{,.foo,.bar}
2420 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2421 * this will not look in '.' if it's not in the PATH)
2425 # ifdef ALWAYS_DEFTYPES
2426 len = strlen(scriptname);
2427 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2428 int hasdir, idx = 0, deftypes = 1;
2431 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2434 int hasdir, idx = 0, deftypes = 1;
2437 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2439 /* The first time through, just add SEARCH_EXTS to whatever we
2440 * already have, so we can check for default file types. */
2442 (!hasdir && my_trnlnm("DCL$PATH",tokenbuf,idx++)) )
2448 if ((strlen(tokenbuf) + strlen(scriptname)
2449 + MAX_EXT_LEN) >= sizeof tokenbuf)
2450 continue; /* don't search dir with too-long name */
2451 strcat(tokenbuf, scriptname);
2455 if (strEQ(scriptname, "-"))
2457 if (dosearch) { /* Look in '.' first. */
2458 char *cur = scriptname;
2460 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2462 if (strEQ(ext[i++],curext)) {
2463 extidx = -1; /* already has an ext */
2468 DEBUG_p(PerlIO_printf(Perl_debug_log,
2469 "Looking for %s\n",cur));
2470 if (PerlLIO_stat(cur,&statbuf) >= 0) {
2478 if (cur == scriptname) {
2479 len = strlen(scriptname);
2480 if (len+MAX_EXT_LEN+1 >= sizeof(tokenbuf))
2482 cur = strcpy(tokenbuf, scriptname);
2484 } while (extidx >= 0 && ext[extidx] /* try an extension? */
2485 && strcpy(tokenbuf+len, ext[extidx++]));
2490 if (dosearch && !strchr(scriptname, '/')
2492 && !strchr(scriptname, '\\')
2494 && (s = PerlEnv_getenv("PATH"))) {
2497 bufend = s + strlen(s);
2498 while (s < bufend) {
2499 #if defined(atarist) || defined(DOSISH)
2504 && *s != ';'; len++, s++) {
2505 if (len < sizeof tokenbuf)
2508 if (len < sizeof tokenbuf)
2509 tokenbuf[len] = '\0';
2510 #else /* ! (atarist || DOSISH) */
2511 s = delimcpy(tokenbuf, tokenbuf + sizeof tokenbuf, s, bufend,
2514 #endif /* ! (atarist || DOSISH) */
2517 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tokenbuf)
2518 continue; /* don't search dir with too-long name */
2520 #if defined(atarist) || defined(DOSISH)
2521 && tokenbuf[len - 1] != '/'
2522 && tokenbuf[len - 1] != '\\'
2525 tokenbuf[len++] = '/';
2526 if (len == 2 && tokenbuf[0] == '.')
2528 (void)strcpy(tokenbuf + len, scriptname);
2532 len = strlen(tokenbuf);
2533 if (extidx > 0) /* reset after previous loop */
2537 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tokenbuf));
2538 retval = PerlLIO_stat(tokenbuf,&statbuf);
2540 } while ( retval < 0 /* not there */
2541 && extidx>=0 && ext[extidx] /* try an extension? */
2542 && strcpy(tokenbuf+len, ext[extidx++])
2547 if (S_ISREG(statbuf.st_mode)
2548 && cando(S_IRUSR,TRUE,&statbuf)
2550 && cando(S_IXUSR,TRUE,&statbuf)
2554 xfound = tokenbuf; /* bingo! */
2558 xfailed = savepv(tokenbuf);
2561 if (!xfound && !seen_dot && !xfailed && (PerlLIO_stat(scriptname,&statbuf) < 0))
2563 seen_dot = 1; /* Disable message. */
2566 /* croak("Can't %s %s%s%s",
2567 (xfailed ? "execute" : "find"),
2568 (xfailed ? xfailed : scriptname),
2569 (xfailed ? "" : " on PATH"),
2570 (xfailed || seen_dot) ? "" : ", '.' not in PATH"); */
2573 scriptname = xfound;
2581 /* Very simplistic scheduler for now */
2585 thr = thr->i.next_run;
2596 perl_cond_signal(cp)
2600 perl_cond cond = *cp;
2605 /* Insert t in the runnable queue just ahead of us */
2606 t->i.next_run = thr->i.next_run;
2607 thr->i.next_run->i.prev_run = t;
2608 t->i.prev_run = thr;
2609 thr->i.next_run = t;
2610 thr->i.wait_queue = 0;
2611 /* Remove from the wait queue */
2617 perl_cond_broadcast(cp)
2621 perl_cond cond, cond_next;
2623 for (cond = *cp; cond; cond = cond_next) {
2625 /* Insert t in the runnable queue just ahead of us */
2626 t->i.next_run = thr->i.next_run;
2627 thr->i.next_run->i.prev_run = t;
2628 t->i.prev_run = thr;
2629 thr->i.next_run = t;
2630 thr->i.wait_queue = 0;
2631 /* Remove from the wait queue */
2632 cond_next = cond->next;
2644 if (thr->i.next_run == thr)
2645 croak("panic: perl_cond_wait called by last runnable thread");
2647 New(666, cond, 1, struct perl_wait_queue);
2651 thr->i.wait_queue = cond;
2652 /* Remove ourselves from runnable queue */
2653 thr->i.next_run->i.prev_run = thr->i.prev_run;
2654 thr->i.prev_run->i.next_run = thr->i.next_run;
2656 #endif /* FAKE_THREADS */
2658 #ifdef OLD_PTHREADS_API
2659 struct perl_thread *
2664 if (pthread_getspecific(thr_key, &t))
2665 croak("panic: pthread_getspecific");
2666 return (struct perl_thread *) t;
2668 #endif /* OLD_PTHREADS_API */
2671 condpair_magic(SV *sv)
2675 SvUPGRADE(sv, SVt_PVMG);
2676 mg = mg_find(sv, 'm');
2680 New(53, cp, 1, condpair_t);
2681 MUTEX_INIT(&cp->mutex);
2682 COND_INIT(&cp->owner_cond);
2683 COND_INIT(&cp->cond);
2686 mg = mg_find(sv, 'm');
2688 /* someone else beat us to initialising it */
2690 MUTEX_DESTROY(&cp->mutex);
2691 COND_DESTROY(&cp->owner_cond);
2692 COND_DESTROY(&cp->cond);
2696 sv_magic(sv, Nullsv, 'm', 0, 0);
2698 mg->mg_ptr = (char *)cp;
2699 mg->mg_len = sizeof(cp);
2701 DEBUG_L(WITH_THR(PerlIO_printf(PerlIO_stderr(),
2702 "%p: condpair_magic %p\n", thr, sv));)
2709 * Make a new perl thread structure using t as a prototype. Some of the
2710 * fields for the new thread are copied from the prototype thread, t,
2711 * so t should not be running in perl at the time this function is
2712 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2713 * thread calling new_struct_thread) clearly satisfies this constraint.
2715 struct perl_thread *
2716 new_struct_thread(struct perl_thread *t)
2718 struct perl_thread *thr;
2723 sv = newSVpv("", 0);
2724 SvGROW(sv, sizeof(struct perl_thread) + 1);
2725 SvCUR_set(sv, sizeof(struct perl_thread));
2726 thr = (Thread) SvPVX(sv);
2728 memset(thr, 0xab, sizeof(struct perl_thread));
2740 curcop = &compiling;
2741 thr->cvcache = newHV();
2742 thr->threadsv = newAV();
2743 thr->specific = newAV();
2744 thr->errsv = newSVpv("", 0);
2745 thr->errhv = newHV();
2746 thr->flags = THRf_R_JOINABLE;
2747 MUTEX_INIT(&thr->mutex);
2749 curcop = t->Tcurcop; /* XXX As good a guess as any? */
2750 defstash = t->Tdefstash; /* XXX maybe these should */
2751 curstash = t->Tcurstash; /* always be set to main? */
2754 /* top_env needs to be non-zero. It points to an area
2755 in which longjmp() stuff is stored, as C callstack
2756 info there at least is thread specific this has to
2757 be per-thread. Otherwise a 'die' in a thread gives
2758 that thread the C stack of last thread to do an eval {}!
2759 See comments in scope.h
2760 Initialize top entry (as in perl.c for main thread)
2762 start_env.je_prev = NULL;
2763 start_env.je_ret = -1;
2764 start_env.je_mustcatch = TRUE;
2765 top_env = &start_env;
2770 tainted = t->Ttainted;
2771 curpm = t->Tcurpm; /* XXX No PMOP ref count */
2772 nrs = newSVsv(t->Tnrs);
2773 rs = newSVsv(t->Trs);
2774 last_in_gv = (GV*)SvREFCNT_inc(t->Tlast_in_gv);
2775 ofslen = t->Tofslen;
2776 ofs = savepvn(t->Tofs, ofslen);
2777 defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
2778 chopset = t->Tchopset;
2779 formtarget = newSVsv(t->Tformtarget);
2780 bodytarget = newSVsv(t->Tbodytarget);
2781 toptarget = newSVsv(t->Ttoptarget);
2783 /* Initialise all per-thread SVs that the template thread used */
2784 svp = AvARRAY(t->threadsv);
2785 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
2786 if (*svp && *svp != &sv_undef) {
2787 SV *sv = newSVsv(*svp);
2788 av_store(thr->threadsv, i, sv);
2789 sv_magic(sv, 0, 0, &threadsv_names[i], 1);
2790 DEBUG_L(PerlIO_printf(PerlIO_stderr(),
2791 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
2794 thr->threadsvp = AvARRAY(thr->threadsv);
2796 MUTEX_LOCK(&threads_mutex);
2798 thr->tid = ++threadnum;
2799 thr->next = t->next;
2802 thr->next->prev = thr;
2803 MUTEX_UNLOCK(&threads_mutex);
2805 #ifdef HAVE_THREAD_INTERN
2806 init_thread_intern(thr);
2807 #endif /* HAVE_THREAD_INTERN */
2810 #endif /* USE_THREADS */
2814 * This hack is to force load of "huge" support from libm.a
2815 * So it is in perl for (say) POSIX to use.
2816 * Needed for SunOS with Sun's 'acc' for example.
2825 #ifdef PERL_GLOBAL_STRUCT
2848 return (char*)no_modify;
2859 get_specialsv_list(void)
2861 return specialsv_list;