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