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