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