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