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