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