Eliminate setenv_getix()
[p5sagit/p5-mst-13.2.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4  *    2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 /*
12  * 'Very useful, no doubt, that was to Saruman; yet it seems that he was
13  *  not content.'                                    --Gandalf to Pippin
14  *
15  *     [p.598 of _The Lord of the Rings_, III/xi: "The Palantír"]
16  */
17
18 /* This file contains assorted utility routines.
19  * Which is a polite way of saying any stuff that people couldn't think of
20  * a better place for. Amongst other things, it includes the warning and
21  * dieing stuff, plus wrappers for malloc code.
22  */
23
24 #include "EXTERN.h"
25 #define PERL_IN_UTIL_C
26 #include "perl.h"
27
28 #ifndef PERL_MICRO
29 #include <signal.h>
30 #ifndef SIG_ERR
31 # define SIG_ERR ((Sighandler_t) -1)
32 #endif
33 #endif
34
35 #ifdef __Lynx__
36 /* Missing protos on LynxOS */
37 int putenv(char *);
38 #endif
39
40 #ifdef I_SYS_WAIT
41 #  include <sys/wait.h>
42 #endif
43
44 #ifdef HAS_SELECT
45 # ifdef I_SYS_SELECT
46 #  include <sys/select.h>
47 # endif
48 #endif
49
50 #define FLUSH
51
52 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
53 #  define FD_CLOEXEC 1                  /* NeXT needs this */
54 #endif
55
56 /* NOTE:  Do not call the next three routines directly.  Use the macros
57  * in handy.h, so that we can easily redefine everything to do tracking of
58  * allocated hunks back to the original New to track down any memory leaks.
59  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
60  */
61
62 static char *
63 S_write_no_mem(pTHX)
64 {
65     dVAR;
66     /* Can't use PerlIO to write as it allocates memory */
67     PerlLIO_write(PerlIO_fileno(Perl_error_log),
68                   PL_no_mem, strlen(PL_no_mem));
69     my_exit(1);
70     NORETURN_FUNCTION_END;
71 }
72
73 /* paranoid version of system's malloc() */
74
75 Malloc_t
76 Perl_safesysmalloc(MEM_SIZE size)
77 {
78     dTHX;
79     Malloc_t ptr;
80 #ifdef HAS_64K_LIMIT
81         if (size > 0xffff) {
82             PerlIO_printf(Perl_error_log,
83                           "Allocation too large: %lx\n", size) FLUSH;
84             my_exit(1);
85         }
86 #endif /* HAS_64K_LIMIT */
87 #ifdef PERL_TRACK_MEMPOOL
88     size += sTHX;
89 #endif
90 #ifdef DEBUGGING
91     if ((long)size < 0)
92         Perl_croak_nocontext("panic: malloc");
93 #endif
94     ptr = (Malloc_t)PerlMem_malloc(size?size:1);        /* malloc(0) is NASTY on our system */
95     PERL_ALLOC_CHECK(ptr);
96     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
97     if (ptr != NULL) {
98 #ifdef PERL_TRACK_MEMPOOL
99         struct perl_memory_debug_header *const header
100             = (struct perl_memory_debug_header *)ptr;
101 #endif
102
103 #ifdef PERL_POISON
104         PoisonNew(((char *)ptr), size, char);
105 #endif
106
107 #ifdef PERL_TRACK_MEMPOOL
108         header->interpreter = aTHX;
109         /* Link us into the list.  */
110         header->prev = &PL_memory_debug_header;
111         header->next = PL_memory_debug_header.next;
112         PL_memory_debug_header.next = header;
113         header->next->prev = header;
114 #  ifdef PERL_POISON
115         header->size = size;
116 #  endif
117         ptr = (Malloc_t)((char*)ptr+sTHX);
118 #endif
119         return ptr;
120 }
121     else if (PL_nomemok)
122         return NULL;
123     else {
124         return write_no_mem();
125     }
126     /*NOTREACHED*/
127 }
128
129 /* paranoid version of system's realloc() */
130
131 Malloc_t
132 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
133 {
134     dTHX;
135     Malloc_t ptr;
136 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
137     Malloc_t PerlMem_realloc();
138 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
139
140 #ifdef HAS_64K_LIMIT
141     if (size > 0xffff) {
142         PerlIO_printf(Perl_error_log,
143                       "Reallocation too large: %lx\n", size) FLUSH;
144         my_exit(1);
145     }
146 #endif /* HAS_64K_LIMIT */
147     if (!size) {
148         safesysfree(where);
149         return NULL;
150     }
151
152     if (!where)
153         return safesysmalloc(size);
154 #ifdef PERL_TRACK_MEMPOOL
155     where = (Malloc_t)((char*)where-sTHX);
156     size += sTHX;
157     {
158         struct perl_memory_debug_header *const header
159             = (struct perl_memory_debug_header *)where;
160
161         if (header->interpreter != aTHX) {
162             Perl_croak_nocontext("panic: realloc from wrong pool");
163         }
164         assert(header->next->prev == header);
165         assert(header->prev->next == header);
166 #  ifdef PERL_POISON
167         if (header->size > size) {
168             const MEM_SIZE freed_up = header->size - size;
169             char *start_of_freed = ((char *)where) + size;
170             PoisonFree(start_of_freed, freed_up, char);
171         }
172         header->size = size;
173 #  endif
174     }
175 #endif
176 #ifdef DEBUGGING
177     if ((long)size < 0)
178         Perl_croak_nocontext("panic: realloc");
179 #endif
180     ptr = (Malloc_t)PerlMem_realloc(where,size);
181     PERL_ALLOC_CHECK(ptr);
182
183     /* MUST do this fixup first, before doing ANYTHING else, as anything else
184        might allocate memory/free/move memory, and until we do the fixup, it
185        may well be chasing (and writing to) free memory.  */
186 #ifdef PERL_TRACK_MEMPOOL
187     if (ptr != NULL) {
188         struct perl_memory_debug_header *const header
189             = (struct perl_memory_debug_header *)ptr;
190
191 #  ifdef PERL_POISON
192         if (header->size < size) {
193             const MEM_SIZE fresh = size - header->size;
194             char *start_of_fresh = ((char *)ptr) + size;
195             PoisonNew(start_of_fresh, fresh, char);
196         }
197 #  endif
198
199         header->next->prev = header;
200         header->prev->next = header;
201
202         ptr = (Malloc_t)((char*)ptr+sTHX);
203     }
204 #endif
205
206     /* In particular, must do that fixup above before logging anything via
207      *printf(), as it can reallocate memory, which can cause SEGVs.  */
208
209     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
210     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
211
212
213     if (ptr != NULL) {
214         return ptr;
215     }
216     else if (PL_nomemok)
217         return NULL;
218     else {
219         return write_no_mem();
220     }
221     /*NOTREACHED*/
222 }
223
224 /* safe version of system's free() */
225
226 Free_t
227 Perl_safesysfree(Malloc_t where)
228 {
229 #if defined(PERL_IMPLICIT_SYS) || defined(PERL_TRACK_MEMPOOL)
230     dTHX;
231 #else
232     dVAR;
233 #endif
234     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
235     if (where) {
236 #ifdef PERL_TRACK_MEMPOOL
237         where = (Malloc_t)((char*)where-sTHX);
238         {
239             struct perl_memory_debug_header *const header
240                 = (struct perl_memory_debug_header *)where;
241
242             if (header->interpreter != aTHX) {
243                 Perl_croak_nocontext("panic: free from wrong pool");
244             }
245             if (!header->prev) {
246                 Perl_croak_nocontext("panic: duplicate free");
247             }
248             if (!(header->next) || header->next->prev != header
249                 || header->prev->next != header) {
250                 Perl_croak_nocontext("panic: bad free");
251             }
252             /* Unlink us from the chain.  */
253             header->next->prev = header->prev;
254             header->prev->next = header->next;
255 #  ifdef PERL_POISON
256             PoisonNew(where, header->size, char);
257 #  endif
258             /* Trigger the duplicate free warning.  */
259             header->next = NULL;
260         }
261 #endif
262         PerlMem_free(where);
263     }
264 }
265
266 /* safe version of system's calloc() */
267
268 Malloc_t
269 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
270 {
271     dTHX;
272     Malloc_t ptr;
273     MEM_SIZE total_size = 0;
274
275     /* Even though calloc() for zero bytes is strange, be robust. */
276     if (size && (count <= MEM_SIZE_MAX / size))
277         total_size = size * count;
278     else
279         Perl_croak_nocontext("%s", PL_memory_wrap);
280 #ifdef PERL_TRACK_MEMPOOL
281     if (sTHX <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
282         total_size += sTHX;
283     else
284         Perl_croak_nocontext("%s", PL_memory_wrap);
285 #endif
286 #ifdef HAS_64K_LIMIT
287     if (total_size > 0xffff) {
288         PerlIO_printf(Perl_error_log,
289                       "Allocation too large: %lx\n", total_size) FLUSH;
290         my_exit(1);
291     }
292 #endif /* HAS_64K_LIMIT */
293 #ifdef DEBUGGING
294     if ((long)size < 0 || (long)count < 0)
295         Perl_croak_nocontext("panic: calloc");
296 #endif
297 #ifdef PERL_TRACK_MEMPOOL
298     /* Have to use malloc() because we've added some space for our tracking
299        header.  */
300     /* malloc(0) is non-portable. */
301     ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
302 #else
303     /* Use calloc() because it might save a memset() if the memory is fresh
304        and clean from the OS.  */
305     if (count && size)
306         ptr = (Malloc_t)PerlMem_calloc(count, size);
307     else /* calloc(0) is non-portable. */
308         ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
309 #endif
310     PERL_ALLOC_CHECK(ptr);
311     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)total_size));
312     if (ptr != NULL) {
313 #ifdef PERL_TRACK_MEMPOOL
314         {
315             struct perl_memory_debug_header *const header
316                 = (struct perl_memory_debug_header *)ptr;
317
318             memset((void*)ptr, 0, total_size);
319             header->interpreter = aTHX;
320             /* Link us into the list.  */
321             header->prev = &PL_memory_debug_header;
322             header->next = PL_memory_debug_header.next;
323             PL_memory_debug_header.next = header;
324             header->next->prev = header;
325 #  ifdef PERL_POISON
326             header->size = total_size;
327 #  endif
328             ptr = (Malloc_t)((char*)ptr+sTHX);
329         }
330 #endif
331         return ptr;
332     }
333     else if (PL_nomemok)
334         return NULL;
335     return write_no_mem();
336 }
337
338 /* These must be defined when not using Perl's malloc for binary
339  * compatibility */
340
341 #ifndef MYMALLOC
342
343 Malloc_t Perl_malloc (MEM_SIZE nbytes)
344 {
345     dTHXs;
346     return (Malloc_t)PerlMem_malloc(nbytes);
347 }
348
349 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
350 {
351     dTHXs;
352     return (Malloc_t)PerlMem_calloc(elements, size);
353 }
354
355 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
356 {
357     dTHXs;
358     return (Malloc_t)PerlMem_realloc(where, nbytes);
359 }
360
361 Free_t   Perl_mfree (Malloc_t where)
362 {
363     dTHXs;
364     PerlMem_free(where);
365 }
366
367 #endif
368
369 /* copy a string up to some (non-backslashed) delimiter, if any */
370
371 char *
372 Perl_delimcpy(pTHX_ register char *to, register const char *toend, register const char *from, register const char *fromend, register int delim, I32 *retlen)
373 {
374     register I32 tolen;
375     PERL_UNUSED_CONTEXT;
376
377     PERL_ARGS_ASSERT_DELIMCPY;
378
379     for (tolen = 0; from < fromend; from++, tolen++) {
380         if (*from == '\\') {
381             if (from[1] != delim) {
382                 if (to < toend)
383                     *to++ = *from;
384                 tolen++;
385             }
386             from++;
387         }
388         else if (*from == delim)
389             break;
390         if (to < toend)
391             *to++ = *from;
392     }
393     if (to < toend)
394         *to = '\0';
395     *retlen = tolen;
396     return (char *)from;
397 }
398
399 /* return ptr to little string in big string, NULL if not found */
400 /* This routine was donated by Corey Satten. */
401
402 char *
403 Perl_instr(pTHX_ register const char *big, register const char *little)
404 {
405     register I32 first;
406     PERL_UNUSED_CONTEXT;
407
408     PERL_ARGS_ASSERT_INSTR;
409
410     if (!little)
411         return (char*)big;
412     first = *little++;
413     if (!first)
414         return (char*)big;
415     while (*big) {
416         register const char *s, *x;
417         if (*big++ != first)
418             continue;
419         for (x=big,s=little; *s; /**/ ) {
420             if (!*x)
421                 return NULL;
422             if (*s != *x)
423                 break;
424             else {
425                 s++;
426                 x++;
427             }
428         }
429         if (!*s)
430             return (char*)(big-1);
431     }
432     return NULL;
433 }
434
435 /* same as instr but allow embedded nulls */
436
437 char *
438 Perl_ninstr(pTHX_ const char *big, const char *bigend, const char *little, const char *lend)
439 {
440     PERL_ARGS_ASSERT_NINSTR;
441     PERL_UNUSED_CONTEXT;
442     if (little >= lend)
443         return (char*)big;
444     {
445         const char first = *little;
446         const char *s, *x;
447         bigend -= lend - little++;
448     OUTER:
449         while (big <= bigend) {
450             if (*big++ == first) {
451                 for (x=big,s=little; s < lend; x++,s++) {
452                     if (*s != *x)
453                         goto OUTER;
454                 }
455                 return (char*)(big-1);
456             }
457         }
458     }
459     return NULL;
460 }
461
462 /* reverse of the above--find last substring */
463
464 char *
465 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
466 {
467     register const char *bigbeg;
468     register const I32 first = *little;
469     register const char * const littleend = lend;
470     PERL_UNUSED_CONTEXT;
471
472     PERL_ARGS_ASSERT_RNINSTR;
473
474     if (little >= littleend)
475         return (char*)bigend;
476     bigbeg = big;
477     big = bigend - (littleend - little++);
478     while (big >= bigbeg) {
479         register const char *s, *x;
480         if (*big-- != first)
481             continue;
482         for (x=big+2,s=little; s < littleend; /**/ ) {
483             if (*s != *x)
484                 break;
485             else {
486                 x++;
487                 s++;
488             }
489         }
490         if (s >= littleend)
491             return (char*)(big+1);
492     }
493     return NULL;
494 }
495
496 /* As a space optimization, we do not compile tables for strings of length
497    0 and 1, and for strings of length 2 unless FBMcf_TAIL.  These are
498    special-cased in fbm_instr().
499
500    If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
501
502 /*
503 =head1 Miscellaneous Functions
504
505 =for apidoc fbm_compile
506
507 Analyses the string in order to make fast searches on it using fbm_instr()
508 -- the Boyer-Moore algorithm.
509
510 =cut
511 */
512
513 void
514 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
515 {
516     dVAR;
517     register const U8 *s;
518     register U32 i;
519     STRLEN len;
520     U32 rarest = 0;
521     U32 frequency = 256;
522
523     PERL_ARGS_ASSERT_FBM_COMPILE;
524
525     if (flags & FBMcf_TAIL) {
526         MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
527         sv_catpvs(sv, "\n");            /* Taken into account in fbm_instr() */
528         if (mg && mg->mg_len >= 0)
529             mg->mg_len++;
530     }
531     s = (U8*)SvPV_force_mutable(sv, len);
532     if (len == 0)               /* TAIL might be on a zero-length string. */
533         return;
534     SvUPGRADE(sv, SVt_PVGV);
535     SvIOK_off(sv);
536     SvNOK_off(sv);
537     SvVALID_on(sv);
538     if (len > 2) {
539         const unsigned char *sb;
540         const U8 mlen = (len>255) ? 255 : (U8)len;
541         register U8 *table;
542
543         Sv_Grow(sv, len + 256 + PERL_FBM_TABLE_OFFSET);
544         table
545             = (unsigned char*)(SvPVX_mutable(sv) + len + PERL_FBM_TABLE_OFFSET);
546         s = table - 1 - PERL_FBM_TABLE_OFFSET;  /* last char */
547         memset((void*)table, mlen, 256);
548         i = 0;
549         sb = s - mlen + 1;                      /* first char (maybe) */
550         while (s >= sb) {
551             if (table[*s] == mlen)
552                 table[*s] = (U8)i;
553             s--, i++;
554         }
555     } else {
556         Sv_Grow(sv, len + PERL_FBM_TABLE_OFFSET);
557     }
558     sv_magic(sv, NULL, PERL_MAGIC_bm, NULL, 0); /* deep magic */
559
560     s = (const unsigned char*)(SvPVX_const(sv));        /* deeper magic */
561     for (i = 0; i < len; i++) {
562         if (PL_freq[s[i]] < frequency) {
563             rarest = i;
564             frequency = PL_freq[s[i]];
565         }
566     }
567     BmFLAGS(sv) = (U8)flags;
568     BmRARE(sv) = s[rarest];
569     BmPREVIOUS(sv) = rarest;
570     BmUSEFUL(sv) = 100;                 /* Initial value */
571     if (flags & FBMcf_TAIL)
572         SvTAIL_on(sv);
573     DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %lu\n",
574                           BmRARE(sv),(unsigned long)BmPREVIOUS(sv)));
575 }
576
577 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
578 /* If SvTAIL is actually due to \Z or \z, this gives false positives
579    if multiline */
580
581 /*
582 =for apidoc fbm_instr
583
584 Returns the location of the SV in the string delimited by C<str> and
585 C<strend>.  It returns C<NULL> if the string can't be found.  The C<sv>
586 does not have to be fbm_compiled, but the search will not be as fast
587 then.
588
589 =cut
590 */
591
592 char *
593 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
594 {
595     register unsigned char *s;
596     STRLEN l;
597     register const unsigned char *little
598         = (const unsigned char *)SvPV_const(littlestr,l);
599     register STRLEN littlelen = l;
600     register const I32 multiline = flags & FBMrf_MULTILINE;
601
602     PERL_ARGS_ASSERT_FBM_INSTR;
603
604     if ((STRLEN)(bigend - big) < littlelen) {
605         if ( SvTAIL(littlestr)
606              && ((STRLEN)(bigend - big) == littlelen - 1)
607              && (littlelen == 1
608                  || (*big == *little &&
609                      memEQ((char *)big, (char *)little, littlelen - 1))))
610             return (char*)big;
611         return NULL;
612     }
613
614     if (littlelen <= 2) {               /* Special-cased */
615
616         if (littlelen == 1) {
617             if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
618                 /* Know that bigend != big.  */
619                 if (bigend[-1] == '\n')
620                     return (char *)(bigend - 1);
621                 return (char *) bigend;
622             }
623             s = big;
624             while (s < bigend) {
625                 if (*s == *little)
626                     return (char *)s;
627                 s++;
628             }
629             if (SvTAIL(littlestr))
630                 return (char *) bigend;
631             return NULL;
632         }
633         if (!littlelen)
634             return (char*)big;          /* Cannot be SvTAIL! */
635
636         /* littlelen is 2 */
637         if (SvTAIL(littlestr) && !multiline) {
638             if (bigend[-1] == '\n' && bigend[-2] == *little)
639                 return (char*)bigend - 2;
640             if (bigend[-1] == *little)
641                 return (char*)bigend - 1;
642             return NULL;
643         }
644         {
645             /* This should be better than FBM if c1 == c2, and almost
646                as good otherwise: maybe better since we do less indirection.
647                And we save a lot of memory by caching no table. */
648             const unsigned char c1 = little[0];
649             const unsigned char c2 = little[1];
650
651             s = big + 1;
652             bigend--;
653             if (c1 != c2) {
654                 while (s <= bigend) {
655                     if (s[0] == c2) {
656                         if (s[-1] == c1)
657                             return (char*)s - 1;
658                         s += 2;
659                         continue;
660                     }
661                   next_chars:
662                     if (s[0] == c1) {
663                         if (s == bigend)
664                             goto check_1char_anchor;
665                         if (s[1] == c2)
666                             return (char*)s;
667                         else {
668                             s++;
669                             goto next_chars;
670                         }
671                     }
672                     else
673                         s += 2;
674                 }
675                 goto check_1char_anchor;
676             }
677             /* Now c1 == c2 */
678             while (s <= bigend) {
679                 if (s[0] == c1) {
680                     if (s[-1] == c1)
681                         return (char*)s - 1;
682                     if (s == bigend)
683                         goto check_1char_anchor;
684                     if (s[1] == c1)
685                         return (char*)s;
686                     s += 3;
687                 }
688                 else
689                     s += 2;
690             }
691         }
692       check_1char_anchor:               /* One char and anchor! */
693         if (SvTAIL(littlestr) && (*bigend == *little))
694             return (char *)bigend;      /* bigend is already decremented. */
695         return NULL;
696     }
697     if (SvTAIL(littlestr) && !multiline) {      /* tail anchored? */
698         s = bigend - littlelen;
699         if (s >= big && bigend[-1] == '\n' && *s == *little
700             /* Automatically of length > 2 */
701             && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
702         {
703             return (char*)s;            /* how sweet it is */
704         }
705         if (s[1] == *little
706             && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
707         {
708             return (char*)s + 1;        /* how sweet it is */
709         }
710         return NULL;
711     }
712     if (!SvVALID(littlestr)) {
713         char * const b = ninstr((char*)big,(char*)bigend,
714                          (char*)little, (char*)little + littlelen);
715
716         if (!b && SvTAIL(littlestr)) {  /* Automatically multiline!  */
717             /* Chop \n from littlestr: */
718             s = bigend - littlelen + 1;
719             if (*s == *little
720                 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
721             {
722                 return (char*)s;
723             }
724             return NULL;
725         }
726         return b;
727     }
728
729     /* Do actual FBM.  */
730     if (littlelen > (STRLEN)(bigend - big))
731         return NULL;
732
733     {
734         register const unsigned char * const table
735             = little + littlelen + PERL_FBM_TABLE_OFFSET;
736         register const unsigned char *oldlittle;
737
738         --littlelen;                    /* Last char found by table lookup */
739
740         s = big + littlelen;
741         little += littlelen;            /* last char */
742         oldlittle = little;
743         if (s < bigend) {
744             register I32 tmp;
745
746           top2:
747             if ((tmp = table[*s])) {
748                 if ((s += tmp) < bigend)
749                     goto top2;
750                 goto check_end;
751             }
752             else {              /* less expensive than calling strncmp() */
753                 register unsigned char * const olds = s;
754
755                 tmp = littlelen;
756
757                 while (tmp--) {
758                     if (*--s == *--little)
759                         continue;
760                     s = olds + 1;       /* here we pay the price for failure */
761                     little = oldlittle;
762                     if (s < bigend)     /* fake up continue to outer loop */
763                         goto top2;
764                     goto check_end;
765                 }
766                 return (char *)s;
767             }
768         }
769       check_end:
770         if ( s == bigend
771              && (BmFLAGS(littlestr) & FBMcf_TAIL)
772              && memEQ((char *)(bigend - littlelen),
773                       (char *)(oldlittle - littlelen), littlelen) )
774             return (char*)bigend - littlelen;
775         return NULL;
776     }
777 }
778
779 /* start_shift, end_shift are positive quantities which give offsets
780    of ends of some substring of bigstr.
781    If "last" we want the last occurrence.
782    old_posp is the way of communication between consequent calls if
783    the next call needs to find the .
784    The initial *old_posp should be -1.
785
786    Note that we take into account SvTAIL, so one can get extra
787    optimizations if _ALL flag is set.
788  */
789
790 /* If SvTAIL is actually due to \Z or \z, this gives false positives
791    if PL_multiline.  In fact if !PL_multiline the authoritative answer
792    is not supported yet. */
793
794 char *
795 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
796 {
797     dVAR;
798     register const unsigned char *big;
799     register I32 pos;
800     register I32 previous;
801     register I32 first;
802     register const unsigned char *little;
803     register I32 stop_pos;
804     register const unsigned char *littleend;
805     I32 found = 0;
806
807     PERL_ARGS_ASSERT_SCREAMINSTR;
808
809     assert(SvTYPE(littlestr) == SVt_PVGV);
810     assert(SvVALID(littlestr));
811
812     if (*old_posp == -1
813         ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
814         : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
815       cant_find:
816         if ( BmRARE(littlestr) == '\n'
817              && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
818             little = (const unsigned char *)(SvPVX_const(littlestr));
819             littleend = little + SvCUR(littlestr);
820             first = *little++;
821             goto check_tail;
822         }
823         return NULL;
824     }
825
826     little = (const unsigned char *)(SvPVX_const(littlestr));
827     littleend = little + SvCUR(littlestr);
828     first = *little++;
829     /* The value of pos we can start at: */
830     previous = BmPREVIOUS(littlestr);
831     big = (const unsigned char *)(SvPVX_const(bigstr));
832     /* The value of pos we can stop at: */
833     stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
834     if (previous + start_shift > stop_pos) {
835 /*
836   stop_pos does not include SvTAIL in the count, so this check is incorrect
837   (I think) - see [ID 20010618.006] and t/op/study.t. HVDS 2001/06/19
838 */
839 #if 0
840         if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
841             goto check_tail;
842 #endif
843         return NULL;
844     }
845     while (pos < previous + start_shift) {
846         if (!(pos += PL_screamnext[pos]))
847             goto cant_find;
848     }
849     big -= previous;
850     do {
851         register const unsigned char *s, *x;
852         if (pos >= stop_pos) break;
853         if (big[pos] != first)
854             continue;
855         for (x=big+pos+1,s=little; s < littleend; /**/ ) {
856             if (*s++ != *x++) {
857                 s--;
858                 break;
859             }
860         }
861         if (s == littleend) {
862             *old_posp = pos;
863             if (!last) return (char *)(big+pos);
864             found = 1;
865         }
866     } while ( pos += PL_screamnext[pos] );
867     if (last && found)
868         return (char *)(big+(*old_posp));
869   check_tail:
870     if (!SvTAIL(littlestr) || (end_shift > 0))
871         return NULL;
872     /* Ignore the trailing "\n".  This code is not microoptimized */
873     big = (const unsigned char *)(SvPVX_const(bigstr) + SvCUR(bigstr));
874     stop_pos = littleend - little;      /* Actual littlestr len */
875     if (stop_pos == 0)
876         return (char*)big;
877     big -= stop_pos;
878     if (*big == first
879         && ((stop_pos == 1) ||
880             memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
881         return (char*)big;
882     return NULL;
883 }
884
885 I32
886 Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
887 {
888     register const U8 *a = (const U8 *)s1;
889     register const U8 *b = (const U8 *)s2;
890     PERL_UNUSED_CONTEXT;
891
892     PERL_ARGS_ASSERT_IBCMP;
893
894     while (len--) {
895         if (*a != *b && *a != PL_fold[*b])
896             return 1;
897         a++,b++;
898     }
899     return 0;
900 }
901
902 I32
903 Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
904 {
905     dVAR;
906     register const U8 *a = (const U8 *)s1;
907     register const U8 *b = (const U8 *)s2;
908     PERL_UNUSED_CONTEXT;
909
910     PERL_ARGS_ASSERT_IBCMP_LOCALE;
911
912     while (len--) {
913         if (*a != *b && *a != PL_fold_locale[*b])
914             return 1;
915         a++,b++;
916     }
917     return 0;
918 }
919
920 /* copy a string to a safe spot */
921
922 /*
923 =head1 Memory Management
924
925 =for apidoc savepv
926
927 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
928 string which is a duplicate of C<pv>. The size of the string is
929 determined by C<strlen()>. The memory allocated for the new string can
930 be freed with the C<Safefree()> function.
931
932 =cut
933 */
934
935 char *
936 Perl_savepv(pTHX_ const char *pv)
937 {
938     PERL_UNUSED_CONTEXT;
939     if (!pv)
940         return NULL;
941     else {
942         char *newaddr;
943         const STRLEN pvlen = strlen(pv)+1;
944         Newx(newaddr, pvlen, char);
945         return (char*)memcpy(newaddr, pv, pvlen);
946     }
947 }
948
949 /* same thing but with a known length */
950
951 /*
952 =for apidoc savepvn
953
954 Perl's version of what C<strndup()> would be if it existed. Returns a
955 pointer to a newly allocated string which is a duplicate of the first
956 C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for
957 the new string can be freed with the C<Safefree()> function.
958
959 =cut
960 */
961
962 char *
963 Perl_savepvn(pTHX_ const char *pv, register I32 len)
964 {
965     register char *newaddr;
966     PERL_UNUSED_CONTEXT;
967
968     Newx(newaddr,len+1,char);
969     /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
970     if (pv) {
971         /* might not be null terminated */
972         newaddr[len] = '\0';
973         return (char *) CopyD(pv,newaddr,len,char);
974     }
975     else {
976         return (char *) ZeroD(newaddr,len+1,char);
977     }
978 }
979
980 /*
981 =for apidoc savesharedpv
982
983 A version of C<savepv()> which allocates the duplicate string in memory
984 which is shared between threads.
985
986 =cut
987 */
988 char *
989 Perl_savesharedpv(pTHX_ const char *pv)
990 {
991     register char *newaddr;
992     STRLEN pvlen;
993     if (!pv)
994         return NULL;
995
996     pvlen = strlen(pv)+1;
997     newaddr = (char*)PerlMemShared_malloc(pvlen);
998     if (!newaddr) {
999         return write_no_mem();
1000     }
1001     return (char*)memcpy(newaddr, pv, pvlen);
1002 }
1003
1004 /*
1005 =for apidoc savesharedpvn
1006
1007 A version of C<savepvn()> which allocates the duplicate string in memory
1008 which is shared between threads. (With the specific difference that a NULL
1009 pointer is not acceptable)
1010
1011 =cut
1012 */
1013 char *
1014 Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
1015 {
1016     char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
1017
1018     PERL_ARGS_ASSERT_SAVESHAREDPVN;
1019
1020     if (!newaddr) {
1021         return write_no_mem();
1022     }
1023     newaddr[len] = '\0';
1024     return (char*)memcpy(newaddr, pv, len);
1025 }
1026
1027 /*
1028 =for apidoc savesvpv
1029
1030 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
1031 the passed in SV using C<SvPV()>
1032
1033 =cut
1034 */
1035
1036 char *
1037 Perl_savesvpv(pTHX_ SV *sv)
1038 {
1039     STRLEN len;
1040     const char * const pv = SvPV_const(sv, len);
1041     register char *newaddr;
1042
1043     PERL_ARGS_ASSERT_SAVESVPV;
1044
1045     ++len;
1046     Newx(newaddr,len,char);
1047     return (char *) CopyD(pv,newaddr,len,char);
1048 }
1049
1050
1051 /* the SV for Perl_form() and mess() is not kept in an arena */
1052
1053 STATIC SV *
1054 S_mess_alloc(pTHX)
1055 {
1056     dVAR;
1057     SV *sv;
1058     XPVMG *any;
1059
1060     if (!PL_dirty)
1061         return newSVpvs_flags("", SVs_TEMP);
1062
1063     if (PL_mess_sv)
1064         return PL_mess_sv;
1065
1066     /* Create as PVMG now, to avoid any upgrading later */
1067     Newx(sv, 1, SV);
1068     Newxz(any, 1, XPVMG);
1069     SvFLAGS(sv) = SVt_PVMG;
1070     SvANY(sv) = (void*)any;
1071     SvPV_set(sv, NULL);
1072     SvREFCNT(sv) = 1 << 30; /* practically infinite */
1073     PL_mess_sv = sv;
1074     return sv;
1075 }
1076
1077 #if defined(PERL_IMPLICIT_CONTEXT)
1078 char *
1079 Perl_form_nocontext(const char* pat, ...)
1080 {
1081     dTHX;
1082     char *retval;
1083     va_list args;
1084     PERL_ARGS_ASSERT_FORM_NOCONTEXT;
1085     va_start(args, pat);
1086     retval = vform(pat, &args);
1087     va_end(args);
1088     return retval;
1089 }
1090 #endif /* PERL_IMPLICIT_CONTEXT */
1091
1092 /*
1093 =head1 Miscellaneous Functions
1094 =for apidoc form
1095
1096 Takes a sprintf-style format pattern and conventional
1097 (non-SV) arguments and returns the formatted string.
1098
1099     (char *) Perl_form(pTHX_ const char* pat, ...)
1100
1101 can be used any place a string (char *) is required:
1102
1103     char * s = Perl_form("%d.%d",major,minor);
1104
1105 Uses a single private buffer so if you want to format several strings you
1106 must explicitly copy the earlier strings away (and free the copies when you
1107 are done).
1108
1109 =cut
1110 */
1111
1112 char *
1113 Perl_form(pTHX_ const char* pat, ...)
1114 {
1115     char *retval;
1116     va_list args;
1117     PERL_ARGS_ASSERT_FORM;
1118     va_start(args, pat);
1119     retval = vform(pat, &args);
1120     va_end(args);
1121     return retval;
1122 }
1123
1124 char *
1125 Perl_vform(pTHX_ const char *pat, va_list *args)
1126 {
1127     SV * const sv = mess_alloc();
1128     PERL_ARGS_ASSERT_VFORM;
1129     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1130     return SvPVX(sv);
1131 }
1132
1133 #if defined(PERL_IMPLICIT_CONTEXT)
1134 SV *
1135 Perl_mess_nocontext(const char *pat, ...)
1136 {
1137     dTHX;
1138     SV *retval;
1139     va_list args;
1140     PERL_ARGS_ASSERT_MESS_NOCONTEXT;
1141     va_start(args, pat);
1142     retval = vmess(pat, &args);
1143     va_end(args);
1144     return retval;
1145 }
1146 #endif /* PERL_IMPLICIT_CONTEXT */
1147
1148 SV *
1149 Perl_mess(pTHX_ const char *pat, ...)
1150 {
1151     SV *retval;
1152     va_list args;
1153     PERL_ARGS_ASSERT_MESS;
1154     va_start(args, pat);
1155     retval = vmess(pat, &args);
1156     va_end(args);
1157     return retval;
1158 }
1159
1160 STATIC const COP*
1161 S_closest_cop(pTHX_ const COP *cop, const OP *o)
1162 {
1163     dVAR;
1164     /* Look for PL_op starting from o.  cop is the last COP we've seen. */
1165
1166     PERL_ARGS_ASSERT_CLOSEST_COP;
1167
1168     if (!o || o == PL_op)
1169         return cop;
1170
1171     if (o->op_flags & OPf_KIDS) {
1172         const OP *kid;
1173         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
1174             const COP *new_cop;
1175
1176             /* If the OP_NEXTSTATE has been optimised away we can still use it
1177              * the get the file and line number. */
1178
1179             if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
1180                 cop = (const COP *)kid;
1181
1182             /* Keep searching, and return when we've found something. */
1183
1184             new_cop = closest_cop(cop, kid);
1185             if (new_cop)
1186                 return new_cop;
1187         }
1188     }
1189
1190     /* Nothing found. */
1191
1192     return NULL;
1193 }
1194
1195 SV *
1196 Perl_vmess(pTHX_ const char *pat, va_list *args)
1197 {
1198     dVAR;
1199     SV * const sv = mess_alloc();
1200
1201     PERL_ARGS_ASSERT_VMESS;
1202
1203     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1204     if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1205         /*
1206          * Try and find the file and line for PL_op.  This will usually be
1207          * PL_curcop, but it might be a cop that has been optimised away.  We
1208          * can try to find such a cop by searching through the optree starting
1209          * from the sibling of PL_curcop.
1210          */
1211
1212         const COP *cop = closest_cop(PL_curcop, PL_curcop->op_sibling);
1213         if (!cop)
1214             cop = PL_curcop;
1215
1216         if (CopLINE(cop))
1217             Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1218             OutCopFILE(cop), (IV)CopLINE(cop));
1219         /* Seems that GvIO() can be untrustworthy during global destruction. */
1220         if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1221                 && IoLINES(GvIOp(PL_last_in_gv)))
1222         {
1223             const bool line_mode = (RsSIMPLE(PL_rs) &&
1224                               SvCUR(PL_rs) == 1 && *SvPVX_const(PL_rs) == '\n');
1225             Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
1226                            PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1227                            line_mode ? "line" : "chunk",
1228                            (IV)IoLINES(GvIOp(PL_last_in_gv)));
1229         }
1230         if (PL_dirty)
1231             sv_catpvs(sv, " during global destruction");
1232         sv_catpvs(sv, ".\n");
1233     }
1234     return sv;
1235 }
1236
1237 void
1238 Perl_write_to_stderr(pTHX_ const char* message, int msglen)
1239 {
1240     dVAR;
1241     IO *io;
1242     MAGIC *mg;
1243
1244     PERL_ARGS_ASSERT_WRITE_TO_STDERR;
1245
1246     if (PL_stderrgv && SvREFCNT(PL_stderrgv) 
1247         && (io = GvIO(PL_stderrgv))
1248         && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar))) 
1249     {
1250         dSP;
1251         ENTER;
1252         SAVETMPS;
1253
1254         save_re_context();
1255         SAVESPTR(PL_stderrgv);
1256         PL_stderrgv = NULL;
1257
1258         PUSHSTACKi(PERLSI_MAGIC);
1259
1260         PUSHMARK(SP);
1261         EXTEND(SP,2);
1262         PUSHs(SvTIED_obj(MUTABLE_SV(io), mg));
1263         mPUSHp(message, msglen);
1264         PUTBACK;
1265         call_method("PRINT", G_SCALAR);
1266
1267         POPSTACK;
1268         FREETMPS;
1269         LEAVE;
1270     }
1271     else {
1272 #ifdef USE_SFIO
1273         /* SFIO can really mess with your errno */
1274         const int e = errno;
1275 #endif
1276         PerlIO * const serr = Perl_error_log;
1277
1278         PERL_WRITE_MSG_TO_CONSOLE(serr, message, msglen);
1279         (void)PerlIO_flush(serr);
1280 #ifdef USE_SFIO
1281         errno = e;
1282 #endif
1283     }
1284 }
1285
1286 /* Common code used by vcroak, vdie, vwarn and vwarner  */
1287
1288 STATIC bool
1289 S_vdie_common(pTHX_ const char *message, STRLEN msglen, I32 utf8, bool warn)
1290 {
1291     dVAR;
1292     HV *stash;
1293     GV *gv;
1294     CV *cv;
1295     SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1296     /* sv_2cv might call Perl_croak() or Perl_warner() */
1297     SV * const oldhook = *hook;
1298
1299     assert(oldhook);
1300
1301     ENTER;
1302     SAVESPTR(*hook);
1303     *hook = NULL;
1304     cv = sv_2cv(oldhook, &stash, &gv, 0);
1305     LEAVE;
1306     if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1307         dSP;
1308         SV *msg;
1309
1310         ENTER;
1311         save_re_context();
1312         if (warn) {
1313             SAVESPTR(*hook);
1314             *hook = NULL;
1315         }
1316         if (warn || message) {
1317             msg = newSVpvn_flags(message, msglen, utf8);
1318             SvREADONLY_on(msg);
1319             SAVEFREESV(msg);
1320         }
1321         else {
1322             msg = ERRSV;
1323         }
1324
1325         PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
1326         PUSHMARK(SP);
1327         XPUSHs(msg);
1328         PUTBACK;
1329         call_sv(MUTABLE_SV(cv), G_DISCARD);
1330         POPSTACK;
1331         LEAVE;
1332         return TRUE;
1333     }
1334     return FALSE;
1335 }
1336
1337 STATIC const char *
1338 S_vdie_croak_common(pTHX_ const char* pat, va_list* args, STRLEN* msglen,
1339                     I32* utf8)
1340 {
1341     dVAR;
1342     const char *message;
1343
1344     if (pat) {
1345         SV * const msv = vmess(pat, args);
1346         if (PL_errors && SvCUR(PL_errors)) {
1347             sv_catsv(PL_errors, msv);
1348             message = SvPV_const(PL_errors, *msglen);
1349             SvCUR_set(PL_errors, 0);
1350         }
1351         else
1352             message = SvPV_const(msv,*msglen);
1353         *utf8 = SvUTF8(msv);
1354     }
1355     else {
1356         message = NULL;
1357     }
1358
1359     if (PL_diehook) {
1360         S_vdie_common(aTHX_ message, *msglen, *utf8, FALSE);
1361     }
1362     return message;
1363 }
1364
1365 static OP *
1366 S_vdie(pTHX_ const char* pat, va_list *args)
1367 {
1368     dVAR;
1369     const char *message;
1370     const int was_in_eval = PL_in_eval;
1371     STRLEN msglen;
1372     I32 utf8 = 0;
1373
1374     message = vdie_croak_common(pat, args, &msglen, &utf8);
1375
1376     PL_restartop = die_where(message, msglen);
1377     SvFLAGS(ERRSV) |= utf8;
1378     if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1379         JMPENV_JUMP(3);
1380     return PL_restartop;
1381 }
1382
1383 #if defined(PERL_IMPLICIT_CONTEXT)
1384 OP *
1385 Perl_die_nocontext(const char* pat, ...)
1386 {
1387     dTHX;
1388     OP *o;
1389     va_list args;
1390     PERL_ARGS_ASSERT_DIE_NOCONTEXT;
1391     va_start(args, pat);
1392     o = vdie(pat, &args);
1393     va_end(args);
1394     return o;
1395 }
1396 #endif /* PERL_IMPLICIT_CONTEXT */
1397
1398 OP *
1399 Perl_die(pTHX_ const char* pat, ...)
1400 {
1401     OP *o;
1402     va_list args;
1403     va_start(args, pat);
1404     o = vdie(pat, &args);
1405     va_end(args);
1406     return o;
1407 }
1408
1409 void
1410 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1411 {
1412     dVAR;
1413     const char *message;
1414     STRLEN msglen;
1415     I32 utf8 = 0;
1416
1417     message = S_vdie_croak_common(aTHX_ pat, args, &msglen, &utf8);
1418
1419     if (PL_in_eval) {
1420         PL_restartop = die_where(message, msglen);
1421         SvFLAGS(ERRSV) |= utf8;
1422         JMPENV_JUMP(3);
1423     }
1424     else if (!message)
1425         message = SvPVx_const(ERRSV, msglen);
1426
1427     write_to_stderr(message, msglen);
1428     my_failure_exit();
1429 }
1430
1431 #if defined(PERL_IMPLICIT_CONTEXT)
1432 void
1433 Perl_croak_nocontext(const char *pat, ...)
1434 {
1435     dTHX;
1436     va_list args;
1437     va_start(args, pat);
1438     vcroak(pat, &args);
1439     /* NOTREACHED */
1440     va_end(args);
1441 }
1442 #endif /* PERL_IMPLICIT_CONTEXT */
1443
1444 /*
1445 =head1 Warning and Dieing
1446
1447 =for apidoc croak
1448
1449 This is the XSUB-writer's interface to Perl's C<die> function.
1450 Normally call this function the same way you call the C C<printf>
1451 function.  Calling C<croak> returns control directly to Perl,
1452 sidestepping the normal C order of execution. See C<warn>.
1453
1454 If you want to throw an exception object, assign the object to
1455 C<$@> and then pass C<NULL> to croak():
1456
1457    errsv = get_sv("@", TRUE);
1458    sv_setsv(errsv, exception_object);
1459    croak(NULL);
1460
1461 =cut
1462 */
1463
1464 void
1465 Perl_croak(pTHX_ const char *pat, ...)
1466 {
1467     va_list args;
1468     va_start(args, pat);
1469     vcroak(pat, &args);
1470     /* NOTREACHED */
1471     va_end(args);
1472 }
1473
1474 void
1475 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1476 {
1477     dVAR;
1478     STRLEN msglen;
1479     SV * const msv = vmess(pat, args);
1480     const I32 utf8 = SvUTF8(msv);
1481     const char * const message = SvPV_const(msv, msglen);
1482
1483     PERL_ARGS_ASSERT_VWARN;
1484
1485     if (PL_warnhook) {
1486         if (vdie_common(message, msglen, utf8, TRUE))
1487             return;
1488     }
1489
1490     write_to_stderr(message, msglen);
1491 }
1492
1493 #if defined(PERL_IMPLICIT_CONTEXT)
1494 void
1495 Perl_warn_nocontext(const char *pat, ...)
1496 {
1497     dTHX;
1498     va_list args;
1499     PERL_ARGS_ASSERT_WARN_NOCONTEXT;
1500     va_start(args, pat);
1501     vwarn(pat, &args);
1502     va_end(args);
1503 }
1504 #endif /* PERL_IMPLICIT_CONTEXT */
1505
1506 /*
1507 =for apidoc warn
1508
1509 This is the XSUB-writer's interface to Perl's C<warn> function.  Call this
1510 function the same way you call the C C<printf> function.  See C<croak>.
1511
1512 =cut
1513 */
1514
1515 void
1516 Perl_warn(pTHX_ const char *pat, ...)
1517 {
1518     va_list args;
1519     PERL_ARGS_ASSERT_WARN;
1520     va_start(args, pat);
1521     vwarn(pat, &args);
1522     va_end(args);
1523 }
1524
1525 #if defined(PERL_IMPLICIT_CONTEXT)
1526 void
1527 Perl_warner_nocontext(U32 err, const char *pat, ...)
1528 {
1529     dTHX; 
1530     va_list args;
1531     PERL_ARGS_ASSERT_WARNER_NOCONTEXT;
1532     va_start(args, pat);
1533     vwarner(err, pat, &args);
1534     va_end(args);
1535 }
1536 #endif /* PERL_IMPLICIT_CONTEXT */
1537
1538 void
1539 Perl_warner(pTHX_ U32  err, const char* pat,...)
1540 {
1541     va_list args;
1542     PERL_ARGS_ASSERT_WARNER;
1543     va_start(args, pat);
1544     vwarner(err, pat, &args);
1545     va_end(args);
1546 }
1547
1548 void
1549 Perl_vwarner(pTHX_ U32  err, const char* pat, va_list* args)
1550 {
1551     dVAR;
1552     PERL_ARGS_ASSERT_VWARNER;
1553     if (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) {
1554         SV * const msv = vmess(pat, args);
1555         STRLEN msglen;
1556         const char * const message = SvPV_const(msv, msglen);
1557         const I32 utf8 = SvUTF8(msv);
1558
1559         if (PL_diehook) {
1560             assert(message);
1561             S_vdie_common(aTHX_ message, msglen, utf8, FALSE);
1562         }
1563         if (PL_in_eval) {
1564             PL_restartop = die_where(message, msglen);
1565             SvFLAGS(ERRSV) |= utf8;
1566             JMPENV_JUMP(3);
1567         }
1568         write_to_stderr(message, msglen);
1569         my_failure_exit();
1570     }
1571     else {
1572         Perl_vwarn(aTHX_ pat, args);
1573     }
1574 }
1575
1576 /* implements the ckWARN? macros */
1577
1578 bool
1579 Perl_ckwarn(pTHX_ U32 w)
1580 {
1581     dVAR;
1582     return
1583         (
1584                isLEXWARN_on
1585             && PL_curcop->cop_warnings != pWARN_NONE
1586             && (
1587                    PL_curcop->cop_warnings == pWARN_ALL
1588                 || isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w))
1589                 || (unpackWARN2(w) &&
1590                      isWARN_on(PL_curcop->cop_warnings, unpackWARN2(w)))
1591                 || (unpackWARN3(w) &&
1592                      isWARN_on(PL_curcop->cop_warnings, unpackWARN3(w)))
1593                 || (unpackWARN4(w) &&
1594                      isWARN_on(PL_curcop->cop_warnings, unpackWARN4(w)))
1595                 )
1596         )
1597         ||
1598         (
1599             isLEXWARN_off && PL_dowarn & G_WARN_ON
1600         )
1601         ;
1602 }
1603
1604 /* implements the ckWARN?_d macro */
1605
1606 bool
1607 Perl_ckwarn_d(pTHX_ U32 w)
1608 {
1609     dVAR;
1610     return
1611            isLEXWARN_off
1612         || PL_curcop->cop_warnings == pWARN_ALL
1613         || (
1614               PL_curcop->cop_warnings != pWARN_NONE 
1615            && (
1616                    isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w))
1617               || (unpackWARN2(w) &&
1618                    isWARN_on(PL_curcop->cop_warnings, unpackWARN2(w)))
1619               || (unpackWARN3(w) &&
1620                    isWARN_on(PL_curcop->cop_warnings, unpackWARN3(w)))
1621               || (unpackWARN4(w) &&
1622                    isWARN_on(PL_curcop->cop_warnings, unpackWARN4(w)))
1623               )
1624            )
1625         ;
1626 }
1627
1628 /* Set buffer=NULL to get a new one.  */
1629 STRLEN *
1630 Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
1631                            STRLEN size) {
1632     const MEM_SIZE len_wanted = sizeof(STRLEN) + size;
1633     PERL_UNUSED_CONTEXT;
1634     PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD;
1635
1636     buffer = (STRLEN*)
1637         (specialWARN(buffer) ?
1638          PerlMemShared_malloc(len_wanted) :
1639          PerlMemShared_realloc(buffer, len_wanted));
1640     buffer[0] = size;
1641     Copy(bits, (buffer + 1), size, char);
1642     return buffer;
1643 }
1644
1645 /* since we've already done strlen() for both nam and val
1646  * we can use that info to make things faster than
1647  * sprintf(s, "%s=%s", nam, val)
1648  */
1649 #define my_setenv_format(s, nam, nlen, val, vlen) \
1650    Copy(nam, s, nlen, char); \
1651    *(s+nlen) = '='; \
1652    Copy(val, s+(nlen+1), vlen, char); \
1653    *(s+(nlen+1+vlen)) = '\0'
1654
1655 #ifdef USE_ENVIRON_ARRAY
1656        /* VMS' my_setenv() is in vms.c */
1657 #if !defined(WIN32) && !defined(NETWARE)
1658 void
1659 Perl_my_setenv(pTHX_ const char *nam, const char *val)
1660 {
1661   dVAR;
1662 #ifdef USE_ITHREADS
1663   /* only parent thread can modify process environment */
1664   if (PL_curinterp == aTHX)
1665 #endif
1666   {
1667 #ifndef PERL_USE_SAFE_PUTENV
1668     if (!PL_use_safe_putenv) {
1669     /* most putenv()s leak, so we manipulate environ directly */
1670     register I32 i;
1671     register const I32 len = strlen(nam);
1672     int nlen, vlen;
1673
1674     /* where does it go? */
1675     for (i = 0; environ[i]; i++) {
1676         if (strnEQ(environ[i],nam,len) && environ[i][len] == '=')
1677             break;
1678     }
1679
1680     if (environ == PL_origenviron) {   /* need we copy environment? */
1681        I32 j;
1682        I32 max;
1683        char **tmpenv;
1684
1685        max = i;
1686        while (environ[max])
1687            max++;
1688        tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1689        for (j=0; j<max; j++) {         /* copy environment */
1690            const int len = strlen(environ[j]);
1691            tmpenv[j] = (char*)safesysmalloc((len+1)*sizeof(char));
1692            Copy(environ[j], tmpenv[j], len+1, char);
1693        }
1694        tmpenv[max] = NULL;
1695        environ = tmpenv;               /* tell exec where it is now */
1696     }
1697     if (!val) {
1698        safesysfree(environ[i]);
1699        while (environ[i]) {
1700            environ[i] = environ[i+1];
1701            i++;
1702         }
1703        return;
1704     }
1705     if (!environ[i]) {                 /* does not exist yet */
1706        environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1707        environ[i+1] = NULL;    /* make sure it's null terminated */
1708     }
1709     else
1710        safesysfree(environ[i]);
1711        nlen = strlen(nam);
1712        vlen = strlen(val);
1713
1714        environ[i] = (char*)safesysmalloc((nlen+vlen+2) * sizeof(char));
1715        /* all that work just for this */
1716        my_setenv_format(environ[i], nam, nlen, val, vlen);
1717     } else {
1718 # endif
1719 #   if defined(__CYGWIN__) || defined(EPOC) || defined(__SYMBIAN32__) || defined(__riscos__)
1720 #       if defined(HAS_UNSETENV)
1721         if (val == NULL) {
1722             (void)unsetenv(nam);
1723         } else {
1724             (void)setenv(nam, val, 1);
1725         }
1726 #       else /* ! HAS_UNSETENV */
1727         (void)setenv(nam, val, 1);
1728 #       endif /* HAS_UNSETENV */
1729 #   else
1730 #       if defined(HAS_UNSETENV)
1731         if (val == NULL) {
1732             (void)unsetenv(nam);
1733         } else {
1734             const int nlen = strlen(nam);
1735             const int vlen = strlen(val);
1736             char * const new_env =
1737                 (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
1738             my_setenv_format(new_env, nam, nlen, val, vlen);
1739             (void)putenv(new_env);
1740         }
1741 #       else /* ! HAS_UNSETENV */
1742         char *new_env;
1743         const int nlen = strlen(nam);
1744         int vlen;
1745         if (!val) {
1746            val = "";
1747         }
1748         vlen = strlen(val);
1749         new_env = (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
1750         /* all that work just for this */
1751         my_setenv_format(new_env, nam, nlen, val, vlen);
1752         (void)putenv(new_env);
1753 #       endif /* HAS_UNSETENV */
1754 #   endif /* __CYGWIN__ */
1755 #ifndef PERL_USE_SAFE_PUTENV
1756     }
1757 #endif
1758   }
1759 }
1760
1761 #else /* WIN32 || NETWARE */
1762
1763 void
1764 Perl_my_setenv(pTHX_ const char *nam, const char *val)
1765 {
1766     dVAR;
1767     register char *envstr;
1768     const int nlen = strlen(nam);
1769     int vlen;
1770
1771     if (!val) {
1772        val = "";
1773     }
1774     vlen = strlen(val);
1775     Newx(envstr, nlen+vlen+2, char);
1776     my_setenv_format(envstr, nam, nlen, val, vlen);
1777     (void)PerlEnv_putenv(envstr);
1778     Safefree(envstr);
1779 }
1780
1781 #endif /* WIN32 || NETWARE */
1782
1783 #endif /* !VMS && !EPOC*/
1784
1785 #ifdef UNLINK_ALL_VERSIONS
1786 I32
1787 Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
1788 {
1789     I32 retries = 0;
1790
1791     PERL_ARGS_ASSERT_UNLNK;
1792
1793     while (PerlLIO_unlink(f) >= 0)
1794         retries++;
1795     return retries ? 0 : -1;
1796 }
1797 #endif
1798
1799 /* this is a drop-in replacement for bcopy() */
1800 #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
1801 char *
1802 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
1803 {
1804     char * const retval = to;
1805
1806     PERL_ARGS_ASSERT_MY_BCOPY;
1807
1808     if (from - to >= 0) {
1809         while (len--)
1810             *to++ = *from++;
1811     }
1812     else {
1813         to += len;
1814         from += len;
1815         while (len--)
1816             *(--to) = *(--from);
1817     }
1818     return retval;
1819 }
1820 #endif
1821
1822 /* this is a drop-in replacement for memset() */
1823 #ifndef HAS_MEMSET
1824 void *
1825 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
1826 {
1827     char * const retval = loc;
1828
1829     PERL_ARGS_ASSERT_MY_MEMSET;
1830
1831     while (len--)
1832         *loc++ = ch;
1833     return retval;
1834 }
1835 #endif
1836
1837 /* this is a drop-in replacement for bzero() */
1838 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1839 char *
1840 Perl_my_bzero(register char *loc, register I32 len)
1841 {
1842     char * const retval = loc;
1843
1844     PERL_ARGS_ASSERT_MY_BZERO;
1845
1846     while (len--)
1847         *loc++ = 0;
1848     return retval;
1849 }
1850 #endif
1851
1852 /* this is a drop-in replacement for memcmp() */
1853 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1854 I32
1855 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
1856 {
1857     register const U8 *a = (const U8 *)s1;
1858     register const U8 *b = (const U8 *)s2;
1859     register I32 tmp;
1860
1861     PERL_ARGS_ASSERT_MY_MEMCMP;
1862
1863     while (len--) {
1864         if ((tmp = *a++ - *b++))
1865             return tmp;
1866     }
1867     return 0;
1868 }
1869 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1870
1871 #ifndef HAS_VPRINTF
1872 /* This vsprintf replacement should generally never get used, since
1873    vsprintf was available in both System V and BSD 2.11.  (There may
1874    be some cross-compilation or embedded set-ups where it is needed,
1875    however.)
1876
1877    If you encounter a problem in this function, it's probably a symptom
1878    that Configure failed to detect your system's vprintf() function.
1879    See the section on "item vsprintf" in the INSTALL file.
1880
1881    This version may compile on systems with BSD-ish <stdio.h>,
1882    but probably won't on others.
1883 */
1884
1885 #ifdef USE_CHAR_VSPRINTF
1886 char *
1887 #else
1888 int
1889 #endif
1890 vsprintf(char *dest, const char *pat, void *args)
1891 {
1892     FILE fakebuf;
1893
1894 #if defined(STDIO_PTR_LVALUE) && defined(STDIO_CNT_LVALUE)
1895     FILE_ptr(&fakebuf) = (STDCHAR *) dest;
1896     FILE_cnt(&fakebuf) = 32767;
1897 #else
1898     /* These probably won't compile -- If you really need
1899        this, you'll have to figure out some other method. */
1900     fakebuf._ptr = dest;
1901     fakebuf._cnt = 32767;
1902 #endif
1903 #ifndef _IOSTRG
1904 #define _IOSTRG 0
1905 #endif
1906     fakebuf._flag = _IOWRT|_IOSTRG;
1907     _doprnt(pat, args, &fakebuf);       /* what a kludge */
1908 #if defined(STDIO_PTR_LVALUE)
1909     *(FILE_ptr(&fakebuf)++) = '\0';
1910 #else
1911     /* PerlIO has probably #defined away fputc, but we want it here. */
1912 #  ifdef fputc
1913 #    undef fputc  /* XXX Should really restore it later */
1914 #  endif
1915     (void)fputc('\0', &fakebuf);
1916 #endif
1917 #ifdef USE_CHAR_VSPRINTF
1918     return(dest);
1919 #else
1920     return 0;           /* perl doesn't use return value */
1921 #endif
1922 }
1923
1924 #endif /* HAS_VPRINTF */
1925
1926 #ifdef MYSWAP
1927 #if BYTEORDER != 0x4321
1928 short
1929 Perl_my_swap(pTHX_ short s)
1930 {
1931 #if (BYTEORDER & 1) == 0
1932     short result;
1933
1934     result = ((s & 255) << 8) + ((s >> 8) & 255);
1935     return result;
1936 #else
1937     return s;
1938 #endif
1939 }
1940
1941 long
1942 Perl_my_htonl(pTHX_ long l)
1943 {
1944     union {
1945         long result;
1946         char c[sizeof(long)];
1947     } u;
1948
1949 #if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678
1950 #if BYTEORDER == 0x12345678
1951     u.result = 0; 
1952 #endif 
1953     u.c[0] = (l >> 24) & 255;
1954     u.c[1] = (l >> 16) & 255;
1955     u.c[2] = (l >> 8) & 255;
1956     u.c[3] = l & 255;
1957     return u.result;
1958 #else
1959 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1960     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
1961 #else
1962     register I32 o;
1963     register I32 s;
1964
1965     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1966         u.c[o & 0xf] = (l >> s) & 255;
1967     }
1968     return u.result;
1969 #endif
1970 #endif
1971 }
1972
1973 long
1974 Perl_my_ntohl(pTHX_ long l)
1975 {
1976     union {
1977         long l;
1978         char c[sizeof(long)];
1979     } u;
1980
1981 #if BYTEORDER == 0x1234
1982     u.c[0] = (l >> 24) & 255;
1983     u.c[1] = (l >> 16) & 255;
1984     u.c[2] = (l >> 8) & 255;
1985     u.c[3] = l & 255;
1986     return u.l;
1987 #else
1988 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1989     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
1990 #else
1991     register I32 o;
1992     register I32 s;
1993
1994     u.l = l;
1995     l = 0;
1996     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1997         l |= (u.c[o & 0xf] & 255) << s;
1998     }
1999     return l;
2000 #endif
2001 #endif
2002 }
2003
2004 #endif /* BYTEORDER != 0x4321 */
2005 #endif /* MYSWAP */
2006
2007 /*
2008  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2009  * If these functions are defined,
2010  * the BYTEORDER is neither 0x1234 nor 0x4321.
2011  * However, this is not assumed.
2012  * -DWS
2013  */
2014
2015 #define HTOLE(name,type)                                        \
2016         type                                                    \
2017         name (register type n)                                  \
2018         {                                                       \
2019             union {                                             \
2020                 type value;                                     \
2021                 char c[sizeof(type)];                           \
2022             } u;                                                \
2023             register U32 i;                                     \
2024             register U32 s = 0;                                 \
2025             for (i = 0; i < sizeof(u.c); i++, s += 8) {         \
2026                 u.c[i] = (n >> s) & 0xFF;                       \
2027             }                                                   \
2028             return u.value;                                     \
2029         }
2030
2031 #define LETOH(name,type)                                        \
2032         type                                                    \
2033         name (register type n)                                  \
2034         {                                                       \
2035             union {                                             \
2036                 type value;                                     \
2037                 char c[sizeof(type)];                           \
2038             } u;                                                \
2039             register U32 i;                                     \
2040             register U32 s = 0;                                 \
2041             u.value = n;                                        \
2042             n = 0;                                              \
2043             for (i = 0; i < sizeof(u.c); i++, s += 8) {         \
2044                 n |= ((type)(u.c[i] & 0xFF)) << s;              \
2045             }                                                   \
2046             return n;                                           \
2047         }
2048
2049 /*
2050  * Big-endian byte order functions.
2051  */
2052
2053 #define HTOBE(name,type)                                        \
2054         type                                                    \
2055         name (register type n)                                  \
2056         {                                                       \
2057             union {                                             \
2058                 type value;                                     \
2059                 char c[sizeof(type)];                           \
2060             } u;                                                \
2061             register U32 i;                                     \
2062             register U32 s = 8*(sizeof(u.c)-1);                 \
2063             for (i = 0; i < sizeof(u.c); i++, s -= 8) {         \
2064                 u.c[i] = (n >> s) & 0xFF;                       \
2065             }                                                   \
2066             return u.value;                                     \
2067         }
2068
2069 #define BETOH(name,type)                                        \
2070         type                                                    \
2071         name (register type n)                                  \
2072         {                                                       \
2073             union {                                             \
2074                 type value;                                     \
2075                 char c[sizeof(type)];                           \
2076             } u;                                                \
2077             register U32 i;                                     \
2078             register U32 s = 8*(sizeof(u.c)-1);                 \
2079             u.value = n;                                        \
2080             n = 0;                                              \
2081             for (i = 0; i < sizeof(u.c); i++, s -= 8) {         \
2082                 n |= ((type)(u.c[i] & 0xFF)) << s;              \
2083             }                                                   \
2084             return n;                                           \
2085         }
2086
2087 /*
2088  * If we just can't do it...
2089  */
2090
2091 #define NOT_AVAIL(name,type)                                    \
2092         type                                                    \
2093         name (register type n)                                  \
2094         {                                                       \
2095             Perl_croak_nocontext(#name "() not available");     \
2096             return n; /* not reached */                         \
2097         }
2098
2099
2100 #if defined(HAS_HTOVS) && !defined(htovs)
2101 HTOLE(htovs,short)
2102 #endif
2103 #if defined(HAS_HTOVL) && !defined(htovl)
2104 HTOLE(htovl,long)
2105 #endif
2106 #if defined(HAS_VTOHS) && !defined(vtohs)
2107 LETOH(vtohs,short)
2108 #endif
2109 #if defined(HAS_VTOHL) && !defined(vtohl)
2110 LETOH(vtohl,long)
2111 #endif
2112
2113 #ifdef PERL_NEED_MY_HTOLE16
2114 # if U16SIZE == 2
2115 HTOLE(Perl_my_htole16,U16)
2116 # else
2117 NOT_AVAIL(Perl_my_htole16,U16)
2118 # endif
2119 #endif
2120 #ifdef PERL_NEED_MY_LETOH16
2121 # if U16SIZE == 2
2122 LETOH(Perl_my_letoh16,U16)
2123 # else
2124 NOT_AVAIL(Perl_my_letoh16,U16)
2125 # endif
2126 #endif
2127 #ifdef PERL_NEED_MY_HTOBE16
2128 # if U16SIZE == 2
2129 HTOBE(Perl_my_htobe16,U16)
2130 # else
2131 NOT_AVAIL(Perl_my_htobe16,U16)
2132 # endif
2133 #endif
2134 #ifdef PERL_NEED_MY_BETOH16
2135 # if U16SIZE == 2
2136 BETOH(Perl_my_betoh16,U16)
2137 # else
2138 NOT_AVAIL(Perl_my_betoh16,U16)
2139 # endif
2140 #endif
2141
2142 #ifdef PERL_NEED_MY_HTOLE32
2143 # if U32SIZE == 4
2144 HTOLE(Perl_my_htole32,U32)
2145 # else
2146 NOT_AVAIL(Perl_my_htole32,U32)
2147 # endif
2148 #endif
2149 #ifdef PERL_NEED_MY_LETOH32
2150 # if U32SIZE == 4
2151 LETOH(Perl_my_letoh32,U32)
2152 # else
2153 NOT_AVAIL(Perl_my_letoh32,U32)
2154 # endif
2155 #endif
2156 #ifdef PERL_NEED_MY_HTOBE32
2157 # if U32SIZE == 4
2158 HTOBE(Perl_my_htobe32,U32)
2159 # else
2160 NOT_AVAIL(Perl_my_htobe32,U32)
2161 # endif
2162 #endif
2163 #ifdef PERL_NEED_MY_BETOH32
2164 # if U32SIZE == 4
2165 BETOH(Perl_my_betoh32,U32)
2166 # else
2167 NOT_AVAIL(Perl_my_betoh32,U32)
2168 # endif
2169 #endif
2170
2171 #ifdef PERL_NEED_MY_HTOLE64
2172 # if U64SIZE == 8
2173 HTOLE(Perl_my_htole64,U64)
2174 # else
2175 NOT_AVAIL(Perl_my_htole64,U64)
2176 # endif
2177 #endif
2178 #ifdef PERL_NEED_MY_LETOH64
2179 # if U64SIZE == 8
2180 LETOH(Perl_my_letoh64,U64)
2181 # else
2182 NOT_AVAIL(Perl_my_letoh64,U64)
2183 # endif
2184 #endif
2185 #ifdef PERL_NEED_MY_HTOBE64
2186 # if U64SIZE == 8
2187 HTOBE(Perl_my_htobe64,U64)
2188 # else
2189 NOT_AVAIL(Perl_my_htobe64,U64)
2190 # endif
2191 #endif
2192 #ifdef PERL_NEED_MY_BETOH64
2193 # if U64SIZE == 8
2194 BETOH(Perl_my_betoh64,U64)
2195 # else
2196 NOT_AVAIL(Perl_my_betoh64,U64)
2197 # endif
2198 #endif
2199
2200 #ifdef PERL_NEED_MY_HTOLES
2201 HTOLE(Perl_my_htoles,short)
2202 #endif
2203 #ifdef PERL_NEED_MY_LETOHS
2204 LETOH(Perl_my_letohs,short)
2205 #endif
2206 #ifdef PERL_NEED_MY_HTOBES
2207 HTOBE(Perl_my_htobes,short)
2208 #endif
2209 #ifdef PERL_NEED_MY_BETOHS
2210 BETOH(Perl_my_betohs,short)
2211 #endif
2212
2213 #ifdef PERL_NEED_MY_HTOLEI
2214 HTOLE(Perl_my_htolei,int)
2215 #endif
2216 #ifdef PERL_NEED_MY_LETOHI
2217 LETOH(Perl_my_letohi,int)
2218 #endif
2219 #ifdef PERL_NEED_MY_HTOBEI
2220 HTOBE(Perl_my_htobei,int)
2221 #endif
2222 #ifdef PERL_NEED_MY_BETOHI
2223 BETOH(Perl_my_betohi,int)
2224 #endif
2225
2226 #ifdef PERL_NEED_MY_HTOLEL
2227 HTOLE(Perl_my_htolel,long)
2228 #endif
2229 #ifdef PERL_NEED_MY_LETOHL
2230 LETOH(Perl_my_letohl,long)
2231 #endif
2232 #ifdef PERL_NEED_MY_HTOBEL
2233 HTOBE(Perl_my_htobel,long)
2234 #endif
2235 #ifdef PERL_NEED_MY_BETOHL
2236 BETOH(Perl_my_betohl,long)
2237 #endif
2238
2239 void
2240 Perl_my_swabn(void *ptr, int n)
2241 {
2242     register char *s = (char *)ptr;
2243     register char *e = s + (n-1);
2244     register char tc;
2245
2246     PERL_ARGS_ASSERT_MY_SWABN;
2247
2248     for (n /= 2; n > 0; s++, e--, n--) {
2249       tc = *s;
2250       *s = *e;
2251       *e = tc;
2252     }
2253 }
2254
2255 PerlIO *
2256 Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
2257 {
2258 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(OS2) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL) && !defined(NETWARE) && !defined(__LIBCATAMOUNT__)
2259     dVAR;
2260     int p[2];
2261     register I32 This, that;
2262     register Pid_t pid;
2263     SV *sv;
2264     I32 did_pipes = 0;
2265     int pp[2];
2266
2267     PERL_ARGS_ASSERT_MY_POPEN_LIST;
2268
2269     PERL_FLUSHALL_FOR_CHILD;
2270     This = (*mode == 'w');
2271     that = !This;
2272     if (PL_tainting) {
2273         taint_env();
2274         taint_proper("Insecure %s%s", "EXEC");
2275     }
2276     if (PerlProc_pipe(p) < 0)
2277         return NULL;
2278     /* Try for another pipe pair for error return */
2279     if (PerlProc_pipe(pp) >= 0)
2280         did_pipes = 1;
2281     while ((pid = PerlProc_fork()) < 0) {
2282         if (errno != EAGAIN) {
2283             PerlLIO_close(p[This]);
2284             PerlLIO_close(p[that]);
2285             if (did_pipes) {
2286                 PerlLIO_close(pp[0]);
2287                 PerlLIO_close(pp[1]);
2288             }
2289             return NULL;
2290         }
2291         sleep(5);
2292     }
2293     if (pid == 0) {
2294         /* Child */
2295 #undef THIS
2296 #undef THAT
2297 #define THIS that
2298 #define THAT This
2299         /* Close parent's end of error status pipe (if any) */
2300         if (did_pipes) {
2301             PerlLIO_close(pp[0]);
2302 #if defined(HAS_FCNTL) && defined(F_SETFD)
2303             /* Close error pipe automatically if exec works */
2304             fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2305 #endif
2306         }
2307         /* Now dup our end of _the_ pipe to right position */
2308         if (p[THIS] != (*mode == 'r')) {
2309             PerlLIO_dup2(p[THIS], *mode == 'r');
2310             PerlLIO_close(p[THIS]);
2311             if (p[THAT] != (*mode == 'r'))      /* if dup2() didn't close it */
2312                 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2313         }
2314         else
2315             PerlLIO_close(p[THAT]);     /* close parent's end of _the_ pipe */
2316 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2317         /* No automatic close - do it by hand */
2318 #  ifndef NOFILE
2319 #  define NOFILE 20
2320 #  endif
2321         {
2322             int fd;
2323
2324             for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
2325                 if (fd != pp[1])
2326                     PerlLIO_close(fd);
2327             }
2328         }
2329 #endif
2330         do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
2331         PerlProc__exit(1);
2332 #undef THIS
2333 #undef THAT
2334     }
2335     /* Parent */
2336     do_execfree();      /* free any memory malloced by child on fork */
2337     if (did_pipes)
2338         PerlLIO_close(pp[1]);
2339     /* Keep the lower of the two fd numbers */
2340     if (p[that] < p[This]) {
2341         PerlLIO_dup2(p[This], p[that]);
2342         PerlLIO_close(p[This]);
2343         p[This] = p[that];
2344     }
2345     else
2346         PerlLIO_close(p[that]);         /* close child's end of pipe */
2347
2348     LOCK_FDPID_MUTEX;
2349     sv = *av_fetch(PL_fdpid,p[This],TRUE);
2350     UNLOCK_FDPID_MUTEX;
2351     SvUPGRADE(sv,SVt_IV);
2352     SvIV_set(sv, pid);
2353     PL_forkprocess = pid;
2354     /* If we managed to get status pipe check for exec fail */
2355     if (did_pipes && pid > 0) {
2356         int errkid;
2357         unsigned n = 0;
2358         SSize_t n1;
2359
2360         while (n < sizeof(int)) {
2361             n1 = PerlLIO_read(pp[0],
2362                               (void*)(((char*)&errkid)+n),
2363                               (sizeof(int)) - n);
2364             if (n1 <= 0)
2365                 break;
2366             n += n1;
2367         }
2368         PerlLIO_close(pp[0]);
2369         did_pipes = 0;
2370         if (n) {                        /* Error */
2371             int pid2, status;
2372             PerlLIO_close(p[This]);
2373             if (n != sizeof(int))
2374                 Perl_croak(aTHX_ "panic: kid popen errno read");
2375             do {
2376                 pid2 = wait4pid(pid, &status, 0);
2377             } while (pid2 == -1 && errno == EINTR);
2378             errno = errkid;             /* Propagate errno from kid */
2379             return NULL;
2380         }
2381     }
2382     if (did_pipes)
2383          PerlLIO_close(pp[0]);
2384     return PerlIO_fdopen(p[This], mode);
2385 #else
2386 #  ifdef OS2    /* Same, without fork()ing and all extra overhead... */
2387     return my_syspopen4(aTHX_ NULL, mode, n, args);
2388 #  else
2389     Perl_croak(aTHX_ "List form of piped open not implemented");
2390     return (PerlIO *) NULL;
2391 #  endif
2392 #endif
2393 }
2394
2395     /* VMS' my_popen() is in VMS.c, same with OS/2. */
2396 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL) && !defined(__LIBCATAMOUNT__)
2397 PerlIO *
2398 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2399 {
2400     dVAR;
2401     int p[2];
2402     register I32 This, that;
2403     register Pid_t pid;
2404     SV *sv;
2405     const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
2406     I32 did_pipes = 0;
2407     int pp[2];
2408
2409     PERL_ARGS_ASSERT_MY_POPEN;
2410
2411     PERL_FLUSHALL_FOR_CHILD;
2412 #ifdef OS2
2413     if (doexec) {
2414         return my_syspopen(aTHX_ cmd,mode);
2415     }
2416 #endif
2417     This = (*mode == 'w');
2418     that = !This;
2419     if (doexec && PL_tainting) {
2420         taint_env();
2421         taint_proper("Insecure %s%s", "EXEC");
2422     }
2423     if (PerlProc_pipe(p) < 0)
2424         return NULL;
2425     if (doexec && PerlProc_pipe(pp) >= 0)
2426         did_pipes = 1;
2427     while ((pid = PerlProc_fork()) < 0) {
2428         if (errno != EAGAIN) {
2429             PerlLIO_close(p[This]);
2430             PerlLIO_close(p[that]);
2431             if (did_pipes) {
2432                 PerlLIO_close(pp[0]);
2433                 PerlLIO_close(pp[1]);
2434             }
2435             if (!doexec)
2436                 Perl_croak(aTHX_ "Can't fork");
2437             return NULL;
2438         }
2439         sleep(5);
2440     }
2441     if (pid == 0) {
2442         GV* tmpgv;
2443
2444 #undef THIS
2445 #undef THAT
2446 #define THIS that
2447 #define THAT This
2448         if (did_pipes) {
2449             PerlLIO_close(pp[0]);
2450 #if defined(HAS_FCNTL) && defined(F_SETFD)
2451             fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2452 #endif
2453         }
2454         if (p[THIS] != (*mode == 'r')) {
2455             PerlLIO_dup2(p[THIS], *mode == 'r');
2456             PerlLIO_close(p[THIS]);
2457             if (p[THAT] != (*mode == 'r'))      /* if dup2() didn't close it */
2458                 PerlLIO_close(p[THAT]);
2459         }
2460         else
2461             PerlLIO_close(p[THAT]);
2462 #ifndef OS2
2463         if (doexec) {
2464 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2465 #ifndef NOFILE
2466 #define NOFILE 20
2467 #endif
2468             {
2469                 int fd;
2470
2471                 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2472                     if (fd != pp[1])
2473                         PerlLIO_close(fd);
2474             }
2475 #endif
2476             /* may or may not use the shell */
2477             do_exec3(cmd, pp[1], did_pipes);
2478             PerlProc__exit(1);
2479         }
2480 #endif  /* defined OS2 */
2481
2482 #ifdef PERLIO_USING_CRLF
2483    /* Since we circumvent IO layers when we manipulate low-level
2484       filedescriptors directly, need to manually switch to the
2485       default, binary, low-level mode; see PerlIOBuf_open(). */
2486    PerlLIO_setmode((*mode == 'r'), O_BINARY);
2487 #endif 
2488
2489         if ((tmpgv = gv_fetchpvs("$", GV_ADD|GV_NOTQUAL, SVt_PV))) {
2490             SvREADONLY_off(GvSV(tmpgv));
2491             sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2492             SvREADONLY_on(GvSV(tmpgv));
2493         }
2494 #ifdef THREADS_HAVE_PIDS
2495         PL_ppid = (IV)getppid();
2496 #endif
2497         PL_forkprocess = 0;
2498 #ifdef PERL_USES_PL_PIDSTATUS
2499         hv_clear(PL_pidstatus); /* we have no children */
2500 #endif
2501         return NULL;
2502 #undef THIS
2503 #undef THAT
2504     }
2505     do_execfree();      /* free any memory malloced by child on vfork */
2506     if (did_pipes)
2507         PerlLIO_close(pp[1]);
2508     if (p[that] < p[This]) {
2509         PerlLIO_dup2(p[This], p[that]);
2510         PerlLIO_close(p[This]);
2511         p[This] = p[that];
2512     }
2513     else
2514         PerlLIO_close(p[that]);
2515
2516     LOCK_FDPID_MUTEX;
2517     sv = *av_fetch(PL_fdpid,p[This],TRUE);
2518     UNLOCK_FDPID_MUTEX;
2519     SvUPGRADE(sv,SVt_IV);
2520     SvIV_set(sv, pid);
2521     PL_forkprocess = pid;
2522     if (did_pipes && pid > 0) {
2523         int errkid;
2524         unsigned n = 0;
2525         SSize_t n1;
2526
2527         while (n < sizeof(int)) {
2528             n1 = PerlLIO_read(pp[0],
2529                               (void*)(((char*)&errkid)+n),
2530                               (sizeof(int)) - n);
2531             if (n1 <= 0)
2532                 break;
2533             n += n1;
2534         }
2535         PerlLIO_close(pp[0]);
2536         did_pipes = 0;
2537         if (n) {                        /* Error */
2538             int pid2, status;
2539             PerlLIO_close(p[This]);
2540             if (n != sizeof(int))
2541                 Perl_croak(aTHX_ "panic: kid popen errno read");
2542             do {
2543                 pid2 = wait4pid(pid, &status, 0);
2544             } while (pid2 == -1 && errno == EINTR);
2545             errno = errkid;             /* Propagate errno from kid */
2546             return NULL;
2547         }
2548     }
2549     if (did_pipes)
2550          PerlLIO_close(pp[0]);
2551     return PerlIO_fdopen(p[This], mode);
2552 }
2553 #else
2554 #if defined(atarist) || defined(EPOC)
2555 FILE *popen();
2556 PerlIO *
2557 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2558 {
2559     PERL_ARGS_ASSERT_MY_POPEN;
2560     PERL_FLUSHALL_FOR_CHILD;
2561     /* Call system's popen() to get a FILE *, then import it.
2562        used 0 for 2nd parameter to PerlIO_importFILE;
2563        apparently not used
2564     */
2565     return PerlIO_importFILE(popen(cmd, mode), 0);
2566 }
2567 #else
2568 #if defined(DJGPP)
2569 FILE *djgpp_popen();
2570 PerlIO *
2571 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2572 {
2573     PERL_FLUSHALL_FOR_CHILD;
2574     /* Call system's popen() to get a FILE *, then import it.
2575        used 0 for 2nd parameter to PerlIO_importFILE;
2576        apparently not used
2577     */
2578     return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2579 }
2580 #else
2581 #if defined(__LIBCATAMOUNT__)
2582 PerlIO *
2583 Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2584 {
2585     return NULL;
2586 }
2587 #endif
2588 #endif
2589 #endif
2590
2591 #endif /* !DOSISH */
2592
2593 /* this is called in parent before the fork() */
2594 void
2595 Perl_atfork_lock(void)
2596 {
2597    dVAR;
2598 #if defined(USE_ITHREADS)
2599     /* locks must be held in locking order (if any) */
2600 #  ifdef MYMALLOC
2601     MUTEX_LOCK(&PL_malloc_mutex);
2602 #  endif
2603     OP_REFCNT_LOCK;
2604 #endif
2605 }
2606
2607 /* this is called in both parent and child after the fork() */
2608 void
2609 Perl_atfork_unlock(void)
2610 {
2611     dVAR;
2612 #if defined(USE_ITHREADS)
2613     /* locks must be released in same order as in atfork_lock() */
2614 #  ifdef MYMALLOC
2615     MUTEX_UNLOCK(&PL_malloc_mutex);
2616 #  endif
2617     OP_REFCNT_UNLOCK;
2618 #endif
2619 }
2620
2621 Pid_t
2622 Perl_my_fork(void)
2623 {
2624 #if defined(HAS_FORK)
2625     Pid_t pid;
2626 #if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
2627     atfork_lock();
2628     pid = fork();
2629     atfork_unlock();
2630 #else
2631     /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2632      * handlers elsewhere in the code */
2633     pid = fork();
2634 #endif
2635     return pid;
2636 #else
2637     /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2638     Perl_croak_nocontext("fork() not available");
2639     return 0;
2640 #endif /* HAS_FORK */
2641 }
2642
2643 #ifdef DUMP_FDS
2644 void
2645 Perl_dump_fds(pTHX_ const char *const s)
2646 {
2647     int fd;
2648     Stat_t tmpstatbuf;
2649
2650     PERL_ARGS_ASSERT_DUMP_FDS;
2651
2652     PerlIO_printf(Perl_debug_log,"%s", s);
2653     for (fd = 0; fd < 32; fd++) {
2654         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2655             PerlIO_printf(Perl_debug_log," %d",fd);
2656     }
2657     PerlIO_printf(Perl_debug_log,"\n");
2658     return;
2659 }
2660 #endif  /* DUMP_FDS */
2661
2662 #ifndef HAS_DUP2
2663 int
2664 dup2(int oldfd, int newfd)
2665 {
2666 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2667     if (oldfd == newfd)
2668         return oldfd;
2669     PerlLIO_close(newfd);
2670     return fcntl(oldfd, F_DUPFD, newfd);
2671 #else
2672 #define DUP2_MAX_FDS 256
2673     int fdtmp[DUP2_MAX_FDS];
2674     I32 fdx = 0;
2675     int fd;
2676
2677     if (oldfd == newfd)
2678         return oldfd;
2679     PerlLIO_close(newfd);
2680     /* good enough for low fd's... */
2681     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2682         if (fdx >= DUP2_MAX_FDS) {
2683             PerlLIO_close(fd);
2684             fd = -1;
2685             break;
2686         }
2687         fdtmp[fdx++] = fd;
2688     }
2689     while (fdx > 0)
2690         PerlLIO_close(fdtmp[--fdx]);
2691     return fd;
2692 #endif
2693 }
2694 #endif
2695
2696 #ifndef PERL_MICRO
2697 #ifdef HAS_SIGACTION
2698
2699 #ifdef MACOS_TRADITIONAL
2700 /* We don't want restart behavior on MacOS */
2701 #undef SA_RESTART
2702 #endif
2703
2704 Sighandler_t
2705 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2706 {
2707     dVAR;
2708     struct sigaction act, oact;
2709
2710 #ifdef USE_ITHREADS
2711     /* only "parent" interpreter can diddle signals */
2712     if (PL_curinterp != aTHX)
2713         return (Sighandler_t) SIG_ERR;
2714 #endif
2715
2716     act.sa_handler = (void(*)(int))handler;
2717     sigemptyset(&act.sa_mask);
2718     act.sa_flags = 0;
2719 #ifdef SA_RESTART
2720     if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2721         act.sa_flags |= SA_RESTART;     /* SVR4, 4.3+BSD */
2722 #endif
2723 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2724     if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2725         act.sa_flags |= SA_NOCLDWAIT;
2726 #endif
2727     if (sigaction(signo, &act, &oact) == -1)
2728         return (Sighandler_t) SIG_ERR;
2729     else
2730         return (Sighandler_t) oact.sa_handler;
2731 }
2732
2733 Sighandler_t
2734 Perl_rsignal_state(pTHX_ int signo)
2735 {
2736     struct sigaction oact;
2737     PERL_UNUSED_CONTEXT;
2738
2739     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2740         return (Sighandler_t) SIG_ERR;
2741     else
2742         return (Sighandler_t) oact.sa_handler;
2743 }
2744
2745 int
2746 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2747 {
2748     dVAR;
2749     struct sigaction act;
2750
2751     PERL_ARGS_ASSERT_RSIGNAL_SAVE;
2752
2753 #ifdef USE_ITHREADS
2754     /* only "parent" interpreter can diddle signals */
2755     if (PL_curinterp != aTHX)
2756         return -1;
2757 #endif
2758
2759     act.sa_handler = (void(*)(int))handler;
2760     sigemptyset(&act.sa_mask);
2761     act.sa_flags = 0;
2762 #ifdef SA_RESTART
2763     if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2764         act.sa_flags |= SA_RESTART;     /* SVR4, 4.3+BSD */
2765 #endif
2766 #if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2767     if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2768         act.sa_flags |= SA_NOCLDWAIT;
2769 #endif
2770     return sigaction(signo, &act, save);
2771 }
2772
2773 int
2774 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2775 {
2776     dVAR;
2777 #ifdef USE_ITHREADS
2778     /* only "parent" interpreter can diddle signals */
2779     if (PL_curinterp != aTHX)
2780         return -1;
2781 #endif
2782
2783     return sigaction(signo, save, (struct sigaction *)NULL);
2784 }
2785
2786 #else /* !HAS_SIGACTION */
2787
2788 Sighandler_t
2789 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2790 {
2791 #if defined(USE_ITHREADS) && !defined(WIN32)
2792     /* only "parent" interpreter can diddle signals */
2793     if (PL_curinterp != aTHX)
2794         return (Sighandler_t) SIG_ERR;
2795 #endif
2796
2797     return PerlProc_signal(signo, handler);
2798 }
2799
2800 static Signal_t
2801 sig_trap(int signo)
2802 {
2803     dVAR;
2804     PL_sig_trapped++;
2805 }
2806
2807 Sighandler_t
2808 Perl_rsignal_state(pTHX_ int signo)
2809 {
2810     dVAR;
2811     Sighandler_t oldsig;
2812
2813 #if defined(USE_ITHREADS) && !defined(WIN32)
2814     /* only "parent" interpreter can diddle signals */
2815     if (PL_curinterp != aTHX)
2816         return (Sighandler_t) SIG_ERR;
2817 #endif
2818
2819     PL_sig_trapped = 0;
2820     oldsig = PerlProc_signal(signo, sig_trap);
2821     PerlProc_signal(signo, oldsig);
2822     if (PL_sig_trapped)
2823         PerlProc_kill(PerlProc_getpid(), signo);
2824     return oldsig;
2825 }
2826
2827 int
2828 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2829 {
2830 #if defined(USE_ITHREADS) && !defined(WIN32)
2831     /* only "parent" interpreter can diddle signals */
2832     if (PL_curinterp != aTHX)
2833         return -1;
2834 #endif
2835     *save = PerlProc_signal(signo, handler);
2836     return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
2837 }
2838
2839 int
2840 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2841 {
2842 #if defined(USE_ITHREADS) && !defined(WIN32)
2843     /* only "parent" interpreter can diddle signals */
2844     if (PL_curinterp != aTHX)
2845         return -1;
2846 #endif
2847     return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
2848 }
2849
2850 #endif /* !HAS_SIGACTION */
2851 #endif /* !PERL_MICRO */
2852
2853     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2854 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL) && !defined(__LIBCATAMOUNT__)
2855 I32
2856 Perl_my_pclose(pTHX_ PerlIO *ptr)
2857 {
2858     dVAR;
2859     Sigsave_t hstat, istat, qstat;
2860     int status;
2861     SV **svp;
2862     Pid_t pid;
2863     Pid_t pid2;
2864     bool close_failed;
2865     int saved_errno = 0;
2866 #ifdef WIN32
2867     int saved_win32_errno;
2868 #endif
2869
2870     LOCK_FDPID_MUTEX;
2871     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2872     UNLOCK_FDPID_MUTEX;
2873     pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
2874     SvREFCNT_dec(*svp);
2875     *svp = &PL_sv_undef;
2876 #ifdef OS2
2877     if (pid == -1) {                    /* Opened by popen. */
2878         return my_syspclose(ptr);
2879     }
2880 #endif
2881     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2882         saved_errno = errno;
2883 #ifdef WIN32
2884         saved_win32_errno = GetLastError();
2885 #endif
2886     }
2887 #ifdef UTS
2888     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2889 #endif
2890 #ifndef PERL_MICRO
2891     rsignal_save(SIGHUP,  (Sighandler_t) SIG_IGN, &hstat);
2892     rsignal_save(SIGINT,  (Sighandler_t) SIG_IGN, &istat);
2893     rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qstat);
2894 #endif
2895     do {
2896         pid2 = wait4pid(pid, &status, 0);
2897     } while (pid2 == -1 && errno == EINTR);
2898 #ifndef PERL_MICRO
2899     rsignal_restore(SIGHUP, &hstat);
2900     rsignal_restore(SIGINT, &istat);
2901     rsignal_restore(SIGQUIT, &qstat);
2902 #endif
2903     if (close_failed) {
2904         SETERRNO(saved_errno, 0);
2905         return -1;
2906     }
2907     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2908 }
2909 #else
2910 #if defined(__LIBCATAMOUNT__)
2911 I32
2912 Perl_my_pclose(pTHX_ PerlIO *ptr)
2913 {
2914     return -1;
2915 }
2916 #endif
2917 #endif /* !DOSISH */
2918
2919 #if  (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(MACOS_TRADITIONAL) && !defined(__LIBCATAMOUNT__)
2920 I32
2921 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2922 {
2923     dVAR;
2924     I32 result = 0;
2925     PERL_ARGS_ASSERT_WAIT4PID;
2926     if (!pid)
2927         return -1;
2928 #ifdef PERL_USES_PL_PIDSTATUS
2929     {
2930         if (pid > 0) {
2931             /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
2932                pid, rather than a string form.  */
2933             SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
2934             if (svp && *svp != &PL_sv_undef) {
2935                 *statusp = SvIVX(*svp);
2936                 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
2937                                 G_DISCARD);
2938                 return pid;
2939             }
2940         }
2941         else {
2942             HE *entry;
2943
2944             hv_iterinit(PL_pidstatus);
2945             if ((entry = hv_iternext(PL_pidstatus))) {
2946                 SV * const sv = hv_iterval(PL_pidstatus,entry);
2947                 I32 len;
2948                 const char * const spid = hv_iterkey(entry,&len);
2949
2950                 assert (len == sizeof(Pid_t));
2951                 memcpy((char *)&pid, spid, len);
2952                 *statusp = SvIVX(sv);
2953                 /* The hash iterator is currently on this entry, so simply
2954                    calling hv_delete would trigger the lazy delete, which on
2955                    aggregate does more work, beacuse next call to hv_iterinit()
2956                    would spot the flag, and have to call the delete routine,
2957                    while in the meantime any new entries can't re-use that
2958                    memory.  */
2959                 hv_iterinit(PL_pidstatus);
2960                 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
2961                 return pid;
2962             }
2963         }
2964     }
2965 #endif
2966 #ifdef HAS_WAITPID
2967 #  ifdef HAS_WAITPID_RUNTIME
2968     if (!HAS_WAITPID_RUNTIME)
2969         goto hard_way;
2970 #  endif
2971     result = PerlProc_waitpid(pid,statusp,flags);
2972     goto finish;
2973 #endif
2974 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2975     result = wait4((pid==-1)?0:pid,statusp,flags,NULL);
2976     goto finish;
2977 #endif
2978 #ifdef PERL_USES_PL_PIDSTATUS
2979 #if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
2980   hard_way:
2981 #endif
2982     {
2983         if (flags)
2984             Perl_croak(aTHX_ "Can't do waitpid with flags");
2985         else {
2986             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2987                 pidgone(result,*statusp);
2988             if (result < 0)
2989                 *statusp = -1;
2990         }
2991     }
2992 #endif
2993 #if defined(HAS_WAITPID) || defined(HAS_WAIT4)
2994   finish:
2995 #endif
2996     if (result < 0 && errno == EINTR) {
2997         PERL_ASYNC_CHECK();
2998         errno = EINTR; /* reset in case a signal handler changed $! */
2999     }
3000     return result;
3001 }
3002 #endif /* !DOSISH || OS2 || WIN32 || NETWARE */
3003
3004 #ifdef PERL_USES_PL_PIDSTATUS
3005 void
3006 S_pidgone(pTHX_ Pid_t pid, int status)
3007 {
3008     register SV *sv;
3009
3010     sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
3011     SvUPGRADE(sv,SVt_IV);
3012     SvIV_set(sv, status);
3013     return;
3014 }
3015 #endif
3016
3017 #if defined(atarist) || defined(OS2) || defined(EPOC)
3018 int pclose();
3019 #ifdef HAS_FORK
3020 int                                     /* Cannot prototype with I32
3021                                            in os2ish.h. */
3022 my_syspclose(PerlIO *ptr)
3023 #else
3024 I32
3025 Perl_my_pclose(pTHX_ PerlIO *ptr)
3026 #endif
3027 {
3028     /* Needs work for PerlIO ! */
3029     FILE * const f = PerlIO_findFILE(ptr);
3030     const I32 result = pclose(f);
3031     PerlIO_releaseFILE(ptr,f);
3032     return result;
3033 }
3034 #endif
3035
3036 #if defined(DJGPP)
3037 int djgpp_pclose();
3038 I32
3039 Perl_my_pclose(pTHX_ PerlIO *ptr)
3040 {
3041     /* Needs work for PerlIO ! */
3042     FILE * const f = PerlIO_findFILE(ptr);
3043     I32 result = djgpp_pclose(f);
3044     result = (result << 8) & 0xff00;
3045     PerlIO_releaseFILE(ptr,f);
3046     return result;
3047 }
3048 #endif
3049
3050 void
3051 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
3052 {
3053     register I32 todo;
3054     register const char * const frombase = from;
3055     PERL_UNUSED_CONTEXT;
3056
3057     PERL_ARGS_ASSERT_REPEATCPY;
3058
3059     if (len == 1) {
3060         register const char c = *from;
3061         while (count-- > 0)
3062             *to++ = c;
3063         return;
3064     }
3065     while (count-- > 0) {
3066         for (todo = len; todo > 0; todo--) {
3067             *to++ = *from++;
3068         }
3069         from = frombase;
3070     }
3071 }
3072
3073 #ifndef HAS_RENAME
3074 I32
3075 Perl_same_dirent(pTHX_ const char *a, const char *b)
3076 {
3077     char *fa = strrchr(a,'/');
3078     char *fb = strrchr(b,'/');
3079     Stat_t tmpstatbuf1;
3080     Stat_t tmpstatbuf2;
3081     SV * const tmpsv = sv_newmortal();
3082
3083     PERL_ARGS_ASSERT_SAME_DIRENT;
3084
3085     if (fa)
3086         fa++;
3087     else
3088         fa = a;
3089     if (fb)
3090         fb++;
3091     else
3092         fb = b;
3093     if (strNE(a,b))
3094         return FALSE;
3095     if (fa == a)
3096         sv_setpvs(tmpsv, ".");
3097     else
3098         sv_setpvn(tmpsv, a, fa - a);
3099     if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
3100         return FALSE;
3101     if (fb == b)
3102         sv_setpvs(tmpsv, ".");
3103     else
3104         sv_setpvn(tmpsv, b, fb - b);
3105     if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
3106         return FALSE;
3107     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3108            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3109 }
3110 #endif /* !HAS_RENAME */
3111
3112 char*
3113 Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3114                  const char *const *const search_ext, I32 flags)
3115 {
3116     dVAR;
3117     const char *xfound = NULL;
3118     char *xfailed = NULL;
3119     char tmpbuf[MAXPATHLEN];
3120     register char *s;
3121     I32 len = 0;
3122     int retval;
3123     char *bufend;
3124 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3125 #  define SEARCH_EXTS ".bat", ".cmd", NULL
3126 #  define MAX_EXT_LEN 4
3127 #endif
3128 #ifdef OS2
3129 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3130 #  define MAX_EXT_LEN 4
3131 #endif
3132 #ifdef VMS
3133 #  define SEARCH_EXTS ".pl", ".com", NULL
3134 #  define MAX_EXT_LEN 4
3135 #endif
3136     /* additional extensions to try in each dir if scriptname not found */
3137 #ifdef SEARCH_EXTS
3138     static const char *const exts[] = { SEARCH_EXTS };
3139     const char *const *const ext = search_ext ? search_ext : exts;
3140     int extidx = 0, i = 0;
3141     const char *curext = NULL;
3142 #else
3143     PERL_UNUSED_ARG(search_ext);
3144 #  define MAX_EXT_LEN 0
3145 #endif
3146
3147     PERL_ARGS_ASSERT_FIND_SCRIPT;
3148
3149     /*
3150      * If dosearch is true and if scriptname does not contain path
3151      * delimiters, search the PATH for scriptname.
3152      *
3153      * If SEARCH_EXTS is also defined, will look for each
3154      * scriptname{SEARCH_EXTS} whenever scriptname is not found
3155      * while searching the PATH.
3156      *
3157      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3158      * proceeds as follows:
3159      *   If DOSISH or VMSISH:
3160      *     + look for ./scriptname{,.foo,.bar}
3161      *     + search the PATH for scriptname{,.foo,.bar}
3162      *
3163      *   If !DOSISH:
3164      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
3165      *       this will not look in '.' if it's not in the PATH)
3166      */
3167     tmpbuf[0] = '\0';
3168
3169 #ifdef VMS
3170 #  ifdef ALWAYS_DEFTYPES
3171     len = strlen(scriptname);
3172     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3173         int idx = 0, deftypes = 1;
3174         bool seen_dot = 1;
3175
3176         const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
3177 #  else
3178     if (dosearch) {
3179         int idx = 0, deftypes = 1;
3180         bool seen_dot = 1;
3181
3182         const int hasdir = (strpbrk(scriptname,":[</") != NULL);
3183 #  endif
3184         /* The first time through, just add SEARCH_EXTS to whatever we
3185          * already have, so we can check for default file types. */
3186         while (deftypes ||
3187                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3188         {
3189             if (deftypes) {
3190                 deftypes = 0;
3191                 *tmpbuf = '\0';
3192             }
3193             if ((strlen(tmpbuf) + strlen(scriptname)
3194                  + MAX_EXT_LEN) >= sizeof tmpbuf)
3195                 continue;       /* don't search dir with too-long name */
3196             my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
3197 #else  /* !VMS */
3198
3199 #ifdef DOSISH
3200     if (strEQ(scriptname, "-"))
3201         dosearch = 0;
3202     if (dosearch) {             /* Look in '.' first. */
3203         const char *cur = scriptname;
3204 #ifdef SEARCH_EXTS
3205         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3206             while (ext[i])
3207                 if (strEQ(ext[i++],curext)) {
3208                     extidx = -1;                /* already has an ext */
3209                     break;
3210                 }
3211         do {
3212 #endif
3213             DEBUG_p(PerlIO_printf(Perl_debug_log,
3214                                   "Looking for %s\n",cur));
3215             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3216                 && !S_ISDIR(PL_statbuf.st_mode)) {
3217                 dosearch = 0;
3218                 scriptname = cur;
3219 #ifdef SEARCH_EXTS
3220                 break;
3221 #endif
3222             }
3223 #ifdef SEARCH_EXTS
3224             if (cur == scriptname) {
3225                 len = strlen(scriptname);
3226                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3227                     break;
3228                 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3229                 cur = tmpbuf;
3230             }
3231         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
3232                  && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
3233 #endif
3234     }
3235 #endif
3236
3237 #ifdef MACOS_TRADITIONAL
3238     if (dosearch && !strchr(scriptname, ':') &&
3239         (s = PerlEnv_getenv("Commands")))
3240 #else
3241     if (dosearch && !strchr(scriptname, '/')
3242 #ifdef DOSISH
3243                  && !strchr(scriptname, '\\')
3244 #endif
3245                  && (s = PerlEnv_getenv("PATH")))
3246 #endif
3247     {
3248         bool seen_dot = 0;
3249
3250         bufend = s + strlen(s);
3251         while (s < bufend) {
3252 #ifdef MACOS_TRADITIONAL
3253             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
3254                         ',',
3255                         &len);
3256 #else
3257 #if defined(atarist) || defined(DOSISH)
3258             for (len = 0; *s
3259 #  ifdef atarist
3260                     && *s != ','
3261 #  endif
3262                     && *s != ';'; len++, s++) {
3263                 if (len < sizeof tmpbuf)
3264                     tmpbuf[len] = *s;
3265             }
3266             if (len < sizeof tmpbuf)
3267                 tmpbuf[len] = '\0';
3268 #else  /* ! (atarist || DOSISH) */
3269             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
3270                         ':',
3271                         &len);
3272 #endif /* ! (atarist || DOSISH) */
3273 #endif /* MACOS_TRADITIONAL */
3274             if (s < bufend)
3275                 s++;
3276             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3277                 continue;       /* don't search dir with too-long name */
3278 #ifdef MACOS_TRADITIONAL
3279             if (len && tmpbuf[len - 1] != ':')
3280                 tmpbuf[len++] = ':';
3281 #else
3282             if (len
3283 #  if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3284                 && tmpbuf[len - 1] != '/'
3285                 && tmpbuf[len - 1] != '\\'
3286 #  endif
3287                )
3288                 tmpbuf[len++] = '/';
3289             if (len == 2 && tmpbuf[0] == '.')
3290                 seen_dot = 1;
3291 #endif
3292             (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
3293 #endif  /* !VMS */
3294
3295 #ifdef SEARCH_EXTS
3296             len = strlen(tmpbuf);
3297             if (extidx > 0)     /* reset after previous loop */
3298                 extidx = 0;
3299             do {
3300 #endif
3301                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3302                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3303                 if (S_ISDIR(PL_statbuf.st_mode)) {
3304                     retval = -1;
3305                 }
3306 #ifdef SEARCH_EXTS
3307             } while (  retval < 0               /* not there */
3308                     && extidx>=0 && ext[extidx] /* try an extension? */
3309                     && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
3310                 );
3311 #endif
3312             if (retval < 0)
3313                 continue;
3314             if (S_ISREG(PL_statbuf.st_mode)
3315                 && cando(S_IRUSR,TRUE,&PL_statbuf)
3316 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3317                 && cando(S_IXUSR,TRUE,&PL_statbuf)
3318 #endif
3319                 )
3320             {
3321                 xfound = tmpbuf;                /* bingo! */
3322                 break;
3323             }
3324             if (!xfailed)
3325                 xfailed = savepv(tmpbuf);
3326         }
3327 #ifndef DOSISH
3328         if (!xfound && !seen_dot && !xfailed &&
3329             (PerlLIO_stat(scriptname,&PL_statbuf) < 0
3330              || S_ISDIR(PL_statbuf.st_mode)))
3331 #endif
3332             seen_dot = 1;                       /* Disable message. */
3333         if (!xfound) {
3334             if (flags & 1) {                    /* do or die? */
3335                 Perl_croak(aTHX_ "Can't %s %s%s%s",
3336                       (xfailed ? "execute" : "find"),
3337                       (xfailed ? xfailed : scriptname),
3338                       (xfailed ? "" : " on PATH"),
3339                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3340             }
3341             scriptname = NULL;
3342         }
3343         Safefree(xfailed);
3344         scriptname = xfound;
3345     }
3346     return (scriptname ? savepv(scriptname) : NULL);
3347 }
3348
3349 #ifndef PERL_GET_CONTEXT_DEFINED
3350
3351 void *
3352 Perl_get_context(void)
3353 {
3354     dVAR;
3355 #if defined(USE_ITHREADS)
3356 #  ifdef OLD_PTHREADS_API
3357     pthread_addr_t t;
3358     if (pthread_getspecific(PL_thr_key, &t))
3359         Perl_croak_nocontext("panic: pthread_getspecific");
3360     return (void*)t;
3361 #  else
3362 #    ifdef I_MACH_CTHREADS
3363     return (void*)cthread_data(cthread_self());
3364 #    else
3365     return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3366 #    endif
3367 #  endif
3368 #else
3369     return (void*)NULL;
3370 #endif
3371 }
3372
3373 void
3374 Perl_set_context(void *t)
3375 {
3376     dVAR;
3377     PERL_ARGS_ASSERT_SET_CONTEXT;
3378 #if defined(USE_ITHREADS)
3379 #  ifdef I_MACH_CTHREADS
3380     cthread_set_data(cthread_self(), t);
3381 #  else
3382     if (pthread_setspecific(PL_thr_key, t))
3383         Perl_croak_nocontext("panic: pthread_setspecific");
3384 #  endif
3385 #else
3386     PERL_UNUSED_ARG(t);
3387 #endif
3388 }
3389
3390 #endif /* !PERL_GET_CONTEXT_DEFINED */
3391
3392 #if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
3393 struct perl_vars *
3394 Perl_GetVars(pTHX)
3395 {
3396  return &PL_Vars;
3397 }
3398 #endif
3399
3400 char **
3401 Perl_get_op_names(pTHX)
3402 {
3403     PERL_UNUSED_CONTEXT;
3404     return (char **)PL_op_name;
3405 }
3406
3407 char **
3408 Perl_get_op_descs(pTHX)
3409 {
3410     PERL_UNUSED_CONTEXT;
3411     return (char **)PL_op_desc;
3412 }
3413
3414 const char *
3415 Perl_get_no_modify(pTHX)
3416 {
3417     PERL_UNUSED_CONTEXT;
3418     return PL_no_modify;
3419 }
3420
3421 U32 *
3422 Perl_get_opargs(pTHX)
3423 {
3424     PERL_UNUSED_CONTEXT;
3425     return (U32 *)PL_opargs;
3426 }
3427
3428 PPADDR_t*
3429 Perl_get_ppaddr(pTHX)
3430 {
3431     dVAR;
3432     PERL_UNUSED_CONTEXT;
3433     return (PPADDR_t*)PL_ppaddr;
3434 }
3435
3436 #ifndef HAS_GETENV_LEN
3437 char *
3438 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3439 {
3440     char * const env_trans = PerlEnv_getenv(env_elem);
3441     PERL_UNUSED_CONTEXT;
3442     PERL_ARGS_ASSERT_GETENV_LEN;
3443     if (env_trans)
3444         *len = strlen(env_trans);
3445     return env_trans;
3446 }
3447 #endif
3448
3449
3450 MGVTBL*
3451 Perl_get_vtbl(pTHX_ int vtbl_id)
3452 {
3453     const MGVTBL* result;
3454     PERL_UNUSED_CONTEXT;
3455
3456     switch(vtbl_id) {
3457     case want_vtbl_sv:
3458         result = &PL_vtbl_sv;
3459         break;
3460     case want_vtbl_env:
3461         result = &PL_vtbl_env;
3462         break;
3463     case want_vtbl_envelem:
3464         result = &PL_vtbl_envelem;
3465         break;
3466     case want_vtbl_sig:
3467         result = &PL_vtbl_sig;
3468         break;
3469     case want_vtbl_sigelem:
3470         result = &PL_vtbl_sigelem;
3471         break;
3472     case want_vtbl_pack:
3473         result = &PL_vtbl_pack;
3474         break;
3475     case want_vtbl_packelem:
3476         result = &PL_vtbl_packelem;
3477         break;
3478     case want_vtbl_dbline:
3479         result = &PL_vtbl_dbline;
3480         break;
3481     case want_vtbl_isa:
3482         result = &PL_vtbl_isa;
3483         break;
3484     case want_vtbl_isaelem:
3485         result = &PL_vtbl_isaelem;
3486         break;
3487     case want_vtbl_arylen:
3488         result = &PL_vtbl_arylen;
3489         break;
3490     case want_vtbl_mglob:
3491         result = &PL_vtbl_mglob;
3492         break;
3493     case want_vtbl_nkeys:
3494         result = &PL_vtbl_nkeys;
3495         break;
3496     case want_vtbl_taint:
3497         result = &PL_vtbl_taint;
3498         break;
3499     case want_vtbl_substr:
3500         result = &PL_vtbl_substr;
3501         break;
3502     case want_vtbl_vec:
3503         result = &PL_vtbl_vec;
3504         break;
3505     case want_vtbl_pos:
3506         result = &PL_vtbl_pos;
3507         break;
3508     case want_vtbl_bm:
3509         result = &PL_vtbl_bm;
3510         break;
3511     case want_vtbl_fm:
3512         result = &PL_vtbl_fm;
3513         break;
3514     case want_vtbl_uvar:
3515         result = &PL_vtbl_uvar;
3516         break;
3517     case want_vtbl_defelem:
3518         result = &PL_vtbl_defelem;
3519         break;
3520     case want_vtbl_regexp:
3521         result = &PL_vtbl_regexp;
3522         break;
3523     case want_vtbl_regdata:
3524         result = &PL_vtbl_regdata;
3525         break;
3526     case want_vtbl_regdatum:
3527         result = &PL_vtbl_regdatum;
3528         break;
3529 #ifdef USE_LOCALE_COLLATE
3530     case want_vtbl_collxfrm:
3531         result = &PL_vtbl_collxfrm;
3532         break;
3533 #endif
3534     case want_vtbl_amagic:
3535         result = &PL_vtbl_amagic;
3536         break;
3537     case want_vtbl_amagicelem:
3538         result = &PL_vtbl_amagicelem;
3539         break;
3540     case want_vtbl_backref:
3541         result = &PL_vtbl_backref;
3542         break;
3543     case want_vtbl_utf8:
3544         result = &PL_vtbl_utf8;
3545         break;
3546     default:
3547         result = NULL;
3548         break;
3549     }
3550     return (MGVTBL*)result;
3551 }
3552
3553 I32
3554 Perl_my_fflush_all(pTHX)
3555 {
3556 #if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
3557     return PerlIO_flush(NULL);
3558 #else
3559 # if defined(HAS__FWALK)
3560     extern int fflush(FILE *);
3561     /* undocumented, unprototyped, but very useful BSDism */
3562     extern void _fwalk(int (*)(FILE *));
3563     _fwalk(&fflush);
3564     return 0;
3565 # else
3566 #  if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3567     long open_max = -1;
3568 #   ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3569     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3570 #   else
3571 #    if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3572     open_max = sysconf(_SC_OPEN_MAX);
3573 #     else
3574 #      ifdef FOPEN_MAX
3575     open_max = FOPEN_MAX;
3576 #      else
3577 #       ifdef OPEN_MAX
3578     open_max = OPEN_MAX;
3579 #       else
3580 #        ifdef _NFILE
3581     open_max = _NFILE;
3582 #        endif
3583 #       endif
3584 #      endif
3585 #     endif
3586 #    endif
3587     if (open_max > 0) {
3588       long i;
3589       for (i = 0; i < open_max; i++)
3590             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3591                 STDIO_STREAM_ARRAY[i]._file < open_max &&
3592                 STDIO_STREAM_ARRAY[i]._flag)
3593                 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3594       return 0;
3595     }
3596 #  endif
3597     SETERRNO(EBADF,RMS_IFI);
3598     return EOF;
3599 # endif
3600 #endif
3601 }
3602
3603 void
3604 Perl_report_evil_fh(pTHX_ const GV *gv, const IO *io, I32 op)
3605 {
3606     const char * const name = gv && isGV(gv) ? GvENAME(gv) : NULL;
3607
3608     if (op == OP_phoney_OUTPUT_ONLY || op == OP_phoney_INPUT_ONLY) {
3609         if (ckWARN(WARN_IO)) {
3610             const char * const direction =
3611                 (const char *)((op == OP_phoney_INPUT_ONLY) ? "in" : "out");
3612             if (name && *name)
3613                 Perl_warner(aTHX_ packWARN(WARN_IO),
3614                             "Filehandle %s opened only for %sput",
3615                             name, direction);
3616             else
3617                 Perl_warner(aTHX_ packWARN(WARN_IO),
3618                             "Filehandle opened only for %sput", direction);
3619         }
3620     }
3621     else {
3622         const char *vile;
3623         I32   warn_type;
3624
3625         if (gv && io && IoTYPE(io) == IoTYPE_CLOSED) {
3626             vile = "closed";
3627             warn_type = WARN_CLOSED;
3628         }
3629         else {
3630             vile = "unopened";
3631             warn_type = WARN_UNOPENED;
3632         }
3633
3634         if (ckWARN(warn_type)) {
3635             const char * const pars =
3636                 (const char *)(OP_IS_FILETEST(op) ? "" : "()");
3637             const char * const func =
3638                 (const char *)
3639                 (op == OP_READLINE   ? "readline"  :    /* "<HANDLE>" not nice */
3640                  op == OP_LEAVEWRITE ? "write" :                /* "write exit" not nice */
3641                  op < 0              ? "" :              /* handle phoney cases */
3642                  PL_op_desc[op]);
3643             const char * const type =
3644                 (const char *)
3645                 (OP_IS_SOCKET(op) ||
3646                  (gv && io && IoTYPE(io) == IoTYPE_SOCKET) ?
3647                  "socket" : "filehandle");
3648             if (name && *name) {
3649                 Perl_warner(aTHX_ packWARN(warn_type),
3650                             "%s%s on %s %s %s", func, pars, vile, type, name);
3651                 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3652                     Perl_warner(
3653                         aTHX_ packWARN(warn_type),
3654                         "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3655                         func, pars, name
3656                     );
3657             }
3658             else {
3659                 Perl_warner(aTHX_ packWARN(warn_type),
3660                             "%s%s on %s %s", func, pars, vile, type);
3661                 if (gv && io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3662                     Perl_warner(
3663                         aTHX_ packWARN(warn_type),
3664                         "\t(Are you trying to call %s%s on dirhandle?)\n",
3665                         func, pars
3666                     );
3667             }
3668         }
3669     }
3670 }
3671
3672 #ifdef EBCDIC
3673 /* in ASCII order, not that it matters */
3674 static const char controllablechars[] = "?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_";
3675
3676 int
3677 Perl_ebcdic_control(pTHX_ int ch)
3678 {
3679     if (ch > 'a') {
3680         const char *ctlp;
3681
3682         if (islower(ch))
3683             ch = toupper(ch);
3684
3685         if ((ctlp = strchr(controllablechars, ch)) == 0) {
3686             Perl_die(aTHX_ "unrecognised control character '%c'\n", ch);
3687         }
3688
3689         if (ctlp == controllablechars)
3690             return('\177'); /* DEL */
3691         else
3692             return((unsigned char)(ctlp - controllablechars - 1));
3693     } else { /* Want uncontrol */
3694         if (ch == '\177' || ch == -1)
3695             return('?');
3696         else if (ch == '\157')
3697             return('\177');
3698         else if (ch == '\174')
3699             return('\000');
3700         else if (ch == '^')    /* '\137' in 1047, '\260' in 819 */
3701             return('\036');
3702         else if (ch == '\155')
3703             return('\037');
3704         else if (0 < ch && ch < (sizeof(controllablechars) - 1))
3705             return(controllablechars[ch+1]);
3706         else
3707             Perl_die(aTHX_ "invalid control request: '\\%03o'\n", ch & 0xFF);
3708     }
3709 }
3710 #endif
3711
3712 /* To workaround core dumps from the uninitialised tm_zone we get the
3713  * system to give us a reasonable struct to copy.  This fix means that
3714  * strftime uses the tm_zone and tm_gmtoff values returned by
3715  * localtime(time()). That should give the desired result most of the
3716  * time. But probably not always!
3717  *
3718  * This does not address tzname aspects of NETaa14816.
3719  *
3720  */
3721
3722 #ifdef HAS_GNULIBC
3723 # ifndef STRUCT_TM_HASZONE
3724 #    define STRUCT_TM_HASZONE
3725 # endif
3726 #endif
3727
3728 #ifdef STRUCT_TM_HASZONE /* Backward compat */
3729 # ifndef HAS_TM_TM_ZONE
3730 #    define HAS_TM_TM_ZONE
3731 # endif
3732 #endif
3733
3734 void
3735 Perl_init_tm(pTHX_ struct tm *ptm)      /* see mktime, strftime and asctime */
3736 {
3737 #ifdef HAS_TM_TM_ZONE
3738     Time_t now;
3739     const struct tm* my_tm;
3740     PERL_ARGS_ASSERT_INIT_TM;
3741     (void)time(&now);
3742     my_tm = localtime(&now);
3743     if (my_tm)
3744         Copy(my_tm, ptm, 1, struct tm);
3745 #else
3746     PERL_ARGS_ASSERT_INIT_TM;
3747     PERL_UNUSED_ARG(ptm);
3748 #endif
3749 }
3750
3751 /*
3752  * mini_mktime - normalise struct tm values without the localtime()
3753  * semantics (and overhead) of mktime().
3754  */
3755 void
3756 Perl_mini_mktime(pTHX_ struct tm *ptm)
3757 {
3758     int yearday;
3759     int secs;
3760     int month, mday, year, jday;
3761     int odd_cent, odd_year;
3762     PERL_UNUSED_CONTEXT;
3763
3764     PERL_ARGS_ASSERT_MINI_MKTIME;
3765
3766 #define DAYS_PER_YEAR   365
3767 #define DAYS_PER_QYEAR  (4*DAYS_PER_YEAR+1)
3768 #define DAYS_PER_CENT   (25*DAYS_PER_QYEAR-1)
3769 #define DAYS_PER_QCENT  (4*DAYS_PER_CENT+1)
3770 #define SECS_PER_HOUR   (60*60)
3771 #define SECS_PER_DAY    (24*SECS_PER_HOUR)
3772 /* parentheses deliberately absent on these two, otherwise they don't work */
3773 #define MONTH_TO_DAYS   153/5
3774 #define DAYS_TO_MONTH   5/153
3775 /* offset to bias by March (month 4) 1st between month/mday & year finding */
3776 #define YEAR_ADJUST     (4*MONTH_TO_DAYS+1)
3777 /* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
3778 #define WEEKDAY_BIAS    6       /* (1+6)%7 makes Sunday 0 again */
3779
3780 /*
3781  * Year/day algorithm notes:
3782  *
3783  * With a suitable offset for numeric value of the month, one can find
3784  * an offset into the year by considering months to have 30.6 (153/5) days,
3785  * using integer arithmetic (i.e., with truncation).  To avoid too much
3786  * messing about with leap days, we consider January and February to be
3787  * the 13th and 14th month of the previous year.  After that transformation,
3788  * we need the month index we use to be high by 1 from 'normal human' usage,
3789  * so the month index values we use run from 4 through 15.
3790  *
3791  * Given that, and the rules for the Gregorian calendar (leap years are those
3792  * divisible by 4 unless also divisible by 100, when they must be divisible
3793  * by 400 instead), we can simply calculate the number of days since some
3794  * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
3795  * the days we derive from our month index, and adding in the day of the
3796  * month.  The value used here is not adjusted for the actual origin which
3797  * it normally would use (1 January A.D. 1), since we're not exposing it.
3798  * We're only building the value so we can turn around and get the
3799  * normalised values for the year, month, day-of-month, and day-of-year.
3800  *
3801  * For going backward, we need to bias the value we're using so that we find
3802  * the right year value.  (Basically, we don't want the contribution of
3803  * March 1st to the number to apply while deriving the year).  Having done
3804  * that, we 'count up' the contribution to the year number by accounting for
3805  * full quadracenturies (400-year periods) with their extra leap days, plus
3806  * the contribution from full centuries (to avoid counting in the lost leap
3807  * days), plus the contribution from full quad-years (to count in the normal
3808  * leap days), plus the leftover contribution from any non-leap years.
3809  * At this point, if we were working with an actual leap day, we'll have 0
3810  * days left over.  This is also true for March 1st, however.  So, we have
3811  * to special-case that result, and (earlier) keep track of the 'odd'
3812  * century and year contributions.  If we got 4 extra centuries in a qcent,
3813  * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
3814  * Otherwise, we add back in the earlier bias we removed (the 123 from
3815  * figuring in March 1st), find the month index (integer division by 30.6),
3816  * and the remainder is the day-of-month.  We then have to convert back to
3817  * 'real' months (including fixing January and February from being 14/15 in
3818  * the previous year to being in the proper year).  After that, to get
3819  * tm_yday, we work with the normalised year and get a new yearday value for
3820  * January 1st, which we subtract from the yearday value we had earlier,
3821  * representing the date we've re-built.  This is done from January 1
3822  * because tm_yday is 0-origin.
3823  *
3824  * Since POSIX time routines are only guaranteed to work for times since the
3825  * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
3826  * applies Gregorian calendar rules even to dates before the 16th century
3827  * doesn't bother me.  Besides, you'd need cultural context for a given
3828  * date to know whether it was Julian or Gregorian calendar, and that's
3829  * outside the scope for this routine.  Since we convert back based on the
3830  * same rules we used to build the yearday, you'll only get strange results
3831  * for input which needed normalising, or for the 'odd' century years which
3832  * were leap years in the Julian calander but not in the Gregorian one.
3833  * I can live with that.
3834  *
3835  * This algorithm also fails to handle years before A.D. 1 gracefully, but
3836  * that's still outside the scope for POSIX time manipulation, so I don't
3837  * care.
3838  */
3839
3840     year = 1900 + ptm->tm_year;
3841     month = ptm->tm_mon;
3842     mday = ptm->tm_mday;
3843     /* allow given yday with no month & mday to dominate the result */
3844     if (ptm->tm_yday >= 0 && mday <= 0 && month <= 0) {
3845         month = 0;
3846         mday = 0;
3847         jday = 1 + ptm->tm_yday;
3848     }
3849     else {
3850         jday = 0;
3851     }
3852     if (month >= 2)
3853         month+=2;
3854     else
3855         month+=14, year--;
3856     yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
3857     yearday += month*MONTH_TO_DAYS + mday + jday;
3858     /*
3859      * Note that we don't know when leap-seconds were or will be,
3860      * so we have to trust the user if we get something which looks
3861      * like a sensible leap-second.  Wild values for seconds will
3862      * be rationalised, however.
3863      */
3864     if ((unsigned) ptm->tm_sec <= 60) {
3865         secs = 0;
3866     }
3867     else {
3868         secs = ptm->tm_sec;
3869         ptm->tm_sec = 0;
3870     }
3871     secs += 60 * ptm->tm_min;
3872     secs += SECS_PER_HOUR * ptm->tm_hour;
3873     if (secs < 0) {
3874         if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3875             /* got negative remainder, but need positive time */
3876             /* back off an extra day to compensate */
3877             yearday += (secs/SECS_PER_DAY)-1;
3878             secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
3879         }
3880         else {
3881             yearday += (secs/SECS_PER_DAY);
3882             secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
3883         }
3884     }
3885     else if (secs >= SECS_PER_DAY) {
3886         yearday += (secs/SECS_PER_DAY);
3887         secs %= SECS_PER_DAY;
3888     }
3889     ptm->tm_hour = secs/SECS_PER_HOUR;
3890     secs %= SECS_PER_HOUR;
3891     ptm->tm_min = secs/60;
3892     secs %= 60;
3893     ptm->tm_sec += secs;
3894     /* done with time of day effects */
3895     /*
3896      * The algorithm for yearday has (so far) left it high by 428.
3897      * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
3898      * bias it by 123 while trying to figure out what year it
3899      * really represents.  Even with this tweak, the reverse
3900      * translation fails for years before A.D. 0001.
3901      * It would still fail for Feb 29, but we catch that one below.
3902      */
3903     jday = yearday;     /* save for later fixup vis-a-vis Jan 1 */
3904     yearday -= YEAR_ADJUST;
3905     year = (yearday / DAYS_PER_QCENT) * 400;
3906     yearday %= DAYS_PER_QCENT;
3907     odd_cent = yearday / DAYS_PER_CENT;
3908     year += odd_cent * 100;
3909     yearday %= DAYS_PER_CENT;
3910     year += (yearday / DAYS_PER_QYEAR) * 4;
3911     yearday %= DAYS_PER_QYEAR;
3912     odd_year = yearday / DAYS_PER_YEAR;
3913     year += odd_year;
3914     yearday %= DAYS_PER_YEAR;
3915     if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
3916         month = 1;
3917         yearday = 29;
3918     }
3919     else {
3920         yearday += YEAR_ADJUST; /* recover March 1st crock */
3921         month = yearday*DAYS_TO_MONTH;
3922         yearday -= month*MONTH_TO_DAYS;
3923         /* recover other leap-year adjustment */
3924         if (month > 13) {
3925             month-=14;
3926             year++;
3927         }
3928         else {
3929             month-=2;
3930         }
3931     }
3932     ptm->tm_year = year - 1900;
3933     if (yearday) {
3934       ptm->tm_mday = yearday;
3935       ptm->tm_mon = month;
3936     }
3937     else {
3938       ptm->tm_mday = 31;
3939       ptm->tm_mon = month - 1;
3940     }
3941     /* re-build yearday based on Jan 1 to get tm_yday */
3942     year--;
3943     yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
3944     yearday += 14*MONTH_TO_DAYS + 1;
3945     ptm->tm_yday = jday - yearday;
3946     /* fix tm_wday if not overridden by caller */
3947     if ((unsigned)ptm->tm_wday > 6)
3948         ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
3949 }
3950
3951 char *
3952 Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst)
3953 {
3954 #ifdef HAS_STRFTIME
3955   char *buf;
3956   int buflen;
3957   struct tm mytm;
3958   int len;
3959
3960   PERL_ARGS_ASSERT_MY_STRFTIME;
3961
3962   init_tm(&mytm);       /* XXX workaround - see init_tm() above */
3963   mytm.tm_sec = sec;
3964   mytm.tm_min = min;
3965   mytm.tm_hour = hour;
3966   mytm.tm_mday = mday;
3967   mytm.tm_mon = mon;
3968   mytm.tm_year = year;
3969   mytm.tm_wday = wday;
3970   mytm.tm_yday = yday;
3971   mytm.tm_isdst = isdst;
3972   mini_mktime(&mytm);
3973   /* use libc to get the values for tm_gmtoff and tm_zone [perl #18238] */
3974 #if defined(HAS_MKTIME) && (defined(HAS_TM_TM_GMTOFF) || defined(HAS_TM_TM_ZONE))
3975   STMT_START {
3976     struct tm mytm2;
3977     mytm2 = mytm;
3978     mktime(&mytm2);
3979 #ifdef HAS_TM_TM_GMTOFF
3980     mytm.tm_gmtoff = mytm2.tm_gmtoff;
3981 #endif
3982 #ifdef HAS_TM_TM_ZONE
3983     mytm.tm_zone = mytm2.tm_zone;
3984 #endif
3985   } STMT_END;
3986 #endif
3987   buflen = 64;
3988   Newx(buf, buflen, char);
3989   len = strftime(buf, buflen, fmt, &mytm);
3990   /*
3991   ** The following is needed to handle to the situation where
3992   ** tmpbuf overflows.  Basically we want to allocate a buffer
3993   ** and try repeatedly.  The reason why it is so complicated
3994   ** is that getting a return value of 0 from strftime can indicate
3995   ** one of the following:
3996   ** 1. buffer overflowed,
3997   ** 2. illegal conversion specifier, or
3998   ** 3. the format string specifies nothing to be returned(not
3999   **      an error).  This could be because format is an empty string
4000   **    or it specifies %p that yields an empty string in some locale.
4001   ** If there is a better way to make it portable, go ahead by
4002   ** all means.
4003   */
4004   if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
4005     return buf;
4006   else {
4007     /* Possibly buf overflowed - try again with a bigger buf */
4008     const int fmtlen = strlen(fmt);
4009     int bufsize = fmtlen + buflen;
4010
4011     Newx(buf, bufsize, char);
4012     while (buf) {
4013       buflen = strftime(buf, bufsize, fmt, &mytm);
4014       if (buflen > 0 && buflen < bufsize)
4015         break;
4016       /* heuristic to prevent out-of-memory errors */
4017       if (bufsize > 100*fmtlen) {
4018         Safefree(buf);
4019         buf = NULL;
4020         break;
4021       }
4022       bufsize *= 2;
4023       Renew(buf, bufsize, char);
4024     }
4025     return buf;
4026   }
4027 #else
4028   Perl_croak(aTHX_ "panic: no strftime");
4029   return NULL;
4030 #endif
4031 }
4032
4033
4034 #define SV_CWD_RETURN_UNDEF \
4035 sv_setsv(sv, &PL_sv_undef); \
4036 return FALSE
4037
4038 #define SV_CWD_ISDOT(dp) \
4039     (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
4040         (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
4041
4042 /*
4043 =head1 Miscellaneous Functions
4044
4045 =for apidoc getcwd_sv
4046
4047 Fill the sv with current working directory
4048
4049 =cut
4050 */
4051
4052 /* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
4053  * rewritten again by dougm, optimized for use with xs TARG, and to prefer
4054  * getcwd(3) if available
4055  * Comments from the orignal:
4056  *     This is a faster version of getcwd.  It's also more dangerous
4057  *     because you might chdir out of a directory that you can't chdir
4058  *     back into. */
4059
4060 int
4061 Perl_getcwd_sv(pTHX_ register SV *sv)
4062 {
4063 #ifndef PERL_MICRO
4064     dVAR;
4065 #ifndef INCOMPLETE_TAINTS
4066     SvTAINTED_on(sv);
4067 #endif
4068
4069     PERL_ARGS_ASSERT_GETCWD_SV;
4070
4071 #ifdef HAS_GETCWD
4072     {
4073         char buf[MAXPATHLEN];
4074
4075         /* Some getcwd()s automatically allocate a buffer of the given
4076          * size from the heap if they are given a NULL buffer pointer.
4077          * The problem is that this behaviour is not portable. */
4078         if (getcwd(buf, sizeof(buf) - 1)) {
4079             sv_setpv(sv, buf);
4080             return TRUE;
4081         }
4082         else {
4083             sv_setsv(sv, &PL_sv_undef);
4084             return FALSE;
4085         }
4086     }
4087
4088 #else
4089
4090     Stat_t statbuf;
4091     int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
4092     int pathlen=0;
4093     Direntry_t *dp;
4094
4095     SvUPGRADE(sv, SVt_PV);
4096
4097     if (PerlLIO_lstat(".", &statbuf) < 0) {
4098         SV_CWD_RETURN_UNDEF;
4099     }
4100
4101     orig_cdev = statbuf.st_dev;
4102     orig_cino = statbuf.st_ino;
4103     cdev = orig_cdev;
4104     cino = orig_cino;
4105
4106     for (;;) {
4107         DIR *dir;
4108         odev = cdev;
4109         oino = cino;
4110
4111         if (PerlDir_chdir("..") < 0) {
4112             SV_CWD_RETURN_UNDEF;
4113         }
4114         if (PerlLIO_stat(".", &statbuf) < 0) {
4115             SV_CWD_RETURN_UNDEF;
4116         }
4117
4118         cdev = statbuf.st_dev;
4119         cino = statbuf.st_ino;
4120
4121         if (odev == cdev && oino == cino) {
4122             break;
4123         }
4124         if (!(dir = PerlDir_open("."))) {
4125             SV_CWD_RETURN_UNDEF;
4126         }
4127
4128         while ((dp = PerlDir_read(dir)) != NULL) {
4129 #ifdef DIRNAMLEN
4130             const int namelen = dp->d_namlen;
4131 #else
4132             const int namelen = strlen(dp->d_name);
4133 #endif
4134             /* skip . and .. */
4135             if (SV_CWD_ISDOT(dp)) {
4136                 continue;
4137             }
4138
4139             if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
4140                 SV_CWD_RETURN_UNDEF;
4141             }
4142
4143             tdev = statbuf.st_dev;
4144             tino = statbuf.st_ino;
4145             if (tino == oino && tdev == odev) {
4146                 break;
4147             }
4148         }
4149
4150         if (!dp) {
4151             SV_CWD_RETURN_UNDEF;
4152         }
4153
4154         if (pathlen + namelen + 1 >= MAXPATHLEN) {
4155             SV_CWD_RETURN_UNDEF;
4156         }
4157
4158         SvGROW(sv, pathlen + namelen + 1);
4159
4160         if (pathlen) {
4161             /* shift down */
4162             Move(SvPVX_const(sv), SvPVX(sv) + namelen + 1, pathlen, char);
4163         }
4164
4165         /* prepend current directory to the front */
4166         *SvPVX(sv) = '/';
4167         Move(dp->d_name, SvPVX(sv)+1, namelen, char);
4168         pathlen += (namelen + 1);
4169
4170 #ifdef VOID_CLOSEDIR
4171         PerlDir_close(dir);
4172 #else
4173         if (PerlDir_close(dir) < 0) {
4174             SV_CWD_RETURN_UNDEF;
4175         }
4176 #endif
4177     }
4178
4179     if (pathlen) {
4180         SvCUR_set(sv, pathlen);
4181         *SvEND(sv) = '\0';
4182         SvPOK_only(sv);
4183
4184         if (PerlDir_chdir(SvPVX_const(sv)) < 0) {
4185             SV_CWD_RETURN_UNDEF;
4186         }
4187     }
4188     if (PerlLIO_stat(".", &statbuf) < 0) {
4189         SV_CWD_RETURN_UNDEF;
4190     }
4191
4192     cdev = statbuf.st_dev;
4193     cino = statbuf.st_ino;
4194
4195     if (cdev != orig_cdev || cino != orig_cino) {
4196         Perl_croak(aTHX_ "Unstable directory path, "
4197                    "current directory changed unexpectedly");
4198     }
4199
4200     return TRUE;
4201 #endif
4202
4203 #else
4204     return FALSE;
4205 #endif
4206 }
4207
4208 #define VERSION_MAX 0x7FFFFFFF
4209 /*
4210 =for apidoc scan_version
4211
4212 Returns a pointer to the next character after the parsed
4213 version string, as well as upgrading the passed in SV to
4214 an RV.
4215
4216 Function must be called with an already existing SV like
4217
4218     sv = newSV(0);
4219     s = scan_version(s, SV *sv, bool qv);
4220
4221 Performs some preprocessing to the string to ensure that
4222 it has the correct characteristics of a version.  Flags the
4223 object if it contains an underscore (which denotes this
4224 is an alpha version).  The boolean qv denotes that the version
4225 should be interpreted as if it had multiple decimals, even if
4226 it doesn't.
4227
4228 =cut
4229 */
4230
4231 const char *
4232 Perl_scan_version(pTHX_ const char *s, SV *rv, bool qv)
4233 {
4234     const char *start;
4235     const char *pos;
4236     const char *last;
4237     int saw_period = 0;
4238     int alpha = 0;
4239     int width = 3;
4240     bool vinf = FALSE;
4241     AV * const av = newAV();
4242     SV * const hv = newSVrv(rv, "version"); /* create an SV and upgrade the RV */
4243
4244     PERL_ARGS_ASSERT_SCAN_VERSION;
4245
4246     (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
4247
4248     while (isSPACE(*s)) /* leading whitespace is OK */
4249         s++;
4250
4251     start = last = s;
4252
4253     if (*s == 'v') {
4254         s++;  /* get past 'v' */
4255         qv = 1; /* force quoted version processing */
4256     }
4257
4258     pos = s;
4259
4260     /* pre-scan the input string to check for decimals/underbars */
4261     while ( *pos == '.' || *pos == '_' || isDIGIT(*pos) )
4262     {
4263         if ( *pos == '.' )
4264         {
4265             if ( alpha )
4266                 Perl_croak(aTHX_ "Invalid version format (underscores before decimal)");
4267             saw_period++ ;
4268             last = pos;
4269         }
4270         else if ( *pos == '_' )
4271         {
4272             if ( alpha )
4273                 Perl_croak(aTHX_ "Invalid version format (multiple underscores)");
4274             alpha = 1;
4275             width = pos - last - 1; /* natural width of sub-version */
4276         }
4277         pos++;
4278     }
4279
4280     if ( alpha && !saw_period )
4281         Perl_croak(aTHX_ "Invalid version format (alpha without decimal)");
4282
4283     if ( alpha && saw_period && width == 0 )
4284         Perl_croak(aTHX_ "Invalid version format (misplaced _ in number)");
4285
4286     if ( saw_period > 1 )
4287         qv = 1; /* force quoted version processing */
4288
4289     last = pos;
4290     pos = s;
4291
4292     if ( qv )
4293         (void)hv_stores(MUTABLE_HV(hv), "qv", newSViv(qv));
4294     if ( alpha )
4295         (void)hv_stores(MUTABLE_HV(hv), "alpha", newSViv(alpha));
4296     if ( !qv && width < 3 )
4297         (void)hv_stores(MUTABLE_HV(hv), "width", newSViv(width));
4298     
4299     while (isDIGIT(*pos))
4300         pos++;
4301     if (!isALPHA(*pos)) {
4302         I32 rev;
4303
4304         for (;;) {
4305             rev = 0;
4306             {
4307                 /* this is atoi() that delimits on underscores */
4308                 const char *end = pos;
4309                 I32 mult = 1;
4310                 I32 orev;
4311
4312                 /* the following if() will only be true after the decimal
4313                  * point of a version originally created with a bare
4314                  * floating point number, i.e. not quoted in any way
4315                  */
4316                 if ( !qv && s > start && saw_period == 1 ) {
4317                     mult *= 100;
4318                     while ( s < end ) {
4319                         orev = rev;
4320                         rev += (*s - '0') * mult;
4321                         mult /= 10;
4322                         if (   (PERL_ABS(orev) > PERL_ABS(rev)) 
4323                             || (PERL_ABS(rev) > VERSION_MAX )) {
4324                             if(ckWARN(WARN_OVERFLOW))
4325                                 Perl_warner(aTHX_ packWARN(WARN_OVERFLOW), 
4326                                 "Integer overflow in version %d",VERSION_MAX);
4327                             s = end - 1;
4328                             rev = VERSION_MAX;
4329                             vinf = 1;
4330                         }
4331                         s++;
4332                         if ( *s == '_' )
4333                             s++;
4334                     }
4335                 }
4336                 else {
4337                     while (--end >= s) {
4338                         orev = rev;
4339                         rev += (*end - '0') * mult;
4340                         mult *= 10;
4341                         if (   (PERL_ABS(orev) > PERL_ABS(rev)) 
4342                             || (PERL_ABS(rev) > VERSION_MAX )) {
4343                             if(ckWARN(WARN_OVERFLOW))
4344                                 Perl_warner(aTHX_ packWARN(WARN_OVERFLOW), 
4345                                 "Integer overflow in version");
4346                             end = s - 1;
4347                             rev = VERSION_MAX;
4348                             vinf = 1;
4349                         }
4350                     }
4351                 } 
4352             }
4353
4354             /* Append revision */
4355             av_push(av, newSViv(rev));
4356             if ( vinf ) {
4357                 s = last;
4358                 break;
4359             }
4360             else if ( *pos == '.' )
4361                 s = ++pos;
4362             else if ( *pos == '_' && isDIGIT(pos[1]) )
4363                 s = ++pos;
4364             else if ( isDIGIT(*pos) )
4365                 s = pos;
4366             else {
4367                 s = pos;
4368                 break;
4369             }
4370             if ( qv ) {
4371                 while ( isDIGIT(*pos) )
4372                     pos++;
4373             }
4374             else {
4375                 int digits = 0;
4376                 while ( ( isDIGIT(*pos) || *pos == '_' ) && digits < 3 ) {
4377                     if ( *pos != '_' )
4378                         digits++;
4379                     pos++;
4380                 }
4381             }
4382         }
4383     }
4384     if ( qv ) { /* quoted versions always get at least three terms*/
4385         I32 len = av_len(av);
4386         /* This for loop appears to trigger a compiler bug on OS X, as it
4387            loops infinitely. Yes, len is negative. No, it makes no sense.
4388            Compiler in question is:
4389            gcc version 3.3 20030304 (Apple Computer, Inc. build 1640)
4390            for ( len = 2 - len; len > 0; len-- )
4391            av_push(MUTABLE_AV(sv), newSViv(0));
4392         */
4393         len = 2 - len;
4394         while (len-- > 0)
4395             av_push(av, newSViv(0));
4396     }
4397
4398     /* need to save off the current version string for later */
4399     if ( vinf ) {
4400         SV * orig = newSVpvn("v.Inf", sizeof("v.Inf")-1);
4401         (void)hv_stores(MUTABLE_HV(hv), "original", orig);
4402         (void)hv_stores(MUTABLE_HV(hv), "vinf", newSViv(1));
4403     }
4404     else if ( s > start ) {
4405         SV * orig = newSVpvn(start,s-start);
4406         if ( qv && saw_period == 1 && *start != 'v' ) {
4407             /* need to insert a v to be consistent */
4408             sv_insert(orig, 0, 0, "v", 1);
4409         }
4410         (void)hv_stores(MUTABLE_HV(hv), "original", orig);
4411     }
4412     else {
4413         (void)hv_stores(MUTABLE_HV(hv), "original", newSVpvs("0"));
4414         av_push(av, newSViv(0));
4415     }
4416
4417     /* And finally, store the AV in the hash */
4418     (void)hv_stores(MUTABLE_HV(hv), "version", newRV_noinc(MUTABLE_SV(av)));
4419
4420     /* fix RT#19517 - special case 'undef' as string */
4421     if ( *s == 'u' && strEQ(s,"undef") ) {
4422         s += 5;
4423     }
4424
4425     return s;
4426 }
4427
4428 /*
4429 =for apidoc new_version
4430
4431 Returns a new version object based on the passed in SV:
4432
4433     SV *sv = new_version(SV *ver);
4434
4435 Does not alter the passed in ver SV.  See "upg_version" if you
4436 want to upgrade the SV.
4437
4438 =cut
4439 */
4440
4441 SV *
4442 Perl_new_version(pTHX_ SV *ver)
4443 {
4444     dVAR;
4445     SV * const rv = newSV(0);
4446     PERL_ARGS_ASSERT_NEW_VERSION;
4447     if ( sv_derived_from(ver,"version") ) /* can just copy directly */
4448     {
4449         I32 key;
4450         AV * const av = newAV();
4451         AV *sav;
4452         /* This will get reblessed later if a derived class*/
4453         SV * const hv = newSVrv(rv, "version"); 
4454         (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
4455
4456         if ( SvROK(ver) )
4457             ver = SvRV(ver);
4458
4459         /* Begin copying all of the elements */
4460         if ( hv_exists(MUTABLE_HV(ver), "qv", 2) )
4461             (void)hv_stores(MUTABLE_HV(hv), "qv", newSViv(1));
4462
4463         if ( hv_exists(MUTABLE_HV(ver), "alpha", 5) )
4464             (void)hv_stores(MUTABLE_HV(hv), "alpha", newSViv(1));
4465         
4466         if ( hv_exists(MUTABLE_HV(ver), "width", 5 ) )
4467         {
4468             const I32 width = SvIV(*hv_fetchs(MUTABLE_HV(ver), "width", FALSE));
4469             (void)hv_stores(MUTABLE_HV(hv), "width", newSViv(width));
4470         }
4471
4472         if ( hv_exists(MUTABLE_HV(ver), "original", 8 ) )
4473         {
4474             SV * pv = *hv_fetchs(MUTABLE_HV(ver), "original", FALSE);
4475             (void)hv_stores(MUTABLE_HV(hv), "original", newSVsv(pv));
4476         }
4477
4478         sav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(ver), "version", FALSE)));
4479         /* This will get reblessed later if a derived class*/
4480         for ( key = 0; key <= av_len(sav); key++ )
4481         {
4482             const I32 rev = SvIV(*av_fetch(sav, key, FALSE));
4483             av_push(av, newSViv(rev));
4484         }
4485
4486         (void)hv_stores(MUTABLE_HV(hv), "version", newRV_noinc(MUTABLE_SV(av)));
4487         return rv;
4488     }
4489 #ifdef SvVOK
4490     {
4491         const MAGIC* const mg = SvVSTRING_mg(ver);
4492         if ( mg ) { /* already a v-string */
4493             const STRLEN len = mg->mg_len;
4494             char * const version = savepvn( (const char*)mg->mg_ptr, len);
4495             sv_setpvn(rv,version,len);
4496             /* this is for consistency with the pure Perl class */
4497             if ( *version != 'v' ) 
4498                 sv_insert(rv, 0, 0, "v", 1);
4499             Safefree(version);
4500         }
4501         else {
4502 #endif
4503         sv_setsv(rv,ver); /* make a duplicate */
4504 #ifdef SvVOK
4505         }
4506     }
4507 #endif
4508     return upg_version(rv, FALSE);
4509 }
4510
4511 /*
4512 =for apidoc upg_version
4513
4514 In-place upgrade of the supplied SV to a version object.
4515
4516     SV *sv = upg_version(SV *sv, bool qv);
4517
4518 Returns a pointer to the upgraded SV.  Set the boolean qv if you want
4519 to force this SV to be interpreted as an "extended" version.
4520
4521 =cut
4522 */
4523
4524 SV *
4525 Perl_upg_version(pTHX_ SV *ver, bool qv)
4526 {
4527     const char *version, *s;
4528 #ifdef SvVOK
4529     const MAGIC *mg;
4530 #endif
4531
4532     PERL_ARGS_ASSERT_UPG_VERSION;
4533
4534     if ( SvNOK(ver) && !( SvPOK(ver) && sv_len(ver) == 3 ) )
4535     {
4536         /* may get too much accuracy */ 
4537         char tbuf[64];
4538 #ifdef USE_LOCALE_NUMERIC
4539         char *loc = setlocale(LC_NUMERIC, "C");
4540 #endif
4541         STRLEN len = my_snprintf(tbuf, sizeof(tbuf), "%.9"NVff, SvNVX(ver));
4542 #ifdef USE_LOCALE_NUMERIC
4543         setlocale(LC_NUMERIC, loc);
4544 #endif
4545         while (tbuf[len-1] == '0' && len > 0) len--;
4546         if ( tbuf[len-1] == '.' ) len--; /* eat the trailing decimal */
4547         version = savepvn(tbuf, len);
4548     }
4549 #ifdef SvVOK
4550     else if ( (mg = SvVSTRING_mg(ver)) ) { /* already a v-string */
4551         version = savepvn( (const char*)mg->mg_ptr,mg->mg_len );
4552         qv = 1;
4553     }
4554 #endif
4555     else /* must be a string or something like a string */
4556     {
4557         STRLEN len;
4558         version = savepv(SvPV(ver,len));
4559 #ifndef SvVOK
4560 #  if PERL_VERSION > 5
4561         /* This will only be executed for 5.6.0 - 5.8.0 inclusive */
4562         if ( len == 3 && !instr(version,".") && !instr(version,"_") ) {
4563             /* may be a v-string */
4564             SV * const nsv = sv_newmortal();
4565             const char *nver;
4566             const char *pos;
4567             int saw_period = 0;
4568             sv_setpvf(nsv,"v%vd",ver);
4569             pos = nver = savepv(SvPV_nolen(nsv));
4570
4571             /* scan the resulting formatted string */
4572             pos++; /* skip the leading 'v' */
4573             while ( *pos == '.' || isDIGIT(*pos) ) {
4574                 if ( *pos == '.' )
4575                     saw_period++ ;
4576                 pos++;
4577             }
4578
4579             /* is definitely a v-string */
4580             if ( saw_period == 2 ) {    
4581                 Safefree(version);
4582                 version = nver;
4583             }
4584         }
4585 #  endif
4586 #endif
4587     }
4588
4589     s = scan_version(version, ver, qv);
4590     if ( *s != '\0' ) 
4591         if(ckWARN(WARN_MISC))
4592             Perl_warner(aTHX_ packWARN(WARN_MISC), 
4593                 "Version string '%s' contains invalid data; "
4594                 "ignoring: '%s'", version, s);
4595     Safefree(version);
4596     return ver;
4597 }
4598
4599 /*
4600 =for apidoc vverify
4601
4602 Validates that the SV contains a valid version object.
4603
4604     bool vverify(SV *vobj);
4605
4606 Note that it only confirms the bare minimum structure (so as not to get
4607 confused by derived classes which may contain additional hash entries):
4608
4609 =over 4
4610
4611 =item * The SV contains a [reference to a] hash
4612
4613 =item * The hash contains a "version" key
4614
4615 =item * The "version" key has [a reference to] an AV as its value
4616
4617 =back
4618
4619 =cut
4620 */
4621
4622 bool
4623 Perl_vverify(pTHX_ SV *vs)
4624 {
4625     SV *sv;
4626
4627     PERL_ARGS_ASSERT_VVERIFY;
4628
4629     if ( SvROK(vs) )
4630         vs = SvRV(vs);
4631
4632     /* see if the appropriate elements exist */
4633     if ( SvTYPE(vs) == SVt_PVHV
4634          && hv_exists(MUTABLE_HV(vs), "version", 7)
4635          && (sv = SvRV(*hv_fetchs(MUTABLE_HV(vs), "version", FALSE)))
4636          && SvTYPE(sv) == SVt_PVAV )
4637         return TRUE;
4638     else
4639         return FALSE;
4640 }
4641
4642 /*
4643 =for apidoc vnumify
4644
4645 Accepts a version object and returns the normalized floating
4646 point representation.  Call like:
4647
4648     sv = vnumify(rv);
4649
4650 NOTE: you can pass either the object directly or the SV
4651 contained within the RV.
4652
4653 =cut
4654 */
4655
4656 SV *
4657 Perl_vnumify(pTHX_ SV *vs)
4658 {
4659     I32 i, len, digit;
4660     int width;
4661     bool alpha = FALSE;
4662     SV * const sv = newSV(0);
4663     AV *av;
4664
4665     PERL_ARGS_ASSERT_VNUMIFY;
4666
4667     if ( SvROK(vs) )
4668         vs = SvRV(vs);
4669
4670     if ( !vverify(vs) )
4671         Perl_croak(aTHX_ "Invalid version object");
4672
4673     /* see if various flags exist */
4674     if ( hv_exists(MUTABLE_HV(vs), "alpha", 5 ) )
4675         alpha = TRUE;
4676     if ( hv_exists(MUTABLE_HV(vs), "width", 5 ) )
4677         width = SvIV(*hv_fetchs(MUTABLE_HV(vs), "width", FALSE));
4678     else
4679         width = 3;
4680
4681
4682     /* attempt to retrieve the version array */
4683     if ( !(av = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(vs), "version", FALSE))) ) ) {
4684         sv_catpvs(sv,"0");
4685         return sv;
4686     }
4687
4688     len = av_len(av);
4689     if ( len == -1 )
4690     {
4691         sv_catpvs(sv,"0");
4692         return sv;
4693     }
4694
4695     digit = SvIV(*av_fetch(av, 0, 0));
4696     Perl_sv_setpvf(aTHX_ sv, "%d.", (int)PERL_ABS(digit));
4697     for ( i = 1 ; i < len ; i++ )
4698     {
4699         digit = SvIV(*av_fetch(av, i, 0));
4700         if ( width < 3 ) {
4701             const int denom = (width == 2 ? 10 : 100);
4702             const div_t term = div((int)PERL_ABS(digit),denom);
4703             Perl_sv_catpvf(aTHX_ sv, "%0*d_%d", width, term.quot, term.rem);
4704         }
4705         else {
4706             Perl_sv_catpvf(aTHX_ sv, "%0*d", width, (int)digit);
4707         }
4708     }
4709
4710     if ( len > 0 )
4711     {
4712         digit = SvIV(*av_fetch(av, len, 0));
4713         if ( alpha && width == 3 ) /* alpha version */
4714             sv_catpvs(sv,"_");
4715         Perl_sv_catpvf(aTHX_ sv, "%0*d", width, (int)digit);
4716     }
4717     else /* len == 0 */
4718     {
4719         sv_catpvs(sv, "000");
4720     }
4721     return sv;
4722 }
4723
4724 /*
4725 =for apidoc vnormal
4726
4727 Accepts a version object and returns the normalized string
4728 representation.  Call like:
4729
4730     sv = vnormal(rv);
4731
4732 NOTE: you can pass either the object directly or the SV
4733 contained within the RV.
4734
4735 =cut
4736 */
4737
4738 SV *
4739 Perl_vnormal(pTHX_ SV *vs)
4740 {
4741     I32 i, len, digit;
4742     bool alpha = FALSE;
4743     SV * const sv = newSV(0);
4744     AV *av;
4745
4746     PERL_ARGS_ASSERT_VNORMAL;
4747
4748     if ( SvROK(vs) )
4749         vs = SvRV(vs);
4750
4751     if ( !vverify(vs) )
4752         Perl_croak(aTHX_ "Invalid version object");
4753
4754     if ( hv_exists(MUTABLE_HV(vs), "alpha", 5 ) )
4755         alpha = TRUE;
4756     av = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(vs), "version", FALSE)));
4757
4758     len = av_len(av);
4759     if ( len == -1 )
4760     {
4761         sv_catpvs(sv,"");
4762         return sv;
4763     }
4764     digit = SvIV(*av_fetch(av, 0, 0));
4765     Perl_sv_setpvf(aTHX_ sv, "v%"IVdf, (IV)digit);
4766     for ( i = 1 ; i < len ; i++ ) {
4767         digit = SvIV(*av_fetch(av, i, 0));
4768         Perl_sv_catpvf(aTHX_ sv, ".%"IVdf, (IV)digit);
4769     }
4770
4771     if ( len > 0 )
4772     {
4773         /* handle last digit specially */
4774         digit = SvIV(*av_fetch(av, len, 0));
4775         if ( alpha )
4776             Perl_sv_catpvf(aTHX_ sv, "_%"IVdf, (IV)digit);
4777         else
4778             Perl_sv_catpvf(aTHX_ sv, ".%"IVdf, (IV)digit);
4779     }
4780
4781     if ( len <= 2 ) { /* short version, must be at least three */
4782         for ( len = 2 - len; len != 0; len-- )
4783             sv_catpvs(sv,".0");
4784     }
4785     return sv;
4786 }
4787
4788 /*
4789 =for apidoc vstringify
4790
4791 In order to maintain maximum compatibility with earlier versions
4792 of Perl, this function will return either the floating point
4793 notation or the multiple dotted notation, depending on whether
4794 the original version contained 1 or more dots, respectively
4795
4796 =cut
4797 */
4798
4799 SV *
4800 Perl_vstringify(pTHX_ SV *vs)
4801 {
4802     PERL_ARGS_ASSERT_VSTRINGIFY;
4803
4804     if ( SvROK(vs) )
4805         vs = SvRV(vs);
4806
4807     if ( !vverify(vs) )
4808         Perl_croak(aTHX_ "Invalid version object");
4809
4810     if (hv_exists(MUTABLE_HV(vs), "original",  sizeof("original") - 1)) {
4811         SV *pv;
4812         pv = *hv_fetchs(MUTABLE_HV(vs), "original", FALSE);
4813         if ( SvPOK(pv) )
4814             return newSVsv(pv);
4815         else
4816             return &PL_sv_undef;
4817     }
4818     else {
4819         if ( hv_exists(MUTABLE_HV(vs), "qv", 2) )
4820             return vnormal(vs);
4821         else
4822             return vnumify(vs);
4823     }
4824 }
4825
4826 /*
4827 =for apidoc vcmp
4828
4829 Version object aware cmp.  Both operands must already have been 
4830 converted into version objects.
4831
4832 =cut
4833 */
4834
4835 int
4836 Perl_vcmp(pTHX_ SV *lhv, SV *rhv)
4837 {
4838     I32 i,l,m,r,retval;
4839     bool lalpha = FALSE;
4840     bool ralpha = FALSE;
4841     I32 left = 0;
4842     I32 right = 0;
4843     AV *lav, *rav;
4844
4845     PERL_ARGS_ASSERT_VCMP;
4846
4847     if ( SvROK(lhv) )
4848         lhv = SvRV(lhv);
4849     if ( SvROK(rhv) )
4850         rhv = SvRV(rhv);
4851
4852     if ( !vverify(lhv) )
4853         Perl_croak(aTHX_ "Invalid version object");
4854
4855     if ( !vverify(rhv) )
4856         Perl_croak(aTHX_ "Invalid version object");
4857
4858     /* get the left hand term */
4859     lav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(lhv), "version", FALSE)));
4860     if ( hv_exists(MUTABLE_HV(lhv), "alpha", 5 ) )
4861         lalpha = TRUE;
4862
4863     /* and the right hand term */
4864     rav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(rhv), "version", FALSE)));
4865     if ( hv_exists(MUTABLE_HV(rhv), "alpha", 5 ) )
4866         ralpha = TRUE;
4867
4868     l = av_len(lav);
4869     r = av_len(rav);
4870     m = l < r ? l : r;
4871     retval = 0;
4872     i = 0;
4873     while ( i <= m && retval == 0 )
4874     {
4875         left  = SvIV(*av_fetch(lav,i,0));
4876         right = SvIV(*av_fetch(rav,i,0));
4877         if ( left < right  )
4878             retval = -1;
4879         if ( left > right )
4880             retval = +1;
4881         i++;
4882     }
4883
4884     /* tiebreaker for alpha with identical terms */
4885     if ( retval == 0 && l == r && left == right && ( lalpha || ralpha ) )
4886     {
4887         if ( lalpha && !ralpha )
4888         {
4889             retval = -1;
4890         }
4891         else if ( ralpha && !lalpha)
4892         {
4893             retval = +1;
4894         }
4895     }
4896
4897     if ( l != r && retval == 0 ) /* possible match except for trailing 0's */
4898     {
4899         if ( l < r )
4900         {
4901             while ( i <= r && retval == 0 )
4902             {
4903                 if ( SvIV(*av_fetch(rav,i,0)) != 0 )
4904                     retval = -1; /* not a match after all */
4905                 i++;
4906             }
4907         }
4908         else
4909         {
4910             while ( i <= l && retval == 0 )
4911             {
4912                 if ( SvIV(*av_fetch(lav,i,0)) != 0 )
4913                     retval = +1; /* not a match after all */
4914                 i++;
4915             }
4916         }
4917     }
4918     return retval;
4919 }
4920
4921 #if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET) && defined(SOCK_DGRAM) && defined(HAS_SELECT)
4922 #   define EMULATE_SOCKETPAIR_UDP
4923 #endif
4924
4925 #ifdef EMULATE_SOCKETPAIR_UDP
4926 static int
4927 S_socketpair_udp (int fd[2]) {
4928     dTHX;
4929     /* Fake a datagram socketpair using UDP to localhost.  */
4930     int sockets[2] = {-1, -1};
4931     struct sockaddr_in addresses[2];
4932     int i;
4933     Sock_size_t size = sizeof(struct sockaddr_in);
4934     unsigned short port;
4935     int got;
4936
4937     memset(&addresses, 0, sizeof(addresses));
4938     i = 1;
4939     do {
4940         sockets[i] = PerlSock_socket(AF_INET, SOCK_DGRAM, PF_INET);
4941         if (sockets[i] == -1)
4942             goto tidy_up_and_fail;
4943
4944         addresses[i].sin_family = AF_INET;
4945         addresses[i].sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4946         addresses[i].sin_port = 0;      /* kernel choses port.  */
4947         if (PerlSock_bind(sockets[i], (struct sockaddr *) &addresses[i],
4948                 sizeof(struct sockaddr_in)) == -1)
4949             goto tidy_up_and_fail;
4950     } while (i--);
4951
4952     /* Now have 2 UDP sockets. Find out which port each is connected to, and
4953        for each connect the other socket to it.  */
4954     i = 1;
4955     do {
4956         if (PerlSock_getsockname(sockets[i], (struct sockaddr *) &addresses[i],
4957                 &size) == -1)
4958             goto tidy_up_and_fail;
4959         if (size != sizeof(struct sockaddr_in))
4960             goto abort_tidy_up_and_fail;
4961         /* !1 is 0, !0 is 1 */
4962         if (PerlSock_connect(sockets[!i], (struct sockaddr *) &addresses[i],
4963                 sizeof(struct sockaddr_in)) == -1)
4964             goto tidy_up_and_fail;
4965     } while (i--);
4966
4967     /* Now we have 2 sockets connected to each other. I don't trust some other
4968        process not to have already sent a packet to us (by random) so send
4969        a packet from each to the other.  */
4970     i = 1;
4971     do {
4972         /* I'm going to send my own port number.  As a short.
4973            (Who knows if someone somewhere has sin_port as a bitfield and needs
4974            this routine. (I'm assuming crays have socketpair)) */
4975         port = addresses[i].sin_port;
4976         got = PerlLIO_write(sockets[i], &port, sizeof(port));
4977         if (got != sizeof(port)) {
4978             if (got == -1)
4979                 goto tidy_up_and_fail;
4980             goto abort_tidy_up_and_fail;
4981         }
4982     } while (i--);
4983
4984     /* Packets sent. I don't trust them to have arrived though.
4985        (As I understand it Solaris TCP stack is multithreaded. Non-blocking
4986        connect to localhost will use a second kernel thread. In 2.6 the
4987        first thread running the connect() returns before the second completes,
4988        so EINPROGRESS> In 2.7 the improved stack is faster and connect()
4989        returns 0. Poor programs have tripped up. One poor program's authors'
4990        had a 50-1 reverse stock split. Not sure how connected these were.)
4991        So I don't trust someone not to have an unpredictable UDP stack.
4992     */
4993
4994     {
4995         struct timeval waitfor = {0, 100000}; /* You have 0.1 seconds */
4996         int max = sockets[1] > sockets[0] ? sockets[1] : sockets[0];
4997         fd_set rset;
4998
4999         FD_ZERO(&rset);
5000         FD_SET((unsigned int)sockets[0], &rset);
5001         FD_SET((unsigned int)sockets[1], &rset);
5002
5003         got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
5004         if (got != 2 || !FD_ISSET(sockets[0], &rset)
5005                 || !FD_ISSET(sockets[1], &rset)) {
5006             /* I hope this is portable and appropriate.  */
5007             if (got == -1)
5008                 goto tidy_up_and_fail;
5009             goto abort_tidy_up_and_fail;
5010         }
5011     }
5012
5013     /* And the paranoia department even now doesn't trust it to have arrive
5014        (hence MSG_DONTWAIT). Or that what arrives was sent by us.  */
5015     {
5016         struct sockaddr_in readfrom;
5017         unsigned short buffer[2];
5018
5019         i = 1;
5020         do {
5021 #ifdef MSG_DONTWAIT
5022             got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
5023                     sizeof(buffer), MSG_DONTWAIT,
5024                     (struct sockaddr *) &readfrom, &size);
5025 #else
5026             got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
5027                     sizeof(buffer), 0,
5028                     (struct sockaddr *) &readfrom, &size);
5029 #endif
5030
5031             if (got == -1)
5032                 goto tidy_up_and_fail;
5033             if (got != sizeof(port)
5034                     || size != sizeof(struct sockaddr_in)
5035                     /* Check other socket sent us its port.  */
5036                     || buffer[0] != (unsigned short) addresses[!i].sin_port
5037                     /* Check kernel says we got the datagram from that socket */
5038                     || readfrom.sin_family != addresses[!i].sin_family
5039                     || readfrom.sin_addr.s_addr != addresses[!i].sin_addr.s_addr
5040                     || readfrom.sin_port != addresses[!i].sin_port)
5041                 goto abort_tidy_up_and_fail;
5042         } while (i--);
5043     }
5044     /* My caller (my_socketpair) has validated that this is non-NULL  */
5045     fd[0] = sockets[0];
5046     fd[1] = sockets[1];
5047     /* I hereby declare this connection open.  May God bless all who cross
5048        her.  */
5049     return 0;
5050
5051   abort_tidy_up_and_fail:
5052     errno = ECONNABORTED;
5053   tidy_up_and_fail:
5054     {
5055         const int save_errno = errno;
5056         if (sockets[0] != -1)
5057             PerlLIO_close(sockets[0]);
5058         if (sockets[1] != -1)
5059             PerlLIO_close(sockets[1]);
5060         errno = save_errno;
5061         return -1;
5062     }
5063 }
5064 #endif /*  EMULATE_SOCKETPAIR_UDP */
5065
5066 #if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET)
5067 int
5068 Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
5069     /* Stevens says that family must be AF_LOCAL, protocol 0.
5070        I'm going to enforce that, then ignore it, and use TCP (or UDP).  */
5071     dTHX;
5072     int listener = -1;
5073     int connector = -1;
5074     int acceptor = -1;
5075     struct sockaddr_in listen_addr;
5076     struct sockaddr_in connect_addr;
5077     Sock_size_t size;
5078
5079     if (protocol
5080 #ifdef AF_UNIX
5081         || family != AF_UNIX
5082 #endif
5083     ) {
5084         errno = EAFNOSUPPORT;
5085         return -1;
5086     }
5087     if (!fd) {
5088         errno = EINVAL;
5089         return -1;
5090     }
5091
5092 #ifdef EMULATE_SOCKETPAIR_UDP
5093     if (type == SOCK_DGRAM)
5094         return S_socketpair_udp(fd);
5095 #endif
5096
5097     listener = PerlSock_socket(AF_INET, type, 0);
5098     if (listener == -1)
5099         return -1;
5100     memset(&listen_addr, 0, sizeof(listen_addr));
5101     listen_addr.sin_family = AF_INET;
5102     listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
5103     listen_addr.sin_port = 0;   /* kernel choses port.  */
5104     if (PerlSock_bind(listener, (struct sockaddr *) &listen_addr,
5105             sizeof(listen_addr)) == -1)
5106         goto tidy_up_and_fail;
5107     if (PerlSock_listen(listener, 1) == -1)
5108         goto tidy_up_and_fail;
5109
5110     connector = PerlSock_socket(AF_INET, type, 0);
5111     if (connector == -1)
5112         goto tidy_up_and_fail;
5113     /* We want to find out the port number to connect to.  */
5114     size = sizeof(connect_addr);
5115     if (PerlSock_getsockname(listener, (struct sockaddr *) &connect_addr,
5116             &size) == -1)
5117         goto tidy_up_and_fail;
5118     if (size != sizeof(connect_addr))
5119         goto abort_tidy_up_and_fail;
5120     if (PerlSock_connect(connector, (struct sockaddr *) &connect_addr,
5121             sizeof(connect_addr)) == -1)
5122         goto tidy_up_and_fail;
5123
5124     size = sizeof(listen_addr);
5125     acceptor = PerlSock_accept(listener, (struct sockaddr *) &listen_addr,
5126             &size);
5127     if (acceptor == -1)
5128         goto tidy_up_and_fail;
5129     if (size != sizeof(listen_addr))
5130         goto abort_tidy_up_and_fail;
5131     PerlLIO_close(listener);
5132     /* Now check we are talking to ourself by matching port and host on the
5133        two sockets.  */
5134     if (PerlSock_getsockname(connector, (struct sockaddr *) &connect_addr,
5135             &size) == -1)
5136         goto tidy_up_and_fail;
5137     if (size != sizeof(connect_addr)
5138             || listen_addr.sin_family != connect_addr.sin_family
5139             || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr
5140             || listen_addr.sin_port != connect_addr.sin_port) {
5141         goto abort_tidy_up_and_fail;
5142     }
5143     fd[0] = connector;
5144     fd[1] = acceptor;
5145     return 0;
5146
5147   abort_tidy_up_and_fail:
5148 #ifdef ECONNABORTED
5149   errno = ECONNABORTED; /* This would be the standard thing to do. */
5150 #else
5151 #  ifdef ECONNREFUSED
5152   errno = ECONNREFUSED; /* E.g. Symbian does not have ECONNABORTED. */
5153 #  else
5154   errno = ETIMEDOUT;    /* Desperation time. */
5155 #  endif
5156 #endif
5157   tidy_up_and_fail:
5158     {
5159         const int save_errno = errno;
5160         if (listener != -1)
5161             PerlLIO_close(listener);
5162         if (connector != -1)
5163             PerlLIO_close(connector);
5164         if (acceptor != -1)
5165             PerlLIO_close(acceptor);
5166         errno = save_errno;
5167         return -1;
5168     }
5169 }
5170 #else
5171 /* In any case have a stub so that there's code corresponding
5172  * to the my_socketpair in global.sym. */
5173 int
5174 Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
5175 #ifdef HAS_SOCKETPAIR
5176     return socketpair(family, type, protocol, fd);
5177 #else
5178     return -1;
5179 #endif
5180 }
5181 #endif
5182
5183 /*
5184
5185 =for apidoc sv_nosharing
5186
5187 Dummy routine which "shares" an SV when there is no sharing module present.
5188 Or "locks" it. Or "unlocks" it. In other words, ignores its single SV argument.
5189 Exists to avoid test for a NULL function pointer and because it could
5190 potentially warn under some level of strict-ness.
5191
5192 =cut
5193 */
5194
5195 void
5196 Perl_sv_nosharing(pTHX_ SV *sv)
5197 {
5198     PERL_UNUSED_CONTEXT;
5199     PERL_UNUSED_ARG(sv);
5200 }
5201
5202 /*
5203
5204 =for apidoc sv_destroyable
5205
5206 Dummy routine which reports that object can be destroyed when there is no
5207 sharing module present.  It ignores its single SV argument, and returns
5208 'true'.  Exists to avoid test for a NULL function pointer and because it
5209 could potentially warn under some level of strict-ness.
5210
5211 =cut
5212 */
5213
5214 bool
5215 Perl_sv_destroyable(pTHX_ SV *sv)
5216 {
5217     PERL_UNUSED_CONTEXT;
5218     PERL_UNUSED_ARG(sv);
5219     return TRUE;
5220 }
5221
5222 U32
5223 Perl_parse_unicode_opts(pTHX_ const char **popt)
5224 {
5225   const char *p = *popt;
5226   U32 opt = 0;
5227
5228   PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS;
5229
5230   if (*p) {
5231        if (isDIGIT(*p)) {
5232             opt = (U32) atoi(p);
5233             while (isDIGIT(*p))
5234                 p++;
5235             if (*p && *p != '\n' && *p != '\r')
5236                  Perl_croak(aTHX_ "Unknown Unicode option letter '%c'", *p);
5237        }
5238        else {
5239             for (; *p; p++) {
5240                  switch (*p) {
5241                  case PERL_UNICODE_STDIN:
5242                       opt |= PERL_UNICODE_STDIN_FLAG;   break;
5243                  case PERL_UNICODE_STDOUT:
5244                       opt |= PERL_UNICODE_STDOUT_FLAG;  break;
5245                  case PERL_UNICODE_STDERR:
5246                       opt |= PERL_UNICODE_STDERR_FLAG;  break;
5247                  case PERL_UNICODE_STD:
5248                       opt |= PERL_UNICODE_STD_FLAG;     break;
5249                  case PERL_UNICODE_IN:
5250                       opt |= PERL_UNICODE_IN_FLAG;      break;
5251                  case PERL_UNICODE_OUT:
5252                       opt |= PERL_UNICODE_OUT_FLAG;     break;
5253                  case PERL_UNICODE_INOUT:
5254                       opt |= PERL_UNICODE_INOUT_FLAG;   break;
5255                  case PERL_UNICODE_LOCALE:
5256                       opt |= PERL_UNICODE_LOCALE_FLAG;  break;
5257                  case PERL_UNICODE_ARGV:
5258                       opt |= PERL_UNICODE_ARGV_FLAG;    break;
5259                  case PERL_UNICODE_UTF8CACHEASSERT:
5260                       opt |= PERL_UNICODE_UTF8CACHEASSERT_FLAG; break;
5261                  default:
5262                       if (*p != '\n' && *p != '\r')
5263                           Perl_croak(aTHX_
5264                                      "Unknown Unicode option letter '%c'", *p);
5265                  }
5266             }
5267        }
5268   }
5269   else
5270        opt = PERL_UNICODE_DEFAULT_FLAGS;
5271
5272   if (opt & ~PERL_UNICODE_ALL_FLAGS)
5273        Perl_croak(aTHX_ "Unknown Unicode option value %"UVuf,
5274                   (UV) (opt & ~PERL_UNICODE_ALL_FLAGS));
5275
5276   *popt = p;
5277
5278   return opt;
5279 }
5280
5281 U32
5282 Perl_seed(pTHX)
5283 {
5284     dVAR;
5285     /*
5286      * This is really just a quick hack which grabs various garbage
5287      * values.  It really should be a real hash algorithm which
5288      * spreads the effect of every input bit onto every output bit,
5289      * if someone who knows about such things would bother to write it.
5290      * Might be a good idea to add that function to CORE as well.
5291      * No numbers below come from careful analysis or anything here,
5292      * except they are primes and SEED_C1 > 1E6 to get a full-width
5293      * value from (tv_sec * SEED_C1 + tv_usec).  The multipliers should
5294      * probably be bigger too.
5295      */
5296 #if RANDBITS > 16
5297 #  define SEED_C1       1000003
5298 #define   SEED_C4       73819
5299 #else
5300 #  define SEED_C1       25747
5301 #define   SEED_C4       20639
5302 #endif
5303 #define   SEED_C2       3
5304 #define   SEED_C3       269
5305 #define   SEED_C5       26107
5306
5307 #ifndef PERL_NO_DEV_RANDOM
5308     int fd;
5309 #endif
5310     U32 u;
5311 #ifdef VMS
5312 #  include <starlet.h>
5313     /* when[] = (low 32 bits, high 32 bits) of time since epoch
5314      * in 100-ns units, typically incremented ever 10 ms.        */
5315     unsigned int when[2];
5316 #else
5317 #  ifdef HAS_GETTIMEOFDAY
5318     struct timeval when;
5319 #  else
5320     Time_t when;
5321 #  endif
5322 #endif
5323
5324 /* This test is an escape hatch, this symbol isn't set by Configure. */
5325 #ifndef PERL_NO_DEV_RANDOM
5326 #ifndef PERL_RANDOM_DEVICE
5327    /* /dev/random isn't used by default because reads from it will block
5328     * if there isn't enough entropy available.  You can compile with
5329     * PERL_RANDOM_DEVICE to it if you'd prefer Perl to block until there
5330     * is enough real entropy to fill the seed. */
5331 #  define PERL_RANDOM_DEVICE "/dev/urandom"
5332 #endif
5333     fd = PerlLIO_open(PERL_RANDOM_DEVICE, 0);
5334     if (fd != -1) {
5335         if (PerlLIO_read(fd, (void*)&u, sizeof u) != sizeof u)
5336             u = 0;
5337         PerlLIO_close(fd);
5338         if (u)
5339             return u;
5340     }
5341 #endif
5342
5343 #ifdef VMS
5344     _ckvmssts(sys$gettim(when));
5345     u = (U32)SEED_C1 * when[0] + (U32)SEED_C2 * when[1];
5346 #else
5347 #  ifdef HAS_GETTIMEOFDAY
5348     PerlProc_gettimeofday(&when,NULL);
5349     u = (U32)SEED_C1 * when.tv_sec + (U32)SEED_C2 * when.tv_usec;
5350 #  else
5351     (void)time(&when);
5352     u = (U32)SEED_C1 * when;
5353 #  endif
5354 #endif
5355     u += SEED_C3 * (U32)PerlProc_getpid();
5356     u += SEED_C4 * (U32)PTR2UV(PL_stack_sp);
5357 #ifndef PLAN9           /* XXX Plan9 assembler chokes on this; fix needed  */
5358     u += SEED_C5 * (U32)PTR2UV(&when);
5359 #endif
5360     return u;
5361 }
5362
5363 UV
5364 Perl_get_hash_seed(pTHX)
5365 {
5366     dVAR;
5367      const char *s = PerlEnv_getenv("PERL_HASH_SEED");
5368      UV myseed = 0;
5369
5370      if (s)
5371         while (isSPACE(*s))
5372             s++;
5373      if (s && isDIGIT(*s))
5374           myseed = (UV)Atoul(s);
5375      else
5376 #ifdef USE_HASH_SEED_EXPLICIT
5377      if (s)
5378 #endif
5379      {
5380           /* Compute a random seed */
5381           (void)seedDrand01((Rand_seed_t)seed());
5382           myseed = (UV)(Drand01() * (NV)UV_MAX);
5383 #if RANDBITS < (UVSIZE * 8)
5384           /* Since there are not enough randbits to to reach all
5385            * the bits of a UV, the low bits might need extra
5386            * help.  Sum in another random number that will
5387            * fill in the low bits. */
5388           myseed +=
5389                (UV)(Drand01() * (NV)((1 << ((UVSIZE * 8 - RANDBITS))) - 1));
5390 #endif /* RANDBITS < (UVSIZE * 8) */
5391           if (myseed == 0) { /* Superparanoia. */
5392               myseed = (UV)(Drand01() * (NV)UV_MAX); /* One more chance. */
5393               if (myseed == 0)
5394                   Perl_croak(aTHX_ "Your random numbers are not that random");
5395           }
5396      }
5397      PL_rehash_seed_set = TRUE;
5398
5399      return myseed;
5400 }
5401
5402 #ifdef USE_ITHREADS
5403 bool
5404 Perl_stashpv_hvname_match(pTHX_ const COP *c, const HV *hv)
5405 {
5406     const char * const stashpv = CopSTASHPV(c);
5407     const char * const name = HvNAME_get(hv);
5408     PERL_UNUSED_CONTEXT;
5409     PERL_ARGS_ASSERT_STASHPV_HVNAME_MATCH;
5410
5411     if (stashpv == name)
5412         return TRUE;
5413     if (stashpv && name)
5414         if (strEQ(stashpv, name))
5415             return TRUE;
5416     return FALSE;
5417 }
5418 #endif
5419
5420
5421 #ifdef PERL_GLOBAL_STRUCT
5422
5423 #define PERL_GLOBAL_STRUCT_INIT
5424 #include "opcode.h" /* the ppaddr and check */
5425
5426 struct perl_vars *
5427 Perl_init_global_struct(pTHX)
5428 {
5429     struct perl_vars *plvarsp = NULL;
5430 # ifdef PERL_GLOBAL_STRUCT
5431     const IV nppaddr = sizeof(Gppaddr)/sizeof(Perl_ppaddr_t);
5432     const IV ncheck  = sizeof(Gcheck) /sizeof(Perl_check_t);
5433 #  ifdef PERL_GLOBAL_STRUCT_PRIVATE
5434     /* PerlMem_malloc() because can't use even safesysmalloc() this early. */
5435     plvarsp = (struct perl_vars*)PerlMem_malloc(sizeof(struct perl_vars));
5436     if (!plvarsp)
5437         exit(1);
5438 #  else
5439     plvarsp = PL_VarsPtr;
5440 #  endif /* PERL_GLOBAL_STRUCT_PRIVATE */
5441 #  undef PERLVAR
5442 #  undef PERLVARA
5443 #  undef PERLVARI
5444 #  undef PERLVARIC
5445 #  undef PERLVARISC
5446 #  define PERLVAR(var,type) /**/
5447 #  define PERLVARA(var,n,type) /**/
5448 #  define PERLVARI(var,type,init) plvarsp->var = init;
5449 #  define PERLVARIC(var,type,init) plvarsp->var = init;
5450 #  define PERLVARISC(var,init) Copy(init, plvarsp->var, sizeof(init), char);
5451 #  include "perlvars.h"
5452 #  undef PERLVAR
5453 #  undef PERLVARA
5454 #  undef PERLVARI
5455 #  undef PERLVARIC
5456 #  undef PERLVARISC
5457 #  ifdef PERL_GLOBAL_STRUCT
5458     plvarsp->Gppaddr =
5459         (Perl_ppaddr_t*)
5460         PerlMem_malloc(nppaddr * sizeof(Perl_ppaddr_t));
5461     if (!plvarsp->Gppaddr)
5462         exit(1);
5463     plvarsp->Gcheck  =
5464         (Perl_check_t*)
5465         PerlMem_malloc(ncheck  * sizeof(Perl_check_t));
5466     if (!plvarsp->Gcheck)
5467         exit(1);
5468     Copy(Gppaddr, plvarsp->Gppaddr, nppaddr, Perl_ppaddr_t); 
5469     Copy(Gcheck,  plvarsp->Gcheck,  ncheck,  Perl_check_t); 
5470 #  endif
5471 #  ifdef PERL_SET_VARS
5472     PERL_SET_VARS(plvarsp);
5473 #  endif
5474 # undef PERL_GLOBAL_STRUCT_INIT
5475 # endif
5476     return plvarsp;
5477 }
5478
5479 #endif /* PERL_GLOBAL_STRUCT */
5480
5481 #ifdef PERL_GLOBAL_STRUCT
5482
5483 void
5484 Perl_free_global_struct(pTHX_ struct perl_vars *plvarsp)
5485 {
5486     PERL_ARGS_ASSERT_FREE_GLOBAL_STRUCT;
5487 # ifdef PERL_GLOBAL_STRUCT
5488 #  ifdef PERL_UNSET_VARS
5489     PERL_UNSET_VARS(plvarsp);
5490 #  endif
5491     free(plvarsp->Gppaddr);
5492     free(plvarsp->Gcheck);
5493 #  ifdef PERL_GLOBAL_STRUCT_PRIVATE
5494     free(plvarsp);
5495 #  endif
5496 # endif
5497 }
5498
5499 #endif /* PERL_GLOBAL_STRUCT */
5500
5501 #ifdef PERL_MEM_LOG
5502
5503 /*
5504  * PERL_MEM_LOG: the Perl_mem_log_..() will be compiled.
5505  *
5506  * PERL_MEM_LOG_ENV: if defined, during run time the environment
5507  * variables PERL_MEM_LOG and PERL_SV_LOG will be consulted, and
5508  * if the integer value of that is true, the logging will happen.
5509  * (The default is to always log if the PERL_MEM_LOG define was
5510  * in effect.)
5511  *
5512  * PERL_MEM_LOG_TIMESTAMP: if defined, a timestamp will be logged
5513  * before every memory logging entry. This can be turned off at run
5514  * time by setting the environment variable PERL_MEM_LOG_TIMESTAMP
5515  * to zero.
5516  */
5517
5518 /*
5519  * PERL_MEM_LOG_SPRINTF_BUF_SIZE: size of a (stack-allocated) buffer
5520  * the Perl_mem_log_...() will use (either via sprintf or snprintf).
5521  */
5522 #define PERL_MEM_LOG_SPRINTF_BUF_SIZE 128
5523
5524 /*
5525  * PERL_MEM_LOG_FD: the file descriptor the Perl_mem_log_...() will
5526  * log to.  You can also define in compile time PERL_MEM_LOG_ENV_FD,
5527  * in which case the environment variable PERL_MEM_LOG_FD will be
5528  * consulted for the file descriptor number to use.
5529  */
5530 #ifndef PERL_MEM_LOG_FD
5531 #  define PERL_MEM_LOG_FD 2 /* If STDERR is too boring for you. */
5532 #endif
5533
5534 #ifdef PERL_MEM_LOG_STDERR
5535
5536 # ifdef DEBUG_LEAKING_SCALARS
5537 #   define SV_LOG_SERIAL_FMT        " [%lu]"
5538 #   define _SV_LOG_SERIAL_ARG(sv)   , (unsigned long) (sv)->sv_debug_serial
5539 # else
5540 #   define SV_LOG_SERIAL_FMT
5541 #   define _SV_LOG_SERIAL_ARG(sv)
5542 # endif
5543
5544 static void
5545 S_mem_log_common(enum mem_log_type mlt, const UV n, const UV typesize, const char *type_name, const SV *sv, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname)
5546 {
5547 # if defined(PERL_MEM_LOG_ENV) || defined(PERL_MEM_LOG_ENV_FD)
5548     const char *s;
5549 # endif
5550
5551     PERL_ARGS_ASSERT_MEM_LOG_COMMON;
5552
5553 # ifdef PERL_MEM_LOG_ENV
5554     s = PerlEnv_getenv(mlt < MLT_NEW_SV ? "PERL_MEM_LOG" : "PERL_SV_LOG");
5555     if (s ? atoi(s) : 0)
5556 # endif
5557     {
5558         /* We can't use SVs or PerlIO for obvious reasons,
5559          * so we'll use stdio and low-level IO instead. */
5560         char buf[PERL_MEM_LOG_SPRINTF_BUF_SIZE];
5561 # ifdef PERL_MEM_LOG_TIMESTAMP
5562 #   ifdef HAS_GETTIMEOFDAY
5563 #     define MEM_LOG_TIME_FMT   "%10d.%06d: "
5564 #     define MEM_LOG_TIME_ARG   (int)tv.tv_sec, (int)tv.tv_usec
5565         struct timeval tv;
5566         gettimeofday(&tv, 0);
5567 #   else
5568 #     define MEM_LOG_TIME_FMT   "%10d: "
5569 #     define MEM_LOG_TIME_ARG   (int)when
5570         Time_t when;
5571         (void)time(&when);
5572 #   endif
5573         /* If there are other OS specific ways of hires time than
5574          * gettimeofday() (see ext/Time/HiRes), the easiest way is
5575          * probably that they would be used to fill in the struct
5576          * timeval. */
5577 # endif
5578         {
5579             int fd = PERL_MEM_LOG_FD;
5580             STRLEN len;
5581
5582 # ifdef PERL_MEM_LOG_ENV_FD
5583             if ((s = PerlEnv_getenv("PERL_MEM_LOG_FD"))) {
5584                 fd = atoi(s);
5585             }
5586 # endif
5587 # ifdef PERL_MEM_LOG_TIMESTAMP
5588             s = PerlEnv_getenv("PERL_MEM_LOG_TIMESTAMP");
5589             if (!s || atoi(s)) {
5590                 len = my_snprintf(buf, sizeof(buf),
5591                                 MEM_LOG_TIME_FMT, MEM_LOG_TIME_ARG);
5592                 PerlLIO_write(fd, buf, len);
5593             }
5594 # endif
5595             switch (mlt) {
5596             case MLT_ALLOC:
5597                 len = my_snprintf(buf, sizeof(buf),
5598                         "alloc: %s:%d:%s: %"IVdf" %"UVuf
5599                         " %s = %"IVdf": %"UVxf"\n",
5600                         filename, linenumber, funcname, n, typesize,
5601                         type_name, n * typesize, PTR2UV(newalloc));
5602                 break;
5603             case MLT_REALLOC:
5604                 len = my_snprintf(buf, sizeof(buf),
5605                         "realloc: %s:%d:%s: %"IVdf" %"UVuf
5606                         " %s = %"IVdf": %"UVxf" -> %"UVxf"\n",
5607                         filename, linenumber, funcname, n, typesize,
5608                         type_name, n * typesize, PTR2UV(oldalloc),
5609                         PTR2UV(newalloc));
5610                 break;
5611             case MLT_FREE:
5612                 len = my_snprintf(buf, sizeof(buf),
5613                         "free: %s:%d:%s: %"UVxf"\n",
5614                         filename, linenumber, funcname,
5615                         PTR2UV(oldalloc));
5616                 break;
5617             case MLT_NEW_SV:
5618             case MLT_DEL_SV:
5619                 len = my_snprintf(buf, sizeof(buf),
5620                         "%s_SV: %s:%d:%s: %"UVxf SV_LOG_SERIAL_FMT "\n",
5621                         mlt == MLT_NEW_SV ? "new" : "del",
5622                         filename, linenumber, funcname,
5623                         PTR2UV(sv) _SV_LOG_SERIAL_ARG(sv));
5624                 break;
5625             }
5626             PerlLIO_write(fd, buf, len);
5627         }
5628     }
5629 }
5630 #endif
5631
5632 Malloc_t
5633 Perl_mem_log_alloc(const UV n, const UV typesize, const char *type_name, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname)
5634 {
5635 #ifdef PERL_MEM_LOG_STDERR
5636     mem_log_common(MLT_ALLOC, n, typesize, type_name, NULL, NULL, newalloc, filename, linenumber, funcname);
5637 #endif
5638     return newalloc;
5639 }
5640
5641 Malloc_t
5642 Perl_mem_log_realloc(const UV n, const UV typesize, const char *type_name, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname)
5643 {
5644 #ifdef PERL_MEM_LOG_STDERR
5645     mem_log_common(MLT_REALLOC, n, typesize, type_name, NULL, oldalloc, newalloc, filename, linenumber, funcname);
5646 #endif
5647     return newalloc;
5648 }
5649
5650 Malloc_t
5651 Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int linenumber, const char *funcname)
5652 {
5653 #ifdef PERL_MEM_LOG_STDERR
5654     mem_log_common(MLT_FREE, 0, 0, "", NULL, oldalloc, NULL, filename, linenumber, funcname);
5655 #endif
5656     return oldalloc;
5657 }
5658
5659 void
5660 Perl_mem_log_new_sv(const SV *sv, const char *filename, const int linenumber, const char *funcname)
5661 {
5662 #ifdef PERL_MEM_LOG_STDERR
5663     mem_log_common(MLT_NEW_SV, 0, 0, "", sv, NULL, NULL, filename, linenumber, funcname);
5664 #endif
5665 }
5666
5667 void
5668 Perl_mem_log_del_sv(const SV *sv, const char *filename, const int linenumber, const char *funcname)
5669 {
5670 #ifdef PERL_MEM_LOG_STDERR
5671     mem_log_common(MLT_DEL_SV, 0, 0, "", sv, NULL, NULL, filename, linenumber, funcname);
5672 #endif
5673 }
5674
5675 #endif /* PERL_MEM_LOG */
5676
5677 /*
5678 =for apidoc my_sprintf
5679
5680 The C library C<sprintf>, wrapped if necessary, to ensure that it will return
5681 the length of the string written to the buffer. Only rare pre-ANSI systems
5682 need the wrapper function - usually this is a direct call to C<sprintf>.
5683
5684 =cut
5685 */
5686 #ifndef SPRINTF_RETURNS_STRLEN
5687 int
5688 Perl_my_sprintf(char *buffer, const char* pat, ...)
5689 {
5690     va_list args;
5691     PERL_ARGS_ASSERT_MY_SPRINTF;
5692     va_start(args, pat);
5693     vsprintf(buffer, pat, args);
5694     va_end(args);
5695     return strlen(buffer);
5696 }
5697 #endif
5698
5699 /*
5700 =for apidoc my_snprintf
5701
5702 The C library C<snprintf> functionality, if available and
5703 standards-compliant (uses C<vsnprintf>, actually).  However, if the
5704 C<vsnprintf> is not available, will unfortunately use the unsafe
5705 C<vsprintf> which can overrun the buffer (there is an overrun check,
5706 but that may be too late).  Consider using C<sv_vcatpvf> instead, or
5707 getting C<vsnprintf>.
5708
5709 =cut
5710 */
5711 int
5712 Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...)
5713 {
5714     dTHX;
5715     int retval;
5716     va_list ap;
5717     PERL_ARGS_ASSERT_MY_SNPRINTF;
5718     va_start(ap, format);
5719 #ifdef HAS_VSNPRINTF
5720     retval = vsnprintf(buffer, len, format, ap);
5721 #else
5722     retval = vsprintf(buffer, format, ap);
5723 #endif
5724     va_end(ap);
5725     /* vsnprintf() shows failure with >= len, vsprintf() with < 0 */
5726     if (retval < 0 || (len > 0 && (Size_t)retval >= len))
5727         Perl_croak(aTHX_ "panic: my_snprintf buffer overflow");
5728     return retval;
5729 }
5730
5731 /*
5732 =for apidoc my_vsnprintf
5733
5734 The C library C<vsnprintf> if available and standards-compliant.
5735 However, if if the C<vsnprintf> is not available, will unfortunately
5736 use the unsafe C<vsprintf> which can overrun the buffer (there is an
5737 overrun check, but that may be too late).  Consider using
5738 C<sv_vcatpvf> instead, or getting C<vsnprintf>.
5739
5740 =cut
5741 */
5742 int
5743 Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap)
5744 {
5745     dTHX;
5746     int retval;
5747 #ifdef NEED_VA_COPY
5748     va_list apc;
5749
5750     PERL_ARGS_ASSERT_MY_VSNPRINTF;
5751
5752     Perl_va_copy(ap, apc);
5753 # ifdef HAS_VSNPRINTF
5754     retval = vsnprintf(buffer, len, format, apc);
5755 # else
5756     retval = vsprintf(buffer, format, apc);
5757 # endif
5758 #else
5759 # ifdef HAS_VSNPRINTF
5760     retval = vsnprintf(buffer, len, format, ap);
5761 # else
5762     retval = vsprintf(buffer, format, ap);
5763 # endif
5764 #endif /* #ifdef NEED_VA_COPY */
5765     /* vsnprintf() shows failure with >= len, vsprintf() with < 0 */
5766     if (retval < 0 || (len > 0 && (Size_t)retval >= len))
5767         Perl_croak(aTHX_ "panic: my_vsnprintf buffer overflow");
5768     return retval;
5769 }
5770
5771 void
5772 Perl_my_clearenv(pTHX)
5773 {
5774     dVAR;
5775 #if ! defined(PERL_MICRO)
5776 #  if defined(PERL_IMPLICIT_SYS) || defined(WIN32)
5777     PerlEnv_clearenv();
5778 #  else /* ! (PERL_IMPLICIT_SYS || WIN32) */
5779 #    if defined(USE_ENVIRON_ARRAY)
5780 #      if defined(USE_ITHREADS)
5781     /* only the parent thread can clobber the process environment */
5782     if (PL_curinterp == aTHX)
5783 #      endif /* USE_ITHREADS */
5784     {
5785 #      if ! defined(PERL_USE_SAFE_PUTENV)
5786     if ( !PL_use_safe_putenv) {
5787       I32 i;
5788       if (environ == PL_origenviron)
5789         environ = (char**)safesysmalloc(sizeof(char*));
5790       else
5791         for (i = 0; environ[i]; i++)
5792           (void)safesysfree(environ[i]);
5793     }
5794     environ[0] = NULL;
5795 #      else /* PERL_USE_SAFE_PUTENV */
5796 #        if defined(HAS_CLEARENV)
5797     (void)clearenv();
5798 #        elif defined(HAS_UNSETENV)
5799     int bsiz = 80; /* Most envvar names will be shorter than this. */
5800     int bufsiz = bsiz * sizeof(char); /* sizeof(char) paranoid? */
5801     char *buf = (char*)safesysmalloc(bufsiz);
5802     while (*environ != NULL) {
5803       char *e = strchr(*environ, '=');
5804       int l = e ? e - *environ : (int)strlen(*environ);
5805       if (bsiz < l + 1) {
5806         (void)safesysfree(buf);
5807         bsiz = l + 1; /* + 1 for the \0. */
5808         buf = (char*)safesysmalloc(bufsiz);
5809       } 
5810       memcpy(buf, *environ, l);
5811       buf[l] = '\0';
5812       (void)unsetenv(buf);
5813     }
5814     (void)safesysfree(buf);
5815 #        else /* ! HAS_CLEARENV && ! HAS_UNSETENV */
5816     /* Just null environ and accept the leakage. */
5817     *environ = NULL;
5818 #        endif /* HAS_CLEARENV || HAS_UNSETENV */
5819 #      endif /* ! PERL_USE_SAFE_PUTENV */
5820     }
5821 #    endif /* USE_ENVIRON_ARRAY */
5822 #  endif /* PERL_IMPLICIT_SYS || WIN32 */
5823 #endif /* PERL_MICRO */
5824 }
5825
5826 #ifdef PERL_IMPLICIT_CONTEXT
5827
5828 /* Implements the MY_CXT_INIT macro. The first time a module is loaded,
5829 the global PL_my_cxt_index is incremented, and that value is assigned to
5830 that module's static my_cxt_index (who's address is passed as an arg).
5831 Then, for each interpreter this function is called for, it makes sure a
5832 void* slot is available to hang the static data off, by allocating or
5833 extending the interpreter's PL_my_cxt_list array */
5834
5835 #ifndef PERL_GLOBAL_STRUCT_PRIVATE
5836 void *
5837 Perl_my_cxt_init(pTHX_ int *index, size_t size)
5838 {
5839     dVAR;
5840     void *p;
5841     PERL_ARGS_ASSERT_MY_CXT_INIT;
5842     if (*index == -1) {
5843         /* this module hasn't been allocated an index yet */
5844         MUTEX_LOCK(&PL_my_ctx_mutex);
5845         *index = PL_my_cxt_index++;
5846         MUTEX_UNLOCK(&PL_my_ctx_mutex);
5847     }
5848     
5849     /* make sure the array is big enough */
5850     if (PL_my_cxt_size <= *index) {
5851         if (PL_my_cxt_size) {
5852             while (PL_my_cxt_size <= *index)
5853                 PL_my_cxt_size *= 2;
5854             Renew(PL_my_cxt_list, PL_my_cxt_size, void *);
5855         }
5856         else {
5857             PL_my_cxt_size = 16;
5858             Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
5859         }
5860     }
5861     /* newSV() allocates one more than needed */
5862     p = (void*)SvPVX(newSV(size-1));
5863     PL_my_cxt_list[*index] = p;
5864     Zero(p, size, char);
5865     return p;
5866 }
5867
5868 #else /* #ifndef PERL_GLOBAL_STRUCT_PRIVATE */
5869
5870 int
5871 Perl_my_cxt_index(pTHX_ const char *my_cxt_key)
5872 {
5873     dVAR;
5874     int index;
5875
5876     PERL_ARGS_ASSERT_MY_CXT_INDEX;
5877
5878     for (index = 0; index < PL_my_cxt_index; index++) {
5879         const char *key = PL_my_cxt_keys[index];
5880         /* try direct pointer compare first - there are chances to success,
5881          * and it's much faster.
5882          */
5883         if ((key == my_cxt_key) || strEQ(key, my_cxt_key))
5884             return index;
5885     }
5886     return -1;
5887 }
5888
5889 void *
5890 Perl_my_cxt_init(pTHX_ const char *my_cxt_key, size_t size)
5891 {
5892     dVAR;
5893     void *p;
5894     int index;
5895
5896     PERL_ARGS_ASSERT_MY_CXT_INIT;
5897
5898     index = Perl_my_cxt_index(aTHX_ my_cxt_key);
5899     if (index == -1) {
5900         /* this module hasn't been allocated an index yet */
5901         MUTEX_LOCK(&PL_my_ctx_mutex);
5902         index = PL_my_cxt_index++;
5903         MUTEX_UNLOCK(&PL_my_ctx_mutex);
5904     }
5905
5906     /* make sure the array is big enough */
5907     if (PL_my_cxt_size <= index) {
5908         int old_size = PL_my_cxt_size;
5909         int i;
5910         if (PL_my_cxt_size) {
5911             while (PL_my_cxt_size <= index)
5912                 PL_my_cxt_size *= 2;
5913             Renew(PL_my_cxt_list, PL_my_cxt_size, void *);
5914             Renew(PL_my_cxt_keys, PL_my_cxt_size, const char *);
5915         }
5916         else {
5917             PL_my_cxt_size = 16;
5918             Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
5919             Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
5920         }
5921         for (i = old_size; i < PL_my_cxt_size; i++) {
5922             PL_my_cxt_keys[i] = 0;
5923             PL_my_cxt_list[i] = 0;
5924         }
5925     }
5926     PL_my_cxt_keys[index] = my_cxt_key;
5927     /* newSV() allocates one more than needed */
5928     p = (void*)SvPVX(newSV(size-1));
5929     PL_my_cxt_list[index] = p;
5930     Zero(p, size, char);
5931     return p;
5932 }
5933 #endif /* #ifndef PERL_GLOBAL_STRUCT_PRIVATE */
5934 #endif /* PERL_IMPLICIT_CONTEXT */
5935
5936 #ifndef HAS_STRLCAT
5937 Size_t
5938 Perl_my_strlcat(char *dst, const char *src, Size_t size)
5939 {
5940     Size_t used, length, copy;
5941
5942     used = strlen(dst);
5943     length = strlen(src);
5944     if (size > 0 && used < size - 1) {
5945         copy = (length >= size - used) ? size - used - 1 : length;
5946         memcpy(dst + used, src, copy);
5947         dst[used + copy] = '\0';
5948     }
5949     return used + length;
5950 }
5951 #endif
5952
5953 #ifndef HAS_STRLCPY
5954 Size_t
5955 Perl_my_strlcpy(char *dst, const char *src, Size_t size)
5956 {
5957     Size_t length, copy;
5958
5959     length = strlen(src);
5960     if (size > 0) {
5961         copy = (length >= size) ? size - 1 : length;
5962         memcpy(dst, src, copy);
5963         dst[copy] = '\0';
5964     }
5965     return length;
5966 }
5967 #endif
5968
5969 #if defined(_MSC_VER) && (_MSC_VER >= 1300) && (_MSC_VER < 1400) && (WINVER < 0x0500)
5970 /* VC7 or 7.1, building with pre-VC7 runtime libraries. */
5971 long _ftol( double ); /* Defined by VC6 C libs. */
5972 long _ftol2( double dblSource ) { return _ftol( dblSource ); }
5973 #endif
5974
5975 void
5976 Perl_get_db_sub(pTHX_ SV **svp, CV *cv)
5977 {
5978     dVAR;
5979     SV * const dbsv = GvSVn(PL_DBsub);
5980     /* We do not care about using sv to call CV;
5981      * it's for informational purposes only.
5982      */
5983
5984     PERL_ARGS_ASSERT_GET_DB_SUB;
5985
5986     save_item(dbsv);
5987     if (!PERLDB_SUB_NN) {
5988         GV * const gv = CvGV(cv);
5989
5990         if ( svp && ((CvFLAGS(cv) & (CVf_ANON | CVf_CLONED))
5991              || strEQ(GvNAME(gv), "END")
5992              || ((GvCV(gv) != cv) && /* Could be imported, and old sub redefined. */
5993                  !( (SvTYPE(*svp) == SVt_PVGV)
5994                     && (GvCV((const GV *)*svp) == cv) )))) {
5995             /* Use GV from the stack as a fallback. */
5996             /* GV is potentially non-unique, or contain different CV. */
5997             SV * const tmp = newRV(MUTABLE_SV(cv));
5998             sv_setsv(dbsv, tmp);
5999             SvREFCNT_dec(tmp);
6000         }
6001         else {
6002             gv_efullname3(dbsv, gv, NULL);
6003         }
6004     }
6005     else {
6006         const int type = SvTYPE(dbsv);
6007         if (type < SVt_PVIV && type != SVt_IV)
6008             sv_upgrade(dbsv, SVt_PVIV);
6009         (void)SvIOK_on(dbsv);
6010         SvIV_set(dbsv, PTR2IV(cv));     /* Do it the quickest way  */
6011     }
6012 }
6013
6014 int
6015 Perl_my_dirfd(pTHX_ DIR * dir) {
6016
6017     /* Most dirfd implementations have problems when passed NULL. */
6018     if(!dir)
6019         return -1;
6020 #ifdef HAS_DIRFD
6021     return dirfd(dir);
6022 #elif defined(HAS_DIR_DD_FD)
6023     return dir->dd_fd;
6024 #else
6025     Perl_die(aTHX_ PL_no_func, "dirfd");
6026    /* NOT REACHED */
6027     return 0;
6028 #endif 
6029 }
6030
6031 REGEXP *
6032 Perl_get_re_arg(pTHX_ SV *sv) {
6033     SV    *tmpsv;
6034
6035     if (sv) {
6036         if (SvMAGICAL(sv))
6037             mg_get(sv);
6038         if (SvROK(sv) &&
6039             (tmpsv = MUTABLE_SV(SvRV(sv))) &&            /* assign deliberate */
6040             SvTYPE(tmpsv) == SVt_REGEXP)
6041         {
6042             return (REGEXP*) tmpsv;
6043         }
6044     }
6045  
6046     return NULL;
6047 }
6048
6049 /*
6050  * Local variables:
6051  * c-indentation-style: bsd
6052  * c-basic-offset: 4
6053  * indent-tabs-mode: t
6054  * End:
6055  *
6056  * ex: set ts=8 sts=4 sw=4 noet:
6057  */