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