various win32 odds and ends
[p5sagit/p5-mst-13.2.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-1997, 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 #include "perl.h"
17 #include "perlmem.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 #define FLUSH
55
56 #ifdef LEAKTEST
57
58 static void xstat _((int));
59 long xcount[MAXXCOUNT];
60 long lastxcount[MAXXCOUNT];
61 long xycount[MAXXCOUNT][MAXYCOUNT];
62 long lastxycount[MAXXCOUNT][MAXYCOUNT];
63
64 #endif
65
66 #ifndef MYMALLOC
67
68 /* paranoid version of malloc */
69
70 /* NOTE:  Do not call the next three routines directly.  Use the macros
71  * in handy.h, so that we can easily redefine everything to do tracking of
72  * allocated hunks back to the original New to track down any memory leaks.
73  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
74  */
75
76 Malloc_t
77 safemalloc(MEM_SIZE size)
78 {
79     Malloc_t ptr;
80 #ifdef HAS_64K_LIMIT
81         if (size > 0xffff) {
82                 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
83                 my_exit(1);
84         }
85 #endif /* HAS_64K_LIMIT */
86 #ifdef DEBUGGING
87     if ((long)size < 0)
88         croak("panic: malloc");
89 #endif
90     ptr = PerlMem_malloc(size?size:1);  /* malloc(0) is NASTY on our system */
91 #if !(defined(I286) || defined(atarist))
92     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
93 #else
94     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
95 #endif
96     if (ptr != Nullch)
97         return ptr;
98     else if (nomemok)
99         return Nullch;
100     else {
101         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
102         my_exit(1);
103         return Nullch;
104     }
105     /*NOTREACHED*/
106 }
107
108 /* paranoid version of realloc */
109
110 Malloc_t
111 saferealloc(Malloc_t where,MEM_SIZE size)
112 {
113     Malloc_t ptr;
114 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
115     Malloc_t PerlMem_realloc();
116 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
117
118 #ifdef HAS_64K_LIMIT 
119     if (size > 0xffff) {
120         PerlIO_printf(PerlIO_stderr(),
121                       "Reallocation too large: %lx\n", size) FLUSH;
122         my_exit(1);
123     }
124 #endif /* HAS_64K_LIMIT */
125     if (!size) {
126         safefree(where);
127         return NULL;
128     }
129
130     if (!where)
131         return safemalloc(size);
132 #ifdef DEBUGGING
133     if ((long)size < 0)
134         croak("panic: realloc");
135 #endif
136     ptr = PerlMem_realloc(where,size);
137
138 #if !(defined(I286) || defined(atarist))
139     DEBUG_m( {
140         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,an++);
141         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
142     } )
143 #else
144     DEBUG_m( {
145         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,an++);
146         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
147     } )
148 #endif
149
150     if (ptr != Nullch)
151         return ptr;
152     else if (nomemok)
153         return Nullch;
154     else {
155         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
156         my_exit(1);
157         return Nullch;
158     }
159     /*NOTREACHED*/
160 }
161
162 /* safe version of free */
163
164 Free_t
165 safefree(Malloc_t where)
166 {
167 #if !(defined(I286) || defined(atarist))
168     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,an++));
169 #else
170     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,an++));
171 #endif
172     if (where) {
173         /*SUPPRESS 701*/
174         PerlMem_free(where);
175     }
176 }
177
178 /* safe version of calloc */
179
180 Malloc_t
181 safecalloc(MEM_SIZE count, MEM_SIZE size)
182 {
183     Malloc_t ptr;
184
185 #ifdef HAS_64K_LIMIT
186     if (size * count > 0xffff) {
187         PerlIO_printf(PerlIO_stderr(),
188                       "Allocation too large: %lx\n", size * count) FLUSH;
189         my_exit(1);
190     }
191 #endif /* HAS_64K_LIMIT */
192 #ifdef DEBUGGING
193     if ((long)size < 0 || (long)count < 0)
194         croak("panic: calloc");
195 #endif
196     size *= count;
197     ptr = PerlMem_malloc(size?size:1);  /* malloc(0) is NASTY on our system */
198 #if !(defined(I286) || defined(atarist))
199     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld  x %ld bytes\n",ptr,an++,(long)count,(long)size));
200 #else
201     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
202 #endif
203     if (ptr != Nullch) {
204         memset((void*)ptr, 0, size);
205         return ptr;
206     }
207     else if (nomemok)
208         return Nullch;
209     else {
210         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
211         my_exit(1);
212         return Nullch;
213     }
214     /*NOTREACHED*/
215 }
216
217 #endif /* !MYMALLOC */
218
219 #ifdef LEAKTEST
220
221 struct mem_test_strut {
222     union {
223         long type;
224         char c[2];
225     } u;
226     long size;
227 };
228
229 #    define ALIGN sizeof(struct mem_test_strut)
230
231 #    define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
232 #    define typeof_chunk(ch) \
233         (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
234 #    define set_typeof_chunk(ch,t) \
235         (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
236 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE                            \
237                           ? MAXYCOUNT - 1                               \
238                           : ( (size) > 40                               \
239                               ? ((size) - 1)/8 + 5                      \
240                               : ((size) - 1)/4))
241
242 Malloc_t
243 safexmalloc(I32 x, MEM_SIZE size)
244 {
245     register char* where = (char*)safemalloc(size + ALIGN);
246
247     xcount[x] += size;
248     xycount[x][SIZE_TO_Y(size)]++;
249     set_typeof_chunk(where, x);
250     sizeof_chunk(where) = size;
251     return (Malloc_t)(where + ALIGN);
252 }
253
254 Malloc_t
255 safexrealloc(Malloc_t wh, MEM_SIZE size)
256 {
257     char *where = (char*)wh;
258
259     if (!wh)
260         return safexmalloc(0,size);
261     
262     {
263         MEM_SIZE old = sizeof_chunk(where - ALIGN);
264         int t = typeof_chunk(where - ALIGN);
265         register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
266     
267         xycount[t][SIZE_TO_Y(old)]--;
268         xycount[t][SIZE_TO_Y(size)]++;
269         xcount[t] += size - old;
270         sizeof_chunk(new) = size;
271         return (Malloc_t)(new + ALIGN);
272     }
273 }
274
275 void
276 safexfree(Malloc_t wh)
277 {
278     I32 x;
279     char *where = (char*)wh;
280     MEM_SIZE size;
281     
282     if (!where)
283         return;
284     where -= ALIGN;
285     size = sizeof_chunk(where);
286     x = where[0] + 100 * where[1];
287     xcount[x] -= size;
288     xycount[x][SIZE_TO_Y(size)]--;
289     safefree(where);
290 }
291
292 Malloc_t
293 safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
294 {
295     register char * where = (char*)safexmalloc(x, size * count + ALIGN);
296     xcount[x] += size;
297     xycount[x][SIZE_TO_Y(size)]++;
298     memset((void*)(where + ALIGN), 0, size * count);
299     set_typeof_chunk(where, x);
300     sizeof_chunk(where) = size;
301     return (Malloc_t)(where + ALIGN);
302 }
303
304 static void
305 xstat(int flag)
306 {
307     register I32 i, j, total = 0;
308     I32 subtot[MAXYCOUNT];
309
310     for (j = 0; j < MAXYCOUNT; j++) {
311         subtot[j] = 0;
312     }
313     
314     PerlIO_printf(PerlIO_stderr(), "   Id  subtot   4   8  12  16  20  24  28  32  36  40  48  56  64  72  80 80+\n", total);
315     for (i = 0; i < MAXXCOUNT; i++) {
316         total += xcount[i];
317         for (j = 0; j < MAXYCOUNT; j++) {
318             subtot[j] += xycount[i][j];
319         }
320         if (flag == 0
321             ? xcount[i]                 /* Have something */
322             : (flag == 2 
323                ? xcount[i] != lastxcount[i] /* Changed */
324                : xcount[i] > lastxcount[i])) { /* Growed */
325             PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100, 
326                           flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
327             lastxcount[i] = xcount[i];
328             for (j = 0; j < MAXYCOUNT; j++) {
329                 if ( flag == 0 
330                      ? xycount[i][j]    /* Have something */
331                      : (flag == 2 
332                         ? xycount[i][j] != lastxycount[i][j] /* Changed */
333                         : xycount[i][j] > lastxycount[i][j])) { /* Growed */
334                     PerlIO_printf(PerlIO_stderr(),"%3ld ", 
335                                   flag == 2 
336                                   ? xycount[i][j] - lastxycount[i][j] 
337                                   : xycount[i][j]);
338                     lastxycount[i][j] = xycount[i][j];
339                 } else {
340                     PerlIO_printf(PerlIO_stderr(), "  . ", xycount[i][j]);
341                 }
342             }
343             PerlIO_printf(PerlIO_stderr(), "\n");
344         }
345     }
346     if (flag != 2) {
347         PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
348         for (j = 0; j < MAXYCOUNT; j++) {
349             if (subtot[j]) {
350                 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
351             } else {
352                 PerlIO_printf(PerlIO_stderr(), "  . ");
353             }
354         }
355         PerlIO_printf(PerlIO_stderr(), "\n");   
356     }
357 }
358
359 #endif /* LEAKTEST */
360
361 /* copy a string up to some (non-backslashed) delimiter, if any */
362
363 char *
364 delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
365 {
366     register I32 tolen;
367     for (tolen = 0; from < fromend; from++, tolen++) {
368         if (*from == '\\') {
369             if (from[1] == delim)
370                 from++;
371             else {
372                 if (to < toend)
373                     *to++ = *from;
374                 tolen++;
375                 from++;
376             }
377         }
378         else if (*from == delim)
379             break;
380         if (to < toend)
381             *to++ = *from;
382     }
383     if (to < toend)
384         *to = '\0';
385     *retlen = tolen;
386     return from;
387 }
388
389 /* return ptr to little string in big string, NULL if not found */
390 /* This routine was donated by Corey Satten. */
391
392 char *
393 instr(register char *big, register char *little)
394 {
395     register char *s, *x;
396     register I32 first;
397
398     if (!little)
399         return big;
400     first = *little++;
401     if (!first)
402         return big;
403     while (*big) {
404         if (*big++ != first)
405             continue;
406         for (x=big,s=little; *s; /**/ ) {
407             if (!*x)
408                 return Nullch;
409             if (*s++ != *x++) {
410                 s--;
411                 break;
412             }
413         }
414         if (!*s)
415             return big-1;
416     }
417     return Nullch;
418 }
419
420 /* same as instr but allow embedded nulls */
421
422 char *
423 ninstr(register char *big, register char *bigend, char *little, char *lend)
424 {
425     register char *s, *x;
426     register I32 first = *little;
427     register char *littleend = lend;
428
429     if (!first && little >= littleend)
430         return big;
431     if (bigend - big < littleend - little)
432         return Nullch;
433     bigend -= littleend - little++;
434     while (big <= bigend) {
435         if (*big++ != first)
436             continue;
437         for (x=big,s=little; s < littleend; /**/ ) {
438             if (*s++ != *x++) {
439                 s--;
440                 break;
441             }
442         }
443         if (s >= littleend)
444             return big-1;
445     }
446     return Nullch;
447 }
448
449 /* reverse of the above--find last substring */
450
451 char *
452 rninstr(register char *big, char *bigend, char *little, char *lend)
453 {
454     register char *bigbeg;
455     register char *s, *x;
456     register I32 first = *little;
457     register char *littleend = lend;
458
459     if (!first && little >= littleend)
460         return bigend;
461     bigbeg = big;
462     big = bigend - (littleend - little++);
463     while (big >= bigbeg) {
464         if (*big-- != first)
465             continue;
466         for (x=big+2,s=little; s < littleend; /**/ ) {
467             if (*s++ != *x++) {
468                 s--;
469                 break;
470             }
471         }
472         if (s >= littleend)
473             return big+1;
474     }
475     return Nullch;
476 }
477
478 /*
479  * Set up for a new ctype locale.
480  */
481 void
482 perl_new_ctype(char *newctype)
483 {
484 #ifdef USE_LOCALE_CTYPE
485
486     int i;
487
488     for (i = 0; i < 256; i++) {
489         if (isUPPER_LC(i))
490             fold_locale[i] = toLOWER_LC(i);
491         else if (isLOWER_LC(i))
492             fold_locale[i] = toUPPER_LC(i);
493         else
494             fold_locale[i] = i;
495     }
496
497 #endif /* USE_LOCALE_CTYPE */
498 }
499
500 /*
501  * Set up for a new collation locale.
502  */
503 void
504 perl_new_collate(char *newcoll)
505 {
506 #ifdef USE_LOCALE_COLLATE
507
508     if (! newcoll) {
509         if (collation_name) {
510             ++collation_ix;
511             Safefree(collation_name);
512             collation_name = NULL;
513             collation_standard = TRUE;
514             collxfrm_base = 0;
515             collxfrm_mult = 2;
516         }
517         return;
518     }
519
520     if (! collation_name || strNE(collation_name, newcoll)) {
521         ++collation_ix;
522         Safefree(collation_name);
523         collation_name = savepv(newcoll);
524         collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
525
526         {
527           /*  2: at most so many chars ('a', 'b'). */
528           /* 50: surely no system expands a char more. */
529 #define XFRMBUFSIZE  (2 * 50)
530           char xbuf[XFRMBUFSIZE];
531           Size_t fa = strxfrm(xbuf, "a",  XFRMBUFSIZE);
532           Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
533           SSize_t mult = fb - fa;
534           if (mult < 1)
535               croak("strxfrm() gets absurd");
536           collxfrm_base = (fa > mult) ? (fa - mult) : 0;
537           collxfrm_mult = mult;
538         }
539     }
540
541 #endif /* USE_LOCALE_COLLATE */
542 }
543
544 /*
545  * Set up for a new numeric locale.
546  */
547 void
548 perl_new_numeric(char *newnum)
549 {
550 #ifdef USE_LOCALE_NUMERIC
551
552     if (! newnum) {
553         if (numeric_name) {
554             Safefree(numeric_name);
555             numeric_name = NULL;
556             numeric_standard = TRUE;
557             numeric_local = TRUE;
558         }
559         return;
560     }
561
562     if (! numeric_name || strNE(numeric_name, newnum)) {
563         Safefree(numeric_name);
564         numeric_name = savepv(newnum);
565         numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
566         numeric_local = TRUE;
567     }
568
569 #endif /* USE_LOCALE_NUMERIC */
570 }
571
572 void
573 perl_set_numeric_standard(void)
574 {
575 #ifdef USE_LOCALE_NUMERIC
576
577     if (! numeric_standard) {
578         setlocale(LC_NUMERIC, "C");
579         numeric_standard = TRUE;
580         numeric_local = FALSE;
581     }
582
583 #endif /* USE_LOCALE_NUMERIC */
584 }
585
586 void
587 perl_set_numeric_local(void)
588 {
589 #ifdef USE_LOCALE_NUMERIC
590
591     if (! numeric_local) {
592         setlocale(LC_NUMERIC, numeric_name);
593         numeric_standard = FALSE;
594         numeric_local = TRUE;
595     }
596
597 #endif /* USE_LOCALE_NUMERIC */
598 }
599
600
601 /*
602  * Initialize locale awareness.
603  */
604 int
605 perl_init_i18nl10n(int printwarn)
606 {
607     int ok = 1;
608     /* returns
609      *    1 = set ok or not applicable,
610      *    0 = fallback to C locale,
611      *   -1 = fallback to C locale failed
612      */
613
614 #ifdef USE_LOCALE
615
616 #ifdef USE_LOCALE_CTYPE
617     char *curctype   = NULL;
618 #endif /* USE_LOCALE_CTYPE */
619 #ifdef USE_LOCALE_COLLATE
620     char *curcoll    = NULL;
621 #endif /* USE_LOCALE_COLLATE */
622 #ifdef USE_LOCALE_NUMERIC
623     char *curnum     = NULL;
624 #endif /* USE_LOCALE_NUMERIC */
625     char *lc_all     = PerlEnv_getenv("LC_ALL");
626     char *lang       = PerlEnv_getenv("LANG");
627     bool setlocale_failure = FALSE;
628
629 #ifdef LOCALE_ENVIRON_REQUIRED
630
631     /*
632      * Ultrix setlocale(..., "") fails if there are no environment
633      * variables from which to get a locale name.
634      */
635
636     bool done = FALSE;
637
638 #ifdef LC_ALL
639     if (lang) {
640         if (setlocale(LC_ALL, ""))
641             done = TRUE;
642         else
643             setlocale_failure = TRUE;
644     }
645     if (!setlocale_failure)
646 #endif /* LC_ALL */
647     {
648 #ifdef USE_LOCALE_CTYPE
649         if (! (curctype = setlocale(LC_CTYPE,
650                                     (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
651                                     ? "" : Nullch)))
652             setlocale_failure = TRUE;
653 #endif /* USE_LOCALE_CTYPE */
654 #ifdef USE_LOCALE_COLLATE
655         if (! (curcoll = setlocale(LC_COLLATE,
656                                    (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
657                                    ? "" : Nullch)))
658             setlocale_failure = TRUE;
659 #endif /* USE_LOCALE_COLLATE */
660 #ifdef USE_LOCALE_NUMERIC
661         if (! (curnum = setlocale(LC_NUMERIC,
662                                   (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
663                                   ? "" : Nullch)))
664             setlocale_failure = TRUE;
665 #endif /* USE_LOCALE_NUMERIC */
666     }
667
668 #else /* !LOCALE_ENVIRON_REQUIRED */
669
670 #ifdef LC_ALL
671
672     if (! setlocale(LC_ALL, ""))
673         setlocale_failure = TRUE;
674     else {
675 #ifdef USE_LOCALE_CTYPE
676         curctype = setlocale(LC_CTYPE, Nullch);
677 #endif /* USE_LOCALE_CTYPE */
678 #ifdef USE_LOCALE_COLLATE
679         curcoll = setlocale(LC_COLLATE, Nullch);
680 #endif /* USE_LOCALE_COLLATE */
681 #ifdef USE_LOCALE_NUMERIC
682         curnum = setlocale(LC_NUMERIC, Nullch);
683 #endif /* USE_LOCALE_NUMERIC */
684     }
685
686 #else /* !LC_ALL */
687
688 #ifdef USE_LOCALE_CTYPE
689     if (! (curctype = setlocale(LC_CTYPE, "")))
690         setlocale_failure = TRUE;
691 #endif /* USE_LOCALE_CTYPE */
692 #ifdef USE_LOCALE_COLLATE
693     if (! (curcoll = setlocale(LC_COLLATE, "")))
694         setlocale_failure = TRUE;
695 #endif /* USE_LOCALE_COLLATE */
696 #ifdef USE_LOCALE_NUMERIC
697     if (! (curnum = setlocale(LC_NUMERIC, "")))
698         setlocale_failure = TRUE;
699 #endif /* USE_LOCALE_NUMERIC */
700
701 #endif /* LC_ALL */
702
703 #endif /* !LOCALE_ENVIRON_REQUIRED */
704
705     if (setlocale_failure) {
706         char *p;
707         bool locwarn = (printwarn > 1 || 
708                         printwarn &&
709                         (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
710
711         if (locwarn) {
712 #ifdef LC_ALL
713   
714             PerlIO_printf(PerlIO_stderr(),
715                "perl: warning: Setting locale failed.\n");
716
717 #else /* !LC_ALL */
718   
719             PerlIO_printf(PerlIO_stderr(),
720                "perl: warning: Setting locale failed for the categories:\n\t");
721 #ifdef USE_LOCALE_CTYPE
722             if (! curctype)
723                 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
724 #endif /* USE_LOCALE_CTYPE */
725 #ifdef USE_LOCALE_COLLATE
726             if (! curcoll)
727                 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
728 #endif /* USE_LOCALE_COLLATE */
729 #ifdef USE_LOCALE_NUMERIC
730             if (! curnum)
731                 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
732 #endif /* USE_LOCALE_NUMERIC */
733             PerlIO_printf(PerlIO_stderr(), "\n");
734
735 #endif /* LC_ALL */
736
737             PerlIO_printf(PerlIO_stderr(),
738                 "perl: warning: Please check that your locale settings:\n");
739
740             PerlIO_printf(PerlIO_stderr(),
741                           "\tLC_ALL = %c%s%c,\n",
742                           lc_all ? '"' : '(',
743                           lc_all ? lc_all : "unset",
744                           lc_all ? '"' : ')');
745
746             {
747               char **e;
748               for (e = environ; *e; e++) {
749                   if (strnEQ(*e, "LC_", 3)
750                         && strnNE(*e, "LC_ALL=", 7)
751                         && (p = strchr(*e, '=')))
752                       PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
753                                     (int)(p - *e), *e, p + 1);
754               }
755             }
756
757             PerlIO_printf(PerlIO_stderr(),
758                           "\tLANG = %c%s%c\n",
759                           lang ? '"' : '(',
760                           lang ? lang : "unset",
761                           lang ? '"' : ')');
762
763             PerlIO_printf(PerlIO_stderr(),
764                           "    are supported and installed on your system.\n");
765         }
766
767 #ifdef LC_ALL
768
769         if (setlocale(LC_ALL, "C")) {
770             if (locwarn)
771                 PerlIO_printf(PerlIO_stderr(),
772       "perl: warning: Falling back to the standard locale (\"C\").\n");
773             ok = 0;
774         }
775         else {
776             if (locwarn)
777                 PerlIO_printf(PerlIO_stderr(),
778       "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
779             ok = -1;
780         }
781
782 #else /* ! LC_ALL */
783
784         if (0
785 #ifdef USE_LOCALE_CTYPE
786             || !(curctype || setlocale(LC_CTYPE, "C"))
787 #endif /* USE_LOCALE_CTYPE */
788 #ifdef USE_LOCALE_COLLATE
789             || !(curcoll || setlocale(LC_COLLATE, "C"))
790 #endif /* USE_LOCALE_COLLATE */
791 #ifdef USE_LOCALE_NUMERIC
792             || !(curnum || setlocale(LC_NUMERIC, "C"))
793 #endif /* USE_LOCALE_NUMERIC */
794             )
795         {
796             if (locwarn)
797                 PerlIO_printf(PerlIO_stderr(),
798       "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
799             ok = -1;
800         }
801
802 #endif /* ! LC_ALL */
803
804 #ifdef USE_LOCALE_CTYPE
805         curctype = setlocale(LC_CTYPE, Nullch);
806 #endif /* USE_LOCALE_CTYPE */
807 #ifdef USE_LOCALE_COLLATE
808         curcoll = setlocale(LC_COLLATE, Nullch);
809 #endif /* USE_LOCALE_COLLATE */
810 #ifdef USE_LOCALE_NUMERIC
811         curnum = setlocale(LC_NUMERIC, Nullch);
812 #endif /* USE_LOCALE_NUMERIC */
813     }
814
815 #ifdef USE_LOCALE_CTYPE
816     perl_new_ctype(curctype);
817 #endif /* USE_LOCALE_CTYPE */
818
819 #ifdef USE_LOCALE_COLLATE
820     perl_new_collate(curcoll);
821 #endif /* USE_LOCALE_COLLATE */
822
823 #ifdef USE_LOCALE_NUMERIC
824     perl_new_numeric(curnum);
825 #endif /* USE_LOCALE_NUMERIC */
826
827 #endif /* USE_LOCALE */
828
829     return ok;
830 }
831
832 /* Backwards compatibility. */
833 int
834 perl_init_i18nl14n(int printwarn)
835 {
836     return perl_init_i18nl10n(printwarn);
837 }
838
839 #ifdef USE_LOCALE_COLLATE
840
841 /*
842  * mem_collxfrm() is a bit like strxfrm() but with two important
843  * differences. First, it handles embedded NULs. Second, it allocates
844  * a bit more memory than needed for the transformed data itself.
845  * The real transformed data begins at offset sizeof(collationix).
846  * Please see sv_collxfrm() to see how this is used.
847  */
848 char *
849 mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
850 {
851     char *xbuf;
852     STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
853
854     /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
855     /* the +1 is for the terminating NUL. */
856
857     xAlloc = sizeof(collation_ix) + collxfrm_base + (collxfrm_mult * len) + 1;
858     New(171, xbuf, xAlloc, char);
859     if (! xbuf)
860         goto bad;
861
862     *(U32*)xbuf = collation_ix;
863     xout = sizeof(collation_ix);
864     for (xin = 0; xin < len; ) {
865         SSize_t xused;
866
867         for (;;) {
868             xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
869             if (xused == -1)
870                 goto bad;
871             if (xused < xAlloc - xout)
872                 break;
873             xAlloc = (2 * xAlloc) + 1;
874             Renew(xbuf, xAlloc, char);
875             if (! xbuf)
876                 goto bad;
877         }
878
879         xin += strlen(s + xin) + 1;
880         xout += xused;
881
882         /* Embedded NULs are understood but silently skipped
883          * because they make no sense in locale collation. */
884     }
885
886     xbuf[xout] = '\0';
887     *xlen = xout - sizeof(collation_ix);
888     return xbuf;
889
890   bad:
891     Safefree(xbuf);
892     *xlen = 0;
893     return NULL;
894 }
895
896 #endif /* USE_LOCALE_COLLATE */
897
898 void
899 fbm_compile(SV *sv, U32 flags /* not used yet */)
900 {
901     register unsigned char *s;
902     register unsigned char *table;
903     register U32 i;
904     register U32 len = SvCUR(sv);
905     I32 rarest = 0;
906     U32 frequency = 256;
907
908     sv_upgrade(sv, SVt_PVBM);
909     if (len > 255 || len == 0)  /* TAIL might be on on a zero-length string. */
910         return;                 /* can't have offsets that big */
911     if (len > 2) {
912         Sv_Grow(sv,len + 258);
913         table = (unsigned char*)(SvPVX(sv) + len + 1);
914         s = table - 2;
915         for (i = 0; i < 256; i++) {
916             table[i] = len;
917         }
918         i = 0;
919         while (s >= (unsigned char*)(SvPVX(sv)))
920             {
921                 if (table[*s] == len)
922                     table[*s] = i;
923                 s--,i++;
924             }
925     }
926     sv_magic(sv, Nullsv, 'B', Nullch, 0);       /* deep magic */
927     SvVALID_on(sv);
928
929     s = (unsigned char*)(SvPVX(sv));            /* deeper magic */
930     for (i = 0; i < len; i++) {
931         if (freq[s[i]] < frequency) {
932             rarest = i;
933             frequency = freq[s[i]];
934         }
935     }
936     BmRARE(sv) = s[rarest];
937     BmPREVIOUS(sv) = rarest;
938     DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
939 }
940
941 char *
942 fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr)
943 {
944     register unsigned char *s;
945     register I32 tmp;
946     register I32 littlelen;
947     register unsigned char *little;
948     register unsigned char *table;
949     register unsigned char *olds;
950     register unsigned char *oldlittle;
951
952     if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
953         STRLEN len;
954         char *l = SvPV(littlestr,len);
955         if (!len) {
956             if (SvTAIL(littlestr)) {    /* Can be only 0-len constant
957                                            substr => we can ignore SvVALID */
958                 if (multiline) {
959                     char *t = "\n";
960                     if ((s = (unsigned char*)ninstr((char*)big, (char*)bigend,
961                                                     t, t + len))) {
962                         return (char*)s;
963                     }
964                 }
965                 if (bigend > big && bigend[-1] == '\n')
966                     return (char *)(bigend - 1);
967                 else
968                     return (char *) bigend;
969             }
970             return (char*)big;
971         }
972         return ninstr((char*)big,(char*)bigend, l, l + len);
973     }
974
975     littlelen = SvCUR(littlestr);
976     if (SvTAIL(littlestr) && !multiline) {      /* tail anchored? */
977         if (littlelen > bigend - big)
978             return Nullch;
979         little = (unsigned char*)SvPVX(littlestr);
980         s = bigend - littlelen;
981         if (s > big
982             && bigend[-1] == '\n' 
983             && s[-1] == *little && memEQ((char*)s - 1,(char*)little,littlelen))
984             return (char*)s - 1;        /* how sweet it is */
985         else if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
986             return (char*)s;            /* how sweet it is */
987         return Nullch;
988     }
989     if (littlelen <= 2) {
990         unsigned char c1 = (unsigned char)SvPVX(littlestr)[0];
991         unsigned char c2 = (unsigned char)SvPVX(littlestr)[1];
992         /* This may do extra comparisons if littlelen == 2, but this
993            should be hidden in the noise since we do less indirection. */
994         
995         s = big;
996         bigend -= littlelen;
997         while (s <= bigend) {
998             if (s[0] == c1 
999                 && (littlelen == 1 || s[1] == c2)
1000                 && (!SvTAIL(littlestr)
1001                     || s == bigend
1002                     || s[littlelen] == '\n')) /* Automatically multiline */
1003             {
1004                 return (char*)s;
1005             }
1006             s++;
1007         }
1008         return Nullch;
1009     }
1010     table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
1011     if (--littlelen >= bigend - big)
1012         return Nullch;
1013     s = big + littlelen;
1014     oldlittle = little = table - 2;
1015     if (s < bigend) {
1016       top2:
1017         /*SUPPRESS 560*/
1018         if (tmp = table[*s]) {
1019 #ifdef POINTERRIGOR
1020             if (bigend - s > tmp) {
1021                 s += tmp;
1022                 goto top2;
1023             }
1024 #else
1025             if ((s += tmp) < bigend)
1026                 goto top2;
1027 #endif
1028             return Nullch;
1029         }
1030         else {
1031             tmp = littlelen;    /* less expensive than calling strncmp() */
1032             olds = s;
1033             while (tmp--) {
1034                 if (*--s == *--little)
1035                     continue;
1036               differ:
1037                 s = olds + 1;   /* here we pay the price for failure */
1038                 little = oldlittle;
1039                 if (s < bigend) /* fake up continue to outer loop */
1040                     goto top2;
1041                 return Nullch;
1042             }
1043             if (SvTAIL(littlestr)       /* automatically multiline */
1044                 && olds + 1 != bigend
1045                 && olds[1] != '\n') 
1046                 goto differ;
1047             return (char *)s;
1048         }
1049     }
1050     return Nullch;
1051 }
1052
1053 /* start_shift, end_shift are positive quantities which give offsets
1054    of ends of some substring of bigstr.
1055    If `last' we want the last occurence.
1056    old_posp is the way of communication between consequent calls if
1057    the next call needs to find the . 
1058    The initial *old_posp should be -1.
1059    Note that we do not take into account SvTAIL, so it may give wrong
1060    positives if _ALL flag is set.
1061  */
1062
1063 char *
1064 screaminstr(SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1065 {
1066     register unsigned char *s, *x;
1067     register unsigned char *big;
1068     register I32 pos;
1069     register I32 previous;
1070     register I32 first;
1071     register unsigned char *little;
1072     register I32 stop_pos;
1073     register unsigned char *littleend;
1074     I32 found = 0;
1075
1076     if (*old_posp == -1
1077         ? (pos = screamfirst[BmRARE(littlestr)]) < 0
1078         : (((pos = *old_posp), pos += screamnext[pos]) == 0))
1079         return Nullch;
1080     little = (unsigned char *)(SvPVX(littlestr));
1081     littleend = little + SvCUR(littlestr);
1082     first = *little++;
1083     /* The value of pos we can start at: */
1084     previous = BmPREVIOUS(littlestr);
1085     big = (unsigned char *)(SvPVX(bigstr));
1086     /* The value of pos we can stop at: */
1087     stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1088     if (previous + start_shift > stop_pos) return Nullch;
1089     while (pos < previous + start_shift) {
1090         if (!(pos += screamnext[pos]))
1091             return Nullch;
1092     }
1093 #ifdef POINTERRIGOR
1094     do {
1095         if (pos >= stop_pos) return Nullch;
1096         if (big[pos-previous] != first)
1097             continue;
1098         for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1099             if (*s++ != *x++) {
1100                 s--;
1101                 break;
1102             }
1103         }
1104         if (s == littleend) {
1105             *old_posp = pos;
1106             if (!last) return (char *)(big+pos-previous);
1107             found = 1;
1108         }
1109     } while ( pos += screamnext[pos] );
1110     return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1111 #else /* !POINTERRIGOR */
1112     big -= previous;
1113     do {
1114         if (pos >= stop_pos) return Nullch;
1115         if (big[pos] != first)
1116             continue;
1117         for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1118             if (*s++ != *x++) {
1119                 s--;
1120                 break;
1121             }
1122         }
1123         if (s == littleend) {
1124             *old_posp = pos;
1125             if (!last) return (char *)(big+pos);
1126             found = 1;
1127         }
1128     } while ( pos += screamnext[pos] );
1129     return (last && found) ? (char *)(big+(*old_posp)) : Nullch;
1130 #endif /* POINTERRIGOR */
1131 }
1132
1133 I32
1134 ibcmp(char *s1, char *s2, register I32 len)
1135 {
1136     register U8 *a = (U8 *)s1;
1137     register U8 *b = (U8 *)s2;
1138     while (len--) {
1139         if (*a != *b && *a != fold[*b])
1140             return 1;
1141         a++,b++;
1142     }
1143     return 0;
1144 }
1145
1146 I32
1147 ibcmp_locale(char *s1, char *s2, register I32 len)
1148 {
1149     register U8 *a = (U8 *)s1;
1150     register U8 *b = (U8 *)s2;
1151     while (len--) {
1152         if (*a != *b && *a != fold_locale[*b])
1153             return 1;
1154         a++,b++;
1155     }
1156     return 0;
1157 }
1158
1159 /* copy a string to a safe spot */
1160
1161 char *
1162 savepv(char *sv)
1163 {
1164     register char *newaddr;
1165
1166     New(902,newaddr,strlen(sv)+1,char);
1167     (void)strcpy(newaddr,sv);
1168     return newaddr;
1169 }
1170
1171 /* same thing but with a known length */
1172
1173 char *
1174 savepvn(char *sv, register I32 len)
1175 {
1176     register char *newaddr;
1177
1178     New(903,newaddr,len+1,char);
1179     Copy(sv,newaddr,len,char);          /* might not be null terminated */
1180     newaddr[len] = '\0';                /* is now */
1181     return newaddr;
1182 }
1183
1184 /* the SV for form() and mess() is not kept in an arena */
1185
1186 STATIC SV *
1187 mess_alloc(void)
1188 {
1189     SV *sv;
1190     XPVMG *any;
1191
1192     /* Create as PVMG now, to avoid any upgrading later */
1193     New(905, sv, 1, SV);
1194     Newz(905, any, 1, XPVMG);
1195     SvFLAGS(sv) = SVt_PVMG;
1196     SvANY(sv) = (void*)any;
1197     SvREFCNT(sv) = 1 << 30; /* practically infinite */
1198     return sv;
1199 }
1200
1201 char *
1202 form(const char* pat, ...)
1203 {
1204     va_list args;
1205     va_start(args, pat);
1206     if (!mess_sv)
1207         mess_sv = mess_alloc();
1208     sv_vsetpvfn(mess_sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1209     va_end(args);
1210     return SvPVX(mess_sv);
1211 }
1212
1213 char *
1214 mess(const char *pat, va_list *args)
1215 {
1216     SV *sv;
1217     static char dgd[] = " during global destruction.\n";
1218
1219     if (!mess_sv)
1220         mess_sv = mess_alloc();
1221     sv = mess_sv;
1222     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1223     if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1224         dTHR;
1225         if (dirty)
1226             sv_catpv(sv, dgd);
1227         else {
1228             if (curcop->cop_line)
1229                 sv_catpvf(sv, " at %_ line %ld",
1230                           GvSV(curcop->cop_filegv), (long)curcop->cop_line);
1231             if (GvIO(last_in_gv) && IoLINES(GvIOp(last_in_gv))) {
1232                 bool line_mode = (RsSIMPLE(rs) &&
1233                                   SvLEN(rs) == 1 && *SvPVX(rs) == '\n');
1234                 sv_catpvf(sv, ", <%s> %s %ld",
1235                           last_in_gv == argvgv ? "" : GvNAME(last_in_gv),
1236                           line_mode ? "line" : "chunk", 
1237                           (long)IoLINES(GvIOp(last_in_gv)));
1238             }
1239             sv_catpv(sv, ".\n");
1240         }
1241     }
1242     return SvPVX(sv);
1243 }
1244
1245 OP *
1246 die(const char* pat, ...)
1247 {
1248     dTHR;
1249     va_list args;
1250     char *message;
1251     int was_in_eval = in_eval;
1252     HV *stash;
1253     GV *gv;
1254     CV *cv;
1255
1256 #ifdef USE_THREADS
1257     DEBUG_L(PerlIO_printf(PerlIO_stderr(),
1258                           "%p: die: curstack = %p, mainstack = %p\n",
1259                           thr, curstack, mainstack));
1260 #endif /* USE_THREADS */
1261
1262     va_start(args, pat);
1263     message = pat ? mess(pat, &args) : Nullch;
1264     va_end(args);
1265
1266 #ifdef USE_THREADS
1267     DEBUG_L(PerlIO_printf(PerlIO_stderr(),
1268                           "%p: die: message = %s\ndiehook = %p\n",
1269                           thr, message, diehook));
1270 #endif /* USE_THREADS */
1271     if (diehook) {
1272         /* sv_2cv might call croak() */
1273         SV *olddiehook = diehook;
1274         ENTER;
1275         SAVESPTR(diehook);
1276         diehook = Nullsv;
1277         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1278         LEAVE;
1279         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1280             dSP;
1281             SV *msg;
1282
1283             ENTER;
1284             if(message) {
1285                 msg = newSVpv(message, 0);
1286                 SvREADONLY_on(msg);
1287                 SAVEFREESV(msg);
1288             }
1289             else {
1290                 msg = ERRSV;
1291             }
1292
1293             PUSHSTACK(SI_DIEHOOK);
1294             PUSHMARK(SP);
1295             XPUSHs(msg);
1296             PUTBACK;
1297             perl_call_sv((SV*)cv, G_DISCARD);
1298             POPSTACK();
1299             LEAVE;
1300         }
1301     }
1302
1303     restartop = die_where(message);
1304 #ifdef USE_THREADS
1305     DEBUG_L(PerlIO_printf(PerlIO_stderr(),
1306           "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1307           thr, restartop, was_in_eval, top_env));
1308 #endif /* USE_THREADS */
1309     if ((!restartop && was_in_eval) || top_env->je_prev)
1310         JMPENV_JUMP(3);
1311     return restartop;
1312 }
1313
1314 void
1315 croak(const char* pat, ...)
1316 {
1317     dTHR;
1318     va_list args;
1319     char *message;
1320     HV *stash;
1321     GV *gv;
1322     CV *cv;
1323
1324     va_start(args, pat);
1325     message = mess(pat, &args);
1326     va_end(args);
1327 #ifdef USE_THREADS
1328     DEBUG_L(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1329 #endif /* USE_THREADS */
1330     if (diehook) {
1331         /* sv_2cv might call croak() */
1332         SV *olddiehook = diehook;
1333         ENTER;
1334         SAVESPTR(diehook);
1335         diehook = Nullsv;
1336         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1337         LEAVE;
1338         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1339             dSP;
1340             SV *msg;
1341
1342             ENTER;
1343             msg = newSVpv(message, 0);
1344             SvREADONLY_on(msg);
1345             SAVEFREESV(msg);
1346
1347             PUSHSTACK(SI_DIEHOOK);
1348             PUSHMARK(SP);
1349             XPUSHs(msg);
1350             PUTBACK;
1351             perl_call_sv((SV*)cv, G_DISCARD);
1352             POPSTACK();
1353             LEAVE;
1354         }
1355     }
1356     if (in_eval) {
1357         restartop = die_where(message);
1358         JMPENV_JUMP(3);
1359     }
1360     PerlIO_puts(PerlIO_stderr(),message);
1361     (void)PerlIO_flush(PerlIO_stderr());
1362     my_failure_exit();
1363 }
1364
1365 void
1366 warn(const char* pat,...)
1367 {
1368     va_list args;
1369     char *message;
1370     HV *stash;
1371     GV *gv;
1372     CV *cv;
1373
1374     va_start(args, pat);
1375     message = mess(pat, &args);
1376     va_end(args);
1377
1378     if (warnhook) {
1379         /* sv_2cv might call warn() */
1380         dTHR;
1381         SV *oldwarnhook = warnhook;
1382         ENTER;
1383         SAVESPTR(warnhook);
1384         warnhook = Nullsv;
1385         cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1386         LEAVE;
1387         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1388             dSP;
1389             SV *msg;
1390
1391             ENTER;
1392             msg = newSVpv(message, 0);
1393             SvREADONLY_on(msg);
1394             SAVEFREESV(msg);
1395
1396             PUSHSTACK(SI_WARNHOOK);
1397             PUSHMARK(SP);
1398             XPUSHs(msg);
1399             PUTBACK;
1400             perl_call_sv((SV*)cv, G_DISCARD);
1401             POPSTACK();
1402             LEAVE;
1403             return;
1404         }
1405     }
1406     PerlIO_puts(PerlIO_stderr(),message);
1407 #ifdef LEAKTEST
1408     DEBUG_L(*message == '!' 
1409             ? (xstat(message[1]=='!'
1410                      ? (message[2]=='!' ? 2 : 1)
1411                      : 0)
1412                , 0)
1413             : 0);
1414 #endif
1415     (void)PerlIO_flush(PerlIO_stderr());
1416 }
1417
1418 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
1419 #ifndef WIN32
1420 void
1421 my_setenv(char *nam, char *val)
1422 {
1423     register I32 i=setenv_getix(nam);           /* where does it go? */
1424
1425     if (environ == origenviron) {       /* need we copy environment? */
1426         I32 j;
1427         I32 max;
1428         char **tmpenv;
1429
1430         /*SUPPRESS 530*/
1431         for (max = i; environ[max]; max++) ;
1432         New(901,tmpenv, max+2, char*);
1433         for (j=0; j<max; j++)           /* copy environment */
1434             tmpenv[j] = savepv(environ[j]);
1435         tmpenv[max] = Nullch;
1436         environ = tmpenv;               /* tell exec where it is now */
1437     }
1438     if (!val) {
1439         Safefree(environ[i]);
1440         while (environ[i]) {
1441             environ[i] = environ[i+1];
1442             i++;
1443         }
1444         return;
1445     }
1446     if (!environ[i]) {                  /* does not exist yet */
1447         Renew(environ, i+2, char*);     /* just expand it a bit */
1448         environ[i+1] = Nullch;  /* make sure it's null terminated */
1449     }
1450     else
1451         Safefree(environ[i]);
1452     New(904, environ[i], strlen(nam) + strlen(val) + 2, char);
1453 #ifndef MSDOS
1454     (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1455 #else
1456     /* MS-DOS requires environment variable names to be in uppercase */
1457     /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1458      * some utilities and applications may break because they only look
1459      * for upper case strings. (Fixed strupr() bug here.)]
1460      */
1461     strcpy(environ[i],nam); strupr(environ[i]);
1462     (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1463 #endif /* MSDOS */
1464 }
1465
1466 #else /* if WIN32 */
1467
1468 void
1469 my_setenv(char *nam,char *val)
1470 {
1471
1472 #ifdef USE_WIN32_RTL_ENV
1473
1474     register char *envstr;
1475     STRLEN namlen = strlen(nam);
1476     STRLEN vallen;
1477     char *oldstr = environ[setenv_getix(nam)];
1478
1479     /* putenv() has totally broken semantics in both the Borland
1480      * and Microsoft CRTLs.  They either store the passed pointer in
1481      * the environment without making a copy, or make a copy and don't
1482      * free it. And on top of that, they dont free() old entries that
1483      * are being replaced/deleted.  This means the caller must
1484      * free any old entries somehow, or we end up with a memory
1485      * leak every time my_setenv() is called.  One might think
1486      * one could directly manipulate environ[], like the UNIX code
1487      * above, but direct changes to environ are not allowed when
1488      * calling putenv(), since the RTLs maintain an internal
1489      * *copy* of environ[]. Bad, bad, *bad* stink.
1490      * GSAR 97-06-07
1491      */
1492
1493     if (!val) {
1494         if (!oldstr)
1495             return;
1496         val = "";
1497         vallen = 0;
1498     }
1499     else
1500         vallen = strlen(val);
1501     New(904, envstr, namlen + vallen + 3, char);
1502     (void)sprintf(envstr,"%s=%s",nam,val);
1503     (void)PerlEnv_putenv(envstr);
1504     if (oldstr)
1505         Safefree(oldstr);
1506 #ifdef _MSC_VER
1507     Safefree(envstr);           /* MSVCRT leaks without this */
1508 #endif
1509
1510 #else /* !USE_WIN32_RTL_ENV */
1511
1512     /* The sane way to deal with the environment.
1513      * Has these advantages over putenv() & co.:
1514      *  * enables us to store a truly empty value in the
1515      *    environment (like in UNIX).
1516      *  * we don't have to deal with RTL globals, bugs and leaks.
1517      *  * Much faster.
1518      * Why you may want to enable USE_WIN32_RTL_ENV:
1519      *  * environ[] and RTL functions will not reflect changes,
1520      *    which might be an issue if extensions want to access
1521      *    the env. via RTL.  This cuts both ways, since RTL will
1522      *    not see changes made by extensions that call the Win32
1523      *    functions directly, either.
1524      * GSAR 97-06-07
1525      */
1526     SetEnvironmentVariable(nam,val);
1527
1528 #endif
1529 }
1530
1531 #endif /* WIN32 */
1532
1533 I32
1534 setenv_getix(char *nam)
1535 {
1536     register I32 i, len = strlen(nam);
1537
1538     for (i = 0; environ[i]; i++) {
1539         if (
1540 #ifdef WIN32
1541             strnicmp(environ[i],nam,len) == 0
1542 #else
1543             strnEQ(environ[i],nam,len)
1544 #endif
1545             && environ[i][len] == '=')
1546             break;                      /* strnEQ must come first to avoid */
1547     }                                   /* potential SEGV's */
1548     return i;
1549 }
1550
1551 #endif /* !VMS */
1552
1553 #ifdef UNLINK_ALL_VERSIONS
1554 I32
1555 unlnk(f)        /* unlink all versions of a file */
1556 char *f;
1557 {
1558     I32 i;
1559
1560     for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1561     return i ? 0 : -1;
1562 }
1563 #endif
1564
1565 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1566 char *
1567 my_bcopy(register char *from,register char *to,register I32 len)
1568 {
1569     char *retval = to;
1570
1571     if (from - to >= 0) {
1572         while (len--)
1573             *to++ = *from++;
1574     }
1575     else {
1576         to += len;
1577         from += len;
1578         while (len--)
1579             *(--to) = *(--from);
1580     }
1581     return retval;
1582 }
1583 #endif
1584
1585 #ifndef HAS_MEMSET
1586 void *
1587 my_memset(loc,ch,len)
1588 register char *loc;
1589 register I32 ch;
1590 register I32 len;
1591 {
1592     char *retval = loc;
1593
1594     while (len--)
1595         *loc++ = ch;
1596     return retval;
1597 }
1598 #endif
1599
1600 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1601 char *
1602 my_bzero(loc,len)
1603 register char *loc;
1604 register I32 len;
1605 {
1606     char *retval = loc;
1607
1608     while (len--)
1609         *loc++ = 0;
1610     return retval;
1611 }
1612 #endif
1613
1614 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1615 I32
1616 my_memcmp(s1,s2,len)
1617 char *s1;
1618 char *s2;
1619 register I32 len;
1620 {
1621     register U8 *a = (U8 *)s1;
1622     register U8 *b = (U8 *)s2;
1623     register I32 tmp;
1624
1625     while (len--) {
1626         if (tmp = *a++ - *b++)
1627             return tmp;
1628     }
1629     return 0;
1630 }
1631 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1632
1633 #ifndef HAS_VPRINTF
1634
1635 #ifdef USE_CHAR_VSPRINTF
1636 char *
1637 #else
1638 int
1639 #endif
1640 vsprintf(dest, pat, args)
1641 char *dest;
1642 const char *pat;
1643 char *args;
1644 {
1645     FILE fakebuf;
1646
1647     fakebuf._ptr = dest;
1648     fakebuf._cnt = 32767;
1649 #ifndef _IOSTRG
1650 #define _IOSTRG 0
1651 #endif
1652     fakebuf._flag = _IOWRT|_IOSTRG;
1653     _doprnt(pat, args, &fakebuf);       /* what a kludge */
1654     (void)putc('\0', &fakebuf);
1655 #ifdef USE_CHAR_VSPRINTF
1656     return(dest);
1657 #else
1658     return 0;           /* perl doesn't use return value */
1659 #endif
1660 }
1661
1662 #endif /* HAS_VPRINTF */
1663
1664 #ifdef MYSWAP
1665 #if BYTEORDER != 0x4321
1666 short
1667 my_swap(short s)
1668 {
1669 #if (BYTEORDER & 1) == 0
1670     short result;
1671
1672     result = ((s & 255) << 8) + ((s >> 8) & 255);
1673     return result;
1674 #else
1675     return s;
1676 #endif
1677 }
1678
1679 long
1680 my_htonl(long l)
1681 {
1682     union {
1683         long result;
1684         char c[sizeof(long)];
1685     } u;
1686
1687 #if BYTEORDER == 0x1234
1688     u.c[0] = (l >> 24) & 255;
1689     u.c[1] = (l >> 16) & 255;
1690     u.c[2] = (l >> 8) & 255;
1691     u.c[3] = l & 255;
1692     return u.result;
1693 #else
1694 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1695     croak("Unknown BYTEORDER\n");
1696 #else
1697     register I32 o;
1698     register I32 s;
1699
1700     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1701         u.c[o & 0xf] = (l >> s) & 255;
1702     }
1703     return u.result;
1704 #endif
1705 #endif
1706 }
1707
1708 long
1709 my_ntohl(long l)
1710 {
1711     union {
1712         long l;
1713         char c[sizeof(long)];
1714     } u;
1715
1716 #if BYTEORDER == 0x1234
1717     u.c[0] = (l >> 24) & 255;
1718     u.c[1] = (l >> 16) & 255;
1719     u.c[2] = (l >> 8) & 255;
1720     u.c[3] = l & 255;
1721     return u.l;
1722 #else
1723 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1724     croak("Unknown BYTEORDER\n");
1725 #else
1726     register I32 o;
1727     register I32 s;
1728
1729     u.l = l;
1730     l = 0;
1731     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1732         l |= (u.c[o & 0xf] & 255) << s;
1733     }
1734     return l;
1735 #endif
1736 #endif
1737 }
1738
1739 #endif /* BYTEORDER != 0x4321 */
1740 #endif /* MYSWAP */
1741
1742 /*
1743  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1744  * If these functions are defined,
1745  * the BYTEORDER is neither 0x1234 nor 0x4321.
1746  * However, this is not assumed.
1747  * -DWS
1748  */
1749
1750 #define HTOV(name,type)                                         \
1751         type                                                    \
1752         name (n)                                                \
1753         register type n;                                        \
1754         {                                                       \
1755             union {                                             \
1756                 type value;                                     \
1757                 char c[sizeof(type)];                           \
1758             } u;                                                \
1759             register I32 i;                                     \
1760             register I32 s;                                     \
1761             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
1762                 u.c[i] = (n >> s) & 0xFF;                       \
1763             }                                                   \
1764             return u.value;                                     \
1765         }
1766
1767 #define VTOH(name,type)                                         \
1768         type                                                    \
1769         name (n)                                                \
1770         register type n;                                        \
1771         {                                                       \
1772             union {                                             \
1773                 type value;                                     \
1774                 char c[sizeof(type)];                           \
1775             } u;                                                \
1776             register I32 i;                                     \
1777             register I32 s;                                     \
1778             u.value = n;                                        \
1779             n = 0;                                              \
1780             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
1781                 n += (u.c[i] & 0xFF) << s;                      \
1782             }                                                   \
1783             return n;                                           \
1784         }
1785
1786 #if defined(HAS_HTOVS) && !defined(htovs)
1787 HTOV(htovs,short)
1788 #endif
1789 #if defined(HAS_HTOVL) && !defined(htovl)
1790 HTOV(htovl,long)
1791 #endif
1792 #if defined(HAS_VTOHS) && !defined(vtohs)
1793 VTOH(vtohs,short)
1794 #endif
1795 #if defined(HAS_VTOHL) && !defined(vtohl)
1796 VTOH(vtohl,long)
1797 #endif
1798
1799     /* VMS' my_popen() is in VMS.c, same with OS/2. */
1800 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
1801 PerlIO *
1802 my_popen(char *cmd, char *mode)
1803 {
1804     int p[2];
1805     register I32 This, that;
1806     register I32 pid;
1807     SV *sv;
1808     I32 doexec = strNE(cmd,"-");
1809
1810 #ifdef OS2
1811     if (doexec) {
1812         return my_syspopen(cmd,mode);
1813     }
1814 #endif 
1815     This = (*mode == 'w');
1816     that = !This;
1817     if (doexec && tainting) {
1818         taint_env();
1819         taint_proper("Insecure %s%s", "EXEC");
1820     }
1821     if (PerlProc_pipe(p) < 0)
1822         return Nullfp;
1823     while ((pid = (doexec?vfork():fork())) < 0) {
1824         if (errno != EAGAIN) {
1825             PerlLIO_close(p[This]);
1826             if (!doexec)
1827                 croak("Can't fork");
1828             return Nullfp;
1829         }
1830         sleep(5);
1831     }
1832     if (pid == 0) {
1833         GV* tmpgv;
1834
1835 #undef THIS
1836 #undef THAT
1837 #define THIS that
1838 #define THAT This
1839         PerlLIO_close(p[THAT]);
1840         if (p[THIS] != (*mode == 'r')) {
1841             PerlLIO_dup2(p[THIS], *mode == 'r');
1842             PerlLIO_close(p[THIS]);
1843         }
1844         if (doexec) {
1845 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1846             int fd;
1847
1848 #ifndef NOFILE
1849 #define NOFILE 20
1850 #endif
1851             for (fd = maxsysfd + 1; fd < NOFILE; fd++)
1852                 PerlLIO_close(fd);
1853 #endif
1854             do_exec(cmd);       /* may or may not use the shell */
1855             PerlProc__exit(1);
1856         }
1857         /*SUPPRESS 560*/
1858         if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1859             sv_setiv(GvSV(tmpgv), (IV)getpid());
1860         forkprocess = 0;
1861         hv_clear(pidstatus);    /* we have no children */
1862         return Nullfp;
1863 #undef THIS
1864 #undef THAT
1865     }
1866     do_execfree();      /* free any memory malloced by child on vfork */
1867     PerlLIO_close(p[that]);
1868     if (p[that] < p[This]) {
1869         PerlLIO_dup2(p[This], p[that]);
1870         PerlLIO_close(p[This]);
1871         p[This] = p[that];
1872     }
1873     sv = *av_fetch(fdpid,p[This],TRUE);
1874     (void)SvUPGRADE(sv,SVt_IV);
1875     SvIVX(sv) = pid;
1876     forkprocess = pid;
1877     return PerlIO_fdopen(p[This], mode);
1878 }
1879 #else
1880 #if defined(atarist) || defined(DJGPP)
1881 FILE *popen();
1882 PerlIO *
1883 my_popen(cmd,mode)
1884 char    *cmd;
1885 char    *mode;
1886 {
1887     /* Needs work for PerlIO ! */
1888     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
1889     return popen(PerlIO_exportFILE(cmd, 0), mode);
1890 }
1891 #endif
1892
1893 #endif /* !DOSISH */
1894
1895 #ifdef DUMP_FDS
1896 void
1897 dump_fds(char *s)
1898 {
1899     int fd;
1900     struct stat tmpstatbuf;
1901
1902     PerlIO_printf(PerlIO_stderr(),"%s", s);
1903     for (fd = 0; fd < 32; fd++) {
1904         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
1905             PerlIO_printf(PerlIO_stderr()," %d",fd);
1906     }
1907     PerlIO_printf(PerlIO_stderr(),"\n");
1908 }
1909 #endif  /* DUMP_FDS */
1910
1911 #ifndef HAS_DUP2
1912 int
1913 dup2(oldfd,newfd)
1914 int oldfd;
1915 int newfd;
1916 {
1917 #if defined(HAS_FCNTL) && defined(F_DUPFD)
1918     if (oldfd == newfd)
1919         return oldfd;
1920     PerlLIO_close(newfd);
1921     return fcntl(oldfd, F_DUPFD, newfd);
1922 #else
1923 #define DUP2_MAX_FDS 256
1924     int fdtmp[DUP2_MAX_FDS];
1925     I32 fdx = 0;
1926     int fd;
1927
1928     if (oldfd == newfd)
1929         return oldfd;
1930     PerlLIO_close(newfd);
1931     /* good enough for low fd's... */
1932     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
1933         if (fdx >= DUP2_MAX_FDS) {
1934             PerlLIO_close(fd);
1935             fd = -1;
1936             break;
1937         }
1938         fdtmp[fdx++] = fd;
1939     }
1940     while (fdx > 0)
1941         PerlLIO_close(fdtmp[--fdx]);
1942     return fd;
1943 #endif
1944 }
1945 #endif
1946
1947
1948 #ifdef HAS_SIGACTION
1949
1950 Sighandler_t
1951 rsignal(int signo, Sighandler_t handler)
1952 {
1953     struct sigaction act, oact;
1954
1955     act.sa_handler = handler;
1956     sigemptyset(&act.sa_mask);
1957     act.sa_flags = 0;
1958 #ifdef SA_RESTART
1959     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1960 #endif
1961     if (sigaction(signo, &act, &oact) == -1)
1962         return SIG_ERR;
1963     else
1964         return oact.sa_handler;
1965 }
1966
1967 Sighandler_t
1968 rsignal_state(int signo)
1969 {
1970     struct sigaction oact;
1971
1972     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
1973         return SIG_ERR;
1974     else
1975         return oact.sa_handler;
1976 }
1977
1978 int
1979 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
1980 {
1981     struct sigaction act;
1982
1983     act.sa_handler = handler;
1984     sigemptyset(&act.sa_mask);
1985     act.sa_flags = 0;
1986 #ifdef SA_RESTART
1987     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1988 #endif
1989     return sigaction(signo, &act, save);
1990 }
1991
1992 int
1993 rsignal_restore(int signo, Sigsave_t *save)
1994 {
1995     return sigaction(signo, save, (struct sigaction *)NULL);
1996 }
1997
1998 #else /* !HAS_SIGACTION */
1999
2000 Sighandler_t
2001 rsignal(int signo, Sighandler_t handler)
2002 {
2003     return PerlProc_signal(signo, handler);
2004 }
2005
2006 static int sig_trapped;
2007
2008 static
2009 Signal_t
2010 sig_trap(int signo)
2011 {
2012     sig_trapped++;
2013 }
2014
2015 Sighandler_t
2016 rsignal_state(int signo)
2017 {
2018     Sighandler_t oldsig;
2019
2020     sig_trapped = 0;
2021     oldsig = PerlProc_signal(signo, sig_trap);
2022     PerlProc_signal(signo, oldsig);
2023     if (sig_trapped)
2024         PerlProc_kill(getpid(), signo);
2025     return oldsig;
2026 }
2027
2028 int
2029 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2030 {
2031     *save = PerlProc_signal(signo, handler);
2032     return (*save == SIG_ERR) ? -1 : 0;
2033 }
2034
2035 int
2036 rsignal_restore(int signo, Sigsave_t *save)
2037 {
2038     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2039 }
2040
2041 #endif /* !HAS_SIGACTION */
2042
2043     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2044 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
2045 I32
2046 my_pclose(PerlIO *ptr)
2047 {
2048     Sigsave_t hstat, istat, qstat;
2049     int status;
2050     SV **svp;
2051     int pid;
2052     int pid2;
2053     bool close_failed;
2054     int saved_errno;
2055 #ifdef VMS
2056     int saved_vaxc_errno;
2057 #endif
2058 #ifdef WIN32
2059     int saved_win32_errno;
2060 #endif
2061
2062     svp = av_fetch(fdpid,PerlIO_fileno(ptr),TRUE);
2063     pid = (int)SvIVX(*svp);
2064     SvREFCNT_dec(*svp);
2065     *svp = &sv_undef;
2066 #ifdef OS2
2067     if (pid == -1) {                    /* Opened by popen. */
2068         return my_syspclose(ptr);
2069     }
2070 #endif 
2071     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2072         saved_errno = errno;
2073 #ifdef VMS
2074         saved_vaxc_errno = vaxc$errno;
2075 #endif
2076 #ifdef WIN32
2077         saved_win32_errno = GetLastError();
2078 #endif
2079     }
2080 #ifdef UTS
2081     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2082 #endif
2083     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2084     rsignal_save(SIGINT, SIG_IGN, &istat);
2085     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2086     do {
2087         pid2 = wait4pid(pid, &status, 0);
2088     } while (pid2 == -1 && errno == EINTR);
2089     rsignal_restore(SIGHUP, &hstat);
2090     rsignal_restore(SIGINT, &istat);
2091     rsignal_restore(SIGQUIT, &qstat);
2092     if (close_failed) {
2093         SETERRNO(saved_errno, saved_vaxc_errno);
2094         return -1;
2095     }
2096     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2097 }
2098 #endif /* !DOSISH */
2099
2100 #if  !defined(DOSISH) || defined(OS2) || defined(WIN32)
2101 I32
2102 wait4pid(int pid, int *statusp, int flags)
2103 {
2104     SV *sv;
2105     SV** svp;
2106     char spid[TYPE_CHARS(int)];
2107
2108     if (!pid)
2109         return -1;
2110     if (pid > 0) {
2111         sprintf(spid, "%d", pid);
2112         svp = hv_fetch(pidstatus,spid,strlen(spid),FALSE);
2113         if (svp && *svp != &sv_undef) {
2114             *statusp = SvIVX(*svp);
2115             (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
2116             return pid;
2117         }
2118     }
2119     else {
2120         HE *entry;
2121
2122         hv_iterinit(pidstatus);
2123         if (entry = hv_iternext(pidstatus)) {
2124             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2125             sv = hv_iterval(pidstatus,entry);
2126             *statusp = SvIVX(sv);
2127             sprintf(spid, "%d", pid);
2128             (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
2129             return pid;
2130         }
2131     }
2132 #ifdef HAS_WAITPID
2133 #  ifdef HAS_WAITPID_RUNTIME
2134     if (!HAS_WAITPID_RUNTIME)
2135         goto hard_way;
2136 #  endif
2137     return PerlProc_waitpid(pid,statusp,flags);
2138 #endif
2139 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2140     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2141 #endif
2142 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2143   hard_way:
2144     {
2145         I32 result;
2146         if (flags)
2147             croak("Can't do waitpid with flags");
2148         else {
2149             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2150                 pidgone(result,*statusp);
2151             if (result < 0)
2152                 *statusp = -1;
2153         }
2154         return result;
2155     }
2156 #endif
2157 }
2158 #endif /* !DOSISH || OS2 || WIN32 */
2159
2160 void
2161 /*SUPPRESS 590*/
2162 pidgone(int pid, int status)
2163 {
2164     register SV *sv;
2165     char spid[TYPE_CHARS(int)];
2166
2167     sprintf(spid, "%d", pid);
2168     sv = *hv_fetch(pidstatus,spid,strlen(spid),TRUE);
2169     (void)SvUPGRADE(sv,SVt_IV);
2170     SvIVX(sv) = status;
2171     return;
2172 }
2173
2174 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2175 int pclose();
2176 #ifdef HAS_FORK
2177 int                                     /* Cannot prototype with I32
2178                                            in os2ish.h. */
2179 my_syspclose(ptr)
2180 #else
2181 I32
2182 my_pclose(ptr)
2183 #endif 
2184 PerlIO *ptr;
2185 {
2186     /* Needs work for PerlIO ! */
2187     FILE *f = PerlIO_findFILE(ptr);
2188     I32 result = pclose(f);
2189     PerlIO_releaseFILE(ptr,f);
2190     return result;
2191 }
2192 #endif
2193
2194 void
2195 repeatcpy(register char *to, register char *from, I32 len, register I32 count)
2196 {
2197     register I32 todo;
2198     register char *frombase = from;
2199
2200     if (len == 1) {
2201         todo = *from;
2202         while (count-- > 0)
2203             *to++ = todo;
2204         return;
2205     }
2206     while (count-- > 0) {
2207         for (todo = len; todo > 0; todo--) {
2208             *to++ = *from++;
2209         }
2210         from = frombase;
2211     }
2212 }
2213
2214 #ifndef CASTNEGFLOAT
2215 U32
2216 cast_ulong(f)
2217 double f;
2218 {
2219     long along;
2220
2221 #if CASTFLAGS & 2
2222 #   define BIGDOUBLE 2147483648.0
2223     if (f >= BIGDOUBLE)
2224         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2225 #endif
2226     if (f >= 0.0)
2227         return (unsigned long)f;
2228     along = (long)f;
2229     return (unsigned long)along;
2230 }
2231 # undef BIGDOUBLE
2232 #endif
2233
2234 #ifndef CASTI32
2235
2236 /* Unfortunately, on some systems the cast_uv() function doesn't
2237    work with the system-supplied definition of ULONG_MAX.  The
2238    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2239    problem with the compiler constant folding.
2240
2241    In any case, this workaround should be fine on any two's complement
2242    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2243    ccflags.
2244                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2245 */
2246
2247 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2248    of LONG_(MIN/MAX).
2249                            -- Kenneth Albanowski <kjahds@kjahds.com>
2250 */                                      
2251
2252 #ifndef MY_UV_MAX
2253 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2254 #endif
2255
2256 I32
2257 cast_i32(f)
2258 double f;
2259 {
2260     if (f >= I32_MAX)
2261         return (I32) I32_MAX;
2262     if (f <= I32_MIN)
2263         return (I32) I32_MIN;
2264     return (I32) f;
2265 }
2266
2267 IV
2268 cast_iv(f)
2269 double f;
2270 {
2271     if (f >= IV_MAX)
2272         return (IV) IV_MAX;
2273     if (f <= IV_MIN)
2274         return (IV) IV_MIN;
2275     return (IV) f;
2276 }
2277
2278 UV
2279 cast_uv(f)
2280 double f;
2281 {
2282     if (f >= MY_UV_MAX)
2283         return (UV) MY_UV_MAX;
2284     return (UV) f;
2285 }
2286
2287 #endif
2288
2289 #ifndef HAS_RENAME
2290 I32
2291 same_dirent(a,b)
2292 char *a;
2293 char *b;
2294 {
2295     char *fa = strrchr(a,'/');
2296     char *fb = strrchr(b,'/');
2297     struct stat tmpstatbuf1;
2298     struct stat tmpstatbuf2;
2299     SV *tmpsv = sv_newmortal();
2300
2301     if (fa)
2302         fa++;
2303     else
2304         fa = a;
2305     if (fb)
2306         fb++;
2307     else
2308         fb = b;
2309     if (strNE(a,b))
2310         return FALSE;
2311     if (fa == a)
2312         sv_setpv(tmpsv, ".");
2313     else
2314         sv_setpvn(tmpsv, a, fa - a);
2315     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2316         return FALSE;
2317     if (fb == b)
2318         sv_setpv(tmpsv, ".");
2319     else
2320         sv_setpvn(tmpsv, b, fb - b);
2321     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2322         return FALSE;
2323     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2324            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2325 }
2326 #endif /* !HAS_RENAME */
2327
2328 UV
2329 scan_oct(char *start, I32 len, I32 *retlen)
2330 {
2331     register char *s = start;
2332     register UV retval = 0;
2333     bool overflowed = FALSE;
2334
2335     while (len && *s >= '0' && *s <= '7') {
2336         register UV n = retval << 3;
2337         if (!overflowed && (n >> 3) != retval) {
2338             warn("Integer overflow in octal number");
2339             overflowed = TRUE;
2340         }
2341         retval = n | (*s++ - '0');
2342         len--;
2343     }
2344     if (dowarn && len && (*s == '8' || *s == '9'))
2345         warn("Illegal octal digit ignored");
2346     *retlen = s - start;
2347     return retval;
2348 }
2349
2350 UV
2351 scan_hex(char *start, I32 len, I32 *retlen)
2352 {
2353     register char *s = start;
2354     register UV retval = 0;
2355     bool overflowed = FALSE;
2356     char *tmp = s;
2357
2358     while (len-- && *s && (tmp = strchr((char *) hexdigit, *s))) {
2359         register UV n = retval << 4;
2360         if (!overflowed && (n >> 4) != retval) {
2361             warn("Integer overflow in hex number");
2362             overflowed = TRUE;
2363         }
2364         retval = n | ((tmp - hexdigit) & 15);
2365         s++;
2366     }
2367     if (dowarn && !tmp) {
2368         warn("Illegal hex digit ignored");
2369     }
2370     *retlen = s - start;
2371     return retval;
2372 }
2373
2374 char*
2375 find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2376 {
2377     dTHR;
2378     char *xfound = Nullch;
2379     char *xfailed = Nullch;
2380     register char *s;
2381     I32 len;
2382     int retval;
2383 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2384 #  define SEARCH_EXTS ".bat", ".cmd", NULL
2385 #  define MAX_EXT_LEN 4
2386 #endif
2387 #ifdef OS2
2388 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2389 #  define MAX_EXT_LEN 4
2390 #endif
2391 #ifdef VMS
2392 #  define SEARCH_EXTS ".pl", ".com", NULL
2393 #  define MAX_EXT_LEN 4
2394 #endif
2395     /* additional extensions to try in each dir if scriptname not found */
2396 #ifdef SEARCH_EXTS
2397     char *exts[] = { SEARCH_EXTS };
2398     char **ext = search_ext ? search_ext : exts;
2399     int extidx = 0, i = 0;
2400     char *curext = Nullch;
2401 #else
2402 #  define MAX_EXT_LEN 0
2403 #endif
2404
2405     /*
2406      * If dosearch is true and if scriptname does not contain path
2407      * delimiters, search the PATH for scriptname.
2408      *
2409      * If SEARCH_EXTS is also defined, will look for each
2410      * scriptname{SEARCH_EXTS} whenever scriptname is not found
2411      * while searching the PATH.
2412      *
2413      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2414      * proceeds as follows:
2415      *   If DOSISH or VMSISH:
2416      *     + look for ./scriptname{,.foo,.bar}
2417      *     + search the PATH for scriptname{,.foo,.bar}
2418      *
2419      *   If !DOSISH:
2420      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
2421      *       this will not look in '.' if it's not in the PATH)
2422      */
2423
2424 #ifdef VMS
2425 #  ifdef ALWAYS_DEFTYPES
2426     len = strlen(scriptname);
2427     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2428         int hasdir, idx = 0, deftypes = 1;
2429         bool seen_dot = 1;
2430
2431         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2432 #  else
2433     if (dosearch) {
2434         int hasdir, idx = 0, deftypes = 1;
2435         bool seen_dot = 1;
2436
2437         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2438 #  endif
2439         /* The first time through, just add SEARCH_EXTS to whatever we
2440          * already have, so we can check for default file types. */
2441         while (deftypes ||
2442                (!hasdir && my_trnlnm("DCL$PATH",tokenbuf,idx++)) )
2443         {
2444             if (deftypes) {
2445                 deftypes = 0;
2446                 *tokenbuf = '\0';
2447             }
2448             if ((strlen(tokenbuf) + strlen(scriptname)
2449                  + MAX_EXT_LEN) >= sizeof tokenbuf)
2450                 continue;       /* don't search dir with too-long name */
2451             strcat(tokenbuf, scriptname);
2452 #else  /* !VMS */
2453
2454 #ifdef DOSISH
2455     if (strEQ(scriptname, "-"))
2456         dosearch = 0;
2457     if (dosearch) {             /* Look in '.' first. */
2458         char *cur = scriptname;
2459 #ifdef SEARCH_EXTS
2460         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2461             while (ext[i])
2462                 if (strEQ(ext[i++],curext)) {
2463                     extidx = -1;                /* already has an ext */
2464                     break;
2465                 }
2466         do {
2467 #endif
2468             DEBUG_p(PerlIO_printf(Perl_debug_log,
2469                                   "Looking for %s\n",cur));
2470             if (PerlLIO_stat(cur,&statbuf) >= 0) {
2471                 dosearch = 0;
2472                 scriptname = cur;
2473 #ifdef SEARCH_EXTS
2474                 break;
2475 #endif
2476             }
2477 #ifdef SEARCH_EXTS
2478             if (cur == scriptname) {
2479                 len = strlen(scriptname);
2480                 if (len+MAX_EXT_LEN+1 >= sizeof(tokenbuf))
2481                     break;
2482                 cur = strcpy(tokenbuf, scriptname);
2483             }
2484         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
2485                  && strcpy(tokenbuf+len, ext[extidx++]));
2486 #endif
2487     }
2488 #endif
2489
2490     if (dosearch && !strchr(scriptname, '/')
2491 #ifdef DOSISH
2492                  && !strchr(scriptname, '\\')
2493 #endif
2494                  && (s = PerlEnv_getenv("PATH"))) {
2495         bool seen_dot = 0;
2496         
2497         bufend = s + strlen(s);
2498         while (s < bufend) {
2499 #if defined(atarist) || defined(DOSISH)
2500             for (len = 0; *s
2501 #  ifdef atarist
2502                     && *s != ','
2503 #  endif
2504                     && *s != ';'; len++, s++) {
2505                 if (len < sizeof tokenbuf)
2506                     tokenbuf[len] = *s;
2507             }
2508             if (len < sizeof tokenbuf)
2509                 tokenbuf[len] = '\0';
2510 #else  /* ! (atarist || DOSISH) */
2511             s = delimcpy(tokenbuf, tokenbuf + sizeof tokenbuf, s, bufend,
2512                         ':',
2513                         &len);
2514 #endif /* ! (atarist || DOSISH) */
2515             if (s < bufend)
2516                 s++;
2517             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tokenbuf)
2518                 continue;       /* don't search dir with too-long name */
2519             if (len
2520 #if defined(atarist) || defined(DOSISH)
2521                 && tokenbuf[len - 1] != '/'
2522                 && tokenbuf[len - 1] != '\\'
2523 #endif
2524                )
2525                 tokenbuf[len++] = '/';
2526             if (len == 2 && tokenbuf[0] == '.')
2527                 seen_dot = 1;
2528             (void)strcpy(tokenbuf + len, scriptname);
2529 #endif  /* !VMS */
2530
2531 #ifdef SEARCH_EXTS
2532             len = strlen(tokenbuf);
2533             if (extidx > 0)     /* reset after previous loop */
2534                 extidx = 0;
2535             do {
2536 #endif
2537                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tokenbuf));
2538                 retval = PerlLIO_stat(tokenbuf,&statbuf);
2539 #ifdef SEARCH_EXTS
2540             } while (  retval < 0               /* not there */
2541                     && extidx>=0 && ext[extidx] /* try an extension? */
2542                     && strcpy(tokenbuf+len, ext[extidx++])
2543                 );
2544 #endif
2545             if (retval < 0)
2546                 continue;
2547             if (S_ISREG(statbuf.st_mode)
2548                 && cando(S_IRUSR,TRUE,&statbuf)
2549 #ifndef DOSISH
2550                 && cando(S_IXUSR,TRUE,&statbuf)
2551 #endif
2552                 )
2553             {
2554                 xfound = tokenbuf;              /* bingo! */
2555                 break;
2556             }
2557             if (!xfailed)
2558                 xfailed = savepv(tokenbuf);
2559         }
2560 #ifndef DOSISH
2561         if (!xfound && !seen_dot && !xfailed && (PerlLIO_stat(scriptname,&statbuf) < 0))
2562 #endif
2563             seen_dot = 1;                       /* Disable message. */
2564         if (!xfound) 
2565             scriptname = NULL;
2566 /*          croak("Can't %s %s%s%s",
2567                   (xfailed ? "execute" : "find"),
2568                   (xfailed ? xfailed : scriptname),
2569                   (xfailed ? "" : " on PATH"),
2570                   (xfailed || seen_dot) ? "" : ", '.' not in PATH"); */
2571         if (xfailed)
2572             Safefree(xfailed);
2573         scriptname = xfound;
2574     }
2575     return scriptname;
2576 }
2577
2578
2579 #ifdef USE_THREADS
2580 #ifdef FAKE_THREADS
2581 /* Very simplistic scheduler for now */
2582 void
2583 schedule(void)
2584 {
2585     thr = thr->i.next_run;
2586 }
2587
2588 void
2589 perl_cond_init(cp)
2590 perl_cond *cp;
2591 {
2592     *cp = 0;
2593 }
2594
2595 void
2596 perl_cond_signal(cp)
2597 perl_cond *cp;
2598 {
2599     perl_os_thread t;
2600     perl_cond cond = *cp;
2601     
2602     if (!cond)
2603         return;
2604     t = cond->thread;
2605     /* Insert t in the runnable queue just ahead of us */
2606     t->i.next_run = thr->i.next_run;
2607     thr->i.next_run->i.prev_run = t;
2608     t->i.prev_run = thr;
2609     thr->i.next_run = t;
2610     thr->i.wait_queue = 0;
2611     /* Remove from the wait queue */
2612     *cp = cond->next;
2613     Safefree(cond);
2614 }
2615
2616 void
2617 perl_cond_broadcast(cp)
2618 perl_cond *cp;
2619 {
2620     perl_os_thread t;
2621     perl_cond cond, cond_next;
2622     
2623     for (cond = *cp; cond; cond = cond_next) {
2624         t = cond->thread;
2625         /* Insert t in the runnable queue just ahead of us */
2626         t->i.next_run = thr->i.next_run;
2627         thr->i.next_run->i.prev_run = t;
2628         t->i.prev_run = thr;
2629         thr->i.next_run = t;
2630         thr->i.wait_queue = 0;
2631         /* Remove from the wait queue */
2632         cond_next = cond->next;
2633         Safefree(cond);
2634     }
2635     *cp = 0;
2636 }
2637
2638 void
2639 perl_cond_wait(cp)
2640 perl_cond *cp;
2641 {
2642     perl_cond cond;
2643
2644     if (thr->i.next_run == thr)
2645         croak("panic: perl_cond_wait called by last runnable thread");
2646     
2647     New(666, cond, 1, struct perl_wait_queue);
2648     cond->thread = thr;
2649     cond->next = *cp;
2650     *cp = cond;
2651     thr->i.wait_queue = cond;
2652     /* Remove ourselves from runnable queue */
2653     thr->i.next_run->i.prev_run = thr->i.prev_run;
2654     thr->i.prev_run->i.next_run = thr->i.next_run;
2655 }
2656 #endif /* FAKE_THREADS */
2657
2658 #ifdef OLD_PTHREADS_API
2659 struct perl_thread *
2660 getTHR _((void))
2661 {
2662     pthread_addr_t t;
2663
2664     if (pthread_getspecific(thr_key, &t))
2665         croak("panic: pthread_getspecific");
2666     return (struct perl_thread *) t;
2667 }
2668 #endif /* OLD_PTHREADS_API */
2669
2670 MAGIC *
2671 condpair_magic(SV *sv)
2672 {
2673     MAGIC *mg;
2674     
2675     SvUPGRADE(sv, SVt_PVMG);
2676     mg = mg_find(sv, 'm');
2677     if (!mg) {
2678         condpair_t *cp;
2679
2680         New(53, cp, 1, condpair_t);
2681         MUTEX_INIT(&cp->mutex);
2682         COND_INIT(&cp->owner_cond);
2683         COND_INIT(&cp->cond);
2684         cp->owner = 0;
2685         LOCK_SV_MUTEX;
2686         mg = mg_find(sv, 'm');
2687         if (mg) {
2688             /* someone else beat us to initialising it */
2689             UNLOCK_SV_MUTEX;
2690             MUTEX_DESTROY(&cp->mutex);
2691             COND_DESTROY(&cp->owner_cond);
2692             COND_DESTROY(&cp->cond);
2693             Safefree(cp);
2694         }
2695         else {
2696             sv_magic(sv, Nullsv, 'm', 0, 0);
2697             mg = SvMAGIC(sv);
2698             mg->mg_ptr = (char *)cp;
2699             mg->mg_len = sizeof(cp);
2700             UNLOCK_SV_MUTEX;
2701             DEBUG_L(WITH_THR(PerlIO_printf(PerlIO_stderr(),
2702                                            "%p: condpair_magic %p\n", thr, sv));)
2703         }
2704     }
2705     return mg;
2706 }
2707
2708 /*
2709  * Make a new perl thread structure using t as a prototype. Some of the
2710  * fields for the new thread are copied from the prototype thread, t,
2711  * so t should not be running in perl at the time this function is
2712  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2713  * thread calling new_struct_thread) clearly satisfies this constraint.
2714  */
2715 struct perl_thread *
2716 new_struct_thread(struct perl_thread *t)
2717 {
2718     struct perl_thread *thr;
2719     SV *sv;
2720     SV **svp;
2721     I32 i;
2722
2723     sv = newSVpv("", 0);
2724     SvGROW(sv, sizeof(struct perl_thread) + 1);
2725     SvCUR_set(sv, sizeof(struct perl_thread));
2726     thr = (Thread) SvPVX(sv);
2727     /* debug */
2728     memset(thr, 0xab, sizeof(struct perl_thread));
2729     markstack = 0;
2730     scopestack = 0;
2731     savestack = 0;
2732     retstack = 0;
2733     dirty = 0;
2734     localizing = 0;
2735     /* end debug */
2736
2737     thr->oursv = sv;
2738     init_stacks(ARGS);
2739
2740     curcop = &compiling;
2741     thr->cvcache = newHV();
2742     thr->threadsv = newAV();
2743     thr->specific = newAV();
2744     thr->errsv = newSVpv("", 0);
2745     thr->errhv = newHV();
2746     thr->flags = THRf_R_JOINABLE;
2747     MUTEX_INIT(&thr->mutex);
2748
2749     curcop = t->Tcurcop;       /* XXX As good a guess as any? */
2750     defstash = t->Tdefstash;   /* XXX maybe these should */
2751     curstash = t->Tcurstash;   /* always be set to main? */
2752
2753
2754     /* top_env needs to be non-zero. It points to an area
2755        in which longjmp() stuff is stored, as C callstack
2756        info there at least is thread specific this has to
2757        be per-thread. Otherwise a 'die' in a thread gives
2758        that thread the C stack of last thread to do an eval {}!
2759        See comments in scope.h    
2760        Initialize top entry (as in perl.c for main thread)
2761      */
2762     start_env.je_prev = NULL;
2763     start_env.je_ret = -1;
2764     start_env.je_mustcatch = TRUE;
2765     top_env  = &start_env;
2766
2767     in_eval = FALSE;
2768     restartop = 0;
2769
2770     tainted = t->Ttainted;
2771     curpm = t->Tcurpm;         /* XXX No PMOP ref count */
2772     nrs = newSVsv(t->Tnrs);
2773     rs = newSVsv(t->Trs);
2774     last_in_gv = (GV*)SvREFCNT_inc(t->Tlast_in_gv);
2775     ofslen = t->Tofslen;
2776     ofs = savepvn(t->Tofs, ofslen);
2777     defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
2778     chopset = t->Tchopset;
2779     formtarget = newSVsv(t->Tformtarget);
2780     bodytarget = newSVsv(t->Tbodytarget);
2781     toptarget = newSVsv(t->Ttoptarget);
2782     
2783     /* Initialise all per-thread SVs that the template thread used */
2784     svp = AvARRAY(t->threadsv);
2785     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
2786         if (*svp && *svp != &sv_undef) {
2787             SV *sv = newSVsv(*svp);
2788             av_store(thr->threadsv, i, sv);
2789             sv_magic(sv, 0, 0, &threadsv_names[i], 1);
2790             DEBUG_L(PerlIO_printf(PerlIO_stderr(),
2791                 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
2792         }
2793     } 
2794     thr->threadsvp = AvARRAY(thr->threadsv);
2795
2796     MUTEX_LOCK(&threads_mutex);
2797     nthreads++;
2798     thr->tid = ++threadnum;
2799     thr->next = t->next;
2800     thr->prev = t;
2801     t->next = thr;
2802     thr->next->prev = thr;
2803     MUTEX_UNLOCK(&threads_mutex);
2804
2805 #ifdef HAVE_THREAD_INTERN
2806     init_thread_intern(thr);
2807 #endif /* HAVE_THREAD_INTERN */
2808     return thr;
2809 }
2810 #endif /* USE_THREADS */
2811
2812 #ifdef HUGE_VAL
2813 /*
2814  * This hack is to force load of "huge" support from libm.a
2815  * So it is in perl for (say) POSIX to use. 
2816  * Needed for SunOS with Sun's 'acc' for example.
2817  */
2818 double 
2819 Perl_huge(void)
2820 {
2821  return HUGE_VAL;
2822 }
2823 #endif
2824
2825 #ifdef PERL_GLOBAL_STRUCT
2826 struct perl_vars *
2827 Perl_GetVars(void)
2828 {
2829  return &Perl_Vars;
2830 }
2831 #endif
2832
2833 char **
2834 get_op_names(void)
2835 {
2836  return op_name;
2837 }
2838
2839 char **
2840 get_op_descs(void)
2841 {
2842  return op_desc;
2843 }
2844
2845 char *
2846 get_no_modify(void)
2847 {
2848  return (char*)no_modify;
2849 }
2850
2851 U32 *
2852 get_opargs(void)
2853 {
2854  return opargs;
2855 }
2856
2857
2858 SV **
2859 get_specialsv_list(void)
2860 {
2861  return specialsv_list;
2862 }