This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
More README.solaris updates from Andy Dougherty.
[perl5.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-2000, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9
10 /*
11  * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12  * not content."  --Gandalf
13  */
14
15 #include "EXTERN.h"
16 #define PERL_IN_UTIL_C
17 #include "perl.h"
18
19 #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     /* Needs work for PerlIO ! */
2488     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2489     PERL_FLUSHALL_FOR_CHILD;
2490     return popen(PerlIO_exportFILE(cmd, 0), mode);
2491 }
2492 #endif
2493
2494 #endif /* !DOSISH */
2495
2496 #ifdef DUMP_FDS
2497 void
2498 Perl_dump_fds(pTHX_ char *s)
2499 {
2500     int fd;
2501     struct stat tmpstatbuf;
2502
2503     PerlIO_printf(Perl_debug_log,"%s", s);
2504     for (fd = 0; fd < 32; fd++) {
2505         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2506             PerlIO_printf(Perl_debug_log," %d",fd);
2507     }
2508     PerlIO_printf(Perl_debug_log,"\n");
2509 }
2510 #endif  /* DUMP_FDS */
2511
2512 #ifndef HAS_DUP2
2513 int
2514 dup2(int oldfd, int newfd)
2515 {
2516 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2517     if (oldfd == newfd)
2518         return oldfd;
2519     PerlLIO_close(newfd);
2520     return fcntl(oldfd, F_DUPFD, newfd);
2521 #else
2522 #define DUP2_MAX_FDS 256
2523     int fdtmp[DUP2_MAX_FDS];
2524     I32 fdx = 0;
2525     int fd;
2526
2527     if (oldfd == newfd)
2528         return oldfd;
2529     PerlLIO_close(newfd);
2530     /* good enough for low fd's... */
2531     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2532         if (fdx >= DUP2_MAX_FDS) {
2533             PerlLIO_close(fd);
2534             fd = -1;
2535             break;
2536         }
2537         fdtmp[fdx++] = fd;
2538     }
2539     while (fdx > 0)
2540         PerlLIO_close(fdtmp[--fdx]);
2541     return fd;
2542 #endif
2543 }
2544 #endif
2545
2546 #ifndef PERL_MICRO
2547 #ifdef HAS_SIGACTION
2548
2549 Sighandler_t
2550 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2551 {
2552     struct sigaction act, oact;
2553
2554     act.sa_handler = handler;
2555     sigemptyset(&act.sa_mask);
2556     act.sa_flags = 0;
2557 #ifdef SA_RESTART
2558     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2559 #endif
2560 #ifdef SA_NOCLDWAIT
2561     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2562         act.sa_flags |= SA_NOCLDWAIT;
2563 #endif
2564     if (sigaction(signo, &act, &oact) == -1)
2565         return SIG_ERR;
2566     else
2567         return oact.sa_handler;
2568 }
2569
2570 Sighandler_t
2571 Perl_rsignal_state(pTHX_ int signo)
2572 {
2573     struct sigaction oact;
2574
2575     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2576         return SIG_ERR;
2577     else
2578         return oact.sa_handler;
2579 }
2580
2581 int
2582 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2583 {
2584     struct sigaction act;
2585
2586     act.sa_handler = handler;
2587     sigemptyset(&act.sa_mask);
2588     act.sa_flags = 0;
2589 #ifdef SA_RESTART
2590     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2591 #endif
2592 #ifdef SA_NOCLDWAIT
2593     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2594         act.sa_flags |= SA_NOCLDWAIT;
2595 #endif
2596     return sigaction(signo, &act, save);
2597 }
2598
2599 int
2600 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2601 {
2602     return sigaction(signo, save, (struct sigaction *)NULL);
2603 }
2604
2605 #else /* !HAS_SIGACTION */
2606
2607 Sighandler_t
2608 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2609 {
2610     return PerlProc_signal(signo, handler);
2611 }
2612
2613 static int sig_trapped;
2614
2615 static
2616 Signal_t
2617 sig_trap(int signo)
2618 {
2619     sig_trapped++;
2620 }
2621
2622 Sighandler_t
2623 Perl_rsignal_state(pTHX_ int signo)
2624 {
2625     Sighandler_t oldsig;
2626
2627     sig_trapped = 0;
2628     oldsig = PerlProc_signal(signo, sig_trap);
2629     PerlProc_signal(signo, oldsig);
2630     if (sig_trapped)
2631         PerlProc_kill(PerlProc_getpid(), signo);
2632     return oldsig;
2633 }
2634
2635 int
2636 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2637 {
2638     *save = PerlProc_signal(signo, handler);
2639     return (*save == SIG_ERR) ? -1 : 0;
2640 }
2641
2642 int
2643 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2644 {
2645     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2646 }
2647
2648 #endif /* !HAS_SIGACTION */
2649 #endif /* !PERL_MICRO */
2650
2651     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2652 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2653 I32
2654 Perl_my_pclose(pTHX_ PerlIO *ptr)
2655 {
2656     Sigsave_t hstat, istat, qstat;
2657     int status;
2658     SV **svp;
2659     Pid_t pid;
2660     Pid_t pid2;
2661     bool close_failed;
2662     int saved_errno;
2663 #ifdef VMS
2664     int saved_vaxc_errno;
2665 #endif
2666 #ifdef WIN32
2667     int saved_win32_errno;
2668 #endif
2669
2670     LOCK_FDPID_MUTEX;
2671     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2672     UNLOCK_FDPID_MUTEX;
2673     pid = SvIVX(*svp);
2674     SvREFCNT_dec(*svp);
2675     *svp = &PL_sv_undef;
2676 #ifdef OS2
2677     if (pid == -1) {                    /* Opened by popen. */
2678         return my_syspclose(ptr);
2679     }
2680 #endif 
2681     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2682         saved_errno = errno;
2683 #ifdef VMS
2684         saved_vaxc_errno = vaxc$errno;
2685 #endif
2686 #ifdef WIN32
2687         saved_win32_errno = GetLastError();
2688 #endif
2689     }
2690 #ifdef UTS
2691     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2692 #endif
2693 #ifndef PERL_MICRO
2694     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2695     rsignal_save(SIGINT, SIG_IGN, &istat);
2696     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2697 #endif
2698     do {
2699         pid2 = wait4pid(pid, &status, 0);
2700     } while (pid2 == -1 && errno == EINTR);
2701 #ifndef PERL_MICRO
2702     rsignal_restore(SIGHUP, &hstat);
2703     rsignal_restore(SIGINT, &istat);
2704     rsignal_restore(SIGQUIT, &qstat);
2705 #endif
2706     if (close_failed) {
2707         SETERRNO(saved_errno, saved_vaxc_errno);
2708         return -1;
2709     }
2710     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2711 }
2712 #endif /* !DOSISH */
2713
2714 #if  (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
2715 I32
2716 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2717 {
2718     SV *sv;
2719     SV** svp;
2720     char spid[TYPE_CHARS(int)];
2721
2722     if (!pid)
2723         return -1;
2724 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2725     if (pid > 0) {
2726         sprintf(spid, "%"IVdf, (IV)pid);
2727         svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2728         if (svp && *svp != &PL_sv_undef) {
2729             *statusp = SvIVX(*svp);
2730             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2731             return pid;
2732         }
2733     }
2734     else {
2735         HE *entry;
2736
2737         hv_iterinit(PL_pidstatus);
2738         if ((entry = hv_iternext(PL_pidstatus))) {
2739             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2740             sv = hv_iterval(PL_pidstatus,entry);
2741             *statusp = SvIVX(sv);
2742             sprintf(spid, "%"IVdf, (IV)pid);
2743             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2744             return pid;
2745         }
2746     }
2747 #endif
2748 #ifdef HAS_WAITPID
2749 #  ifdef HAS_WAITPID_RUNTIME
2750     if (!HAS_WAITPID_RUNTIME)
2751         goto hard_way;
2752 #  endif
2753     return PerlProc_waitpid(pid,statusp,flags);
2754 #endif
2755 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2756     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2757 #endif
2758 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2759   hard_way:
2760     {
2761         I32 result;
2762         if (flags)
2763             Perl_croak(aTHX_ "Can't do waitpid with flags");
2764         else {
2765             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2766                 pidgone(result,*statusp);
2767             if (result < 0)
2768                 *statusp = -1;
2769         }
2770         return result;
2771     }
2772 #endif
2773 }
2774 #endif /* !DOSISH || OS2 || WIN32 */
2775
2776 void
2777 /*SUPPRESS 590*/
2778 Perl_pidgone(pTHX_ Pid_t pid, int status)
2779 {
2780     register SV *sv;
2781     char spid[TYPE_CHARS(int)];
2782
2783     sprintf(spid, "%"IVdf, (IV)pid);
2784     sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2785     (void)SvUPGRADE(sv,SVt_IV);
2786     SvIVX(sv) = status;
2787     return;
2788 }
2789
2790 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2791 int pclose();
2792 #ifdef HAS_FORK
2793 int                                     /* Cannot prototype with I32
2794                                            in os2ish.h. */
2795 my_syspclose(PerlIO *ptr)
2796 #else
2797 I32
2798 Perl_my_pclose(pTHX_ PerlIO *ptr)
2799 #endif 
2800 {
2801     /* Needs work for PerlIO ! */
2802     FILE *f = PerlIO_findFILE(ptr);
2803     I32 result = pclose(f);
2804 #if defined(DJGPP)
2805     result = (result << 8) & 0xff00;
2806 #endif
2807     PerlIO_releaseFILE(ptr,f);
2808     return result;
2809 }
2810 #endif
2811
2812 void
2813 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2814 {
2815     register I32 todo;
2816     register const char *frombase = from;
2817
2818     if (len == 1) {
2819         register const char c = *from;
2820         while (count-- > 0)
2821             *to++ = c;
2822         return;
2823     }
2824     while (count-- > 0) {
2825         for (todo = len; todo > 0; todo--) {
2826             *to++ = *from++;
2827         }
2828         from = frombase;
2829     }
2830 }
2831
2832 U32
2833 Perl_cast_ulong(pTHX_ NV f)
2834 {
2835     long along;
2836
2837 #if CASTFLAGS & 2
2838 #   define BIGDOUBLE 2147483648.0
2839     if (f >= BIGDOUBLE)
2840         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2841 #endif
2842     if (f >= 0.0)
2843         return (unsigned long)f;
2844     along = (long)f;
2845     return (unsigned long)along;
2846 }
2847 # undef BIGDOUBLE
2848
2849 /* Unfortunately, on some systems the cast_uv() function doesn't
2850    work with the system-supplied definition of ULONG_MAX.  The
2851    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2852    problem with the compiler constant folding.
2853
2854    In any case, this workaround should be fine on any two's complement
2855    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2856    ccflags.
2857                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2858 */
2859
2860 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2861    of LONG_(MIN/MAX).
2862                            -- Kenneth Albanowski <kjahds@kjahds.com>
2863 */                                      
2864
2865 #ifndef MY_UV_MAX
2866 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2867 #endif
2868
2869 I32
2870 Perl_cast_i32(pTHX_ NV f)
2871 {
2872     if (f >= I32_MAX)
2873         return (I32) I32_MAX;
2874     if (f <= I32_MIN)
2875         return (I32) I32_MIN;
2876     return (I32) f;
2877 }
2878
2879 IV
2880 Perl_cast_iv(pTHX_ NV f)
2881 {
2882     if (f >= IV_MAX) {
2883         UV uv;
2884         
2885         if (f >= (NV)UV_MAX)
2886             return (IV) UV_MAX; 
2887         uv = (UV) f;
2888         return (IV)uv;
2889     }
2890     if (f <= IV_MIN)
2891         return (IV) IV_MIN;
2892     return (IV) f;
2893 }
2894
2895 UV
2896 Perl_cast_uv(pTHX_ NV f)
2897 {
2898     if (f >= MY_UV_MAX)
2899         return (UV) MY_UV_MAX;
2900     if (f < 0) {
2901         IV iv;
2902         
2903         if (f < IV_MIN)
2904             return (UV)IV_MIN;
2905         iv = (IV) f;
2906         return (UV) iv;
2907     }
2908     return (UV) f;
2909 }
2910
2911 #ifndef HAS_RENAME
2912 I32
2913 Perl_same_dirent(pTHX_ char *a, char *b)
2914 {
2915     char *fa = strrchr(a,'/');
2916     char *fb = strrchr(b,'/');
2917     struct stat tmpstatbuf1;
2918     struct stat tmpstatbuf2;
2919     SV *tmpsv = sv_newmortal();
2920
2921     if (fa)
2922         fa++;
2923     else
2924         fa = a;
2925     if (fb)
2926         fb++;
2927     else
2928         fb = b;
2929     if (strNE(a,b))
2930         return FALSE;
2931     if (fa == a)
2932         sv_setpv(tmpsv, ".");
2933     else
2934         sv_setpvn(tmpsv, a, fa - a);
2935     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2936         return FALSE;
2937     if (fb == b)
2938         sv_setpv(tmpsv, ".");
2939     else
2940         sv_setpvn(tmpsv, b, fb - b);
2941     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2942         return FALSE;
2943     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2944            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2945 }
2946 #endif /* !HAS_RENAME */
2947
2948 NV
2949 Perl_scan_bin(pTHX_ char *start, STRLEN len, STRLEN *retlen)
2950 {
2951     register char *s = start;
2952     register NV rnv = 0.0;
2953     register UV ruv = 0;
2954     register bool seenb = FALSE;
2955     register bool overflowed = FALSE;
2956
2957     for (; len-- && *s; s++) {
2958         if (!(*s == '0' || *s == '1')) {
2959             if (*s == '_' && len && *retlen
2960                 && (s[1] == '0' || s[1] == '1'))
2961             {
2962                 --len;
2963                 ++s;
2964             }
2965             else if (seenb == FALSE && *s == 'b' && ruv == 0) {
2966                 /* Disallow 0bbb0b0bbb... */
2967                 seenb = TRUE;
2968                 continue;
2969             }
2970             else {
2971                 dTHR;
2972                 if (ckWARN(WARN_DIGIT))
2973                     Perl_warner(aTHX_ WARN_DIGIT,
2974                                 "Illegal binary digit '%c' ignored", *s);
2975                 break;
2976             }
2977         }
2978         if (!overflowed) {
2979             register UV xuv = ruv << 1;
2980
2981             if ((xuv >> 1) != ruv) {
2982                 dTHR;
2983                 overflowed = TRUE;
2984                 rnv = (NV) ruv;
2985                 if (ckWARN_d(WARN_OVERFLOW))
2986                     Perl_warner(aTHX_ WARN_OVERFLOW,
2987                                 "Integer overflow in binary number");
2988             }
2989             else
2990                 ruv = xuv | (*s - '0');
2991         }
2992         if (overflowed) {
2993             rnv *= 2;
2994             /* If an NV has not enough bits in its mantissa to
2995              * represent an UV this summing of small low-order numbers
2996              * is a waste of time (because the NV cannot preserve
2997              * the low-order bits anyway): we could just remember when
2998              * did we overflow and in the end just multiply rnv by the
2999              * right amount. */
3000             rnv += (*s - '0');
3001         }
3002     }
3003     if (!overflowed)
3004         rnv = (NV) ruv;
3005     if (   ( overflowed && rnv > 4294967295.0)
3006 #if UVSIZE > 4
3007         || (!overflowed && ruv > 0xffffffff  )
3008 #endif
3009         ) { 
3010         dTHR;
3011         if (ckWARN(WARN_PORTABLE))
3012             Perl_warner(aTHX_ WARN_PORTABLE,
3013                         "Binary number > 0b11111111111111111111111111111111 non-portable");
3014     }
3015     *retlen = s - start;
3016     return rnv;
3017 }
3018
3019 NV
3020 Perl_scan_oct(pTHX_ char *start, STRLEN len, STRLEN *retlen)
3021 {
3022     register char *s = start;
3023     register NV rnv = 0.0;
3024     register UV ruv = 0;
3025     register bool overflowed = FALSE;
3026
3027     for (; len-- && *s; s++) {
3028         if (!(*s >= '0' && *s <= '7')) {
3029             if (*s == '_' && len && *retlen
3030                 && (s[1] >= '0' && s[1] <= '7'))
3031             {
3032                 --len;
3033                 ++s;
3034             }
3035             else {
3036                 /* Allow \octal to work the DWIM way (that is, stop scanning
3037                  * as soon as non-octal characters are seen, complain only iff
3038                  * someone seems to want to use the digits eight and nine). */
3039                 if (*s == '8' || *s == '9') {
3040                     dTHR;
3041                     if (ckWARN(WARN_DIGIT))
3042                         Perl_warner(aTHX_ WARN_DIGIT,
3043                                     "Illegal octal digit '%c' ignored", *s);
3044                 }
3045                 break;
3046             }
3047         }
3048         if (!overflowed) {
3049             register UV xuv = ruv << 3;
3050
3051             if ((xuv >> 3) != ruv) {
3052                 dTHR;
3053                 overflowed = TRUE;
3054                 rnv = (NV) ruv;
3055                 if (ckWARN_d(WARN_OVERFLOW))
3056                     Perl_warner(aTHX_ WARN_OVERFLOW,
3057                                 "Integer overflow in octal number");
3058             }
3059             else
3060                 ruv = xuv | (*s - '0');
3061         }
3062         if (overflowed) {
3063             rnv *= 8.0;
3064             /* If an NV has not enough bits in its mantissa to
3065              * represent an UV this summing of small low-order numbers
3066              * is a waste of time (because the NV cannot preserve
3067              * the low-order bits anyway): we could just remember when
3068              * did we overflow and in the end just multiply rnv by the
3069              * right amount of 8-tuples. */
3070             rnv += (NV)(*s - '0');
3071         }
3072     }
3073     if (!overflowed)
3074         rnv = (NV) ruv;
3075     if (   ( overflowed && rnv > 4294967295.0)
3076 #if UVSIZE > 4
3077         || (!overflowed && ruv > 0xffffffff  )
3078 #endif
3079         ) {
3080         dTHR;
3081         if (ckWARN(WARN_PORTABLE))
3082             Perl_warner(aTHX_ WARN_PORTABLE,
3083                         "Octal number > 037777777777 non-portable");
3084     }
3085     *retlen = s - start;
3086     return rnv;
3087 }
3088
3089 NV
3090 Perl_scan_hex(pTHX_ char *start, STRLEN len, STRLEN *retlen)
3091 {
3092     register char *s = start;
3093     register NV rnv = 0.0;
3094     register UV ruv = 0;
3095     register bool seenx = FALSE;
3096     register bool overflowed = FALSE;
3097     char *hexdigit;
3098
3099     for (; len-- && *s; s++) {
3100         hexdigit = strchr((char *) PL_hexdigit, *s);
3101         if (!hexdigit) {
3102             if (*s == '_' && len && *retlen && s[1]
3103                 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
3104             {
3105                 --len;
3106                 ++s;
3107             }
3108             else if (seenx == FALSE && *s == 'x' && ruv == 0) {
3109                 /* Disallow 0xxx0x0xxx... */
3110                 seenx = TRUE;
3111                 continue;
3112             }
3113             else {
3114                 dTHR;
3115                 if (ckWARN(WARN_DIGIT))
3116                     Perl_warner(aTHX_ WARN_DIGIT,
3117                                 "Illegal hexadecimal digit '%c' ignored", *s);
3118                 break;
3119             }
3120         }
3121         if (!overflowed) {
3122             register UV xuv = ruv << 4;
3123
3124             if ((xuv >> 4) != ruv) {
3125                 dTHR;
3126                 overflowed = TRUE;
3127                 rnv = (NV) ruv;
3128                 if (ckWARN_d(WARN_OVERFLOW))
3129                     Perl_warner(aTHX_ WARN_OVERFLOW,
3130                                 "Integer overflow in hexadecimal number");
3131             }
3132             else
3133                 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
3134         }
3135         if (overflowed) {
3136             rnv *= 16.0;
3137             /* If an NV has not enough bits in its mantissa to
3138              * represent an UV this summing of small low-order numbers
3139              * is a waste of time (because the NV cannot preserve
3140              * the low-order bits anyway): we could just remember when
3141              * did we overflow and in the end just multiply rnv by the
3142              * right amount of 16-tuples. */
3143             rnv += (NV)((hexdigit - PL_hexdigit) & 15);
3144         }
3145     }
3146     if (!overflowed)
3147         rnv = (NV) ruv;
3148     if (   ( overflowed && rnv > 4294967295.0)
3149 #if UVSIZE > 4
3150         || (!overflowed && ruv > 0xffffffff  )
3151 #endif
3152         ) { 
3153         dTHR;
3154         if (ckWARN(WARN_PORTABLE))
3155             Perl_warner(aTHX_ WARN_PORTABLE,
3156                         "Hexadecimal number > 0xffffffff non-portable");
3157     }
3158     *retlen = s - start;
3159     return rnv;
3160 }
3161
3162 char*
3163 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3164 {
3165     dTHR;
3166     char *xfound = Nullch;
3167     char *xfailed = Nullch;
3168     char tmpbuf[MAXPATHLEN];
3169     register char *s;
3170     I32 len;
3171     int retval;
3172 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3173 #  define SEARCH_EXTS ".bat", ".cmd", NULL
3174 #  define MAX_EXT_LEN 4
3175 #endif
3176 #ifdef OS2
3177 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3178 #  define MAX_EXT_LEN 4
3179 #endif
3180 #ifdef VMS
3181 #  define SEARCH_EXTS ".pl", ".com", NULL
3182 #  define MAX_EXT_LEN 4
3183 #endif
3184     /* additional extensions to try in each dir if scriptname not found */
3185 #ifdef SEARCH_EXTS
3186     char *exts[] = { SEARCH_EXTS };
3187     char **ext = search_ext ? search_ext : exts;
3188     int extidx = 0, i = 0;
3189     char *curext = Nullch;
3190 #else
3191 #  define MAX_EXT_LEN 0
3192 #endif
3193
3194     /*
3195      * If dosearch is true and if scriptname does not contain path
3196      * delimiters, search the PATH for scriptname.
3197      *
3198      * If SEARCH_EXTS is also defined, will look for each
3199      * scriptname{SEARCH_EXTS} whenever scriptname is not found
3200      * while searching the PATH.
3201      *
3202      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3203      * proceeds as follows:
3204      *   If DOSISH or VMSISH:
3205      *     + look for ./scriptname{,.foo,.bar}
3206      *     + search the PATH for scriptname{,.foo,.bar}
3207      *
3208      *   If !DOSISH:
3209      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
3210      *       this will not look in '.' if it's not in the PATH)
3211      */
3212     tmpbuf[0] = '\0';
3213
3214 #ifdef VMS
3215 #  ifdef ALWAYS_DEFTYPES
3216     len = strlen(scriptname);
3217     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3218         int hasdir, idx = 0, deftypes = 1;
3219         bool seen_dot = 1;
3220
3221         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3222 #  else
3223     if (dosearch) {
3224         int hasdir, idx = 0, deftypes = 1;
3225         bool seen_dot = 1;
3226
3227         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3228 #  endif
3229         /* The first time through, just add SEARCH_EXTS to whatever we
3230          * already have, so we can check for default file types. */
3231         while (deftypes ||
3232                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3233         {
3234             if (deftypes) {
3235                 deftypes = 0;
3236                 *tmpbuf = '\0';
3237             }
3238             if ((strlen(tmpbuf) + strlen(scriptname)
3239                  + MAX_EXT_LEN) >= sizeof tmpbuf)
3240                 continue;       /* don't search dir with too-long name */
3241             strcat(tmpbuf, scriptname);
3242 #else  /* !VMS */
3243
3244 #ifdef DOSISH
3245     if (strEQ(scriptname, "-"))
3246         dosearch = 0;
3247     if (dosearch) {             /* Look in '.' first. */
3248         char *cur = scriptname;
3249 #ifdef SEARCH_EXTS
3250         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3251             while (ext[i])
3252                 if (strEQ(ext[i++],curext)) {
3253                     extidx = -1;                /* already has an ext */
3254                     break;
3255                 }
3256         do {
3257 #endif
3258             DEBUG_p(PerlIO_printf(Perl_debug_log,
3259                                   "Looking for %s\n",cur));
3260             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3261                 && !S_ISDIR(PL_statbuf.st_mode)) {
3262                 dosearch = 0;
3263                 scriptname = cur;
3264 #ifdef SEARCH_EXTS
3265                 break;
3266 #endif
3267             }
3268 #ifdef SEARCH_EXTS
3269             if (cur == scriptname) {
3270                 len = strlen(scriptname);
3271                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3272                     break;
3273                 cur = strcpy(tmpbuf, scriptname);
3274             }
3275         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
3276                  && strcpy(tmpbuf+len, ext[extidx++]));
3277 #endif
3278     }
3279 #endif
3280
3281 #ifdef MACOS_TRADITIONAL
3282     if (dosearch && !strchr(scriptname, ':') &&
3283         (s = PerlEnv_getenv("Commands")))
3284 #else
3285     if (dosearch && !strchr(scriptname, '/')
3286 #ifdef DOSISH
3287                  && !strchr(scriptname, '\\')
3288 #endif
3289                  && (s = PerlEnv_getenv("PATH")))
3290 #endif
3291     {
3292         bool seen_dot = 0;
3293         
3294         PL_bufend = s + strlen(s);
3295         while (s < PL_bufend) {
3296 #ifdef MACOS_TRADITIONAL
3297             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3298                         ',',
3299                         &len);
3300 #else
3301 #if defined(atarist) || defined(DOSISH)
3302             for (len = 0; *s
3303 #  ifdef atarist
3304                     && *s != ','
3305 #  endif
3306                     && *s != ';'; len++, s++) {
3307                 if (len < sizeof tmpbuf)
3308                     tmpbuf[len] = *s;
3309             }
3310             if (len < sizeof tmpbuf)
3311                 tmpbuf[len] = '\0';
3312 #else  /* ! (atarist || DOSISH) */
3313             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3314                         ':',
3315                         &len);
3316 #endif /* ! (atarist || DOSISH) */
3317 #endif /* MACOS_TRADITIONAL */
3318             if (s < PL_bufend)
3319                 s++;
3320             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3321                 continue;       /* don't search dir with too-long name */
3322 #ifdef MACOS_TRADITIONAL
3323             if (len && tmpbuf[len - 1] != ':')
3324                 tmpbuf[len++] = ':';
3325 #else
3326             if (len
3327 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3328                 && tmpbuf[len - 1] != '/'
3329                 && tmpbuf[len - 1] != '\\'
3330 #endif
3331                )
3332                 tmpbuf[len++] = '/';
3333             if (len == 2 && tmpbuf[0] == '.')
3334                 seen_dot = 1;
3335 #endif
3336             (void)strcpy(tmpbuf + len, scriptname);
3337 #endif  /* !VMS */
3338
3339 #ifdef SEARCH_EXTS
3340             len = strlen(tmpbuf);
3341             if (extidx > 0)     /* reset after previous loop */
3342                 extidx = 0;
3343             do {
3344 #endif
3345                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3346                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3347                 if (S_ISDIR(PL_statbuf.st_mode)) {
3348                     retval = -1;
3349                 }
3350 #ifdef SEARCH_EXTS
3351             } while (  retval < 0               /* not there */
3352                     && extidx>=0 && ext[extidx] /* try an extension? */
3353                     && strcpy(tmpbuf+len, ext[extidx++])
3354                 );
3355 #endif
3356             if (retval < 0)
3357                 continue;
3358             if (S_ISREG(PL_statbuf.st_mode)
3359                 && cando(S_IRUSR,TRUE,&PL_statbuf)
3360 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3361                 && cando(S_IXUSR,TRUE,&PL_statbuf)
3362 #endif
3363                 )
3364             {
3365                 xfound = tmpbuf;              /* bingo! */
3366                 break;
3367             }
3368             if (!xfailed)
3369                 xfailed = savepv(tmpbuf);
3370         }
3371 #ifndef DOSISH
3372         if (!xfound && !seen_dot && !xfailed &&
3373             (PerlLIO_stat(scriptname,&PL_statbuf) < 0 
3374              || S_ISDIR(PL_statbuf.st_mode)))
3375 #endif
3376             seen_dot = 1;                       /* Disable message. */
3377         if (!xfound) {
3378             if (flags & 1) {                    /* do or die? */
3379                 Perl_croak(aTHX_ "Can't %s %s%s%s",
3380                       (xfailed ? "execute" : "find"),
3381                       (xfailed ? xfailed : scriptname),
3382                       (xfailed ? "" : " on PATH"),
3383                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3384             }
3385             scriptname = Nullch;
3386         }
3387         if (xfailed)
3388             Safefree(xfailed);
3389         scriptname = xfound;
3390     }
3391     return (scriptname ? savepv(scriptname) : Nullch);
3392 }
3393
3394 #ifndef PERL_GET_CONTEXT_DEFINED
3395
3396 void *
3397 Perl_get_context(void)
3398 {
3399 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3400 #  ifdef OLD_PTHREADS_API
3401     pthread_addr_t t;
3402     if (pthread_getspecific(PL_thr_key, &t))
3403         Perl_croak_nocontext("panic: pthread_getspecific");
3404     return (void*)t;
3405 #  else
3406 #  ifdef I_MACH_CTHREADS
3407     return (void*)cthread_data(cthread_self());
3408 #  else
3409     return (void*)pthread_getspecific(PL_thr_key);
3410 #  endif
3411 #  endif
3412 #else
3413     return (void*)NULL;
3414 #endif
3415 }
3416
3417 void
3418 Perl_set_context(void *t)
3419 {
3420 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3421 #  ifdef I_MACH_CTHREADS
3422     cthread_set_data(cthread_self(), t);
3423 #  else
3424     if (pthread_setspecific(PL_thr_key, t))
3425         Perl_croak_nocontext("panic: pthread_setspecific");
3426 #  endif
3427 #endif
3428 }
3429
3430 #endif /* !PERL_GET_CONTEXT_DEFINED */
3431
3432 #ifdef USE_THREADS
3433
3434 #ifdef FAKE_THREADS
3435 /* Very simplistic scheduler for now */
3436 void
3437 schedule(void)
3438 {
3439     thr = thr->i.next_run;
3440 }
3441
3442 void
3443 Perl_cond_init(pTHX_ perl_cond *cp)
3444 {
3445     *cp = 0;
3446 }
3447
3448 void
3449 Perl_cond_signal(pTHX_ perl_cond *cp)
3450 {
3451     perl_os_thread t;
3452     perl_cond cond = *cp;
3453     
3454     if (!cond)
3455         return;
3456     t = cond->thread;
3457     /* Insert t in the runnable queue just ahead of us */
3458     t->i.next_run = thr->i.next_run;
3459     thr->i.next_run->i.prev_run = t;
3460     t->i.prev_run = thr;
3461     thr->i.next_run = t;
3462     thr->i.wait_queue = 0;
3463     /* Remove from the wait queue */
3464     *cp = cond->next;
3465     Safefree(cond);
3466 }
3467
3468 void
3469 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3470 {
3471     perl_os_thread t;
3472     perl_cond cond, cond_next;
3473     
3474     for (cond = *cp; cond; cond = cond_next) {
3475         t = cond->thread;
3476         /* Insert t in the runnable queue just ahead of us */
3477         t->i.next_run = thr->i.next_run;
3478         thr->i.next_run->i.prev_run = t;
3479         t->i.prev_run = thr;
3480         thr->i.next_run = t;
3481         thr->i.wait_queue = 0;
3482         /* Remove from the wait queue */
3483         cond_next = cond->next;
3484         Safefree(cond);
3485     }
3486     *cp = 0;
3487 }
3488
3489 void
3490 Perl_cond_wait(pTHX_ perl_cond *cp)
3491 {
3492     perl_cond cond;
3493
3494     if (thr->i.next_run == thr)
3495         Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3496     
3497     New(666, cond, 1, struct perl_wait_queue);
3498     cond->thread = thr;
3499     cond->next = *cp;
3500     *cp = cond;
3501     thr->i.wait_queue = cond;
3502     /* Remove ourselves from runnable queue */
3503     thr->i.next_run->i.prev_run = thr->i.prev_run;
3504     thr->i.prev_run->i.next_run = thr->i.next_run;
3505 }
3506 #endif /* FAKE_THREADS */
3507
3508 MAGIC *
3509 Perl_condpair_magic(pTHX_ SV *sv)
3510 {
3511     MAGIC *mg;
3512     
3513     SvUPGRADE(sv, SVt_PVMG);
3514     mg = mg_find(sv, 'm');
3515     if (!mg) {
3516         condpair_t *cp;
3517
3518         New(53, cp, 1, condpair_t);
3519         MUTEX_INIT(&cp->mutex);
3520         COND_INIT(&cp->owner_cond);
3521         COND_INIT(&cp->cond);
3522         cp->owner = 0;
3523         LOCK_CRED_MUTEX;                /* XXX need separate mutex? */
3524         mg = mg_find(sv, 'm');
3525         if (mg) {
3526             /* someone else beat us to initialising it */
3527             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3528             MUTEX_DESTROY(&cp->mutex);
3529             COND_DESTROY(&cp->owner_cond);
3530             COND_DESTROY(&cp->cond);
3531             Safefree(cp);
3532         }
3533         else {
3534             sv_magic(sv, Nullsv, 'm', 0, 0);
3535             mg = SvMAGIC(sv);
3536             mg->mg_ptr = (char *)cp;
3537             mg->mg_len = sizeof(cp);
3538             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3539             DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
3540                                            "%p: condpair_magic %p\n", thr, sv));)
3541         }
3542     }
3543     return mg;
3544 }
3545
3546 SV *
3547 Perl_sv_lock(pTHX_ SV *osv)
3548 {
3549     MAGIC *mg;
3550     SV *sv = osv;
3551
3552     LOCK_SV_LOCK_MUTEX;
3553     if (SvROK(sv)) {
3554         sv = SvRV(sv);
3555     }
3556
3557     mg = condpair_magic(sv);
3558     MUTEX_LOCK(MgMUTEXP(mg));
3559     if (MgOWNER(mg) == thr)
3560         MUTEX_UNLOCK(MgMUTEXP(mg));
3561     else {
3562         while (MgOWNER(mg))
3563             COND_WAIT(MgOWNERCONDP(mg), MgMUTEXP(mg));
3564         MgOWNER(mg) = thr;
3565         DEBUG_S(PerlIO_printf(Perl_debug_log,
3566                               "0x%"UVxf": Perl_lock lock 0x%"UVxf"\n",
3567                               PTR2UV(thr), PTR2UV(sv));)
3568         MUTEX_UNLOCK(MgMUTEXP(mg));
3569         SAVEDESTRUCTOR_X(Perl_unlock_condpair, sv);
3570     }
3571     UNLOCK_SV_LOCK_MUTEX;
3572     return sv;
3573 }
3574
3575 /*
3576  * Make a new perl thread structure using t as a prototype. Some of the
3577  * fields for the new thread are copied from the prototype thread, t,
3578  * so t should not be running in perl at the time this function is
3579  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3580  * thread calling new_struct_thread) clearly satisfies this constraint.
3581  */
3582 struct perl_thread *
3583 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3584 {
3585 #if !defined(PERL_IMPLICIT_CONTEXT)
3586     struct perl_thread *thr;
3587 #endif
3588     SV *sv;
3589     SV **svp;
3590     I32 i;
3591
3592     sv = newSVpvn("", 0);
3593     SvGROW(sv, sizeof(struct perl_thread) + 1);
3594     SvCUR_set(sv, sizeof(struct perl_thread));
3595     thr = (Thread) SvPVX(sv);
3596 #ifdef DEBUGGING
3597     memset(thr, 0xab, sizeof(struct perl_thread));
3598     PL_markstack = 0;
3599     PL_scopestack = 0;
3600     PL_savestack = 0;
3601     PL_retstack = 0;
3602     PL_dirty = 0;
3603     PL_localizing = 0;
3604     Zero(&PL_hv_fetch_ent_mh, 1, HE);
3605     PL_efloatbuf = (char*)NULL;
3606     PL_efloatsize = 0;
3607 #else
3608     Zero(thr, 1, struct perl_thread);
3609 #endif
3610
3611     thr->oursv = sv;
3612     init_stacks();
3613
3614     PL_curcop = &PL_compiling;
3615     thr->interp = t->interp;
3616     thr->cvcache = newHV();
3617     thr->threadsv = newAV();
3618     thr->specific = newAV();
3619     thr->errsv = newSVpvn("", 0);
3620     thr->flags = THRf_R_JOINABLE;
3621     thr->thr_done = 0;
3622     MUTEX_INIT(&thr->mutex);
3623
3624     JMPENV_BOOTSTRAP;
3625
3626     PL_in_eval = EVAL_NULL;     /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR|EVAL_INREQUIRE) */
3627     PL_restartop = 0;
3628
3629     PL_statname = NEWSV(66,0);
3630     PL_errors = newSVpvn("", 0);
3631     PL_maxscream = -1;
3632     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3633     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3634     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3635     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3636     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3637     PL_regindent = 0;
3638     PL_reginterp_cnt = 0;
3639     PL_lastscream = Nullsv;
3640     PL_screamfirst = 0;
3641     PL_screamnext = 0;
3642     PL_reg_start_tmp = 0;
3643     PL_reg_start_tmpl = 0;
3644     PL_reg_poscache = Nullch;
3645
3646     /* parent thread's data needs to be locked while we make copy */
3647     MUTEX_LOCK(&t->mutex);
3648
3649 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3650     PL_protect = t->Tprotect;
3651 #endif
3652
3653     PL_curcop = t->Tcurcop;       /* XXX As good a guess as any? */
3654     PL_defstash = t->Tdefstash;   /* XXX maybe these should */
3655     PL_curstash = t->Tcurstash;   /* always be set to main? */
3656
3657     PL_tainted = t->Ttainted;
3658     PL_curpm = t->Tcurpm;         /* XXX No PMOP ref count */
3659     PL_nrs = newSVsv(t->Tnrs);
3660     PL_rs = SvREFCNT_inc(PL_nrs);
3661     PL_last_in_gv = Nullgv;
3662     PL_ofslen = t->Tofslen;
3663     PL_ofs = savepvn(t->Tofs, PL_ofslen);
3664     PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3665     PL_chopset = t->Tchopset;
3666     PL_bodytarget = newSVsv(t->Tbodytarget);
3667     PL_toptarget = newSVsv(t->Ttoptarget);
3668     if (t->Tformtarget == t->Ttoptarget)
3669         PL_formtarget = PL_toptarget;
3670     else
3671         PL_formtarget = PL_bodytarget;
3672
3673     /* Initialise all per-thread SVs that the template thread used */
3674     svp = AvARRAY(t->threadsv);
3675     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3676         if (*svp && *svp != &PL_sv_undef) {
3677             SV *sv = newSVsv(*svp);
3678             av_store(thr->threadsv, i, sv);
3679             sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3680             DEBUG_S(PerlIO_printf(Perl_debug_log,
3681                 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3682                                   (IV)i, t, thr));
3683         }
3684     } 
3685     thr->threadsvp = AvARRAY(thr->threadsv);
3686
3687     MUTEX_LOCK(&PL_threads_mutex);
3688     PL_nthreads++;
3689     thr->tid = ++PL_threadnum;
3690     thr->next = t->next;
3691     thr->prev = t;
3692     t->next = thr;
3693     thr->next->prev = thr;
3694     MUTEX_UNLOCK(&PL_threads_mutex);
3695
3696     /* done copying parent's state */
3697     MUTEX_UNLOCK(&t->mutex);
3698
3699 #ifdef HAVE_THREAD_INTERN
3700     Perl_init_thread_intern(thr);
3701 #endif /* HAVE_THREAD_INTERN */
3702     return thr;
3703 }
3704 #endif /* USE_THREADS */
3705
3706 #if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
3707 /*
3708  * This hack is to force load of "huge" support from libm.a
3709  * So it is in perl for (say) POSIX to use. 
3710  * Needed for SunOS with Sun's 'acc' for example.
3711  */
3712 NV 
3713 Perl_huge(void)
3714 {
3715 #   if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3716     return HUGE_VALL;
3717 #   endif
3718     return HUGE_VAL;
3719 }
3720 #endif
3721
3722 #ifdef PERL_GLOBAL_STRUCT
3723 struct perl_vars *
3724 Perl_GetVars(pTHX)
3725 {
3726  return &PL_Vars;
3727 }
3728 #endif
3729
3730 char **
3731 Perl_get_op_names(pTHX)
3732 {
3733  return PL_op_name;
3734 }
3735
3736 char **
3737 Perl_get_op_descs(pTHX)
3738 {
3739  return PL_op_desc;
3740 }
3741
3742 char *
3743 Perl_get_no_modify(pTHX)
3744 {
3745  return (char*)PL_no_modify;
3746 }
3747
3748 U32 *
3749 Perl_get_opargs(pTHX)
3750 {
3751  return PL_opargs;
3752 }
3753
3754 PPADDR_t*
3755 Perl_get_ppaddr(pTHX)
3756 {
3757  return (PPADDR_t*)PL_ppaddr;
3758 }
3759
3760 #ifndef HAS_GETENV_LEN
3761 char *
3762 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3763 {
3764     char *env_trans = PerlEnv_getenv(env_elem);
3765     if (env_trans)
3766         *len = strlen(env_trans);
3767     return env_trans;
3768 }
3769 #endif
3770
3771
3772 MGVTBL*
3773 Perl_get_vtbl(pTHX_ int vtbl_id)
3774 {
3775     MGVTBL* result = Null(MGVTBL*);
3776
3777     switch(vtbl_id) {
3778     case want_vtbl_sv:
3779         result = &PL_vtbl_sv;
3780         break;
3781     case want_vtbl_env:
3782         result = &PL_vtbl_env;
3783         break;
3784     case want_vtbl_envelem:
3785         result = &PL_vtbl_envelem;
3786         break;
3787     case want_vtbl_sig:
3788         result = &PL_vtbl_sig;
3789         break;
3790     case want_vtbl_sigelem:
3791         result = &PL_vtbl_sigelem;
3792         break;
3793     case want_vtbl_pack:
3794         result = &PL_vtbl_pack;
3795         break;
3796     case want_vtbl_packelem:
3797         result = &PL_vtbl_packelem;
3798         break;
3799     case want_vtbl_dbline:
3800         result = &PL_vtbl_dbline;
3801         break;
3802     case want_vtbl_isa:
3803         result = &PL_vtbl_isa;
3804         break;
3805     case want_vtbl_isaelem:
3806         result = &PL_vtbl_isaelem;
3807         break;
3808     case want_vtbl_arylen:
3809         result = &PL_vtbl_arylen;
3810         break;
3811     case want_vtbl_glob:
3812         result = &PL_vtbl_glob;
3813         break;
3814     case want_vtbl_mglob:
3815         result = &PL_vtbl_mglob;
3816         break;
3817     case want_vtbl_nkeys:
3818         result = &PL_vtbl_nkeys;
3819         break;
3820     case want_vtbl_taint:
3821         result = &PL_vtbl_taint;
3822         break;
3823     case want_vtbl_substr:
3824         result = &PL_vtbl_substr;
3825         break;
3826     case want_vtbl_vec:
3827         result = &PL_vtbl_vec;
3828         break;
3829     case want_vtbl_pos:
3830         result = &PL_vtbl_pos;
3831         break;
3832     case want_vtbl_bm:
3833         result = &PL_vtbl_bm;
3834         break;
3835     case want_vtbl_fm:
3836         result = &PL_vtbl_fm;
3837         break;
3838     case want_vtbl_uvar:
3839         result = &PL_vtbl_uvar;
3840         break;
3841 #ifdef USE_THREADS
3842     case want_vtbl_mutex:
3843         result = &PL_vtbl_mutex;
3844         break;
3845 #endif
3846     case want_vtbl_defelem:
3847         result = &PL_vtbl_defelem;
3848         break;
3849     case want_vtbl_regexp:
3850         result = &PL_vtbl_regexp;
3851         break;
3852     case want_vtbl_regdata:
3853         result = &PL_vtbl_regdata;
3854         break;
3855     case want_vtbl_regdatum:
3856         result = &PL_vtbl_regdatum;
3857         break;
3858 #ifdef USE_LOCALE_COLLATE
3859     case want_vtbl_collxfrm:
3860         result = &PL_vtbl_collxfrm;
3861         break;
3862 #endif
3863     case want_vtbl_amagic:
3864         result = &PL_vtbl_amagic;
3865         break;
3866     case want_vtbl_amagicelem:
3867         result = &PL_vtbl_amagicelem;
3868         break;
3869     case want_vtbl_backref:
3870         result = &PL_vtbl_backref;
3871         break;
3872     }
3873     return result;
3874 }
3875
3876 I32
3877 Perl_my_fflush_all(pTHX)
3878 {
3879 #ifdef FFLUSH_NULL
3880     return PerlIO_flush(NULL);
3881 #else
3882     long open_max = -1;
3883 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3884 #  ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3885     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3886 #  else
3887 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3888     open_max = sysconf(_SC_OPEN_MAX);
3889 #  else
3890 #   ifdef FOPEN_MAX
3891     open_max = FOPEN_MAX;
3892 #   else
3893 #    ifdef OPEN_MAX
3894     open_max = OPEN_MAX;
3895 #    else
3896 #     ifdef _NFILE
3897     open_max = _NFILE;
3898 #     endif
3899 #    endif
3900 #   endif
3901 #  endif
3902 #  endif
3903     if (open_max > 0) {
3904       long i;
3905       for (i = 0; i < open_max; i++)
3906             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3907                 STDIO_STREAM_ARRAY[i]._file < open_max &&
3908                 STDIO_STREAM_ARRAY[i]._flag)
3909                 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3910       return 0;
3911     }
3912 # endif
3913     SETERRNO(EBADF,RMS$_IFI);
3914     return EOF;
3915 #endif
3916 }
3917
3918 NV
3919 Perl_my_atof(pTHX_ const char* s)
3920 {
3921     NV x = 0.0;
3922 #ifdef USE_LOCALE_NUMERIC
3923     if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3924         NV y;
3925
3926         Perl_atof2(s, x);
3927         SET_NUMERIC_STANDARD();
3928         Perl_atof2(s, y);
3929         SET_NUMERIC_LOCAL();
3930         if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3931             return y;
3932     }
3933     else
3934         Perl_atof2(s, x);
3935 #else
3936     Perl_atof2(s, x);
3937 #endif
3938     return x;
3939 }
3940
3941 void
3942 Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op)
3943 {
3944     char *vile;
3945     I32   warn_type;
3946     char *func =
3947         op == OP_READLINE   ? "readline"  :     /* "<HANDLE>" not nice */
3948         op == OP_LEAVEWRITE ? "write" :         /* "write exit" not nice */
3949         PL_op_desc[op];
3950     char *pars = OP_IS_FILETEST(op) ? "" : "()";
3951     char *type = OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET) ?
3952                      "socket" : "filehandle";
3953     char *name = NULL;
3954
3955     if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3956         vile = "closed";
3957         warn_type = WARN_CLOSED;
3958     }
3959     else {
3960         vile = "unopened";
3961         warn_type = WARN_UNOPENED;
3962     }
3963
3964     if (gv && isGV(gv)) {
3965         SV *sv = sv_newmortal();
3966         gv_efullname4(sv, gv, Nullch, FALSE);
3967         name = SvPVX(sv);
3968     }
3969
3970     if (name && *name) {
3971         Perl_warner(aTHX_ warn_type,
3972                     "%s%s on %s %s %s", func, pars, vile, type, name);
3973         if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3974             Perl_warner(aTHX_ warn_type,
3975                         "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3976                         func, pars, name);
3977     }
3978     else {
3979         Perl_warner(aTHX_ warn_type,
3980                     "%s%s on %s %s", func, pars, vile, type);
3981         if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3982             Perl_warner(aTHX_ warn_type,
3983                         "\t(Are you trying to call %s%s on dirhandle?)\n",
3984                         func, pars);
3985     }
3986 }