8962fff6096154f835c261b1b19ba3b668e686f2
[p5sagit/p5-mst-13.2.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-2000, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9
10 /*
11  * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12  * not content."  --Gandalf
13  */
14
15 #include "EXTERN.h"
16 #define PERL_IN_UTIL_C
17 #include "perl.h"
18
19 #ifndef PERL_MICRO
20 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
21 #include <signal.h>
22 #endif
23
24 #ifndef SIG_ERR
25 # define SIG_ERR ((Sighandler_t) -1)
26 #endif
27 #endif
28
29 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
30 #ifdef I_UNISTD
31 #  include <unistd.h>
32 #endif
33
34 #ifdef I_VFORK
35 #  include <vfork.h>
36 #endif
37
38 /* Put this after #includes because fork and vfork prototypes may
39    conflict.
40 */
41 #ifndef HAS_VFORK
42 #   define vfork fork
43 #endif
44
45 #ifdef I_SYS_WAIT
46 #  include <sys/wait.h>
47 #endif
48
49 #ifdef I_LOCALE
50 #  include <locale.h>
51 #endif
52
53 #define FLUSH
54
55 #ifdef LEAKTEST
56
57 long xcount[MAXXCOUNT];
58 long lastxcount[MAXXCOUNT];
59 long xycount[MAXXCOUNT][MAXYCOUNT];
60 long lastxycount[MAXXCOUNT][MAXYCOUNT];
61
62 #endif
63
64 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
65 #  define FD_CLOEXEC 1                  /* NeXT needs this */
66 #endif
67
68 /* paranoid version of system's malloc() */
69
70 /* NOTE:  Do not call the next three routines directly.  Use the macros
71  * in handy.h, so that we can easily redefine everything to do tracking of
72  * allocated hunks back to the original New to track down any memory leaks.
73  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
74  */
75
76 Malloc_t
77 Perl_safesysmalloc(MEM_SIZE size)
78 {
79     dTHX;
80     Malloc_t ptr;
81 #ifdef HAS_64K_LIMIT
82         if (size > 0xffff) {
83             PerlIO_printf(Perl_error_log,
84                           "Allocation too large: %lx\n", size) FLUSH;
85             my_exit(1);
86         }
87 #endif /* HAS_64K_LIMIT */
88 #ifdef DEBUGGING
89     if ((long)size < 0)
90         Perl_croak_nocontext("panic: malloc");
91 #endif
92     ptr = (Malloc_t)PerlMem_malloc(size?size:1);        /* malloc(0) is NASTY on our system */
93     PERL_ALLOC_CHECK(ptr);
94     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
95     if (ptr != Nullch)
96         return ptr;
97     else if (PL_nomemok)
98         return Nullch;
99     else {
100         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
101         my_exit(1);
102         return Nullch;
103     }
104     /*NOTREACHED*/
105 }
106
107 /* paranoid version of system's realloc() */
108
109 Malloc_t
110 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
111 {
112     dTHX;
113     Malloc_t ptr;
114 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
115     Malloc_t PerlMem_realloc();
116 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
117
118 #ifdef HAS_64K_LIMIT 
119     if (size > 0xffff) {
120         PerlIO_printf(Perl_error_log,
121                       "Reallocation too large: %lx\n", size) FLUSH;
122         my_exit(1);
123     }
124 #endif /* HAS_64K_LIMIT */
125     if (!size) {
126         safesysfree(where);
127         return NULL;
128     }
129
130     if (!where)
131         return safesysmalloc(size);
132 #ifdef DEBUGGING
133     if ((long)size < 0)
134         Perl_croak_nocontext("panic: realloc");
135 #endif
136     ptr = (Malloc_t)PerlMem_realloc(where,size);
137     PERL_ALLOC_CHECK(ptr);
138  
139     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
140     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
141
142     if (ptr != Nullch)
143         return ptr;
144     else if (PL_nomemok)
145         return Nullch;
146     else {
147         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
148         my_exit(1);
149         return Nullch;
150     }
151     /*NOTREACHED*/
152 }
153
154 /* safe version of system's free() */
155
156 Free_t
157 Perl_safesysfree(Malloc_t where)
158 {
159 #ifdef PERL_IMPLICIT_SYS
160     dTHX;
161 #endif
162     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
163     if (where) {
164         /*SUPPRESS 701*/
165         PerlMem_free(where);
166     }
167 }
168
169 /* safe version of system's calloc() */
170
171 Malloc_t
172 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
173 {
174     dTHX;
175     Malloc_t ptr;
176
177 #ifdef HAS_64K_LIMIT
178     if (size * count > 0xffff) {
179         PerlIO_printf(Perl_error_log,
180                       "Allocation too large: %lx\n", size * count) FLUSH;
181         my_exit(1);
182     }
183 #endif /* HAS_64K_LIMIT */
184 #ifdef DEBUGGING
185     if ((long)size < 0 || (long)count < 0)
186         Perl_croak_nocontext("panic: calloc");
187 #endif
188     size *= count;
189     ptr = (Malloc_t)PerlMem_malloc(size?size:1);        /* malloc(0) is NASTY on our system */
190     PERL_ALLOC_CHECK(ptr);
191     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)size));
192     if (ptr != Nullch) {
193         memset((void*)ptr, 0, size);
194         return ptr;
195     }
196     else if (PL_nomemok)
197         return Nullch;
198     else {
199         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
200         my_exit(1);
201         return Nullch;
202     }
203     /*NOTREACHED*/
204 }
205
206 #ifdef LEAKTEST
207
208 struct mem_test_strut {
209     union {
210         long type;
211         char c[2];
212     } u;
213     long size;
214 };
215
216 #    define ALIGN sizeof(struct mem_test_strut)
217
218 #    define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
219 #    define typeof_chunk(ch) \
220         (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
221 #    define set_typeof_chunk(ch,t) \
222         (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
223 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE                            \
224                           ? MAXYCOUNT - 1                               \
225                           : ( (size) > 40                               \
226                               ? ((size) - 1)/8 + 5                      \
227                               : ((size) - 1)/4))
228
229 Malloc_t
230 Perl_safexmalloc(I32 x, MEM_SIZE size)
231 {
232     register char* where = (char*)safemalloc(size + ALIGN);
233
234     xcount[x] += size;
235     xycount[x][SIZE_TO_Y(size)]++;
236     set_typeof_chunk(where, x);
237     sizeof_chunk(where) = size;
238     return (Malloc_t)(where + ALIGN);
239 }
240
241 Malloc_t
242 Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
243 {
244     char *where = (char*)wh;
245
246     if (!wh)
247         return safexmalloc(0,size);
248     
249     {
250         MEM_SIZE old = sizeof_chunk(where - ALIGN);
251         int t = typeof_chunk(where - ALIGN);
252         register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
253     
254         xycount[t][SIZE_TO_Y(old)]--;
255         xycount[t][SIZE_TO_Y(size)]++;
256         xcount[t] += size - old;
257         sizeof_chunk(new) = size;
258         return (Malloc_t)(new + ALIGN);
259     }
260 }
261
262 void
263 Perl_safexfree(Malloc_t wh)
264 {
265     I32 x;
266     char *where = (char*)wh;
267     MEM_SIZE size;
268     
269     if (!where)
270         return;
271     where -= ALIGN;
272     size = sizeof_chunk(where);
273     x = where[0] + 100 * where[1];
274     xcount[x] -= size;
275     xycount[x][SIZE_TO_Y(size)]--;
276     safefree(where);
277 }
278
279 Malloc_t
280 Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
281 {
282     register char * where = (char*)safexmalloc(x, size * count + ALIGN);
283     xcount[x] += size;
284     xycount[x][SIZE_TO_Y(size)]++;
285     memset((void*)(where + ALIGN), 0, size * count);
286     set_typeof_chunk(where, x);
287     sizeof_chunk(where) = size;
288     return (Malloc_t)(where + ALIGN);
289 }
290
291 STATIC void
292 S_xstat(pTHX_ int flag)
293 {
294     register I32 i, j, total = 0;
295     I32 subtot[MAXYCOUNT];
296
297     for (j = 0; j < MAXYCOUNT; j++) {
298         subtot[j] = 0;
299     }
300     
301     PerlIO_printf(Perl_debug_log, "   Id  subtot   4   8  12  16  20  24  28  32  36  40  48  56  64  72  80 80+\n", total);
302     for (i = 0; i < MAXXCOUNT; i++) {
303         total += xcount[i];
304         for (j = 0; j < MAXYCOUNT; j++) {
305             subtot[j] += xycount[i][j];
306         }
307         if (flag == 0
308             ? xcount[i]                 /* Have something */
309             : (flag == 2 
310                ? xcount[i] != lastxcount[i] /* Changed */
311                : xcount[i] > lastxcount[i])) { /* Growed */
312             PerlIO_printf(Perl_debug_log,"%2d %02d %7ld ", i / 100, i % 100, 
313                           flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
314             lastxcount[i] = xcount[i];
315             for (j = 0; j < MAXYCOUNT; j++) {
316                 if ( flag == 0 
317                      ? xycount[i][j]    /* Have something */
318                      : (flag == 2 
319                         ? xycount[i][j] != lastxycount[i][j] /* Changed */
320                         : xycount[i][j] > lastxycount[i][j])) { /* Growed */
321                     PerlIO_printf(Perl_debug_log,"%3ld ", 
322                                   flag == 2 
323                                   ? xycount[i][j] - lastxycount[i][j] 
324                                   : xycount[i][j]);
325                     lastxycount[i][j] = xycount[i][j];
326                 } else {
327                     PerlIO_printf(Perl_debug_log, "  . ", xycount[i][j]);
328                 }
329             }
330             PerlIO_printf(Perl_debug_log, "\n");
331         }
332     }
333     if (flag != 2) {
334         PerlIO_printf(Perl_debug_log, "Total %7ld ", total);
335         for (j = 0; j < MAXYCOUNT; j++) {
336             if (subtot[j]) {
337                 PerlIO_printf(Perl_debug_log, "%3ld ", subtot[j]);
338             } else {
339                 PerlIO_printf(Perl_debug_log, "  . ");
340             }
341         }
342         PerlIO_printf(Perl_debug_log, "\n");    
343     }
344 }
345
346 #endif /* LEAKTEST */
347
348 /* copy a string up to some (non-backslashed) delimiter, if any */
349
350 char *
351 Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
352 {
353     register I32 tolen;
354     for (tolen = 0; from < fromend; from++, tolen++) {
355         if (*from == '\\') {
356             if (from[1] == delim)
357                 from++;
358             else {
359                 if (to < toend)
360                     *to++ = *from;
361                 tolen++;
362                 from++;
363             }
364         }
365         else if (*from == delim)
366             break;
367         if (to < toend)
368             *to++ = *from;
369     }
370     if (to < toend)
371         *to = '\0';
372     *retlen = tolen;
373     return from;
374 }
375
376 /* return ptr to little string in big string, NULL if not found */
377 /* This routine was donated by Corey Satten. */
378
379 char *
380 Perl_instr(pTHX_ register const char *big, register const char *little)
381 {
382     register const char *s, *x;
383     register I32 first;
384
385     if (!little)
386         return (char*)big;
387     first = *little++;
388     if (!first)
389         return (char*)big;
390     while (*big) {
391         if (*big++ != first)
392             continue;
393         for (x=big,s=little; *s; /**/ ) {
394             if (!*x)
395                 return Nullch;
396             if (*s++ != *x++) {
397                 s--;
398                 break;
399             }
400         }
401         if (!*s)
402             return (char*)(big-1);
403     }
404     return Nullch;
405 }
406
407 /* same as instr but allow embedded nulls */
408
409 char *
410 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
411 {
412     register const char *s, *x;
413     register I32 first = *little;
414     register const char *littleend = lend;
415
416     if (!first && little >= littleend)
417         return (char*)big;
418     if (bigend - big < littleend - little)
419         return Nullch;
420     bigend -= littleend - little++;
421     while (big <= bigend) {
422         if (*big++ != first)
423             continue;
424         for (x=big,s=little; s < littleend; /**/ ) {
425             if (*s++ != *x++) {
426                 s--;
427                 break;
428             }
429         }
430         if (s >= littleend)
431             return (char*)(big-1);
432     }
433     return Nullch;
434 }
435
436 /* reverse of the above--find last substring */
437
438 char *
439 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
440 {
441     register const char *bigbeg;
442     register const char *s, *x;
443     register I32 first = *little;
444     register const char *littleend = lend;
445
446     if (!first && little >= littleend)
447         return (char*)bigend;
448     bigbeg = big;
449     big = bigend - (littleend - little++);
450     while (big >= bigbeg) {
451         if (*big-- != first)
452             continue;
453         for (x=big+2,s=little; s < littleend; /**/ ) {
454             if (*s++ != *x++) {
455                 s--;
456                 break;
457             }
458         }
459         if (s >= littleend)
460             return (char*)(big+1);
461     }
462     return Nullch;
463 }
464
465 /*
466  * Set up for a new ctype locale.
467  */
468 void
469 Perl_new_ctype(pTHX_ const char *newctype)
470 {
471 #ifdef USE_LOCALE_CTYPE
472
473     int i;
474
475     for (i = 0; i < 256; i++) {
476         if (isUPPER_LC(i))
477             PL_fold_locale[i] = toLOWER_LC(i);
478         else if (isLOWER_LC(i))
479             PL_fold_locale[i] = toUPPER_LC(i);
480         else
481             PL_fold_locale[i] = i;
482     }
483
484 #endif /* USE_LOCALE_CTYPE */
485 }
486
487 /*
488  * Set up for a new collation locale.
489  */
490 void
491 Perl_new_collate(pTHX_ const char *newcoll)
492 {
493 #ifdef USE_LOCALE_COLLATE
494
495     if (! newcoll) {
496         if (PL_collation_name) {
497             ++PL_collation_ix;
498             Safefree(PL_collation_name);
499             PL_collation_name = NULL;
500             PL_collation_standard = TRUE;
501             PL_collxfrm_base = 0;
502             PL_collxfrm_mult = 2;
503         }
504         return;
505     }
506
507     if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
508         ++PL_collation_ix;
509         Safefree(PL_collation_name);
510         PL_collation_name = savepv(newcoll);
511         PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
512
513         {
514           /*  2: at most so many chars ('a', 'b'). */
515           /* 50: surely no system expands a char more. */
516 #define XFRMBUFSIZE  (2 * 50)
517           char xbuf[XFRMBUFSIZE];
518           Size_t fa = strxfrm(xbuf, "a",  XFRMBUFSIZE);
519           Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
520           SSize_t mult = fb - fa;
521           if (mult < 1)
522               Perl_croak(aTHX_ "strxfrm() gets absurd");
523           PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
524           PL_collxfrm_mult = mult;
525         }
526     }
527
528 #endif /* USE_LOCALE_COLLATE */
529 }
530
531 void
532 Perl_set_numeric_radix(pTHX)
533 {
534 #ifdef USE_LOCALE_NUMERIC
535 # ifdef HAS_LOCALECONV
536     struct lconv* lc;
537
538     lc = localeconv();
539     if (lc && lc->decimal_point)
540         /* We assume that decimal separator aka the radix
541          * character is always a single character.  If it
542          * ever is a string, this needs to be rethunk. */
543         PL_numeric_radix = *lc->decimal_point;
544     else
545         PL_numeric_radix = 0;
546 # endif /* HAS_LOCALECONV */
547 #endif /* USE_LOCALE_NUMERIC */
548 }
549
550 /*
551  * Set up for a new numeric locale.
552  */
553 void
554 Perl_new_numeric(pTHX_ const char *newnum)
555 {
556 #ifdef USE_LOCALE_NUMERIC
557
558     if (! newnum) {
559         if (PL_numeric_name) {
560             Safefree(PL_numeric_name);
561             PL_numeric_name = NULL;
562             PL_numeric_standard = TRUE;
563             PL_numeric_local = TRUE;
564         }
565         return;
566     }
567
568     if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
569         Safefree(PL_numeric_name);
570         PL_numeric_name = savepv(newnum);
571         PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
572         PL_numeric_local = TRUE;
573         set_numeric_radix();
574     }
575
576 #endif /* USE_LOCALE_NUMERIC */
577 }
578
579 void
580 Perl_set_numeric_standard(pTHX)
581 {
582 #ifdef USE_LOCALE_NUMERIC
583
584     if (! PL_numeric_standard) {
585         setlocale(LC_NUMERIC, "C");
586         PL_numeric_standard = TRUE;
587         PL_numeric_local = FALSE;
588     }
589
590 #endif /* USE_LOCALE_NUMERIC */
591 }
592
593 void
594 Perl_set_numeric_local(pTHX)
595 {
596 #ifdef USE_LOCALE_NUMERIC
597
598     if (! PL_numeric_local) {
599         setlocale(LC_NUMERIC, PL_numeric_name);
600         PL_numeric_standard = FALSE;
601         PL_numeric_local = TRUE;
602         set_numeric_radix();
603     }
604
605 #endif /* USE_LOCALE_NUMERIC */
606 }
607
608 /*
609  * Initialize locale awareness.
610  */
611 int
612 Perl_init_i18nl10n(pTHX_ int printwarn)
613 {
614     int ok = 1;
615     /* returns
616      *    1 = set ok or not applicable,
617      *    0 = fallback to C locale,
618      *   -1 = fallback to C locale failed
619      */
620
621 #ifdef USE_LOCALE
622
623 #ifdef USE_LOCALE_CTYPE
624     char *curctype   = NULL;
625 #endif /* USE_LOCALE_CTYPE */
626 #ifdef USE_LOCALE_COLLATE
627     char *curcoll    = NULL;
628 #endif /* USE_LOCALE_COLLATE */
629 #ifdef USE_LOCALE_NUMERIC
630     char *curnum     = NULL;
631 #endif /* USE_LOCALE_NUMERIC */
632 #ifdef __GLIBC__
633     char *language   = PerlEnv_getenv("LANGUAGE");
634 #endif
635     char *lc_all     = PerlEnv_getenv("LC_ALL");
636     char *lang       = PerlEnv_getenv("LANG");
637     bool setlocale_failure = FALSE;
638
639 #ifdef LOCALE_ENVIRON_REQUIRED
640
641     /*
642      * Ultrix setlocale(..., "") fails if there are no environment
643      * variables from which to get a locale name.
644      */
645
646     bool done = FALSE;
647
648 #ifdef LC_ALL
649     if (lang) {
650         if (setlocale(LC_ALL, ""))
651             done = TRUE;
652         else
653             setlocale_failure = TRUE;
654     }
655     if (!setlocale_failure) {
656 #ifdef USE_LOCALE_CTYPE
657         if (! (curctype =
658                setlocale(LC_CTYPE,
659                          (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
660                                     ? "" : Nullch)))
661             setlocale_failure = TRUE;
662 #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     sv = *av_fetch(PL_fdpid,p[This],TRUE);
2406     (void)SvUPGRADE(sv,SVt_IV);
2407     SvIVX(sv) = pid;
2408     PL_forkprocess = pid;
2409     if (did_pipes && pid > 0) {
2410         int errkid;
2411         int n = 0, n1;
2412
2413         while (n < sizeof(int)) {
2414             n1 = PerlLIO_read(pp[0],
2415                               (void*)(((char*)&errkid)+n),
2416                               (sizeof(int)) - n);
2417             if (n1 <= 0)
2418                 break;
2419             n += n1;
2420         }
2421         PerlLIO_close(pp[0]);
2422         did_pipes = 0;
2423         if (n) {                        /* Error */
2424             if (n != sizeof(int))
2425                 Perl_croak(aTHX_ "panic: kid popen errno read");
2426             errno = errkid;             /* Propagate errno from kid */
2427             return Nullfp;
2428         }
2429     }
2430     if (did_pipes)
2431          PerlLIO_close(pp[0]);
2432     return PerlIO_fdopen(p[This], mode);
2433 }
2434 #else
2435 #if defined(atarist) || defined(DJGPP)
2436 FILE *popen();
2437 PerlIO *
2438 Perl_my_popen(pTHX_ char *cmd, char *mode)
2439 {
2440     /* Needs work for PerlIO ! */
2441     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2442     PERL_FLUSHALL_FOR_CHILD;
2443     return popen(PerlIO_exportFILE(cmd, 0), mode);
2444 }
2445 #endif
2446
2447 #endif /* !DOSISH */
2448
2449 #ifdef DUMP_FDS
2450 void
2451 Perl_dump_fds(pTHX_ char *s)
2452 {
2453     int fd;
2454     struct stat tmpstatbuf;
2455
2456     PerlIO_printf(Perl_debug_log,"%s", s);
2457     for (fd = 0; fd < 32; fd++) {
2458         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2459             PerlIO_printf(Perl_debug_log," %d",fd);
2460     }
2461     PerlIO_printf(Perl_debug_log,"\n");
2462 }
2463 #endif  /* DUMP_FDS */
2464
2465 #ifndef HAS_DUP2
2466 int
2467 dup2(int oldfd, int newfd)
2468 {
2469 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2470     if (oldfd == newfd)
2471         return oldfd;
2472     PerlLIO_close(newfd);
2473     return fcntl(oldfd, F_DUPFD, newfd);
2474 #else
2475 #define DUP2_MAX_FDS 256
2476     int fdtmp[DUP2_MAX_FDS];
2477     I32 fdx = 0;
2478     int fd;
2479
2480     if (oldfd == newfd)
2481         return oldfd;
2482     PerlLIO_close(newfd);
2483     /* good enough for low fd's... */
2484     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2485         if (fdx >= DUP2_MAX_FDS) {
2486             PerlLIO_close(fd);
2487             fd = -1;
2488             break;
2489         }
2490         fdtmp[fdx++] = fd;
2491     }
2492     while (fdx > 0)
2493         PerlLIO_close(fdtmp[--fdx]);
2494     return fd;
2495 #endif
2496 }
2497 #endif
2498
2499 #ifndef PERL_MICRO
2500 #ifdef HAS_SIGACTION
2501
2502 Sighandler_t
2503 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2504 {
2505     struct sigaction act, oact;
2506
2507     act.sa_handler = handler;
2508     sigemptyset(&act.sa_mask);
2509     act.sa_flags = 0;
2510 #ifdef SA_RESTART
2511     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2512 #endif
2513 #ifdef SA_NOCLDWAIT
2514     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2515         act.sa_flags |= SA_NOCLDWAIT;
2516 #endif
2517     if (sigaction(signo, &act, &oact) == -1)
2518         return SIG_ERR;
2519     else
2520         return oact.sa_handler;
2521 }
2522
2523 Sighandler_t
2524 Perl_rsignal_state(pTHX_ int signo)
2525 {
2526     struct sigaction oact;
2527
2528     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2529         return SIG_ERR;
2530     else
2531         return oact.sa_handler;
2532 }
2533
2534 int
2535 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2536 {
2537     struct sigaction act;
2538
2539     act.sa_handler = handler;
2540     sigemptyset(&act.sa_mask);
2541     act.sa_flags = 0;
2542 #ifdef SA_RESTART
2543     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2544 #endif
2545 #ifdef SA_NOCLDWAIT
2546     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2547         act.sa_flags |= SA_NOCLDWAIT;
2548 #endif
2549     return sigaction(signo, &act, save);
2550 }
2551
2552 int
2553 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2554 {
2555     return sigaction(signo, save, (struct sigaction *)NULL);
2556 }
2557
2558 #else /* !HAS_SIGACTION */
2559
2560 Sighandler_t
2561 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2562 {
2563     return PerlProc_signal(signo, handler);
2564 }
2565
2566 static int sig_trapped;
2567
2568 static
2569 Signal_t
2570 sig_trap(int signo)
2571 {
2572     sig_trapped++;
2573 }
2574
2575 Sighandler_t
2576 Perl_rsignal_state(pTHX_ int signo)
2577 {
2578     Sighandler_t oldsig;
2579
2580     sig_trapped = 0;
2581     oldsig = PerlProc_signal(signo, sig_trap);
2582     PerlProc_signal(signo, oldsig);
2583     if (sig_trapped)
2584         PerlProc_kill(PerlProc_getpid(), signo);
2585     return oldsig;
2586 }
2587
2588 int
2589 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2590 {
2591     *save = PerlProc_signal(signo, handler);
2592     return (*save == SIG_ERR) ? -1 : 0;
2593 }
2594
2595 int
2596 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2597 {
2598     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2599 }
2600
2601 #endif /* !HAS_SIGACTION */
2602 #endif /* !PERL_MICRO */
2603
2604     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2605 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2606 I32
2607 Perl_my_pclose(pTHX_ PerlIO *ptr)
2608 {
2609     Sigsave_t hstat, istat, qstat;
2610     int status;
2611     SV **svp;
2612     Pid_t pid;
2613     Pid_t pid2;
2614     bool close_failed;
2615     int saved_errno;
2616 #ifdef VMS
2617     int saved_vaxc_errno;
2618 #endif
2619 #ifdef WIN32
2620     int saved_win32_errno;
2621 #endif
2622
2623     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2624     pid = SvIVX(*svp);
2625     SvREFCNT_dec(*svp);
2626     *svp = &PL_sv_undef;
2627 #ifdef OS2
2628     if (pid == -1) {                    /* Opened by popen. */
2629         return my_syspclose(ptr);
2630     }
2631 #endif 
2632     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2633         saved_errno = errno;
2634 #ifdef VMS
2635         saved_vaxc_errno = vaxc$errno;
2636 #endif
2637 #ifdef WIN32
2638         saved_win32_errno = GetLastError();
2639 #endif
2640     }
2641 #ifdef UTS
2642     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2643 #endif
2644 #ifndef PERL_MICRO
2645     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2646     rsignal_save(SIGINT, SIG_IGN, &istat);
2647     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2648 #endif
2649     do {
2650         pid2 = wait4pid(pid, &status, 0);
2651     } while (pid2 == -1 && errno == EINTR);
2652 #ifndef PERL_MICRO
2653     rsignal_restore(SIGHUP, &hstat);
2654     rsignal_restore(SIGINT, &istat);
2655     rsignal_restore(SIGQUIT, &qstat);
2656 #endif
2657     if (close_failed) {
2658         SETERRNO(saved_errno, saved_vaxc_errno);
2659         return -1;
2660     }
2661     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2662 }
2663 #endif /* !DOSISH */
2664
2665 #if  (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
2666 I32
2667 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2668 {
2669     SV *sv;
2670     SV** svp;
2671     char spid[TYPE_CHARS(int)];
2672
2673     if (!pid)
2674         return -1;
2675     if (pid > 0) {
2676         sprintf(spid, "%"IVdf, (IV)pid);
2677         svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2678         if (svp && *svp != &PL_sv_undef) {
2679             *statusp = SvIVX(*svp);
2680             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2681             return pid;
2682         }
2683     }
2684     else {
2685         HE *entry;
2686
2687         hv_iterinit(PL_pidstatus);
2688         if ((entry = hv_iternext(PL_pidstatus))) {
2689             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2690             sv = hv_iterval(PL_pidstatus,entry);
2691             *statusp = SvIVX(sv);
2692             sprintf(spid, "%"IVdf, (IV)pid);
2693             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2694             return pid;
2695         }
2696     }
2697 #ifdef HAS_WAITPID
2698 #  ifdef HAS_WAITPID_RUNTIME
2699     if (!HAS_WAITPID_RUNTIME)
2700         goto hard_way;
2701 #  endif
2702     return PerlProc_waitpid(pid,statusp,flags);
2703 #endif
2704 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2705     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2706 #endif
2707 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2708   hard_way:
2709     {
2710         I32 result;
2711         if (flags)
2712             Perl_croak(aTHX_ "Can't do waitpid with flags");
2713         else {
2714             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2715                 pidgone(result,*statusp);
2716             if (result < 0)
2717                 *statusp = -1;
2718         }
2719         return result;
2720     }
2721 #endif
2722 }
2723 #endif /* !DOSISH || OS2 || WIN32 */
2724
2725 void
2726 /*SUPPRESS 590*/
2727 Perl_pidgone(pTHX_ Pid_t pid, int status)
2728 {
2729     register SV *sv;
2730     char spid[TYPE_CHARS(int)];
2731
2732     sprintf(spid, "%"IVdf, (IV)pid);
2733     sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2734     (void)SvUPGRADE(sv,SVt_IV);
2735     SvIVX(sv) = status;
2736     return;
2737 }
2738
2739 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2740 int pclose();
2741 #ifdef HAS_FORK
2742 int                                     /* Cannot prototype with I32
2743                                            in os2ish.h. */
2744 my_syspclose(PerlIO *ptr)
2745 #else
2746 I32
2747 Perl_my_pclose(pTHX_ PerlIO *ptr)
2748 #endif 
2749 {
2750     /* Needs work for PerlIO ! */
2751     FILE *f = PerlIO_findFILE(ptr);
2752     I32 result = pclose(f);
2753 #if defined(DJGPP)
2754     result = (result << 8) & 0xff00;
2755 #endif
2756     PerlIO_releaseFILE(ptr,f);
2757     return result;
2758 }
2759 #endif
2760
2761 void
2762 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2763 {
2764     register I32 todo;
2765     register const char *frombase = from;
2766
2767     if (len == 1) {
2768         register const char c = *from;
2769         while (count-- > 0)
2770             *to++ = c;
2771         return;
2772     }
2773     while (count-- > 0) {
2774         for (todo = len; todo > 0; todo--) {
2775             *to++ = *from++;
2776         }
2777         from = frombase;
2778     }
2779 }
2780
2781 U32
2782 Perl_cast_ulong(pTHX_ NV f)
2783 {
2784     long along;
2785
2786 #if CASTFLAGS & 2
2787 #   define BIGDOUBLE 2147483648.0
2788     if (f >= BIGDOUBLE)
2789         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2790 #endif
2791     if (f >= 0.0)
2792         return (unsigned long)f;
2793     along = (long)f;
2794     return (unsigned long)along;
2795 }
2796 # undef BIGDOUBLE
2797
2798 /* Unfortunately, on some systems the cast_uv() function doesn't
2799    work with the system-supplied definition of ULONG_MAX.  The
2800    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2801    problem with the compiler constant folding.
2802
2803    In any case, this workaround should be fine on any two's complement
2804    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2805    ccflags.
2806                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2807 */
2808
2809 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2810    of LONG_(MIN/MAX).
2811                            -- Kenneth Albanowski <kjahds@kjahds.com>
2812 */                                      
2813
2814 #ifndef MY_UV_MAX
2815 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2816 #endif
2817
2818 I32
2819 Perl_cast_i32(pTHX_ NV f)
2820 {
2821     if (f >= I32_MAX)
2822         return (I32) I32_MAX;
2823     if (f <= I32_MIN)
2824         return (I32) I32_MIN;
2825     return (I32) f;
2826 }
2827
2828 IV
2829 Perl_cast_iv(pTHX_ NV f)
2830 {
2831     if (f >= IV_MAX) {
2832         UV uv;
2833         
2834         if (f >= (NV)UV_MAX)
2835             return (IV) UV_MAX; 
2836         uv = (UV) f;
2837         return (IV)uv;
2838     }
2839     if (f <= IV_MIN)
2840         return (IV) IV_MIN;
2841     return (IV) f;
2842 }
2843
2844 UV
2845 Perl_cast_uv(pTHX_ NV f)
2846 {
2847     if (f >= MY_UV_MAX)
2848         return (UV) MY_UV_MAX;
2849     if (f < 0) {
2850         IV iv;
2851         
2852         if (f < IV_MIN)
2853             return (UV)IV_MIN;
2854         iv = (IV) f;
2855         return (UV) iv;
2856     }
2857     return (UV) f;
2858 }
2859
2860 #ifndef HAS_RENAME
2861 I32
2862 Perl_same_dirent(pTHX_ char *a, char *b)
2863 {
2864     char *fa = strrchr(a,'/');
2865     char *fb = strrchr(b,'/');
2866     struct stat tmpstatbuf1;
2867     struct stat tmpstatbuf2;
2868     SV *tmpsv = sv_newmortal();
2869
2870     if (fa)
2871         fa++;
2872     else
2873         fa = a;
2874     if (fb)
2875         fb++;
2876     else
2877         fb = b;
2878     if (strNE(a,b))
2879         return FALSE;
2880     if (fa == a)
2881         sv_setpv(tmpsv, ".");
2882     else
2883         sv_setpvn(tmpsv, a, fa - a);
2884     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2885         return FALSE;
2886     if (fb == b)
2887         sv_setpv(tmpsv, ".");
2888     else
2889         sv_setpvn(tmpsv, b, fb - b);
2890     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2891         return FALSE;
2892     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2893            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2894 }
2895 #endif /* !HAS_RENAME */
2896
2897 NV
2898 Perl_scan_bin(pTHX_ char *start, I32 len, I32 *retlen)
2899 {
2900     register char *s = start;
2901     register NV rnv = 0.0;
2902     register UV ruv = 0;
2903     register bool seenb = FALSE;
2904     register bool overflowed = FALSE;
2905
2906     for (; len-- && *s; s++) {
2907         if (!(*s == '0' || *s == '1')) {
2908             if (*s == '_' && len && *retlen
2909                 && (s[1] == '0' || s[1] == '1'))
2910             {
2911                 --len;
2912                 ++s;
2913             }
2914             else if (seenb == FALSE && *s == 'b' && ruv == 0) {
2915                 /* Disallow 0bbb0b0bbb... */
2916                 seenb = TRUE;
2917                 continue;
2918             }
2919             else {
2920                 dTHR;
2921                 if (ckWARN(WARN_DIGIT))
2922                     Perl_warner(aTHX_ WARN_DIGIT,
2923                                 "Illegal binary digit '%c' ignored", *s);
2924                 break;
2925             }
2926         }
2927         if (!overflowed) {
2928             register UV xuv = ruv << 1;
2929
2930             if ((xuv >> 1) != ruv) {
2931                 dTHR;
2932                 overflowed = TRUE;
2933                 rnv = (NV) ruv;
2934                 if (ckWARN_d(WARN_OVERFLOW))
2935                     Perl_warner(aTHX_ WARN_OVERFLOW,
2936                                 "Integer overflow in binary number");
2937             }
2938             else
2939                 ruv = xuv | (*s - '0');
2940         }
2941         if (overflowed) {
2942             rnv *= 2;
2943             /* If an NV has not enough bits in its mantissa to
2944              * represent an UV this summing of small low-order numbers
2945              * is a waste of time (because the NV cannot preserve
2946              * the low-order bits anyway): we could just remember when
2947              * did we overflow and in the end just multiply rnv by the
2948              * right amount. */
2949             rnv += (*s - '0');
2950         }
2951     }
2952     if (!overflowed)
2953         rnv = (NV) ruv;
2954     if (   ( overflowed && rnv > 4294967295.0)
2955 #if UVSIZE > 4
2956         || (!overflowed && ruv > 0xffffffff  )
2957 #endif
2958         ) { 
2959         dTHR;
2960         if (ckWARN(WARN_PORTABLE))
2961             Perl_warner(aTHX_ WARN_PORTABLE,
2962                         "Binary number > 0b11111111111111111111111111111111 non-portable");
2963     }
2964     *retlen = s - start;
2965     return rnv;
2966 }
2967
2968 NV
2969 Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen)
2970 {
2971     register char *s = start;
2972     register NV rnv = 0.0;
2973     register UV ruv = 0;
2974     register bool overflowed = FALSE;
2975
2976     for (; len-- && *s; s++) {
2977         if (!(*s >= '0' && *s <= '7')) {
2978             if (*s == '_' && len && *retlen
2979                 && (s[1] >= '0' && s[1] <= '7'))
2980             {
2981                 --len;
2982                 ++s;
2983             }
2984             else {
2985                 /* Allow \octal to work the DWIM way (that is, stop scanning
2986                  * as soon as non-octal characters are seen, complain only iff
2987                  * someone seems to want to use the digits eight and nine). */
2988                 if (*s == '8' || *s == '9') {
2989                     dTHR;
2990                     if (ckWARN(WARN_DIGIT))
2991                         Perl_warner(aTHX_ WARN_DIGIT,
2992                                     "Illegal octal digit '%c' ignored", *s);
2993                 }
2994                 break;
2995             }
2996         }
2997         if (!overflowed) {
2998             register UV xuv = ruv << 3;
2999
3000             if ((xuv >> 3) != ruv) {
3001                 dTHR;
3002                 overflowed = TRUE;
3003                 rnv = (NV) ruv;
3004                 if (ckWARN_d(WARN_OVERFLOW))
3005                     Perl_warner(aTHX_ WARN_OVERFLOW,
3006                                 "Integer overflow in octal number");
3007             }
3008             else
3009                 ruv = xuv | (*s - '0');
3010         }
3011         if (overflowed) {
3012             rnv *= 8.0;
3013             /* If an NV has not enough bits in its mantissa to
3014              * represent an UV this summing of small low-order numbers
3015              * is a waste of time (because the NV cannot preserve
3016              * the low-order bits anyway): we could just remember when
3017              * did we overflow and in the end just multiply rnv by the
3018              * right amount of 8-tuples. */
3019             rnv += (NV)(*s - '0');
3020         }
3021     }
3022     if (!overflowed)
3023         rnv = (NV) ruv;
3024     if (   ( overflowed && rnv > 4294967295.0)
3025 #if UVSIZE > 4
3026         || (!overflowed && ruv > 0xffffffff  )
3027 #endif
3028         ) {
3029         dTHR;
3030         if (ckWARN(WARN_PORTABLE))
3031             Perl_warner(aTHX_ WARN_PORTABLE,
3032                         "Octal number > 037777777777 non-portable");
3033     }
3034     *retlen = s - start;
3035     return rnv;
3036 }
3037
3038 NV
3039 Perl_scan_hex(pTHX_ char *start, I32 len, I32 *retlen)
3040 {
3041     register char *s = start;
3042     register NV rnv = 0.0;
3043     register UV ruv = 0;
3044     register bool seenx = FALSE;
3045     register bool overflowed = FALSE;
3046     char *hexdigit;
3047
3048     for (; len-- && *s; s++) {
3049         hexdigit = strchr((char *) PL_hexdigit, *s);
3050         if (!hexdigit) {
3051             if (*s == '_' && len && *retlen && s[1]
3052                 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
3053             {
3054                 --len;
3055                 ++s;
3056             }
3057             else if (seenx == FALSE && *s == 'x' && ruv == 0) {
3058                 /* Disallow 0xxx0x0xxx... */
3059                 seenx = TRUE;
3060                 continue;
3061             }
3062             else {
3063                 dTHR;
3064                 if (ckWARN(WARN_DIGIT))
3065                     Perl_warner(aTHX_ WARN_DIGIT,
3066                                 "Illegal hexadecimal digit '%c' ignored", *s);
3067                 break;
3068             }
3069         }
3070         if (!overflowed) {
3071             register UV xuv = ruv << 4;
3072
3073             if ((xuv >> 4) != ruv) {
3074                 dTHR;
3075                 overflowed = TRUE;
3076                 rnv = (NV) ruv;
3077                 if (ckWARN_d(WARN_OVERFLOW))
3078                     Perl_warner(aTHX_ WARN_OVERFLOW,
3079                                 "Integer overflow in hexadecimal number");
3080             }
3081             else
3082                 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
3083         }
3084         if (overflowed) {
3085             rnv *= 16.0;
3086             /* If an NV has not enough bits in its mantissa to
3087              * represent an UV this summing of small low-order numbers
3088              * is a waste of time (because the NV cannot preserve
3089              * the low-order bits anyway): we could just remember when
3090              * did we overflow and in the end just multiply rnv by the
3091              * right amount of 16-tuples. */
3092             rnv += (NV)((hexdigit - PL_hexdigit) & 15);
3093         }
3094     }
3095     if (!overflowed)
3096         rnv = (NV) ruv;
3097     if (   ( overflowed && rnv > 4294967295.0)
3098 #if UVSIZE > 4
3099         || (!overflowed && ruv > 0xffffffff  )
3100 #endif
3101         ) { 
3102         dTHR;
3103         if (ckWARN(WARN_PORTABLE))
3104             Perl_warner(aTHX_ WARN_PORTABLE,
3105                         "Hexadecimal number > 0xffffffff non-portable");
3106     }
3107     *retlen = s - start;
3108     return rnv;
3109 }
3110
3111 char*
3112 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3113 {
3114     dTHR;
3115     char *xfound = Nullch;
3116     char *xfailed = Nullch;
3117     char tmpbuf[MAXPATHLEN];
3118     register char *s;
3119     I32 len;
3120     int retval;
3121 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3122 #  define SEARCH_EXTS ".bat", ".cmd", NULL
3123 #  define MAX_EXT_LEN 4
3124 #endif
3125 #ifdef OS2
3126 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3127 #  define MAX_EXT_LEN 4
3128 #endif
3129 #ifdef VMS
3130 #  define SEARCH_EXTS ".pl", ".com", NULL
3131 #  define MAX_EXT_LEN 4
3132 #endif
3133     /* additional extensions to try in each dir if scriptname not found */
3134 #ifdef SEARCH_EXTS
3135     char *exts[] = { SEARCH_EXTS };
3136     char **ext = search_ext ? search_ext : exts;
3137     int extidx = 0, i = 0;
3138     char *curext = Nullch;
3139 #else
3140 #  define MAX_EXT_LEN 0
3141 #endif
3142
3143     /*
3144      * If dosearch is true and if scriptname does not contain path
3145      * delimiters, search the PATH for scriptname.
3146      *
3147      * If SEARCH_EXTS is also defined, will look for each
3148      * scriptname{SEARCH_EXTS} whenever scriptname is not found
3149      * while searching the PATH.
3150      *
3151      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3152      * proceeds as follows:
3153      *   If DOSISH or VMSISH:
3154      *     + look for ./scriptname{,.foo,.bar}
3155      *     + search the PATH for scriptname{,.foo,.bar}
3156      *
3157      *   If !DOSISH:
3158      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
3159      *       this will not look in '.' if it's not in the PATH)
3160      */
3161     tmpbuf[0] = '\0';
3162
3163 #ifdef VMS
3164 #  ifdef ALWAYS_DEFTYPES
3165     len = strlen(scriptname);
3166     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3167         int hasdir, idx = 0, deftypes = 1;
3168         bool seen_dot = 1;
3169
3170         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3171 #  else
3172     if (dosearch) {
3173         int hasdir, idx = 0, deftypes = 1;
3174         bool seen_dot = 1;
3175
3176         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3177 #  endif
3178         /* The first time through, just add SEARCH_EXTS to whatever we
3179          * already have, so we can check for default file types. */
3180         while (deftypes ||
3181                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3182         {
3183             if (deftypes) {
3184                 deftypes = 0;
3185                 *tmpbuf = '\0';
3186             }
3187             if ((strlen(tmpbuf) + strlen(scriptname)
3188                  + MAX_EXT_LEN) >= sizeof tmpbuf)
3189                 continue;       /* don't search dir with too-long name */
3190             strcat(tmpbuf, scriptname);
3191 #else  /* !VMS */
3192
3193 #ifdef DOSISH
3194     if (strEQ(scriptname, "-"))
3195         dosearch = 0;
3196     if (dosearch) {             /* Look in '.' first. */
3197         char *cur = scriptname;
3198 #ifdef SEARCH_EXTS
3199         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3200             while (ext[i])
3201                 if (strEQ(ext[i++],curext)) {
3202                     extidx = -1;                /* already has an ext */
3203                     break;
3204                 }
3205         do {
3206 #endif
3207             DEBUG_p(PerlIO_printf(Perl_debug_log,
3208                                   "Looking for %s\n",cur));
3209             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3210                 && !S_ISDIR(PL_statbuf.st_mode)) {
3211                 dosearch = 0;
3212                 scriptname = cur;
3213 #ifdef SEARCH_EXTS
3214                 break;
3215 #endif
3216             }
3217 #ifdef SEARCH_EXTS
3218             if (cur == scriptname) {
3219                 len = strlen(scriptname);
3220                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3221                     break;
3222                 cur = strcpy(tmpbuf, scriptname);
3223             }
3224         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
3225                  && strcpy(tmpbuf+len, ext[extidx++]));
3226 #endif
3227     }
3228 #endif
3229
3230 #ifdef MACOS_TRADITIONAL
3231     if (dosearch && !strchr(scriptname, ':') &&
3232         (s = PerlEnv_getenv("Commands")))
3233 #else
3234     if (dosearch && !strchr(scriptname, '/')
3235 #ifdef DOSISH
3236                  && !strchr(scriptname, '\\')
3237 #endif
3238                  && (s = PerlEnv_getenv("PATH")))
3239 #endif
3240     {
3241         bool seen_dot = 0;
3242         
3243         PL_bufend = s + strlen(s);
3244         while (s < PL_bufend) {
3245 #ifdef MACOS_TRADITIONAL
3246             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3247                         ',',
3248                         &len);
3249 #else
3250 #if defined(atarist) || defined(DOSISH)
3251             for (len = 0; *s
3252 #  ifdef atarist
3253                     && *s != ','
3254 #  endif
3255                     && *s != ';'; len++, s++) {
3256                 if (len < sizeof tmpbuf)
3257                     tmpbuf[len] = *s;
3258             }
3259             if (len < sizeof tmpbuf)
3260                 tmpbuf[len] = '\0';
3261 #else  /* ! (atarist || DOSISH) */
3262             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3263                         ':',
3264                         &len);
3265 #endif /* ! (atarist || DOSISH) */
3266 #endif /* MACOS_TRADITIONAL */
3267             if (s < PL_bufend)
3268                 s++;
3269             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3270                 continue;       /* don't search dir with too-long name */
3271 #ifdef MACOS_TRADITIONAL
3272             if (len && tmpbuf[len - 1] != ':')
3273                 tmpbuf[len++] = ':';
3274 #else
3275             if (len
3276 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3277                 && tmpbuf[len - 1] != '/'
3278                 && tmpbuf[len - 1] != '\\'
3279 #endif
3280                )
3281                 tmpbuf[len++] = '/';
3282             if (len == 2 && tmpbuf[0] == '.')
3283                 seen_dot = 1;
3284 #endif
3285             (void)strcpy(tmpbuf + len, scriptname);
3286 #endif  /* !VMS */
3287
3288 #ifdef SEARCH_EXTS
3289             len = strlen(tmpbuf);
3290             if (extidx > 0)     /* reset after previous loop */
3291                 extidx = 0;
3292             do {
3293 #endif
3294                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3295                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3296                 if (S_ISDIR(PL_statbuf.st_mode)) {
3297                     retval = -1;
3298                 }
3299 #ifdef SEARCH_EXTS
3300             } while (  retval < 0               /* not there */
3301                     && extidx>=0 && ext[extidx] /* try an extension? */
3302                     && strcpy(tmpbuf+len, ext[extidx++])
3303                 );
3304 #endif
3305             if (retval < 0)
3306                 continue;
3307             if (S_ISREG(PL_statbuf.st_mode)
3308                 && cando(S_IRUSR,TRUE,&PL_statbuf)
3309 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3310                 && cando(S_IXUSR,TRUE,&PL_statbuf)
3311 #endif
3312                 )
3313             {
3314                 xfound = tmpbuf;              /* bingo! */
3315                 break;
3316             }
3317             if (!xfailed)
3318                 xfailed = savepv(tmpbuf);
3319         }
3320 #ifndef DOSISH
3321         if (!xfound && !seen_dot && !xfailed &&
3322             (PerlLIO_stat(scriptname,&PL_statbuf) < 0 
3323              || S_ISDIR(PL_statbuf.st_mode)))
3324 #endif
3325             seen_dot = 1;                       /* Disable message. */
3326         if (!xfound) {
3327             if (flags & 1) {                    /* do or die? */
3328                 Perl_croak(aTHX_ "Can't %s %s%s%s",
3329                       (xfailed ? "execute" : "find"),
3330                       (xfailed ? xfailed : scriptname),
3331                       (xfailed ? "" : " on PATH"),
3332                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3333             }
3334             scriptname = Nullch;
3335         }
3336         if (xfailed)
3337             Safefree(xfailed);
3338         scriptname = xfound;
3339     }
3340     return (scriptname ? savepv(scriptname) : Nullch);
3341 }
3342
3343 #ifndef PERL_GET_CONTEXT_DEFINED
3344
3345 void *
3346 Perl_get_context(void)
3347 {
3348 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3349 #  ifdef OLD_PTHREADS_API
3350     pthread_addr_t t;
3351     if (pthread_getspecific(PL_thr_key, &t))
3352         Perl_croak_nocontext("panic: pthread_getspecific");
3353     return (void*)t;
3354 #  else
3355 #  ifdef I_MACH_CTHREADS
3356     return (void*)cthread_data(cthread_self());
3357 #  else
3358     return (void*)pthread_getspecific(PL_thr_key);
3359 #  endif
3360 #  endif
3361 #else
3362     return (void*)NULL;
3363 #endif
3364 }
3365
3366 void
3367 Perl_set_context(void *t)
3368 {
3369 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3370 #  ifdef I_MACH_CTHREADS
3371     cthread_set_data(cthread_self(), t);
3372 #  else
3373     if (pthread_setspecific(PL_thr_key, t))
3374         Perl_croak_nocontext("panic: pthread_setspecific");
3375 #  endif
3376 #endif
3377 }
3378
3379 #endif /* !PERL_GET_CONTEXT_DEFINED */
3380
3381 #ifdef USE_THREADS
3382
3383 #ifdef FAKE_THREADS
3384 /* Very simplistic scheduler for now */
3385 void
3386 schedule(void)
3387 {
3388     thr = thr->i.next_run;
3389 }
3390
3391 void
3392 Perl_cond_init(pTHX_ perl_cond *cp)
3393 {
3394     *cp = 0;
3395 }
3396
3397 void
3398 Perl_cond_signal(pTHX_ perl_cond *cp)
3399 {
3400     perl_os_thread t;
3401     perl_cond cond = *cp;
3402     
3403     if (!cond)
3404         return;
3405     t = cond->thread;
3406     /* Insert t in the runnable queue just ahead of us */
3407     t->i.next_run = thr->i.next_run;
3408     thr->i.next_run->i.prev_run = t;
3409     t->i.prev_run = thr;
3410     thr->i.next_run = t;
3411     thr->i.wait_queue = 0;
3412     /* Remove from the wait queue */
3413     *cp = cond->next;
3414     Safefree(cond);
3415 }
3416
3417 void
3418 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3419 {
3420     perl_os_thread t;
3421     perl_cond cond, cond_next;
3422     
3423     for (cond = *cp; cond; cond = cond_next) {
3424         t = cond->thread;
3425         /* Insert t in the runnable queue just ahead of us */
3426         t->i.next_run = thr->i.next_run;
3427         thr->i.next_run->i.prev_run = t;
3428         t->i.prev_run = thr;
3429         thr->i.next_run = t;
3430         thr->i.wait_queue = 0;
3431         /* Remove from the wait queue */
3432         cond_next = cond->next;
3433         Safefree(cond);
3434     }
3435     *cp = 0;
3436 }
3437
3438 void
3439 Perl_cond_wait(pTHX_ perl_cond *cp)
3440 {
3441     perl_cond cond;
3442
3443     if (thr->i.next_run == thr)
3444         Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3445     
3446     New(666, cond, 1, struct perl_wait_queue);
3447     cond->thread = thr;
3448     cond->next = *cp;
3449     *cp = cond;
3450     thr->i.wait_queue = cond;
3451     /* Remove ourselves from runnable queue */
3452     thr->i.next_run->i.prev_run = thr->i.prev_run;
3453     thr->i.prev_run->i.next_run = thr->i.next_run;
3454 }
3455 #endif /* FAKE_THREADS */
3456
3457 MAGIC *
3458 Perl_condpair_magic(pTHX_ SV *sv)
3459 {
3460     MAGIC *mg;
3461     
3462     SvUPGRADE(sv, SVt_PVMG);
3463     mg = mg_find(sv, 'm');
3464     if (!mg) {
3465         condpair_t *cp;
3466
3467         New(53, cp, 1, condpair_t);
3468         MUTEX_INIT(&cp->mutex);
3469         COND_INIT(&cp->owner_cond);
3470         COND_INIT(&cp->cond);
3471         cp->owner = 0;
3472         LOCK_CRED_MUTEX;                /* XXX need separate mutex? */
3473         mg = mg_find(sv, 'm');
3474         if (mg) {
3475             /* someone else beat us to initialising it */
3476             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3477             MUTEX_DESTROY(&cp->mutex);
3478             COND_DESTROY(&cp->owner_cond);
3479             COND_DESTROY(&cp->cond);
3480             Safefree(cp);
3481         }
3482         else {
3483             sv_magic(sv, Nullsv, 'm', 0, 0);
3484             mg = SvMAGIC(sv);
3485             mg->mg_ptr = (char *)cp;
3486             mg->mg_len = sizeof(cp);
3487             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3488             DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
3489                                            "%p: condpair_magic %p\n", thr, sv));)
3490         }
3491     }
3492     return mg;
3493 }
3494
3495 /*
3496  * Make a new perl thread structure using t as a prototype. Some of the
3497  * fields for the new thread are copied from the prototype thread, t,
3498  * so t should not be running in perl at the time this function is
3499  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3500  * thread calling new_struct_thread) clearly satisfies this constraint.
3501  */
3502 struct perl_thread *
3503 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3504 {
3505 #if !defined(PERL_IMPLICIT_CONTEXT)
3506     struct perl_thread *thr;
3507 #endif
3508     SV *sv;
3509     SV **svp;
3510     I32 i;
3511
3512     sv = newSVpvn("", 0);
3513     SvGROW(sv, sizeof(struct perl_thread) + 1);
3514     SvCUR_set(sv, sizeof(struct perl_thread));
3515     thr = (Thread) SvPVX(sv);
3516 #ifdef DEBUGGING
3517     memset(thr, 0xab, sizeof(struct perl_thread));
3518     PL_markstack = 0;
3519     PL_scopestack = 0;
3520     PL_savestack = 0;
3521     PL_retstack = 0;
3522     PL_dirty = 0;
3523     PL_localizing = 0;
3524     Zero(&PL_hv_fetch_ent_mh, 1, HE);
3525 #else
3526     Zero(thr, 1, struct perl_thread);
3527 #endif
3528
3529     thr->oursv = sv;
3530     init_stacks();
3531
3532     PL_curcop = &PL_compiling;
3533     thr->interp = t->interp;
3534     thr->cvcache = newHV();
3535     thr->threadsv = newAV();
3536     thr->specific = newAV();
3537     thr->errsv = newSVpvn("", 0);
3538     thr->flags = THRf_R_JOINABLE;
3539     MUTEX_INIT(&thr->mutex);
3540
3541     JMPENV_BOOTSTRAP;
3542
3543     PL_in_eval = EVAL_NULL;     /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
3544     PL_restartop = 0;
3545
3546     PL_statname = NEWSV(66,0);
3547     PL_errors = newSVpvn("", 0);
3548     PL_maxscream = -1;
3549     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3550     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3551     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3552     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3553     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3554     PL_regindent = 0;
3555     PL_reginterp_cnt = 0;
3556     PL_lastscream = Nullsv;
3557     PL_screamfirst = 0;
3558     PL_screamnext = 0;
3559     PL_reg_start_tmp = 0;
3560     PL_reg_start_tmpl = 0;
3561     PL_reg_poscache = Nullch;
3562
3563     /* parent thread's data needs to be locked while we make copy */
3564     MUTEX_LOCK(&t->mutex);
3565
3566 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3567     PL_protect = t->Tprotect;
3568 #endif
3569
3570     PL_curcop = t->Tcurcop;       /* XXX As good a guess as any? */
3571     PL_defstash = t->Tdefstash;   /* XXX maybe these should */
3572     PL_curstash = t->Tcurstash;   /* always be set to main? */
3573
3574     PL_tainted = t->Ttainted;
3575     PL_curpm = t->Tcurpm;         /* XXX No PMOP ref count */
3576     PL_nrs = newSVsv(t->Tnrs);
3577     PL_rs = SvREFCNT_inc(PL_nrs);
3578     PL_last_in_gv = Nullgv;
3579     PL_ofslen = t->Tofslen;
3580     PL_ofs = savepvn(t->Tofs, PL_ofslen);
3581     PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3582     PL_chopset = t->Tchopset;
3583     PL_bodytarget = newSVsv(t->Tbodytarget);
3584     PL_toptarget = newSVsv(t->Ttoptarget);
3585     if (t->Tformtarget == t->Ttoptarget)
3586         PL_formtarget = PL_toptarget;
3587     else
3588         PL_formtarget = PL_bodytarget;
3589
3590     /* Initialise all per-thread SVs that the template thread used */
3591     svp = AvARRAY(t->threadsv);
3592     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3593         if (*svp && *svp != &PL_sv_undef) {
3594             SV *sv = newSVsv(*svp);
3595             av_store(thr->threadsv, i, sv);
3596             sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3597             DEBUG_S(PerlIO_printf(Perl_debug_log,
3598                 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3599                                   (IV)i, t, thr));
3600         }
3601     } 
3602     thr->threadsvp = AvARRAY(thr->threadsv);
3603
3604     MUTEX_LOCK(&PL_threads_mutex);
3605     PL_nthreads++;
3606     thr->tid = ++PL_threadnum;
3607     thr->next = t->next;
3608     thr->prev = t;
3609     t->next = thr;
3610     thr->next->prev = thr;
3611     MUTEX_UNLOCK(&PL_threads_mutex);
3612
3613     /* done copying parent's state */
3614     MUTEX_UNLOCK(&t->mutex);
3615
3616 #ifdef HAVE_THREAD_INTERN
3617     Perl_init_thread_intern(thr);
3618 #endif /* HAVE_THREAD_INTERN */
3619     return thr;
3620 }
3621 #endif /* USE_THREADS */
3622
3623 #if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
3624 /*
3625  * This hack is to force load of "huge" support from libm.a
3626  * So it is in perl for (say) POSIX to use. 
3627  * Needed for SunOS with Sun's 'acc' for example.
3628  */
3629 NV 
3630 Perl_huge(void)
3631 {
3632 #   if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3633     return HUGE_VALL;
3634 #   endif
3635     return HUGE_VAL;
3636 }
3637 #endif
3638
3639 #ifdef PERL_GLOBAL_STRUCT
3640 struct perl_vars *
3641 Perl_GetVars(pTHX)
3642 {
3643  return &PL_Vars;
3644 }
3645 #endif
3646
3647 char **
3648 Perl_get_op_names(pTHX)
3649 {
3650  return PL_op_name;
3651 }
3652
3653 char **
3654 Perl_get_op_descs(pTHX)
3655 {
3656  return PL_op_desc;
3657 }
3658
3659 char *
3660 Perl_get_no_modify(pTHX)
3661 {
3662  return (char*)PL_no_modify;
3663 }
3664
3665 U32 *
3666 Perl_get_opargs(pTHX)
3667 {
3668  return PL_opargs;
3669 }
3670
3671 PPADDR_t*
3672 Perl_get_ppaddr(pTHX)
3673 {
3674  return (PPADDR_t*)PL_ppaddr;
3675 }
3676
3677 #ifndef HAS_GETENV_LEN
3678 char *
3679 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3680 {
3681     char *env_trans = PerlEnv_getenv(env_elem);
3682     if (env_trans)
3683         *len = strlen(env_trans);
3684     return env_trans;
3685 }
3686 #endif
3687
3688
3689 MGVTBL*
3690 Perl_get_vtbl(pTHX_ int vtbl_id)
3691 {
3692     MGVTBL* result = Null(MGVTBL*);
3693
3694     switch(vtbl_id) {
3695     case want_vtbl_sv:
3696         result = &PL_vtbl_sv;
3697         break;
3698     case want_vtbl_env:
3699         result = &PL_vtbl_env;
3700         break;
3701     case want_vtbl_envelem:
3702         result = &PL_vtbl_envelem;
3703         break;
3704     case want_vtbl_sig:
3705         result = &PL_vtbl_sig;
3706         break;
3707     case want_vtbl_sigelem:
3708         result = &PL_vtbl_sigelem;
3709         break;
3710     case want_vtbl_pack:
3711         result = &PL_vtbl_pack;
3712         break;
3713     case want_vtbl_packelem:
3714         result = &PL_vtbl_packelem;
3715         break;
3716     case want_vtbl_dbline:
3717         result = &PL_vtbl_dbline;
3718         break;
3719     case want_vtbl_isa:
3720         result = &PL_vtbl_isa;
3721         break;
3722     case want_vtbl_isaelem:
3723         result = &PL_vtbl_isaelem;
3724         break;
3725     case want_vtbl_arylen:
3726         result = &PL_vtbl_arylen;
3727         break;
3728     case want_vtbl_glob:
3729         result = &PL_vtbl_glob;
3730         break;
3731     case want_vtbl_mglob:
3732         result = &PL_vtbl_mglob;
3733         break;
3734     case want_vtbl_nkeys:
3735         result = &PL_vtbl_nkeys;
3736         break;
3737     case want_vtbl_taint:
3738         result = &PL_vtbl_taint;
3739         break;
3740     case want_vtbl_substr:
3741         result = &PL_vtbl_substr;
3742         break;
3743     case want_vtbl_vec:
3744         result = &PL_vtbl_vec;
3745         break;
3746     case want_vtbl_pos:
3747         result = &PL_vtbl_pos;
3748         break;
3749     case want_vtbl_bm:
3750         result = &PL_vtbl_bm;
3751         break;
3752     case want_vtbl_fm:
3753         result = &PL_vtbl_fm;
3754         break;
3755     case want_vtbl_uvar:
3756         result = &PL_vtbl_uvar;
3757         break;
3758 #ifdef USE_THREADS
3759     case want_vtbl_mutex:
3760         result = &PL_vtbl_mutex;
3761         break;
3762 #endif
3763     case want_vtbl_defelem:
3764         result = &PL_vtbl_defelem;
3765         break;
3766     case want_vtbl_regexp:
3767         result = &PL_vtbl_regexp;
3768         break;
3769     case want_vtbl_regdata:
3770         result = &PL_vtbl_regdata;
3771         break;
3772     case want_vtbl_regdatum:
3773         result = &PL_vtbl_regdatum;
3774         break;
3775 #ifdef USE_LOCALE_COLLATE
3776     case want_vtbl_collxfrm:
3777         result = &PL_vtbl_collxfrm;
3778         break;
3779 #endif
3780     case want_vtbl_amagic:
3781         result = &PL_vtbl_amagic;
3782         break;
3783     case want_vtbl_amagicelem:
3784         result = &PL_vtbl_amagicelem;
3785         break;
3786     case want_vtbl_backref:
3787         result = &PL_vtbl_backref;
3788         break;
3789     }
3790     return result;
3791 }
3792
3793 I32
3794 Perl_my_fflush_all(pTHX)
3795 {
3796 #ifdef FFLUSH_NULL
3797     return PerlIO_flush(NULL);
3798 #else
3799     long open_max = -1;
3800 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3801 #  ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3802     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3803 #  else
3804 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3805     open_max = sysconf(_SC_OPEN_MAX);
3806 #  else
3807 #   ifdef FOPEN_MAX
3808     open_max = FOPEN_MAX;
3809 #   else
3810 #    ifdef OPEN_MAX
3811     open_max = OPEN_MAX;
3812 #    else
3813 #     ifdef _NFILE
3814     open_max = _NFILE;
3815 #     endif
3816 #    endif
3817 #   endif
3818 #  endif
3819 #  endif
3820     if (open_max > 0) {
3821       long i;
3822       for (i = 0; i < open_max; i++)
3823             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3824                 STDIO_STREAM_ARRAY[i]._file < open_max &&
3825                 STDIO_STREAM_ARRAY[i]._flag)
3826                 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3827       return 0;
3828     }
3829 # endif
3830     SETERRNO(EBADF,RMS$_IFI);
3831     return EOF;
3832 #endif
3833 }
3834
3835 NV
3836 Perl_my_atof(pTHX_ const char* s)
3837 {
3838 #ifdef USE_LOCALE_NUMERIC
3839     if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3840         NV x, y;
3841
3842         x = Perl_atof(s);
3843         SET_NUMERIC_STANDARD();
3844         y = Perl_atof(s);
3845         SET_NUMERIC_LOCAL();
3846         if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3847             return y;
3848         return x;
3849     }
3850     else
3851         return Perl_atof(s);
3852 #else
3853     return Perl_atof(s);
3854 #endif
3855 }
3856
3857 void
3858 Perl_report_closed_fh(pTHX_ GV *gv, IO *io, const char *func, const char *obj)
3859 {
3860     SV *sv;
3861     char *name;
3862
3863     assert(gv);
3864
3865     sv = sv_newmortal();
3866     gv_efullname3(sv, gv, Nullch);
3867     name = SvPVX(sv);
3868
3869     Perl_warner(aTHX_ WARN_CLOSED, "%s() on closed %s %s", func, obj, name);
3870
3871     if (io && IoDIRP(io))
3872         Perl_warner(aTHX_ WARN_CLOSED,
3873                     "\t(Are you trying to call %s() on dirhandle %s?)\n",
3874                     func, name);
3875 }