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