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