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