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