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>
56 static void xstat _((void));
61 /* paranoid version of malloc */
63 /* NOTE: Do not call the next three routines directly. Use the macros
64 * in handy.h, so that we can easily redefine everything to do tracking of
65 * allocated hunks back to the original New to track down any memory leaks.
66 * XXX This advice seems to be widely ignored :-( --AD August 1996.
76 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
79 #endif /* HAS_64K_LIMIT */
82 croak("panic: malloc");
84 ptr = malloc(size?size:1); /* malloc(0) is NASTY on our system */
85 #if !(defined(I286) || defined(atarist))
86 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
88 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
95 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
101 /* paranoid version of realloc */
104 saferealloc(where,size)
109 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
111 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
115 PerlIO_printf(PerlIO_stderr(),
116 "Reallocation too large: %lx\n", size) FLUSH;
119 #endif /* HAS_64K_LIMIT */
121 croak("Null realloc");
124 croak("panic: realloc");
126 ptr = realloc(where,size?size:1); /* realloc(0) is NASTY on our system */
128 #if !(defined(I286) || defined(atarist))
130 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,an++);
131 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
135 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,an++);
136 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
145 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
151 /* safe version of free */
157 #if !(defined(I286) || defined(atarist))
158 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",where,an++));
160 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",where,an++));
168 /* safe version of calloc */
171 safecalloc(count, size)
178 if (size * count > 0xffff) {
179 PerlIO_printf(PerlIO_stderr(),
180 "Allocation too large: %lx\n", size * count) FLUSH;
183 #endif /* HAS_64K_LIMIT */
185 if ((long)size < 0 || (long)count < 0)
186 croak("panic: calloc");
189 ptr = malloc(size?size:1); /* malloc(0) is NASTY on our system */
190 #if !(defined(I286) || defined(atarist))
191 DEBUG_m(PerlIO_printf(PerlIO_stderr(), "0x%x: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
193 DEBUG_m(PerlIO_printf(PerlIO_stderr(), "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
196 memset((void*)ptr, 0, size);
202 PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
208 #endif /* !MYMALLOC */
212 #define ALIGN sizeof(long)
219 register Malloc_t where;
221 where = safemalloc(size + ALIGN);
225 return where + ALIGN;
229 safexrealloc(where,size)
233 register Malloc_t new = saferealloc(where - ALIGN, size + ALIGN);
246 x = where[0] + 100 * where[1];
252 safexcalloc(x,count,size)
257 register Malloc_t where;
259 where = safexmalloc(x, size * count + ALIGN);
261 memset((void*)where + ALIGN, 0, size * count);
264 return where + ALIGN;
272 for (i = 0; i < MAXXCOUNT; i++) {
273 if (xcount[i] > lastxcount[i]) {
274 PerlIO_printf(PerlIO_stderr(),"%2d %2d\t%ld\n", i / 100, i % 100, xcount[i]);
275 lastxcount[i] = xcount[i];
280 #endif /* LEAKTEST */
282 /* copy a string up to some (non-backslashed) delimiter, if any */
285 delimcpy(to, toend, from, fromend, delim, retlen)
287 register char *toend;
289 register char *fromend;
294 for (tolen = 0; from < fromend; from++, tolen++) {
296 if (from[1] == delim)
305 else if (*from == delim)
316 /* return ptr to little string in big string, NULL if not found */
317 /* This routine was donated by Corey Satten. */
322 register char *little;
324 register char *s, *x;
335 for (x=big,s=little; *s; /**/ ) {
349 /* same as instr but allow embedded nulls */
352 ninstr(big, bigend, little, lend)
354 register char *bigend;
358 register char *s, *x;
359 register I32 first = *little;
360 register char *littleend = lend;
362 if (!first && little >= littleend)
364 if (bigend - big < littleend - little)
366 bigend -= littleend - little++;
367 while (big <= bigend) {
370 for (x=big,s=little; s < littleend; /**/ ) {
382 /* reverse of the above--find last substring */
385 rninstr(big, bigend, little, lend)
391 register char *bigbeg;
392 register char *s, *x;
393 register I32 first = *little;
394 register char *littleend = lend;
396 if (!first && little >= littleend)
399 big = bigend - (littleend - little++);
400 while (big >= bigbeg) {
403 for (x=big+2,s=little; s < littleend; /**/ ) {
416 * Set up for a new ctype locale.
419 perl_new_ctype(newctype)
422 #ifdef USE_LOCALE_CTYPE
426 for (i = 0; i < 256; i++) {
428 fold_locale[i] = toLOWER_LC(i);
429 else if (isLOWER_LC(i))
430 fold_locale[i] = toUPPER_LC(i);
435 #endif /* USE_LOCALE_CTYPE */
439 * Set up for a new collation locale.
442 perl_new_collate(newcoll)
445 #ifdef USE_LOCALE_COLLATE
448 if (collation_name) {
450 Safefree(collation_name);
451 collation_name = NULL;
452 collation_standard = TRUE;
459 if (! collation_name || strNE(collation_name, newcoll)) {
461 Safefree(collation_name);
462 collation_name = savepv(newcoll);
463 collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
466 /* 2: at most so many chars ('a', 'b'). */
467 /* 50: surely no system expands a char more. */
468 #define XFRMBUFSIZE (2 * 50)
469 char xbuf[XFRMBUFSIZE];
470 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
471 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
472 SSize_t mult = fb - fa;
474 croak("strxfrm() gets absurd");
475 collxfrm_base = (fa > mult) ? (fa - mult) : 0;
476 collxfrm_mult = mult;
480 #endif /* USE_LOCALE_COLLATE */
484 * Set up for a new numeric locale.
487 perl_new_numeric(newnum)
490 #ifdef USE_LOCALE_NUMERIC
494 Safefree(numeric_name);
496 numeric_standard = TRUE;
497 numeric_local = TRUE;
502 if (! numeric_name || strNE(numeric_name, newnum)) {
503 Safefree(numeric_name);
504 numeric_name = savepv(newnum);
505 numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
506 numeric_local = TRUE;
509 #endif /* USE_LOCALE_NUMERIC */
513 perl_set_numeric_standard()
515 #ifdef USE_LOCALE_NUMERIC
517 if (! numeric_standard) {
518 setlocale(LC_NUMERIC, "C");
519 numeric_standard = TRUE;
520 numeric_local = FALSE;
523 #endif /* USE_LOCALE_NUMERIC */
527 perl_set_numeric_local()
529 #ifdef USE_LOCALE_NUMERIC
531 if (! numeric_local) {
532 setlocale(LC_NUMERIC, numeric_name);
533 numeric_standard = FALSE;
534 numeric_local = TRUE;
537 #endif /* USE_LOCALE_NUMERIC */
542 * Initialize locale awareness.
545 perl_init_i18nl10n(printwarn)
550 * 1 = set ok or not applicable,
551 * 0 = fallback to C locale,
552 * -1 = fallback to C locale failed
557 #ifdef USE_LOCALE_CTYPE
558 char *curctype = NULL;
559 #endif /* USE_LOCALE_CTYPE */
560 #ifdef USE_LOCALE_COLLATE
561 char *curcoll = NULL;
562 #endif /* USE_LOCALE_COLLATE */
563 #ifdef USE_LOCALE_NUMERIC
565 #endif /* USE_LOCALE_NUMERIC */
566 char *lc_all = getenv("LC_ALL");
567 char *lang = getenv("LANG");
568 bool setlocale_failure = FALSE;
570 #ifdef LOCALE_ENVIRON_REQUIRED
573 * Ultrix setlocale(..., "") fails if there are no environment
574 * variables from which to get a locale name.
581 if (setlocale(LC_ALL, ""))
584 setlocale_failure = TRUE;
586 if (!setlocale_failure)
589 #ifdef USE_LOCALE_CTYPE
590 if (! (curctype = setlocale(LC_CTYPE,
591 (!done && (lang || getenv("LC_CTYPE")))
593 setlocale_failure = TRUE;
594 #endif /* USE_LOCALE_CTYPE */
595 #ifdef USE_LOCALE_COLLATE
596 if (! (curcoll = setlocale(LC_COLLATE,
597 (!done && (lang || getenv("LC_COLLATE")))
599 setlocale_failure = TRUE;
600 #endif /* USE_LOCALE_COLLATE */
601 #ifdef USE_LOCALE_NUMERIC
602 if (! (curnum = setlocale(LC_NUMERIC,
603 (!done && (lang || getenv("LC_NUMERIC")))
605 setlocale_failure = TRUE;
606 #endif /* USE_LOCALE_NUMERIC */
609 #else /* !LOCALE_ENVIRON_REQUIRED */
613 if (! setlocale(LC_ALL, ""))
614 setlocale_failure = TRUE;
616 #ifdef USE_LOCALE_CTYPE
617 curctype = setlocale(LC_CTYPE, Nullch);
618 #endif /* USE_LOCALE_CTYPE */
619 #ifdef USE_LOCALE_COLLATE
620 curcoll = setlocale(LC_COLLATE, Nullch);
621 #endif /* USE_LOCALE_COLLATE */
622 #ifdef USE_LOCALE_NUMERIC
623 curnum = setlocale(LC_NUMERIC, Nullch);
624 #endif /* USE_LOCALE_NUMERIC */
629 #ifdef USE_LOCALE_CTYPE
630 if (! (curctype = setlocale(LC_CTYPE, "")))
631 setlocale_failure = TRUE;
632 #endif /* USE_LOCALE_CTYPE */
633 #ifdef USE_LOCALE_COLLATE
634 if (! (curcoll = setlocale(LC_COLLATE, "")))
635 setlocale_failure = TRUE;
636 #endif /* USE_LOCALE_COLLATE */
637 #ifdef USE_LOCALE_NUMERIC
638 if (! (curnum = setlocale(LC_NUMERIC, "")))
639 setlocale_failure = TRUE;
640 #endif /* USE_LOCALE_NUMERIC */
644 #endif /* !LOCALE_ENVIRON_REQUIRED */
646 if (setlocale_failure) {
648 bool locwarn = (printwarn > 1 ||
650 (!(p = getenv("PERL_BADLANG")) || atoi(p)));
655 PerlIO_printf(PerlIO_stderr(),
656 "perl: warning: Setting locale failed.\n");
660 PerlIO_printf(PerlIO_stderr(),
661 "perl: warning: Setting locale failed for the categories:\n\t");
662 #ifdef USE_LOCALE_CTYPE
664 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
665 #endif /* USE_LOCALE_CTYPE */
666 #ifdef USE_LOCALE_COLLATE
668 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
669 #endif /* USE_LOCALE_COLLATE */
670 #ifdef USE_LOCALE_NUMERIC
672 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
673 #endif /* USE_LOCALE_NUMERIC */
674 PerlIO_printf(PerlIO_stderr(), "\n");
678 PerlIO_printf(PerlIO_stderr(),
679 "perl: warning: Please check that your locale settings:\n");
681 PerlIO_printf(PerlIO_stderr(),
682 "\tLC_ALL = %c%s%c,\n",
684 lc_all ? lc_all : "unset",
689 for (e = environ; *e; e++) {
690 if (strnEQ(*e, "LC_", 3)
691 && strnNE(*e, "LC_ALL=", 7)
692 && (p = strchr(*e, '=')))
693 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
694 (p - *e), *e, p + 1);
698 PerlIO_printf(PerlIO_stderr(),
701 lang ? lang : "unset",
704 PerlIO_printf(PerlIO_stderr(),
705 " are supported and installed on your system.\n");
710 if (setlocale(LC_ALL, "C")) {
712 PerlIO_printf(PerlIO_stderr(),
713 "perl: warning: Falling back to the standard locale (\"C\").\n");
718 PerlIO_printf(PerlIO_stderr(),
719 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
726 #ifdef USE_LOCALE_CTYPE
727 || !(curctype || setlocale(LC_CTYPE, "C"))
728 #endif /* USE_LOCALE_CTYPE */
729 #ifdef USE_LOCALE_COLLATE
730 || !(curcoll || setlocale(LC_COLLATE, "C"))
731 #endif /* USE_LOCALE_COLLATE */
732 #ifdef USE_LOCALE_NUMERIC
733 || !(curnum || setlocale(LC_NUMERIC, "C"))
734 #endif /* USE_LOCALE_NUMERIC */
738 PerlIO_printf(PerlIO_stderr(),
739 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
743 #endif /* ! LC_ALL */
745 #ifdef USE_LOCALE_CTYPE
746 curctype = setlocale(LC_CTYPE, Nullch);
747 #endif /* USE_LOCALE_CTYPE */
748 #ifdef USE_LOCALE_COLLATE
749 curcoll = setlocale(LC_COLLATE, Nullch);
750 #endif /* USE_LOCALE_COLLATE */
751 #ifdef USE_LOCALE_NUMERIC
752 curnum = setlocale(LC_NUMERIC, Nullch);
753 #endif /* USE_LOCALE_NUMERIC */
756 #ifdef USE_LOCALE_CTYPE
757 perl_new_ctype(curctype);
758 #endif /* USE_LOCALE_CTYPE */
760 #ifdef USE_LOCALE_COLLATE
761 perl_new_collate(curcoll);
762 #endif /* USE_LOCALE_COLLATE */
764 #ifdef USE_LOCALE_NUMERIC
765 perl_new_numeric(curnum);
766 #endif /* USE_LOCALE_NUMERIC */
768 #endif /* USE_LOCALE */
773 /* Backwards compatibility. */
775 perl_init_i18nl14n(printwarn)
778 return perl_init_i18nl10n(printwarn);
781 #ifdef USE_LOCALE_COLLATE
784 * mem_collxfrm() is a bit like strxfrm() but with two important
785 * differences. First, it handles embedded NULs. Second, it allocates
786 * a bit more memory than needed for the transformed data itself.
787 * The real transformed data begins at offset sizeof(collationix).
788 * Please see sv_collxfrm() to see how this is used.
791 mem_collxfrm(s, len, xlen)
797 STRLEN xalloc, xin, xout;
799 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
800 /* the +1 is for the terminating NUL. */
802 xalloc = sizeof(collation_ix) + collxfrm_base + (collxfrm_mult * len) + 1;
803 New(171, xbuf, xalloc, char);
807 *(U32*)xbuf = collation_ix;
808 xout = sizeof(collation_ix);
809 for (xin = 0; xin < len; ) {
813 xused = strxfrm(xbuf + xout, s + xin, xalloc - xout);
816 if (xused < xalloc - xout)
818 xalloc = (2 * xalloc) + 1;
819 Renew(xbuf, xalloc, char);
824 xin += strlen(s + xin) + 1;
827 /* Embedded NULs are understood but silently skipped
828 * because they make no sense in locale collation. */
832 *xlen = xout - sizeof(collation_ix);
841 #endif /* USE_LOCALE_COLLATE */
847 register unsigned char *s;
848 register unsigned char *table;
850 register U32 len = SvCUR(sv);
855 return; /* can't have offsets that big */
857 table = (unsigned char*)(SvPVX(sv) + len + 1);
859 for (i = 0; i < 256; i++) {
863 while (s >= (unsigned char*)(SvPVX(sv)))
865 if (table[*s] == len)
869 sv_upgrade(sv, SVt_PVBM);
870 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
873 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
874 for (i = 0; i < len; i++) {
875 if (freq[s[i]] < frequency) {
877 frequency = freq[s[i]];
880 BmRARE(sv) = s[rarest];
881 BmPREVIOUS(sv) = rarest;
882 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
886 fbm_instr(big, bigend, littlestr)
888 register unsigned char *bigend;
891 register unsigned char *s;
893 register I32 littlelen;
894 register unsigned char *little;
895 register unsigned char *table;
896 register unsigned char *olds;
897 register unsigned char *oldlittle;
899 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
901 char *l = SvPV(littlestr,len);
904 return ninstr((char*)big,(char*)bigend, l, l + len);
907 littlelen = SvCUR(littlestr);
908 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
909 if (littlelen > bigend - big)
911 little = (unsigned char*)SvPVX(littlestr);
912 s = bigend - littlelen;
913 if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
914 return (char*)s; /* how sweet it is */
915 else if (bigend[-1] == '\n' && little[littlelen-1] != '\n'
918 if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
923 table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
924 if (--littlelen >= bigend - big)
927 oldlittle = little = table - 2;
931 if (tmp = table[*s]) {
933 if (bigend - s > tmp) {
938 if ((s += tmp) < bigend)
944 tmp = littlelen; /* less expensive than calling strncmp() */
947 if (*--s == *--little)
949 s = olds + 1; /* here we pay the price for failure */
951 if (s < bigend) /* fake up continue to outer loop */
962 screaminstr(bigstr, littlestr)
966 register unsigned char *s, *x;
967 register unsigned char *big;
969 register I32 previous;
971 register unsigned char *little;
972 register unsigned char *bigend;
973 register unsigned char *littleend;
975 if ((pos = screamfirst[BmRARE(littlestr)]) < 0)
977 little = (unsigned char *)(SvPVX(littlestr));
978 littleend = little + SvCUR(littlestr);
980 previous = BmPREVIOUS(littlestr);
981 big = (unsigned char *)(SvPVX(bigstr));
982 bigend = big + SvCUR(bigstr);
983 while (pos < previous) {
984 if (!(pos += screamnext[pos]))
989 if (big[pos-previous] != first)
991 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1000 return (char *)(big+pos-previous);
1001 } while ( pos += screamnext[pos] );
1002 #else /* !POINTERRIGOR */
1005 if (big[pos] != first)
1007 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1016 return (char *)(big+pos);
1017 } while ( pos += screamnext[pos] );
1018 #endif /* POINTERRIGOR */
1027 register U8 *a = (U8 *)s1;
1028 register U8 *b = (U8 *)s2;
1030 if (*a != *b && *a != fold[*b])
1038 ibcmp_locale(s1, s2, len)
1042 register U8 *a = (U8 *)s1;
1043 register U8 *b = (U8 *)s2;
1045 if (*a != *b && *a != fold_locale[*b])
1052 /* copy a string to a safe spot */
1058 register char *newaddr;
1060 New(902,newaddr,strlen(sv)+1,char);
1061 (void)strcpy(newaddr,sv);
1065 /* same thing but with a known length */
1072 register char *newaddr;
1074 New(903,newaddr,len+1,char);
1075 Copy(sv,newaddr,len,char); /* might not be null terminated */
1076 newaddr[len] = '\0'; /* is now */
1080 /* the SV for form() and mess() is not kept in an arena */
1088 /* Create as PVMG now, to avoid any upgrading later */
1089 New(905, sv, 1, SV);
1090 Newz(905, any, 1, XPVMG);
1091 SvFLAGS(sv) = SVt_PVMG;
1092 SvANY(sv) = (void*)any;
1093 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1099 form(const char* pat, ...)
1110 va_start(args, pat);
1115 mess_sv = mess_alloc();
1116 sv_vsetpvfn(mess_sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1118 return SvPVX(mess_sv);
1127 static char dgd[] = " during global destruction.\n";
1130 mess_sv = mess_alloc();
1132 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1133 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1137 if (curcop->cop_line)
1138 sv_catpvf(sv, " at %_ line %ld",
1139 GvSV(curcop->cop_filegv), (long)curcop->cop_line);
1140 if (GvIO(last_in_gv) && IoLINES(GvIOp(last_in_gv))) {
1141 bool line_mode = (RsSIMPLE(rs) &&
1142 SvLEN(rs) == 1 && *SvPVX(rs) == '\n');
1143 sv_catpvf(sv, ", <%s> %s %ld",
1144 last_in_gv == argvgv ? "" : GvNAME(last_in_gv),
1145 line_mode ? "line" : "chunk",
1146 (long)IoLINES(GvIOp(last_in_gv)));
1148 sv_catpv(sv, ".\n");
1156 die(const char* pat, ...)
1167 I32 oldrunlevel = runlevel;
1168 int was_in_eval = in_eval;
1173 /* We have to switch back to mainstack or die_where may try to pop
1174 * the eval block from the wrong stack if die is being called from a
1175 * signal handler. - dkindred@cs.cmu.edu */
1176 if (curstack != mainstack) {
1178 SWITCHSTACK(curstack, mainstack);
1182 va_start(args, pat);
1186 message = mess(pat, &args);
1190 /* sv_2cv might call croak() */
1191 SV *olddiehook = diehook;
1195 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1197 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1202 msg = newSVpv(message, 0);
1209 perl_call_sv((SV*)cv, G_DISCARD);
1215 restartop = die_where(message);
1216 if ((!restartop && was_in_eval) || oldrunlevel > 1)
1223 croak(const char* pat, ...)
1227 croak(pat, va_alist)
1239 va_start(args, pat);
1243 message = mess(pat, &args);
1246 /* sv_2cv might call croak() */
1247 SV *olddiehook = diehook;
1251 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1253 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1258 msg = newSVpv(message, 0);
1265 perl_call_sv((SV*)cv, G_DISCARD);
1271 restartop = die_where(message);
1274 PerlIO_puts(PerlIO_stderr(),message);
1275 (void)PerlIO_flush(PerlIO_stderr());
1281 warn(const char* pat,...)
1296 va_start(args, pat);
1300 message = mess(pat, &args);
1304 /* sv_2cv might call warn() */
1305 SV *oldwarnhook = warnhook;
1309 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1311 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1316 msg = newSVpv(message, 0);
1323 perl_call_sv((SV*)cv, G_DISCARD);
1329 PerlIO_puts(PerlIO_stderr(),message);
1333 (void)PerlIO_flush(PerlIO_stderr());
1336 #ifndef VMS /* VMS' my_setenv() is in VMS.c */
1342 register I32 i=setenv_getix(nam); /* where does it go? */
1344 if (environ == origenviron) { /* need we copy environment? */
1350 for (max = i; environ[max]; max++) ;
1351 New(901,tmpenv, max+2, char*);
1352 for (j=0; j<max; j++) /* copy environment */
1353 tmpenv[j] = savepv(environ[j]);
1354 tmpenv[max] = Nullch;
1355 environ = tmpenv; /* tell exec where it is now */
1358 Safefree(environ[i]);
1359 while (environ[i]) {
1360 environ[i] = environ[i+1];
1365 if (!environ[i]) { /* does not exist yet */
1366 Renew(environ, i+2, char*); /* just expand it a bit */
1367 environ[i+1] = Nullch; /* make sure it's null terminated */
1370 Safefree(environ[i]);
1371 New(904, environ[i], strlen(nam) + strlen(val) + 2, char);
1373 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1375 /* MS-DOS requires environment variable names to be in uppercase */
1376 /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1377 * some utilities and applications may break because they only look
1378 * for upper case strings. (Fixed strupr() bug here.)]
1380 strcpy(environ[i],nam); strupr(environ[i]);
1381 (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1389 register I32 i, len = strlen(nam);
1391 for (i = 0; environ[i]; i++) {
1392 if (strnEQ(environ[i],nam,len) && environ[i][len] == '=')
1393 break; /* strnEQ must come first to avoid */
1394 } /* potential SEGV's */
1398 #else /* if _WIN32 */
1404 register char *envstr;
1405 STRLEN namlen = strlen(nam);
1406 STRLEN vallen = strlen(val ? val : "");
1408 New(904, envstr, namlen + vallen + 3, char);
1409 (void)sprintf(envstr,"%s=%s",nam,val);
1411 /* An attempt to delete the entry.
1412 * We try to fix a Win32 process handling goof: Children
1413 * of the current process will end up seeing the
1414 * grandparent's entry if the current process has never
1415 * modified the entry being deleted. So we call _putenv()
1416 * twice: once to pretend to modify the entry, and the
1417 * second time to actually delete it. GSAR 97-03-19
1419 envstr[namlen+1] = 'X'; envstr[namlen+2] = '\0';
1420 (void)_putenv(envstr);
1421 envstr[namlen+1] = '\0';
1423 (void)_putenv(envstr);
1429 #ifdef UNLINK_ALL_VERSIONS
1431 unlnk(f) /* unlink all versions of a file */
1436 for (i = 0; unlink(f) >= 0; i++) ;
1441 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1443 my_bcopy(from,to,len)
1444 register char *from;
1450 if (from - to >= 0) {
1458 *(--to) = *(--from);
1466 my_memset(loc,ch,len)
1479 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1493 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1495 my_memcmp(s1,s2,len)
1500 register U8 *a = (U8 *)s1;
1501 register U8 *b = (U8 *)s2;
1505 if (tmp = *a++ - *b++)
1510 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1512 #if defined(I_STDARG) || defined(I_VARARGS)
1515 #ifdef USE_CHAR_VSPRINTF
1520 vsprintf(dest, pat, args)
1527 fakebuf._ptr = dest;
1528 fakebuf._cnt = 32767;
1532 fakebuf._flag = _IOWRT|_IOSTRG;
1533 _doprnt(pat, args, &fakebuf); /* what a kludge */
1534 (void)putc('\0', &fakebuf);
1535 #ifdef USE_CHAR_VSPRINTF
1538 return 0; /* perl doesn't use return value */
1542 #endif /* HAS_VPRINTF */
1543 #endif /* I_VARARGS || I_STDARGS */
1546 #if BYTEORDER != 0x4321
1548 #ifndef CAN_PROTOTYPE
1555 #if (BYTEORDER & 1) == 0
1558 result = ((s & 255) << 8) + ((s >> 8) & 255);
1566 #ifndef CAN_PROTOTYPE
1575 char c[sizeof(long)];
1578 #if BYTEORDER == 0x1234
1579 u.c[0] = (l >> 24) & 255;
1580 u.c[1] = (l >> 16) & 255;
1581 u.c[2] = (l >> 8) & 255;
1585 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1586 croak("Unknown BYTEORDER\n");
1591 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1592 u.c[o & 0xf] = (l >> s) & 255;
1600 #ifndef CAN_PROTOTYPE
1609 char c[sizeof(long)];
1612 #if BYTEORDER == 0x1234
1613 u.c[0] = (l >> 24) & 255;
1614 u.c[1] = (l >> 16) & 255;
1615 u.c[2] = (l >> 8) & 255;
1619 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1620 croak("Unknown BYTEORDER\n");
1627 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1628 l |= (u.c[o & 0xf] & 255) << s;
1635 #endif /* BYTEORDER != 0x4321 */
1639 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1640 * If these functions are defined,
1641 * the BYTEORDER is neither 0x1234 nor 0x4321.
1642 * However, this is not assumed.
1646 #define HTOV(name,type) \
1653 char c[sizeof(type)]; \
1657 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1658 u.c[i] = (n >> s) & 0xFF; \
1663 #define VTOH(name,type) \
1670 char c[sizeof(type)]; \
1676 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1677 n += (u.c[i] & 0xFF) << s; \
1682 #if defined(HAS_HTOVS) && !defined(htovs)
1685 #if defined(HAS_HTOVL) && !defined(htovl)
1688 #if defined(HAS_VTOHS) && !defined(vtohs)
1691 #if defined(HAS_VTOHL) && !defined(vtohl)
1695 /* VMS' my_popen() is in VMS.c, same with OS/2. */
1696 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
1703 register I32 this, that;
1706 I32 doexec = strNE(cmd,"-");
1710 return my_syspopen(cmd,mode);
1715 this = (*mode == 'w');
1717 if (doexec && tainting) {
1719 taint_proper("Insecure %s%s", "EXEC");
1721 while ((pid = (doexec?vfork():fork())) < 0) {
1722 if (errno != EAGAIN) {
1725 croak("Can't fork");
1736 if (p[THIS] != (*mode == 'r')) {
1737 dup2(p[THIS], *mode == 'r');
1741 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1747 for (fd = maxsysfd + 1; fd < NOFILE; fd++)
1750 do_exec(cmd); /* may or may not use the shell */
1754 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1755 sv_setiv(GvSV(tmpgv), (IV)getpid());
1757 hv_clear(pidstatus); /* we have no children */
1762 do_execfree(); /* free any memory malloced by child on vfork */
1764 if (p[that] < p[this]) {
1765 dup2(p[this], p[that]);
1769 sv = *av_fetch(fdpid,p[this],TRUE);
1770 (void)SvUPGRADE(sv,SVt_IV);
1773 return PerlIO_fdopen(p[this], mode);
1776 #if defined(atarist) || defined(DJGPP)
1783 /* Needs work for PerlIO ! */
1784 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
1785 return popen(PerlIO_exportFILE(cmd, 0), mode);
1789 #endif /* !DOSISH */
1796 struct stat tmpstatbuf;
1798 PerlIO_printf(PerlIO_stderr(),"%s", s);
1799 for (fd = 0; fd < 32; fd++) {
1800 if (Fstat(fd,&tmpstatbuf) >= 0)
1801 PerlIO_printf(PerlIO_stderr()," %d",fd);
1803 PerlIO_printf(PerlIO_stderr(),"\n");
1813 #if defined(HAS_FCNTL) && defined(F_DUPFD)
1817 return fcntl(oldfd, F_DUPFD, newfd);
1819 #define DUP2_MAX_FDS 256
1820 int fdtmp[DUP2_MAX_FDS];
1827 /* good enough for low fd's... */
1828 while ((fd = dup(oldfd)) != newfd && fd >= 0) {
1829 if (fdx >= DUP2_MAX_FDS) {
1837 close(fdtmp[--fdx]);
1844 #ifdef HAS_SIGACTION
1847 rsignal(signo, handler)
1849 Sighandler_t handler;
1851 struct sigaction act, oact;
1853 act.sa_handler = handler;
1854 sigemptyset(&act.sa_mask);
1857 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1859 if (sigaction(signo, &act, &oact) == -1)
1862 return oact.sa_handler;
1866 rsignal_state(signo)
1869 struct sigaction oact;
1871 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
1874 return oact.sa_handler;
1878 rsignal_save(signo, handler, save)
1880 Sighandler_t handler;
1883 struct sigaction act;
1885 act.sa_handler = handler;
1886 sigemptyset(&act.sa_mask);
1889 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1891 return sigaction(signo, &act, save);
1895 rsignal_restore(signo, save)
1899 return sigaction(signo, save, (struct sigaction *)NULL);
1902 #else /* !HAS_SIGACTION */
1905 rsignal(signo, handler)
1907 Sighandler_t handler;
1909 return signal(signo, handler);
1912 static int sig_trapped;
1923 rsignal_state(signo)
1926 Sighandler_t oldsig;
1929 oldsig = signal(signo, sig_trap);
1930 signal(signo, oldsig);
1932 kill(getpid(), signo);
1937 rsignal_save(signo, handler, save)
1939 Sighandler_t handler;
1942 *save = signal(signo, handler);
1943 return (*save == SIG_ERR) ? -1 : 0;
1947 rsignal_restore(signo, save)
1951 return (signal(signo, *save) == SIG_ERR) ? -1 : 0;
1954 #endif /* !HAS_SIGACTION */
1956 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
1957 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
1962 Sigsave_t hstat, istat, qstat;
1969 int saved_vaxc_errno;
1972 svp = av_fetch(fdpid,PerlIO_fileno(ptr),TRUE);
1973 pid = (int)SvIVX(*svp);
1977 if (pid == -1) { /* Opened by popen. */
1978 return my_syspclose(ptr);
1981 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
1982 saved_errno = errno;
1984 saved_vaxc_errno = vaxc$errno;
1988 if(kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
1990 rsignal_save(SIGHUP, SIG_IGN, &hstat);
1991 rsignal_save(SIGINT, SIG_IGN, &istat);
1992 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
1994 pid = wait4pid(pid, &status, 0);
1995 } while (pid == -1 && errno == EINTR);
1996 rsignal_restore(SIGHUP, &hstat);
1997 rsignal_restore(SIGINT, &istat);
1998 rsignal_restore(SIGQUIT, &qstat);
2000 SETERRNO(saved_errno, saved_vaxc_errno);
2003 return(pid < 0 ? pid : status == 0 ? 0 : (errno = 0, status));
2005 #endif /* !DOSISH */
2007 #if !defined(DOSISH) || defined(OS2)
2009 wait4pid(pid,statusp,flags)
2016 char spid[TYPE_CHARS(int)];
2021 sprintf(spid, "%d", pid);
2022 svp = hv_fetch(pidstatus,spid,strlen(spid),FALSE);
2023 if (svp && *svp != &sv_undef) {
2024 *statusp = SvIVX(*svp);
2025 (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
2032 hv_iterinit(pidstatus);
2033 if (entry = hv_iternext(pidstatus)) {
2034 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2035 sv = hv_iterval(pidstatus,entry);
2036 *statusp = SvIVX(sv);
2037 sprintf(spid, "%d", pid);
2038 (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
2043 return waitpid(pid,statusp,flags);
2046 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2051 croak("Can't do waitpid with flags");
2053 while ((result = wait(statusp)) != pid && pid > 0 && result >= 0)
2054 pidgone(result,*statusp);
2063 #endif /* !DOSISH */
2072 char spid[TYPE_CHARS(int)];
2074 sprintf(spid, "%d", pid);
2075 sv = *hv_fetch(pidstatus,spid,strlen(spid),TRUE);
2076 (void)SvUPGRADE(sv,SVt_IV);
2081 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2084 int /* Cannot prototype with I32
2093 /* Needs work for PerlIO ! */
2094 FILE *f = PerlIO_findFILE(ptr);
2095 I32 result = pclose(f);
2096 PerlIO_releaseFILE(ptr,f);
2102 repeatcpy(to,from,len,count)
2104 register char *from;
2109 register char *frombase = from;
2117 while (count-- > 0) {
2118 for (todo = len; todo > 0; todo--) {
2125 #ifndef CASTNEGFLOAT
2133 # define BIGDOUBLE 2147483648.0
2135 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2138 return (unsigned long)f;
2140 return (unsigned long)along;
2147 /* Unfortunately, on some systems the cast_uv() function doesn't
2148 work with the system-supplied definition of ULONG_MAX. The
2149 comparison (f >= ULONG_MAX) always comes out true. It must be a
2150 problem with the compiler constant folding.
2152 In any case, this workaround should be fine on any two's complement
2153 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2155 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2158 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2160 -- Kenneth Albanowski <kjahds@kjahds.com>
2164 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2172 return (I32) I32_MAX;
2174 return (I32) I32_MIN;
2194 return (UV) MY_UV_MAX;
2206 char *fa = strrchr(a,'/');
2207 char *fb = strrchr(b,'/');
2208 struct stat tmpstatbuf1;
2209 struct stat tmpstatbuf2;
2210 SV *tmpsv = sv_newmortal();
2223 sv_setpv(tmpsv, ".");
2225 sv_setpvn(tmpsv, a, fa - a);
2226 if (Stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2229 sv_setpv(tmpsv, ".");
2231 sv_setpvn(tmpsv, b, fb - b);
2232 if (Stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2234 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2235 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2237 #endif /* !HAS_RENAME */
2240 scan_oct(start, len, retlen)
2245 register char *s = start;
2246 register UV retval = 0;
2247 bool overflowed = FALSE;
2249 while (len && *s >= '0' && *s <= '7') {
2250 register UV n = retval << 3;
2251 if (!overflowed && (n >> 3) != retval) {
2252 warn("Integer overflow in octal number");
2255 retval = n | (*s++ - '0');
2258 if (dowarn && len && (*s == '8' || *s == '9'))
2259 warn("Illegal octal digit ignored");
2260 *retlen = s - start;
2265 scan_hex(start, len, retlen)
2270 register char *s = start;
2271 register UV retval = 0;
2272 bool overflowed = FALSE;
2275 while (len-- && *s && (tmp = strchr(hexdigit, *s))) {
2276 register UV n = retval << 4;
2277 if (!overflowed && (n >> 4) != retval) {
2278 warn("Integer overflow in hex number");
2281 retval = n | (tmp - hexdigit) & 15;
2284 *retlen = s - start;
2291 * This hack is to force load of "huge" support from libm.a
2292 * So it is in perl for (say) POSIX to use.
2293 * Needed for SunOS with Sun's 'acc' for example.