ByteLoader mark 2
[p5sagit/p5-mst-13.2.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-1999, Larry Wall
4  *
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.
7  *
8  */
9
10 /*
11  * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12  * not content."  --Gandalf
13  */
14
15 #include "EXTERN.h"
16 #include "perl.h"
17
18 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
19 #include <signal.h>
20 #endif
21
22 #ifndef SIG_ERR
23 # define SIG_ERR ((Sighandler_t) -1)
24 #endif
25
26 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
27 #ifdef I_UNISTD
28 #  include <unistd.h>
29 #endif
30
31 #ifdef I_VFORK
32 #  include <vfork.h>
33 #endif
34
35 /* Put this after #includes because fork and vfork prototypes may
36    conflict.
37 */
38 #ifndef HAS_VFORK
39 #   define vfork fork
40 #endif
41
42 #ifdef I_FCNTL
43 #  include <fcntl.h>
44 #endif
45 #ifdef I_SYS_FILE
46 #  include <sys/file.h>
47 #endif
48
49 #ifdef I_SYS_WAIT
50 #  include <sys/wait.h>
51 #endif
52
53 #define FLUSH
54
55 #ifdef LEAKTEST
56
57 static void xstat _((int));
58 long xcount[MAXXCOUNT];
59 long lastxcount[MAXXCOUNT];
60 long xycount[MAXXCOUNT][MAXYCOUNT];
61 long lastxycount[MAXXCOUNT][MAXYCOUNT];
62
63 #endif
64
65 /* paranoid version of system's malloc() */
66
67 /* NOTE:  Do not call the next three routines directly.  Use the macros
68  * in handy.h, so that we can easily redefine everything to do tracking of
69  * allocated hunks back to the original New to track down any memory leaks.
70  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
71  */
72
73 Malloc_t
74 safesysmalloc(MEM_SIZE size)
75 {
76     Malloc_t ptr;
77 #ifdef HAS_64K_LIMIT
78         if (size > 0xffff) {
79                 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
80                 my_exit(1);
81         }
82 #endif /* HAS_64K_LIMIT */
83 #ifdef DEBUGGING
84     if ((long)size < 0)
85         croak("panic: malloc");
86 #endif
87     ptr = PerlMem_malloc(size?size:1);  /* malloc(0) is NASTY on our system */
88 #if !(defined(I286) || defined(atarist))
89     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
90 #else
91     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
92 #endif
93     if (ptr != Nullch)
94         return ptr;
95     else if (PL_nomemok)
96         return Nullch;
97     else {
98         PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
99         my_exit(1);
100         return Nullch;
101     }
102     /*NOTREACHED*/
103 }
104
105 /* paranoid version of system's realloc() */
106
107 Malloc_t
108 safesysrealloc(Malloc_t where,MEM_SIZE size)
109 {
110     Malloc_t ptr;
111 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
112     Malloc_t PerlMem_realloc();
113 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
114
115 #ifdef HAS_64K_LIMIT 
116     if (size > 0xffff) {
117         PerlIO_printf(PerlIO_stderr(),
118                       "Reallocation too large: %lx\n", size) FLUSH;
119         my_exit(1);
120     }
121 #endif /* HAS_64K_LIMIT */
122     if (!size) {
123         safesysfree(where);
124         return NULL;
125     }
126
127     if (!where)
128         return safesysmalloc(size);
129 #ifdef DEBUGGING
130     if ((long)size < 0)
131         croak("panic: realloc");
132 #endif
133     ptr = PerlMem_realloc(where,size);
134
135 #if !(defined(I286) || defined(atarist))
136     DEBUG_m( {
137         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,PL_an++);
138         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
139     } )
140 #else
141     DEBUG_m( {
142         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,PL_an++);
143         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
144     } )
145 #endif
146
147     if (ptr != Nullch)
148         return ptr;
149     else if (PL_nomemok)
150         return Nullch;
151     else {
152         PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
153         my_exit(1);
154         return Nullch;
155     }
156     /*NOTREACHED*/
157 }
158
159 /* safe version of system's free() */
160
161 Free_t
162 safesysfree(Malloc_t where)
163 {
164 #if !(defined(I286) || defined(atarist))
165     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,PL_an++));
166 #else
167     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,PL_an++));
168 #endif
169     if (where) {
170         /*SUPPRESS 701*/
171         PerlMem_free(where);
172     }
173 }
174
175 /* safe version of system's calloc() */
176
177 Malloc_t
178 safesyscalloc(MEM_SIZE count, MEM_SIZE size)
179 {
180     Malloc_t ptr;
181
182 #ifdef HAS_64K_LIMIT
183     if (size * count > 0xffff) {
184         PerlIO_printf(PerlIO_stderr(),
185                       "Allocation too large: %lx\n", size * count) FLUSH;
186         my_exit(1);
187     }
188 #endif /* HAS_64K_LIMIT */
189 #ifdef DEBUGGING
190     if ((long)size < 0 || (long)count < 0)
191         croak("panic: calloc");
192 #endif
193     size *= count;
194     ptr = PerlMem_malloc(size?size:1);  /* malloc(0) is NASTY on our system */
195 #if !(defined(I286) || defined(atarist))
196     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld  x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
197 #else
198     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
199 #endif
200     if (ptr != Nullch) {
201         memset((void*)ptr, 0, size);
202         return ptr;
203     }
204     else if (PL_nomemok)
205         return Nullch;
206     else {
207         PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
208         my_exit(1);
209         return Nullch;
210     }
211     /*NOTREACHED*/
212 }
213
214 #ifdef LEAKTEST
215
216 struct mem_test_strut {
217     union {
218         long type;
219         char c[2];
220     } u;
221     long size;
222 };
223
224 #    define ALIGN sizeof(struct mem_test_strut)
225
226 #    define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
227 #    define typeof_chunk(ch) \
228         (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
229 #    define set_typeof_chunk(ch,t) \
230         (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
231 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE                            \
232                           ? MAXYCOUNT - 1                               \
233                           : ( (size) > 40                               \
234                               ? ((size) - 1)/8 + 5                      \
235                               : ((size) - 1)/4))
236
237 Malloc_t
238 safexmalloc(I32 x, MEM_SIZE size)
239 {
240     register char* where = (char*)safemalloc(size + ALIGN);
241
242     xcount[x] += size;
243     xycount[x][SIZE_TO_Y(size)]++;
244     set_typeof_chunk(where, x);
245     sizeof_chunk(where) = size;
246     return (Malloc_t)(where + ALIGN);
247 }
248
249 Malloc_t
250 safexrealloc(Malloc_t wh, MEM_SIZE size)
251 {
252     char *where = (char*)wh;
253
254     if (!wh)
255         return safexmalloc(0,size);
256     
257     {
258         MEM_SIZE old = sizeof_chunk(where - ALIGN);
259         int t = typeof_chunk(where - ALIGN);
260         register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
261     
262         xycount[t][SIZE_TO_Y(old)]--;
263         xycount[t][SIZE_TO_Y(size)]++;
264         xcount[t] += size - old;
265         sizeof_chunk(new) = size;
266         return (Malloc_t)(new + ALIGN);
267     }
268 }
269
270 void
271 safexfree(Malloc_t wh)
272 {
273     I32 x;
274     char *where = (char*)wh;
275     MEM_SIZE size;
276     
277     if (!where)
278         return;
279     where -= ALIGN;
280     size = sizeof_chunk(where);
281     x = where[0] + 100 * where[1];
282     xcount[x] -= size;
283     xycount[x][SIZE_TO_Y(size)]--;
284     safefree(where);
285 }
286
287 Malloc_t
288 safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
289 {
290     register char * where = (char*)safexmalloc(x, size * count + ALIGN);
291     xcount[x] += size;
292     xycount[x][SIZE_TO_Y(size)]++;
293     memset((void*)(where + ALIGN), 0, size * count);
294     set_typeof_chunk(where, x);
295     sizeof_chunk(where) = size;
296     return (Malloc_t)(where + ALIGN);
297 }
298
299 static void
300 xstat(int flag)
301 {
302     register I32 i, j, total = 0;
303     I32 subtot[MAXYCOUNT];
304
305     for (j = 0; j < MAXYCOUNT; j++) {
306         subtot[j] = 0;
307     }
308     
309     PerlIO_printf(PerlIO_stderr(), "   Id  subtot   4   8  12  16  20  24  28  32  36  40  48  56  64  72  80 80+\n", total);
310     for (i = 0; i < MAXXCOUNT; i++) {
311         total += xcount[i];
312         for (j = 0; j < MAXYCOUNT; j++) {
313             subtot[j] += xycount[i][j];
314         }
315         if (flag == 0
316             ? xcount[i]                 /* Have something */
317             : (flag == 2 
318                ? xcount[i] != lastxcount[i] /* Changed */
319                : xcount[i] > lastxcount[i])) { /* Growed */
320             PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100, 
321                           flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
322             lastxcount[i] = xcount[i];
323             for (j = 0; j < MAXYCOUNT; j++) {
324                 if ( flag == 0 
325                      ? xycount[i][j]    /* Have something */
326                      : (flag == 2 
327                         ? xycount[i][j] != lastxycount[i][j] /* Changed */
328                         : xycount[i][j] > lastxycount[i][j])) { /* Growed */
329                     PerlIO_printf(PerlIO_stderr(),"%3ld ", 
330                                   flag == 2 
331                                   ? xycount[i][j] - lastxycount[i][j] 
332                                   : xycount[i][j]);
333                     lastxycount[i][j] = xycount[i][j];
334                 } else {
335                     PerlIO_printf(PerlIO_stderr(), "  . ", xycount[i][j]);
336                 }
337             }
338             PerlIO_printf(PerlIO_stderr(), "\n");
339         }
340     }
341     if (flag != 2) {
342         PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
343         for (j = 0; j < MAXYCOUNT; j++) {
344             if (subtot[j]) {
345                 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
346             } else {
347                 PerlIO_printf(PerlIO_stderr(), "  . ");
348             }
349         }
350         PerlIO_printf(PerlIO_stderr(), "\n");   
351     }
352 }
353
354 #endif /* LEAKTEST */
355
356 /* copy a string up to some (non-backslashed) delimiter, if any */
357
358 char *
359 delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
360 {
361     register I32 tolen;
362     for (tolen = 0; from < fromend; from++, tolen++) {
363         if (*from == '\\') {
364             if (from[1] == delim)
365                 from++;
366             else {
367                 if (to < toend)
368                     *to++ = *from;
369                 tolen++;
370                 from++;
371             }
372         }
373         else if (*from == delim)
374             break;
375         if (to < toend)
376             *to++ = *from;
377     }
378     if (to < toend)
379         *to = '\0';
380     *retlen = tolen;
381     return from;
382 }
383
384 /* return ptr to little string in big string, NULL if not found */
385 /* This routine was donated by Corey Satten. */
386
387 char *
388 instr(register const char *big, register const char *little)
389 {
390     register const char *s, *x;
391     register I32 first;
392
393     if (!little)
394         return (char*)big;
395     first = *little++;
396     if (!first)
397         return (char*)big;
398     while (*big) {
399         if (*big++ != first)
400             continue;
401         for (x=big,s=little; *s; /**/ ) {
402             if (!*x)
403                 return Nullch;
404             if (*s++ != *x++) {
405                 s--;
406                 break;
407             }
408         }
409         if (!*s)
410             return (char*)(big-1);
411     }
412     return Nullch;
413 }
414
415 /* same as instr but allow embedded nulls */
416
417 char *
418 ninstr(register const char *big, register const char *bigend, const char *little, const char *lend)
419 {
420     register const char *s, *x;
421     register I32 first = *little;
422     register const char *littleend = lend;
423
424     if (!first && little >= littleend)
425         return (char*)big;
426     if (bigend - big < littleend - little)
427         return Nullch;
428     bigend -= littleend - little++;
429     while (big <= bigend) {
430         if (*big++ != first)
431             continue;
432         for (x=big,s=little; s < littleend; /**/ ) {
433             if (*s++ != *x++) {
434                 s--;
435                 break;
436             }
437         }
438         if (s >= littleend)
439             return (char*)(big-1);
440     }
441     return Nullch;
442 }
443
444 /* reverse of the above--find last substring */
445
446 char *
447 rninstr(register const char *big, const char *bigend, const char *little, const char *lend)
448 {
449     register const char *bigbeg;
450     register const char *s, *x;
451     register I32 first = *little;
452     register const char *littleend = lend;
453
454     if (!first && little >= littleend)
455         return (char*)bigend;
456     bigbeg = big;
457     big = bigend - (littleend - little++);
458     while (big >= bigbeg) {
459         if (*big-- != first)
460             continue;
461         for (x=big+2,s=little; s < littleend; /**/ ) {
462             if (*s++ != *x++) {
463                 s--;
464                 break;
465             }
466         }
467         if (s >= littleend)
468             return (char*)(big+1);
469     }
470     return Nullch;
471 }
472
473 /*
474  * Set up for a new ctype locale.
475  */
476 void
477 perl_new_ctype(const char *newctype)
478 {
479 #ifdef USE_LOCALE_CTYPE
480
481     int i;
482
483     for (i = 0; i < 256; i++) {
484         if (isUPPER_LC(i))
485             PL_fold_locale[i] = toLOWER_LC(i);
486         else if (isLOWER_LC(i))
487             PL_fold_locale[i] = toUPPER_LC(i);
488         else
489             PL_fold_locale[i] = i;
490     }
491
492 #endif /* USE_LOCALE_CTYPE */
493 }
494
495 /*
496  * Set up for a new collation locale.
497  */
498 void
499 perl_new_collate(const char *newcoll)
500 {
501 #ifdef USE_LOCALE_COLLATE
502
503     if (! newcoll) {
504         if (PL_collation_name) {
505             ++PL_collation_ix;
506             Safefree(PL_collation_name);
507             PL_collation_name = NULL;
508             PL_collation_standard = TRUE;
509             PL_collxfrm_base = 0;
510             PL_collxfrm_mult = 2;
511         }
512         return;
513     }
514
515     if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
516         ++PL_collation_ix;
517         Safefree(PL_collation_name);
518         PL_collation_name = savepv(newcoll);
519         PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
520
521         {
522           /*  2: at most so many chars ('a', 'b'). */
523           /* 50: surely no system expands a char more. */
524 #define XFRMBUFSIZE  (2 * 50)
525           char xbuf[XFRMBUFSIZE];
526           Size_t fa = strxfrm(xbuf, "a",  XFRMBUFSIZE);
527           Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
528           SSize_t mult = fb - fa;
529           if (mult < 1)
530               croak("strxfrm() gets absurd");
531           PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
532           PL_collxfrm_mult = mult;
533         }
534     }
535
536 #endif /* USE_LOCALE_COLLATE */
537 }
538
539 /*
540  * Set up for a new numeric locale.
541  */
542 void
543 perl_new_numeric(const char *newnum)
544 {
545 #ifdef USE_LOCALE_NUMERIC
546
547     if (! newnum) {
548         if (PL_numeric_name) {
549             Safefree(PL_numeric_name);
550             PL_numeric_name = NULL;
551             PL_numeric_standard = TRUE;
552             PL_numeric_local = TRUE;
553         }
554         return;
555     }
556
557     if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
558         Safefree(PL_numeric_name);
559         PL_numeric_name = savepv(newnum);
560         PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
561         PL_numeric_local = TRUE;
562     }
563
564 #endif /* USE_LOCALE_NUMERIC */
565 }
566
567 void
568 perl_set_numeric_standard(void)
569 {
570 #ifdef USE_LOCALE_NUMERIC
571
572     if (! PL_numeric_standard) {
573         setlocale(LC_NUMERIC, "C");
574         PL_numeric_standard = TRUE;
575         PL_numeric_local = FALSE;
576     }
577
578 #endif /* USE_LOCALE_NUMERIC */
579 }
580
581 void
582 perl_set_numeric_local(void)
583 {
584 #ifdef USE_LOCALE_NUMERIC
585
586     if (! PL_numeric_local) {
587         setlocale(LC_NUMERIC, PL_numeric_name);
588         PL_numeric_standard = FALSE;
589         PL_numeric_local = TRUE;
590     }
591
592 #endif /* USE_LOCALE_NUMERIC */
593 }
594
595
596 /*
597  * Initialize locale awareness.
598  */
599 int
600 perl_init_i18nl10n(int printwarn)
601 {
602     int ok = 1;
603     /* returns
604      *    1 = set ok or not applicable,
605      *    0 = fallback to C locale,
606      *   -1 = fallback to C locale failed
607      */
608
609 #ifdef USE_LOCALE
610
611 #ifdef USE_LOCALE_CTYPE
612     char *curctype   = NULL;
613 #endif /* USE_LOCALE_CTYPE */
614 #ifdef USE_LOCALE_COLLATE
615     char *curcoll    = NULL;
616 #endif /* USE_LOCALE_COLLATE */
617 #ifdef USE_LOCALE_NUMERIC
618     char *curnum     = NULL;
619 #endif /* USE_LOCALE_NUMERIC */
620 #ifdef __GLIBC__
621     char *language   = PerlEnv_getenv("LANGUAGE");
622 #endif
623     char *lc_all     = PerlEnv_getenv("LC_ALL");
624     char *lang       = PerlEnv_getenv("LANG");
625     bool setlocale_failure = FALSE;
626
627 #ifdef LOCALE_ENVIRON_REQUIRED
628
629     /*
630      * Ultrix setlocale(..., "") fails if there are no environment
631      * variables from which to get a locale name.
632      */
633
634     bool done = FALSE;
635
636 #ifdef LC_ALL
637     if (lang) {
638         if (setlocale(LC_ALL, ""))
639             done = TRUE;
640         else
641             setlocale_failure = TRUE;
642     }
643     if (!setlocale_failure) {
644 #ifdef USE_LOCALE_CTYPE
645         if (! (curctype =
646                setlocale(LC_CTYPE,
647                          (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
648                                     ? "" : Nullch)))
649             setlocale_failure = TRUE;
650 #endif /* USE_LOCALE_CTYPE */
651 #ifdef USE_LOCALE_COLLATE
652         if (! (curcoll =
653                setlocale(LC_COLLATE,
654                          (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
655                                    ? "" : Nullch)))
656             setlocale_failure = TRUE;
657 #endif /* USE_LOCALE_COLLATE */
658 #ifdef USE_LOCALE_NUMERIC
659         if (! (curnum =
660                setlocale(LC_NUMERIC,
661                          (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
662                                   ? "" : Nullch)))
663             setlocale_failure = TRUE;
664 #endif /* USE_LOCALE_NUMERIC */
665     }
666
667 #endif /* LC_ALL */
668
669 #endif /* !LOCALE_ENVIRON_REQUIRED */
670
671 #ifdef LC_ALL
672     if (! setlocale(LC_ALL, ""))
673         setlocale_failure = TRUE;
674 #endif /* LC_ALL */
675
676     if (!setlocale_failure) {
677 #ifdef USE_LOCALE_CTYPE
678         if (! (curctype = setlocale(LC_CTYPE, "")))
679             setlocale_failure = TRUE;
680 #endif /* USE_LOCALE_CTYPE */
681 #ifdef USE_LOCALE_COLLATE
682         if (! (curcoll = setlocale(LC_COLLATE, "")))
683             setlocale_failure = TRUE;
684 #endif /* USE_LOCALE_COLLATE */
685 #ifdef USE_LOCALE_NUMERIC
686         if (! (curnum = setlocale(LC_NUMERIC, "")))
687             setlocale_failure = TRUE;
688 #endif /* USE_LOCALE_NUMERIC */
689     }
690
691     if (setlocale_failure) {
692         char *p;
693         bool locwarn = (printwarn > 1 || 
694                         printwarn &&
695                         (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
696
697         if (locwarn) {
698 #ifdef LC_ALL
699   
700             PerlIO_printf(PerlIO_stderr(),
701                "perl: warning: Setting locale failed.\n");
702
703 #else /* !LC_ALL */
704   
705             PerlIO_printf(PerlIO_stderr(),
706                "perl: warning: Setting locale failed for the categories:\n\t");
707 #ifdef USE_LOCALE_CTYPE
708             if (! curctype)
709                 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
710 #endif /* USE_LOCALE_CTYPE */
711 #ifdef USE_LOCALE_COLLATE
712             if (! curcoll)
713                 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
714 #endif /* USE_LOCALE_COLLATE */
715 #ifdef USE_LOCALE_NUMERIC
716             if (! curnum)
717                 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
718 #endif /* USE_LOCALE_NUMERIC */
719             PerlIO_printf(PerlIO_stderr(), "\n");
720
721 #endif /* LC_ALL */
722
723             PerlIO_printf(PerlIO_stderr(),
724                 "perl: warning: Please check that your locale settings:\n");
725
726 #ifdef __GLIBC__
727             PerlIO_printf(PerlIO_stderr(),
728                           "\tLANGUAGE = %c%s%c,\n",
729                           language ? '"' : '(',
730                           language ? language : "unset",
731                           language ? '"' : ')');
732 #endif
733
734             PerlIO_printf(PerlIO_stderr(),
735                           "\tLC_ALL = %c%s%c,\n",
736                           lc_all ? '"' : '(',
737                           lc_all ? lc_all : "unset",
738                           lc_all ? '"' : ')');
739
740             {
741               char **e;
742               for (e = environ; *e; e++) {
743                   if (strnEQ(*e, "LC_", 3)
744                         && strnNE(*e, "LC_ALL=", 7)
745                         && (p = strchr(*e, '=')))
746                       PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
747                                     (int)(p - *e), *e, p + 1);
748               }
749             }
750
751             PerlIO_printf(PerlIO_stderr(),
752                           "\tLANG = %c%s%c\n",
753                           lang ? '"' : '(',
754                           lang ? lang : "unset",
755                           lang ? '"' : ')');
756
757             PerlIO_printf(PerlIO_stderr(),
758                           "    are supported and installed on your system.\n");
759         }
760
761 #ifdef LC_ALL
762
763         if (setlocale(LC_ALL, "C")) {
764             if (locwarn)
765                 PerlIO_printf(PerlIO_stderr(),
766       "perl: warning: Falling back to the standard locale (\"C\").\n");
767             ok = 0;
768         }
769         else {
770             if (locwarn)
771                 PerlIO_printf(PerlIO_stderr(),
772       "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
773             ok = -1;
774         }
775
776 #else /* ! LC_ALL */
777
778         if (0
779 #ifdef USE_LOCALE_CTYPE
780             || !(curctype || setlocale(LC_CTYPE, "C"))
781 #endif /* USE_LOCALE_CTYPE */
782 #ifdef USE_LOCALE_COLLATE
783             || !(curcoll || setlocale(LC_COLLATE, "C"))
784 #endif /* USE_LOCALE_COLLATE */
785 #ifdef USE_LOCALE_NUMERIC
786             || !(curnum || setlocale(LC_NUMERIC, "C"))
787 #endif /* USE_LOCALE_NUMERIC */
788             )
789         {
790             if (locwarn)
791                 PerlIO_printf(PerlIO_stderr(),
792       "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
793             ok = -1;
794         }
795
796 #endif /* ! LC_ALL */
797
798 #ifdef USE_LOCALE_CTYPE
799         curctype = setlocale(LC_CTYPE, Nullch);
800 #endif /* USE_LOCALE_CTYPE */
801 #ifdef USE_LOCALE_COLLATE
802         curcoll = setlocale(LC_COLLATE, Nullch);
803 #endif /* USE_LOCALE_COLLATE */
804 #ifdef USE_LOCALE_NUMERIC
805         curnum = setlocale(LC_NUMERIC, Nullch);
806 #endif /* USE_LOCALE_NUMERIC */
807     }
808
809 #ifdef USE_LOCALE_CTYPE
810     perl_new_ctype(curctype);
811 #endif /* USE_LOCALE_CTYPE */
812
813 #ifdef USE_LOCALE_COLLATE
814     perl_new_collate(curcoll);
815 #endif /* USE_LOCALE_COLLATE */
816
817 #ifdef USE_LOCALE_NUMERIC
818     perl_new_numeric(curnum);
819 #endif /* USE_LOCALE_NUMERIC */
820
821 #endif /* USE_LOCALE */
822
823     return ok;
824 }
825
826 /* Backwards compatibility. */
827 int
828 perl_init_i18nl14n(int printwarn)
829 {
830     return perl_init_i18nl10n(printwarn);
831 }
832
833 #ifdef USE_LOCALE_COLLATE
834
835 /*
836  * mem_collxfrm() is a bit like strxfrm() but with two important
837  * differences. First, it handles embedded NULs. Second, it allocates
838  * a bit more memory than needed for the transformed data itself.
839  * The real transformed data begins at offset sizeof(collationix).
840  * Please see sv_collxfrm() to see how this is used.
841  */
842 char *
843 mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
844 {
845     char *xbuf;
846     STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
847
848     /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
849     /* the +1 is for the terminating NUL. */
850
851     xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
852     New(171, xbuf, xAlloc, char);
853     if (! xbuf)
854         goto bad;
855
856     *(U32*)xbuf = PL_collation_ix;
857     xout = sizeof(PL_collation_ix);
858     for (xin = 0; xin < len; ) {
859         SSize_t xused;
860
861         for (;;) {
862             xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
863             if (xused == -1)
864                 goto bad;
865             if (xused < xAlloc - xout)
866                 break;
867             xAlloc = (2 * xAlloc) + 1;
868             Renew(xbuf, xAlloc, char);
869             if (! xbuf)
870                 goto bad;
871         }
872
873         xin += strlen(s + xin) + 1;
874         xout += xused;
875
876         /* Embedded NULs are understood but silently skipped
877          * because they make no sense in locale collation. */
878     }
879
880     xbuf[xout] = '\0';
881     *xlen = xout - sizeof(PL_collation_ix);
882     return xbuf;
883
884   bad:
885     Safefree(xbuf);
886     *xlen = 0;
887     return NULL;
888 }
889
890 #endif /* USE_LOCALE_COLLATE */
891
892 #define FBM_TABLE_OFFSET 2      /* Number of bytes between EOS and table*/
893
894 /* As a space optimization, we do not compile tables for strings of length
895    0 and 1, and for strings of length 2 unless FBMcf_TAIL.  These are
896    special-cased in fbm_instr().
897
898    If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
899
900 void
901 fbm_compile(SV *sv, U32 flags /* not used yet */)
902 {
903     register U8 *s;
904     register U8 *table;
905     register U32 i;
906     STRLEN len;
907     I32 rarest = 0;
908     U32 frequency = 256;
909
910     if (flags & FBMcf_TAIL)
911         sv_catpvn(sv, "\n", 1);         /* Taken into account in fbm_instr() */
912     s = (U8*)SvPV_force(sv, len);
913     (void)SvUPGRADE(sv, SVt_PVBM);
914     if (len == 0)               /* TAIL might be on on a zero-length string. */
915         return;
916     if (len > 2) {
917         I32 mlen = len;
918         unsigned char *sb;
919
920         if (mlen > 255)
921             mlen = 255;
922         Sv_Grow(sv,len + 256 + FBM_TABLE_OFFSET);
923         table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
924         s = table - 1 - FBM_TABLE_OFFSET; /* Last char */
925         for (i = 0; i < 256; i++) {
926             table[i] = mlen;
927         }
928         table[-1] = flags;              /* Not used yet */
929         i = 0;
930         sb = s - mlen;
931         while (s >= sb) {
932             if (table[*s] == mlen)
933                 table[*s] = i;
934             s--, i++;
935         }
936     }
937     sv_magic(sv, Nullsv, 'B', Nullch, 0);       /* deep magic */
938     SvVALID_on(sv);
939
940     s = (unsigned char*)(SvPVX(sv));            /* deeper magic */
941     for (i = 0; i < len; i++) {
942         if (PL_freq[s[i]] < frequency) {
943             rarest = i;
944             frequency = PL_freq[s[i]];
945         }
946     }
947     BmRARE(sv) = s[rarest];
948     BmPREVIOUS(sv) = rarest;
949     BmUSEFUL(sv) = 100;                 /* Initial value */
950     if (flags & FBMcf_TAIL)
951         SvTAIL_on(sv);
952     DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
953 }
954
955 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
956 /* If SvTAIL is actually due to \Z or \z, this gives false positives
957    if multiline */
958
959 char *
960 fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
961 {
962     register unsigned char *s;
963     STRLEN l;
964     register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
965     register STRLEN littlelen = l;
966     register I32 multiline = flags & FBMrf_MULTILINE;
967
968     if (bigend - big < littlelen) {
969       check_tail:
970         if ( SvTAIL(littlestr) 
971              && (bigend - big == littlelen - 1)
972              && (littlelen == 1 
973                  || *big == *little && memEQ(big, little, littlelen - 1)))
974             return (char*)big;
975         return Nullch;
976     }
977
978     if (littlelen <= 2) {               /* Special-cased */
979         register char c;
980
981         if (littlelen == 1) {
982             if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
983                 /* Know that bigend != big.  */
984                 if (bigend[-1] == '\n')
985                     return (char *)(bigend - 1);
986                 return (char *) bigend;
987             }
988             s = big;
989             while (s < bigend) {
990                 if (*s == *little)
991                     return (char *)s;
992                 s++;
993             }
994             if (SvTAIL(littlestr))
995                 return (char *) bigend;
996             return Nullch;
997         }
998         if (!littlelen)
999             return (char*)big;          /* Cannot be SvTAIL! */
1000
1001         /* littlelen is 2 */
1002         if (SvTAIL(littlestr) && !multiline) {
1003             if (bigend[-1] == '\n' && bigend[-2] == *little)
1004                 return (char*)bigend - 2;
1005             if (bigend[-1] == *little)
1006                 return (char*)bigend - 1;
1007             return Nullch;
1008         }
1009         {
1010             /* This should be better than FBM if c1 == c2, and almost
1011                as good otherwise: maybe better since we do less indirection.
1012                And we save a lot of memory by caching no table. */
1013             register unsigned char c1 = little[0];
1014             register unsigned char c2 = little[1];
1015
1016             s = big + 1;
1017             bigend--;
1018             if (c1 != c2) {
1019                 while (s <= bigend) {
1020                     if (s[0] == c2) {
1021                         if (s[-1] == c1)
1022                             return (char*)s - 1;
1023                         s += 2;
1024                         continue;
1025                     }
1026                   next_chars:
1027                     if (s[0] == c1) {
1028                         if (s == bigend)
1029                             goto check_1char_anchor;
1030                         if (s[1] == c2)
1031                             return (char*)s;
1032                         else {
1033                             s++;
1034                             goto next_chars;
1035                         }
1036                     }
1037                     else
1038                         s += 2;
1039                 }
1040                 goto check_1char_anchor;
1041             }
1042             /* Now c1 == c2 */
1043             while (s <= bigend) {
1044                 if (s[0] == c1) {
1045                     if (s[-1] == c1)
1046                         return (char*)s - 1;
1047                     if (s == bigend)
1048                         goto check_1char_anchor;
1049                     if (s[1] == c1)
1050                         return (char*)s;
1051                     s += 3;
1052                 }
1053                 else
1054                     s += 2;
1055             }
1056         }
1057       check_1char_anchor:               /* One char and anchor! */
1058         if (SvTAIL(littlestr) && (*bigend == *little))
1059             return (char *)bigend;      /* bigend is already decremented. */
1060         return Nullch;
1061     }
1062     if (SvTAIL(littlestr) && !multiline) {      /* tail anchored? */
1063         s = bigend - littlelen;
1064         if (s >= big
1065             && bigend[-1] == '\n' 
1066             && *s == *little 
1067             /* Automatically of length > 2 */
1068             && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1069             return (char*)s;            /* how sweet it is */
1070         if (s[1] == *little && memEQ((char*)s + 2,(char*)little + 1,
1071                                      littlelen - 2))
1072             return (char*)s + 1;        /* how sweet it is */
1073         return Nullch;
1074     }
1075     if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
1076         char *b = ninstr((char*)big,(char*)bigend,
1077                          (char*)little, (char*)little + littlelen);
1078
1079         if (!b && SvTAIL(littlestr)) {  /* Automatically multiline!  */
1080             /* Chop \n from littlestr: */
1081             s = bigend - littlelen + 1;
1082             if (*s == *little && memEQ((char*)s + 1, (char*)little + 1,
1083                                        littlelen - 2))
1084                 return (char*)s;
1085             return Nullch;
1086         }
1087         return b;
1088     }
1089     
1090     {   /* Do actual FBM.  */
1091         register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
1092         register unsigned char *oldlittle;
1093
1094         if (littlelen > bigend - big)
1095             return Nullch;
1096         --littlelen;                    /* Last char found by table lookup */
1097
1098         s = big + littlelen;
1099         little += littlelen;            /* last char */
1100         oldlittle = little;
1101         if (s < bigend) {
1102             register I32 tmp;
1103
1104           top2:
1105             /*SUPPRESS 560*/
1106             if (tmp = table[*s]) {
1107 #ifdef POINTERRIGOR
1108                 if (bigend - s > tmp) {
1109                     s += tmp;
1110                     goto top2;
1111                 }
1112                 s += tmp;
1113 #else
1114                 if ((s += tmp) < bigend)
1115                     goto top2;
1116 #endif
1117                 goto check_end;
1118             }
1119             else {              /* less expensive than calling strncmp() */
1120                 register unsigned char *olds = s;
1121
1122                 tmp = littlelen;
1123
1124                 while (tmp--) {
1125                     if (*--s == *--little)
1126                         continue;
1127                   differ:
1128                     s = olds + 1;       /* here we pay the price for failure */
1129                     little = oldlittle;
1130                     if (s < bigend)     /* fake up continue to outer loop */
1131                         goto top2;
1132                     goto check_end;
1133                 }
1134                 return (char *)s;
1135             }
1136         }
1137       check_end:
1138         if ( s == bigend && (table[-1] & FBMcf_TAIL)
1139              && memEQ(bigend - littlelen, oldlittle - littlelen, littlelen) )
1140             return (char*)bigend - littlelen;
1141         return Nullch;
1142     }
1143 }
1144
1145 /* start_shift, end_shift are positive quantities which give offsets
1146    of ends of some substring of bigstr.
1147    If `last' we want the last occurence.
1148    old_posp is the way of communication between consequent calls if
1149    the next call needs to find the . 
1150    The initial *old_posp should be -1.
1151
1152    Note that we take into account SvTAIL, so one can get extra
1153    optimizations if _ALL flag is set.
1154  */
1155
1156 /* If SvTAIL is actually due to \Z or \z, this gives false positives
1157    if PL_multiline.  In fact if !PL_multiline the autoritative answer
1158    is not supported yet. */
1159
1160 char *
1161 screaminstr(SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1162 {
1163     dTHR;
1164     register unsigned char *s, *x;
1165     register unsigned char *big;
1166     register I32 pos;
1167     register I32 previous;
1168     register I32 first;
1169     register unsigned char *little;
1170     register I32 stop_pos;
1171     register unsigned char *littleend;
1172     I32 found = 0;
1173
1174     if (*old_posp == -1
1175         ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1176         : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
1177       cant_find:
1178         if ( BmRARE(littlestr) == '\n' 
1179              && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
1180             little = (unsigned char *)(SvPVX(littlestr));
1181             littleend = little + SvCUR(littlestr);
1182             first = *little++;
1183             goto check_tail;
1184         }
1185         return Nullch;
1186     }
1187
1188     little = (unsigned char *)(SvPVX(littlestr));
1189     littleend = little + SvCUR(littlestr);
1190     first = *little++;
1191     /* The value of pos we can start at: */
1192     previous = BmPREVIOUS(littlestr);
1193     big = (unsigned char *)(SvPVX(bigstr));
1194     /* The value of pos we can stop at: */
1195     stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1196     if (previous + start_shift > stop_pos) {
1197         if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
1198             goto check_tail;
1199         return Nullch;
1200     }
1201     while (pos < previous + start_shift) {
1202         if (!(pos += PL_screamnext[pos]))
1203             goto cant_find;
1204     }
1205 #ifdef POINTERRIGOR
1206     do {
1207         if (pos >= stop_pos) break;
1208         if (big[pos-previous] != first)
1209             continue;
1210         for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1211             if (*s++ != *x++) {
1212                 s--;
1213                 break;
1214             }
1215         }
1216         if (s == littleend) {
1217             *old_posp = pos;
1218             if (!last) return (char *)(big+pos-previous);
1219             found = 1;
1220         }
1221     } while ( pos += PL_screamnext[pos] );
1222     return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1223 #else /* !POINTERRIGOR */
1224     big -= previous;
1225     do {
1226         if (pos >= stop_pos) break;
1227         if (big[pos] != first)
1228             continue;
1229         for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1230             if (*s++ != *x++) {
1231                 s--;
1232                 break;
1233             }
1234         }
1235         if (s == littleend) {
1236             *old_posp = pos;
1237             if (!last) return (char *)(big+pos);
1238             found = 1;
1239         }
1240     } while ( pos += PL_screamnext[pos] );
1241     if (last && found) 
1242         return (char *)(big+(*old_posp));
1243 #endif /* POINTERRIGOR */
1244   check_tail:
1245     if (!SvTAIL(littlestr) || (end_shift > 0))
1246         return Nullch;
1247     /* Ignore the trailing "\n".  This code is not microoptimized */
1248     big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
1249     stop_pos = littleend - little;      /* Actual littlestr len */
1250     if (stop_pos == 0)
1251         return (char*)big;
1252     big -= stop_pos;
1253     if (*big == first
1254         && ((stop_pos == 1) || memEQ(big + 1, little, stop_pos - 1)))
1255         return (char*)big;
1256     return Nullch;
1257 }
1258
1259 I32
1260 ibcmp(const char *s1, const char *s2, register I32 len)
1261 {
1262     register U8 *a = (U8 *)s1;
1263     register U8 *b = (U8 *)s2;
1264     while (len--) {
1265         if (*a != *b && *a != PL_fold[*b])
1266             return 1;
1267         a++,b++;
1268     }
1269     return 0;
1270 }
1271
1272 I32
1273 ibcmp_locale(const char *s1, const char *s2, register I32 len)
1274 {
1275     register U8 *a = (U8 *)s1;
1276     register U8 *b = (U8 *)s2;
1277     while (len--) {
1278         if (*a != *b && *a != PL_fold_locale[*b])
1279             return 1;
1280         a++,b++;
1281     }
1282     return 0;
1283 }
1284
1285 /* copy a string to a safe spot */
1286
1287 char *
1288 savepv(const char *sv)
1289 {
1290     register char *newaddr;
1291
1292     New(902,newaddr,strlen(sv)+1,char);
1293     (void)strcpy(newaddr,sv);
1294     return newaddr;
1295 }
1296
1297 /* same thing but with a known length */
1298
1299 char *
1300 savepvn(const char *sv, register I32 len)
1301 {
1302     register char *newaddr;
1303
1304     New(903,newaddr,len+1,char);
1305     Copy(sv,newaddr,len,char);          /* might not be null terminated */
1306     newaddr[len] = '\0';                /* is now */
1307     return newaddr;
1308 }
1309
1310 /* the SV for form() and mess() is not kept in an arena */
1311
1312 STATIC SV *
1313 mess_alloc(void)
1314 {
1315     dTHR;
1316     SV *sv;
1317     XPVMG *any;
1318
1319     if (!PL_dirty)
1320         return sv_2mortal(newSVpvn("",0));
1321
1322     if (PL_mess_sv)
1323         return PL_mess_sv;
1324
1325     /* Create as PVMG now, to avoid any upgrading later */
1326     New(905, sv, 1, SV);
1327     Newz(905, any, 1, XPVMG);
1328     SvFLAGS(sv) = SVt_PVMG;
1329     SvANY(sv) = (void*)any;
1330     SvREFCNT(sv) = 1 << 30; /* practically infinite */
1331     PL_mess_sv = sv;
1332     return sv;
1333 }
1334
1335 char *
1336 form(const char* pat, ...)
1337 {
1338     SV *sv = mess_alloc();
1339     va_list args;
1340     va_start(args, pat);
1341     sv_vsetpvfn(sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1342     va_end(args);
1343     return SvPVX(sv);
1344 }
1345
1346 SV *
1347 mess(const char *pat, va_list *args)
1348 {
1349     SV *sv = mess_alloc();
1350     static char dgd[] = " during global destruction.\n";
1351
1352     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1353     if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1354         dTHR;
1355         if (PL_curcop->cop_line)
1356             sv_catpvf(sv, " at %_ line %ld",
1357                       GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1358         if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1359             bool line_mode = (RsSIMPLE(PL_rs) &&
1360                               SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1361             sv_catpvf(sv, ", <%s> %s %ld",
1362                       PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1363                       line_mode ? "line" : "chunk", 
1364                       (long)IoLINES(GvIOp(PL_last_in_gv)));
1365         }
1366         sv_catpv(sv, PL_dirty ? dgd : ".\n");
1367     }
1368     return sv;
1369 }
1370
1371 OP *
1372 die(const char* pat, ...)
1373 {
1374     dTHR;
1375     va_list args;
1376     char *message;
1377     int was_in_eval = PL_in_eval;
1378     HV *stash;
1379     GV *gv;
1380     CV *cv;
1381     SV *msv;
1382     STRLEN msglen;
1383
1384     DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1385                           "%p: die: curstack = %p, mainstack = %p\n",
1386                           thr, PL_curstack, PL_mainstack));
1387
1388     va_start(args, pat);
1389     if (pat) {
1390         msv = mess(pat, &args);
1391         message = SvPV(msv,msglen);
1392     }
1393     else {
1394         message = Nullch;
1395     }
1396     va_end(args);
1397
1398     DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1399                           "%p: die: message = %s\ndiehook = %p\n",
1400                           thr, message, PL_diehook));
1401     if (PL_diehook) {
1402         /* sv_2cv might call croak() */
1403         SV *olddiehook = PL_diehook;
1404         ENTER;
1405         SAVESPTR(PL_diehook);
1406         PL_diehook = Nullsv;
1407         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1408         LEAVE;
1409         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1410             dSP;
1411             SV *msg;
1412
1413             ENTER;
1414             if (message) {
1415                 msg = newSVpvn(message, msglen);
1416                 SvREADONLY_on(msg);
1417                 SAVEFREESV(msg);
1418             }
1419             else {
1420                 msg = ERRSV;
1421             }
1422
1423             PUSHSTACKi(PERLSI_DIEHOOK);
1424             PUSHMARK(SP);
1425             XPUSHs(msg);
1426             PUTBACK;
1427             perl_call_sv((SV*)cv, G_DISCARD);
1428             POPSTACK;
1429             LEAVE;
1430         }
1431     }
1432
1433     PL_restartop = die_where(message, msglen);
1434     DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1435           "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1436           thr, PL_restartop, was_in_eval, PL_top_env));
1437     if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1438         JMPENV_JUMP(3);
1439     return PL_restartop;
1440 }
1441
1442 void
1443 croak(const char* pat, ...)
1444 {
1445     dTHR;
1446     va_list args;
1447     char *message;
1448     HV *stash;
1449     GV *gv;
1450     CV *cv;
1451     SV *msv;
1452     STRLEN msglen;
1453
1454     va_start(args, pat);
1455     msv = mess(pat, &args);
1456     message = SvPV(msv,msglen);
1457     va_end(args);
1458     DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1459     if (PL_diehook) {
1460         /* sv_2cv might call croak() */
1461         SV *olddiehook = PL_diehook;
1462         ENTER;
1463         SAVESPTR(PL_diehook);
1464         PL_diehook = Nullsv;
1465         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1466         LEAVE;
1467         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1468             dSP;
1469             SV *msg;
1470
1471             ENTER;
1472             msg = newSVpvn(message, msglen);
1473             SvREADONLY_on(msg);
1474             SAVEFREESV(msg);
1475
1476             PUSHSTACKi(PERLSI_DIEHOOK);
1477             PUSHMARK(SP);
1478             XPUSHs(msg);
1479             PUTBACK;
1480             perl_call_sv((SV*)cv, G_DISCARD);
1481             POPSTACK;
1482             LEAVE;
1483         }
1484     }
1485     if (PL_in_eval) {
1486         PL_restartop = die_where(message, msglen);
1487         JMPENV_JUMP(3);
1488     }
1489     {
1490 #ifdef USE_SFIO
1491         /* SFIO can really mess with your errno */
1492         int e = errno;
1493 #endif
1494         PerlIO_write(PerlIO_stderr(), message, msglen);
1495         (void)PerlIO_flush(PerlIO_stderr());
1496 #ifdef USE_SFIO
1497         errno = e;
1498 #endif
1499     }
1500     my_failure_exit();
1501 }
1502
1503 void
1504 warn(const char* pat,...)
1505 {
1506     va_list args;
1507     char *message;
1508     HV *stash;
1509     GV *gv;
1510     CV *cv;
1511     SV *msv;
1512     STRLEN msglen;
1513
1514     va_start(args, pat);
1515     msv = mess(pat, &args);
1516     message = SvPV(msv, msglen);
1517     va_end(args);
1518
1519     if (PL_warnhook) {
1520         /* sv_2cv might call warn() */
1521         dTHR;
1522         SV *oldwarnhook = PL_warnhook;
1523         ENTER;
1524         SAVESPTR(PL_warnhook);
1525         PL_warnhook = Nullsv;
1526         cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1527         LEAVE;
1528         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1529             dSP;
1530             SV *msg;
1531
1532             ENTER;
1533             msg = newSVpvn(message, msglen);
1534             SvREADONLY_on(msg);
1535             SAVEFREESV(msg);
1536
1537             PUSHSTACKi(PERLSI_WARNHOOK);
1538             PUSHMARK(SP);
1539             XPUSHs(msg);
1540             PUTBACK;
1541             perl_call_sv((SV*)cv, G_DISCARD);
1542             POPSTACK;
1543             LEAVE;
1544             return;
1545         }
1546     }
1547     PerlIO_write(PerlIO_stderr(), message, msglen);
1548 #ifdef LEAKTEST
1549     DEBUG_L(*message == '!' 
1550             ? (xstat(message[1]=='!'
1551                      ? (message[2]=='!' ? 2 : 1)
1552                      : 0)
1553                , 0)
1554             : 0);
1555 #endif
1556     (void)PerlIO_flush(PerlIO_stderr());
1557 }
1558
1559 void
1560 warner(U32  err, const char* pat,...)
1561 {
1562     dTHR;
1563     va_list args;
1564     char *message;
1565     HV *stash;
1566     GV *gv;
1567     CV *cv;
1568     SV *msv;
1569     STRLEN msglen;
1570
1571     va_start(args, pat);
1572     msv = mess(pat, &args);
1573     message = SvPV(msv, msglen);
1574     va_end(args);
1575
1576     if (ckDEAD(err)) {
1577 #ifdef USE_THREADS
1578         DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1579 #endif /* USE_THREADS */
1580         if (PL_diehook) {
1581             /* sv_2cv might call croak() */
1582             SV *olddiehook = PL_diehook;
1583             ENTER;
1584             SAVESPTR(PL_diehook);
1585             PL_diehook = Nullsv;
1586             cv = sv_2cv(olddiehook, &stash, &gv, 0);
1587             LEAVE;
1588             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1589                 dSP;
1590                 SV *msg;
1591  
1592                 ENTER;
1593                 msg = newSVpvn(message, msglen);
1594                 SvREADONLY_on(msg);
1595                 SAVEFREESV(msg);
1596  
1597                 PUSHMARK(sp);
1598                 XPUSHs(msg);
1599                 PUTBACK;
1600                 perl_call_sv((SV*)cv, G_DISCARD);
1601  
1602                 LEAVE;
1603             }
1604         }
1605         if (PL_in_eval) {
1606             PL_restartop = die_where(message, msglen);
1607             JMPENV_JUMP(3);
1608         }
1609         PerlIO_write(PerlIO_stderr(), message, msglen);
1610         (void)PerlIO_flush(PerlIO_stderr());
1611         my_failure_exit();
1612
1613     }
1614     else {
1615         if (PL_warnhook) {
1616             /* sv_2cv might call warn() */
1617             dTHR;
1618             SV *oldwarnhook = PL_warnhook;
1619             ENTER;
1620             SAVESPTR(PL_warnhook);
1621             PL_warnhook = Nullsv;
1622             cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1623                 LEAVE;
1624             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1625                 dSP;
1626                 SV *msg;
1627  
1628                 ENTER;
1629                 msg = newSVpvn(message, msglen);
1630                 SvREADONLY_on(msg);
1631                 SAVEFREESV(msg);
1632  
1633                 PUSHMARK(sp);
1634                 XPUSHs(msg);
1635                 PUTBACK;
1636                 perl_call_sv((SV*)cv, G_DISCARD);
1637  
1638                 LEAVE;
1639                 return;
1640             }
1641         }
1642         PerlIO_write(PerlIO_stderr(), message, msglen);
1643 #ifdef LEAKTEST
1644         DEBUG_L(xstat());
1645 #endif
1646         (void)PerlIO_flush(PerlIO_stderr());
1647     }
1648 }
1649
1650 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
1651 #if !defined(WIN32) && !defined(CYGWIN32)
1652 void
1653 my_setenv(char *nam, char *val)
1654 {
1655 #ifndef PERL_USE_SAFE_PUTENV
1656     /* most putenv()s leak, so we manipulate environ directly */
1657     register I32 i=setenv_getix(nam);           /* where does it go? */
1658
1659     if (environ == PL_origenviron) {    /* need we copy environment? */
1660         I32 j;
1661         I32 max;
1662         char **tmpenv;
1663
1664         /*SUPPRESS 530*/
1665         for (max = i; environ[max]; max++) ;
1666         tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1667         for (j=0; j<max; j++) {         /* copy environment */
1668             tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1669             strcpy(tmpenv[j], environ[j]);
1670         }
1671         tmpenv[max] = Nullch;
1672         environ = tmpenv;               /* tell exec where it is now */
1673     }
1674     if (!val) {
1675         safesysfree(environ[i]);
1676         while (environ[i]) {
1677             environ[i] = environ[i+1];
1678             i++;
1679         }
1680         return;
1681     }
1682     if (!environ[i]) {                  /* does not exist yet */
1683         environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1684         environ[i+1] = Nullch;  /* make sure it's null terminated */
1685     }
1686     else
1687         safesysfree(environ[i]);
1688     environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1689
1690 #ifndef MSDOS
1691     (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1692 #else
1693     /* MS-DOS requires environment variable names to be in uppercase */
1694     /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1695      * some utilities and applications may break because they only look
1696      * for upper case strings. (Fixed strupr() bug here.)]
1697      */
1698     strcpy(environ[i],nam); strupr(environ[i]);
1699     (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1700 #endif /* MSDOS */
1701
1702 #else   /* PERL_USE_SAFE_PUTENV */
1703     char *new_env;
1704
1705     new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1706 #ifndef MSDOS
1707     (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1708 #else
1709     strcpy(new_env,nam); strupr(new_env);
1710     (void)sprintf(new_env + strlen(nam),"=%s",val);
1711 #endif
1712     (void)putenv(new_env);
1713 #endif  /* PERL_USE_SAFE_PUTENV */
1714 }
1715
1716 #else /* if WIN32 */
1717
1718 void
1719 my_setenv(char *nam,char *val)
1720 {
1721
1722 #ifdef USE_WIN32_RTL_ENV
1723
1724     register char *envstr;
1725     STRLEN namlen = strlen(nam);
1726     STRLEN vallen;
1727     char *oldstr = environ[setenv_getix(nam)];
1728
1729     /* putenv() has totally broken semantics in both the Borland
1730      * and Microsoft CRTLs.  They either store the passed pointer in
1731      * the environment without making a copy, or make a copy and don't
1732      * free it. And on top of that, they dont free() old entries that
1733      * are being replaced/deleted.  This means the caller must
1734      * free any old entries somehow, or we end up with a memory
1735      * leak every time my_setenv() is called.  One might think
1736      * one could directly manipulate environ[], like the UNIX code
1737      * above, but direct changes to environ are not allowed when
1738      * calling putenv(), since the RTLs maintain an internal
1739      * *copy* of environ[]. Bad, bad, *bad* stink.
1740      * GSAR 97-06-07
1741      */
1742
1743     if (!val) {
1744         if (!oldstr)
1745             return;
1746         val = "";
1747         vallen = 0;
1748     }
1749     else
1750         vallen = strlen(val);
1751     envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
1752     (void)sprintf(envstr,"%s=%s",nam,val);
1753     (void)PerlEnv_putenv(envstr);
1754     if (oldstr)
1755         safesysfree(oldstr);
1756 #ifdef _MSC_VER
1757     safesysfree(envstr);        /* MSVCRT leaks without this */
1758 #endif
1759
1760 #else /* !USE_WIN32_RTL_ENV */
1761
1762     register char *envstr;
1763     STRLEN len = strlen(nam) + 3;
1764     if (!val) {
1765         val = "";
1766     }
1767     len += strlen(val);
1768     New(904, envstr, len, char);
1769     (void)sprintf(envstr,"%s=%s",nam,val);
1770     (void)PerlEnv_putenv(envstr);
1771     Safefree(envstr);
1772
1773 #endif
1774 }
1775
1776 #endif /* WIN32 */
1777
1778 I32
1779 setenv_getix(char *nam)
1780 {
1781     register I32 i, len = strlen(nam);
1782
1783     for (i = 0; environ[i]; i++) {
1784         if (
1785 #ifdef WIN32
1786             strnicmp(environ[i],nam,len) == 0
1787 #else
1788             strnEQ(environ[i],nam,len)
1789 #endif
1790             && environ[i][len] == '=')
1791             break;                      /* strnEQ must come first to avoid */
1792     }                                   /* potential SEGV's */
1793     return i;
1794 }
1795
1796 #endif /* !VMS */
1797
1798 #ifdef UNLINK_ALL_VERSIONS
1799 I32
1800 unlnk(f)        /* unlink all versions of a file */
1801 char *f;
1802 {
1803     I32 i;
1804
1805     for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1806     return i ? 0 : -1;
1807 }
1808 #endif
1809
1810 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1811 char *
1812 my_bcopy(register const char *from,register char *to,register I32 len)
1813 {
1814     char *retval = to;
1815
1816     if (from - to >= 0) {
1817         while (len--)
1818             *to++ = *from++;
1819     }
1820     else {
1821         to += len;
1822         from += len;
1823         while (len--)
1824             *(--to) = *(--from);
1825     }
1826     return retval;
1827 }
1828 #endif
1829
1830 #ifndef HAS_MEMSET
1831 void *
1832 my_memset(register char *loc, register I32 ch, register I32 len)
1833 {
1834     char *retval = loc;
1835
1836     while (len--)
1837         *loc++ = ch;
1838     return retval;
1839 }
1840 #endif
1841
1842 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1843 char *
1844 my_bzero(register char *loc, register I32 len)
1845 {
1846     char *retval = loc;
1847
1848     while (len--)
1849         *loc++ = 0;
1850     return retval;
1851 }
1852 #endif
1853
1854 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1855 I32
1856 my_memcmp(const char *s1, const char *s2, register I32 len)
1857 {
1858     register U8 *a = (U8 *)s1;
1859     register U8 *b = (U8 *)s2;
1860     register I32 tmp;
1861
1862     while (len--) {
1863         if (tmp = *a++ - *b++)
1864             return tmp;
1865     }
1866     return 0;
1867 }
1868 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1869
1870 #ifndef HAS_VPRINTF
1871
1872 #ifdef USE_CHAR_VSPRINTF
1873 char *
1874 #else
1875 int
1876 #endif
1877 vsprintf(char *dest, const char *pat, char *args)
1878 {
1879     FILE fakebuf;
1880
1881     fakebuf._ptr = dest;
1882     fakebuf._cnt = 32767;
1883 #ifndef _IOSTRG
1884 #define _IOSTRG 0
1885 #endif
1886     fakebuf._flag = _IOWRT|_IOSTRG;
1887     _doprnt(pat, args, &fakebuf);       /* what a kludge */
1888     (void)putc('\0', &fakebuf);
1889 #ifdef USE_CHAR_VSPRINTF
1890     return(dest);
1891 #else
1892     return 0;           /* perl doesn't use return value */
1893 #endif
1894 }
1895
1896 #endif /* HAS_VPRINTF */
1897
1898 #ifdef MYSWAP
1899 #if BYTEORDER != 0x4321
1900 short
1901 my_swap(short s)
1902 {
1903 #if (BYTEORDER & 1) == 0
1904     short result;
1905
1906     result = ((s & 255) << 8) + ((s >> 8) & 255);
1907     return result;
1908 #else
1909     return s;
1910 #endif
1911 }
1912
1913 long
1914 my_htonl(long l)
1915 {
1916     union {
1917         long result;
1918         char c[sizeof(long)];
1919     } u;
1920
1921 #if BYTEORDER == 0x1234
1922     u.c[0] = (l >> 24) & 255;
1923     u.c[1] = (l >> 16) & 255;
1924     u.c[2] = (l >> 8) & 255;
1925     u.c[3] = l & 255;
1926     return u.result;
1927 #else
1928 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1929     croak("Unknown BYTEORDER\n");
1930 #else
1931     register I32 o;
1932     register I32 s;
1933
1934     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1935         u.c[o & 0xf] = (l >> s) & 255;
1936     }
1937     return u.result;
1938 #endif
1939 #endif
1940 }
1941
1942 long
1943 my_ntohl(long l)
1944 {
1945     union {
1946         long l;
1947         char c[sizeof(long)];
1948     } u;
1949
1950 #if BYTEORDER == 0x1234
1951     u.c[0] = (l >> 24) & 255;
1952     u.c[1] = (l >> 16) & 255;
1953     u.c[2] = (l >> 8) & 255;
1954     u.c[3] = l & 255;
1955     return u.l;
1956 #else
1957 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1958     croak("Unknown BYTEORDER\n");
1959 #else
1960     register I32 o;
1961     register I32 s;
1962
1963     u.l = l;
1964     l = 0;
1965     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1966         l |= (u.c[o & 0xf] & 255) << s;
1967     }
1968     return l;
1969 #endif
1970 #endif
1971 }
1972
1973 #endif /* BYTEORDER != 0x4321 */
1974 #endif /* MYSWAP */
1975
1976 /*
1977  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1978  * If these functions are defined,
1979  * the BYTEORDER is neither 0x1234 nor 0x4321.
1980  * However, this is not assumed.
1981  * -DWS
1982  */
1983
1984 #define HTOV(name,type)                                         \
1985         type                                                    \
1986         name (n)                                                \
1987         register type n;                                        \
1988         {                                                       \
1989             union {                                             \
1990                 type value;                                     \
1991                 char c[sizeof(type)];                           \
1992             } u;                                                \
1993             register I32 i;                                     \
1994             register I32 s;                                     \
1995             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
1996                 u.c[i] = (n >> s) & 0xFF;                       \
1997             }                                                   \
1998             return u.value;                                     \
1999         }
2000
2001 #define VTOH(name,type)                                         \
2002         type                                                    \
2003         name (n)                                                \
2004         register type n;                                        \
2005         {                                                       \
2006             union {                                             \
2007                 type value;                                     \
2008                 char c[sizeof(type)];                           \
2009             } u;                                                \
2010             register I32 i;                                     \
2011             register I32 s;                                     \
2012             u.value = n;                                        \
2013             n = 0;                                              \
2014             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
2015                 n += (u.c[i] & 0xFF) << s;                      \
2016             }                                                   \
2017             return n;                                           \
2018         }
2019
2020 #if defined(HAS_HTOVS) && !defined(htovs)
2021 HTOV(htovs,short)
2022 #endif
2023 #if defined(HAS_HTOVL) && !defined(htovl)
2024 HTOV(htovl,long)
2025 #endif
2026 #if defined(HAS_VTOHS) && !defined(vtohs)
2027 VTOH(vtohs,short)
2028 #endif
2029 #if defined(HAS_VTOHL) && !defined(vtohl)
2030 VTOH(vtohl,long)
2031 #endif
2032
2033     /* VMS' my_popen() is in VMS.c, same with OS/2. */
2034 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM)
2035 PerlIO *
2036 my_popen(char *cmd, char *mode)
2037 {
2038     int p[2];
2039     register I32 This, that;
2040     register I32 pid;
2041     SV *sv;
2042     I32 doexec = strNE(cmd,"-");
2043     I32 did_pipes = 0;
2044     int pp[2];
2045
2046     PERL_FLUSHALL_FOR_CHILD;
2047 #ifdef OS2
2048     if (doexec) {
2049         return my_syspopen(cmd,mode);
2050     }
2051 #endif 
2052     This = (*mode == 'w');
2053     that = !This;
2054     if (doexec && PL_tainting) {
2055         taint_env();
2056         taint_proper("Insecure %s%s", "EXEC");
2057     }
2058     if (PerlProc_pipe(p) < 0)
2059         return Nullfp;
2060     if (doexec && PerlProc_pipe(pp) >= 0)
2061         did_pipes = 1;
2062     while ((pid = (doexec?vfork():fork())) < 0) {
2063         if (errno != EAGAIN) {
2064             PerlLIO_close(p[This]);
2065             if (did_pipes) {
2066                 PerlLIO_close(pp[0]);
2067                 PerlLIO_close(pp[1]);
2068             }
2069             if (!doexec)
2070                 croak("Can't fork");
2071             return Nullfp;
2072         }
2073         sleep(5);
2074     }
2075     if (pid == 0) {
2076         GV* tmpgv;
2077
2078 #undef THIS
2079 #undef THAT
2080 #define THIS that
2081 #define THAT This
2082         PerlLIO_close(p[THAT]);
2083         if (did_pipes) {
2084             PerlLIO_close(pp[0]);
2085 #if defined(HAS_FCNTL) && defined(F_SETFD)
2086             fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2087 #endif
2088         }
2089         if (p[THIS] != (*mode == 'r')) {
2090             PerlLIO_dup2(p[THIS], *mode == 'r');
2091             PerlLIO_close(p[THIS]);
2092         }
2093 #ifndef OS2
2094         if (doexec) {
2095 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2096             int fd;
2097
2098 #ifndef NOFILE
2099 #define NOFILE 20
2100 #endif
2101             for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2102                 if (fd != pp[1])
2103                     PerlLIO_close(fd);
2104 #endif
2105             do_exec3(cmd,pp[1],did_pipes);      /* may or may not use the shell */
2106             PerlProc__exit(1);
2107         }
2108 #endif  /* defined OS2 */
2109         /*SUPPRESS 560*/
2110         if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
2111             sv_setiv(GvSV(tmpgv), (IV)getpid());
2112         PL_forkprocess = 0;
2113         hv_clear(PL_pidstatus); /* we have no children */
2114         return Nullfp;
2115 #undef THIS
2116 #undef THAT
2117     }
2118     do_execfree();      /* free any memory malloced by child on vfork */
2119     PerlLIO_close(p[that]);
2120     if (did_pipes)
2121         PerlLIO_close(pp[1]);
2122     if (p[that] < p[This]) {
2123         PerlLIO_dup2(p[This], p[that]);
2124         PerlLIO_close(p[This]);
2125         p[This] = p[that];
2126     }
2127     sv = *av_fetch(PL_fdpid,p[This],TRUE);
2128     (void)SvUPGRADE(sv,SVt_IV);
2129     SvIVX(sv) = pid;
2130     PL_forkprocess = pid;
2131     if (did_pipes && pid > 0) {
2132         int errkid;
2133         int n = 0, n1;
2134
2135         while (n < sizeof(int)) {
2136             n1 = PerlLIO_read(pp[0],
2137                               (void*)(((char*)&errkid)+n),
2138                               (sizeof(int)) - n);
2139             if (n1 <= 0)
2140                 break;
2141             n += n1;
2142         }
2143         if (n) {                        /* Error */
2144             if (n != sizeof(int))
2145                 croak("panic: kid popen errno read");
2146             PerlLIO_close(pp[0]);
2147             errno = errkid;             /* Propagate errno from kid */
2148             return Nullfp;
2149         }
2150     }
2151     if (did_pipes)
2152          PerlLIO_close(pp[0]);
2153     return PerlIO_fdopen(p[This], mode);
2154 }
2155 #else
2156 #if defined(atarist) || defined(DJGPP)
2157 FILE *popen();
2158 PerlIO *
2159 my_popen(char *cmd, char *mode)
2160 {
2161     /* Needs work for PerlIO ! */
2162     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2163     PERL_FLUSHALL_FOR_CHILD;
2164     return popen(PerlIO_exportFILE(cmd, 0), mode);
2165 }
2166 #endif
2167
2168 #endif /* !DOSISH */
2169
2170 #ifdef DUMP_FDS
2171 void
2172 dump_fds(char *s)
2173 {
2174     int fd;
2175     struct stat tmpstatbuf;
2176
2177     PerlIO_printf(PerlIO_stderr(),"%s", s);
2178     for (fd = 0; fd < 32; fd++) {
2179         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2180             PerlIO_printf(PerlIO_stderr()," %d",fd);
2181     }
2182     PerlIO_printf(PerlIO_stderr(),"\n");
2183 }
2184 #endif  /* DUMP_FDS */
2185
2186 #ifndef HAS_DUP2
2187 int
2188 dup2(oldfd,newfd)
2189 int oldfd;
2190 int newfd;
2191 {
2192 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2193     if (oldfd == newfd)
2194         return oldfd;
2195     PerlLIO_close(newfd);
2196     return fcntl(oldfd, F_DUPFD, newfd);
2197 #else
2198 #define DUP2_MAX_FDS 256
2199     int fdtmp[DUP2_MAX_FDS];
2200     I32 fdx = 0;
2201     int fd;
2202
2203     if (oldfd == newfd)
2204         return oldfd;
2205     PerlLIO_close(newfd);
2206     /* good enough for low fd's... */
2207     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2208         if (fdx >= DUP2_MAX_FDS) {
2209             PerlLIO_close(fd);
2210             fd = -1;
2211             break;
2212         }
2213         fdtmp[fdx++] = fd;
2214     }
2215     while (fdx > 0)
2216         PerlLIO_close(fdtmp[--fdx]);
2217     return fd;
2218 #endif
2219 }
2220 #endif
2221
2222
2223 #ifdef HAS_SIGACTION
2224
2225 Sighandler_t
2226 rsignal(int signo, Sighandler_t handler)
2227 {
2228     struct sigaction act, oact;
2229
2230     act.sa_handler = handler;
2231     sigemptyset(&act.sa_mask);
2232     act.sa_flags = 0;
2233 #ifdef SA_RESTART
2234     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2235 #endif
2236 #ifdef SA_NOCLDWAIT
2237     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2238         act.sa_flags |= SA_NOCLDWAIT;
2239 #endif
2240     if (sigaction(signo, &act, &oact) == -1)
2241         return SIG_ERR;
2242     else
2243         return oact.sa_handler;
2244 }
2245
2246 Sighandler_t
2247 rsignal_state(int signo)
2248 {
2249     struct sigaction oact;
2250
2251     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2252         return SIG_ERR;
2253     else
2254         return oact.sa_handler;
2255 }
2256
2257 int
2258 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2259 {
2260     struct sigaction act;
2261
2262     act.sa_handler = handler;
2263     sigemptyset(&act.sa_mask);
2264     act.sa_flags = 0;
2265 #ifdef SA_RESTART
2266     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2267 #endif
2268 #ifdef SA_NOCLDWAIT
2269     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2270         act.sa_flags |= SA_NOCLDWAIT;
2271 #endif
2272     return sigaction(signo, &act, save);
2273 }
2274
2275 int
2276 rsignal_restore(int signo, Sigsave_t *save)
2277 {
2278     return sigaction(signo, save, (struct sigaction *)NULL);
2279 }
2280
2281 #else /* !HAS_SIGACTION */
2282
2283 Sighandler_t
2284 rsignal(int signo, Sighandler_t handler)
2285 {
2286     return PerlProc_signal(signo, handler);
2287 }
2288
2289 static int sig_trapped;
2290
2291 static
2292 Signal_t
2293 sig_trap(int signo)
2294 {
2295     sig_trapped++;
2296 }
2297
2298 Sighandler_t
2299 rsignal_state(int signo)
2300 {
2301     Sighandler_t oldsig;
2302
2303     sig_trapped = 0;
2304     oldsig = PerlProc_signal(signo, sig_trap);
2305     PerlProc_signal(signo, oldsig);
2306     if (sig_trapped)
2307         PerlProc_kill(getpid(), signo);
2308     return oldsig;
2309 }
2310
2311 int
2312 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2313 {
2314     *save = PerlProc_signal(signo, handler);
2315     return (*save == SIG_ERR) ? -1 : 0;
2316 }
2317
2318 int
2319 rsignal_restore(int signo, Sigsave_t *save)
2320 {
2321     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2322 }
2323
2324 #endif /* !HAS_SIGACTION */
2325
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)
2328 I32
2329 my_pclose(PerlIO *ptr)
2330 {
2331     Sigsave_t hstat, istat, qstat;
2332     int status;
2333     SV **svp;
2334     int pid;
2335     int pid2;
2336     bool close_failed;
2337     int saved_errno;
2338 #ifdef VMS
2339     int saved_vaxc_errno;
2340 #endif
2341 #ifdef WIN32
2342     int saved_win32_errno;
2343 #endif
2344
2345     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2346     pid = (int)SvIVX(*svp);
2347     SvREFCNT_dec(*svp);
2348     *svp = &PL_sv_undef;
2349 #ifdef OS2
2350     if (pid == -1) {                    /* Opened by popen. */
2351         return my_syspclose(ptr);
2352     }
2353 #endif 
2354     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2355         saved_errno = errno;
2356 #ifdef VMS
2357         saved_vaxc_errno = vaxc$errno;
2358 #endif
2359 #ifdef WIN32
2360         saved_win32_errno = GetLastError();
2361 #endif
2362     }
2363 #ifdef UTS
2364     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2365 #endif
2366     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2367     rsignal_save(SIGINT, SIG_IGN, &istat);
2368     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2369     do {
2370         pid2 = wait4pid(pid, &status, 0);
2371     } while (pid2 == -1 && errno == EINTR);
2372     rsignal_restore(SIGHUP, &hstat);
2373     rsignal_restore(SIGINT, &istat);
2374     rsignal_restore(SIGQUIT, &qstat);
2375     if (close_failed) {
2376         SETERRNO(saved_errno, saved_vaxc_errno);
2377         return -1;
2378     }
2379     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2380 }
2381 #endif /* !DOSISH */
2382
2383 #if  !defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(CYGWIN32)
2384 I32
2385 wait4pid(int pid, int *statusp, int flags)
2386 {
2387     SV *sv;
2388     SV** svp;
2389     char spid[TYPE_CHARS(int)];
2390
2391     if (!pid)
2392         return -1;
2393     if (pid > 0) {
2394         sprintf(spid, "%d", pid);
2395         svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2396         if (svp && *svp != &PL_sv_undef) {
2397             *statusp = SvIVX(*svp);
2398             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2399             return pid;
2400         }
2401     }
2402     else {
2403         HE *entry;
2404
2405         hv_iterinit(PL_pidstatus);
2406         if (entry = hv_iternext(PL_pidstatus)) {
2407             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2408             sv = hv_iterval(PL_pidstatus,entry);
2409             *statusp = SvIVX(sv);
2410             sprintf(spid, "%d", pid);
2411             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2412             return pid;
2413         }
2414     }
2415 #ifdef HAS_WAITPID
2416 #  ifdef HAS_WAITPID_RUNTIME
2417     if (!HAS_WAITPID_RUNTIME)
2418         goto hard_way;
2419 #  endif
2420     return PerlProc_waitpid(pid,statusp,flags);
2421 #endif
2422 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2423     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2424 #endif
2425 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2426   hard_way:
2427     {
2428         I32 result;
2429         if (flags)
2430             croak("Can't do waitpid with flags");
2431         else {
2432             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2433                 pidgone(result,*statusp);
2434             if (result < 0)
2435                 *statusp = -1;
2436         }
2437         return result;
2438     }
2439 #endif
2440 }
2441 #endif /* !DOSISH || OS2 || WIN32 */
2442
2443 void
2444 /*SUPPRESS 590*/
2445 pidgone(int pid, int status)
2446 {
2447     register SV *sv;
2448     char spid[TYPE_CHARS(int)];
2449
2450     sprintf(spid, "%d", pid);
2451     sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2452     (void)SvUPGRADE(sv,SVt_IV);
2453     SvIVX(sv) = status;
2454     return;
2455 }
2456
2457 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2458 int pclose();
2459 #ifdef HAS_FORK
2460 int                                     /* Cannot prototype with I32
2461                                            in os2ish.h. */
2462 my_syspclose(ptr)
2463 #else
2464 I32
2465 my_pclose(ptr)
2466 #endif 
2467 PerlIO *ptr;
2468 {
2469     /* Needs work for PerlIO ! */
2470     FILE *f = PerlIO_findFILE(ptr);
2471     I32 result = pclose(f);
2472     PerlIO_releaseFILE(ptr,f);
2473     return result;
2474 }
2475 #endif
2476
2477 void
2478 repeatcpy(register char *to, register const char *from, I32 len, register I32 count)
2479 {
2480     register I32 todo;
2481     register const char *frombase = from;
2482
2483     if (len == 1) {
2484         register const char c = *from;
2485         while (count-- > 0)
2486             *to++ = c;
2487         return;
2488     }
2489     while (count-- > 0) {
2490         for (todo = len; todo > 0; todo--) {
2491             *to++ = *from++;
2492         }
2493         from = frombase;
2494     }
2495 }
2496
2497 U32
2498 cast_ulong(double f)
2499 {
2500     long along;
2501
2502 #if CASTFLAGS & 2
2503 #   define BIGDOUBLE 2147483648.0
2504     if (f >= BIGDOUBLE)
2505         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2506 #endif
2507     if (f >= 0.0)
2508         return (unsigned long)f;
2509     along = (long)f;
2510     return (unsigned long)along;
2511 }
2512 # undef BIGDOUBLE
2513
2514 /* Unfortunately, on some systems the cast_uv() function doesn't
2515    work with the system-supplied definition of ULONG_MAX.  The
2516    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2517    problem with the compiler constant folding.
2518
2519    In any case, this workaround should be fine on any two's complement
2520    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2521    ccflags.
2522                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2523 */
2524
2525 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2526    of LONG_(MIN/MAX).
2527                            -- Kenneth Albanowski <kjahds@kjahds.com>
2528 */                                      
2529
2530 #ifndef MY_UV_MAX
2531 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2532 #endif
2533
2534 I32
2535 cast_i32(double f)
2536 {
2537     if (f >= I32_MAX)
2538         return (I32) I32_MAX;
2539     if (f <= I32_MIN)
2540         return (I32) I32_MIN;
2541     return (I32) f;
2542 }
2543
2544 IV
2545 cast_iv(double f)
2546 {
2547     if (f >= IV_MAX) {
2548         UV uv;
2549         
2550         if (f >= (double)UV_MAX)
2551             return (IV) UV_MAX; 
2552         uv = (UV) f;
2553         return (IV)uv;
2554     }
2555     if (f <= IV_MIN)
2556         return (IV) IV_MIN;
2557     return (IV) f;
2558 }
2559
2560 UV
2561 cast_uv(double f)
2562 {
2563     if (f >= MY_UV_MAX)
2564         return (UV) MY_UV_MAX;
2565     if (f < 0) {
2566         IV iv;
2567         
2568         if (f < IV_MIN)
2569             return (UV)IV_MIN;
2570         iv = (IV) f;
2571         return (UV) iv;
2572     }
2573     return (UV) f;
2574 }
2575
2576 #ifndef HAS_RENAME
2577 I32
2578 same_dirent(char *a, char *b)
2579 {
2580     char *fa = strrchr(a,'/');
2581     char *fb = strrchr(b,'/');
2582     struct stat tmpstatbuf1;
2583     struct stat tmpstatbuf2;
2584     SV *tmpsv = sv_newmortal();
2585
2586     if (fa)
2587         fa++;
2588     else
2589         fa = a;
2590     if (fb)
2591         fb++;
2592     else
2593         fb = b;
2594     if (strNE(a,b))
2595         return FALSE;
2596     if (fa == a)
2597         sv_setpv(tmpsv, ".");
2598     else
2599         sv_setpvn(tmpsv, a, fa - a);
2600     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2601         return FALSE;
2602     if (fb == b)
2603         sv_setpv(tmpsv, ".");
2604     else
2605         sv_setpvn(tmpsv, b, fb - b);
2606     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2607         return FALSE;
2608     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2609            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2610 }
2611 #endif /* !HAS_RENAME */
2612
2613 UV
2614 scan_bin(char *start, I32 len, I32 *retlen)
2615 {
2616     register char *s = start;
2617     register UV retval = 0;
2618     bool overflowed = FALSE;
2619     while (len && *s >= '0' && *s <= '1') {
2620       register UV n = retval << 1;
2621       if (!overflowed && (n >> 1) != retval) {
2622           warn("Integer overflow in binary number");
2623           overflowed = TRUE;
2624       }
2625       retval = n | (*s++ - '0');
2626       len--;
2627     }
2628     if (len && (*s >= '2' && *s <= '9')) {
2629       dTHR;
2630       if (ckWARN(WARN_UNSAFE))
2631           warner(WARN_UNSAFE, "Illegal binary digit '%c' ignored", *s);
2632     }
2633     *retlen = s - start;
2634     return retval;
2635 }
2636 UV
2637 scan_oct(char *start, I32 len, I32 *retlen)
2638 {
2639     register char *s = start;
2640     register UV retval = 0;
2641     bool overflowed = FALSE;
2642
2643     while (len && *s >= '0' && *s <= '7') {
2644         register UV n = retval << 3;
2645         if (!overflowed && (n >> 3) != retval) {
2646             warn("Integer overflow in octal number");
2647             overflowed = TRUE;
2648         }
2649         retval = n | (*s++ - '0');
2650         len--;
2651     }
2652     if (len && (*s == '8' || *s == '9')) {
2653         dTHR;
2654         if (ckWARN(WARN_OCTAL))
2655             warner(WARN_OCTAL, "Illegal octal digit '%c' ignored", *s);
2656     }
2657     *retlen = s - start;
2658     return retval;
2659 }
2660
2661 UV
2662 scan_hex(char *start, I32 len, I32 *retlen)
2663 {
2664     register char *s = start;
2665     register UV retval = 0;
2666     bool overflowed = FALSE;
2667     char *tmp = s;
2668     register UV n;
2669
2670     while (len-- && *s) {
2671         tmp = strchr((char *) PL_hexdigit, *s++);
2672         if (!tmp) {
2673             if (*(s-1) == '_' || (*(s-1) == 'x' && retval == 0))
2674                 continue;
2675             else {
2676                 dTHR;
2677                 --s;
2678                 if (ckWARN(WARN_UNSAFE))
2679                     warner(WARN_UNSAFE,"Illegal hex digit '%c' ignored", *s);
2680                 break;
2681             }
2682         }
2683         n = retval << 4;
2684         if (!overflowed && (n >> 4) != retval) {
2685             warn("Integer overflow in hex number");
2686             overflowed = TRUE;
2687         }
2688         retval = n | ((tmp - PL_hexdigit) & 15);
2689     }
2690     *retlen = s - start;
2691     return retval;
2692 }
2693
2694 char*
2695 find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2696 {
2697     dTHR;
2698     char *xfound = Nullch;
2699     char *xfailed = Nullch;
2700     char tmpbuf[MAXPATHLEN];
2701     register char *s;
2702     I32 len;
2703     int retval;
2704 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2705 #  define SEARCH_EXTS ".bat", ".cmd", NULL
2706 #  define MAX_EXT_LEN 4
2707 #endif
2708 #ifdef OS2
2709 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2710 #  define MAX_EXT_LEN 4
2711 #endif
2712 #ifdef VMS
2713 #  define SEARCH_EXTS ".pl", ".com", NULL
2714 #  define MAX_EXT_LEN 4
2715 #endif
2716     /* additional extensions to try in each dir if scriptname not found */
2717 #ifdef SEARCH_EXTS
2718     char *exts[] = { SEARCH_EXTS };
2719     char **ext = search_ext ? search_ext : exts;
2720     int extidx = 0, i = 0;
2721     char *curext = Nullch;
2722 #else
2723 #  define MAX_EXT_LEN 0
2724 #endif
2725
2726     /*
2727      * If dosearch is true and if scriptname does not contain path
2728      * delimiters, search the PATH for scriptname.
2729      *
2730      * If SEARCH_EXTS is also defined, will look for each
2731      * scriptname{SEARCH_EXTS} whenever scriptname is not found
2732      * while searching the PATH.
2733      *
2734      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2735      * proceeds as follows:
2736      *   If DOSISH or VMSISH:
2737      *     + look for ./scriptname{,.foo,.bar}
2738      *     + search the PATH for scriptname{,.foo,.bar}
2739      *
2740      *   If !DOSISH:
2741      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
2742      *       this will not look in '.' if it's not in the PATH)
2743      */
2744     tmpbuf[0] = '\0';
2745
2746 #ifdef VMS
2747 #  ifdef ALWAYS_DEFTYPES
2748     len = strlen(scriptname);
2749     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2750         int hasdir, idx = 0, deftypes = 1;
2751         bool seen_dot = 1;
2752
2753         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2754 #  else
2755     if (dosearch) {
2756         int hasdir, idx = 0, deftypes = 1;
2757         bool seen_dot = 1;
2758
2759         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2760 #  endif
2761         /* The first time through, just add SEARCH_EXTS to whatever we
2762          * already have, so we can check for default file types. */
2763         while (deftypes ||
2764                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
2765         {
2766             if (deftypes) {
2767                 deftypes = 0;
2768                 *tmpbuf = '\0';
2769             }
2770             if ((strlen(tmpbuf) + strlen(scriptname)
2771                  + MAX_EXT_LEN) >= sizeof tmpbuf)
2772                 continue;       /* don't search dir with too-long name */
2773             strcat(tmpbuf, scriptname);
2774 #else  /* !VMS */
2775
2776 #ifdef DOSISH
2777     if (strEQ(scriptname, "-"))
2778         dosearch = 0;
2779     if (dosearch) {             /* Look in '.' first. */
2780         char *cur = scriptname;
2781 #ifdef SEARCH_EXTS
2782         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2783             while (ext[i])
2784                 if (strEQ(ext[i++],curext)) {
2785                     extidx = -1;                /* already has an ext */
2786                     break;
2787                 }
2788         do {
2789 #endif
2790             DEBUG_p(PerlIO_printf(Perl_debug_log,
2791                                   "Looking for %s\n",cur));
2792             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2793                 && !S_ISDIR(PL_statbuf.st_mode)) {
2794                 dosearch = 0;
2795                 scriptname = cur;
2796 #ifdef SEARCH_EXTS
2797                 break;
2798 #endif
2799             }
2800 #ifdef SEARCH_EXTS
2801             if (cur == scriptname) {
2802                 len = strlen(scriptname);
2803                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
2804                     break;
2805                 cur = strcpy(tmpbuf, scriptname);
2806             }
2807         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
2808                  && strcpy(tmpbuf+len, ext[extidx++]));
2809 #endif
2810     }
2811 #endif
2812
2813     if (dosearch && !strchr(scriptname, '/')
2814 #ifdef DOSISH
2815                  && !strchr(scriptname, '\\')
2816 #endif
2817                  && (s = PerlEnv_getenv("PATH"))) {
2818         bool seen_dot = 0;
2819         
2820         PL_bufend = s + strlen(s);
2821         while (s < PL_bufend) {
2822 #if defined(atarist) || defined(DOSISH)
2823             for (len = 0; *s
2824 #  ifdef atarist
2825                     && *s != ','
2826 #  endif
2827                     && *s != ';'; len++, s++) {
2828                 if (len < sizeof tmpbuf)
2829                     tmpbuf[len] = *s;
2830             }
2831             if (len < sizeof tmpbuf)
2832                 tmpbuf[len] = '\0';
2833 #else  /* ! (atarist || DOSISH) */
2834             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2835                         ':',
2836                         &len);
2837 #endif /* ! (atarist || DOSISH) */
2838             if (s < PL_bufend)
2839                 s++;
2840             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
2841                 continue;       /* don't search dir with too-long name */
2842             if (len
2843 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
2844                 && tmpbuf[len - 1] != '/'
2845                 && tmpbuf[len - 1] != '\\'
2846 #endif
2847                )
2848                 tmpbuf[len++] = '/';
2849             if (len == 2 && tmpbuf[0] == '.')
2850                 seen_dot = 1;
2851             (void)strcpy(tmpbuf + len, scriptname);
2852 #endif  /* !VMS */
2853
2854 #ifdef SEARCH_EXTS
2855             len = strlen(tmpbuf);
2856             if (extidx > 0)     /* reset after previous loop */
2857                 extidx = 0;
2858             do {
2859 #endif
2860                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
2861                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
2862                 if (S_ISDIR(PL_statbuf.st_mode)) {
2863                     retval = -1;
2864                 }
2865 #ifdef SEARCH_EXTS
2866             } while (  retval < 0               /* not there */
2867                     && extidx>=0 && ext[extidx] /* try an extension? */
2868                     && strcpy(tmpbuf+len, ext[extidx++])
2869                 );
2870 #endif
2871             if (retval < 0)
2872                 continue;
2873             if (S_ISREG(PL_statbuf.st_mode)
2874                 && cando(S_IRUSR,TRUE,&PL_statbuf)
2875 #ifndef DOSISH
2876                 && cando(S_IXUSR,TRUE,&PL_statbuf)
2877 #endif
2878                 )
2879             {
2880                 xfound = tmpbuf;              /* bingo! */
2881                 break;
2882             }
2883             if (!xfailed)
2884                 xfailed = savepv(tmpbuf);
2885         }
2886 #ifndef DOSISH
2887         if (!xfound && !seen_dot && !xfailed &&
2888             (PerlLIO_stat(scriptname,&PL_statbuf) < 0 
2889              || S_ISDIR(PL_statbuf.st_mode)))
2890 #endif
2891             seen_dot = 1;                       /* Disable message. */
2892         if (!xfound) {
2893             if (flags & 1) {                    /* do or die? */
2894                 croak("Can't %s %s%s%s",
2895                       (xfailed ? "execute" : "find"),
2896                       (xfailed ? xfailed : scriptname),
2897                       (xfailed ? "" : " on PATH"),
2898                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2899             }
2900             scriptname = Nullch;
2901         }
2902         if (xfailed)
2903             Safefree(xfailed);
2904         scriptname = xfound;
2905     }
2906     return (scriptname ? savepv(scriptname) : Nullch);
2907 }
2908
2909
2910 #ifdef USE_THREADS
2911 #ifdef FAKE_THREADS
2912 /* Very simplistic scheduler for now */
2913 void
2914 schedule(void)
2915 {
2916     thr = thr->i.next_run;
2917 }
2918
2919 void
2920 perl_cond_init(perl_cond *cp)
2921 {
2922     *cp = 0;
2923 }
2924
2925 void
2926 perl_cond_signal(perl_cond *cp)
2927 {
2928     perl_os_thread t;
2929     perl_cond cond = *cp;
2930     
2931     if (!cond)
2932         return;
2933     t = cond->thread;
2934     /* Insert t in the runnable queue just ahead of us */
2935     t->i.next_run = thr->i.next_run;
2936     thr->i.next_run->i.prev_run = t;
2937     t->i.prev_run = thr;
2938     thr->i.next_run = t;
2939     thr->i.wait_queue = 0;
2940     /* Remove from the wait queue */
2941     *cp = cond->next;
2942     Safefree(cond);
2943 }
2944
2945 void
2946 perl_cond_broadcast(perl_cond *cp)
2947 {
2948     perl_os_thread t;
2949     perl_cond cond, cond_next;
2950     
2951     for (cond = *cp; cond; cond = cond_next) {
2952         t = cond->thread;
2953         /* Insert t in the runnable queue just ahead of us */
2954         t->i.next_run = thr->i.next_run;
2955         thr->i.next_run->i.prev_run = t;
2956         t->i.prev_run = thr;
2957         thr->i.next_run = t;
2958         thr->i.wait_queue = 0;
2959         /* Remove from the wait queue */
2960         cond_next = cond->next;
2961         Safefree(cond);
2962     }
2963     *cp = 0;
2964 }
2965
2966 void
2967 perl_cond_wait(perl_cond *cp)
2968 {
2969     perl_cond cond;
2970
2971     if (thr->i.next_run == thr)
2972         croak("panic: perl_cond_wait called by last runnable thread");
2973     
2974     New(666, cond, 1, struct perl_wait_queue);
2975     cond->thread = thr;
2976     cond->next = *cp;
2977     *cp = cond;
2978     thr->i.wait_queue = cond;
2979     /* Remove ourselves from runnable queue */
2980     thr->i.next_run->i.prev_run = thr->i.prev_run;
2981     thr->i.prev_run->i.next_run = thr->i.next_run;
2982 }
2983 #endif /* FAKE_THREADS */
2984
2985 #ifdef PTHREAD_GETSPECIFIC_INT
2986 struct perl_thread *
2987 getTHR _((void))
2988 {
2989     pthread_addr_t t;
2990
2991     if (pthread_getspecific(PL_thr_key, &t))
2992         croak("panic: pthread_getspecific");
2993     return (struct perl_thread *) t;
2994 }
2995 #endif
2996
2997 MAGIC *
2998 condpair_magic(SV *sv)
2999 {
3000     MAGIC *mg;
3001     
3002     SvUPGRADE(sv, SVt_PVMG);
3003     mg = mg_find(sv, 'm');
3004     if (!mg) {
3005         condpair_t *cp;
3006
3007         New(53, cp, 1, condpair_t);
3008         MUTEX_INIT(&cp->mutex);
3009         COND_INIT(&cp->owner_cond);
3010         COND_INIT(&cp->cond);
3011         cp->owner = 0;
3012         MUTEX_LOCK(&PL_cred_mutex);             /* XXX need separate mutex? */
3013         mg = mg_find(sv, 'm');
3014         if (mg) {
3015             /* someone else beat us to initialising it */
3016             MUTEX_UNLOCK(&PL_cred_mutex);       /* XXX need separate mutex? */
3017             MUTEX_DESTROY(&cp->mutex);
3018             COND_DESTROY(&cp->owner_cond);
3019             COND_DESTROY(&cp->cond);
3020             Safefree(cp);
3021         }
3022         else {
3023             sv_magic(sv, Nullsv, 'm', 0, 0);
3024             mg = SvMAGIC(sv);
3025             mg->mg_ptr = (char *)cp;
3026             mg->mg_len = sizeof(cp);
3027             MUTEX_UNLOCK(&PL_cred_mutex);       /* XXX need separate mutex? */
3028             DEBUG_S(WITH_THR(PerlIO_printf(PerlIO_stderr(),
3029                                            "%p: condpair_magic %p\n", thr, sv));)
3030         }
3031     }
3032     return mg;
3033 }
3034
3035 /*
3036  * Make a new perl thread structure using t as a prototype. Some of the
3037  * fields for the new thread are copied from the prototype thread, t,
3038  * so t should not be running in perl at the time this function is
3039  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3040  * thread calling new_struct_thread) clearly satisfies this constraint.
3041  */
3042 struct perl_thread *
3043 new_struct_thread(struct perl_thread *t)
3044 {
3045     struct perl_thread *thr;
3046     SV *sv;
3047     SV **svp;
3048     I32 i;
3049
3050     sv = newSVpvn("", 0);
3051     SvGROW(sv, sizeof(struct perl_thread) + 1);
3052     SvCUR_set(sv, sizeof(struct perl_thread));
3053     thr = (Thread) SvPVX(sv);
3054 #ifdef DEBUGGING
3055     memset(thr, 0xab, sizeof(struct perl_thread));
3056     PL_markstack = 0;
3057     PL_scopestack = 0;
3058     PL_savestack = 0;
3059     PL_retstack = 0;
3060     PL_dirty = 0;
3061     PL_localizing = 0;
3062     Zero(&PL_hv_fetch_ent_mh, 1, HE);
3063 #else
3064     Zero(thr, 1, struct perl_thread);
3065 #endif
3066
3067     PL_protect = FUNC_NAME_TO_PTR(default_protect);
3068
3069     thr->oursv = sv;
3070     init_stacks(ARGS);
3071
3072     PL_curcop = &PL_compiling;
3073     thr->cvcache = newHV();
3074     thr->threadsv = newAV();
3075     thr->specific = newAV();
3076     thr->errsv = newSVpvn("", 0);
3077     thr->errhv = newHV();
3078     thr->flags = THRf_R_JOINABLE;
3079     MUTEX_INIT(&thr->mutex);
3080
3081     /* top_env needs to be non-zero. It points to an area
3082        in which longjmp() stuff is stored, as C callstack
3083        info there at least is thread specific this has to
3084        be per-thread. Otherwise a 'die' in a thread gives
3085        that thread the C stack of last thread to do an eval {}!
3086        See comments in scope.h    
3087        Initialize top entry (as in perl.c for main thread)
3088      */
3089     PL_start_env.je_prev = NULL;
3090     PL_start_env.je_ret = -1;
3091     PL_start_env.je_mustcatch = TRUE;
3092     PL_top_env  = &PL_start_env;
3093
3094     PL_in_eval = EVAL_NULL;     /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
3095     PL_restartop = 0;
3096
3097     PL_statname = NEWSV(66,0);
3098     PL_maxscream = -1;
3099     PL_regcompp = FUNC_NAME_TO_PTR(pregcomp);
3100     PL_regexecp = FUNC_NAME_TO_PTR(regexec_flags);
3101     PL_regindent = 0;
3102     PL_reginterp_cnt = 0;
3103     PL_lastscream = Nullsv;
3104     PL_screamfirst = 0;
3105     PL_screamnext = 0;
3106     PL_reg_start_tmp = 0;
3107     PL_reg_start_tmpl = 0;
3108
3109     /* parent thread's data needs to be locked while we make copy */
3110     MUTEX_LOCK(&t->mutex);
3111
3112     PL_protect = t->Tprotect;
3113
3114     PL_curcop = t->Tcurcop;       /* XXX As good a guess as any? */
3115     PL_defstash = t->Tdefstash;   /* XXX maybe these should */
3116     PL_curstash = t->Tcurstash;   /* always be set to main? */
3117
3118     PL_tainted = t->Ttainted;
3119     PL_curpm = t->Tcurpm;         /* XXX No PMOP ref count */
3120     PL_nrs = newSVsv(t->Tnrs);
3121     PL_rs = SvREFCNT_inc(PL_nrs);
3122     PL_last_in_gv = Nullgv;
3123     PL_ofslen = t->Tofslen;
3124     PL_ofs = savepvn(t->Tofs, PL_ofslen);
3125     PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3126     PL_chopset = t->Tchopset;
3127     PL_formtarget = newSVsv(t->Tformtarget);
3128     PL_bodytarget = newSVsv(t->Tbodytarget);
3129     PL_toptarget = newSVsv(t->Ttoptarget);
3130
3131     /* Initialise all per-thread SVs that the template thread used */
3132     svp = AvARRAY(t->threadsv);
3133     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3134         if (*svp && *svp != &PL_sv_undef) {
3135             SV *sv = newSVsv(*svp);
3136             av_store(thr->threadsv, i, sv);
3137             sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3138             DEBUG_S(PerlIO_printf(PerlIO_stderr(),
3139                 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
3140         }
3141     } 
3142     thr->threadsvp = AvARRAY(thr->threadsv);
3143
3144     MUTEX_LOCK(&PL_threads_mutex);
3145     PL_nthreads++;
3146     thr->tid = ++PL_threadnum;
3147     thr->next = t->next;
3148     thr->prev = t;
3149     t->next = thr;
3150     thr->next->prev = thr;
3151     MUTEX_UNLOCK(&PL_threads_mutex);
3152
3153     /* done copying parent's state */
3154     MUTEX_UNLOCK(&t->mutex);
3155
3156 #ifdef HAVE_THREAD_INTERN
3157     init_thread_intern(thr);
3158 #endif /* HAVE_THREAD_INTERN */
3159     return thr;
3160 }
3161 #endif /* USE_THREADS */
3162
3163 #ifdef HUGE_VAL
3164 /*
3165  * This hack is to force load of "huge" support from libm.a
3166  * So it is in perl for (say) POSIX to use. 
3167  * Needed for SunOS with Sun's 'acc' for example.
3168  */
3169 double 
3170 Perl_huge(void)
3171 {
3172  return HUGE_VAL;
3173 }
3174 #endif
3175
3176 #ifdef PERL_GLOBAL_STRUCT
3177 struct perl_vars *
3178 Perl_GetVars(void)
3179 {
3180  return &PL_Vars;
3181 }
3182 #endif
3183
3184 char **
3185 get_op_names(void)
3186 {
3187  return PL_op_name;
3188 }
3189
3190 char **
3191 get_op_descs(void)
3192 {
3193  return PL_op_desc;
3194 }
3195
3196 char *
3197 get_no_modify(void)
3198 {
3199  return (char*)PL_no_modify;
3200 }
3201
3202 U32 *
3203 get_opargs(void)
3204 {
3205  return PL_opargs;
3206 }
3207
3208 #ifndef HAS_GETENV_LEN
3209 char *
3210 getenv_len(char *env_elem, unsigned long *len)
3211 {
3212     char *env_trans = PerlEnv_getenv(env_elem);
3213     if (env_trans)
3214         *len = strlen(env_trans);
3215     return env_trans;
3216 }
3217 #endif
3218
3219
3220 MGVTBL*
3221 get_vtbl(int vtbl_id)
3222 {
3223     MGVTBL* result = Null(MGVTBL*);
3224
3225     switch(vtbl_id) {
3226     case want_vtbl_sv:
3227         result = &PL_vtbl_sv;
3228         break;
3229     case want_vtbl_env:
3230         result = &PL_vtbl_env;
3231         break;
3232     case want_vtbl_envelem:
3233         result = &PL_vtbl_envelem;
3234         break;
3235     case want_vtbl_sig:
3236         result = &PL_vtbl_sig;
3237         break;
3238     case want_vtbl_sigelem:
3239         result = &PL_vtbl_sigelem;
3240         break;
3241     case want_vtbl_pack:
3242         result = &PL_vtbl_pack;
3243         break;
3244     case want_vtbl_packelem:
3245         result = &PL_vtbl_packelem;
3246         break;
3247     case want_vtbl_dbline:
3248         result = &PL_vtbl_dbline;
3249         break;
3250     case want_vtbl_isa:
3251         result = &PL_vtbl_isa;
3252         break;
3253     case want_vtbl_isaelem:
3254         result = &PL_vtbl_isaelem;
3255         break;
3256     case want_vtbl_arylen:
3257         result = &PL_vtbl_arylen;
3258         break;
3259     case want_vtbl_glob:
3260         result = &PL_vtbl_glob;
3261         break;
3262     case want_vtbl_mglob:
3263         result = &PL_vtbl_mglob;
3264         break;
3265     case want_vtbl_nkeys:
3266         result = &PL_vtbl_nkeys;
3267         break;
3268     case want_vtbl_taint:
3269         result = &PL_vtbl_taint;
3270         break;
3271     case want_vtbl_substr:
3272         result = &PL_vtbl_substr;
3273         break;
3274     case want_vtbl_vec:
3275         result = &PL_vtbl_vec;
3276         break;
3277     case want_vtbl_pos:
3278         result = &PL_vtbl_pos;
3279         break;
3280     case want_vtbl_bm:
3281         result = &PL_vtbl_bm;
3282         break;
3283     case want_vtbl_fm:
3284         result = &PL_vtbl_fm;
3285         break;
3286     case want_vtbl_uvar:
3287         result = &PL_vtbl_uvar;
3288         break;
3289 #ifdef USE_THREADS
3290     case want_vtbl_mutex:
3291         result = &PL_vtbl_mutex;
3292         break;
3293 #endif
3294     case want_vtbl_defelem:
3295         result = &PL_vtbl_defelem;
3296         break;
3297     case want_vtbl_regexp:
3298         result = &PL_vtbl_regexp;
3299         break;
3300     case want_vtbl_regdata:
3301         result = &PL_vtbl_regdata;
3302         break;
3303     case want_vtbl_regdatum:
3304         result = &PL_vtbl_regdatum;
3305         break;
3306 #ifdef USE_LOCALE_COLLATE
3307     case want_vtbl_collxfrm:
3308         result = &PL_vtbl_collxfrm;
3309         break;
3310 #endif
3311     case want_vtbl_amagic:
3312         result = &PL_vtbl_amagic;
3313         break;
3314     case want_vtbl_amagicelem:
3315         result = &PL_vtbl_amagicelem;
3316         break;
3317     case want_vtbl_backref:
3318         result = &PL_vtbl_backref;
3319         break;
3320     }
3321     return result;
3322 }
3323
3324 I32
3325 my_fflush_all(void)
3326 {
3327 #ifdef FFLUSH_NULL
3328     return PerlIO_flush(NULL);
3329 #else
3330     long open_max = -1;
3331 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3332 #  ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3333     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3334 #  else
3335 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3336     open_max = sysconf(_SC_OPEN_MAX);
3337 #  else
3338 #   ifdef FOPEN_MAX
3339     open_max = FOPEN_MAX;
3340 #   else
3341 #    ifdef OPEN_MAX
3342     open_max = OPEN_MAX;
3343 #    else
3344 #     ifdef _NFILE
3345     open_max = _NFILE;
3346 #     endif
3347 #    endif
3348 #   endif
3349 #  endif
3350 #  endif
3351     if (open_max > 0) {
3352       long i;
3353       for (i = 0; i < open_max; i++)
3354             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3355                 STDIO_STREAM_ARRAY[i]._file < open_max &&
3356                 STDIO_STREAM_ARRAY[i]._flag)
3357                 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3358       return 0;
3359     }
3360 # endif
3361     SETERRNO(EBADF,RMS$_IFI);
3362     return EOF;
3363 #endif
3364 }