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