3 * Copyright (c) 1991-2001, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
11 * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12 * not content." --Gandalf
16 #define PERL_IN_UTIL_C
20 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
25 # define SIG_ERR ((Sighandler_t) -1)
30 # include <sys/wait.h>
37 long xcount[MAXXCOUNT];
38 long lastxcount[MAXXCOUNT];
39 long xycount[MAXXCOUNT][MAXYCOUNT];
40 long lastxycount[MAXXCOUNT][MAXYCOUNT];
44 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
45 # define FD_CLOEXEC 1 /* NeXT needs this */
48 /* NOTE: Do not call the next three routines directly. Use the macros
49 * in handy.h, so that we can easily redefine everything to do tracking of
50 * allocated hunks back to the original New to track down any memory leaks.
51 * XXX This advice seems to be widely ignored :-( --AD August 1996.
54 /* paranoid version of system's malloc() */
57 Perl_safesysmalloc(MEM_SIZE size)
63 PerlIO_printf(Perl_error_log,
64 "Allocation too large: %lx\n", size) FLUSH;
67 #endif /* HAS_64K_LIMIT */
70 Perl_croak_nocontext("panic: malloc");
72 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
73 PERL_ALLOC_CHECK(ptr);
74 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
80 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
87 /* paranoid version of system's realloc() */
90 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
94 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
95 Malloc_t PerlMem_realloc();
96 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
100 PerlIO_printf(Perl_error_log,
101 "Reallocation too large: %lx\n", size) FLUSH;
104 #endif /* HAS_64K_LIMIT */
111 return safesysmalloc(size);
114 Perl_croak_nocontext("panic: realloc");
116 ptr = (Malloc_t)PerlMem_realloc(where,size);
117 PERL_ALLOC_CHECK(ptr);
119 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
120 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
127 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
134 /* safe version of system's free() */
137 Perl_safesysfree(Malloc_t where)
139 #ifdef PERL_IMPLICIT_SYS
142 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
149 /* safe version of system's calloc() */
152 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
158 if (size * count > 0xffff) {
159 PerlIO_printf(Perl_error_log,
160 "Allocation too large: %lx\n", size * count) FLUSH;
163 #endif /* HAS_64K_LIMIT */
165 if ((long)size < 0 || (long)count < 0)
166 Perl_croak_nocontext("panic: calloc");
169 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
170 PERL_ALLOC_CHECK(ptr);
171 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)size));
173 memset((void*)ptr, 0, size);
179 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
188 struct mem_test_strut {
196 # define ALIGN sizeof(struct mem_test_strut)
198 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
199 # define typeof_chunk(ch) \
200 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
201 # define set_typeof_chunk(ch,t) \
202 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
203 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
206 ? ((size) - 1)/8 + 5 \
210 Perl_safexmalloc(I32 x, MEM_SIZE size)
212 register char* where = (char*)safemalloc(size + ALIGN);
215 xycount[x][SIZE_TO_Y(size)]++;
216 set_typeof_chunk(where, x);
217 sizeof_chunk(where) = size;
218 return (Malloc_t)(where + ALIGN);
222 Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
224 char *where = (char*)wh;
227 return safexmalloc(0,size);
230 MEM_SIZE old = sizeof_chunk(where - ALIGN);
231 int t = typeof_chunk(where - ALIGN);
232 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
234 xycount[t][SIZE_TO_Y(old)]--;
235 xycount[t][SIZE_TO_Y(size)]++;
236 xcount[t] += size - old;
237 sizeof_chunk(new) = size;
238 return (Malloc_t)(new + ALIGN);
243 Perl_safexfree(Malloc_t wh)
246 char *where = (char*)wh;
252 size = sizeof_chunk(where);
253 x = where[0] + 100 * where[1];
255 xycount[x][SIZE_TO_Y(size)]--;
260 Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
262 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
264 xycount[x][SIZE_TO_Y(size)]++;
265 memset((void*)(where + ALIGN), 0, size * count);
266 set_typeof_chunk(where, x);
267 sizeof_chunk(where) = size;
268 return (Malloc_t)(where + ALIGN);
272 S_xstat(pTHX_ int flag)
274 register I32 i, j, total = 0;
275 I32 subtot[MAXYCOUNT];
277 for (j = 0; j < MAXYCOUNT; j++) {
281 PerlIO_printf(Perl_debug_log, " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
282 for (i = 0; i < MAXXCOUNT; i++) {
284 for (j = 0; j < MAXYCOUNT; j++) {
285 subtot[j] += xycount[i][j];
288 ? xcount[i] /* Have something */
290 ? xcount[i] != lastxcount[i] /* Changed */
291 : xcount[i] > lastxcount[i])) { /* Growed */
292 PerlIO_printf(Perl_debug_log,"%2d %02d %7ld ", i / 100, i % 100,
293 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
294 lastxcount[i] = xcount[i];
295 for (j = 0; j < MAXYCOUNT; j++) {
297 ? xycount[i][j] /* Have something */
299 ? xycount[i][j] != lastxycount[i][j] /* Changed */
300 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
301 PerlIO_printf(Perl_debug_log,"%3ld ",
303 ? xycount[i][j] - lastxycount[i][j]
305 lastxycount[i][j] = xycount[i][j];
307 PerlIO_printf(Perl_debug_log, " . ", xycount[i][j]);
310 PerlIO_printf(Perl_debug_log, "\n");
314 PerlIO_printf(Perl_debug_log, "Total %7ld ", total);
315 for (j = 0; j < MAXYCOUNT; j++) {
317 PerlIO_printf(Perl_debug_log, "%3ld ", subtot[j]);
319 PerlIO_printf(Perl_debug_log, " . ");
322 PerlIO_printf(Perl_debug_log, "\n");
326 #endif /* LEAKTEST */
328 /* These must be defined when not using Perl's malloc for binary
333 Malloc_t Perl_malloc (MEM_SIZE nbytes)
336 return PerlMem_malloc(nbytes);
339 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
342 return PerlMem_calloc(elements, size);
345 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
348 return PerlMem_realloc(where, nbytes);
351 Free_t Perl_mfree (Malloc_t where)
359 /* copy a string up to some (non-backslashed) delimiter, if any */
362 Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
365 for (tolen = 0; from < fromend; from++, tolen++) {
367 if (from[1] == delim)
376 else if (*from == delim)
387 /* return ptr to little string in big string, NULL if not found */
388 /* This routine was donated by Corey Satten. */
391 Perl_instr(pTHX_ register const char *big, register const char *little)
393 register const char *s, *x;
404 for (x=big,s=little; *s; /**/ ) {
413 return (char*)(big-1);
418 /* same as instr but allow embedded nulls */
421 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
423 register const char *s, *x;
424 register I32 first = *little;
425 register const char *littleend = lend;
427 if (!first && little >= littleend)
429 if (bigend - big < littleend - little)
431 bigend -= littleend - little++;
432 while (big <= bigend) {
435 for (x=big,s=little; s < littleend; /**/ ) {
442 return (char*)(big-1);
447 /* reverse of the above--find last substring */
450 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
452 register const char *bigbeg;
453 register const char *s, *x;
454 register I32 first = *little;
455 register const char *littleend = lend;
457 if (!first && little >= littleend)
458 return (char*)bigend;
460 big = bigend - (littleend - little++);
461 while (big >= bigbeg) {
464 for (x=big+2,s=little; s < littleend; /**/ ) {
471 return (char*)(big+1);
476 #define FBM_TABLE_OFFSET 2 /* Number of bytes between EOS and table*/
478 /* As a space optimization, we do not compile tables for strings of length
479 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
480 special-cased in fbm_instr().
482 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
485 =for apidoc fbm_compile
487 Analyses the string in order to make fast searches on it using fbm_instr()
488 -- the Boyer-Moore algorithm.
494 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
503 if (flags & FBMcf_TAIL)
504 sv_catpvn(sv, "\n", 1); /* Taken into account in fbm_instr() */
505 s = (U8*)SvPV_force(sv, len);
506 (void)SvUPGRADE(sv, SVt_PVBM);
507 if (len == 0) /* TAIL might be on on a zero-length string. */
517 Sv_Grow(sv, len + 256 + FBM_TABLE_OFFSET);
518 table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
519 s = table - 1 - FBM_TABLE_OFFSET; /* last char */
520 memset((void*)table, mlen, 256);
521 table[-1] = (U8)flags;
523 sb = s - mlen + 1; /* first char (maybe) */
525 if (table[*s] == mlen)
530 sv_magic(sv, Nullsv, PERL_MAGIC_bm, Nullch, 0); /* deep magic */
533 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
534 for (i = 0; i < len; i++) {
535 if (PL_freq[s[i]] < frequency) {
537 frequency = PL_freq[s[i]];
540 BmRARE(sv) = s[rarest];
541 BmPREVIOUS(sv) = rarest;
542 BmUSEFUL(sv) = 100; /* Initial value */
543 if (flags & FBMcf_TAIL)
545 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",
546 BmRARE(sv),BmPREVIOUS(sv)));
549 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
550 /* If SvTAIL is actually due to \Z or \z, this gives false positives
554 =for apidoc fbm_instr
556 Returns the location of the SV in the string delimited by C<str> and
557 C<strend>. It returns C<Nullch> if the string can't be found. The C<sv>
558 does not have to be fbm_compiled, but the search will not be as fast
565 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
567 register unsigned char *s;
569 register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
570 register STRLEN littlelen = l;
571 register I32 multiline = flags & FBMrf_MULTILINE;
573 if (bigend - big < littlelen) {
574 if ( SvTAIL(littlestr)
575 && (bigend - big == littlelen - 1)
577 || (*big == *little &&
578 memEQ((char *)big, (char *)little, littlelen - 1))))
583 if (littlelen <= 2) { /* Special-cased */
585 if (littlelen == 1) {
586 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
587 /* Know that bigend != big. */
588 if (bigend[-1] == '\n')
589 return (char *)(bigend - 1);
590 return (char *) bigend;
598 if (SvTAIL(littlestr))
599 return (char *) bigend;
603 return (char*)big; /* Cannot be SvTAIL! */
606 if (SvTAIL(littlestr) && !multiline) {
607 if (bigend[-1] == '\n' && bigend[-2] == *little)
608 return (char*)bigend - 2;
609 if (bigend[-1] == *little)
610 return (char*)bigend - 1;
614 /* This should be better than FBM if c1 == c2, and almost
615 as good otherwise: maybe better since we do less indirection.
616 And we save a lot of memory by caching no table. */
617 register unsigned char c1 = little[0];
618 register unsigned char c2 = little[1];
623 while (s <= bigend) {
633 goto check_1char_anchor;
644 goto check_1char_anchor;
647 while (s <= bigend) {
652 goto check_1char_anchor;
661 check_1char_anchor: /* One char and anchor! */
662 if (SvTAIL(littlestr) && (*bigend == *little))
663 return (char *)bigend; /* bigend is already decremented. */
666 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
667 s = bigend - littlelen;
668 if (s >= big && bigend[-1] == '\n' && *s == *little
669 /* Automatically of length > 2 */
670 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
672 return (char*)s; /* how sweet it is */
675 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
677 return (char*)s + 1; /* how sweet it is */
681 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
682 char *b = ninstr((char*)big,(char*)bigend,
683 (char*)little, (char*)little + littlelen);
685 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
686 /* Chop \n from littlestr: */
687 s = bigend - littlelen + 1;
689 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
698 { /* Do actual FBM. */
699 register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
700 register unsigned char *oldlittle;
702 if (littlelen > bigend - big)
704 --littlelen; /* Last char found by table lookup */
707 little += littlelen; /* last char */
714 if ((tmp = table[*s])) {
715 if ((s += tmp) < bigend)
719 else { /* less expensive than calling strncmp() */
720 register unsigned char *olds = s;
725 if (*--s == *--little)
727 s = olds + 1; /* here we pay the price for failure */
729 if (s < bigend) /* fake up continue to outer loop */
737 if ( s == bigend && (table[-1] & FBMcf_TAIL)
738 && memEQ((char *)(bigend - littlelen),
739 (char *)(oldlittle - littlelen), littlelen) )
740 return (char*)bigend - littlelen;
745 /* start_shift, end_shift are positive quantities which give offsets
746 of ends of some substring of bigstr.
747 If `last' we want the last occurence.
748 old_posp is the way of communication between consequent calls if
749 the next call needs to find the .
750 The initial *old_posp should be -1.
752 Note that we take into account SvTAIL, so one can get extra
753 optimizations if _ALL flag is set.
756 /* If SvTAIL is actually due to \Z or \z, this gives false positives
757 if PL_multiline. In fact if !PL_multiline the authoritative answer
758 is not supported yet. */
761 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
763 register unsigned char *s, *x;
764 register unsigned char *big;
766 register I32 previous;
768 register unsigned char *little;
769 register I32 stop_pos;
770 register unsigned char *littleend;
774 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
775 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
777 if ( BmRARE(littlestr) == '\n'
778 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
779 little = (unsigned char *)(SvPVX(littlestr));
780 littleend = little + SvCUR(littlestr);
787 little = (unsigned char *)(SvPVX(littlestr));
788 littleend = little + SvCUR(littlestr);
790 /* The value of pos we can start at: */
791 previous = BmPREVIOUS(littlestr);
792 big = (unsigned char *)(SvPVX(bigstr));
793 /* The value of pos we can stop at: */
794 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
795 if (previous + start_shift > stop_pos) {
797 stop_pos does not include SvTAIL in the count, so this check is incorrect
798 (I think) - see [ID 20010618.006] and t/op/study.t. HVDS 2001/06/19
801 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
806 while (pos < previous + start_shift) {
807 if (!(pos += PL_screamnext[pos]))
812 if (pos >= stop_pos) break;
813 if (big[pos] != first)
815 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
821 if (s == littleend) {
823 if (!last) return (char *)(big+pos);
826 } while ( pos += PL_screamnext[pos] );
828 return (char *)(big+(*old_posp));
830 if (!SvTAIL(littlestr) || (end_shift > 0))
832 /* Ignore the trailing "\n". This code is not microoptimized */
833 big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
834 stop_pos = littleend - little; /* Actual littlestr len */
839 && ((stop_pos == 1) ||
840 memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
846 Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
848 register U8 *a = (U8 *)s1;
849 register U8 *b = (U8 *)s2;
851 if (*a != *b && *a != PL_fold[*b])
859 Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
861 register U8 *a = (U8 *)s1;
862 register U8 *b = (U8 *)s2;
864 if (*a != *b && *a != PL_fold_locale[*b])
871 /* copy a string to a safe spot */
876 Copy a string to a safe spot. This does not use an SV.
882 Perl_savepv(pTHX_ const char *sv)
884 register char *newaddr;
886 New(902,newaddr,strlen(sv)+1,char);
887 (void)strcpy(newaddr,sv);
891 /* same thing but with a known length */
896 Copy a string to a safe spot. The C<len> indicates number of bytes to
897 copy. This does not use an SV.
903 Perl_savepvn(pTHX_ const char *sv, register I32 len)
905 register char *newaddr;
907 New(903,newaddr,len+1,char);
908 Copy(sv,newaddr,len,char); /* might not be null terminated */
909 newaddr[len] = '\0'; /* is now */
913 /* the SV for Perl_form() and mess() is not kept in an arena */
922 return sv_2mortal(newSVpvn("",0));
927 /* Create as PVMG now, to avoid any upgrading later */
929 Newz(905, any, 1, XPVMG);
930 SvFLAGS(sv) = SVt_PVMG;
931 SvANY(sv) = (void*)any;
932 SvREFCNT(sv) = 1 << 30; /* practically infinite */
937 #if defined(PERL_IMPLICIT_CONTEXT)
939 Perl_form_nocontext(const char* pat, ...)
945 retval = vform(pat, &args);
949 #endif /* PERL_IMPLICIT_CONTEXT */
952 Perl_form(pTHX_ const char* pat, ...)
957 retval = vform(pat, &args);
963 Perl_vform(pTHX_ const char *pat, va_list *args)
965 SV *sv = mess_alloc();
966 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
970 #if defined(PERL_IMPLICIT_CONTEXT)
972 Perl_mess_nocontext(const char *pat, ...)
978 retval = vmess(pat, &args);
982 #endif /* PERL_IMPLICIT_CONTEXT */
985 Perl_mess(pTHX_ const char *pat, ...)
990 retval = vmess(pat, &args);
996 S_closest_cop(pTHX_ COP *cop, OP *o)
998 /* Look for PL_op starting from o. cop is the last COP we've seen. */
1000 if (!o || o == PL_op) return cop;
1002 if (o->op_flags & OPf_KIDS) {
1004 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling)
1008 /* If the OP_NEXTSTATE has been optimised away we can still use it
1009 * the get the file and line number. */
1011 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
1014 /* Keep searching, and return when we've found something. */
1016 new_cop = closest_cop(cop, kid);
1017 if (new_cop) return new_cop;
1021 /* Nothing found. */
1027 Perl_vmess(pTHX_ const char *pat, va_list *args)
1029 SV *sv = mess_alloc();
1030 static char dgd[] = " during global destruction.\n";
1033 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1034 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1037 * Try and find the file and line for PL_op. This will usually be
1038 * PL_curcop, but it might be a cop that has been optimised away. We
1039 * can try to find such a cop by searching through the optree starting
1040 * from the sibling of PL_curcop.
1043 cop = closest_cop(PL_curcop, PL_curcop->op_sibling);
1044 if (!cop) cop = PL_curcop;
1047 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1048 CopFILE(cop), (IV)CopLINE(cop));
1049 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1050 bool line_mode = (RsSIMPLE(PL_rs) &&
1051 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1052 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
1053 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1054 line_mode ? "line" : "chunk",
1055 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1057 #ifdef USE_5005THREADS
1059 Perl_sv_catpvf(aTHX_ sv, " thread %ld", thr->tid);
1061 sv_catpv(sv, PL_dirty ? dgd : ".\n");
1067 Perl_vdie(pTHX_ const char* pat, va_list *args)
1070 int was_in_eval = PL_in_eval;
1077 DEBUG_S(PerlIO_printf(Perl_debug_log,
1078 "%p: die: curstack = %p, mainstack = %p\n",
1079 thr, PL_curstack, PL_mainstack));
1082 msv = vmess(pat, args);
1083 if (PL_errors && SvCUR(PL_errors)) {
1084 sv_catsv(PL_errors, msv);
1085 message = SvPV(PL_errors, msglen);
1086 SvCUR_set(PL_errors, 0);
1089 message = SvPV(msv,msglen);
1096 DEBUG_S(PerlIO_printf(Perl_debug_log,
1097 "%p: die: message = %s\ndiehook = %p\n",
1098 thr, message, PL_diehook));
1100 /* sv_2cv might call Perl_croak() */
1101 SV *olddiehook = PL_diehook;
1103 SAVESPTR(PL_diehook);
1104 PL_diehook = Nullsv;
1105 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1107 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1114 msg = newSVpvn(message, msglen);
1122 PUSHSTACKi(PERLSI_DIEHOOK);
1126 call_sv((SV*)cv, G_DISCARD);
1132 PL_restartop = die_where(message, msglen);
1133 DEBUG_S(PerlIO_printf(Perl_debug_log,
1134 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1135 thr, PL_restartop, was_in_eval, PL_top_env));
1136 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1138 return PL_restartop;
1141 #if defined(PERL_IMPLICIT_CONTEXT)
1143 Perl_die_nocontext(const char* pat, ...)
1148 va_start(args, pat);
1149 o = vdie(pat, &args);
1153 #endif /* PERL_IMPLICIT_CONTEXT */
1156 Perl_die(pTHX_ const char* pat, ...)
1160 va_start(args, pat);
1161 o = vdie(pat, &args);
1167 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1177 msv = vmess(pat, args);
1178 if (PL_errors && SvCUR(PL_errors)) {
1179 sv_catsv(PL_errors, msv);
1180 message = SvPV(PL_errors, msglen);
1181 SvCUR_set(PL_errors, 0);
1184 message = SvPV(msv,msglen);
1191 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s",
1192 PTR2UV(thr), message));
1195 /* sv_2cv might call Perl_croak() */
1196 SV *olddiehook = PL_diehook;
1198 SAVESPTR(PL_diehook);
1199 PL_diehook = Nullsv;
1200 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1202 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1209 msg = newSVpvn(message, msglen);
1217 PUSHSTACKi(PERLSI_DIEHOOK);
1221 call_sv((SV*)cv, G_DISCARD);
1227 PL_restartop = die_where(message, msglen);
1232 /* SFIO can really mess with your errno */
1235 PerlIO *serr = Perl_error_log;
1237 PERL_WRITE_MSG_TO_CONSOLE(serr, message, msglen);
1238 (void)PerlIO_flush(serr);
1246 #if defined(PERL_IMPLICIT_CONTEXT)
1248 Perl_croak_nocontext(const char *pat, ...)
1252 va_start(args, pat);
1257 #endif /* PERL_IMPLICIT_CONTEXT */
1262 This is the XSUB-writer's interface to Perl's C<die> function.
1263 Normally use this function the same way you use the C C<printf>
1264 function. See C<warn>.
1266 If you want to throw an exception object, assign the object to
1267 C<$@> and then pass C<Nullch> to croak():
1269 errsv = get_sv("@", TRUE);
1270 sv_setsv(errsv, exception_object);
1277 Perl_croak(pTHX_ const char *pat, ...)
1280 va_start(args, pat);
1287 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1296 msv = vmess(pat, args);
1297 message = SvPV(msv, msglen);
1300 /* sv_2cv might call Perl_warn() */
1301 SV *oldwarnhook = PL_warnhook;
1303 SAVESPTR(PL_warnhook);
1304 PL_warnhook = Nullsv;
1305 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1307 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1313 msg = newSVpvn(message, msglen);
1317 PUSHSTACKi(PERLSI_WARNHOOK);
1321 call_sv((SV*)cv, G_DISCARD);
1328 PerlIO *serr = Perl_error_log;
1330 PERL_WRITE_MSG_TO_CONSOLE(serr, message, msglen);
1332 DEBUG_L(*message == '!'
1333 ? (xstat(message[1]=='!'
1334 ? (message[2]=='!' ? 2 : 1)
1339 (void)PerlIO_flush(serr);
1343 #if defined(PERL_IMPLICIT_CONTEXT)
1345 Perl_warn_nocontext(const char *pat, ...)
1349 va_start(args, pat);
1353 #endif /* PERL_IMPLICIT_CONTEXT */
1358 This is the XSUB-writer's interface to Perl's C<warn> function. Use this
1359 function the same way you use the C C<printf> function. See
1366 Perl_warn(pTHX_ const char *pat, ...)
1369 va_start(args, pat);
1374 #if defined(PERL_IMPLICIT_CONTEXT)
1376 Perl_warner_nocontext(U32 err, const char *pat, ...)
1380 va_start(args, pat);
1381 vwarner(err, pat, &args);
1384 #endif /* PERL_IMPLICIT_CONTEXT */
1387 Perl_warner(pTHX_ U32 err, const char* pat,...)
1390 va_start(args, pat);
1391 vwarner(err, pat, &args);
1396 Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1405 msv = vmess(pat, args);
1406 message = SvPV(msv, msglen);
1409 #ifdef USE_5005THREADS
1410 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s", PTR2UV(thr), message));
1411 #endif /* USE_5005THREADS */
1413 /* sv_2cv might call Perl_croak() */
1414 SV *olddiehook = PL_diehook;
1416 SAVESPTR(PL_diehook);
1417 PL_diehook = Nullsv;
1418 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1420 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1426 msg = newSVpvn(message, msglen);
1430 PUSHSTACKi(PERLSI_DIEHOOK);
1434 call_sv((SV*)cv, G_DISCARD);
1440 PL_restartop = die_where(message, msglen);
1444 PerlIO *serr = Perl_error_log;
1445 PERL_WRITE_MSG_TO_CONSOLE(serr, message, msglen);
1446 (void)PerlIO_flush(serr);
1453 /* sv_2cv might call Perl_warn() */
1454 SV *oldwarnhook = PL_warnhook;
1456 SAVESPTR(PL_warnhook);
1457 PL_warnhook = Nullsv;
1458 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1460 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1466 msg = newSVpvn(message, msglen);
1470 PUSHSTACKi(PERLSI_WARNHOOK);
1474 call_sv((SV*)cv, G_DISCARD);
1481 PerlIO *serr = Perl_error_log;
1482 PERL_WRITE_MSG_TO_CONSOLE(serr, message, msglen);
1484 DEBUG_L(*message == '!'
1485 ? (xstat(message[1]=='!'
1486 ? (message[2]=='!' ? 2 : 1)
1491 (void)PerlIO_flush(serr);
1496 #ifdef USE_ENVIRON_ARRAY
1497 /* VMS' and EPOC's my_setenv() is in vms.c and epoc.c */
1498 #if !defined(WIN32) && !defined(NETWARE)
1500 Perl_my_setenv(pTHX_ char *nam, char *val)
1502 #ifndef PERL_USE_SAFE_PUTENV
1503 /* most putenv()s leak, so we manipulate environ directly */
1504 register I32 i=setenv_getix(nam); /* where does it go? */
1506 if (environ == PL_origenviron) { /* need we copy environment? */
1512 for (max = i; environ[max]; max++) ;
1513 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1514 for (j=0; j<max; j++) { /* copy environment */
1515 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1516 strcpy(tmpenv[j], environ[j]);
1518 tmpenv[max] = Nullch;
1519 environ = tmpenv; /* tell exec where it is now */
1522 safesysfree(environ[i]);
1523 while (environ[i]) {
1524 environ[i] = environ[i+1];
1529 if (!environ[i]) { /* does not exist yet */
1530 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1531 environ[i+1] = Nullch; /* make sure it's null terminated */
1534 safesysfree(environ[i]);
1535 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1537 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1539 #else /* PERL_USE_SAFE_PUTENV */
1540 # if defined(__CYGWIN__)
1541 setenv(nam, val, 1);
1545 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1546 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1547 (void)putenv(new_env);
1548 # endif /* __CYGWIN__ */
1549 #endif /* PERL_USE_SAFE_PUTENV */
1552 #else /* WIN32 || NETWARE */
1555 Perl_my_setenv(pTHX_ char *nam,char *val)
1557 register char *envstr;
1558 STRLEN len = strlen(nam) + 3;
1563 New(904, envstr, len, char);
1564 (void)sprintf(envstr,"%s=%s",nam,val);
1565 (void)PerlEnv_putenv(envstr);
1569 #endif /* WIN32 || NETWARE */
1572 Perl_setenv_getix(pTHX_ char *nam)
1574 register I32 i, len = strlen(nam);
1576 for (i = 0; environ[i]; i++) {
1579 strnicmp(environ[i],nam,len) == 0
1581 strnEQ(environ[i],nam,len)
1583 && environ[i][len] == '=')
1584 break; /* strnEQ must come first to avoid */
1585 } /* potential SEGV's */
1589 #endif /* !VMS && !EPOC*/
1591 #ifdef UNLINK_ALL_VERSIONS
1593 Perl_unlnk(pTHX_ char *f) /* unlink all versions of a file */
1597 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1602 /* this is a drop-in replacement for bcopy() */
1603 #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
1605 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
1609 if (from - to >= 0) {
1617 *(--to) = *(--from);
1623 /* this is a drop-in replacement for memset() */
1626 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
1636 /* this is a drop-in replacement for bzero() */
1637 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1639 Perl_my_bzero(register char *loc, register I32 len)
1649 /* this is a drop-in replacement for memcmp() */
1650 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1652 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
1654 register U8 *a = (U8 *)s1;
1655 register U8 *b = (U8 *)s2;
1659 if (tmp = *a++ - *b++)
1664 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1668 #ifdef USE_CHAR_VSPRINTF
1673 vsprintf(char *dest, const char *pat, char *args)
1677 fakebuf._ptr = dest;
1678 fakebuf._cnt = 32767;
1682 fakebuf._flag = _IOWRT|_IOSTRG;
1683 _doprnt(pat, args, &fakebuf); /* what a kludge */
1684 (void)putc('\0', &fakebuf);
1685 #ifdef USE_CHAR_VSPRINTF
1688 return 0; /* perl doesn't use return value */
1692 #endif /* HAS_VPRINTF */
1695 #if BYTEORDER != 0x4321
1697 Perl_my_swap(pTHX_ short s)
1699 #if (BYTEORDER & 1) == 0
1702 result = ((s & 255) << 8) + ((s >> 8) & 255);
1710 Perl_my_htonl(pTHX_ long l)
1714 char c[sizeof(long)];
1717 #if BYTEORDER == 0x1234
1718 u.c[0] = (l >> 24) & 255;
1719 u.c[1] = (l >> 16) & 255;
1720 u.c[2] = (l >> 8) & 255;
1724 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1725 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
1730 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1731 u.c[o & 0xf] = (l >> s) & 255;
1739 Perl_my_ntohl(pTHX_ long l)
1743 char c[sizeof(long)];
1746 #if BYTEORDER == 0x1234
1747 u.c[0] = (l >> 24) & 255;
1748 u.c[1] = (l >> 16) & 255;
1749 u.c[2] = (l >> 8) & 255;
1753 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1754 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
1761 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1762 l |= (u.c[o & 0xf] & 255) << s;
1769 #endif /* BYTEORDER != 0x4321 */
1773 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1774 * If these functions are defined,
1775 * the BYTEORDER is neither 0x1234 nor 0x4321.
1776 * However, this is not assumed.
1780 #define HTOV(name,type) \
1782 name (register type n) \
1786 char c[sizeof(type)]; \
1790 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1791 u.c[i] = (n >> s) & 0xFF; \
1796 #define VTOH(name,type) \
1798 name (register type n) \
1802 char c[sizeof(type)]; \
1808 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1809 n += (u.c[i] & 0xFF) << s; \
1814 #if defined(HAS_HTOVS) && !defined(htovs)
1817 #if defined(HAS_HTOVL) && !defined(htovl)
1820 #if defined(HAS_VTOHS) && !defined(vtohs)
1823 #if defined(HAS_VTOHL) && !defined(vtohl)
1828 Perl_my_popen_list(pTHX_ char *mode, int n, SV **args)
1830 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(OS2) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL) && !defined(NETWARE)
1832 register I32 This, that;
1838 PERL_FLUSHALL_FOR_CHILD;
1839 This = (*mode == 'w');
1843 taint_proper("Insecure %s%s", "EXEC");
1845 if (PerlProc_pipe(p) < 0)
1847 /* Try for another pipe pair for error return */
1848 if (PerlProc_pipe(pp) >= 0)
1850 while ((pid = PerlProc_fork()) < 0) {
1851 if (errno != EAGAIN) {
1852 PerlLIO_close(p[This]);
1854 PerlLIO_close(pp[0]);
1855 PerlLIO_close(pp[1]);
1867 /* Close parent's end of _the_ pipe */
1868 PerlLIO_close(p[THAT]);
1869 /* Close parent's end of error status pipe (if any) */
1871 PerlLIO_close(pp[0]);
1872 #if defined(HAS_FCNTL) && defined(F_SETFD)
1873 /* Close error pipe automatically if exec works */
1874 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
1877 /* Now dup our end of _the_ pipe to right position */
1878 if (p[THIS] != (*mode == 'r')) {
1879 PerlLIO_dup2(p[THIS], *mode == 'r');
1880 PerlLIO_close(p[THIS]);
1882 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1883 /* No automatic close - do it by hand */
1890 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
1896 do_aexec5(Nullsv, args-1, args-1+n, pp[1], did_pipes);
1902 do_execfree(); /* free any memory malloced by child on fork */
1903 /* Close child's end of pipe */
1904 PerlLIO_close(p[that]);
1906 PerlLIO_close(pp[1]);
1907 /* Keep the lower of the two fd numbers */
1908 if (p[that] < p[This]) {
1909 PerlLIO_dup2(p[This], p[that]);
1910 PerlLIO_close(p[This]);
1914 sv = *av_fetch(PL_fdpid,p[This],TRUE);
1916 (void)SvUPGRADE(sv,SVt_IV);
1918 PL_forkprocess = pid;
1919 /* If we managed to get status pipe check for exec fail */
1920 if (did_pipes && pid > 0) {
1924 while (n < sizeof(int)) {
1925 n1 = PerlLIO_read(pp[0],
1926 (void*)(((char*)&errkid)+n),
1932 PerlLIO_close(pp[0]);
1934 if (n) { /* Error */
1936 if (n != sizeof(int))
1937 Perl_croak(aTHX_ "panic: kid popen errno read");
1939 pid2 = wait4pid(pid, &status, 0);
1940 } while (pid2 == -1 && errno == EINTR);
1941 errno = errkid; /* Propagate errno from kid */
1946 PerlLIO_close(pp[0]);
1947 return PerlIO_fdopen(p[This], mode);
1949 Perl_croak(aTHX_ "List form of piped open not implemented");
1950 return (PerlIO *) NULL;
1954 /* VMS' my_popen() is in VMS.c, same with OS/2. */
1955 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
1957 Perl_my_popen(pTHX_ char *cmd, char *mode)
1960 register I32 This, that;
1963 I32 doexec = strNE(cmd,"-");
1967 PERL_FLUSHALL_FOR_CHILD;
1970 return my_syspopen(aTHX_ cmd,mode);
1973 This = (*mode == 'w');
1975 if (doexec && PL_tainting) {
1977 taint_proper("Insecure %s%s", "EXEC");
1979 if (PerlProc_pipe(p) < 0)
1981 if (doexec && PerlProc_pipe(pp) >= 0)
1983 while ((pid = PerlProc_fork()) < 0) {
1984 if (errno != EAGAIN) {
1985 PerlLIO_close(p[This]);
1987 PerlLIO_close(pp[0]);
1988 PerlLIO_close(pp[1]);
1991 Perl_croak(aTHX_ "Can't fork");
2003 PerlLIO_close(p[THAT]);
2005 PerlLIO_close(pp[0]);
2006 #if defined(HAS_FCNTL) && defined(F_SETFD)
2007 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2010 if (p[THIS] != (*mode == 'r')) {
2011 PerlLIO_dup2(p[THIS], *mode == 'r');
2012 PerlLIO_close(p[THIS]);
2016 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2025 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2030 /* may or may not use the shell */
2031 do_exec3(cmd, pp[1], did_pipes);
2034 #endif /* defined OS2 */
2036 if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
2037 sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2039 hv_clear(PL_pidstatus); /* we have no children */
2044 do_execfree(); /* free any memory malloced by child on fork */
2045 PerlLIO_close(p[that]);
2047 PerlLIO_close(pp[1]);
2048 if (p[that] < p[This]) {
2049 PerlLIO_dup2(p[This], p[that]);
2050 PerlLIO_close(p[This]);
2054 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2056 (void)SvUPGRADE(sv,SVt_IV);
2058 PL_forkprocess = pid;
2059 if (did_pipes && pid > 0) {
2063 while (n < sizeof(int)) {
2064 n1 = PerlLIO_read(pp[0],
2065 (void*)(((char*)&errkid)+n),
2071 PerlLIO_close(pp[0]);
2073 if (n) { /* Error */
2075 if (n != sizeof(int))
2076 Perl_croak(aTHX_ "panic: kid popen errno read");
2078 pid2 = wait4pid(pid, &status, 0);
2079 } while (pid2 == -1 && errno == EINTR);
2080 errno = errkid; /* Propagate errno from kid */
2085 PerlLIO_close(pp[0]);
2086 return PerlIO_fdopen(p[This], mode);
2089 #if defined(atarist)
2092 Perl_my_popen(pTHX_ char *cmd, char *mode)
2094 PERL_FLUSHALL_FOR_CHILD;
2095 /* Call system's popen() to get a FILE *, then import it.
2096 used 0 for 2nd parameter to PerlIO_importFILE;
2099 return PerlIO_importFILE(popen(cmd, mode), 0);
2103 FILE *djgpp_popen();
2105 Perl_my_popen(pTHX_ char *cmd, char *mode)
2107 PERL_FLUSHALL_FOR_CHILD;
2108 /* Call system's popen() to get a FILE *, then import it.
2109 used 0 for 2nd parameter to PerlIO_importFILE;
2112 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2117 #endif /* !DOSISH */
2119 /* this is called in parent before the fork() */
2121 Perl_atfork_lock(void)
2123 #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
2124 /* locks must be held in locking order (if any) */
2126 MUTEX_LOCK(&PL_malloc_mutex);
2132 /* this is called in both parent and child after the fork() */
2134 Perl_atfork_unlock(void)
2136 #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
2137 /* locks must be released in same order as in atfork_lock() */
2139 MUTEX_UNLOCK(&PL_malloc_mutex);
2148 #if defined(HAS_FORK)
2150 #if (defined(USE_5005THREADS) || defined(USE_ITHREADS)) && !defined(HAS_PTHREAD_ATFORK)
2155 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2156 * handlers elsewhere in the code */
2161 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2162 Perl_croak_nocontext("fork() not available");
2164 #endif /* HAS_FORK */
2169 Perl_dump_fds(pTHX_ char *s)
2172 struct stat tmpstatbuf;
2174 PerlIO_printf(Perl_debug_log,"%s", s);
2175 for (fd = 0; fd < 32; fd++) {
2176 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2177 PerlIO_printf(Perl_debug_log," %d",fd);
2179 PerlIO_printf(Perl_debug_log,"\n");
2181 #endif /* DUMP_FDS */
2185 dup2(int oldfd, int newfd)
2187 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2190 PerlLIO_close(newfd);
2191 return fcntl(oldfd, F_DUPFD, newfd);
2193 #define DUP2_MAX_FDS 256
2194 int fdtmp[DUP2_MAX_FDS];
2200 PerlLIO_close(newfd);
2201 /* good enough for low fd's... */
2202 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2203 if (fdx >= DUP2_MAX_FDS) {
2211 PerlLIO_close(fdtmp[--fdx]);
2218 #ifdef HAS_SIGACTION
2221 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2223 struct sigaction act, oact;
2225 act.sa_handler = handler;
2226 sigemptyset(&act.sa_mask);
2229 #if !defined(USE_PERLIO) || defined(PERL_OLD_SIGNALS)
2230 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2234 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2235 act.sa_flags |= SA_NOCLDWAIT;
2237 if (sigaction(signo, &act, &oact) == -1)
2240 return oact.sa_handler;
2244 Perl_rsignal_state(pTHX_ int signo)
2246 struct sigaction oact;
2248 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2251 return oact.sa_handler;
2255 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2257 struct sigaction act;
2259 act.sa_handler = handler;
2260 sigemptyset(&act.sa_mask);
2263 #if !defined(USE_PERLIO) || defined(PERL_OLD_SIGNALS)
2264 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2268 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2269 act.sa_flags |= SA_NOCLDWAIT;
2271 return sigaction(signo, &act, save);
2275 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2277 return sigaction(signo, save, (struct sigaction *)NULL);
2280 #else /* !HAS_SIGACTION */
2283 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2285 return PerlProc_signal(signo, handler);
2288 static int sig_trapped;
2298 Perl_rsignal_state(pTHX_ int signo)
2300 Sighandler_t oldsig;
2303 oldsig = PerlProc_signal(signo, sig_trap);
2304 PerlProc_signal(signo, oldsig);
2306 PerlProc_kill(PerlProc_getpid(), signo);
2311 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2313 *save = PerlProc_signal(signo, handler);
2314 return (*save == SIG_ERR) ? -1 : 0;
2318 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2320 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2323 #endif /* !HAS_SIGACTION */
2324 #endif /* !PERL_MICRO */
2326 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2327 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2329 Perl_my_pclose(pTHX_ PerlIO *ptr)
2331 Sigsave_t hstat, istat, qstat;
2337 int saved_errno = 0;
2339 int saved_vaxc_errno;
2342 int saved_win32_errno;
2346 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2348 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
2350 *svp = &PL_sv_undef;
2352 if (pid == -1) { /* Opened by popen. */
2353 return my_syspclose(ptr);
2356 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2357 saved_errno = errno;
2359 saved_vaxc_errno = vaxc$errno;
2362 saved_win32_errno = GetLastError();
2366 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2369 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2370 rsignal_save(SIGINT, SIG_IGN, &istat);
2371 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2374 pid2 = wait4pid(pid, &status, 0);
2375 } while (pid2 == -1 && errno == EINTR);
2377 rsignal_restore(SIGHUP, &hstat);
2378 rsignal_restore(SIGINT, &istat);
2379 rsignal_restore(SIGQUIT, &qstat);
2382 SETERRNO(saved_errno, saved_vaxc_errno);
2385 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2387 #endif /* !DOSISH */
2389 #if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(MACOS_TRADITIONAL)
2391 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2395 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2399 char spid[TYPE_CHARS(int)];
2402 sprintf(spid, "%"IVdf, (IV)pid);
2403 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2404 if (svp && *svp != &PL_sv_undef) {
2405 *statusp = SvIVX(*svp);
2406 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2413 hv_iterinit(PL_pidstatus);
2414 if ((entry = hv_iternext(PL_pidstatus))) {
2415 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2416 sv = hv_iterval(PL_pidstatus,entry);
2417 *statusp = SvIVX(sv);
2418 sprintf(spid, "%"IVdf, (IV)pid);
2419 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2426 # ifdef HAS_WAITPID_RUNTIME
2427 if (!HAS_WAITPID_RUNTIME)
2430 return PerlProc_waitpid(pid,statusp,flags);
2432 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2433 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2435 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2440 Perl_croak(aTHX_ "Can't do waitpid with flags");
2442 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2443 pidgone(result,*statusp);
2451 #endif /* !DOSISH || OS2 || WIN32 || NETWARE */
2455 Perl_pidgone(pTHX_ Pid_t pid, int status)
2458 char spid[TYPE_CHARS(int)];
2460 sprintf(spid, "%"IVdf, (IV)pid);
2461 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2462 (void)SvUPGRADE(sv,SVt_IV);
2467 #if defined(atarist) || defined(OS2)
2470 int /* Cannot prototype with I32
2472 my_syspclose(PerlIO *ptr)
2475 Perl_my_pclose(pTHX_ PerlIO *ptr)
2478 /* Needs work for PerlIO ! */
2479 FILE *f = PerlIO_findFILE(ptr);
2480 I32 result = pclose(f);
2481 PerlIO_releaseFILE(ptr,f);
2489 Perl_my_pclose(pTHX_ PerlIO *ptr)
2491 /* Needs work for PerlIO ! */
2492 FILE *f = PerlIO_findFILE(ptr);
2493 I32 result = djgpp_pclose(f);
2494 result = (result << 8) & 0xff00;
2495 PerlIO_releaseFILE(ptr,f);
2501 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2504 register const char *frombase = from;
2507 register const char c = *from;
2512 while (count-- > 0) {
2513 for (todo = len; todo > 0; todo--) {
2522 Perl_same_dirent(pTHX_ char *a, char *b)
2524 char *fa = strrchr(a,'/');
2525 char *fb = strrchr(b,'/');
2526 struct stat tmpstatbuf1;
2527 struct stat tmpstatbuf2;
2528 SV *tmpsv = sv_newmortal();
2541 sv_setpv(tmpsv, ".");
2543 sv_setpvn(tmpsv, a, fa - a);
2544 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2547 sv_setpv(tmpsv, ".");
2549 sv_setpvn(tmpsv, b, fb - b);
2550 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2552 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2553 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2555 #endif /* !HAS_RENAME */
2558 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
2560 char *xfound = Nullch;
2561 char *xfailed = Nullch;
2562 char tmpbuf[MAXPATHLEN];
2566 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2567 # define SEARCH_EXTS ".bat", ".cmd", NULL
2568 # define MAX_EXT_LEN 4
2571 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2572 # define MAX_EXT_LEN 4
2575 # define SEARCH_EXTS ".pl", ".com", NULL
2576 # define MAX_EXT_LEN 4
2578 /* additional extensions to try in each dir if scriptname not found */
2580 char *exts[] = { SEARCH_EXTS };
2581 char **ext = search_ext ? search_ext : exts;
2582 int extidx = 0, i = 0;
2583 char *curext = Nullch;
2585 # define MAX_EXT_LEN 0
2589 * If dosearch is true and if scriptname does not contain path
2590 * delimiters, search the PATH for scriptname.
2592 * If SEARCH_EXTS is also defined, will look for each
2593 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2594 * while searching the PATH.
2596 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2597 * proceeds as follows:
2598 * If DOSISH or VMSISH:
2599 * + look for ./scriptname{,.foo,.bar}
2600 * + search the PATH for scriptname{,.foo,.bar}
2603 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2604 * this will not look in '.' if it's not in the PATH)
2609 # ifdef ALWAYS_DEFTYPES
2610 len = strlen(scriptname);
2611 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2612 int hasdir, idx = 0, deftypes = 1;
2615 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2618 int hasdir, idx = 0, deftypes = 1;
2621 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2623 /* The first time through, just add SEARCH_EXTS to whatever we
2624 * already have, so we can check for default file types. */
2626 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
2632 if ((strlen(tmpbuf) + strlen(scriptname)
2633 + MAX_EXT_LEN) >= sizeof tmpbuf)
2634 continue; /* don't search dir with too-long name */
2635 strcat(tmpbuf, scriptname);
2639 if (strEQ(scriptname, "-"))
2641 if (dosearch) { /* Look in '.' first. */
2642 char *cur = scriptname;
2644 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2646 if (strEQ(ext[i++],curext)) {
2647 extidx = -1; /* already has an ext */
2652 DEBUG_p(PerlIO_printf(Perl_debug_log,
2653 "Looking for %s\n",cur));
2654 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2655 && !S_ISDIR(PL_statbuf.st_mode)) {
2663 if (cur == scriptname) {
2664 len = strlen(scriptname);
2665 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
2667 cur = strcpy(tmpbuf, scriptname);
2669 } while (extidx >= 0 && ext[extidx] /* try an extension? */
2670 && strcpy(tmpbuf+len, ext[extidx++]));
2675 #ifdef MACOS_TRADITIONAL
2676 if (dosearch && !strchr(scriptname, ':') &&
2677 (s = PerlEnv_getenv("Commands")))
2679 if (dosearch && !strchr(scriptname, '/')
2681 && !strchr(scriptname, '\\')
2683 && (s = PerlEnv_getenv("PATH")))
2688 PL_bufend = s + strlen(s);
2689 while (s < PL_bufend) {
2690 #ifdef MACOS_TRADITIONAL
2691 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2695 #if defined(atarist) || defined(DOSISH)
2700 && *s != ';'; len++, s++) {
2701 if (len < sizeof tmpbuf)
2704 if (len < sizeof tmpbuf)
2706 #else /* ! (atarist || DOSISH) */
2707 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2710 #endif /* ! (atarist || DOSISH) */
2711 #endif /* MACOS_TRADITIONAL */
2714 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
2715 continue; /* don't search dir with too-long name */
2716 #ifdef MACOS_TRADITIONAL
2717 if (len && tmpbuf[len - 1] != ':')
2718 tmpbuf[len++] = ':';
2721 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
2722 && tmpbuf[len - 1] != '/'
2723 && tmpbuf[len - 1] != '\\'
2726 tmpbuf[len++] = '/';
2727 if (len == 2 && tmpbuf[0] == '.')
2730 (void)strcpy(tmpbuf + len, scriptname);
2734 len = strlen(tmpbuf);
2735 if (extidx > 0) /* reset after previous loop */
2739 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
2740 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
2741 if (S_ISDIR(PL_statbuf.st_mode)) {
2745 } while ( retval < 0 /* not there */
2746 && extidx>=0 && ext[extidx] /* try an extension? */
2747 && strcpy(tmpbuf+len, ext[extidx++])
2752 if (S_ISREG(PL_statbuf.st_mode)
2753 && cando(S_IRUSR,TRUE,&PL_statbuf)
2754 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
2755 && cando(S_IXUSR,TRUE,&PL_statbuf)
2759 xfound = tmpbuf; /* bingo! */
2763 xfailed = savepv(tmpbuf);
2766 if (!xfound && !seen_dot && !xfailed &&
2767 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
2768 || S_ISDIR(PL_statbuf.st_mode)))
2770 seen_dot = 1; /* Disable message. */
2772 if (flags & 1) { /* do or die? */
2773 Perl_croak(aTHX_ "Can't %s %s%s%s",
2774 (xfailed ? "execute" : "find"),
2775 (xfailed ? xfailed : scriptname),
2776 (xfailed ? "" : " on PATH"),
2777 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2779 scriptname = Nullch;
2783 scriptname = xfound;
2785 return (scriptname ? savepv(scriptname) : Nullch);
2788 #ifndef PERL_GET_CONTEXT_DEFINED
2791 Perl_get_context(void)
2793 #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
2794 # ifdef OLD_PTHREADS_API
2796 if (pthread_getspecific(PL_thr_key, &t))
2797 Perl_croak_nocontext("panic: pthread_getspecific");
2800 # ifdef I_MACH_CTHREADS
2801 return (void*)cthread_data(cthread_self());
2803 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
2812 Perl_set_context(void *t)
2814 #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
2815 # ifdef I_MACH_CTHREADS
2816 cthread_set_data(cthread_self(), t);
2818 if (pthread_setspecific(PL_thr_key, t))
2819 Perl_croak_nocontext("panic: pthread_setspecific");
2824 #endif /* !PERL_GET_CONTEXT_DEFINED */
2826 #ifdef USE_5005THREADS
2829 /* Very simplistic scheduler for now */
2833 thr = thr->i.next_run;
2837 Perl_cond_init(pTHX_ perl_cond *cp)
2843 Perl_cond_signal(pTHX_ perl_cond *cp)
2846 perl_cond cond = *cp;
2851 /* Insert t in the runnable queue just ahead of us */
2852 t->i.next_run = thr->i.next_run;
2853 thr->i.next_run->i.prev_run = t;
2854 t->i.prev_run = thr;
2855 thr->i.next_run = t;
2856 thr->i.wait_queue = 0;
2857 /* Remove from the wait queue */
2863 Perl_cond_broadcast(pTHX_ perl_cond *cp)
2866 perl_cond cond, cond_next;
2868 for (cond = *cp; cond; cond = cond_next) {
2870 /* Insert t in the runnable queue just ahead of us */
2871 t->i.next_run = thr->i.next_run;
2872 thr->i.next_run->i.prev_run = t;
2873 t->i.prev_run = thr;
2874 thr->i.next_run = t;
2875 thr->i.wait_queue = 0;
2876 /* Remove from the wait queue */
2877 cond_next = cond->next;
2884 Perl_cond_wait(pTHX_ perl_cond *cp)
2888 if (thr->i.next_run == thr)
2889 Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
2891 New(666, cond, 1, struct perl_wait_queue);
2895 thr->i.wait_queue = cond;
2896 /* Remove ourselves from runnable queue */
2897 thr->i.next_run->i.prev_run = thr->i.prev_run;
2898 thr->i.prev_run->i.next_run = thr->i.next_run;
2900 #endif /* FAKE_THREADS */
2903 Perl_condpair_magic(pTHX_ SV *sv)
2907 (void)SvUPGRADE(sv, SVt_PVMG);
2908 mg = mg_find(sv, PERL_MAGIC_mutex);
2912 New(53, cp, 1, condpair_t);
2913 MUTEX_INIT(&cp->mutex);
2914 COND_INIT(&cp->owner_cond);
2915 COND_INIT(&cp->cond);
2917 LOCK_CRED_MUTEX; /* XXX need separate mutex? */
2918 mg = mg_find(sv, PERL_MAGIC_mutex);
2920 /* someone else beat us to initialising it */
2921 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
2922 MUTEX_DESTROY(&cp->mutex);
2923 COND_DESTROY(&cp->owner_cond);
2924 COND_DESTROY(&cp->cond);
2928 sv_magic(sv, Nullsv, PERL_MAGIC_mutex, 0, 0);
2930 mg->mg_ptr = (char *)cp;
2931 mg->mg_len = sizeof(cp);
2932 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
2933 DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
2934 "%p: condpair_magic %p\n", thr, sv)));
2941 Perl_sv_lock(pTHX_ SV *osv)
2951 mg = condpair_magic(sv);
2952 MUTEX_LOCK(MgMUTEXP(mg));
2953 if (MgOWNER(mg) == thr)
2954 MUTEX_UNLOCK(MgMUTEXP(mg));
2957 COND_WAIT(MgOWNERCONDP(mg), MgMUTEXP(mg));
2959 DEBUG_S(PerlIO_printf(Perl_debug_log,
2960 "0x%"UVxf": Perl_lock lock 0x%"UVxf"\n",
2961 PTR2UV(thr), PTR2UV(sv)));
2962 MUTEX_UNLOCK(MgMUTEXP(mg));
2963 SAVEDESTRUCTOR_X(Perl_unlock_condpair, sv);
2965 UNLOCK_SV_LOCK_MUTEX;
2970 * Make a new perl thread structure using t as a prototype. Some of the
2971 * fields for the new thread are copied from the prototype thread, t,
2972 * so t should not be running in perl at the time this function is
2973 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2974 * thread calling new_struct_thread) clearly satisfies this constraint.
2976 struct perl_thread *
2977 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
2979 #if !defined(PERL_IMPLICIT_CONTEXT)
2980 struct perl_thread *thr;
2986 sv = newSVpvn("", 0);
2987 SvGROW(sv, sizeof(struct perl_thread) + 1);
2988 SvCUR_set(sv, sizeof(struct perl_thread));
2989 thr = (Thread) SvPVX(sv);
2991 memset(thr, 0xab, sizeof(struct perl_thread));
2998 Zero(&PL_hv_fetch_ent_mh, 1, HE);
2999 PL_efloatbuf = (char*)NULL;
3002 Zero(thr, 1, struct perl_thread);
3008 PL_curcop = &PL_compiling;
3009 thr->interp = t->interp;
3010 thr->cvcache = newHV();
3011 thr->threadsv = newAV();
3012 thr->specific = newAV();
3013 thr->errsv = newSVpvn("", 0);
3014 thr->flags = THRf_R_JOINABLE;
3016 MUTEX_INIT(&thr->mutex);
3020 PL_in_eval = EVAL_NULL; /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR|EVAL_INREQUIRE) */
3023 PL_statname = NEWSV(66,0);
3024 PL_errors = newSVpvn("", 0);
3026 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3027 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3028 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3029 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3030 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3032 PL_reginterp_cnt = 0;
3033 PL_lastscream = Nullsv;
3036 PL_reg_start_tmp = 0;
3037 PL_reg_start_tmpl = 0;
3038 PL_reg_poscache = Nullch;
3040 PL_peepp = MEMBER_TO_FPTR(Perl_peep);
3042 /* parent thread's data needs to be locked while we make copy */
3043 MUTEX_LOCK(&t->mutex);
3045 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3046 PL_protect = t->Tprotect;
3049 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
3050 PL_defstash = t->Tdefstash; /* XXX maybe these should */
3051 PL_curstash = t->Tcurstash; /* always be set to main? */
3053 PL_tainted = t->Ttainted;
3054 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
3055 PL_rs = newSVsv(t->Trs);
3056 PL_last_in_gv = Nullgv;
3057 PL_ofs_sv = t->Tofs_sv ? SvREFCNT_inc(PL_ofs_sv) : Nullsv;
3058 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3059 PL_chopset = t->Tchopset;
3060 PL_bodytarget = newSVsv(t->Tbodytarget);
3061 PL_toptarget = newSVsv(t->Ttoptarget);
3062 if (t->Tformtarget == t->Ttoptarget)
3063 PL_formtarget = PL_toptarget;
3065 PL_formtarget = PL_bodytarget;
3067 /* Initialise all per-thread SVs that the template thread used */
3068 svp = AvARRAY(t->threadsv);
3069 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3070 if (*svp && *svp != &PL_sv_undef) {
3071 SV *sv = newSVsv(*svp);
3072 av_store(thr->threadsv, i, sv);
3073 sv_magic(sv, 0, PERL_MAGIC_sv, &PL_threadsv_names[i], 1);
3074 DEBUG_S(PerlIO_printf(Perl_debug_log,
3075 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3079 thr->threadsvp = AvARRAY(thr->threadsv);
3081 MUTEX_LOCK(&PL_threads_mutex);
3083 thr->tid = ++PL_threadnum;
3084 thr->next = t->next;
3087 thr->next->prev = thr;
3088 MUTEX_UNLOCK(&PL_threads_mutex);
3090 /* done copying parent's state */
3091 MUTEX_UNLOCK(&t->mutex);
3093 #ifdef HAVE_THREAD_INTERN
3094 Perl_init_thread_intern(thr);
3095 #endif /* HAVE_THREAD_INTERN */
3098 #endif /* USE_5005THREADS */
3100 #ifdef PERL_GLOBAL_STRUCT
3109 Perl_get_op_names(pTHX)
3115 Perl_get_op_descs(pTHX)
3121 Perl_get_no_modify(pTHX)
3123 return (char*)PL_no_modify;
3127 Perl_get_opargs(pTHX)
3133 Perl_get_ppaddr(pTHX)
3135 return (PPADDR_t*)PL_ppaddr;
3138 #ifndef HAS_GETENV_LEN
3140 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3142 char *env_trans = PerlEnv_getenv(env_elem);
3144 *len = strlen(env_trans);
3151 Perl_get_vtbl(pTHX_ int vtbl_id)
3153 MGVTBL* result = Null(MGVTBL*);
3157 result = &PL_vtbl_sv;
3160 result = &PL_vtbl_env;
3162 case want_vtbl_envelem:
3163 result = &PL_vtbl_envelem;
3166 result = &PL_vtbl_sig;
3168 case want_vtbl_sigelem:
3169 result = &PL_vtbl_sigelem;
3171 case want_vtbl_pack:
3172 result = &PL_vtbl_pack;
3174 case want_vtbl_packelem:
3175 result = &PL_vtbl_packelem;
3177 case want_vtbl_dbline:
3178 result = &PL_vtbl_dbline;
3181 result = &PL_vtbl_isa;
3183 case want_vtbl_isaelem:
3184 result = &PL_vtbl_isaelem;
3186 case want_vtbl_arylen:
3187 result = &PL_vtbl_arylen;
3189 case want_vtbl_glob:
3190 result = &PL_vtbl_glob;
3192 case want_vtbl_mglob:
3193 result = &PL_vtbl_mglob;
3195 case want_vtbl_nkeys:
3196 result = &PL_vtbl_nkeys;
3198 case want_vtbl_taint:
3199 result = &PL_vtbl_taint;
3201 case want_vtbl_substr:
3202 result = &PL_vtbl_substr;
3205 result = &PL_vtbl_vec;
3208 result = &PL_vtbl_pos;
3211 result = &PL_vtbl_bm;
3214 result = &PL_vtbl_fm;
3216 case want_vtbl_uvar:
3217 result = &PL_vtbl_uvar;
3219 #ifdef USE_5005THREADS
3220 case want_vtbl_mutex:
3221 result = &PL_vtbl_mutex;
3224 case want_vtbl_defelem:
3225 result = &PL_vtbl_defelem;
3227 case want_vtbl_regexp:
3228 result = &PL_vtbl_regexp;
3230 case want_vtbl_regdata:
3231 result = &PL_vtbl_regdata;
3233 case want_vtbl_regdatum:
3234 result = &PL_vtbl_regdatum;
3236 #ifdef USE_LOCALE_COLLATE
3237 case want_vtbl_collxfrm:
3238 result = &PL_vtbl_collxfrm;
3241 case want_vtbl_amagic:
3242 result = &PL_vtbl_amagic;
3244 case want_vtbl_amagicelem:
3245 result = &PL_vtbl_amagicelem;
3247 case want_vtbl_backref:
3248 result = &PL_vtbl_backref;
3255 Perl_my_fflush_all(pTHX)
3257 #if defined(FFLUSH_NULL)
3258 return PerlIO_flush(NULL);
3260 # if defined(HAS__FWALK)
3261 /* undocumented, unprototyped, but very useful BSDism */
3262 extern void _fwalk(int (*)(FILE *));
3266 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3268 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3269 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3271 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3272 open_max = sysconf(_SC_OPEN_MAX);
3275 open_max = FOPEN_MAX;
3278 open_max = OPEN_MAX;
3289 for (i = 0; i < open_max; i++)
3290 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3291 STDIO_STREAM_ARRAY[i]._file < open_max &&
3292 STDIO_STREAM_ARRAY[i]._flag)
3293 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3297 SETERRNO(EBADF,RMS$_IFI);
3304 Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op)
3309 op == OP_READLINE ? "readline" : /* "<HANDLE>" not nice */
3310 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3312 char *pars = OP_IS_FILETEST(op) ? "" : "()";
3313 char *type = OP_IS_SOCKET(op) ||
3314 (gv && io && IoTYPE(io) == IoTYPE_SOCKET) ?
3315 "socket" : "filehandle";
3318 if (gv && io && IoTYPE(io) == IoTYPE_CLOSED) {
3320 warn_type = WARN_CLOSED;
3324 warn_type = WARN_UNOPENED;
3327 if (gv && isGV(gv)) {
3328 SV *sv = sv_newmortal();
3329 gv_efullname4(sv, gv, Nullch, FALSE);
3333 if (op == OP_phoney_OUTPUT_ONLY || op == OP_phoney_INPUT_ONLY) {
3335 Perl_warner(aTHX_ WARN_IO, "Filehandle %s opened only for %sput",
3337 (op == OP_phoney_INPUT_ONLY ? "in" : "out"));
3339 Perl_warner(aTHX_ WARN_IO, "Filehandle opened only for %sput",
3340 (op == OP_phoney_INPUT_ONLY ? "in" : "out"));
3341 } else if (name && *name) {
3342 Perl_warner(aTHX_ warn_type,
3343 "%s%s on %s %s %s", func, pars, vile, type, name);
3344 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3345 Perl_warner(aTHX_ warn_type,
3346 "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3350 Perl_warner(aTHX_ warn_type,
3351 "%s%s on %s %s", func, pars, vile, type);
3352 if (gv && io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3353 Perl_warner(aTHX_ warn_type,
3354 "\t(Are you trying to call %s%s on dirhandle?)\n",
3360 /* in ASCII order, not that it matters */
3361 static const char controllablechars[] = "?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_";
3364 Perl_ebcdic_control(pTHX_ int ch)
3372 if ((ctlp = strchr(controllablechars, ch)) == 0) {
3373 Perl_die(aTHX_ "unrecognised control character '%c'\n", ch);
3376 if (ctlp == controllablechars)
3377 return('\177'); /* DEL */
3379 return((unsigned char)(ctlp - controllablechars - 1));
3380 } else { /* Want uncontrol */
3381 if (ch == '\177' || ch == -1)
3383 else if (ch == '\157')
3385 else if (ch == '\174')
3387 else if (ch == '^') /* '\137' in 1047, '\260' in 819 */
3389 else if (ch == '\155')
3391 else if (0 < ch && ch < (sizeof(controllablechars) - 1))
3392 return(controllablechars[ch+1]);
3394 Perl_die(aTHX_ "invalid control request: '\\%03o'\n", ch & 0xFF);
3399 /* XXX struct tm on some systems (SunOS4/BSD) contains extra (non POSIX)
3400 * fields for which we don't have Configure support yet:
3401 * char *tm_zone; -- abbreviation of timezone name
3402 * long tm_gmtoff; -- offset from GMT in seconds
3403 * To workaround core dumps from the uninitialised tm_zone we get the
3404 * system to give us a reasonable struct to copy. This fix means that
3405 * strftime uses the tm_zone and tm_gmtoff values returned by
3406 * localtime(time()). That should give the desired result most of the
3407 * time. But probably not always!
3409 * This is a temporary workaround to be removed once Configure
3410 * support is added and NETaa14816 is considered in full.
3411 * It does not address tzname aspects of NETaa14816.
3414 # ifndef STRUCT_TM_HASZONE
3415 # define STRUCT_TM_HASZONE
3420 Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
3422 #ifdef STRUCT_TM_HASZONE
3425 Copy(localtime(&now), ptm, 1, struct tm);
3430 * mini_mktime - normalise struct tm values without the localtime()
3431 * semantics (and overhead) of mktime().
3434 Perl_mini_mktime(pTHX_ struct tm *ptm)
3438 int month, mday, year, jday;
3439 int odd_cent, odd_year;
3441 #define DAYS_PER_YEAR 365
3442 #define DAYS_PER_QYEAR (4*DAYS_PER_YEAR+1)
3443 #define DAYS_PER_CENT (25*DAYS_PER_QYEAR-1)
3444 #define DAYS_PER_QCENT (4*DAYS_PER_CENT+1)
3445 #define SECS_PER_HOUR (60*60)
3446 #define SECS_PER_DAY (24*SECS_PER_HOUR)
3447 /* parentheses deliberately absent on these two, otherwise they don't work */
3448 #define MONTH_TO_DAYS 153/5
3449 #define DAYS_TO_MONTH 5/153
3450 /* offset to bias by March (month 4) 1st between month/mday & year finding */
3451 #define YEAR_ADJUST (4*MONTH_TO_DAYS+1)
3452 /* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
3453 #define WEEKDAY_BIAS 6 /* (1+6)%7 makes Sunday 0 again */
3456 * Year/day algorithm notes:
3458 * With a suitable offset for numeric value of the month, one can find
3459 * an offset into the year by considering months to have 30.6 (153/5) days,
3460 * using integer arithmetic (i.e., with truncation). To avoid too much
3461 * messing about with leap days, we consider January and February to be
3462 * the 13th and 14th month of the previous year. After that transformation,
3463 * we need the month index we use to be high by 1 from 'normal human' usage,
3464 * so the month index values we use run from 4 through 15.
3466 * Given that, and the rules for the Gregorian calendar (leap years are those
3467 * divisible by 4 unless also divisible by 100, when they must be divisible
3468 * by 400 instead), we can simply calculate the number of days since some
3469 * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
3470 * the days we derive from our month index, and adding in the day of the
3471 * month. The value used here is not adjusted for the actual origin which
3472 * it normally would use (1 January A.D. 1), since we're not exposing it.
3473 * We're only building the value so we can turn around and get the
3474 * normalised values for the year, month, day-of-month, and day-of-year.
3476 * For going backward, we need to bias the value we're using so that we find
3477 * the right year value. (Basically, we don't want the contribution of
3478 * March 1st to the number to apply while deriving the year). Having done
3479 * that, we 'count up' the contribution to the year number by accounting for
3480 * full quadracenturies (400-year periods) with their extra leap days, plus
3481 * the contribution from full centuries (to avoid counting in the lost leap
3482 * days), plus the contribution from full quad-years (to count in the normal
3483 * leap days), plus the leftover contribution from any non-leap years.
3484 * At this point, if we were working with an actual leap day, we'll have 0
3485 * days left over. This is also true for March 1st, however. So, we have
3486 * to special-case that result, and (earlier) keep track of the 'odd'
3487 * century and year contributions. If we got 4 extra centuries in a qcent,
3488 * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
3489 * Otherwise, we add back in the earlier bias we removed (the 123 from
3490 * figuring in March 1st), find the month index (integer division by 30.6),
3491 * and the remainder is the day-of-month. We then have to convert back to
3492 * 'real' months (including fixing January and February from being 14/15 in
3493 * the previous year to being in the proper year). After that, to get
3494 * tm_yday, we work with the normalised year and get a new yearday value for
3495 * January 1st, which we subtract from the yearday value we had earlier,
3496 * representing the date we've re-built. This is done from January 1
3497 * because tm_yday is 0-origin.
3499 * Since POSIX time routines are only guaranteed to work for times since the
3500 * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
3501 * applies Gregorian calendar rules even to dates before the 16th century
3502 * doesn't bother me. Besides, you'd need cultural context for a given
3503 * date to know whether it was Julian or Gregorian calendar, and that's
3504 * outside the scope for this routine. Since we convert back based on the
3505 * same rules we used to build the yearday, you'll only get strange results
3506 * for input which needed normalising, or for the 'odd' century years which
3507 * were leap years in the Julian calander but not in the Gregorian one.
3508 * I can live with that.
3510 * This algorithm also fails to handle years before A.D. 1 gracefully, but
3511 * that's still outside the scope for POSIX time manipulation, so I don't
3515 year = 1900 + ptm->tm_year;
3516 month = ptm->tm_mon;
3517 mday = ptm->tm_mday;
3518 /* allow given yday with no month & mday to dominate the result */
3519 if (ptm->tm_yday >= 0 && mday <= 0 && month <= 0) {
3522 jday = 1 + ptm->tm_yday;
3531 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
3532 yearday += month*MONTH_TO_DAYS + mday + jday;
3534 * Note that we don't know when leap-seconds were or will be,
3535 * so we have to trust the user if we get something which looks
3536 * like a sensible leap-second. Wild values for seconds will
3537 * be rationalised, however.
3539 if ((unsigned) ptm->tm_sec <= 60) {
3546 secs += 60 * ptm->tm_min;
3547 secs += SECS_PER_HOUR * ptm->tm_hour;
3549 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3550 /* got negative remainder, but need positive time */
3551 /* back off an extra day to compensate */
3552 yearday += (secs/SECS_PER_DAY)-1;
3553 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
3556 yearday += (secs/SECS_PER_DAY);
3557 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
3560 else if (secs >= SECS_PER_DAY) {
3561 yearday += (secs/SECS_PER_DAY);
3562 secs %= SECS_PER_DAY;
3564 ptm->tm_hour = secs/SECS_PER_HOUR;
3565 secs %= SECS_PER_HOUR;
3566 ptm->tm_min = secs/60;
3568 ptm->tm_sec += secs;
3569 /* done with time of day effects */
3571 * The algorithm for yearday has (so far) left it high by 428.
3572 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
3573 * bias it by 123 while trying to figure out what year it
3574 * really represents. Even with this tweak, the reverse
3575 * translation fails for years before A.D. 0001.
3576 * It would still fail for Feb 29, but we catch that one below.
3578 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
3579 yearday -= YEAR_ADJUST;
3580 year = (yearday / DAYS_PER_QCENT) * 400;
3581 yearday %= DAYS_PER_QCENT;
3582 odd_cent = yearday / DAYS_PER_CENT;
3583 year += odd_cent * 100;
3584 yearday %= DAYS_PER_CENT;
3585 year += (yearday / DAYS_PER_QYEAR) * 4;
3586 yearday %= DAYS_PER_QYEAR;
3587 odd_year = yearday / DAYS_PER_YEAR;
3589 yearday %= DAYS_PER_YEAR;
3590 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
3595 yearday += YEAR_ADJUST; /* recover March 1st crock */
3596 month = yearday*DAYS_TO_MONTH;
3597 yearday -= month*MONTH_TO_DAYS;
3598 /* recover other leap-year adjustment */
3607 ptm->tm_year = year - 1900;
3609 ptm->tm_mday = yearday;
3610 ptm->tm_mon = month;
3614 ptm->tm_mon = month - 1;
3616 /* re-build yearday based on Jan 1 to get tm_yday */
3618 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
3619 yearday += 14*MONTH_TO_DAYS + 1;
3620 ptm->tm_yday = jday - yearday;
3621 /* fix tm_wday if not overridden by caller */
3622 if ((unsigned)ptm->tm_wday > 6)
3623 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
3627 Perl_my_strftime(pTHX_ char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst)
3635 init_tm(&mytm); /* XXX workaround - see init_tm() above */
3638 mytm.tm_hour = hour;
3639 mytm.tm_mday = mday;
3641 mytm.tm_year = year;
3642 mytm.tm_wday = wday;
3643 mytm.tm_yday = yday;
3644 mytm.tm_isdst = isdst;
3647 New(0, buf, buflen, char);
3648 len = strftime(buf, buflen, fmt, &mytm);
3650 ** The following is needed to handle to the situation where
3651 ** tmpbuf overflows. Basically we want to allocate a buffer
3652 ** and try repeatedly. The reason why it is so complicated
3653 ** is that getting a return value of 0 from strftime can indicate
3654 ** one of the following:
3655 ** 1. buffer overflowed,
3656 ** 2. illegal conversion specifier, or
3657 ** 3. the format string specifies nothing to be returned(not
3658 ** an error). This could be because format is an empty string
3659 ** or it specifies %p that yields an empty string in some locale.
3660 ** If there is a better way to make it portable, go ahead by
3663 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
3666 /* Possibly buf overflowed - try again with a bigger buf */
3667 int fmtlen = strlen(fmt);
3668 int bufsize = fmtlen + buflen;
3670 New(0, buf, bufsize, char);
3672 buflen = strftime(buf, bufsize, fmt, &mytm);
3673 if (buflen > 0 && buflen < bufsize)
3675 /* heuristic to prevent out-of-memory errors */
3676 if (bufsize > 100*fmtlen) {
3682 Renew(buf, bufsize, char);
3687 Perl_croak(aTHX_ "panic: no strftime");
3692 #define SV_CWD_RETURN_UNDEF \
3693 sv_setsv(sv, &PL_sv_undef); \
3696 #define SV_CWD_ISDOT(dp) \
3697 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
3698 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
3701 =for apidoc getcwd_sv
3703 Fill the sv with current working directory
3708 /* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
3709 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
3710 * getcwd(3) if available
3711 * Comments from the orignal:
3712 * This is a faster version of getcwd. It's also more dangerous
3713 * because you might chdir out of a directory that you can't chdir
3717 Perl_getcwd_sv(pTHX_ register SV *sv)
3721 #ifndef INCOMPLETE_TAINTS
3727 char buf[MAXPATHLEN];
3729 /* Some getcwd()s automatically allocate a buffer of the given
3730 * size from the heap if they are given a NULL buffer pointer.
3731 * The problem is that this behaviour is not portable. */
3732 if (getcwd(buf, sizeof(buf) - 1)) {
3733 STRLEN len = strlen(buf);
3734 sv_setpvn(sv, buf, len);
3738 sv_setsv(sv, &PL_sv_undef);
3745 struct stat statbuf;
3746 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
3747 int namelen, pathlen=0;
3751 (void)SvUPGRADE(sv, SVt_PV);
3753 if (PerlLIO_lstat(".", &statbuf) < 0) {
3754 SV_CWD_RETURN_UNDEF;
3757 orig_cdev = statbuf.st_dev;
3758 orig_cino = statbuf.st_ino;
3766 if (PerlDir_chdir("..") < 0) {
3767 SV_CWD_RETURN_UNDEF;
3769 if (PerlLIO_stat(".", &statbuf) < 0) {
3770 SV_CWD_RETURN_UNDEF;
3773 cdev = statbuf.st_dev;
3774 cino = statbuf.st_ino;
3776 if (odev == cdev && oino == cino) {
3779 if (!(dir = PerlDir_open("."))) {
3780 SV_CWD_RETURN_UNDEF;
3783 while ((dp = PerlDir_read(dir)) != NULL) {
3785 namelen = dp->d_namlen;
3787 namelen = strlen(dp->d_name);
3790 if (SV_CWD_ISDOT(dp)) {
3794 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
3795 SV_CWD_RETURN_UNDEF;
3798 tdev = statbuf.st_dev;
3799 tino = statbuf.st_ino;
3800 if (tino == oino && tdev == odev) {
3806 SV_CWD_RETURN_UNDEF;
3809 if (pathlen + namelen + 1 >= MAXPATHLEN) {
3810 SV_CWD_RETURN_UNDEF;
3813 SvGROW(sv, pathlen + namelen + 1);
3817 Move(SvPVX(sv), SvPVX(sv) + namelen + 1, pathlen, char);
3820 /* prepend current directory to the front */
3822 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
3823 pathlen += (namelen + 1);
3825 #ifdef VOID_CLOSEDIR
3828 if (PerlDir_close(dir) < 0) {
3829 SV_CWD_RETURN_UNDEF;
3835 SvCUR_set(sv, pathlen);
3839 if (PerlDir_chdir(SvPVX(sv)) < 0) {
3840 SV_CWD_RETURN_UNDEF;
3843 if (PerlLIO_stat(".", &statbuf) < 0) {
3844 SV_CWD_RETURN_UNDEF;
3847 cdev = statbuf.st_dev;
3848 cino = statbuf.st_ino;
3850 if (cdev != orig_cdev || cino != orig_cino) {
3851 Perl_croak(aTHX_ "Unstable directory path, "
3852 "current directory changed unexpectedly");