12c30a04586a63eceb60c63740e835d99a4845c1
[p5sagit/p5-mst-13.2.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-2000, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9
10 /*
11  * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12  * not content."  --Gandalf
13  */
14
15 #include "EXTERN.h"
16 #define PERL_IN_UTIL_C
17 #include "perl.h"
18
19 #ifndef PERL_MICRO
20 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
21 #include <signal.h>
22 #endif
23
24 #ifndef SIG_ERR
25 # define SIG_ERR ((Sighandler_t) -1)
26 #endif
27 #endif
28
29 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
30 #ifdef I_UNISTD
31 #  include <unistd.h>
32 #endif
33
34 #ifdef I_VFORK
35 #  include <vfork.h>
36 #endif
37
38 /* Put this after #includes because fork and vfork prototypes may
39    conflict.
40 */
41 #ifndef HAS_VFORK
42 #   define vfork fork
43 #endif
44
45 #ifdef I_SYS_WAIT
46 #  include <sys/wait.h>
47 #endif
48
49 #ifdef I_LOCALE
50 #  include <locale.h>
51 #endif
52
53 #define FLUSH
54
55 #ifdef LEAKTEST
56
57 long xcount[MAXXCOUNT];
58 long lastxcount[MAXXCOUNT];
59 long xycount[MAXXCOUNT][MAXYCOUNT];
60 long lastxycount[MAXXCOUNT][MAXYCOUNT];
61
62 #endif
63
64 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
65 #  define FD_CLOEXEC 1                  /* NeXT needs this */
66 #endif
67
68 /* paranoid version of system's malloc() */
69
70 /* NOTE:  Do not call the next three routines directly.  Use the macros
71  * in handy.h, so that we can easily redefine everything to do tracking of
72  * allocated hunks back to the original New to track down any memory leaks.
73  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
74  */
75
76 Malloc_t
77 Perl_safesysmalloc(MEM_SIZE size)
78 {
79     dTHX;
80     Malloc_t ptr;
81 #ifdef HAS_64K_LIMIT
82         if (size > 0xffff) {
83             PerlIO_printf(Perl_error_log,
84                           "Allocation too large: %lx\n", size) FLUSH;
85             my_exit(1);
86         }
87 #endif /* HAS_64K_LIMIT */
88 #ifdef DEBUGGING
89     if ((long)size < 0)
90         Perl_croak_nocontext("panic: malloc");
91 #endif
92     ptr = (Malloc_t)PerlMem_malloc(size?size:1);        /* malloc(0) is NASTY on our system */
93     PERL_ALLOC_CHECK(ptr);
94     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
95     if (ptr != Nullch)
96         return ptr;
97     else if (PL_nomemok)
98         return Nullch;
99     else {
100         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
101         my_exit(1);
102         return Nullch;
103     }
104     /*NOTREACHED*/
105 }
106
107 /* paranoid version of system's realloc() */
108
109 Malloc_t
110 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
111 {
112     dTHX;
113     Malloc_t ptr;
114 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
115     Malloc_t PerlMem_realloc();
116 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
117
118 #ifdef HAS_64K_LIMIT 
119     if (size > 0xffff) {
120         PerlIO_printf(Perl_error_log,
121                       "Reallocation too large: %lx\n", size) FLUSH;
122         my_exit(1);
123     }
124 #endif /* HAS_64K_LIMIT */
125     if (!size) {
126         safesysfree(where);
127         return NULL;
128     }
129
130     if (!where)
131         return safesysmalloc(size);
132 #ifdef DEBUGGING
133     if ((long)size < 0)
134         Perl_croak_nocontext("panic: realloc");
135 #endif
136     ptr = (Malloc_t)PerlMem_realloc(where,size);
137     PERL_ALLOC_CHECK(ptr);
138  
139     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
140     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
141
142     if (ptr != Nullch)
143         return ptr;
144     else if (PL_nomemok)
145         return Nullch;
146     else {
147         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
148         my_exit(1);
149         return Nullch;
150     }
151     /*NOTREACHED*/
152 }
153
154 /* safe version of system's free() */
155
156 Free_t
157 Perl_safesysfree(Malloc_t where)
158 {
159 #ifdef PERL_IMPLICIT_SYS
160     dTHX;
161 #endif
162     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
163     if (where) {
164         /*SUPPRESS 701*/
165         PerlMem_free(where);
166     }
167 }
168
169 /* safe version of system's calloc() */
170
171 Malloc_t
172 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
173 {
174     dTHX;
175     Malloc_t ptr;
176
177 #ifdef HAS_64K_LIMIT
178     if (size * count > 0xffff) {
179         PerlIO_printf(Perl_error_log,
180                       "Allocation too large: %lx\n", size * count) FLUSH;
181         my_exit(1);
182     }
183 #endif /* HAS_64K_LIMIT */
184 #ifdef DEBUGGING
185     if ((long)size < 0 || (long)count < 0)
186         Perl_croak_nocontext("panic: calloc");
187 #endif
188     size *= count;
189     ptr = (Malloc_t)PerlMem_malloc(size?size:1);        /* malloc(0) is NASTY on our system */
190     PERL_ALLOC_CHECK(ptr);
191     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)size));
192     if (ptr != Nullch) {
193         memset((void*)ptr, 0, size);
194         return ptr;
195     }
196     else if (PL_nomemok)
197         return Nullch;
198     else {
199         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
200         my_exit(1);
201         return Nullch;
202     }
203     /*NOTREACHED*/
204 }
205
206 #ifdef LEAKTEST
207
208 struct mem_test_strut {
209     union {
210         long type;
211         char c[2];
212     } u;
213     long size;
214 };
215
216 #    define ALIGN sizeof(struct mem_test_strut)
217
218 #    define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
219 #    define typeof_chunk(ch) \
220         (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
221 #    define set_typeof_chunk(ch,t) \
222         (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
223 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE                            \
224                           ? MAXYCOUNT - 1                               \
225                           : ( (size) > 40                               \
226                               ? ((size) - 1)/8 + 5                      \
227                               : ((size) - 1)/4))
228
229 Malloc_t
230 Perl_safexmalloc(I32 x, MEM_SIZE size)
231 {
232     register char* where = (char*)safemalloc(size + ALIGN);
233
234     xcount[x] += size;
235     xycount[x][SIZE_TO_Y(size)]++;
236     set_typeof_chunk(where, x);
237     sizeof_chunk(where) = size;
238     return (Malloc_t)(where + ALIGN);
239 }
240
241 Malloc_t
242 Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
243 {
244     char *where = (char*)wh;
245
246     if (!wh)
247         return safexmalloc(0,size);
248     
249     {
250         MEM_SIZE old = sizeof_chunk(where - ALIGN);
251         int t = typeof_chunk(where - ALIGN);
252         register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
253     
254         xycount[t][SIZE_TO_Y(old)]--;
255         xycount[t][SIZE_TO_Y(size)]++;
256         xcount[t] += size - old;
257         sizeof_chunk(new) = size;
258         return (Malloc_t)(new + ALIGN);
259     }
260 }
261
262 void
263 Perl_safexfree(Malloc_t wh)
264 {
265     I32 x;
266     char *where = (char*)wh;
267     MEM_SIZE size;
268     
269     if (!where)
270         return;
271     where -= ALIGN;
272     size = sizeof_chunk(where);
273     x = where[0] + 100 * where[1];
274     xcount[x] -= size;
275     xycount[x][SIZE_TO_Y(size)]--;
276     safefree(where);
277 }
278
279 Malloc_t
280 Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
281 {
282     register char * where = (char*)safexmalloc(x, size * count + ALIGN);
283     xcount[x] += size;
284     xycount[x][SIZE_TO_Y(size)]++;
285     memset((void*)(where + ALIGN), 0, size * count);
286     set_typeof_chunk(where, x);
287     sizeof_chunk(where) = size;
288     return (Malloc_t)(where + ALIGN);
289 }
290
291 STATIC void
292 S_xstat(pTHX_ int flag)
293 {
294     register I32 i, j, total = 0;
295     I32 subtot[MAXYCOUNT];
296
297     for (j = 0; j < MAXYCOUNT; j++) {
298         subtot[j] = 0;
299     }
300     
301     PerlIO_printf(Perl_debug_log, "   Id  subtot   4   8  12  16  20  24  28  32  36  40  48  56  64  72  80 80+\n", total);
302     for (i = 0; i < MAXXCOUNT; i++) {
303         total += xcount[i];
304         for (j = 0; j < MAXYCOUNT; j++) {
305             subtot[j] += xycount[i][j];
306         }
307         if (flag == 0
308             ? xcount[i]                 /* Have something */
309             : (flag == 2 
310                ? xcount[i] != lastxcount[i] /* Changed */
311                : xcount[i] > lastxcount[i])) { /* Growed */
312             PerlIO_printf(Perl_debug_log,"%2d %02d %7ld ", i / 100, i % 100, 
313                           flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
314             lastxcount[i] = xcount[i];
315             for (j = 0; j < MAXYCOUNT; j++) {
316                 if ( flag == 0 
317                      ? xycount[i][j]    /* Have something */
318                      : (flag == 2 
319                         ? xycount[i][j] != lastxycount[i][j] /* Changed */
320                         : xycount[i][j] > lastxycount[i][j])) { /* Growed */
321                     PerlIO_printf(Perl_debug_log,"%3ld ", 
322                                   flag == 2 
323                                   ? xycount[i][j] - lastxycount[i][j] 
324                                   : xycount[i][j]);
325                     lastxycount[i][j] = xycount[i][j];
326                 } else {
327                     PerlIO_printf(Perl_debug_log, "  . ", xycount[i][j]);
328                 }
329             }
330             PerlIO_printf(Perl_debug_log, "\n");
331         }
332     }
333     if (flag != 2) {
334         PerlIO_printf(Perl_debug_log, "Total %7ld ", total);
335         for (j = 0; j < MAXYCOUNT; j++) {
336             if (subtot[j]) {
337                 PerlIO_printf(Perl_debug_log, "%3ld ", subtot[j]);
338             } else {
339                 PerlIO_printf(Perl_debug_log, "  . ");
340             }
341         }
342         PerlIO_printf(Perl_debug_log, "\n");    
343     }
344 }
345
346 #endif /* LEAKTEST */
347
348 /* copy a string up to some (non-backslashed) delimiter, if any */
349
350 char *
351 Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
352 {
353     register I32 tolen;
354     for (tolen = 0; from < fromend; from++, tolen++) {
355         if (*from == '\\') {
356             if (from[1] == delim)
357                 from++;
358             else {
359                 if (to < toend)
360                     *to++ = *from;
361                 tolen++;
362                 from++;
363             }
364         }
365         else if (*from == delim)
366             break;
367         if (to < toend)
368             *to++ = *from;
369     }
370     if (to < toend)
371         *to = '\0';
372     *retlen = tolen;
373     return from;
374 }
375
376 /* return ptr to little string in big string, NULL if not found */
377 /* This routine was donated by Corey Satten. */
378
379 char *
380 Perl_instr(pTHX_ register const char *big, register const char *little)
381 {
382     register const char *s, *x;
383     register I32 first;
384
385     if (!little)
386         return (char*)big;
387     first = *little++;
388     if (!first)
389         return (char*)big;
390     while (*big) {
391         if (*big++ != first)
392             continue;
393         for (x=big,s=little; *s; /**/ ) {
394             if (!*x)
395                 return Nullch;
396             if (*s++ != *x++) {
397                 s--;
398                 break;
399             }
400         }
401         if (!*s)
402             return (char*)(big-1);
403     }
404     return Nullch;
405 }
406
407 /* same as instr but allow embedded nulls */
408
409 char *
410 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
411 {
412     register const char *s, *x;
413     register I32 first = *little;
414     register const char *littleend = lend;
415
416     if (!first && little >= littleend)
417         return (char*)big;
418     if (bigend - big < littleend - little)
419         return Nullch;
420     bigend -= littleend - little++;
421     while (big <= bigend) {
422         if (*big++ != first)
423             continue;
424         for (x=big,s=little; s < littleend; /**/ ) {
425             if (*s++ != *x++) {
426                 s--;
427                 break;
428             }
429         }
430         if (s >= littleend)
431             return (char*)(big-1);
432     }
433     return Nullch;
434 }
435
436 /* reverse of the above--find last substring */
437
438 char *
439 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
440 {
441     register const char *bigbeg;
442     register const char *s, *x;
443     register I32 first = *little;
444     register const char *littleend = lend;
445
446     if (!first && little >= littleend)
447         return (char*)bigend;
448     bigbeg = big;
449     big = bigend - (littleend - little++);
450     while (big >= bigbeg) {
451         if (*big-- != first)
452             continue;
453         for (x=big+2,s=little; s < littleend; /**/ ) {
454             if (*s++ != *x++) {
455                 s--;
456                 break;
457             }
458         }
459         if (s >= littleend)
460             return (char*)(big+1);
461     }
462     return Nullch;
463 }
464
465 /*
466  * Set up for a new ctype locale.
467  */
468 void
469 Perl_new_ctype(pTHX_ 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 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
1938 #if !defined(WIN32) && !defined(__CYGWIN__)
1939 void
1940 Perl_my_setenv(pTHX_ char *nam, char *val)
1941 {
1942 #ifndef PERL_USE_SAFE_PUTENV
1943     /* most putenv()s leak, so we manipulate environ directly */
1944     register I32 i=setenv_getix(nam);           /* where does it go? */
1945
1946     if (environ == PL_origenviron) {    /* need we copy environment? */
1947         I32 j;
1948         I32 max;
1949         char **tmpenv;
1950
1951         /*SUPPRESS 530*/
1952         for (max = i; environ[max]; max++) ;
1953         tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1954         for (j=0; j<max; j++) {         /* copy environment */
1955             tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1956             strcpy(tmpenv[j], environ[j]);
1957         }
1958         tmpenv[max] = Nullch;
1959         environ = tmpenv;               /* tell exec where it is now */
1960     }
1961     if (!val) {
1962         safesysfree(environ[i]);
1963         while (environ[i]) {
1964             environ[i] = environ[i+1];
1965             i++;
1966         }
1967         return;
1968     }
1969     if (!environ[i]) {                  /* does not exist yet */
1970         environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1971         environ[i+1] = Nullch;  /* make sure it's null terminated */
1972     }
1973     else
1974         safesysfree(environ[i]);
1975     environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1976
1977     (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1978
1979 #else   /* PERL_USE_SAFE_PUTENV */
1980     char *new_env;
1981
1982     new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1983     (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1984     (void)putenv(new_env);
1985 #endif  /* PERL_USE_SAFE_PUTENV */
1986 }
1987
1988 #else /* WIN32 || __CYGWIN__ */
1989 #if defined(__CYGWIN__)
1990 /*
1991  * Save environ of perl.exe, currently Cygwin links in separate environ's
1992  * for each exe/dll.  Probably should be a member of impure_ptr.
1993  */
1994 static char ***Perl_main_environ;
1995
1996 EXTERN_C void
1997 Perl_my_setenv_init(char ***penviron)
1998 {
1999     Perl_main_environ = penviron;
2000 }
2001
2002 void
2003 Perl_my_setenv(pTHX_ char *nam, char *val)
2004 {
2005     /* You can not directly manipulate the environ[] array because
2006      * the routines do some additional work that syncs the Cygwin
2007      * environment with the Windows environment.
2008      */
2009     char *oldstr = environ[setenv_getix(nam)];
2010
2011     if (!val) {
2012        if (!oldstr)
2013            return;
2014        unsetenv(nam);
2015        safesysfree(oldstr);
2016        return;
2017     }
2018     setenv(nam, val, 1);
2019     environ = *Perl_main_environ; /* environ realloc can occur in setenv */
2020     if(oldstr && environ[setenv_getix(nam)] != oldstr)
2021        safesysfree(oldstr);
2022 }
2023 #else /* if WIN32 */
2024
2025 void
2026 Perl_my_setenv(pTHX_ char *nam,char *val)
2027 {
2028
2029 #ifdef USE_WIN32_RTL_ENV
2030
2031     register char *envstr;
2032     STRLEN namlen = strlen(nam);
2033     STRLEN vallen;
2034     char *oldstr = environ[setenv_getix(nam)];
2035
2036     /* putenv() has totally broken semantics in both the Borland
2037      * and Microsoft CRTLs.  They either store the passed pointer in
2038      * the environment without making a copy, or make a copy and don't
2039      * free it. And on top of that, they dont free() old entries that
2040      * are being replaced/deleted.  This means the caller must
2041      * free any old entries somehow, or we end up with a memory
2042      * leak every time my_setenv() is called.  One might think
2043      * one could directly manipulate environ[], like the UNIX code
2044      * above, but direct changes to environ are not allowed when
2045      * calling putenv(), since the RTLs maintain an internal
2046      * *copy* of environ[]. Bad, bad, *bad* stink.
2047      * GSAR 97-06-07
2048      */
2049
2050     if (!val) {
2051         if (!oldstr)
2052             return;
2053         val = "";
2054         vallen = 0;
2055     }
2056     else
2057         vallen = strlen(val);
2058     envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
2059     (void)sprintf(envstr,"%s=%s",nam,val);
2060     (void)PerlEnv_putenv(envstr);
2061     if (oldstr)
2062         safesysfree(oldstr);
2063 #ifdef _MSC_VER
2064     safesysfree(envstr);        /* MSVCRT leaks without this */
2065 #endif
2066
2067 #else /* !USE_WIN32_RTL_ENV */
2068
2069     register char *envstr;
2070     STRLEN len = strlen(nam) + 3;
2071     if (!val) {
2072         val = "";
2073     }
2074     len += strlen(val);
2075     New(904, envstr, len, char);
2076     (void)sprintf(envstr,"%s=%s",nam,val);
2077     (void)PerlEnv_putenv(envstr);
2078     Safefree(envstr);
2079
2080 #endif
2081 }
2082
2083 #endif /* WIN32 */
2084 #endif
2085
2086 I32
2087 Perl_setenv_getix(pTHX_ char *nam)
2088 {
2089     register I32 i, len = strlen(nam);
2090
2091     for (i = 0; environ[i]; i++) {
2092         if (
2093 #ifdef WIN32
2094             strnicmp(environ[i],nam,len) == 0
2095 #else
2096             strnEQ(environ[i],nam,len)
2097 #endif
2098             && environ[i][len] == '=')
2099             break;                      /* strnEQ must come first to avoid */
2100     }                                   /* potential SEGV's */
2101     return i;
2102 }
2103
2104 #endif /* !VMS */
2105
2106 #ifdef UNLINK_ALL_VERSIONS
2107 I32
2108 Perl_unlnk(pTHX_ char *f)       /* unlink all versions of a file */
2109 {
2110     I32 i;
2111
2112     for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
2113     return i ? 0 : -1;
2114 }
2115 #endif
2116
2117 /* this is a drop-in replacement for bcopy() */
2118 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
2119 char *
2120 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
2121 {
2122     char *retval = to;
2123
2124     if (from - to >= 0) {
2125         while (len--)
2126             *to++ = *from++;
2127     }
2128     else {
2129         to += len;
2130         from += len;
2131         while (len--)
2132             *(--to) = *(--from);
2133     }
2134     return retval;
2135 }
2136 #endif
2137
2138 /* this is a drop-in replacement for memset() */
2139 #ifndef HAS_MEMSET
2140 void *
2141 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
2142 {
2143     char *retval = loc;
2144
2145     while (len--)
2146         *loc++ = ch;
2147     return retval;
2148 }
2149 #endif
2150
2151 /* this is a drop-in replacement for bzero() */
2152 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2153 char *
2154 Perl_my_bzero(register char *loc, register I32 len)
2155 {
2156     char *retval = loc;
2157
2158     while (len--)
2159         *loc++ = 0;
2160     return retval;
2161 }
2162 #endif
2163
2164 /* this is a drop-in replacement for memcmp() */
2165 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2166 I32
2167 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
2168 {
2169     register U8 *a = (U8 *)s1;
2170     register U8 *b = (U8 *)s2;
2171     register I32 tmp;
2172
2173     while (len--) {
2174         if (tmp = *a++ - *b++)
2175             return tmp;
2176     }
2177     return 0;
2178 }
2179 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2180
2181 #ifndef HAS_VPRINTF
2182
2183 #ifdef USE_CHAR_VSPRINTF
2184 char *
2185 #else
2186 int
2187 #endif
2188 vsprintf(char *dest, const char *pat, char *args)
2189 {
2190     FILE fakebuf;
2191
2192     fakebuf._ptr = dest;
2193     fakebuf._cnt = 32767;
2194 #ifndef _IOSTRG
2195 #define _IOSTRG 0
2196 #endif
2197     fakebuf._flag = _IOWRT|_IOSTRG;
2198     _doprnt(pat, args, &fakebuf);       /* what a kludge */
2199     (void)putc('\0', &fakebuf);
2200 #ifdef USE_CHAR_VSPRINTF
2201     return(dest);
2202 #else
2203     return 0;           /* perl doesn't use return value */
2204 #endif
2205 }
2206
2207 #endif /* HAS_VPRINTF */
2208
2209 #ifdef MYSWAP
2210 #if BYTEORDER != 0x4321
2211 short
2212 Perl_my_swap(pTHX_ short s)
2213 {
2214 #if (BYTEORDER & 1) == 0
2215     short result;
2216
2217     result = ((s & 255) << 8) + ((s >> 8) & 255);
2218     return result;
2219 #else
2220     return s;
2221 #endif
2222 }
2223
2224 long
2225 Perl_my_htonl(pTHX_ long l)
2226 {
2227     union {
2228         long result;
2229         char c[sizeof(long)];
2230     } u;
2231
2232 #if BYTEORDER == 0x1234
2233     u.c[0] = (l >> 24) & 255;
2234     u.c[1] = (l >> 16) & 255;
2235     u.c[2] = (l >> 8) & 255;
2236     u.c[3] = l & 255;
2237     return u.result;
2238 #else
2239 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2240     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2241 #else
2242     register I32 o;
2243     register I32 s;
2244
2245     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2246         u.c[o & 0xf] = (l >> s) & 255;
2247     }
2248     return u.result;
2249 #endif
2250 #endif
2251 }
2252
2253 long
2254 Perl_my_ntohl(pTHX_ long l)
2255 {
2256     union {
2257         long l;
2258         char c[sizeof(long)];
2259     } u;
2260
2261 #if BYTEORDER == 0x1234
2262     u.c[0] = (l >> 24) & 255;
2263     u.c[1] = (l >> 16) & 255;
2264     u.c[2] = (l >> 8) & 255;
2265     u.c[3] = l & 255;
2266     return u.l;
2267 #else
2268 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2269     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2270 #else
2271     register I32 o;
2272     register I32 s;
2273
2274     u.l = l;
2275     l = 0;
2276     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2277         l |= (u.c[o & 0xf] & 255) << s;
2278     }
2279     return l;
2280 #endif
2281 #endif
2282 }
2283
2284 #endif /* BYTEORDER != 0x4321 */
2285 #endif /* MYSWAP */
2286
2287 /*
2288  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2289  * If these functions are defined,
2290  * the BYTEORDER is neither 0x1234 nor 0x4321.
2291  * However, this is not assumed.
2292  * -DWS
2293  */
2294
2295 #define HTOV(name,type)                                         \
2296         type                                                    \
2297         name (register type n)                                  \
2298         {                                                       \
2299             union {                                             \
2300                 type value;                                     \
2301                 char c[sizeof(type)];                           \
2302             } u;                                                \
2303             register I32 i;                                     \
2304             register I32 s;                                     \
2305             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
2306                 u.c[i] = (n >> s) & 0xFF;                       \
2307             }                                                   \
2308             return u.value;                                     \
2309         }
2310
2311 #define VTOH(name,type)                                         \
2312         type                                                    \
2313         name (register type n)                                  \
2314         {                                                       \
2315             union {                                             \
2316                 type value;                                     \
2317                 char c[sizeof(type)];                           \
2318             } u;                                                \
2319             register I32 i;                                     \
2320             register I32 s;                                     \
2321             u.value = n;                                        \
2322             n = 0;                                              \
2323             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
2324                 n += (u.c[i] & 0xFF) << s;                      \
2325             }                                                   \
2326             return n;                                           \
2327         }
2328
2329 #if defined(HAS_HTOVS) && !defined(htovs)
2330 HTOV(htovs,short)
2331 #endif
2332 #if defined(HAS_HTOVL) && !defined(htovl)
2333 HTOV(htovl,long)
2334 #endif
2335 #if defined(HAS_VTOHS) && !defined(vtohs)
2336 VTOH(vtohs,short)
2337 #endif
2338 #if defined(HAS_VTOHL) && !defined(vtohl)
2339 VTOH(vtohl,long)
2340 #endif
2341
2342     /* VMS' my_popen() is in VMS.c, same with OS/2. */
2343 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2344 PerlIO *
2345 Perl_my_popen(pTHX_ char *cmd, char *mode)
2346 {
2347     int p[2];
2348     register I32 This, that;
2349     register Pid_t pid;
2350     SV *sv;
2351     I32 doexec = strNE(cmd,"-");
2352     I32 did_pipes = 0;
2353     int pp[2];
2354
2355     PERL_FLUSHALL_FOR_CHILD;
2356 #ifdef OS2
2357     if (doexec) {
2358         return my_syspopen(aTHX_ cmd,mode);
2359     }
2360 #endif 
2361     This = (*mode == 'w');
2362     that = !This;
2363     if (doexec && PL_tainting) {
2364         taint_env();
2365         taint_proper("Insecure %s%s", "EXEC");
2366     }
2367     if (PerlProc_pipe(p) < 0)
2368         return Nullfp;
2369     if (doexec && PerlProc_pipe(pp) >= 0)
2370         did_pipes = 1;
2371     while ((pid = (doexec?vfork():fork())) < 0) {
2372         if (errno != EAGAIN) {
2373             PerlLIO_close(p[This]);
2374             if (did_pipes) {
2375                 PerlLIO_close(pp[0]);
2376                 PerlLIO_close(pp[1]);
2377             }
2378             if (!doexec)
2379                 Perl_croak(aTHX_ "Can't fork");
2380             return Nullfp;
2381         }
2382         sleep(5);
2383     }
2384     if (pid == 0) {
2385         GV* tmpgv;
2386
2387 #undef THIS
2388 #undef THAT
2389 #define THIS that
2390 #define THAT This
2391         PerlLIO_close(p[THAT]);
2392         if (did_pipes) {
2393             PerlLIO_close(pp[0]);
2394 #if defined(HAS_FCNTL) && defined(F_SETFD)
2395             fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2396 #endif
2397         }
2398         if (p[THIS] != (*mode == 'r')) {
2399             PerlLIO_dup2(p[THIS], *mode == 'r');
2400             PerlLIO_close(p[THIS]);
2401         }
2402 #ifndef OS2
2403         if (doexec) {
2404 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2405             int fd;
2406
2407 #ifndef NOFILE
2408 #define NOFILE 20
2409 #endif
2410             for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2411                 if (fd != pp[1])
2412                     PerlLIO_close(fd);
2413 #endif
2414             do_exec3(cmd,pp[1],did_pipes);      /* may or may not use the shell */
2415             PerlProc__exit(1);
2416         }
2417 #endif  /* defined OS2 */
2418         /*SUPPRESS 560*/
2419         if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
2420             sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2421         PL_forkprocess = 0;
2422         hv_clear(PL_pidstatus); /* we have no children */
2423         return Nullfp;
2424 #undef THIS
2425 #undef THAT
2426     }
2427     do_execfree();      /* free any memory malloced by child on vfork */
2428     PerlLIO_close(p[that]);
2429     if (did_pipes)
2430         PerlLIO_close(pp[1]);
2431     if (p[that] < p[This]) {
2432         PerlLIO_dup2(p[This], p[that]);
2433         PerlLIO_close(p[This]);
2434         p[This] = p[that];
2435     }
2436     LOCK_FDPID_MUTEX;
2437     sv = *av_fetch(PL_fdpid,p[This],TRUE);
2438     UNLOCK_FDPID_MUTEX;
2439     (void)SvUPGRADE(sv,SVt_IV);
2440     SvIVX(sv) = pid;
2441     PL_forkprocess = pid;
2442     if (did_pipes && pid > 0) {
2443         int errkid;
2444         int n = 0, n1;
2445
2446         while (n < sizeof(int)) {
2447             n1 = PerlLIO_read(pp[0],
2448                               (void*)(((char*)&errkid)+n),
2449                               (sizeof(int)) - n);
2450             if (n1 <= 0)
2451                 break;
2452             n += n1;
2453         }
2454         PerlLIO_close(pp[0]);
2455         did_pipes = 0;
2456         if (n) {                        /* Error */
2457             if (n != sizeof(int))
2458                 Perl_croak(aTHX_ "panic: kid popen errno read");
2459             errno = errkid;             /* Propagate errno from kid */
2460             return Nullfp;
2461         }
2462     }
2463     if (did_pipes)
2464          PerlLIO_close(pp[0]);
2465     return PerlIO_fdopen(p[This], mode);
2466 }
2467 #else
2468 #if defined(atarist) || defined(DJGPP)
2469 FILE *popen();
2470 PerlIO *
2471 Perl_my_popen(pTHX_ char *cmd, char *mode)
2472 {
2473     /* Needs work for PerlIO ! */
2474     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2475     PERL_FLUSHALL_FOR_CHILD;
2476     return popen(PerlIO_exportFILE(cmd, 0), mode);
2477 }
2478 #endif
2479
2480 #endif /* !DOSISH */
2481
2482 #ifdef DUMP_FDS
2483 void
2484 Perl_dump_fds(pTHX_ char *s)
2485 {
2486     int fd;
2487     struct stat tmpstatbuf;
2488
2489     PerlIO_printf(Perl_debug_log,"%s", s);
2490     for (fd = 0; fd < 32; fd++) {
2491         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2492             PerlIO_printf(Perl_debug_log," %d",fd);
2493     }
2494     PerlIO_printf(Perl_debug_log,"\n");
2495 }
2496 #endif  /* DUMP_FDS */
2497
2498 #ifndef HAS_DUP2
2499 int
2500 dup2(int oldfd, int newfd)
2501 {
2502 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2503     if (oldfd == newfd)
2504         return oldfd;
2505     PerlLIO_close(newfd);
2506     return fcntl(oldfd, F_DUPFD, newfd);
2507 #else
2508 #define DUP2_MAX_FDS 256
2509     int fdtmp[DUP2_MAX_FDS];
2510     I32 fdx = 0;
2511     int fd;
2512
2513     if (oldfd == newfd)
2514         return oldfd;
2515     PerlLIO_close(newfd);
2516     /* good enough for low fd's... */
2517     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2518         if (fdx >= DUP2_MAX_FDS) {
2519             PerlLIO_close(fd);
2520             fd = -1;
2521             break;
2522         }
2523         fdtmp[fdx++] = fd;
2524     }
2525     while (fdx > 0)
2526         PerlLIO_close(fdtmp[--fdx]);
2527     return fd;
2528 #endif
2529 }
2530 #endif
2531
2532 #ifndef PERL_MICRO
2533 #ifdef HAS_SIGACTION
2534
2535 Sighandler_t
2536 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2537 {
2538     struct sigaction act, oact;
2539
2540     act.sa_handler = handler;
2541     sigemptyset(&act.sa_mask);
2542     act.sa_flags = 0;
2543 #ifdef SA_RESTART
2544     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2545 #endif
2546 #ifdef SA_NOCLDWAIT
2547     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2548         act.sa_flags |= SA_NOCLDWAIT;
2549 #endif
2550     if (sigaction(signo, &act, &oact) == -1)
2551         return SIG_ERR;
2552     else
2553         return oact.sa_handler;
2554 }
2555
2556 Sighandler_t
2557 Perl_rsignal_state(pTHX_ int signo)
2558 {
2559     struct sigaction oact;
2560
2561     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2562         return SIG_ERR;
2563     else
2564         return oact.sa_handler;
2565 }
2566
2567 int
2568 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2569 {
2570     struct sigaction act;
2571
2572     act.sa_handler = handler;
2573     sigemptyset(&act.sa_mask);
2574     act.sa_flags = 0;
2575 #ifdef SA_RESTART
2576     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2577 #endif
2578 #ifdef SA_NOCLDWAIT
2579     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2580         act.sa_flags |= SA_NOCLDWAIT;
2581 #endif
2582     return sigaction(signo, &act, save);
2583 }
2584
2585 int
2586 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2587 {
2588     return sigaction(signo, save, (struct sigaction *)NULL);
2589 }
2590
2591 #else /* !HAS_SIGACTION */
2592
2593 Sighandler_t
2594 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2595 {
2596     return PerlProc_signal(signo, handler);
2597 }
2598
2599 static int sig_trapped;
2600
2601 static
2602 Signal_t
2603 sig_trap(int signo)
2604 {
2605     sig_trapped++;
2606 }
2607
2608 Sighandler_t
2609 Perl_rsignal_state(pTHX_ int signo)
2610 {
2611     Sighandler_t oldsig;
2612
2613     sig_trapped = 0;
2614     oldsig = PerlProc_signal(signo, sig_trap);
2615     PerlProc_signal(signo, oldsig);
2616     if (sig_trapped)
2617         PerlProc_kill(PerlProc_getpid(), signo);
2618     return oldsig;
2619 }
2620
2621 int
2622 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2623 {
2624     *save = PerlProc_signal(signo, handler);
2625     return (*save == SIG_ERR) ? -1 : 0;
2626 }
2627
2628 int
2629 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2630 {
2631     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2632 }
2633
2634 #endif /* !HAS_SIGACTION */
2635 #endif /* !PERL_MICRO */
2636
2637     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2638 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2639 I32
2640 Perl_my_pclose(pTHX_ PerlIO *ptr)
2641 {
2642     Sigsave_t hstat, istat, qstat;
2643     int status;
2644     SV **svp;
2645     Pid_t pid;
2646     Pid_t pid2;
2647     bool close_failed;
2648     int saved_errno;
2649 #ifdef VMS
2650     int saved_vaxc_errno;
2651 #endif
2652 #ifdef WIN32
2653     int saved_win32_errno;
2654 #endif
2655
2656     LOCK_FDPID_MUTEX;
2657     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2658     UNLOCK_FDPID_MUTEX;
2659     pid = SvIVX(*svp);
2660     SvREFCNT_dec(*svp);
2661     *svp = &PL_sv_undef;
2662 #ifdef OS2
2663     if (pid == -1) {                    /* Opened by popen. */
2664         return my_syspclose(ptr);
2665     }
2666 #endif 
2667     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2668         saved_errno = errno;
2669 #ifdef VMS
2670         saved_vaxc_errno = vaxc$errno;
2671 #endif
2672 #ifdef WIN32
2673         saved_win32_errno = GetLastError();
2674 #endif
2675     }
2676 #ifdef UTS
2677     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2678 #endif
2679 #ifndef PERL_MICRO
2680     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2681     rsignal_save(SIGINT, SIG_IGN, &istat);
2682     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2683 #endif
2684     do {
2685         pid2 = wait4pid(pid, &status, 0);
2686     } while (pid2 == -1 && errno == EINTR);
2687 #ifndef PERL_MICRO
2688     rsignal_restore(SIGHUP, &hstat);
2689     rsignal_restore(SIGINT, &istat);
2690     rsignal_restore(SIGQUIT, &qstat);
2691 #endif
2692     if (close_failed) {
2693         SETERRNO(saved_errno, saved_vaxc_errno);
2694         return -1;
2695     }
2696     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2697 }
2698 #endif /* !DOSISH */
2699
2700 #if  (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
2701 I32
2702 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2703 {
2704     SV *sv;
2705     SV** svp;
2706     char spid[TYPE_CHARS(int)];
2707
2708     if (!pid)
2709         return -1;
2710 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2711     if (pid > 0) {
2712         sprintf(spid, "%"IVdf, (IV)pid);
2713         svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2714         if (svp && *svp != &PL_sv_undef) {
2715             *statusp = SvIVX(*svp);
2716             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2717             return pid;
2718         }
2719     }
2720     else {
2721         HE *entry;
2722
2723         hv_iterinit(PL_pidstatus);
2724         if ((entry = hv_iternext(PL_pidstatus))) {
2725             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2726             sv = hv_iterval(PL_pidstatus,entry);
2727             *statusp = SvIVX(sv);
2728             sprintf(spid, "%"IVdf, (IV)pid);
2729             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2730             return pid;
2731         }
2732     }
2733 #endif
2734 #ifdef HAS_WAITPID
2735 #  ifdef HAS_WAITPID_RUNTIME
2736     if (!HAS_WAITPID_RUNTIME)
2737         goto hard_way;
2738 #  endif
2739     return PerlProc_waitpid(pid,statusp,flags);
2740 #endif
2741 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2742     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2743 #endif
2744 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2745   hard_way:
2746     {
2747         I32 result;
2748         if (flags)
2749             Perl_croak(aTHX_ "Can't do waitpid with flags");
2750         else {
2751             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2752                 pidgone(result,*statusp);
2753             if (result < 0)
2754                 *statusp = -1;
2755         }
2756         return result;
2757     }
2758 #endif
2759 }
2760 #endif /* !DOSISH || OS2 || WIN32 */
2761
2762 void
2763 /*SUPPRESS 590*/
2764 Perl_pidgone(pTHX_ Pid_t pid, int status)
2765 {
2766     register SV *sv;
2767     char spid[TYPE_CHARS(int)];
2768
2769     sprintf(spid, "%"IVdf, (IV)pid);
2770     sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2771     (void)SvUPGRADE(sv,SVt_IV);
2772     SvIVX(sv) = status;
2773     return;
2774 }
2775
2776 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2777 int pclose();
2778 #ifdef HAS_FORK
2779 int                                     /* Cannot prototype with I32
2780                                            in os2ish.h. */
2781 my_syspclose(PerlIO *ptr)
2782 #else
2783 I32
2784 Perl_my_pclose(pTHX_ PerlIO *ptr)
2785 #endif 
2786 {
2787     /* Needs work for PerlIO ! */
2788     FILE *f = PerlIO_findFILE(ptr);
2789     I32 result = pclose(f);
2790 #if defined(DJGPP)
2791     result = (result << 8) & 0xff00;
2792 #endif
2793     PerlIO_releaseFILE(ptr,f);
2794     return result;
2795 }
2796 #endif
2797
2798 void
2799 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2800 {
2801     register I32 todo;
2802     register const char *frombase = from;
2803
2804     if (len == 1) {
2805         register const char c = *from;
2806         while (count-- > 0)
2807             *to++ = c;
2808         return;
2809     }
2810     while (count-- > 0) {
2811         for (todo = len; todo > 0; todo--) {
2812             *to++ = *from++;
2813         }
2814         from = frombase;
2815     }
2816 }
2817
2818 U32
2819 Perl_cast_ulong(pTHX_ NV f)
2820 {
2821     long along;
2822
2823 #if CASTFLAGS & 2
2824 #   define BIGDOUBLE 2147483648.0
2825     if (f >= BIGDOUBLE)
2826         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2827 #endif
2828     if (f >= 0.0)
2829         return (unsigned long)f;
2830     along = (long)f;
2831     return (unsigned long)along;
2832 }
2833 # undef BIGDOUBLE
2834
2835 /* Unfortunately, on some systems the cast_uv() function doesn't
2836    work with the system-supplied definition of ULONG_MAX.  The
2837    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2838    problem with the compiler constant folding.
2839
2840    In any case, this workaround should be fine on any two's complement
2841    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2842    ccflags.
2843                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2844 */
2845
2846 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2847    of LONG_(MIN/MAX).
2848                            -- Kenneth Albanowski <kjahds@kjahds.com>
2849 */                                      
2850
2851 #ifndef MY_UV_MAX
2852 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2853 #endif
2854
2855 I32
2856 Perl_cast_i32(pTHX_ NV f)
2857 {
2858     if (f >= I32_MAX)
2859         return (I32) I32_MAX;
2860     if (f <= I32_MIN)
2861         return (I32) I32_MIN;
2862     return (I32) f;
2863 }
2864
2865 IV
2866 Perl_cast_iv(pTHX_ NV f)
2867 {
2868     if (f >= IV_MAX) {
2869         UV uv;
2870         
2871         if (f >= (NV)UV_MAX)
2872             return (IV) UV_MAX; 
2873         uv = (UV) f;
2874         return (IV)uv;
2875     }
2876     if (f <= IV_MIN)
2877         return (IV) IV_MIN;
2878     return (IV) f;
2879 }
2880
2881 UV
2882 Perl_cast_uv(pTHX_ NV f)
2883 {
2884     if (f >= MY_UV_MAX)
2885         return (UV) MY_UV_MAX;
2886     if (f < 0) {
2887         IV iv;
2888         
2889         if (f < IV_MIN)
2890             return (UV)IV_MIN;
2891         iv = (IV) f;
2892         return (UV) iv;
2893     }
2894     return (UV) f;
2895 }
2896
2897 #ifndef HAS_RENAME
2898 I32
2899 Perl_same_dirent(pTHX_ char *a, char *b)
2900 {
2901     char *fa = strrchr(a,'/');
2902     char *fb = strrchr(b,'/');
2903     struct stat tmpstatbuf1;
2904     struct stat tmpstatbuf2;
2905     SV *tmpsv = sv_newmortal();
2906
2907     if (fa)
2908         fa++;
2909     else
2910         fa = a;
2911     if (fb)
2912         fb++;
2913     else
2914         fb = b;
2915     if (strNE(a,b))
2916         return FALSE;
2917     if (fa == a)
2918         sv_setpv(tmpsv, ".");
2919     else
2920         sv_setpvn(tmpsv, a, fa - a);
2921     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2922         return FALSE;
2923     if (fb == b)
2924         sv_setpv(tmpsv, ".");
2925     else
2926         sv_setpvn(tmpsv, b, fb - b);
2927     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2928         return FALSE;
2929     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2930            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2931 }
2932 #endif /* !HAS_RENAME */
2933
2934 NV
2935 Perl_scan_bin(pTHX_ char *start, I32 len, I32 *retlen)
2936 {
2937     register char *s = start;
2938     register NV rnv = 0.0;
2939     register UV ruv = 0;
2940     register bool seenb = FALSE;
2941     register bool overflowed = FALSE;
2942
2943     for (; len-- && *s; s++) {
2944         if (!(*s == '0' || *s == '1')) {
2945             if (*s == '_' && len && *retlen
2946                 && (s[1] == '0' || s[1] == '1'))
2947             {
2948                 --len;
2949                 ++s;
2950             }
2951             else if (seenb == FALSE && *s == 'b' && ruv == 0) {
2952                 /* Disallow 0bbb0b0bbb... */
2953                 seenb = TRUE;
2954                 continue;
2955             }
2956             else {
2957                 dTHR;
2958                 if (ckWARN(WARN_DIGIT))
2959                     Perl_warner(aTHX_ WARN_DIGIT,
2960                                 "Illegal binary digit '%c' ignored", *s);
2961                 break;
2962             }
2963         }
2964         if (!overflowed) {
2965             register UV xuv = ruv << 1;
2966
2967             if ((xuv >> 1) != ruv) {
2968                 dTHR;
2969                 overflowed = TRUE;
2970                 rnv = (NV) ruv;
2971                 if (ckWARN_d(WARN_OVERFLOW))
2972                     Perl_warner(aTHX_ WARN_OVERFLOW,
2973                                 "Integer overflow in binary number");
2974             }
2975             else
2976                 ruv = xuv | (*s - '0');
2977         }
2978         if (overflowed) {
2979             rnv *= 2;
2980             /* If an NV has not enough bits in its mantissa to
2981              * represent an UV this summing of small low-order numbers
2982              * is a waste of time (because the NV cannot preserve
2983              * the low-order bits anyway): we could just remember when
2984              * did we overflow and in the end just multiply rnv by the
2985              * right amount. */
2986             rnv += (*s - '0');
2987         }
2988     }
2989     if (!overflowed)
2990         rnv = (NV) ruv;
2991     if (   ( overflowed && rnv > 4294967295.0)
2992 #if UVSIZE > 4
2993         || (!overflowed && ruv > 0xffffffff  )
2994 #endif
2995         ) { 
2996         dTHR;
2997         if (ckWARN(WARN_PORTABLE))
2998             Perl_warner(aTHX_ WARN_PORTABLE,
2999                         "Binary number > 0b11111111111111111111111111111111 non-portable");
3000     }
3001     *retlen = s - start;
3002     return rnv;
3003 }
3004
3005 NV
3006 Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen)
3007 {
3008     register char *s = start;
3009     register NV rnv = 0.0;
3010     register UV ruv = 0;
3011     register bool overflowed = FALSE;
3012
3013     for (; len-- && *s; s++) {
3014         if (!(*s >= '0' && *s <= '7')) {
3015             if (*s == '_' && len && *retlen
3016                 && (s[1] >= '0' && s[1] <= '7'))
3017             {
3018                 --len;
3019                 ++s;
3020             }
3021             else {
3022                 /* Allow \octal to work the DWIM way (that is, stop scanning
3023                  * as soon as non-octal characters are seen, complain only iff
3024                  * someone seems to want to use the digits eight and nine). */
3025                 if (*s == '8' || *s == '9') {
3026                     dTHR;
3027                     if (ckWARN(WARN_DIGIT))
3028                         Perl_warner(aTHX_ WARN_DIGIT,
3029                                     "Illegal octal digit '%c' ignored", *s);
3030                 }
3031                 break;
3032             }
3033         }
3034         if (!overflowed) {
3035             register UV xuv = ruv << 3;
3036
3037             if ((xuv >> 3) != ruv) {
3038                 dTHR;
3039                 overflowed = TRUE;
3040                 rnv = (NV) ruv;
3041                 if (ckWARN_d(WARN_OVERFLOW))
3042                     Perl_warner(aTHX_ WARN_OVERFLOW,
3043                                 "Integer overflow in octal number");
3044             }
3045             else
3046                 ruv = xuv | (*s - '0');
3047         }
3048         if (overflowed) {
3049             rnv *= 8.0;
3050             /* If an NV has not enough bits in its mantissa to
3051              * represent an UV this summing of small low-order numbers
3052              * is a waste of time (because the NV cannot preserve
3053              * the low-order bits anyway): we could just remember when
3054              * did we overflow and in the end just multiply rnv by the
3055              * right amount of 8-tuples. */
3056             rnv += (NV)(*s - '0');
3057         }
3058     }
3059     if (!overflowed)
3060         rnv = (NV) ruv;
3061     if (   ( overflowed && rnv > 4294967295.0)
3062 #if UVSIZE > 4
3063         || (!overflowed && ruv > 0xffffffff  )
3064 #endif
3065         ) {
3066         dTHR;
3067         if (ckWARN(WARN_PORTABLE))
3068             Perl_warner(aTHX_ WARN_PORTABLE,
3069                         "Octal number > 037777777777 non-portable");
3070     }
3071     *retlen = s - start;
3072     return rnv;
3073 }
3074
3075 NV
3076 Perl_scan_hex(pTHX_ char *start, I32 len, I32 *retlen)
3077 {
3078     register char *s = start;
3079     register NV rnv = 0.0;
3080     register UV ruv = 0;
3081     register bool seenx = FALSE;
3082     register bool overflowed = FALSE;
3083     char *hexdigit;
3084
3085     for (; len-- && *s; s++) {
3086         hexdigit = strchr((char *) PL_hexdigit, *s);
3087         if (!hexdigit) {
3088             if (*s == '_' && len && *retlen && s[1]
3089                 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
3090             {
3091                 --len;
3092                 ++s;
3093             }
3094             else if (seenx == FALSE && *s == 'x' && ruv == 0) {
3095                 /* Disallow 0xxx0x0xxx... */
3096                 seenx = TRUE;
3097                 continue;
3098             }
3099             else {
3100                 dTHR;
3101                 if (ckWARN(WARN_DIGIT))
3102                     Perl_warner(aTHX_ WARN_DIGIT,
3103                                 "Illegal hexadecimal digit '%c' ignored", *s);
3104                 break;
3105             }
3106         }
3107         if (!overflowed) {
3108             register UV xuv = ruv << 4;
3109
3110             if ((xuv >> 4) != ruv) {
3111                 dTHR;
3112                 overflowed = TRUE;
3113                 rnv = (NV) ruv;
3114                 if (ckWARN_d(WARN_OVERFLOW))
3115                     Perl_warner(aTHX_ WARN_OVERFLOW,
3116                                 "Integer overflow in hexadecimal number");
3117             }
3118             else
3119                 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
3120         }
3121         if (overflowed) {
3122             rnv *= 16.0;
3123             /* If an NV has not enough bits in its mantissa to
3124              * represent an UV this summing of small low-order numbers
3125              * is a waste of time (because the NV cannot preserve
3126              * the low-order bits anyway): we could just remember when
3127              * did we overflow and in the end just multiply rnv by the
3128              * right amount of 16-tuples. */
3129             rnv += (NV)((hexdigit - PL_hexdigit) & 15);
3130         }
3131     }
3132     if (!overflowed)
3133         rnv = (NV) ruv;
3134     if (   ( overflowed && rnv > 4294967295.0)
3135 #if UVSIZE > 4
3136         || (!overflowed && ruv > 0xffffffff  )
3137 #endif
3138         ) { 
3139         dTHR;
3140         if (ckWARN(WARN_PORTABLE))
3141             Perl_warner(aTHX_ WARN_PORTABLE,
3142                         "Hexadecimal number > 0xffffffff non-portable");
3143     }
3144     *retlen = s - start;
3145     return rnv;
3146 }
3147
3148 char*
3149 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3150 {
3151     dTHR;
3152     char *xfound = Nullch;
3153     char *xfailed = Nullch;
3154     char tmpbuf[MAXPATHLEN];
3155     register char *s;
3156     I32 len;
3157     int retval;
3158 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3159 #  define SEARCH_EXTS ".bat", ".cmd", NULL
3160 #  define MAX_EXT_LEN 4
3161 #endif
3162 #ifdef OS2
3163 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3164 #  define MAX_EXT_LEN 4
3165 #endif
3166 #ifdef VMS
3167 #  define SEARCH_EXTS ".pl", ".com", NULL
3168 #  define MAX_EXT_LEN 4
3169 #endif
3170     /* additional extensions to try in each dir if scriptname not found */
3171 #ifdef SEARCH_EXTS
3172     char *exts[] = { SEARCH_EXTS };
3173     char **ext = search_ext ? search_ext : exts;
3174     int extidx = 0, i = 0;
3175     char *curext = Nullch;
3176 #else
3177 #  define MAX_EXT_LEN 0
3178 #endif
3179
3180     /*
3181      * If dosearch is true and if scriptname does not contain path
3182      * delimiters, search the PATH for scriptname.
3183      *
3184      * If SEARCH_EXTS is also defined, will look for each
3185      * scriptname{SEARCH_EXTS} whenever scriptname is not found
3186      * while searching the PATH.
3187      *
3188      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3189      * proceeds as follows:
3190      *   If DOSISH or VMSISH:
3191      *     + look for ./scriptname{,.foo,.bar}
3192      *     + search the PATH for scriptname{,.foo,.bar}
3193      *
3194      *   If !DOSISH:
3195      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
3196      *       this will not look in '.' if it's not in the PATH)
3197      */
3198     tmpbuf[0] = '\0';
3199
3200 #ifdef VMS
3201 #  ifdef ALWAYS_DEFTYPES
3202     len = strlen(scriptname);
3203     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3204         int hasdir, idx = 0, deftypes = 1;
3205         bool seen_dot = 1;
3206
3207         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3208 #  else
3209     if (dosearch) {
3210         int hasdir, idx = 0, deftypes = 1;
3211         bool seen_dot = 1;
3212
3213         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3214 #  endif
3215         /* The first time through, just add SEARCH_EXTS to whatever we
3216          * already have, so we can check for default file types. */
3217         while (deftypes ||
3218                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3219         {
3220             if (deftypes) {
3221                 deftypes = 0;
3222                 *tmpbuf = '\0';
3223             }
3224             if ((strlen(tmpbuf) + strlen(scriptname)
3225                  + MAX_EXT_LEN) >= sizeof tmpbuf)
3226                 continue;       /* don't search dir with too-long name */
3227             strcat(tmpbuf, scriptname);
3228 #else  /* !VMS */
3229
3230 #ifdef DOSISH
3231     if (strEQ(scriptname, "-"))
3232         dosearch = 0;
3233     if (dosearch) {             /* Look in '.' first. */
3234         char *cur = scriptname;
3235 #ifdef SEARCH_EXTS
3236         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3237             while (ext[i])
3238                 if (strEQ(ext[i++],curext)) {
3239                     extidx = -1;                /* already has an ext */
3240                     break;
3241                 }
3242         do {
3243 #endif
3244             DEBUG_p(PerlIO_printf(Perl_debug_log,
3245                                   "Looking for %s\n",cur));
3246             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3247                 && !S_ISDIR(PL_statbuf.st_mode)) {
3248                 dosearch = 0;
3249                 scriptname = cur;
3250 #ifdef SEARCH_EXTS
3251                 break;
3252 #endif
3253             }
3254 #ifdef SEARCH_EXTS
3255             if (cur == scriptname) {
3256                 len = strlen(scriptname);
3257                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3258                     break;
3259                 cur = strcpy(tmpbuf, scriptname);
3260             }
3261         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
3262                  && strcpy(tmpbuf+len, ext[extidx++]));
3263 #endif
3264     }
3265 #endif
3266
3267 #ifdef MACOS_TRADITIONAL
3268     if (dosearch && !strchr(scriptname, ':') &&
3269         (s = PerlEnv_getenv("Commands")))
3270 #else
3271     if (dosearch && !strchr(scriptname, '/')
3272 #ifdef DOSISH
3273                  && !strchr(scriptname, '\\')
3274 #endif
3275                  && (s = PerlEnv_getenv("PATH")))
3276 #endif
3277     {
3278         bool seen_dot = 0;
3279         
3280         PL_bufend = s + strlen(s);
3281         while (s < PL_bufend) {
3282 #ifdef MACOS_TRADITIONAL
3283             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3284                         ',',
3285                         &len);
3286 #else
3287 #if defined(atarist) || defined(DOSISH)
3288             for (len = 0; *s
3289 #  ifdef atarist
3290                     && *s != ','
3291 #  endif
3292                     && *s != ';'; len++, s++) {
3293                 if (len < sizeof tmpbuf)
3294                     tmpbuf[len] = *s;
3295             }
3296             if (len < sizeof tmpbuf)
3297                 tmpbuf[len] = '\0';
3298 #else  /* ! (atarist || DOSISH) */
3299             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3300                         ':',
3301                         &len);
3302 #endif /* ! (atarist || DOSISH) */
3303 #endif /* MACOS_TRADITIONAL */
3304             if (s < PL_bufend)
3305                 s++;
3306             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3307                 continue;       /* don't search dir with too-long name */
3308 #ifdef MACOS_TRADITIONAL
3309             if (len && tmpbuf[len - 1] != ':')
3310                 tmpbuf[len++] = ':';
3311 #else
3312             if (len
3313 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3314                 && tmpbuf[len - 1] != '/'
3315                 && tmpbuf[len - 1] != '\\'
3316 #endif
3317                )
3318                 tmpbuf[len++] = '/';
3319             if (len == 2 && tmpbuf[0] == '.')
3320                 seen_dot = 1;
3321 #endif
3322             (void)strcpy(tmpbuf + len, scriptname);
3323 #endif  /* !VMS */
3324
3325 #ifdef SEARCH_EXTS
3326             len = strlen(tmpbuf);
3327             if (extidx > 0)     /* reset after previous loop */
3328                 extidx = 0;
3329             do {
3330 #endif
3331                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3332                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3333                 if (S_ISDIR(PL_statbuf.st_mode)) {
3334                     retval = -1;
3335                 }
3336 #ifdef SEARCH_EXTS
3337             } while (  retval < 0               /* not there */
3338                     && extidx>=0 && ext[extidx] /* try an extension? */
3339                     && strcpy(tmpbuf+len, ext[extidx++])
3340                 );
3341 #endif
3342             if (retval < 0)
3343                 continue;
3344             if (S_ISREG(PL_statbuf.st_mode)
3345                 && cando(S_IRUSR,TRUE,&PL_statbuf)
3346 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3347                 && cando(S_IXUSR,TRUE,&PL_statbuf)
3348 #endif
3349                 )
3350             {
3351                 xfound = tmpbuf;              /* bingo! */
3352                 break;
3353             }
3354             if (!xfailed)
3355                 xfailed = savepv(tmpbuf);
3356         }
3357 #ifndef DOSISH
3358         if (!xfound && !seen_dot && !xfailed &&
3359             (PerlLIO_stat(scriptname,&PL_statbuf) < 0 
3360              || S_ISDIR(PL_statbuf.st_mode)))
3361 #endif
3362             seen_dot = 1;                       /* Disable message. */
3363         if (!xfound) {
3364             if (flags & 1) {                    /* do or die? */
3365                 Perl_croak(aTHX_ "Can't %s %s%s%s",
3366                       (xfailed ? "execute" : "find"),
3367                       (xfailed ? xfailed : scriptname),
3368                       (xfailed ? "" : " on PATH"),
3369                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3370             }
3371             scriptname = Nullch;
3372         }
3373         if (xfailed)
3374             Safefree(xfailed);
3375         scriptname = xfound;
3376     }
3377     return (scriptname ? savepv(scriptname) : Nullch);
3378 }
3379
3380 #ifndef PERL_GET_CONTEXT_DEFINED
3381
3382 void *
3383 Perl_get_context(void)
3384 {
3385 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3386 #  ifdef OLD_PTHREADS_API
3387     pthread_addr_t t;
3388     if (pthread_getspecific(PL_thr_key, &t))
3389         Perl_croak_nocontext("panic: pthread_getspecific");
3390     return (void*)t;
3391 #  else
3392 #  ifdef I_MACH_CTHREADS
3393     return (void*)cthread_data(cthread_self());
3394 #  else
3395     return (void*)pthread_getspecific(PL_thr_key);
3396 #  endif
3397 #  endif
3398 #else
3399     return (void*)NULL;
3400 #endif
3401 }
3402
3403 void
3404 Perl_set_context(void *t)
3405 {
3406 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3407 #  ifdef I_MACH_CTHREADS
3408     cthread_set_data(cthread_self(), t);
3409 #  else
3410     if (pthread_setspecific(PL_thr_key, t))
3411         Perl_croak_nocontext("panic: pthread_setspecific");
3412 #  endif
3413 #endif
3414 }
3415
3416 #endif /* !PERL_GET_CONTEXT_DEFINED */
3417
3418 #ifdef USE_THREADS
3419
3420 #ifdef FAKE_THREADS
3421 /* Very simplistic scheduler for now */
3422 void
3423 schedule(void)
3424 {
3425     thr = thr->i.next_run;
3426 }
3427
3428 void
3429 Perl_cond_init(pTHX_ perl_cond *cp)
3430 {
3431     *cp = 0;
3432 }
3433
3434 void
3435 Perl_cond_signal(pTHX_ perl_cond *cp)
3436 {
3437     perl_os_thread t;
3438     perl_cond cond = *cp;
3439     
3440     if (!cond)
3441         return;
3442     t = cond->thread;
3443     /* Insert t in the runnable queue just ahead of us */
3444     t->i.next_run = thr->i.next_run;
3445     thr->i.next_run->i.prev_run = t;
3446     t->i.prev_run = thr;
3447     thr->i.next_run = t;
3448     thr->i.wait_queue = 0;
3449     /* Remove from the wait queue */
3450     *cp = cond->next;
3451     Safefree(cond);
3452 }
3453
3454 void
3455 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3456 {
3457     perl_os_thread t;
3458     perl_cond cond, cond_next;
3459     
3460     for (cond = *cp; cond; cond = cond_next) {
3461         t = cond->thread;
3462         /* Insert t in the runnable queue just ahead of us */
3463         t->i.next_run = thr->i.next_run;
3464         thr->i.next_run->i.prev_run = t;
3465         t->i.prev_run = thr;
3466         thr->i.next_run = t;
3467         thr->i.wait_queue = 0;
3468         /* Remove from the wait queue */
3469         cond_next = cond->next;
3470         Safefree(cond);
3471     }
3472     *cp = 0;
3473 }
3474
3475 void
3476 Perl_cond_wait(pTHX_ perl_cond *cp)
3477 {
3478     perl_cond cond;
3479
3480     if (thr->i.next_run == thr)
3481         Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3482     
3483     New(666, cond, 1, struct perl_wait_queue);
3484     cond->thread = thr;
3485     cond->next = *cp;
3486     *cp = cond;
3487     thr->i.wait_queue = cond;
3488     /* Remove ourselves from runnable queue */
3489     thr->i.next_run->i.prev_run = thr->i.prev_run;
3490     thr->i.prev_run->i.next_run = thr->i.next_run;
3491 }
3492 #endif /* FAKE_THREADS */
3493
3494 MAGIC *
3495 Perl_condpair_magic(pTHX_ SV *sv)
3496 {
3497     MAGIC *mg;
3498     
3499     SvUPGRADE(sv, SVt_PVMG);
3500     mg = mg_find(sv, 'm');
3501     if (!mg) {
3502         condpair_t *cp;
3503
3504         New(53, cp, 1, condpair_t);
3505         MUTEX_INIT(&cp->mutex);
3506         COND_INIT(&cp->owner_cond);
3507         COND_INIT(&cp->cond);
3508         cp->owner = 0;
3509         LOCK_CRED_MUTEX;                /* XXX need separate mutex? */
3510         mg = mg_find(sv, 'm');
3511         if (mg) {
3512             /* someone else beat us to initialising it */
3513             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3514             MUTEX_DESTROY(&cp->mutex);
3515             COND_DESTROY(&cp->owner_cond);
3516             COND_DESTROY(&cp->cond);
3517             Safefree(cp);
3518         }
3519         else {
3520             sv_magic(sv, Nullsv, 'm', 0, 0);
3521             mg = SvMAGIC(sv);
3522             mg->mg_ptr = (char *)cp;
3523             mg->mg_len = sizeof(cp);
3524             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3525             DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
3526                                            "%p: condpair_magic %p\n", thr, sv));)
3527         }
3528     }
3529     return mg;
3530 }
3531
3532 SV *
3533 Perl_sv_lock(pTHX_ SV *osv)
3534 {
3535     MAGIC *mg;
3536     SV *sv = osv;
3537
3538     LOCK_SV_LOCK_MUTEX;
3539     if (SvROK(sv)) {
3540         sv = SvRV(sv);
3541     }
3542
3543     mg = condpair_magic(sv);
3544     MUTEX_LOCK(MgMUTEXP(mg));
3545     if (MgOWNER(mg) == thr)
3546         MUTEX_UNLOCK(MgMUTEXP(mg));
3547     else {
3548         while (MgOWNER(mg))
3549             COND_WAIT(MgOWNERCONDP(mg), MgMUTEXP(mg));
3550         MgOWNER(mg) = thr;
3551         DEBUG_S(PerlIO_printf(Perl_debug_log,
3552                               "0x%"UVxf": Perl_lock lock 0x%"UVxf"\n",
3553                               PTR2UV(thr), PTR2UV(sv));)
3554         MUTEX_UNLOCK(MgMUTEXP(mg));
3555         SAVEDESTRUCTOR_X(Perl_unlock_condpair, sv);
3556     }
3557     UNLOCK_SV_LOCK_MUTEX;
3558     return sv;
3559 }
3560
3561 /*
3562  * Make a new perl thread structure using t as a prototype. Some of the
3563  * fields for the new thread are copied from the prototype thread, t,
3564  * so t should not be running in perl at the time this function is
3565  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3566  * thread calling new_struct_thread) clearly satisfies this constraint.
3567  */
3568 struct perl_thread *
3569 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3570 {
3571 #if !defined(PERL_IMPLICIT_CONTEXT)
3572     struct perl_thread *thr;
3573 #endif
3574     SV *sv;
3575     SV **svp;
3576     I32 i;
3577
3578     sv = newSVpvn("", 0);
3579     SvGROW(sv, sizeof(struct perl_thread) + 1);
3580     SvCUR_set(sv, sizeof(struct perl_thread));
3581     thr = (Thread) SvPVX(sv);
3582 #ifdef DEBUGGING
3583     memset(thr, 0xab, sizeof(struct perl_thread));
3584     PL_markstack = 0;
3585     PL_scopestack = 0;
3586     PL_savestack = 0;
3587     PL_retstack = 0;
3588     PL_dirty = 0;
3589     PL_localizing = 0;
3590     Zero(&PL_hv_fetch_ent_mh, 1, HE);
3591 #else
3592     Zero(thr, 1, struct perl_thread);
3593 #endif
3594
3595     thr->oursv = sv;
3596     init_stacks();
3597
3598     PL_curcop = &PL_compiling;
3599     thr->interp = t->interp;
3600     thr->cvcache = newHV();
3601     thr->threadsv = newAV();
3602     thr->specific = newAV();
3603     thr->errsv = newSVpvn("", 0);
3604     thr->flags = THRf_R_JOINABLE;
3605     MUTEX_INIT(&thr->mutex);
3606
3607     JMPENV_BOOTSTRAP;
3608
3609     PL_in_eval = EVAL_NULL;     /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR|EVAL_INREQUIRE) */
3610     PL_restartop = 0;
3611
3612     PL_statname = NEWSV(66,0);
3613     PL_errors = newSVpvn("", 0);
3614     PL_maxscream = -1;
3615     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3616     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3617     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3618     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3619     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3620     PL_regindent = 0;
3621     PL_reginterp_cnt = 0;
3622     PL_lastscream = Nullsv;
3623     PL_screamfirst = 0;
3624     PL_screamnext = 0;
3625     PL_reg_start_tmp = 0;
3626     PL_reg_start_tmpl = 0;
3627     PL_reg_poscache = Nullch;
3628
3629     /* parent thread's data needs to be locked while we make copy */
3630     MUTEX_LOCK(&t->mutex);
3631
3632 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3633     PL_protect = t->Tprotect;
3634 #endif
3635
3636     PL_curcop = t->Tcurcop;       /* XXX As good a guess as any? */
3637     PL_defstash = t->Tdefstash;   /* XXX maybe these should */
3638     PL_curstash = t->Tcurstash;   /* always be set to main? */
3639
3640     PL_tainted = t->Ttainted;
3641     PL_curpm = t->Tcurpm;         /* XXX No PMOP ref count */
3642     PL_nrs = newSVsv(t->Tnrs);
3643     PL_rs = SvREFCNT_inc(PL_nrs);
3644     PL_last_in_gv = Nullgv;
3645     PL_ofslen = t->Tofslen;
3646     PL_ofs = savepvn(t->Tofs, PL_ofslen);
3647     PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3648     PL_chopset = t->Tchopset;
3649     PL_bodytarget = newSVsv(t->Tbodytarget);
3650     PL_toptarget = newSVsv(t->Ttoptarget);
3651     if (t->Tformtarget == t->Ttoptarget)
3652         PL_formtarget = PL_toptarget;
3653     else
3654         PL_formtarget = PL_bodytarget;
3655
3656     /* Initialise all per-thread SVs that the template thread used */
3657     svp = AvARRAY(t->threadsv);
3658     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3659         if (*svp && *svp != &PL_sv_undef) {
3660             SV *sv = newSVsv(*svp);
3661             av_store(thr->threadsv, i, sv);
3662             sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3663             DEBUG_S(PerlIO_printf(Perl_debug_log,
3664                 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3665                                   (IV)i, t, thr));
3666         }
3667     } 
3668     thr->threadsvp = AvARRAY(thr->threadsv);
3669
3670     MUTEX_LOCK(&PL_threads_mutex);
3671     PL_nthreads++;
3672     thr->tid = ++PL_threadnum;
3673     thr->next = t->next;
3674     thr->prev = t;
3675     t->next = thr;
3676     thr->next->prev = thr;
3677     MUTEX_UNLOCK(&PL_threads_mutex);
3678
3679     /* done copying parent's state */
3680     MUTEX_UNLOCK(&t->mutex);
3681
3682 #ifdef HAVE_THREAD_INTERN
3683     Perl_init_thread_intern(thr);
3684 #endif /* HAVE_THREAD_INTERN */
3685     return thr;
3686 }
3687 #endif /* USE_THREADS */
3688
3689 #if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
3690 /*
3691  * This hack is to force load of "huge" support from libm.a
3692  * So it is in perl for (say) POSIX to use. 
3693  * Needed for SunOS with Sun's 'acc' for example.
3694  */
3695 NV 
3696 Perl_huge(void)
3697 {
3698 #   if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3699     return HUGE_VALL;
3700 #   endif
3701     return HUGE_VAL;
3702 }
3703 #endif
3704
3705 #ifdef PERL_GLOBAL_STRUCT
3706 struct perl_vars *
3707 Perl_GetVars(pTHX)
3708 {
3709  return &PL_Vars;
3710 }
3711 #endif
3712
3713 char **
3714 Perl_get_op_names(pTHX)
3715 {
3716  return PL_op_name;
3717 }
3718
3719 char **
3720 Perl_get_op_descs(pTHX)
3721 {
3722  return PL_op_desc;
3723 }
3724
3725 char *
3726 Perl_get_no_modify(pTHX)
3727 {
3728  return (char*)PL_no_modify;
3729 }
3730
3731 U32 *
3732 Perl_get_opargs(pTHX)
3733 {
3734  return PL_opargs;
3735 }
3736
3737 PPADDR_t*
3738 Perl_get_ppaddr(pTHX)
3739 {
3740  return (PPADDR_t*)PL_ppaddr;
3741 }
3742
3743 #ifndef HAS_GETENV_LEN
3744 char *
3745 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3746 {
3747     char *env_trans = PerlEnv_getenv(env_elem);
3748     if (env_trans)
3749         *len = strlen(env_trans);
3750     return env_trans;
3751 }
3752 #endif
3753
3754
3755 MGVTBL*
3756 Perl_get_vtbl(pTHX_ int vtbl_id)
3757 {
3758     MGVTBL* result = Null(MGVTBL*);
3759
3760     switch(vtbl_id) {
3761     case want_vtbl_sv:
3762         result = &PL_vtbl_sv;
3763         break;
3764     case want_vtbl_env:
3765         result = &PL_vtbl_env;
3766         break;
3767     case want_vtbl_envelem:
3768         result = &PL_vtbl_envelem;
3769         break;
3770     case want_vtbl_sig:
3771         result = &PL_vtbl_sig;
3772         break;
3773     case want_vtbl_sigelem:
3774         result = &PL_vtbl_sigelem;
3775         break;
3776     case want_vtbl_pack:
3777         result = &PL_vtbl_pack;
3778         break;
3779     case want_vtbl_packelem:
3780         result = &PL_vtbl_packelem;
3781         break;
3782     case want_vtbl_dbline:
3783         result = &PL_vtbl_dbline;
3784         break;
3785     case want_vtbl_isa:
3786         result = &PL_vtbl_isa;
3787         break;
3788     case want_vtbl_isaelem:
3789         result = &PL_vtbl_isaelem;
3790         break;
3791     case want_vtbl_arylen:
3792         result = &PL_vtbl_arylen;
3793         break;
3794     case want_vtbl_glob:
3795         result = &PL_vtbl_glob;
3796         break;
3797     case want_vtbl_mglob:
3798         result = &PL_vtbl_mglob;
3799         break;
3800     case want_vtbl_nkeys:
3801         result = &PL_vtbl_nkeys;
3802         break;
3803     case want_vtbl_taint:
3804         result = &PL_vtbl_taint;
3805         break;
3806     case want_vtbl_substr:
3807         result = &PL_vtbl_substr;
3808         break;
3809     case want_vtbl_vec:
3810         result = &PL_vtbl_vec;
3811         break;
3812     case want_vtbl_pos:
3813         result = &PL_vtbl_pos;
3814         break;
3815     case want_vtbl_bm:
3816         result = &PL_vtbl_bm;
3817         break;
3818     case want_vtbl_fm:
3819         result = &PL_vtbl_fm;
3820         break;
3821     case want_vtbl_uvar:
3822         result = &PL_vtbl_uvar;
3823         break;
3824 #ifdef USE_THREADS
3825     case want_vtbl_mutex:
3826         result = &PL_vtbl_mutex;
3827         break;
3828 #endif
3829     case want_vtbl_defelem:
3830         result = &PL_vtbl_defelem;
3831         break;
3832     case want_vtbl_regexp:
3833         result = &PL_vtbl_regexp;
3834         break;
3835     case want_vtbl_regdata:
3836         result = &PL_vtbl_regdata;
3837         break;
3838     case want_vtbl_regdatum:
3839         result = &PL_vtbl_regdatum;
3840         break;
3841 #ifdef USE_LOCALE_COLLATE
3842     case want_vtbl_collxfrm:
3843         result = &PL_vtbl_collxfrm;
3844         break;
3845 #endif
3846     case want_vtbl_amagic:
3847         result = &PL_vtbl_amagic;
3848         break;
3849     case want_vtbl_amagicelem:
3850         result = &PL_vtbl_amagicelem;
3851         break;
3852     case want_vtbl_backref:
3853         result = &PL_vtbl_backref;
3854         break;
3855     }
3856     return result;
3857 }
3858
3859 I32
3860 Perl_my_fflush_all(pTHX)
3861 {
3862 #ifdef FFLUSH_NULL
3863     return PerlIO_flush(NULL);
3864 #else
3865     long open_max = -1;
3866 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3867 #  ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3868     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3869 #  else
3870 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3871     open_max = sysconf(_SC_OPEN_MAX);
3872 #  else
3873 #   ifdef FOPEN_MAX
3874     open_max = FOPEN_MAX;
3875 #   else
3876 #    ifdef OPEN_MAX
3877     open_max = OPEN_MAX;
3878 #    else
3879 #     ifdef _NFILE
3880     open_max = _NFILE;
3881 #     endif
3882 #    endif
3883 #   endif
3884 #  endif
3885 #  endif
3886     if (open_max > 0) {
3887       long i;
3888       for (i = 0; i < open_max; i++)
3889             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3890                 STDIO_STREAM_ARRAY[i]._file < open_max &&
3891                 STDIO_STREAM_ARRAY[i]._flag)
3892                 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3893       return 0;
3894     }
3895 # endif
3896     SETERRNO(EBADF,RMS$_IFI);
3897     return EOF;
3898 #endif
3899 }
3900
3901 NV
3902 Perl_my_atof(pTHX_ const char* s)
3903 {
3904     NV x = 0.0;
3905 #ifdef USE_LOCALE_NUMERIC
3906     if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3907         NV y;
3908
3909         Perl_atof2(s, x);
3910         SET_NUMERIC_STANDARD();
3911         Perl_atof2(s, y);
3912         SET_NUMERIC_LOCAL();
3913         if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3914             return y;
3915     }
3916     else
3917         Perl_atof2(s, x);
3918 #else
3919     Perl_atof2(s, x);
3920 #endif
3921     return x;
3922 }
3923
3924 void
3925 Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op)
3926 {
3927     char *vile;
3928     I32   warn_type;
3929     char *func =
3930         op == OP_READLINE   ? "readline"  :     /* "<HANDLE>" not nice */
3931         op == OP_LEAVEWRITE ? "write" :         /* "write exit" not nice */
3932         PL_op_desc[op];
3933     char *pars = OP_IS_FILETEST(op) ? "" : "()";
3934     char *type = OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET) ?
3935                      "socket" : "filehandle";
3936     char *name = NULL;
3937
3938     if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3939         vile = "closed";
3940         warn_type = WARN_CLOSED;
3941     }
3942     else {
3943         vile = "unopened";
3944         warn_type = WARN_UNOPENED;
3945     }
3946
3947     if (gv && isGV(gv)) {
3948         SV *sv = sv_newmortal();
3949         gv_efullname4(sv, gv, Nullch, FALSE);
3950         name = SvPVX(sv);
3951     }
3952
3953     if (name && *name) {
3954         Perl_warner(aTHX_ warn_type,
3955                     "%s%s on %s %s %s", func, pars, vile, type, name);
3956         if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3957             Perl_warner(aTHX_ warn_type,
3958                         "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3959                         func, pars, name);
3960     }
3961     else {
3962         Perl_warner(aTHX_ warn_type,
3963                     "%s%s on %s %s", func, pars, vile, type);
3964         if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3965             Perl_warner(aTHX_ warn_type,
3966                         "\t(Are you trying to call %s%s on dirhandle?)\n",
3967                         func, pars);
3968     }
3969 }