This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
tolerate NULL SITELIB_EXP
[perl5.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-2000, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9
10 /*
11  * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12  * not content."  --Gandalf
13  */
14
15 #include "EXTERN.h"
16 #define PERL_IN_UTIL_C
17 #include "perl.h"
18
19 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
20 #include <signal.h>
21 #endif
22
23 #ifndef SIG_ERR
24 # define SIG_ERR ((Sighandler_t) -1)
25 #endif
26
27 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
28 #ifdef I_UNISTD
29 #  include <unistd.h>
30 #endif
31
32 #ifdef I_VFORK
33 #  include <vfork.h>
34 #endif
35
36 /* Put this after #includes because fork and vfork prototypes may
37    conflict.
38 */
39 #ifndef HAS_VFORK
40 #   define vfork fork
41 #endif
42
43 #ifdef I_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     }
1508
1509     DEBUG_S(PerlIO_printf(Perl_debug_log,
1510                           "%p: die: message = %s\ndiehook = %p\n",
1511                           thr, message, PL_diehook));
1512     if (PL_diehook) {
1513         /* sv_2cv might call Perl_croak() */
1514         SV *olddiehook = PL_diehook;
1515         ENTER;
1516         SAVESPTR(PL_diehook);
1517         PL_diehook = Nullsv;
1518         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1519         LEAVE;
1520         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1521             dSP;
1522             SV *msg;
1523
1524             ENTER;
1525             if (message) {
1526                 msg = newSVpvn(message, msglen);
1527                 SvREADONLY_on(msg);
1528                 SAVEFREESV(msg);
1529             }
1530             else {
1531                 msg = ERRSV;
1532             }
1533
1534             PUSHSTACKi(PERLSI_DIEHOOK);
1535             PUSHMARK(SP);
1536             XPUSHs(msg);
1537             PUTBACK;
1538             call_sv((SV*)cv, G_DISCARD);
1539             POPSTACK;
1540             LEAVE;
1541         }
1542     }
1543
1544     PL_restartop = die_where(message, msglen);
1545     DEBUG_S(PerlIO_printf(Perl_debug_log,
1546           "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1547           thr, PL_restartop, was_in_eval, PL_top_env));
1548     if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1549         JMPENV_JUMP(3);
1550     return PL_restartop;
1551 }
1552
1553 #if defined(PERL_IMPLICIT_CONTEXT)
1554 OP *
1555 Perl_die_nocontext(const char* pat, ...)
1556 {
1557     dTHX;
1558     OP *o;
1559     va_list args;
1560     va_start(args, pat);
1561     o = vdie(pat, &args);
1562     va_end(args);
1563     return o;
1564 }
1565 #endif /* PERL_IMPLICIT_CONTEXT */
1566
1567 OP *
1568 Perl_die(pTHX_ const char* pat, ...)
1569 {
1570     OP *o;
1571     va_list args;
1572     va_start(args, pat);
1573     o = vdie(pat, &args);
1574     va_end(args);
1575     return o;
1576 }
1577
1578 void
1579 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1580 {
1581     dTHR;
1582     char *message;
1583     HV *stash;
1584     GV *gv;
1585     CV *cv;
1586     SV *msv;
1587     STRLEN msglen;
1588
1589     msv = vmess(pat, args);
1590     if (PL_errors && SvCUR(PL_errors)) {
1591         sv_catsv(PL_errors, msv);
1592         message = SvPV(PL_errors, msglen);
1593         SvCUR_set(PL_errors, 0);
1594     }
1595     else
1596         message = SvPV(msv,msglen);
1597
1598     DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s",
1599                           PTR2UV(thr), message));
1600
1601     if (PL_diehook) {
1602         /* sv_2cv might call Perl_croak() */
1603         SV *olddiehook = PL_diehook;
1604         ENTER;
1605         SAVESPTR(PL_diehook);
1606         PL_diehook = Nullsv;
1607         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1608         LEAVE;
1609         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1610             dSP;
1611             SV *msg;
1612
1613             ENTER;
1614             msg = newSVpvn(message, msglen);
1615             SvREADONLY_on(msg);
1616             SAVEFREESV(msg);
1617
1618             PUSHSTACKi(PERLSI_DIEHOOK);
1619             PUSHMARK(SP);
1620             XPUSHs(msg);
1621             PUTBACK;
1622             call_sv((SV*)cv, G_DISCARD);
1623             POPSTACK;
1624             LEAVE;
1625         }
1626     }
1627     if (PL_in_eval) {
1628         PL_restartop = die_where(message, msglen);
1629         JMPENV_JUMP(3);
1630     }
1631     {
1632 #ifdef USE_SFIO
1633         /* SFIO can really mess with your errno */
1634         int e = errno;
1635 #endif
1636         PerlIO *serr = Perl_error_log;
1637
1638         PerlIO_write(serr, message, msglen);
1639         (void)PerlIO_flush(serr);
1640 #ifdef USE_SFIO
1641         errno = e;
1642 #endif
1643     }
1644     my_failure_exit();
1645 }
1646
1647 #if defined(PERL_IMPLICIT_CONTEXT)
1648 void
1649 Perl_croak_nocontext(const char *pat, ...)
1650 {
1651     dTHX;
1652     va_list args;
1653     va_start(args, pat);
1654     vcroak(pat, &args);
1655     /* NOTREACHED */
1656     va_end(args);
1657 }
1658 #endif /* PERL_IMPLICIT_CONTEXT */
1659
1660 /*
1661 =for apidoc croak
1662
1663 This is the XSUB-writer's interface to Perl's C<die> function.  Use this
1664 function the same way you use the C C<printf> function.  See
1665 C<warn>.
1666
1667 =cut
1668 */
1669
1670 void
1671 Perl_croak(pTHX_ const char *pat, ...)
1672 {
1673     va_list args;
1674     va_start(args, pat);
1675     vcroak(pat, &args);
1676     /* NOTREACHED */
1677     va_end(args);
1678 }
1679
1680 void
1681 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1682 {
1683     char *message;
1684     HV *stash;
1685     GV *gv;
1686     CV *cv;
1687     SV *msv;
1688     STRLEN msglen;
1689
1690     msv = vmess(pat, args);
1691     message = SvPV(msv, msglen);
1692
1693     if (PL_warnhook) {
1694         /* sv_2cv might call Perl_warn() */
1695         dTHR;
1696         SV *oldwarnhook = PL_warnhook;
1697         ENTER;
1698         SAVESPTR(PL_warnhook);
1699         PL_warnhook = Nullsv;
1700         cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1701         LEAVE;
1702         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1703             dSP;
1704             SV *msg;
1705
1706             ENTER;
1707             msg = newSVpvn(message, msglen);
1708             SvREADONLY_on(msg);
1709             SAVEFREESV(msg);
1710
1711             PUSHSTACKi(PERLSI_WARNHOOK);
1712             PUSHMARK(SP);
1713             XPUSHs(msg);
1714             PUTBACK;
1715             call_sv((SV*)cv, G_DISCARD);
1716             POPSTACK;
1717             LEAVE;
1718             return;
1719         }
1720     }
1721     {
1722         PerlIO *serr = Perl_error_log;
1723
1724         PerlIO_write(serr, message, msglen);
1725 #ifdef LEAKTEST
1726         DEBUG_L(*message == '!' 
1727                 ? (xstat(message[1]=='!'
1728                          ? (message[2]=='!' ? 2 : 1)
1729                          : 0)
1730                    , 0)
1731                 : 0);
1732 #endif
1733         (void)PerlIO_flush(serr);
1734     }
1735 }
1736
1737 #if defined(PERL_IMPLICIT_CONTEXT)
1738 void
1739 Perl_warn_nocontext(const char *pat, ...)
1740 {
1741     dTHX;
1742     va_list args;
1743     va_start(args, pat);
1744     vwarn(pat, &args);
1745     va_end(args);
1746 }
1747 #endif /* PERL_IMPLICIT_CONTEXT */
1748
1749 /*
1750 =for apidoc warn
1751
1752 This is the XSUB-writer's interface to Perl's C<warn> function.  Use this
1753 function the same way you use the C C<printf> function.  See
1754 C<croak>.
1755
1756 =cut
1757 */
1758
1759 void
1760 Perl_warn(pTHX_ const char *pat, ...)
1761 {
1762     va_list args;
1763     va_start(args, pat);
1764     vwarn(pat, &args);
1765     va_end(args);
1766 }
1767
1768 #if defined(PERL_IMPLICIT_CONTEXT)
1769 void
1770 Perl_warner_nocontext(U32 err, const char *pat, ...)
1771 {
1772     dTHX;
1773     va_list args;
1774     va_start(args, pat);
1775     vwarner(err, pat, &args);
1776     va_end(args);
1777 }
1778 #endif /* PERL_IMPLICIT_CONTEXT */
1779
1780 void
1781 Perl_warner(pTHX_ U32  err, const char* pat,...)
1782 {
1783     va_list args;
1784     va_start(args, pat);
1785     vwarner(err, pat, &args);
1786     va_end(args);
1787 }
1788
1789 void
1790 Perl_vwarner(pTHX_ U32  err, const char* pat, va_list* args)
1791 {
1792     dTHR;
1793     char *message;
1794     HV *stash;
1795     GV *gv;
1796     CV *cv;
1797     SV *msv;
1798     STRLEN msglen;
1799
1800     msv = vmess(pat, args);
1801     message = SvPV(msv, msglen);
1802
1803     if (ckDEAD(err)) {
1804 #ifdef USE_THREADS
1805         DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s", PTR2UV(thr), message));
1806 #endif /* USE_THREADS */
1807         if (PL_diehook) {
1808             /* sv_2cv might call Perl_croak() */
1809             SV *olddiehook = PL_diehook;
1810             ENTER;
1811             SAVESPTR(PL_diehook);
1812             PL_diehook = Nullsv;
1813             cv = sv_2cv(olddiehook, &stash, &gv, 0);
1814             LEAVE;
1815             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1816                 dSP;
1817                 SV *msg;
1818  
1819                 ENTER;
1820                 msg = newSVpvn(message, msglen);
1821                 SvREADONLY_on(msg);
1822                 SAVEFREESV(msg);
1823  
1824                 PUSHMARK(sp);
1825                 XPUSHs(msg);
1826                 PUTBACK;
1827                 call_sv((SV*)cv, G_DISCARD);
1828  
1829                 LEAVE;
1830             }
1831         }
1832         if (PL_in_eval) {
1833             PL_restartop = die_where(message, msglen);
1834             JMPENV_JUMP(3);
1835         }
1836         {
1837             PerlIO *serr = Perl_error_log;
1838             PerlIO_write(serr, message, msglen);
1839             (void)PerlIO_flush(serr);
1840         }
1841         my_failure_exit();
1842
1843     }
1844     else {
1845         if (PL_warnhook) {
1846             /* sv_2cv might call Perl_warn() */
1847             dTHR;
1848             SV *oldwarnhook = PL_warnhook;
1849             ENTER;
1850             SAVESPTR(PL_warnhook);
1851             PL_warnhook = Nullsv;
1852             cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1853                 LEAVE;
1854             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1855                 dSP;
1856                 SV *msg;
1857  
1858                 ENTER;
1859                 msg = newSVpvn(message, msglen);
1860                 SvREADONLY_on(msg);
1861                 SAVEFREESV(msg);
1862  
1863                 PUSHMARK(sp);
1864                 XPUSHs(msg);
1865                 PUTBACK;
1866                 call_sv((SV*)cv, G_DISCARD);
1867  
1868                 LEAVE;
1869                 return;
1870             }
1871         }
1872         {
1873             PerlIO *serr = Perl_error_log;
1874             PerlIO_write(serr, message, msglen);
1875 #ifdef LEAKTEST
1876             DEBUG_L(xstat());
1877 #endif
1878             (void)PerlIO_flush(serr);
1879         }
1880     }
1881 }
1882
1883 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
1884 #if !defined(WIN32) && !defined(__CYGWIN__)
1885 void
1886 Perl_my_setenv(pTHX_ char *nam, char *val)
1887 {
1888 #ifndef PERL_USE_SAFE_PUTENV
1889     /* most putenv()s leak, so we manipulate environ directly */
1890     register I32 i=setenv_getix(nam);           /* where does it go? */
1891
1892     if (environ == PL_origenviron) {    /* need we copy environment? */
1893         I32 j;
1894         I32 max;
1895         char **tmpenv;
1896
1897         /*SUPPRESS 530*/
1898         for (max = i; environ[max]; max++) ;
1899         tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1900         for (j=0; j<max; j++) {         /* copy environment */
1901             tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1902             strcpy(tmpenv[j], environ[j]);
1903         }
1904         tmpenv[max] = Nullch;
1905         environ = tmpenv;               /* tell exec where it is now */
1906     }
1907     if (!val) {
1908         safesysfree(environ[i]);
1909         while (environ[i]) {
1910             environ[i] = environ[i+1];
1911             i++;
1912         }
1913         return;
1914     }
1915     if (!environ[i]) {                  /* does not exist yet */
1916         environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1917         environ[i+1] = Nullch;  /* make sure it's null terminated */
1918     }
1919     else
1920         safesysfree(environ[i]);
1921     environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1922
1923     (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1924
1925 #else   /* PERL_USE_SAFE_PUTENV */
1926     char *new_env;
1927
1928     new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1929     (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1930     (void)putenv(new_env);
1931 #endif  /* PERL_USE_SAFE_PUTENV */
1932 }
1933
1934 #else /* WIN32 || __CYGWIN__ */
1935 #if defined(__CYGWIN__)
1936 /*
1937  * Save environ of perl.exe, currently Cygwin links in separate environ's
1938  * for each exe/dll.  Probably should be a member of impure_ptr.
1939  */
1940 static char ***Perl_main_environ;
1941
1942 EXTERN_C void
1943 Perl_my_setenv_init(char ***penviron)
1944 {
1945     Perl_main_environ = penviron;
1946 }
1947
1948 void
1949 Perl_my_setenv(pTHX_ char *nam, char *val)
1950 {
1951     /* You can not directly manipulate the environ[] array because
1952      * the routines do some additional work that syncs the Cygwin
1953      * environment with the Windows environment.
1954      */
1955     char *oldstr = environ[setenv_getix(nam)];
1956
1957     if (!val) {
1958        if (!oldstr)
1959            return;
1960        unsetenv(nam);
1961        safesysfree(oldstr);
1962        return;
1963     }
1964     setenv(nam, val, 1);
1965     environ = *Perl_main_environ; /* environ realloc can occur in setenv */
1966     if(oldstr && environ[setenv_getix(nam)] != oldstr)
1967        safesysfree(oldstr);
1968 }
1969 #else /* if WIN32 */
1970
1971 void
1972 Perl_my_setenv(pTHX_ char *nam,char *val)
1973 {
1974
1975 #ifdef USE_WIN32_RTL_ENV
1976
1977     register char *envstr;
1978     STRLEN namlen = strlen(nam);
1979     STRLEN vallen;
1980     char *oldstr = environ[setenv_getix(nam)];
1981
1982     /* putenv() has totally broken semantics in both the Borland
1983      * and Microsoft CRTLs.  They either store the passed pointer in
1984      * the environment without making a copy, or make a copy and don't
1985      * free it. And on top of that, they dont free() old entries that
1986      * are being replaced/deleted.  This means the caller must
1987      * free any old entries somehow, or we end up with a memory
1988      * leak every time my_setenv() is called.  One might think
1989      * one could directly manipulate environ[], like the UNIX code
1990      * above, but direct changes to environ are not allowed when
1991      * calling putenv(), since the RTLs maintain an internal
1992      * *copy* of environ[]. Bad, bad, *bad* stink.
1993      * GSAR 97-06-07
1994      */
1995
1996     if (!val) {
1997         if (!oldstr)
1998             return;
1999         val = "";
2000         vallen = 0;
2001     }
2002     else
2003         vallen = strlen(val);
2004     envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
2005     (void)sprintf(envstr,"%s=%s",nam,val);
2006     (void)PerlEnv_putenv(envstr);
2007     if (oldstr)
2008         safesysfree(oldstr);
2009 #ifdef _MSC_VER
2010     safesysfree(envstr);        /* MSVCRT leaks without this */
2011 #endif
2012
2013 #else /* !USE_WIN32_RTL_ENV */
2014
2015     register char *envstr;
2016     STRLEN len = strlen(nam) + 3;
2017     if (!val) {
2018         val = "";
2019     }
2020     len += strlen(val);
2021     New(904, envstr, len, char);
2022     (void)sprintf(envstr,"%s=%s",nam,val);
2023     (void)PerlEnv_putenv(envstr);
2024     Safefree(envstr);
2025
2026 #endif
2027 }
2028
2029 #endif /* WIN32 */
2030 #endif
2031
2032 I32
2033 Perl_setenv_getix(pTHX_ char *nam)
2034 {
2035     register I32 i, len = strlen(nam);
2036
2037     for (i = 0; environ[i]; i++) {
2038         if (
2039 #ifdef WIN32
2040             strnicmp(environ[i],nam,len) == 0
2041 #else
2042             strnEQ(environ[i],nam,len)
2043 #endif
2044             && environ[i][len] == '=')
2045             break;                      /* strnEQ must come first to avoid */
2046     }                                   /* potential SEGV's */
2047     return i;
2048 }
2049
2050 #endif /* !VMS */
2051
2052 #ifdef UNLINK_ALL_VERSIONS
2053 I32
2054 Perl_unlnk(pTHX_ char *f)       /* unlink all versions of a file */
2055 {
2056     I32 i;
2057
2058     for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
2059     return i ? 0 : -1;
2060 }
2061 #endif
2062
2063 /* this is a drop-in replacement for bcopy() */
2064 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
2065 char *
2066 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
2067 {
2068     char *retval = to;
2069
2070     if (from - to >= 0) {
2071         while (len--)
2072             *to++ = *from++;
2073     }
2074     else {
2075         to += len;
2076         from += len;
2077         while (len--)
2078             *(--to) = *(--from);
2079     }
2080     return retval;
2081 }
2082 #endif
2083
2084 /* this is a drop-in replacement for memset() */
2085 #ifndef HAS_MEMSET
2086 void *
2087 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
2088 {
2089     char *retval = loc;
2090
2091     while (len--)
2092         *loc++ = ch;
2093     return retval;
2094 }
2095 #endif
2096
2097 /* this is a drop-in replacement for bzero() */
2098 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2099 char *
2100 Perl_my_bzero(register char *loc, register I32 len)
2101 {
2102     char *retval = loc;
2103
2104     while (len--)
2105         *loc++ = 0;
2106     return retval;
2107 }
2108 #endif
2109
2110 /* this is a drop-in replacement for memcmp() */
2111 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2112 I32
2113 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
2114 {
2115     register U8 *a = (U8 *)s1;
2116     register U8 *b = (U8 *)s2;
2117     register I32 tmp;
2118
2119     while (len--) {
2120         if (tmp = *a++ - *b++)
2121             return tmp;
2122     }
2123     return 0;
2124 }
2125 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2126
2127 #ifndef HAS_VPRINTF
2128
2129 #ifdef USE_CHAR_VSPRINTF
2130 char *
2131 #else
2132 int
2133 #endif
2134 vsprintf(char *dest, const char *pat, char *args)
2135 {
2136     FILE fakebuf;
2137
2138     fakebuf._ptr = dest;
2139     fakebuf._cnt = 32767;
2140 #ifndef _IOSTRG
2141 #define _IOSTRG 0
2142 #endif
2143     fakebuf._flag = _IOWRT|_IOSTRG;
2144     _doprnt(pat, args, &fakebuf);       /* what a kludge */
2145     (void)putc('\0', &fakebuf);
2146 #ifdef USE_CHAR_VSPRINTF
2147     return(dest);
2148 #else
2149     return 0;           /* perl doesn't use return value */
2150 #endif
2151 }
2152
2153 #endif /* HAS_VPRINTF */
2154
2155 #ifdef MYSWAP
2156 #if BYTEORDER != 0x4321
2157 short
2158 Perl_my_swap(pTHX_ short s)
2159 {
2160 #if (BYTEORDER & 1) == 0
2161     short result;
2162
2163     result = ((s & 255) << 8) + ((s >> 8) & 255);
2164     return result;
2165 #else
2166     return s;
2167 #endif
2168 }
2169
2170 long
2171 Perl_my_htonl(pTHX_ long l)
2172 {
2173     union {
2174         long result;
2175         char c[sizeof(long)];
2176     } u;
2177
2178 #if BYTEORDER == 0x1234
2179     u.c[0] = (l >> 24) & 255;
2180     u.c[1] = (l >> 16) & 255;
2181     u.c[2] = (l >> 8) & 255;
2182     u.c[3] = l & 255;
2183     return u.result;
2184 #else
2185 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2186     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2187 #else
2188     register I32 o;
2189     register I32 s;
2190
2191     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2192         u.c[o & 0xf] = (l >> s) & 255;
2193     }
2194     return u.result;
2195 #endif
2196 #endif
2197 }
2198
2199 long
2200 Perl_my_ntohl(pTHX_ long l)
2201 {
2202     union {
2203         long l;
2204         char c[sizeof(long)];
2205     } u;
2206
2207 #if BYTEORDER == 0x1234
2208     u.c[0] = (l >> 24) & 255;
2209     u.c[1] = (l >> 16) & 255;
2210     u.c[2] = (l >> 8) & 255;
2211     u.c[3] = l & 255;
2212     return u.l;
2213 #else
2214 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2215     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2216 #else
2217     register I32 o;
2218     register I32 s;
2219
2220     u.l = l;
2221     l = 0;
2222     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2223         l |= (u.c[o & 0xf] & 255) << s;
2224     }
2225     return l;
2226 #endif
2227 #endif
2228 }
2229
2230 #endif /* BYTEORDER != 0x4321 */
2231 #endif /* MYSWAP */
2232
2233 /*
2234  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2235  * If these functions are defined,
2236  * the BYTEORDER is neither 0x1234 nor 0x4321.
2237  * However, this is not assumed.
2238  * -DWS
2239  */
2240
2241 #define HTOV(name,type)                                         \
2242         type                                                    \
2243         name (register type n)                                  \
2244         {                                                       \
2245             union {                                             \
2246                 type value;                                     \
2247                 char c[sizeof(type)];                           \
2248             } u;                                                \
2249             register I32 i;                                     \
2250             register I32 s;                                     \
2251             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
2252                 u.c[i] = (n >> s) & 0xFF;                       \
2253             }                                                   \
2254             return u.value;                                     \
2255         }
2256
2257 #define VTOH(name,type)                                         \
2258         type                                                    \
2259         name (register type n)                                  \
2260         {                                                       \
2261             union {                                             \
2262                 type value;                                     \
2263                 char c[sizeof(type)];                           \
2264             } u;                                                \
2265             register I32 i;                                     \
2266             register I32 s;                                     \
2267             u.value = n;                                        \
2268             n = 0;                                              \
2269             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
2270                 n += (u.c[i] & 0xFF) << s;                      \
2271             }                                                   \
2272             return n;                                           \
2273         }
2274
2275 #if defined(HAS_HTOVS) && !defined(htovs)
2276 HTOV(htovs,short)
2277 #endif
2278 #if defined(HAS_HTOVL) && !defined(htovl)
2279 HTOV(htovl,long)
2280 #endif
2281 #if defined(HAS_VTOHS) && !defined(vtohs)
2282 VTOH(vtohs,short)
2283 #endif
2284 #if defined(HAS_VTOHL) && !defined(vtohl)
2285 VTOH(vtohl,long)
2286 #endif
2287
2288     /* VMS' my_popen() is in VMS.c, same with OS/2. */
2289 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2290 PerlIO *
2291 Perl_my_popen(pTHX_ char *cmd, char *mode)
2292 {
2293     int p[2];
2294     register I32 This, that;
2295     register Pid_t pid;
2296     SV *sv;
2297     I32 doexec = strNE(cmd,"-");
2298     I32 did_pipes = 0;
2299     int pp[2];
2300
2301     PERL_FLUSHALL_FOR_CHILD;
2302 #ifdef OS2
2303     if (doexec) {
2304         return my_syspopen(cmd,mode);
2305     }
2306 #endif 
2307     This = (*mode == 'w');
2308     that = !This;
2309     if (doexec && PL_tainting) {
2310         taint_env();
2311         taint_proper("Insecure %s%s", "EXEC");
2312     }
2313     if (PerlProc_pipe(p) < 0)
2314         return Nullfp;
2315     if (doexec && PerlProc_pipe(pp) >= 0)
2316         did_pipes = 1;
2317     while ((pid = (doexec?vfork():fork())) < 0) {
2318         if (errno != EAGAIN) {
2319             PerlLIO_close(p[This]);
2320             if (did_pipes) {
2321                 PerlLIO_close(pp[0]);
2322                 PerlLIO_close(pp[1]);
2323             }
2324             if (!doexec)
2325                 Perl_croak(aTHX_ "Can't fork");
2326             return Nullfp;
2327         }
2328         sleep(5);
2329     }
2330     if (pid == 0) {
2331         GV* tmpgv;
2332
2333 #undef THIS
2334 #undef THAT
2335 #define THIS that
2336 #define THAT This
2337         PerlLIO_close(p[THAT]);
2338         if (did_pipes) {
2339             PerlLIO_close(pp[0]);
2340 #if defined(HAS_FCNTL) && defined(F_SETFD)
2341             fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2342 #endif
2343         }
2344         if (p[THIS] != (*mode == 'r')) {
2345             PerlLIO_dup2(p[THIS], *mode == 'r');
2346             PerlLIO_close(p[THIS]);
2347         }
2348 #ifndef OS2
2349         if (doexec) {
2350 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2351             int fd;
2352
2353 #ifndef NOFILE
2354 #define NOFILE 20
2355 #endif
2356             for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2357                 if (fd != pp[1])
2358                     PerlLIO_close(fd);
2359 #endif
2360             do_exec3(cmd,pp[1],did_pipes);      /* may or may not use the shell */
2361             PerlProc__exit(1);
2362         }
2363 #endif  /* defined OS2 */
2364         /*SUPPRESS 560*/
2365         if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
2366             sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2367         PL_forkprocess = 0;
2368         hv_clear(PL_pidstatus); /* we have no children */
2369         return Nullfp;
2370 #undef THIS
2371 #undef THAT
2372     }
2373     do_execfree();      /* free any memory malloced by child on vfork */
2374     PerlLIO_close(p[that]);
2375     if (did_pipes)
2376         PerlLIO_close(pp[1]);
2377     if (p[that] < p[This]) {
2378         PerlLIO_dup2(p[This], p[that]);
2379         PerlLIO_close(p[This]);
2380         p[This] = p[that];
2381     }
2382     sv = *av_fetch(PL_fdpid,p[This],TRUE);
2383     (void)SvUPGRADE(sv,SVt_IV);
2384     SvIVX(sv) = pid;
2385     PL_forkprocess = pid;
2386     if (did_pipes && pid > 0) {
2387         int errkid;
2388         int n = 0, n1;
2389
2390         while (n < sizeof(int)) {
2391             n1 = PerlLIO_read(pp[0],
2392                               (void*)(((char*)&errkid)+n),
2393                               (sizeof(int)) - n);
2394             if (n1 <= 0)
2395                 break;
2396             n += n1;
2397         }
2398         PerlLIO_close(pp[0]);
2399         did_pipes = 0;
2400         if (n) {                        /* Error */
2401             if (n != sizeof(int))
2402                 Perl_croak(aTHX_ "panic: kid popen errno read");
2403             errno = errkid;             /* Propagate errno from kid */
2404             return Nullfp;
2405         }
2406     }
2407     if (did_pipes)
2408          PerlLIO_close(pp[0]);
2409     return PerlIO_fdopen(p[This], mode);
2410 }
2411 #else
2412 #if defined(atarist) || defined(DJGPP)
2413 FILE *popen();
2414 PerlIO *
2415 Perl_my_popen(pTHX_ char *cmd, char *mode)
2416 {
2417     /* Needs work for PerlIO ! */
2418     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2419     PERL_FLUSHALL_FOR_CHILD;
2420     return popen(PerlIO_exportFILE(cmd, 0), mode);
2421 }
2422 #endif
2423
2424 #endif /* !DOSISH */
2425
2426 #ifdef DUMP_FDS
2427 void
2428 Perl_dump_fds(pTHX_ char *s)
2429 {
2430     int fd;
2431     struct stat tmpstatbuf;
2432
2433     PerlIO_printf(Perl_debug_log,"%s", s);
2434     for (fd = 0; fd < 32; fd++) {
2435         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2436             PerlIO_printf(Perl_debug_log," %d",fd);
2437     }
2438     PerlIO_printf(Perl_debug_log,"\n");
2439 }
2440 #endif  /* DUMP_FDS */
2441
2442 #ifndef HAS_DUP2
2443 int
2444 dup2(int oldfd, int newfd)
2445 {
2446 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2447     if (oldfd == newfd)
2448         return oldfd;
2449     PerlLIO_close(newfd);
2450     return fcntl(oldfd, F_DUPFD, newfd);
2451 #else
2452 #define DUP2_MAX_FDS 256
2453     int fdtmp[DUP2_MAX_FDS];
2454     I32 fdx = 0;
2455     int fd;
2456
2457     if (oldfd == newfd)
2458         return oldfd;
2459     PerlLIO_close(newfd);
2460     /* good enough for low fd's... */
2461     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2462         if (fdx >= DUP2_MAX_FDS) {
2463             PerlLIO_close(fd);
2464             fd = -1;
2465             break;
2466         }
2467         fdtmp[fdx++] = fd;
2468     }
2469     while (fdx > 0)
2470         PerlLIO_close(fdtmp[--fdx]);
2471     return fd;
2472 #endif
2473 }
2474 #endif
2475
2476
2477 #ifdef HAS_SIGACTION
2478
2479 Sighandler_t
2480 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2481 {
2482     struct sigaction act, oact;
2483
2484     act.sa_handler = handler;
2485     sigemptyset(&act.sa_mask);
2486     act.sa_flags = 0;
2487 #ifdef SA_RESTART
2488     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2489 #endif
2490 #ifdef SA_NOCLDWAIT
2491     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2492         act.sa_flags |= SA_NOCLDWAIT;
2493 #endif
2494     if (sigaction(signo, &act, &oact) == -1)
2495         return SIG_ERR;
2496     else
2497         return oact.sa_handler;
2498 }
2499
2500 Sighandler_t
2501 Perl_rsignal_state(pTHX_ int signo)
2502 {
2503     struct sigaction oact;
2504
2505     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2506         return SIG_ERR;
2507     else
2508         return oact.sa_handler;
2509 }
2510
2511 int
2512 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2513 {
2514     struct sigaction act;
2515
2516     act.sa_handler = handler;
2517     sigemptyset(&act.sa_mask);
2518     act.sa_flags = 0;
2519 #ifdef SA_RESTART
2520     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2521 #endif
2522 #ifdef SA_NOCLDWAIT
2523     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2524         act.sa_flags |= SA_NOCLDWAIT;
2525 #endif
2526     return sigaction(signo, &act, save);
2527 }
2528
2529 int
2530 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2531 {
2532     return sigaction(signo, save, (struct sigaction *)NULL);
2533 }
2534
2535 #else /* !HAS_SIGACTION */
2536
2537 Sighandler_t
2538 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2539 {
2540     return PerlProc_signal(signo, handler);
2541 }
2542
2543 static int sig_trapped;
2544
2545 static
2546 Signal_t
2547 sig_trap(int signo)
2548 {
2549     sig_trapped++;
2550 }
2551
2552 Sighandler_t
2553 Perl_rsignal_state(pTHX_ int signo)
2554 {
2555     Sighandler_t oldsig;
2556
2557     sig_trapped = 0;
2558     oldsig = PerlProc_signal(signo, sig_trap);
2559     PerlProc_signal(signo, oldsig);
2560     if (sig_trapped)
2561         PerlProc_kill(PerlProc_getpid(), signo);
2562     return oldsig;
2563 }
2564
2565 int
2566 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2567 {
2568     *save = PerlProc_signal(signo, handler);
2569     return (*save == SIG_ERR) ? -1 : 0;
2570 }
2571
2572 int
2573 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2574 {
2575     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2576 }
2577
2578 #endif /* !HAS_SIGACTION */
2579
2580     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2581 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2582 I32
2583 Perl_my_pclose(pTHX_ PerlIO *ptr)
2584 {
2585     Sigsave_t hstat, istat, qstat;
2586     int status;
2587     SV **svp;
2588     Pid_t pid;
2589     Pid_t pid2;
2590     bool close_failed;
2591     int saved_errno;
2592 #ifdef VMS
2593     int saved_vaxc_errno;
2594 #endif
2595 #ifdef WIN32
2596     int saved_win32_errno;
2597 #endif
2598
2599     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2600     pid = SvIVX(*svp);
2601     SvREFCNT_dec(*svp);
2602     *svp = &PL_sv_undef;
2603 #ifdef OS2
2604     if (pid == -1) {                    /* Opened by popen. */
2605         return my_syspclose(ptr);
2606     }
2607 #endif 
2608     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2609         saved_errno = errno;
2610 #ifdef VMS
2611         saved_vaxc_errno = vaxc$errno;
2612 #endif
2613 #ifdef WIN32
2614         saved_win32_errno = GetLastError();
2615 #endif
2616     }
2617 #ifdef UTS
2618     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2619 #endif
2620     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2621     rsignal_save(SIGINT, SIG_IGN, &istat);
2622     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2623     do {
2624         pid2 = wait4pid(pid, &status, 0);
2625     } while (pid2 == -1 && errno == EINTR);
2626     rsignal_restore(SIGHUP, &hstat);
2627     rsignal_restore(SIGINT, &istat);
2628     rsignal_restore(SIGQUIT, &qstat);
2629     if (close_failed) {
2630         SETERRNO(saved_errno, saved_vaxc_errno);
2631         return -1;
2632     }
2633     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2634 }
2635 #endif /* !DOSISH */
2636
2637 #if  (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
2638 I32
2639 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2640 {
2641     SV *sv;
2642     SV** svp;
2643     char spid[TYPE_CHARS(int)];
2644
2645     if (!pid)
2646         return -1;
2647     if (pid > 0) {
2648         sprintf(spid, "%"IVdf, (IV)pid);
2649         svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2650         if (svp && *svp != &PL_sv_undef) {
2651             *statusp = SvIVX(*svp);
2652             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2653             return pid;
2654         }
2655     }
2656     else {
2657         HE *entry;
2658
2659         hv_iterinit(PL_pidstatus);
2660         if (entry = hv_iternext(PL_pidstatus)) {
2661             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2662             sv = hv_iterval(PL_pidstatus,entry);
2663             *statusp = SvIVX(sv);
2664             sprintf(spid, "%"IVdf, (IV)pid);
2665             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2666             return pid;
2667         }
2668     }
2669 #ifdef HAS_WAITPID
2670 #  ifdef HAS_WAITPID_RUNTIME
2671     if (!HAS_WAITPID_RUNTIME)
2672         goto hard_way;
2673 #  endif
2674     return PerlProc_waitpid(pid,statusp,flags);
2675 #endif
2676 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2677     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2678 #endif
2679 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2680   hard_way:
2681     {
2682         I32 result;
2683         if (flags)
2684             Perl_croak(aTHX_ "Can't do waitpid with flags");
2685         else {
2686             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2687                 pidgone(result,*statusp);
2688             if (result < 0)
2689                 *statusp = -1;
2690         }
2691         return result;
2692     }
2693 #endif
2694 }
2695 #endif /* !DOSISH || OS2 || WIN32 */
2696
2697 void
2698 /*SUPPRESS 590*/
2699 Perl_pidgone(pTHX_ Pid_t pid, int status)
2700 {
2701     register SV *sv;
2702     char spid[TYPE_CHARS(int)];
2703
2704     sprintf(spid, "%"IVdf, (IV)pid);
2705     sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2706     (void)SvUPGRADE(sv,SVt_IV);
2707     SvIVX(sv) = status;
2708     return;
2709 }
2710
2711 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2712 int pclose();
2713 #ifdef HAS_FORK
2714 int                                     /* Cannot prototype with I32
2715                                            in os2ish.h. */
2716 my_syspclose(PerlIO *ptr)
2717 #else
2718 I32
2719 Perl_my_pclose(pTHX_ PerlIO *ptr)
2720 #endif 
2721 {
2722     /* Needs work for PerlIO ! */
2723     FILE *f = PerlIO_findFILE(ptr);
2724     I32 result = pclose(f);
2725 #if defined(DJGPP)
2726     result = (result << 8) & 0xff00;
2727 #endif
2728     PerlIO_releaseFILE(ptr,f);
2729     return result;
2730 }
2731 #endif
2732
2733 void
2734 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2735 {
2736     register I32 todo;
2737     register const char *frombase = from;
2738
2739     if (len == 1) {
2740         register const char c = *from;
2741         while (count-- > 0)
2742             *to++ = c;
2743         return;
2744     }
2745     while (count-- > 0) {
2746         for (todo = len; todo > 0; todo--) {
2747             *to++ = *from++;
2748         }
2749         from = frombase;
2750     }
2751 }
2752
2753 U32
2754 Perl_cast_ulong(pTHX_ NV f)
2755 {
2756     long along;
2757
2758 #if CASTFLAGS & 2
2759 #   define BIGDOUBLE 2147483648.0
2760     if (f >= BIGDOUBLE)
2761         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2762 #endif
2763     if (f >= 0.0)
2764         return (unsigned long)f;
2765     along = (long)f;
2766     return (unsigned long)along;
2767 }
2768 # undef BIGDOUBLE
2769
2770 /* Unfortunately, on some systems the cast_uv() function doesn't
2771    work with the system-supplied definition of ULONG_MAX.  The
2772    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2773    problem with the compiler constant folding.
2774
2775    In any case, this workaround should be fine on any two's complement
2776    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2777    ccflags.
2778                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2779 */
2780
2781 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2782    of LONG_(MIN/MAX).
2783                            -- Kenneth Albanowski <kjahds@kjahds.com>
2784 */                                      
2785
2786 #ifndef MY_UV_MAX
2787 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2788 #endif
2789
2790 I32
2791 Perl_cast_i32(pTHX_ NV f)
2792 {
2793     if (f >= I32_MAX)
2794         return (I32) I32_MAX;
2795     if (f <= I32_MIN)
2796         return (I32) I32_MIN;
2797     return (I32) f;
2798 }
2799
2800 IV
2801 Perl_cast_iv(pTHX_ NV f)
2802 {
2803     if (f >= IV_MAX) {
2804         UV uv;
2805         
2806         if (f >= (NV)UV_MAX)
2807             return (IV) UV_MAX; 
2808         uv = (UV) f;
2809         return (IV)uv;
2810     }
2811     if (f <= IV_MIN)
2812         return (IV) IV_MIN;
2813     return (IV) f;
2814 }
2815
2816 UV
2817 Perl_cast_uv(pTHX_ NV f)
2818 {
2819     if (f >= MY_UV_MAX)
2820         return (UV) MY_UV_MAX;
2821     if (f < 0) {
2822         IV iv;
2823         
2824         if (f < IV_MIN)
2825             return (UV)IV_MIN;
2826         iv = (IV) f;
2827         return (UV) iv;
2828     }
2829     return (UV) f;
2830 }
2831
2832 #ifndef HAS_RENAME
2833 I32
2834 Perl_same_dirent(pTHX_ char *a, char *b)
2835 {
2836     char *fa = strrchr(a,'/');
2837     char *fb = strrchr(b,'/');
2838     struct stat tmpstatbuf1;
2839     struct stat tmpstatbuf2;
2840     SV *tmpsv = sv_newmortal();
2841
2842     if (fa)
2843         fa++;
2844     else
2845         fa = a;
2846     if (fb)
2847         fb++;
2848     else
2849         fb = b;
2850     if (strNE(a,b))
2851         return FALSE;
2852     if (fa == a)
2853         sv_setpv(tmpsv, ".");
2854     else
2855         sv_setpvn(tmpsv, a, fa - a);
2856     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2857         return FALSE;
2858     if (fb == b)
2859         sv_setpv(tmpsv, ".");
2860     else
2861         sv_setpvn(tmpsv, b, fb - b);
2862     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2863         return FALSE;
2864     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2865            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2866 }
2867 #endif /* !HAS_RENAME */
2868
2869 NV
2870 Perl_scan_bin(pTHX_ char *start, I32 len, I32 *retlen)
2871 {
2872     register char *s = start;
2873     register NV rnv = 0.0;
2874     register UV ruv = 0;
2875     register bool seenb = FALSE;
2876     register bool overflowed = FALSE;
2877
2878     for (; len-- && *s; s++) {
2879         if (!(*s == '0' || *s == '1')) {
2880             if (*s == '_')
2881                 continue; /* Note: does not check for __ and the like. */
2882             if (seenb == FALSE && *s == 'b' && ruv == 0) {
2883                 /* Disallow 0bbb0b0bbb... */
2884                 seenb = TRUE;
2885                 continue;
2886             }
2887             else {
2888                 dTHR;
2889                 if (ckWARN(WARN_DIGIT))
2890                     Perl_warner(aTHX_ WARN_DIGIT,
2891                                 "Illegal binary digit '%c' ignored", *s);
2892                 break;
2893             }
2894         }
2895         if (!overflowed) {
2896             register UV xuv = ruv << 1;
2897
2898             if ((xuv >> 1) != ruv) {
2899                 dTHR;
2900                 overflowed = TRUE;
2901                 rnv = (NV) ruv;
2902                 if (ckWARN_d(WARN_OVERFLOW))
2903                     Perl_warner(aTHX_ WARN_OVERFLOW,
2904                                 "Integer overflow in binary number");
2905             } else
2906                 ruv = xuv | (*s - '0');
2907         }
2908         if (overflowed) {
2909             rnv *= 2;
2910             /* If an NV has not enough bits in its mantissa to
2911              * represent an UV this summing of small low-order numbers
2912              * is a waste of time (because the NV cannot preserve
2913              * the low-order bits anyway): we could just remember when
2914              * did we overflow and in the end just multiply rnv by the
2915              * right amount. */
2916             rnv += (*s - '0');
2917         }
2918     }
2919     if (!overflowed)
2920         rnv = (NV) ruv;
2921     if (   ( overflowed && rnv > 4294967295.0)
2922 #if UVSIZE > 4
2923         || (!overflowed && ruv > 0xffffffff  )
2924 #endif
2925         ) { 
2926         dTHR;
2927         if (ckWARN(WARN_PORTABLE))
2928             Perl_warner(aTHX_ WARN_PORTABLE,
2929                         "Binary number > 0b11111111111111111111111111111111 non-portable");
2930     }
2931     *retlen = s - start;
2932     return rnv;
2933 }
2934
2935 NV
2936 Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen)
2937 {
2938     register char *s = start;
2939     register NV rnv = 0.0;
2940     register UV ruv = 0;
2941     register bool overflowed = FALSE;
2942
2943     for (; len-- && *s; s++) {
2944         if (!(*s >= '0' && *s <= '7')) {
2945             if (*s == '_')
2946                 continue; /* Note: does not check for __ and the like. */
2947             else {
2948                 /* Allow \octal to work the DWIM way (that is, stop scanning
2949                  * as soon as non-octal characters are seen, complain only iff
2950                  * someone seems to want to use the digits eight and nine). */
2951                 if (*s == '8' || *s == '9') {
2952                     dTHR;
2953                     if (ckWARN(WARN_DIGIT))
2954                         Perl_warner(aTHX_ WARN_DIGIT,
2955                                     "Illegal octal digit '%c' ignored", *s);
2956                 }
2957                 break;
2958             }
2959         }
2960         if (!overflowed) {
2961             register UV xuv = ruv << 3;
2962
2963             if ((xuv >> 3) != ruv) {
2964                 dTHR;
2965                 overflowed = TRUE;
2966                 rnv = (NV) ruv;
2967                 if (ckWARN_d(WARN_OVERFLOW))
2968                     Perl_warner(aTHX_ WARN_OVERFLOW,
2969                                 "Integer overflow in octal number");
2970             } else
2971                 ruv = xuv | (*s - '0');
2972         }
2973         if (overflowed) {
2974             rnv *= 8.0;
2975             /* If an NV has not enough bits in its mantissa to
2976              * represent an UV this summing of small low-order numbers
2977              * is a waste of time (because the NV cannot preserve
2978              * the low-order bits anyway): we could just remember when
2979              * did we overflow and in the end just multiply rnv by the
2980              * right amount of 8-tuples. */
2981             rnv += (NV)(*s - '0');
2982         }
2983     }
2984     if (!overflowed)
2985         rnv = (NV) ruv;
2986     if (   ( overflowed && rnv > 4294967295.0)
2987 #if UVSIZE > 4
2988         || (!overflowed && ruv > 0xffffffff  )
2989 #endif
2990         ) {
2991         dTHR;
2992         if (ckWARN(WARN_PORTABLE))
2993             Perl_warner(aTHX_ WARN_PORTABLE,
2994                         "Octal number > 037777777777 non-portable");
2995     }
2996     *retlen = s - start;
2997     return rnv;
2998 }
2999
3000 NV
3001 Perl_scan_hex(pTHX_ char *start, I32 len, I32 *retlen)
3002 {
3003     register char *s = start;
3004     register NV rnv = 0.0;
3005     register UV ruv = 0;
3006     register bool seenx = FALSE;
3007     register bool overflowed = FALSE;
3008     char *hexdigit;
3009
3010     for (; len-- && *s; s++) {
3011         hexdigit = strchr((char *) PL_hexdigit, *s);
3012         if (!hexdigit) {
3013             if (*s == '_')
3014                 continue; /* Note: does not check for __ and the like. */
3015             if (seenx == FALSE && *s == 'x' && ruv == 0) {
3016                 /* Disallow 0xxx0x0xxx... */
3017                 seenx = TRUE;
3018                 continue;
3019             }
3020             else {
3021                 dTHR;
3022                 if (ckWARN(WARN_DIGIT))
3023                     Perl_warner(aTHX_ WARN_DIGIT,
3024                                 "Illegal hexadecimal digit '%c' ignored", *s);
3025                 break;
3026             }
3027         }
3028         if (!overflowed) {
3029             register UV xuv = ruv << 4;
3030
3031             if ((xuv >> 4) != ruv) {
3032                 dTHR;
3033                 overflowed = TRUE;
3034                 rnv = (NV) ruv;
3035                 if (ckWARN_d(WARN_OVERFLOW))
3036                     Perl_warner(aTHX_ WARN_OVERFLOW,
3037                                 "Integer overflow in hexadecimal number");
3038             } else
3039                 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
3040         }
3041         if (overflowed) {
3042             rnv *= 16.0;
3043             /* If an NV has not enough bits in its mantissa to
3044              * represent an UV this summing of small low-order numbers
3045              * is a waste of time (because the NV cannot preserve
3046              * the low-order bits anyway): we could just remember when
3047              * did we overflow and in the end just multiply rnv by the
3048              * right amount of 16-tuples. */
3049             rnv += (NV)((hexdigit - PL_hexdigit) & 15);
3050         }
3051     }
3052     if (!overflowed)
3053         rnv = (NV) ruv;
3054     if (   ( overflowed && rnv > 4294967295.0)
3055 #if UVSIZE > 4
3056         || (!overflowed && ruv > 0xffffffff  )
3057 #endif
3058         ) { 
3059         dTHR;
3060         if (ckWARN(WARN_PORTABLE))
3061             Perl_warner(aTHX_ WARN_PORTABLE,
3062                         "Hexadecimal number > 0xffffffff non-portable");
3063     }
3064     *retlen = s - start;
3065     return rnv;
3066 }
3067
3068 char*
3069 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3070 {
3071     dTHR;
3072     char *xfound = Nullch;
3073     char *xfailed = Nullch;
3074     char tmpbuf[MAXPATHLEN];
3075     register char *s;
3076     I32 len;
3077     int retval;
3078 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3079 #  define SEARCH_EXTS ".bat", ".cmd", NULL
3080 #  define MAX_EXT_LEN 4
3081 #endif
3082 #ifdef OS2
3083 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3084 #  define MAX_EXT_LEN 4
3085 #endif
3086 #ifdef VMS
3087 #  define SEARCH_EXTS ".pl", ".com", NULL
3088 #  define MAX_EXT_LEN 4
3089 #endif
3090     /* additional extensions to try in each dir if scriptname not found */
3091 #ifdef SEARCH_EXTS
3092     char *exts[] = { SEARCH_EXTS };
3093     char **ext = search_ext ? search_ext : exts;
3094     int extidx = 0, i = 0;
3095     char *curext = Nullch;
3096 #else
3097 #  define MAX_EXT_LEN 0
3098 #endif
3099
3100     /*
3101      * If dosearch is true and if scriptname does not contain path
3102      * delimiters, search the PATH for scriptname.
3103      *
3104      * If SEARCH_EXTS is also defined, will look for each
3105      * scriptname{SEARCH_EXTS} whenever scriptname is not found
3106      * while searching the PATH.
3107      *
3108      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3109      * proceeds as follows:
3110      *   If DOSISH or VMSISH:
3111      *     + look for ./scriptname{,.foo,.bar}
3112      *     + search the PATH for scriptname{,.foo,.bar}
3113      *
3114      *   If !DOSISH:
3115      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
3116      *       this will not look in '.' if it's not in the PATH)
3117      */
3118     tmpbuf[0] = '\0';
3119
3120 #ifdef VMS
3121 #  ifdef ALWAYS_DEFTYPES
3122     len = strlen(scriptname);
3123     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3124         int hasdir, idx = 0, deftypes = 1;
3125         bool seen_dot = 1;
3126
3127         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3128 #  else
3129     if (dosearch) {
3130         int hasdir, idx = 0, deftypes = 1;
3131         bool seen_dot = 1;
3132
3133         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3134 #  endif
3135         /* The first time through, just add SEARCH_EXTS to whatever we
3136          * already have, so we can check for default file types. */
3137         while (deftypes ||
3138                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3139         {
3140             if (deftypes) {
3141                 deftypes = 0;
3142                 *tmpbuf = '\0';
3143             }
3144             if ((strlen(tmpbuf) + strlen(scriptname)
3145                  + MAX_EXT_LEN) >= sizeof tmpbuf)
3146                 continue;       /* don't search dir with too-long name */
3147             strcat(tmpbuf, scriptname);
3148 #else  /* !VMS */
3149
3150 #ifdef DOSISH
3151     if (strEQ(scriptname, "-"))
3152         dosearch = 0;
3153     if (dosearch) {             /* Look in '.' first. */
3154         char *cur = scriptname;
3155 #ifdef SEARCH_EXTS
3156         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3157             while (ext[i])
3158                 if (strEQ(ext[i++],curext)) {
3159                     extidx = -1;                /* already has an ext */
3160                     break;
3161                 }
3162         do {
3163 #endif
3164             DEBUG_p(PerlIO_printf(Perl_debug_log,
3165                                   "Looking for %s\n",cur));
3166             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3167                 && !S_ISDIR(PL_statbuf.st_mode)) {
3168                 dosearch = 0;
3169                 scriptname = cur;
3170 #ifdef SEARCH_EXTS
3171                 break;
3172 #endif
3173             }
3174 #ifdef SEARCH_EXTS
3175             if (cur == scriptname) {
3176                 len = strlen(scriptname);
3177                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3178                     break;
3179                 cur = strcpy(tmpbuf, scriptname);
3180             }
3181         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
3182                  && strcpy(tmpbuf+len, ext[extidx++]));
3183 #endif
3184     }
3185 #endif
3186
3187 #ifdef MACOS_TRADITIONAL
3188     if (dosearch && !strchr(scriptname, ':') &&
3189         (s = PerlEnv_getenv("Commands")))
3190 #else
3191     if (dosearch && !strchr(scriptname, '/')
3192 #ifdef DOSISH
3193                  && !strchr(scriptname, '\\')
3194 #endif
3195                  && (s = PerlEnv_getenv("PATH")))
3196 #endif
3197     {
3198         bool seen_dot = 0;
3199         
3200         PL_bufend = s + strlen(s);
3201         while (s < PL_bufend) {
3202 #ifdef MACOS_TRADITIONAL
3203             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3204                         ',',
3205                         &len);
3206 #else
3207 #if defined(atarist) || defined(DOSISH)
3208             for (len = 0; *s
3209 #  ifdef atarist
3210                     && *s != ','
3211 #  endif
3212                     && *s != ';'; len++, s++) {
3213                 if (len < sizeof tmpbuf)
3214                     tmpbuf[len] = *s;
3215             }
3216             if (len < sizeof tmpbuf)
3217                 tmpbuf[len] = '\0';
3218 #else  /* ! (atarist || DOSISH) */
3219             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3220                         ':',
3221                         &len);
3222 #endif /* ! (atarist || DOSISH) */
3223 #endif /* MACOS_TRADITIONAL */
3224             if (s < PL_bufend)
3225                 s++;
3226             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3227                 continue;       /* don't search dir with too-long name */
3228 #ifdef MACOS_TRADITIONAL
3229             if (len && tmpbuf[len - 1] != ':')
3230                 tmpbuf[len++] = ':';
3231 #else
3232             if (len
3233 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3234                 && tmpbuf[len - 1] != '/'
3235                 && tmpbuf[len - 1] != '\\'
3236 #endif
3237                )
3238                 tmpbuf[len++] = '/';
3239             if (len == 2 && tmpbuf[0] == '.')
3240                 seen_dot = 1;
3241 #endif
3242             (void)strcpy(tmpbuf + len, scriptname);
3243 #endif  /* !VMS */
3244
3245 #ifdef SEARCH_EXTS
3246             len = strlen(tmpbuf);
3247             if (extidx > 0)     /* reset after previous loop */
3248                 extidx = 0;
3249             do {
3250 #endif
3251                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3252                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3253                 if (S_ISDIR(PL_statbuf.st_mode)) {
3254                     retval = -1;
3255                 }
3256 #ifdef SEARCH_EXTS
3257             } while (  retval < 0               /* not there */
3258                     && extidx>=0 && ext[extidx] /* try an extension? */
3259                     && strcpy(tmpbuf+len, ext[extidx++])
3260                 );
3261 #endif
3262             if (retval < 0)
3263                 continue;
3264             if (S_ISREG(PL_statbuf.st_mode)
3265                 && cando(S_IRUSR,TRUE,&PL_statbuf)
3266 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3267                 && cando(S_IXUSR,TRUE,&PL_statbuf)
3268 #endif
3269                 )
3270             {
3271                 xfound = tmpbuf;              /* bingo! */
3272                 break;
3273             }
3274             if (!xfailed)
3275                 xfailed = savepv(tmpbuf);
3276         }
3277 #ifndef DOSISH
3278         if (!xfound && !seen_dot && !xfailed &&
3279             (PerlLIO_stat(scriptname,&PL_statbuf) < 0 
3280              || S_ISDIR(PL_statbuf.st_mode)))
3281 #endif
3282             seen_dot = 1;                       /* Disable message. */
3283         if (!xfound) {
3284             if (flags & 1) {                    /* do or die? */
3285                 Perl_croak(aTHX_ "Can't %s %s%s%s",
3286                       (xfailed ? "execute" : "find"),
3287                       (xfailed ? xfailed : scriptname),
3288                       (xfailed ? "" : " on PATH"),
3289                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3290             }
3291             scriptname = Nullch;
3292         }
3293         if (xfailed)
3294             Safefree(xfailed);
3295         scriptname = xfound;
3296     }
3297     return (scriptname ? savepv(scriptname) : Nullch);
3298 }
3299
3300
3301 #ifdef USE_THREADS
3302 #ifdef FAKE_THREADS
3303 /* Very simplistic scheduler for now */
3304 void
3305 schedule(void)
3306 {
3307     thr = thr->i.next_run;
3308 }
3309
3310 void
3311 Perl_cond_init(pTHX_ perl_cond *cp)
3312 {
3313     *cp = 0;
3314 }
3315
3316 void
3317 Perl_cond_signal(pTHX_ perl_cond *cp)
3318 {
3319     perl_os_thread t;
3320     perl_cond cond = *cp;
3321     
3322     if (!cond)
3323         return;
3324     t = cond->thread;
3325     /* Insert t in the runnable queue just ahead of us */
3326     t->i.next_run = thr->i.next_run;
3327     thr->i.next_run->i.prev_run = t;
3328     t->i.prev_run = thr;
3329     thr->i.next_run = t;
3330     thr->i.wait_queue = 0;
3331     /* Remove from the wait queue */
3332     *cp = cond->next;
3333     Safefree(cond);
3334 }
3335
3336 void
3337 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3338 {
3339     perl_os_thread t;
3340     perl_cond cond, cond_next;
3341     
3342     for (cond = *cp; cond; cond = cond_next) {
3343         t = cond->thread;
3344         /* Insert t in the runnable queue just ahead of us */
3345         t->i.next_run = thr->i.next_run;
3346         thr->i.next_run->i.prev_run = t;
3347         t->i.prev_run = thr;
3348         thr->i.next_run = t;
3349         thr->i.wait_queue = 0;
3350         /* Remove from the wait queue */
3351         cond_next = cond->next;
3352         Safefree(cond);
3353     }
3354     *cp = 0;
3355 }
3356
3357 void
3358 Perl_cond_wait(pTHX_ perl_cond *cp)
3359 {
3360     perl_cond cond;
3361
3362     if (thr->i.next_run == thr)
3363         Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3364     
3365     New(666, cond, 1, struct perl_wait_queue);
3366     cond->thread = thr;
3367     cond->next = *cp;
3368     *cp = cond;
3369     thr->i.wait_queue = cond;
3370     /* Remove ourselves from runnable queue */
3371     thr->i.next_run->i.prev_run = thr->i.prev_run;
3372     thr->i.prev_run->i.next_run = thr->i.next_run;
3373 }
3374 #endif /* FAKE_THREADS */
3375
3376 #ifdef PTHREAD_GETSPECIFIC_INT
3377 struct perl_thread *
3378 Perl_getTHR(pTHX)
3379 {
3380     pthread_addr_t t;
3381
3382     if (pthread_getspecific(PL_thr_key, &t))
3383         Perl_croak(aTHX_ "panic: pthread_getspecific");
3384     return (struct perl_thread *) t;
3385 }
3386 #endif
3387
3388 MAGIC *
3389 Perl_condpair_magic(pTHX_ SV *sv)
3390 {
3391     MAGIC *mg;
3392     
3393     SvUPGRADE(sv, SVt_PVMG);
3394     mg = mg_find(sv, 'm');
3395     if (!mg) {
3396         condpair_t *cp;
3397
3398         New(53, cp, 1, condpair_t);
3399         MUTEX_INIT(&cp->mutex);
3400         COND_INIT(&cp->owner_cond);
3401         COND_INIT(&cp->cond);
3402         cp->owner = 0;
3403         LOCK_CRED_MUTEX;                /* XXX need separate mutex? */
3404         mg = mg_find(sv, 'm');
3405         if (mg) {
3406             /* someone else beat us to initialising it */
3407             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3408             MUTEX_DESTROY(&cp->mutex);
3409             COND_DESTROY(&cp->owner_cond);
3410             COND_DESTROY(&cp->cond);
3411             Safefree(cp);
3412         }
3413         else {
3414             sv_magic(sv, Nullsv, 'm', 0, 0);
3415             mg = SvMAGIC(sv);
3416             mg->mg_ptr = (char *)cp;
3417             mg->mg_len = sizeof(cp);
3418             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3419             DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
3420                                            "%p: condpair_magic %p\n", thr, sv));)
3421         }
3422     }
3423     return mg;
3424 }
3425
3426 /*
3427  * Make a new perl thread structure using t as a prototype. Some of the
3428  * fields for the new thread are copied from the prototype thread, t,
3429  * so t should not be running in perl at the time this function is
3430  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3431  * thread calling new_struct_thread) clearly satisfies this constraint.
3432  */
3433 struct perl_thread *
3434 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3435 {
3436 #if !defined(PERL_IMPLICIT_CONTEXT)
3437     struct perl_thread *thr;
3438 #endif
3439     SV *sv;
3440     SV **svp;
3441     I32 i;
3442
3443     sv = newSVpvn("", 0);
3444     SvGROW(sv, sizeof(struct perl_thread) + 1);
3445     SvCUR_set(sv, sizeof(struct perl_thread));
3446     thr = (Thread) SvPVX(sv);
3447 #ifdef DEBUGGING
3448     memset(thr, 0xab, sizeof(struct perl_thread));
3449     PL_markstack = 0;
3450     PL_scopestack = 0;
3451     PL_savestack = 0;
3452     PL_retstack = 0;
3453     PL_dirty = 0;
3454     PL_localizing = 0;
3455     Zero(&PL_hv_fetch_ent_mh, 1, HE);
3456 #else
3457     Zero(thr, 1, struct perl_thread);
3458 #endif
3459
3460     thr->oursv = sv;
3461     init_stacks();
3462
3463     PL_curcop = &PL_compiling;
3464     thr->interp = t->interp;
3465     thr->cvcache = newHV();
3466     thr->threadsv = newAV();
3467     thr->specific = newAV();
3468     thr->errsv = newSVpvn("", 0);
3469     thr->flags = THRf_R_JOINABLE;
3470     MUTEX_INIT(&thr->mutex);
3471
3472     JMPENV_BOOTSTRAP;
3473
3474     PL_in_eval = EVAL_NULL;     /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
3475     PL_restartop = 0;
3476
3477     PL_statname = NEWSV(66,0);
3478     PL_errors = newSVpvn("", 0);
3479     PL_maxscream = -1;
3480     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3481     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3482     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3483     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3484     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3485     PL_regindent = 0;
3486     PL_reginterp_cnt = 0;
3487     PL_lastscream = Nullsv;
3488     PL_screamfirst = 0;
3489     PL_screamnext = 0;
3490     PL_reg_start_tmp = 0;
3491     PL_reg_start_tmpl = 0;
3492     PL_reg_poscache = Nullch;
3493
3494     /* parent thread's data needs to be locked while we make copy */
3495     MUTEX_LOCK(&t->mutex);
3496
3497     PL_protect = t->Tprotect;
3498
3499     PL_curcop = t->Tcurcop;       /* XXX As good a guess as any? */
3500     PL_defstash = t->Tdefstash;   /* XXX maybe these should */
3501     PL_curstash = t->Tcurstash;   /* always be set to main? */
3502
3503     PL_tainted = t->Ttainted;
3504     PL_curpm = t->Tcurpm;         /* XXX No PMOP ref count */
3505     PL_nrs = newSVsv(t->Tnrs);
3506     PL_rs = SvREFCNT_inc(PL_nrs);
3507     PL_last_in_gv = Nullgv;
3508     PL_ofslen = t->Tofslen;
3509     PL_ofs = savepvn(t->Tofs, PL_ofslen);
3510     PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3511     PL_chopset = t->Tchopset;
3512     PL_bodytarget = newSVsv(t->Tbodytarget);
3513     PL_toptarget = newSVsv(t->Ttoptarget);
3514     if (t->Tformtarget == t->Ttoptarget)
3515         PL_formtarget = PL_toptarget;
3516     else
3517         PL_formtarget = PL_bodytarget;
3518
3519     /* Initialise all per-thread SVs that the template thread used */
3520     svp = AvARRAY(t->threadsv);
3521     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3522         if (*svp && *svp != &PL_sv_undef) {
3523             SV *sv = newSVsv(*svp);
3524             av_store(thr->threadsv, i, sv);
3525             sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3526             DEBUG_S(PerlIO_printf(Perl_debug_log,
3527                 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3528                                   (IV)i, t, thr));
3529         }
3530     } 
3531     thr->threadsvp = AvARRAY(thr->threadsv);
3532
3533     MUTEX_LOCK(&PL_threads_mutex);
3534     PL_nthreads++;
3535     thr->tid = ++PL_threadnum;
3536     thr->next = t->next;
3537     thr->prev = t;
3538     t->next = thr;
3539     thr->next->prev = thr;
3540     MUTEX_UNLOCK(&PL_threads_mutex);
3541
3542     /* done copying parent's state */
3543     MUTEX_UNLOCK(&t->mutex);
3544
3545 #ifdef HAVE_THREAD_INTERN
3546     Perl_init_thread_intern(thr);
3547 #endif /* HAVE_THREAD_INTERN */
3548     return thr;
3549 }
3550 #endif /* USE_THREADS */
3551
3552 #ifdef HUGE_VAL
3553 /*
3554  * This hack is to force load of "huge" support from libm.a
3555  * So it is in perl for (say) POSIX to use. 
3556  * Needed for SunOS with Sun's 'acc' for example.
3557  */
3558 NV 
3559 Perl_huge(void)
3560 {
3561  return HUGE_VAL;
3562 }
3563 #endif
3564
3565 #ifdef PERL_GLOBAL_STRUCT
3566 struct perl_vars *
3567 Perl_GetVars(pTHX)
3568 {
3569  return &PL_Vars;
3570 }
3571 #endif
3572
3573 char **
3574 Perl_get_op_names(pTHX)
3575 {
3576  return PL_op_name;
3577 }
3578
3579 char **
3580 Perl_get_op_descs(pTHX)
3581 {
3582  return PL_op_desc;
3583 }
3584
3585 char *
3586 Perl_get_no_modify(pTHX)
3587 {
3588  return (char*)PL_no_modify;
3589 }
3590
3591 U32 *
3592 Perl_get_opargs(pTHX)
3593 {
3594  return PL_opargs;
3595 }
3596
3597 PPADDR_t*
3598 Perl_get_ppaddr(pTHX)
3599 {
3600  return &PL_ppaddr;
3601 }
3602
3603 #ifndef HAS_GETENV_LEN
3604 char *
3605 Perl_getenv_len(pTHX_ char *env_elem, unsigned long *len)
3606 {
3607     char *env_trans = PerlEnv_getenv(env_elem);
3608     if (env_trans)
3609         *len = strlen(env_trans);
3610     return env_trans;
3611 }
3612 #endif
3613
3614
3615 MGVTBL*
3616 Perl_get_vtbl(pTHX_ int vtbl_id)
3617 {
3618     MGVTBL* result = Null(MGVTBL*);
3619
3620     switch(vtbl_id) {
3621     case want_vtbl_sv:
3622         result = &PL_vtbl_sv;
3623         break;
3624     case want_vtbl_env:
3625         result = &PL_vtbl_env;
3626         break;
3627     case want_vtbl_envelem:
3628         result = &PL_vtbl_envelem;
3629         break;
3630     case want_vtbl_sig:
3631         result = &PL_vtbl_sig;
3632         break;
3633     case want_vtbl_sigelem:
3634         result = &PL_vtbl_sigelem;
3635         break;
3636     case want_vtbl_pack:
3637         result = &PL_vtbl_pack;
3638         break;
3639     case want_vtbl_packelem:
3640         result = &PL_vtbl_packelem;
3641         break;
3642     case want_vtbl_dbline:
3643         result = &PL_vtbl_dbline;
3644         break;
3645     case want_vtbl_isa:
3646         result = &PL_vtbl_isa;
3647         break;
3648     case want_vtbl_isaelem:
3649         result = &PL_vtbl_isaelem;
3650         break;
3651     case want_vtbl_arylen:
3652         result = &PL_vtbl_arylen;
3653         break;
3654     case want_vtbl_glob:
3655         result = &PL_vtbl_glob;
3656         break;
3657     case want_vtbl_mglob:
3658         result = &PL_vtbl_mglob;
3659         break;
3660     case want_vtbl_nkeys:
3661         result = &PL_vtbl_nkeys;
3662         break;
3663     case want_vtbl_taint:
3664         result = &PL_vtbl_taint;
3665         break;
3666     case want_vtbl_substr:
3667         result = &PL_vtbl_substr;
3668         break;
3669     case want_vtbl_vec:
3670         result = &PL_vtbl_vec;
3671         break;
3672     case want_vtbl_pos:
3673         result = &PL_vtbl_pos;
3674         break;
3675     case want_vtbl_bm:
3676         result = &PL_vtbl_bm;
3677         break;
3678     case want_vtbl_fm:
3679         result = &PL_vtbl_fm;
3680         break;
3681     case want_vtbl_uvar:
3682         result = &PL_vtbl_uvar;
3683         break;
3684 #ifdef USE_THREADS
3685     case want_vtbl_mutex:
3686         result = &PL_vtbl_mutex;
3687         break;
3688 #endif
3689     case want_vtbl_defelem:
3690         result = &PL_vtbl_defelem;
3691         break;
3692     case want_vtbl_regexp:
3693         result = &PL_vtbl_regexp;
3694         break;
3695     case want_vtbl_regdata:
3696         result = &PL_vtbl_regdata;
3697         break;
3698     case want_vtbl_regdatum:
3699         result = &PL_vtbl_regdatum;
3700         break;
3701 #ifdef USE_LOCALE_COLLATE
3702     case want_vtbl_collxfrm:
3703         result = &PL_vtbl_collxfrm;
3704         break;
3705 #endif
3706     case want_vtbl_amagic:
3707         result = &PL_vtbl_amagic;
3708         break;
3709     case want_vtbl_amagicelem:
3710         result = &PL_vtbl_amagicelem;
3711         break;
3712     case want_vtbl_backref:
3713         result = &PL_vtbl_backref;
3714         break;
3715     }
3716     return result;
3717 }
3718
3719 I32
3720 Perl_my_fflush_all(pTHX)
3721 {
3722 #ifdef FFLUSH_NULL
3723     return PerlIO_flush(NULL);
3724 #else
3725     long open_max = -1;
3726 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3727 #  ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3728     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3729 #  else
3730 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3731     open_max = sysconf(_SC_OPEN_MAX);
3732 #  else
3733 #   ifdef FOPEN_MAX
3734     open_max = FOPEN_MAX;
3735 #   else
3736 #    ifdef OPEN_MAX
3737     open_max = OPEN_MAX;
3738 #    else
3739 #     ifdef _NFILE
3740     open_max = _NFILE;
3741 #     endif
3742 #    endif
3743 #   endif
3744 #  endif
3745 #  endif
3746     if (open_max > 0) {
3747       long i;
3748       for (i = 0; i < open_max; i++)
3749             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3750                 STDIO_STREAM_ARRAY[i]._file < open_max &&
3751                 STDIO_STREAM_ARRAY[i]._flag)
3752                 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3753       return 0;
3754     }
3755 # endif
3756     SETERRNO(EBADF,RMS$_IFI);
3757     return EOF;
3758 #endif
3759 }
3760
3761 NV
3762 Perl_my_atof(pTHX_ const char* s)
3763 {
3764 #ifdef USE_LOCALE_NUMERIC
3765     if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3766         NV x, y;
3767
3768         x = Perl_atof(s);
3769         SET_NUMERIC_STANDARD();
3770         y = Perl_atof(s);
3771         SET_NUMERIC_LOCAL();
3772         if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3773             return y;
3774         return x;
3775     }
3776     else
3777         return Perl_atof(s);
3778 #else
3779     return Perl_atof(s);
3780 #endif
3781 }
3782
3783 void
3784 Perl_report_closed_fh(pTHX_ GV *gv, IO *io, const char *func, const char *obj)
3785 {
3786     SV *sv;
3787     char *name;
3788
3789     assert(gv);
3790
3791     sv = sv_newmortal();
3792     gv_efullname3(sv, gv, Nullch);
3793     name = SvPVX(sv);
3794
3795     Perl_warner(aTHX_ WARN_CLOSED, "%s() on closed %s %s", func, obj, name);
3796
3797     if (io && IoDIRP(io))
3798         Perl_warner(aTHX_ WARN_CLOSED,
3799                     "(Are you trying to call %s() on dirhandle %s?)\n",
3800                     func, name);
3801 }