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