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