This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
remove leak in tr/ascii/utf8/
[perl5.git] / util.c
... / ...
CommitLineData
1/* util.c
2 *
3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 * 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
11/*
12 * 'Very useful, no doubt, that was to Saruman; yet it seems that he was
13 * not content.' --Gandalf to Pippin
14 *
15 * [p.598 of _The Lord of the Rings_, III/xi: "The Palantír"]
16 */
17
18/* This file contains assorted utility routines.
19 * Which is a polite way of saying any stuff that people couldn't think of
20 * a better place for. Amongst other things, it includes the warning and
21 * dieing stuff, plus wrappers for malloc code.
22 */
23
24#include "EXTERN.h"
25#define PERL_IN_UTIL_C
26#include "perl.h"
27#include "reentr.h"
28
29#if defined(USE_PERLIO)
30#include "perliol.h" /* For PerlIOUnix_refcnt */
31#endif
32
33#ifndef PERL_MICRO
34#include <signal.h>
35#ifndef SIG_ERR
36# define SIG_ERR ((Sighandler_t) -1)
37#endif
38#endif
39
40#include <math.h>
41#include <stdlib.h>
42
43#ifdef __Lynx__
44/* Missing protos on LynxOS */
45int putenv(char *);
46#endif
47
48#ifdef __amigaos__
49# include "amigaos4/amigaio.h"
50#endif
51
52#ifdef HAS_SELECT
53# ifdef I_SYS_SELECT
54# include <sys/select.h>
55# endif
56#endif
57
58#ifdef USE_C_BACKTRACE
59# ifdef I_BFD
60# define USE_BFD
61# ifdef PERL_DARWIN
62# undef USE_BFD /* BFD is useless in OS X. */
63# endif
64# ifdef USE_BFD
65# include <bfd.h>
66# endif
67# endif
68# ifdef I_DLFCN
69# include <dlfcn.h>
70# endif
71# ifdef I_EXECINFO
72# include <execinfo.h>
73# endif
74#endif
75
76#ifdef PERL_DEBUG_READONLY_COW
77# include <sys/mman.h>
78#endif
79
80#define FLUSH
81
82/* NOTE: Do not call the next three routines directly. Use the macros
83 * in handy.h, so that we can easily redefine everything to do tracking of
84 * allocated hunks back to the original New to track down any memory leaks.
85 * XXX This advice seems to be widely ignored :-( --AD August 1996.
86 */
87
88#if defined (DEBUGGING) || defined(PERL_IMPLICIT_SYS) || defined (PERL_TRACK_MEMPOOL)
89# define ALWAYS_NEED_THX
90#endif
91
92#if defined(PERL_TRACK_MEMPOOL) && defined(PERL_DEBUG_READONLY_COW)
93static void
94S_maybe_protect_rw(pTHX_ struct perl_memory_debug_header *header)
95{
96 if (header->readonly
97 && mprotect(header, header->size, PROT_READ|PROT_WRITE))
98 Perl_warn(aTHX_ "mprotect for COW string %p %lu failed with %d",
99 header, header->size, errno);
100}
101
102static void
103S_maybe_protect_ro(pTHX_ struct perl_memory_debug_header *header)
104{
105 if (header->readonly
106 && mprotect(header, header->size, PROT_READ))
107 Perl_warn(aTHX_ "mprotect RW for COW string %p %lu failed with %d",
108 header, header->size, errno);
109}
110# define maybe_protect_rw(foo) S_maybe_protect_rw(aTHX_ foo)
111# define maybe_protect_ro(foo) S_maybe_protect_ro(aTHX_ foo)
112#else
113# define maybe_protect_rw(foo) NOOP
114# define maybe_protect_ro(foo) NOOP
115#endif
116
117#if defined(PERL_TRACK_MEMPOOL) || defined(PERL_DEBUG_READONLY_COW)
118 /* Use memory_debug_header */
119# define USE_MDH
120# if (defined(PERL_POISON) && defined(PERL_TRACK_MEMPOOL)) \
121 || defined(PERL_DEBUG_READONLY_COW)
122# define MDH_HAS_SIZE
123# endif
124#endif
125
126/* paranoid version of system's malloc() */
127
128Malloc_t
129Perl_safesysmalloc(MEM_SIZE size)
130{
131#ifdef ALWAYS_NEED_THX
132 dTHX;
133#endif
134 Malloc_t ptr;
135 dSAVEDERRNO;
136
137#ifdef USE_MDH
138 if (size + PERL_MEMORY_DEBUG_HEADER_SIZE < size)
139 goto out_of_memory;
140 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
141#endif
142#ifdef DEBUGGING
143 if ((SSize_t)size < 0)
144 Perl_croak_nocontext("panic: malloc, size=%" UVuf, (UV) size);
145#endif
146 if (!size) size = 1; /* malloc(0) is NASTY on our system */
147 SAVE_ERRNO;
148#ifdef PERL_DEBUG_READONLY_COW
149 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
150 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
151 perror("mmap failed");
152 abort();
153 }
154#else
155 ptr = (Malloc_t)PerlMem_malloc(size?size:1);
156#endif
157 PERL_ALLOC_CHECK(ptr);
158 if (ptr != NULL) {
159#ifdef USE_MDH
160 struct perl_memory_debug_header *const header
161 = (struct perl_memory_debug_header *)ptr;
162#endif
163
164#ifdef PERL_POISON
165 PoisonNew(((char *)ptr), size, char);
166#endif
167
168#ifdef PERL_TRACK_MEMPOOL
169 header->interpreter = aTHX;
170 /* Link us into the list. */
171 header->prev = &PL_memory_debug_header;
172 header->next = PL_memory_debug_header.next;
173 PL_memory_debug_header.next = header;
174 maybe_protect_rw(header->next);
175 header->next->prev = header;
176 maybe_protect_ro(header->next);
177# ifdef PERL_DEBUG_READONLY_COW
178 header->readonly = 0;
179# endif
180#endif
181#ifdef MDH_HAS_SIZE
182 header->size = size;
183#endif
184 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
185 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
186
187 /* malloc() can modify errno() even on success, but since someone
188 writing perl code doesn't have any control over when perl calls
189 malloc() we need to hide that.
190 */
191 RESTORE_ERRNO;
192 }
193 else {
194#ifdef USE_MDH
195 out_of_memory:
196#endif
197 {
198#ifndef ALWAYS_NEED_THX
199 dTHX;
200#endif
201 if (PL_nomemok)
202 ptr = NULL;
203 else
204 croak_no_mem();
205 }
206 }
207 return ptr;
208}
209
210/* paranoid version of system's realloc() */
211
212Malloc_t
213Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
214{
215#ifdef ALWAYS_NEED_THX
216 dTHX;
217#endif
218 Malloc_t ptr;
219#ifdef PERL_DEBUG_READONLY_COW
220 const MEM_SIZE oldsize = where
221 ? ((struct perl_memory_debug_header *)((char *)where - PERL_MEMORY_DEBUG_HEADER_SIZE))->size
222 : 0;
223#endif
224
225 if (!size) {
226 safesysfree(where);
227 ptr = NULL;
228 }
229 else if (!where) {
230 ptr = safesysmalloc(size);
231 }
232 else {
233 dSAVE_ERRNO;
234#ifdef USE_MDH
235 where = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
236 if (size + PERL_MEMORY_DEBUG_HEADER_SIZE < size)
237 goto out_of_memory;
238 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
239 {
240 struct perl_memory_debug_header *const header
241 = (struct perl_memory_debug_header *)where;
242
243# ifdef PERL_TRACK_MEMPOOL
244 if (header->interpreter != aTHX) {
245 Perl_croak_nocontext("panic: realloc from wrong pool, %p!=%p",
246 header->interpreter, aTHX);
247 }
248 assert(header->next->prev == header);
249 assert(header->prev->next == header);
250# ifdef PERL_POISON
251 if (header->size > size) {
252 const MEM_SIZE freed_up = header->size - size;
253 char *start_of_freed = ((char *)where) + size;
254 PoisonFree(start_of_freed, freed_up, char);
255 }
256# endif
257# endif
258# ifdef MDH_HAS_SIZE
259 header->size = size;
260# endif
261 }
262#endif
263#ifdef DEBUGGING
264 if ((SSize_t)size < 0)
265 Perl_croak_nocontext("panic: realloc, size=%" UVuf, (UV)size);
266#endif
267#ifdef PERL_DEBUG_READONLY_COW
268 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
269 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
270 perror("mmap failed");
271 abort();
272 }
273 Copy(where,ptr,oldsize < size ? oldsize : size,char);
274 if (munmap(where, oldsize)) {
275 perror("munmap failed");
276 abort();
277 }
278#else
279 ptr = (Malloc_t)PerlMem_realloc(where,size);
280#endif
281 PERL_ALLOC_CHECK(ptr);
282
283 /* MUST do this fixup first, before doing ANYTHING else, as anything else
284 might allocate memory/free/move memory, and until we do the fixup, it
285 may well be chasing (and writing to) free memory. */
286 if (ptr != NULL) {
287#ifdef PERL_TRACK_MEMPOOL
288 struct perl_memory_debug_header *const header
289 = (struct perl_memory_debug_header *)ptr;
290
291# ifdef PERL_POISON
292 if (header->size < size) {
293 const MEM_SIZE fresh = size - header->size;
294 char *start_of_fresh = ((char *)ptr) + size;
295 PoisonNew(start_of_fresh, fresh, char);
296 }
297# endif
298
299 maybe_protect_rw(header->next);
300 header->next->prev = header;
301 maybe_protect_ro(header->next);
302 maybe_protect_rw(header->prev);
303 header->prev->next = header;
304 maybe_protect_ro(header->prev);
305#endif
306 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
307
308 /* realloc() can modify errno() even on success, but since someone
309 writing perl code doesn't have any control over when perl calls
310 realloc() we need to hide that.
311 */
312 RESTORE_ERRNO;
313 }
314
315 /* In particular, must do that fixup above before logging anything via
316 *printf(), as it can reallocate memory, which can cause SEGVs. */
317
318 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
319 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
320
321 if (ptr == NULL) {
322#ifdef USE_MDH
323 out_of_memory:
324#endif
325 {
326#ifndef ALWAYS_NEED_THX
327 dTHX;
328#endif
329 if (PL_nomemok)
330 ptr = NULL;
331 else
332 croak_no_mem();
333 }
334 }
335 }
336 return ptr;
337}
338
339/* safe version of system's free() */
340
341Free_t
342Perl_safesysfree(Malloc_t where)
343{
344#ifdef ALWAYS_NEED_THX
345 dTHX;
346#endif
347 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
348 if (where) {
349#ifdef USE_MDH
350 Malloc_t where_intrn = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
351 {
352 struct perl_memory_debug_header *const header
353 = (struct perl_memory_debug_header *)where_intrn;
354
355# ifdef MDH_HAS_SIZE
356 const MEM_SIZE size = header->size;
357# endif
358# ifdef PERL_TRACK_MEMPOOL
359 if (header->interpreter != aTHX) {
360 Perl_croak_nocontext("panic: free from wrong pool, %p!=%p",
361 header->interpreter, aTHX);
362 }
363 if (!header->prev) {
364 Perl_croak_nocontext("panic: duplicate free");
365 }
366 if (!(header->next))
367 Perl_croak_nocontext("panic: bad free, header->next==NULL");
368 if (header->next->prev != header || header->prev->next != header) {
369 Perl_croak_nocontext("panic: bad free, ->next->prev=%p, "
370 "header=%p, ->prev->next=%p",
371 header->next->prev, header,
372 header->prev->next);
373 }
374 /* Unlink us from the chain. */
375 maybe_protect_rw(header->next);
376 header->next->prev = header->prev;
377 maybe_protect_ro(header->next);
378 maybe_protect_rw(header->prev);
379 header->prev->next = header->next;
380 maybe_protect_ro(header->prev);
381 maybe_protect_rw(header);
382# ifdef PERL_POISON
383 PoisonNew(where_intrn, size, char);
384# endif
385 /* Trigger the duplicate free warning. */
386 header->next = NULL;
387# endif
388# ifdef PERL_DEBUG_READONLY_COW
389 if (munmap(where_intrn, size)) {
390 perror("munmap failed");
391 abort();
392 }
393# endif
394 }
395#else
396 Malloc_t where_intrn = where;
397#endif /* USE_MDH */
398#ifndef PERL_DEBUG_READONLY_COW
399 PerlMem_free(where_intrn);
400#endif
401 }
402}
403
404/* safe version of system's calloc() */
405
406Malloc_t
407Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
408{
409#ifdef ALWAYS_NEED_THX
410 dTHX;
411#endif
412 Malloc_t ptr;
413#if defined(USE_MDH) || defined(DEBUGGING)
414 MEM_SIZE total_size = 0;
415#endif
416
417 /* Even though calloc() for zero bytes is strange, be robust. */
418 if (size && (count <= MEM_SIZE_MAX / size)) {
419#if defined(USE_MDH) || defined(DEBUGGING)
420 total_size = size * count;
421#endif
422 }
423 else
424 croak_memory_wrap();
425#ifdef USE_MDH
426 if (PERL_MEMORY_DEBUG_HEADER_SIZE <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
427 total_size += PERL_MEMORY_DEBUG_HEADER_SIZE;
428 else
429 croak_memory_wrap();
430#endif
431#ifdef DEBUGGING
432 if ((SSize_t)size < 0 || (SSize_t)count < 0)
433 Perl_croak_nocontext("panic: calloc, size=%" UVuf ", count=%" UVuf,
434 (UV)size, (UV)count);
435#endif
436#ifdef PERL_DEBUG_READONLY_COW
437 if ((ptr = mmap(0, total_size ? total_size : 1, PROT_READ|PROT_WRITE,
438 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
439 perror("mmap failed");
440 abort();
441 }
442#elif defined(PERL_TRACK_MEMPOOL)
443 /* Have to use malloc() because we've added some space for our tracking
444 header. */
445 /* malloc(0) is non-portable. */
446 ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
447#else
448 /* Use calloc() because it might save a memset() if the memory is fresh
449 and clean from the OS. */
450 if (count && size)
451 ptr = (Malloc_t)PerlMem_calloc(count, size);
452 else /* calloc(0) is non-portable. */
453 ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
454#endif
455 PERL_ALLOC_CHECK(ptr);
456 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) calloc %zu x %zu = %zu bytes\n",PTR2UV(ptr),(long)PL_an++, count, size, total_size));
457 if (ptr != NULL) {
458#ifdef USE_MDH
459 {
460 struct perl_memory_debug_header *const header
461 = (struct perl_memory_debug_header *)ptr;
462
463# ifndef PERL_DEBUG_READONLY_COW
464 memset((void*)ptr, 0, total_size);
465# endif
466# ifdef PERL_TRACK_MEMPOOL
467 header->interpreter = aTHX;
468 /* Link us into the list. */
469 header->prev = &PL_memory_debug_header;
470 header->next = PL_memory_debug_header.next;
471 PL_memory_debug_header.next = header;
472 maybe_protect_rw(header->next);
473 header->next->prev = header;
474 maybe_protect_ro(header->next);
475# ifdef PERL_DEBUG_READONLY_COW
476 header->readonly = 0;
477# endif
478# endif
479# ifdef MDH_HAS_SIZE
480 header->size = total_size;
481# endif
482 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
483 }
484#endif
485 return ptr;
486 }
487 else {
488#ifndef ALWAYS_NEED_THX
489 dTHX;
490#endif
491 if (PL_nomemok)
492 return NULL;
493 croak_no_mem();
494 }
495}
496
497/* These must be defined when not using Perl's malloc for binary
498 * compatibility */
499
500#ifndef MYMALLOC
501
502Malloc_t Perl_malloc (MEM_SIZE nbytes)
503{
504#ifdef PERL_IMPLICIT_SYS
505 dTHX;
506#endif
507 return (Malloc_t)PerlMem_malloc(nbytes);
508}
509
510Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
511{
512#ifdef PERL_IMPLICIT_SYS
513 dTHX;
514#endif
515 return (Malloc_t)PerlMem_calloc(elements, size);
516}
517
518Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
519{
520#ifdef PERL_IMPLICIT_SYS
521 dTHX;
522#endif
523 return (Malloc_t)PerlMem_realloc(where, nbytes);
524}
525
526Free_t Perl_mfree (Malloc_t where)
527{
528#ifdef PERL_IMPLICIT_SYS
529 dTHX;
530#endif
531 PerlMem_free(where);
532}
533
534#endif
535
536/* copy a string up to some (non-backslashed) delimiter, if any.
537 * With allow_escape, converts \<delimiter> to <delimiter>, while leaves
538 * \<non-delimiter> as-is.
539 * Returns the position in the src string of the closing delimiter, if
540 * any, or returns fromend otherwise.
541 * This is the internal implementation for Perl_delimcpy and
542 * Perl_delimcpy_no_escape.
543 */
544
545static char *
546S_delimcpy_intern(char *to, const char *toend, const char *from,
547 const char *fromend, int delim, I32 *retlen,
548 const bool allow_escape)
549{
550 I32 tolen;
551
552 PERL_ARGS_ASSERT_DELIMCPY;
553
554 for (tolen = 0; from < fromend; from++, tolen++) {
555 if (allow_escape && *from == '\\' && from + 1 < fromend) {
556 if (from[1] != delim) {
557 if (to < toend)
558 *to++ = *from;
559 tolen++;
560 }
561 from++;
562 }
563 else if (*from == delim)
564 break;
565 if (to < toend)
566 *to++ = *from;
567 }
568 if (to < toend)
569 *to = '\0';
570 *retlen = tolen;
571 return (char *)from;
572}
573
574char *
575Perl_delimcpy(char *to, const char *toend, const char *from, const char *fromend, int delim, I32 *retlen)
576{
577 PERL_ARGS_ASSERT_DELIMCPY;
578
579 return S_delimcpy_intern(to, toend, from, fromend, delim, retlen, 1);
580}
581
582char *
583Perl_delimcpy_no_escape(char *to, const char *toend, const char *from,
584 const char *fromend, int delim, I32 *retlen)
585{
586 PERL_ARGS_ASSERT_DELIMCPY_NO_ESCAPE;
587
588 return S_delimcpy_intern(to, toend, from, fromend, delim, retlen, 0);
589}
590
591/*
592=head1 Miscellaneous Functions
593
594=for apidoc ninstr
595
596Find the first (leftmost) occurrence of a sequence of bytes within another
597sequence. This is the Perl version of C<strstr()>, extended to handle
598arbitrary sequences, potentially containing embedded C<NUL> characters (C<NUL>
599is what the initial C<n> in the function name stands for; some systems have an
600equivalent, C<memmem()>, but with a somewhat different API).
601
602Another way of thinking about this function is finding a needle in a haystack.
603C<big> points to the first byte in the haystack. C<big_end> points to one byte
604beyond the final byte in the haystack. C<little> points to the first byte in
605the needle. C<little_end> points to one byte beyond the final byte in the
606needle. All the parameters must be non-C<NULL>.
607
608The function returns C<NULL> if there is no occurrence of C<little> within
609C<big>. If C<little> is the empty string, C<big> is returned.
610
611Because this function operates at the byte level, and because of the inherent
612characteristics of UTF-8 (or UTF-EBCDIC), it will work properly if both the
613needle and the haystack are strings with the same UTF-8ness, but not if the
614UTF-8ness differs.
615
616=cut
617
618*/
619
620char *
621Perl_ninstr(const char *big, const char *bigend, const char *little, const char *lend)
622{
623 PERL_ARGS_ASSERT_NINSTR;
624
625#ifdef HAS_MEMMEM
626 return ninstr(big, bigend, little, lend);
627#else
628
629 if (little >= lend)
630 return (char*)big;
631 {
632 const char first = *little;
633 bigend -= lend - little++;
634 OUTER:
635 while (big <= bigend) {
636 if (*big++ == first) {
637 const char *s, *x;
638 for (x=big,s=little; s < lend; x++,s++) {
639 if (*s != *x)
640 goto OUTER;
641 }
642 return (char*)(big-1);
643 }
644 }
645 }
646 return NULL;
647
648#endif
649
650}
651
652/*
653=head1 Miscellaneous Functions
654
655=for apidoc rninstr
656
657Like C<L</ninstr>>, but instead finds the final (rightmost) occurrence of a
658sequence of bytes within another sequence, returning C<NULL> if there is no
659such occurrence.
660
661=cut
662
663*/
664
665char *
666Perl_rninstr(const char *big, const char *bigend, const char *little, const char *lend)
667{
668 const char *bigbeg;
669 const I32 first = *little;
670 const char * const littleend = lend;
671
672 PERL_ARGS_ASSERT_RNINSTR;
673
674 if (little >= littleend)
675 return (char*)bigend;
676 bigbeg = big;
677 big = bigend - (littleend - little++);
678 while (big >= bigbeg) {
679 const char *s, *x;
680 if (*big-- != first)
681 continue;
682 for (x=big+2,s=little; s < littleend; /**/ ) {
683 if (*s != *x)
684 break;
685 else {
686 x++;
687 s++;
688 }
689 }
690 if (s >= littleend)
691 return (char*)(big+1);
692 }
693 return NULL;
694}
695
696/* As a space optimization, we do not compile tables for strings of length
697 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
698 special-cased in fbm_instr().
699
700 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
701
702/*
703=head1 Miscellaneous Functions
704
705=for apidoc fbm_compile
706
707Analyzes the string in order to make fast searches on it using C<fbm_instr()>
708-- the Boyer-Moore algorithm.
709
710=cut
711*/
712
713void
714Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
715{
716 const U8 *s;
717 STRLEN i;
718 STRLEN len;
719 U32 frequency = 256;
720 MAGIC *mg;
721 PERL_DEB( STRLEN rarest = 0 );
722
723 PERL_ARGS_ASSERT_FBM_COMPILE;
724
725 if (isGV_with_GP(sv) || SvROK(sv))
726 return;
727
728 if (SvVALID(sv))
729 return;
730
731 if (flags & FBMcf_TAIL) {
732 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
733 sv_catpvs(sv, "\n"); /* Taken into account in fbm_instr() */
734 if (mg && mg->mg_len >= 0)
735 mg->mg_len++;
736 }
737 if (!SvPOK(sv) || SvNIOKp(sv))
738 s = (U8*)SvPV_force_mutable(sv, len);
739 else s = (U8 *)SvPV_mutable(sv, len);
740 if (len == 0) /* TAIL might be on a zero-length string. */
741 return;
742 SvUPGRADE(sv, SVt_PVMG);
743 SvIOK_off(sv);
744 SvNOK_off(sv);
745
746 /* add PERL_MAGIC_bm magic holding the FBM lookup table */
747
748 assert(!mg_find(sv, PERL_MAGIC_bm));
749 mg = sv_magicext(sv, NULL, PERL_MAGIC_bm, &PL_vtbl_bm, NULL, 0);
750 assert(mg);
751
752 if (len > 2) {
753 /* Shorter strings are special-cased in Perl_fbm_instr(), and don't use
754 the BM table. */
755 const U8 mlen = (len>255) ? 255 : (U8)len;
756 const unsigned char *const sb = s + len - mlen; /* first char (maybe) */
757 U8 *table;
758
759 Newx(table, 256, U8);
760 memset((void*)table, mlen, 256);
761 mg->mg_ptr = (char *)table;
762 mg->mg_len = 256;
763
764 s += len - 1; /* last char */
765 i = 0;
766 while (s >= sb) {
767 if (table[*s] == mlen)
768 table[*s] = (U8)i;
769 s--, i++;
770 }
771 }
772
773 s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
774 for (i = 0; i < len; i++) {
775 if (PL_freq[s[i]] < frequency) {
776 PERL_DEB( rarest = i );
777 frequency = PL_freq[s[i]];
778 }
779 }
780 BmUSEFUL(sv) = 100; /* Initial value */
781 ((XPVNV*)SvANY(sv))->xnv_u.xnv_bm_tail = cBOOL(flags & FBMcf_TAIL);
782 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %" UVuf "\n",
783 s[rarest], (UV)rarest));
784}
785
786
787/*
788=for apidoc fbm_instr
789
790Returns the location of the SV in the string delimited by C<big> and
791C<bigend> (C<bigend>) is the char following the last char).
792It returns C<NULL> if the string can't be found. The C<sv>
793does not have to be C<fbm_compiled>, but the search will not be as fast
794then.
795
796=cut
797
798If SvTAIL(littlestr) is true, a fake "\n" was appended to to the string
799during FBM compilation due to FBMcf_TAIL in flags. It indicates that
800the littlestr must be anchored to the end of bigstr (or to any \n if
801FBMrf_MULTILINE).
802
803E.g. The regex compiler would compile /abc/ to a littlestr of "abc",
804while /abc$/ compiles to "abc\n" with SvTAIL() true.
805
806A littlestr of "abc", !SvTAIL matches as /abc/;
807a littlestr of "ab\n", SvTAIL matches as:
808 without FBMrf_MULTILINE: /ab\n?\z/
809 with FBMrf_MULTILINE: /ab\n/ || /ab\z/;
810
811(According to Ilya from 1999; I don't know if this is still true, DAPM 2015):
812 "If SvTAIL is actually due to \Z or \z, this gives false positives
813 if multiline".
814*/
815
816
817char *
818Perl_fbm_instr(pTHX_ unsigned char *big, unsigned char *bigend, SV *littlestr, U32 flags)
819{
820 unsigned char *s;
821 STRLEN l;
822 const unsigned char *little = (const unsigned char *)SvPV_const(littlestr,l);
823 STRLEN littlelen = l;
824 const I32 multiline = flags & FBMrf_MULTILINE;
825 bool valid = SvVALID(littlestr);
826 bool tail = valid ? cBOOL(SvTAIL(littlestr)) : FALSE;
827
828 PERL_ARGS_ASSERT_FBM_INSTR;
829
830 assert(bigend >= big);
831
832 if ((STRLEN)(bigend - big) < littlelen) {
833 if ( tail
834 && ((STRLEN)(bigend - big) == littlelen - 1)
835 && (littlelen == 1
836 || (*big == *little &&
837 memEQ((char *)big, (char *)little, littlelen - 1))))
838 return (char*)big;
839 return NULL;
840 }
841
842 switch (littlelen) { /* Special cases for 0, 1 and 2 */
843 case 0:
844 return (char*)big; /* Cannot be SvTAIL! */
845
846 case 1:
847 if (tail && !multiline) /* Anchor only! */
848 /* [-1] is safe because we know that bigend != big. */
849 return (char *) (bigend - (bigend[-1] == '\n'));
850
851 s = (unsigned char *)memchr((void*)big, *little, bigend-big);
852 if (s)
853 return (char *)s;
854 if (tail)
855 return (char *) bigend;
856 return NULL;
857
858 case 2:
859 if (tail && !multiline) {
860 /* a littlestr with SvTAIL must be of the form "X\n" (where X
861 * is a single char). It is anchored, and can only match
862 * "....X\n" or "....X" */
863 if (bigend[-2] == *little && bigend[-1] == '\n')
864 return (char*)bigend - 2;
865 if (bigend[-1] == *little)
866 return (char*)bigend - 1;
867 return NULL;
868 }
869
870 {
871 /* memchr() is likely to be very fast, possibly using whatever
872 * hardware support is available, such as checking a whole
873 * cache line in one instruction.
874 * So for a 2 char pattern, calling memchr() is likely to be
875 * faster than running FBM, or rolling our own. The previous
876 * version of this code was roll-your-own which typically
877 * only needed to read every 2nd char, which was good back in
878 * the day, but no longer.
879 */
880 unsigned char c1 = little[0];
881 unsigned char c2 = little[1];
882
883 /* *** for all this case, bigend points to the last char,
884 * not the trailing \0: this makes the conditions slightly
885 * simpler */
886 bigend--;
887 s = big;
888 if (c1 != c2) {
889 while (s < bigend) {
890 /* do a quick test for c1 before calling memchr();
891 * this avoids the expensive fn call overhead when
892 * there are lots of c1's */
893 if (LIKELY(*s != c1)) {
894 s++;
895 s = (unsigned char *)memchr((void*)s, c1, bigend - s);
896 if (!s)
897 break;
898 }
899 if (s[1] == c2)
900 return (char*)s;
901
902 /* failed; try searching for c2 this time; that way
903 * we don't go pathologically slow when the string
904 * consists mostly of c1's or vice versa.
905 */
906 s += 2;
907 if (s > bigend)
908 break;
909 s = (unsigned char *)memchr((void*)s, c2, bigend - s + 1);
910 if (!s)
911 break;
912 if (s[-1] == c1)
913 return (char*)s - 1;
914 }
915 }
916 else {
917 /* c1, c2 the same */
918 while (s < bigend) {
919 if (s[0] == c1) {
920 got_1char:
921 if (s[1] == c1)
922 return (char*)s;
923 s += 2;
924 }
925 else {
926 s++;
927 s = (unsigned char *)memchr((void*)s, c1, bigend - s);
928 if (!s || s >= bigend)
929 break;
930 goto got_1char;
931 }
932 }
933 }
934
935 /* failed to find 2 chars; try anchored match at end without
936 * the \n */
937 if (tail && bigend[0] == little[0])
938 return (char *)bigend;
939 return NULL;
940 }
941
942 default:
943 break; /* Only lengths 0 1 and 2 have special-case code. */
944 }
945
946 if (tail && !multiline) { /* tail anchored? */
947 s = bigend - littlelen;
948 if (s >= big && bigend[-1] == '\n' && *s == *little
949 /* Automatically of length > 2 */
950 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
951 {
952 return (char*)s; /* how sweet it is */
953 }
954 if (s[1] == *little
955 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
956 {
957 return (char*)s + 1; /* how sweet it is */
958 }
959 return NULL;
960 }
961
962 if (!valid) {
963 /* not compiled; use Perl_ninstr() instead */
964 char * const b = ninstr((char*)big,(char*)bigend,
965 (char*)little, (char*)little + littlelen);
966
967 assert(!tail); /* valid => FBM; tail only set on SvVALID SVs */
968 return b;
969 }
970
971 /* Do actual FBM. */
972 if (littlelen > (STRLEN)(bigend - big))
973 return NULL;
974
975 {
976 const MAGIC *const mg = mg_find(littlestr, PERL_MAGIC_bm);
977 const unsigned char *oldlittle;
978
979 assert(mg);
980
981 --littlelen; /* Last char found by table lookup */
982
983 s = big + littlelen;
984 little += littlelen; /* last char */
985 oldlittle = little;
986 if (s < bigend) {
987 const unsigned char * const table = (const unsigned char *) mg->mg_ptr;
988 const unsigned char lastc = *little;
989 I32 tmp;
990
991 top2:
992 if ((tmp = table[*s])) {
993 /* *s != lastc; earliest position it could match now is
994 * tmp slots further on */
995 if ((s += tmp) >= bigend)
996 goto check_end;
997 if (LIKELY(*s != lastc)) {
998 s++;
999 s = (unsigned char *)memchr((void*)s, lastc, bigend - s);
1000 if (!s) {
1001 s = bigend;
1002 goto check_end;
1003 }
1004 goto top2;
1005 }
1006 }
1007
1008
1009 /* hand-rolled strncmp(): less expensive than calling the
1010 * real function (maybe???) */
1011 {
1012 unsigned char * const olds = s;
1013
1014 tmp = littlelen;
1015
1016 while (tmp--) {
1017 if (*--s == *--little)
1018 continue;
1019 s = olds + 1; /* here we pay the price for failure */
1020 little = oldlittle;
1021 if (s < bigend) /* fake up continue to outer loop */
1022 goto top2;
1023 goto check_end;
1024 }
1025 return (char *)s;
1026 }
1027 }
1028 check_end:
1029 if ( s == bigend
1030 && tail
1031 && memEQ((char *)(bigend - littlelen),
1032 (char *)(oldlittle - littlelen), littlelen) )
1033 return (char*)bigend - littlelen;
1034 return NULL;
1035 }
1036}
1037
1038/* copy a string to a safe spot */
1039
1040/*
1041=head1 Memory Management
1042
1043=for apidoc savepv
1044
1045Perl's version of C<strdup()>. Returns a pointer to a newly allocated
1046string which is a duplicate of C<pv>. The size of the string is
1047determined by C<strlen()>, which means it may not contain embedded C<NUL>
1048characters and must have a trailing C<NUL>. The memory allocated for the new
1049string can be freed with the C<Safefree()> function.
1050
1051On some platforms, Windows for example, all allocated memory owned by a thread
1052is deallocated when that thread ends. So if you need that not to happen, you
1053need to use the shared memory functions, such as C<L</savesharedpv>>.
1054
1055=cut
1056*/
1057
1058char *
1059Perl_savepv(pTHX_ const char *pv)
1060{
1061 PERL_UNUSED_CONTEXT;
1062 if (!pv)
1063 return NULL;
1064 else {
1065 char *newaddr;
1066 const STRLEN pvlen = strlen(pv)+1;
1067 Newx(newaddr, pvlen, char);
1068 return (char*)memcpy(newaddr, pv, pvlen);
1069 }
1070}
1071
1072/* same thing but with a known length */
1073
1074/*
1075=for apidoc savepvn
1076
1077Perl's version of what C<strndup()> would be if it existed. Returns a
1078pointer to a newly allocated string which is a duplicate of the first
1079C<len> bytes from C<pv>, plus a trailing
1080C<NUL> byte. The memory allocated for
1081the new string can be freed with the C<Safefree()> function.
1082
1083On some platforms, Windows for example, all allocated memory owned by a thread
1084is deallocated when that thread ends. So if you need that not to happen, you
1085need to use the shared memory functions, such as C<L</savesharedpvn>>.
1086
1087=cut
1088*/
1089
1090char *
1091Perl_savepvn(pTHX_ const char *pv, I32 len)
1092{
1093 char *newaddr;
1094 PERL_UNUSED_CONTEXT;
1095
1096 assert(len >= 0);
1097
1098 Newx(newaddr,len+1,char);
1099 /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
1100 if (pv) {
1101 /* might not be null terminated */
1102 newaddr[len] = '\0';
1103 return (char *) CopyD(pv,newaddr,len,char);
1104 }
1105 else {
1106 return (char *) ZeroD(newaddr,len+1,char);
1107 }
1108}
1109
1110/*
1111=for apidoc savesharedpv
1112
1113A version of C<savepv()> which allocates the duplicate string in memory
1114which is shared between threads.
1115
1116=cut
1117*/
1118char *
1119Perl_savesharedpv(pTHX_ const char *pv)
1120{
1121 char *newaddr;
1122 STRLEN pvlen;
1123
1124 PERL_UNUSED_CONTEXT;
1125
1126 if (!pv)
1127 return NULL;
1128
1129 pvlen = strlen(pv)+1;
1130 newaddr = (char*)PerlMemShared_malloc(pvlen);
1131 if (!newaddr) {
1132 croak_no_mem();
1133 }
1134 return (char*)memcpy(newaddr, pv, pvlen);
1135}
1136
1137/*
1138=for apidoc savesharedpvn
1139
1140A version of C<savepvn()> which allocates the duplicate string in memory
1141which is shared between threads. (With the specific difference that a C<NULL>
1142pointer is not acceptable)
1143
1144=cut
1145*/
1146char *
1147Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
1148{
1149 char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
1150
1151 PERL_UNUSED_CONTEXT;
1152 /* PERL_ARGS_ASSERT_SAVESHAREDPVN; */
1153
1154 if (!newaddr) {
1155 croak_no_mem();
1156 }
1157 newaddr[len] = '\0';
1158 return (char*)memcpy(newaddr, pv, len);
1159}
1160
1161/*
1162=for apidoc savesvpv
1163
1164A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
1165the passed in SV using C<SvPV()>
1166
1167On some platforms, Windows for example, all allocated memory owned by a thread
1168is deallocated when that thread ends. So if you need that not to happen, you
1169need to use the shared memory functions, such as C<L</savesharedsvpv>>.
1170
1171=cut
1172*/
1173
1174char *
1175Perl_savesvpv(pTHX_ SV *sv)
1176{
1177 STRLEN len;
1178 const char * const pv = SvPV_const(sv, len);
1179 char *newaddr;
1180
1181 PERL_ARGS_ASSERT_SAVESVPV;
1182
1183 ++len;
1184 Newx(newaddr,len,char);
1185 return (char *) CopyD(pv,newaddr,len,char);
1186}
1187
1188/*
1189=for apidoc savesharedsvpv
1190
1191A version of C<savesharedpv()> which allocates the duplicate string in
1192memory which is shared between threads.
1193
1194=cut
1195*/
1196
1197char *
1198Perl_savesharedsvpv(pTHX_ SV *sv)
1199{
1200 STRLEN len;
1201 const char * const pv = SvPV_const(sv, len);
1202
1203 PERL_ARGS_ASSERT_SAVESHAREDSVPV;
1204
1205 return savesharedpvn(pv, len);
1206}
1207
1208/* the SV for Perl_form() and mess() is not kept in an arena */
1209
1210STATIC SV *
1211S_mess_alloc(pTHX)
1212{
1213 SV *sv;
1214 XPVMG *any;
1215
1216 if (PL_phase != PERL_PHASE_DESTRUCT)
1217 return newSVpvs_flags("", SVs_TEMP);
1218
1219 if (PL_mess_sv)
1220 return PL_mess_sv;
1221
1222 /* Create as PVMG now, to avoid any upgrading later */
1223 Newx(sv, 1, SV);
1224 Newxz(any, 1, XPVMG);
1225 SvFLAGS(sv) = SVt_PVMG;
1226 SvANY(sv) = (void*)any;
1227 SvPV_set(sv, NULL);
1228 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1229 PL_mess_sv = sv;
1230 return sv;
1231}
1232
1233#if defined(PERL_IMPLICIT_CONTEXT)
1234char *
1235Perl_form_nocontext(const char* pat, ...)
1236{
1237 dTHX;
1238 char *retval;
1239 va_list args;
1240 PERL_ARGS_ASSERT_FORM_NOCONTEXT;
1241 va_start(args, pat);
1242 retval = vform(pat, &args);
1243 va_end(args);
1244 return retval;
1245}
1246#endif /* PERL_IMPLICIT_CONTEXT */
1247
1248/*
1249=head1 Miscellaneous Functions
1250=for apidoc form
1251
1252Takes a sprintf-style format pattern and conventional
1253(non-SV) arguments and returns the formatted string.
1254
1255 (char *) Perl_form(pTHX_ const char* pat, ...)
1256
1257can be used any place a string (char *) is required:
1258
1259 char * s = Perl_form("%d.%d",major,minor);
1260
1261Uses a single private buffer so if you want to format several strings you
1262must explicitly copy the earlier strings away (and free the copies when you
1263are done).
1264
1265=cut
1266*/
1267
1268char *
1269Perl_form(pTHX_ const char* pat, ...)
1270{
1271 char *retval;
1272 va_list args;
1273 PERL_ARGS_ASSERT_FORM;
1274 va_start(args, pat);
1275 retval = vform(pat, &args);
1276 va_end(args);
1277 return retval;
1278}
1279
1280char *
1281Perl_vform(pTHX_ const char *pat, va_list *args)
1282{
1283 SV * const sv = mess_alloc();
1284 PERL_ARGS_ASSERT_VFORM;
1285 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1286 return SvPVX(sv);
1287}
1288
1289/*
1290=for apidoc mess
1291
1292Take a sprintf-style format pattern and argument list. These are used to
1293generate a string message. If the message does not end with a newline,
1294then it will be extended with some indication of the current location
1295in the code, as described for L</mess_sv>.
1296
1297Normally, the resulting message is returned in a new mortal SV.
1298During global destruction a single SV may be shared between uses of
1299this function.
1300
1301=cut
1302*/
1303
1304#if defined(PERL_IMPLICIT_CONTEXT)
1305SV *
1306Perl_mess_nocontext(const char *pat, ...)
1307{
1308 dTHX;
1309 SV *retval;
1310 va_list args;
1311 PERL_ARGS_ASSERT_MESS_NOCONTEXT;
1312 va_start(args, pat);
1313 retval = vmess(pat, &args);
1314 va_end(args);
1315 return retval;
1316}
1317#endif /* PERL_IMPLICIT_CONTEXT */
1318
1319SV *
1320Perl_mess(pTHX_ const char *pat, ...)
1321{
1322 SV *retval;
1323 va_list args;
1324 PERL_ARGS_ASSERT_MESS;
1325 va_start(args, pat);
1326 retval = vmess(pat, &args);
1327 va_end(args);
1328 return retval;
1329}
1330
1331const COP*
1332Perl_closest_cop(pTHX_ const COP *cop, const OP *o, const OP *curop,
1333 bool opnext)
1334{
1335 /* Look for curop starting from o. cop is the last COP we've seen. */
1336 /* opnext means that curop is actually the ->op_next of the op we are
1337 seeking. */
1338
1339 PERL_ARGS_ASSERT_CLOSEST_COP;
1340
1341 if (!o || !curop || (
1342 opnext ? o->op_next == curop && o->op_type != OP_SCOPE : o == curop
1343 ))
1344 return cop;
1345
1346 if (o->op_flags & OPf_KIDS) {
1347 const OP *kid;
1348 for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) {
1349 const COP *new_cop;
1350
1351 /* If the OP_NEXTSTATE has been optimised away we can still use it
1352 * the get the file and line number. */
1353
1354 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
1355 cop = (const COP *)kid;
1356
1357 /* Keep searching, and return when we've found something. */
1358
1359 new_cop = closest_cop(cop, kid, curop, opnext);
1360 if (new_cop)
1361 return new_cop;
1362 }
1363 }
1364
1365 /* Nothing found. */
1366
1367 return NULL;
1368}
1369
1370/*
1371=for apidoc mess_sv
1372
1373Expands a message, intended for the user, to include an indication of
1374the current location in the code, if the message does not already appear
1375to be complete.
1376
1377C<basemsg> is the initial message or object. If it is a reference, it
1378will be used as-is and will be the result of this function. Otherwise it
1379is used as a string, and if it already ends with a newline, it is taken
1380to be complete, and the result of this function will be the same string.
1381If the message does not end with a newline, then a segment such as C<at
1382foo.pl line 37> will be appended, and possibly other clauses indicating
1383the current state of execution. The resulting message will end with a
1384dot and a newline.
1385
1386Normally, the resulting message is returned in a new mortal SV.
1387During global destruction a single SV may be shared between uses of this
1388function. If C<consume> is true, then the function is permitted (but not
1389required) to modify and return C<basemsg> instead of allocating a new SV.
1390
1391=cut
1392*/
1393
1394SV *
1395Perl_mess_sv(pTHX_ SV *basemsg, bool consume)
1396{
1397 SV *sv;
1398
1399#if defined(USE_C_BACKTRACE) && defined(USE_C_BACKTRACE_ON_ERROR)
1400 {
1401 char *ws;
1402 UV wi;
1403 /* The PERL_C_BACKTRACE_ON_WARN must be an integer of one or more. */
1404 if ((ws = PerlEnv_getenv("PERL_C_BACKTRACE_ON_ERROR"))
1405 && grok_atoUV(ws, &wi, NULL)
1406 && wi <= PERL_INT_MAX
1407 ) {
1408 Perl_dump_c_backtrace(aTHX_ Perl_debug_log, (int)wi, 1);
1409 }
1410 }
1411#endif
1412
1413 PERL_ARGS_ASSERT_MESS_SV;
1414
1415 if (SvROK(basemsg)) {
1416 if (consume) {
1417 sv = basemsg;
1418 }
1419 else {
1420 sv = mess_alloc();
1421 sv_setsv(sv, basemsg);
1422 }
1423 return sv;
1424 }
1425
1426 if (SvPOK(basemsg) && consume) {
1427 sv = basemsg;
1428 }
1429 else {
1430 sv = mess_alloc();
1431 sv_copypv(sv, basemsg);
1432 }
1433
1434 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1435 /*
1436 * Try and find the file and line for PL_op. This will usually be
1437 * PL_curcop, but it might be a cop that has been optimised away. We
1438 * can try to find such a cop by searching through the optree starting
1439 * from the sibling of PL_curcop.
1440 */
1441
1442 if (PL_curcop) {
1443 const COP *cop =
1444 closest_cop(PL_curcop, OpSIBLING(PL_curcop), PL_op, FALSE);
1445 if (!cop)
1446 cop = PL_curcop;
1447
1448 if (CopLINE(cop))
1449 Perl_sv_catpvf(aTHX_ sv, " at %s line %" IVdf,
1450 OutCopFILE(cop), (IV)CopLINE(cop));
1451 }
1452
1453 /* Seems that GvIO() can be untrustworthy during global destruction. */
1454 if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1455 && IoLINES(GvIOp(PL_last_in_gv)))
1456 {
1457 STRLEN l;
1458 const bool line_mode = (RsSIMPLE(PL_rs) &&
1459 *SvPV_const(PL_rs,l) == '\n' && l == 1);
1460 Perl_sv_catpvf(aTHX_ sv, ", <%" SVf "> %s %" IVdf,
1461 SVfARG(PL_last_in_gv == PL_argvgv
1462 ? &PL_sv_no
1463 : sv_2mortal(newSVhek(GvNAME_HEK(PL_last_in_gv)))),
1464 line_mode ? "line" : "chunk",
1465 (IV)IoLINES(GvIOp(PL_last_in_gv)));
1466 }
1467 if (PL_phase == PERL_PHASE_DESTRUCT)
1468 sv_catpvs(sv, " during global destruction");
1469 sv_catpvs(sv, ".\n");
1470 }
1471 return sv;
1472}
1473
1474/*
1475=for apidoc vmess
1476
1477C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1478argument list, respectively. These are used to generate a string message. If
1479the
1480message does not end with a newline, then it will be extended with
1481some indication of the current location in the code, as described for
1482L</mess_sv>.
1483
1484Normally, the resulting message is returned in a new mortal SV.
1485During global destruction a single SV may be shared between uses of
1486this function.
1487
1488=cut
1489*/
1490
1491SV *
1492Perl_vmess(pTHX_ const char *pat, va_list *args)
1493{
1494 SV * const sv = mess_alloc();
1495
1496 PERL_ARGS_ASSERT_VMESS;
1497
1498 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1499 return mess_sv(sv, 1);
1500}
1501
1502void
1503Perl_write_to_stderr(pTHX_ SV* msv)
1504{
1505 IO *io;
1506 MAGIC *mg;
1507
1508 PERL_ARGS_ASSERT_WRITE_TO_STDERR;
1509
1510 if (PL_stderrgv && SvREFCNT(PL_stderrgv)
1511 && (io = GvIO(PL_stderrgv))
1512 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
1513 Perl_magic_methcall(aTHX_ MUTABLE_SV(io), mg, SV_CONST(PRINT),
1514 G_SCALAR | G_DISCARD | G_WRITING_TO_STDERR, 1, msv);
1515 else {
1516 PerlIO * const serr = Perl_error_log;
1517
1518 do_print(msv, serr);
1519 (void)PerlIO_flush(serr);
1520 }
1521}
1522
1523/*
1524=head1 Warning and Dieing
1525*/
1526
1527/* Common code used in dieing and warning */
1528
1529STATIC SV *
1530S_with_queued_errors(pTHX_ SV *ex)
1531{
1532 PERL_ARGS_ASSERT_WITH_QUEUED_ERRORS;
1533 if (PL_errors && SvCUR(PL_errors) && !SvROK(ex)) {
1534 sv_catsv(PL_errors, ex);
1535 ex = sv_mortalcopy(PL_errors);
1536 SvCUR_set(PL_errors, 0);
1537 }
1538 return ex;
1539}
1540
1541STATIC bool
1542S_invoke_exception_hook(pTHX_ SV *ex, bool warn)
1543{
1544 dVAR;
1545 HV *stash;
1546 GV *gv;
1547 CV *cv;
1548 SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1549 /* sv_2cv might call Perl_croak() or Perl_warner() */
1550 SV * const oldhook = *hook;
1551
1552 if (!oldhook || oldhook == PERL_WARNHOOK_FATAL)
1553 return FALSE;
1554
1555 ENTER;
1556 SAVESPTR(*hook);
1557 *hook = NULL;
1558 cv = sv_2cv(oldhook, &stash, &gv, 0);
1559 LEAVE;
1560 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1561 dSP;
1562 SV *exarg;
1563
1564 ENTER;
1565 save_re_context();
1566 if (warn) {
1567 SAVESPTR(*hook);
1568 *hook = NULL;
1569 }
1570 exarg = newSVsv(ex);
1571 SvREADONLY_on(exarg);
1572 SAVEFREESV(exarg);
1573
1574 PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
1575 PUSHMARK(SP);
1576 XPUSHs(exarg);
1577 PUTBACK;
1578 call_sv(MUTABLE_SV(cv), G_DISCARD);
1579 POPSTACK;
1580 LEAVE;
1581 return TRUE;
1582 }
1583 return FALSE;
1584}
1585
1586/*
1587=for apidoc die_sv
1588
1589Behaves the same as L</croak_sv>, except for the return type.
1590It should be used only where the C<OP *> return type is required.
1591The function never actually returns.
1592
1593=cut
1594*/
1595
1596/* silence __declspec(noreturn) warnings */
1597MSVC_DIAG_IGNORE(4646 4645)
1598OP *
1599Perl_die_sv(pTHX_ SV *baseex)
1600{
1601 PERL_ARGS_ASSERT_DIE_SV;
1602 croak_sv(baseex);
1603 /* NOTREACHED */
1604 NORETURN_FUNCTION_END;
1605}
1606MSVC_DIAG_RESTORE
1607
1608/*
1609=for apidoc die
1610
1611Behaves the same as L</croak>, except for the return type.
1612It should be used only where the C<OP *> return type is required.
1613The function never actually returns.
1614
1615=cut
1616*/
1617
1618#if defined(PERL_IMPLICIT_CONTEXT)
1619
1620/* silence __declspec(noreturn) warnings */
1621MSVC_DIAG_IGNORE(4646 4645)
1622OP *
1623Perl_die_nocontext(const char* pat, ...)
1624{
1625 dTHX;
1626 va_list args;
1627 va_start(args, pat);
1628 vcroak(pat, &args);
1629 NOT_REACHED; /* NOTREACHED */
1630 va_end(args);
1631 NORETURN_FUNCTION_END;
1632}
1633MSVC_DIAG_RESTORE
1634
1635#endif /* PERL_IMPLICIT_CONTEXT */
1636
1637/* silence __declspec(noreturn) warnings */
1638MSVC_DIAG_IGNORE(4646 4645)
1639OP *
1640Perl_die(pTHX_ const char* pat, ...)
1641{
1642 va_list args;
1643 va_start(args, pat);
1644 vcroak(pat, &args);
1645 NOT_REACHED; /* NOTREACHED */
1646 va_end(args);
1647 NORETURN_FUNCTION_END;
1648}
1649MSVC_DIAG_RESTORE
1650
1651/*
1652=for apidoc croak_sv
1653
1654This is an XS interface to Perl's C<die> function.
1655
1656C<baseex> is the error message or object. If it is a reference, it
1657will be used as-is. Otherwise it is used as a string, and if it does
1658not end with a newline then it will be extended with some indication of
1659the current location in the code, as described for L</mess_sv>.
1660
1661The error message or object will be used as an exception, by default
1662returning control to the nearest enclosing C<eval>, but subject to
1663modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak_sv>
1664function never returns normally.
1665
1666To die with a simple string message, the L</croak> function may be
1667more convenient.
1668
1669=cut
1670*/
1671
1672void
1673Perl_croak_sv(pTHX_ SV *baseex)
1674{
1675 SV *ex = with_queued_errors(mess_sv(baseex, 0));
1676 PERL_ARGS_ASSERT_CROAK_SV;
1677 invoke_exception_hook(ex, FALSE);
1678 die_unwind(ex);
1679}
1680
1681/*
1682=for apidoc vcroak
1683
1684This is an XS interface to Perl's C<die> function.
1685
1686C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1687argument list. These are used to generate a string message. If the
1688message does not end with a newline, then it will be extended with
1689some indication of the current location in the code, as described for
1690L</mess_sv>.
1691
1692The error message will be used as an exception, by default
1693returning control to the nearest enclosing C<eval>, but subject to
1694modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1695function never returns normally.
1696
1697For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1698(C<$@>) will be used as an error message or object instead of building an
1699error message from arguments. If you want to throw a non-string object,
1700or build an error message in an SV yourself, it is preferable to use
1701the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1702
1703=cut
1704*/
1705
1706void
1707Perl_vcroak(pTHX_ const char* pat, va_list *args)
1708{
1709 SV *ex = with_queued_errors(pat ? vmess(pat, args) : mess_sv(ERRSV, 0));
1710 invoke_exception_hook(ex, FALSE);
1711 die_unwind(ex);
1712}
1713
1714/*
1715=for apidoc croak
1716
1717This is an XS interface to Perl's C<die> function.
1718
1719Take a sprintf-style format pattern and argument list. These are used to
1720generate a string message. If the message does not end with a newline,
1721then it will be extended with some indication of the current location
1722in the code, as described for L</mess_sv>.
1723
1724The error message will be used as an exception, by default
1725returning control to the nearest enclosing C<eval>, but subject to
1726modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1727function never returns normally.
1728
1729For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1730(C<$@>) will be used as an error message or object instead of building an
1731error message from arguments. If you want to throw a non-string object,
1732or build an error message in an SV yourself, it is preferable to use
1733the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1734
1735=cut
1736*/
1737
1738#if defined(PERL_IMPLICIT_CONTEXT)
1739void
1740Perl_croak_nocontext(const char *pat, ...)
1741{
1742 dTHX;
1743 va_list args;
1744 va_start(args, pat);
1745 vcroak(pat, &args);
1746 NOT_REACHED; /* NOTREACHED */
1747 va_end(args);
1748}
1749#endif /* PERL_IMPLICIT_CONTEXT */
1750
1751void
1752Perl_croak(pTHX_ const char *pat, ...)
1753{
1754 va_list args;
1755 va_start(args, pat);
1756 vcroak(pat, &args);
1757 NOT_REACHED; /* NOTREACHED */
1758 va_end(args);
1759}
1760
1761/*
1762=for apidoc croak_no_modify
1763
1764Exactly equivalent to C<Perl_croak(aTHX_ "%s", PL_no_modify)>, but generates
1765terser object code than using C<Perl_croak>. Less code used on exception code
1766paths reduces CPU cache pressure.
1767
1768=cut
1769*/
1770
1771void
1772Perl_croak_no_modify(void)
1773{
1774 Perl_croak_nocontext( "%s", PL_no_modify);
1775}
1776
1777/* does not return, used in util.c perlio.c and win32.c
1778 This is typically called when malloc returns NULL.
1779*/
1780void
1781Perl_croak_no_mem(void)
1782{
1783 dTHX;
1784
1785 int fd = PerlIO_fileno(Perl_error_log);
1786 if (fd < 0)
1787 SETERRNO(EBADF,RMS_IFI);
1788 else {
1789 /* Can't use PerlIO to write as it allocates memory */
1790 PERL_UNUSED_RESULT(PerlLIO_write(fd, PL_no_mem, sizeof(PL_no_mem)-1));
1791 }
1792 my_exit(1);
1793}
1794
1795/* does not return, used only in POPSTACK */
1796void
1797Perl_croak_popstack(void)
1798{
1799 dTHX;
1800 PerlIO_printf(Perl_error_log, "panic: POPSTACK\n");
1801 my_exit(1);
1802}
1803
1804/*
1805=for apidoc warn_sv
1806
1807This is an XS interface to Perl's C<warn> function.
1808
1809C<baseex> is the error message or object. If it is a reference, it
1810will be used as-is. Otherwise it is used as a string, and if it does
1811not end with a newline then it will be extended with some indication of
1812the current location in the code, as described for L</mess_sv>.
1813
1814The error message or object will by default be written to standard error,
1815but this is subject to modification by a C<$SIG{__WARN__}> handler.
1816
1817To warn with a simple string message, the L</warn> function may be
1818more convenient.
1819
1820=cut
1821*/
1822
1823void
1824Perl_warn_sv(pTHX_ SV *baseex)
1825{
1826 SV *ex = mess_sv(baseex, 0);
1827 PERL_ARGS_ASSERT_WARN_SV;
1828 if (!invoke_exception_hook(ex, TRUE))
1829 write_to_stderr(ex);
1830}
1831
1832/*
1833=for apidoc vwarn
1834
1835This is an XS interface to Perl's C<warn> function.
1836
1837C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1838argument list. These are used to generate a string message. If the
1839message does not end with a newline, then it will be extended with
1840some indication of the current location in the code, as described for
1841L</mess_sv>.
1842
1843The error message or object will by default be written to standard error,
1844but this is subject to modification by a C<$SIG{__WARN__}> handler.
1845
1846Unlike with L</vcroak>, C<pat> is not permitted to be null.
1847
1848=cut
1849*/
1850
1851void
1852Perl_vwarn(pTHX_ const char* pat, va_list *args)
1853{
1854 SV *ex = vmess(pat, args);
1855 PERL_ARGS_ASSERT_VWARN;
1856 if (!invoke_exception_hook(ex, TRUE))
1857 write_to_stderr(ex);
1858}
1859
1860/*
1861=for apidoc warn
1862
1863This is an XS interface to Perl's C<warn> function.
1864
1865Take a sprintf-style format pattern and argument list. These are used to
1866generate a string message. If the message does not end with a newline,
1867then it will be extended with some indication of the current location
1868in the code, as described for L</mess_sv>.
1869
1870The error message or object will by default be written to standard error,
1871but this is subject to modification by a C<$SIG{__WARN__}> handler.
1872
1873Unlike with L</croak>, C<pat> is not permitted to be null.
1874
1875=cut
1876*/
1877
1878#if defined(PERL_IMPLICIT_CONTEXT)
1879void
1880Perl_warn_nocontext(const char *pat, ...)
1881{
1882 dTHX;
1883 va_list args;
1884 PERL_ARGS_ASSERT_WARN_NOCONTEXT;
1885 va_start(args, pat);
1886 vwarn(pat, &args);
1887 va_end(args);
1888}
1889#endif /* PERL_IMPLICIT_CONTEXT */
1890
1891void
1892Perl_warn(pTHX_ const char *pat, ...)
1893{
1894 va_list args;
1895 PERL_ARGS_ASSERT_WARN;
1896 va_start(args, pat);
1897 vwarn(pat, &args);
1898 va_end(args);
1899}
1900
1901#if defined(PERL_IMPLICIT_CONTEXT)
1902void
1903Perl_warner_nocontext(U32 err, const char *pat, ...)
1904{
1905 dTHX;
1906 va_list args;
1907 PERL_ARGS_ASSERT_WARNER_NOCONTEXT;
1908 va_start(args, pat);
1909 vwarner(err, pat, &args);
1910 va_end(args);
1911}
1912#endif /* PERL_IMPLICIT_CONTEXT */
1913
1914void
1915Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...)
1916{
1917 PERL_ARGS_ASSERT_CK_WARNER_D;
1918
1919 if (Perl_ckwarn_d(aTHX_ err)) {
1920 va_list args;
1921 va_start(args, pat);
1922 vwarner(err, pat, &args);
1923 va_end(args);
1924 }
1925}
1926
1927void
1928Perl_ck_warner(pTHX_ U32 err, const char* pat, ...)
1929{
1930 PERL_ARGS_ASSERT_CK_WARNER;
1931
1932 if (Perl_ckwarn(aTHX_ err)) {
1933 va_list args;
1934 va_start(args, pat);
1935 vwarner(err, pat, &args);
1936 va_end(args);
1937 }
1938}
1939
1940void
1941Perl_warner(pTHX_ U32 err, const char* pat,...)
1942{
1943 va_list args;
1944 PERL_ARGS_ASSERT_WARNER;
1945 va_start(args, pat);
1946 vwarner(err, pat, &args);
1947 va_end(args);
1948}
1949
1950void
1951Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1952{
1953 dVAR;
1954 PERL_ARGS_ASSERT_VWARNER;
1955 if (
1956 (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) &&
1957 !(PL_in_eval & EVAL_KEEPERR)
1958 ) {
1959 SV * const msv = vmess(pat, args);
1960
1961 if (PL_parser && PL_parser->error_count) {
1962 qerror(msv);
1963 }
1964 else {
1965 invoke_exception_hook(msv, FALSE);
1966 die_unwind(msv);
1967 }
1968 }
1969 else {
1970 Perl_vwarn(aTHX_ pat, args);
1971 }
1972}
1973
1974/* implements the ckWARN? macros */
1975
1976bool
1977Perl_ckwarn(pTHX_ U32 w)
1978{
1979 /* If lexical warnings have not been set, use $^W. */
1980 if (isLEXWARN_off)
1981 return PL_dowarn & G_WARN_ON;
1982
1983 return ckwarn_common(w);
1984}
1985
1986/* implements the ckWARN?_d macro */
1987
1988bool
1989Perl_ckwarn_d(pTHX_ U32 w)
1990{
1991 /* If lexical warnings have not been set then default classes warn. */
1992 if (isLEXWARN_off)
1993 return TRUE;
1994
1995 return ckwarn_common(w);
1996}
1997
1998static bool
1999S_ckwarn_common(pTHX_ U32 w)
2000{
2001 if (PL_curcop->cop_warnings == pWARN_ALL)
2002 return TRUE;
2003
2004 if (PL_curcop->cop_warnings == pWARN_NONE)
2005 return FALSE;
2006
2007 /* Check the assumption that at least the first slot is non-zero. */
2008 assert(unpackWARN1(w));
2009
2010 /* Check the assumption that it is valid to stop as soon as a zero slot is
2011 seen. */
2012 if (!unpackWARN2(w)) {
2013 assert(!unpackWARN3(w));
2014 assert(!unpackWARN4(w));
2015 } else if (!unpackWARN3(w)) {
2016 assert(!unpackWARN4(w));
2017 }
2018
2019 /* Right, dealt with all the special cases, which are implemented as non-
2020 pointers, so there is a pointer to a real warnings mask. */
2021 do {
2022 if (isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)))
2023 return TRUE;
2024 } while (w >>= WARNshift);
2025
2026 return FALSE;
2027}
2028
2029/* Set buffer=NULL to get a new one. */
2030STRLEN *
2031Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
2032 STRLEN size) {
2033 const MEM_SIZE len_wanted =
2034 sizeof(STRLEN) + (size > WARNsize ? size : WARNsize);
2035 PERL_UNUSED_CONTEXT;
2036 PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD;
2037
2038 buffer = (STRLEN*)
2039 (specialWARN(buffer) ?
2040 PerlMemShared_malloc(len_wanted) :
2041 PerlMemShared_realloc(buffer, len_wanted));
2042 buffer[0] = size;
2043 Copy(bits, (buffer + 1), size, char);
2044 if (size < WARNsize)
2045 Zero((char *)(buffer + 1) + size, WARNsize - size, char);
2046 return buffer;
2047}
2048
2049/* since we've already done strlen() for both nam and val
2050 * we can use that info to make things faster than
2051 * sprintf(s, "%s=%s", nam, val)
2052 */
2053#define my_setenv_format(s, nam, nlen, val, vlen) \
2054 Copy(nam, s, nlen, char); \
2055 *(s+nlen) = '='; \
2056 Copy(val, s+(nlen+1), vlen, char); \
2057 *(s+(nlen+1+vlen)) = '\0'
2058
2059
2060
2061#ifdef USE_ENVIRON_ARRAY
2062/* NB: VMS' my_setenv() is in vms.c */
2063
2064/* Configure doesn't test for HAS_SETENV yet, so decide based on platform.
2065 * For Solaris, setenv() and unsetenv() were introduced in Solaris 9, so
2066 * testing for HAS UNSETENV is sufficient.
2067 */
2068# if defined(__CYGWIN__)|| defined(__SYMBIAN32__) || defined(__riscos__) || (defined(__sun) && defined(HAS_UNSETENV)) || defined(PERL_DARWIN)
2069# define MY_HAS_SETENV
2070# endif
2071
2072/* small wrapper for use by Perl_my_setenv that mallocs, or reallocs if
2073 * 'current' is non-null, with up to three sizes that are added together.
2074 * It handles integer overflow.
2075 */
2076# ifndef MY_HAS_SETENV
2077static char *
2078S_env_alloc(void *current, Size_t l1, Size_t l2, Size_t l3, Size_t size)
2079{
2080 void *p;
2081 Size_t sl, l = l1 + l2;
2082
2083 if (l < l2)
2084 goto panic;
2085 l += l3;
2086 if (l < l3)
2087 goto panic;
2088 sl = l * size;
2089 if (sl < l)
2090 goto panic;
2091
2092 p = current
2093 ? safesysrealloc(current, sl)
2094 : safesysmalloc(sl);
2095 if (p)
2096 return (char*)p;
2097
2098 panic:
2099 croak_memory_wrap();
2100}
2101# endif
2102
2103
2104# if !defined(WIN32) && !defined(NETWARE)
2105
2106/*
2107=for apidoc my_setenv
2108
2109A wrapper for the C library L<setenv(3)>. Don't use the latter, as the perl
2110version has desirable safeguards
2111
2112=cut
2113*/
2114
2115void
2116Perl_my_setenv(pTHX_ const char *nam, const char *val)
2117{
2118 dVAR;
2119# ifdef __amigaos4__
2120 amigaos4_obtain_environ(__FUNCTION__);
2121# endif
2122
2123# ifdef USE_ITHREADS
2124 /* only parent thread can modify process environment */
2125 if (PL_curinterp == aTHX)
2126# endif
2127 {
2128
2129# ifndef PERL_USE_SAFE_PUTENV
2130 if (!PL_use_safe_putenv) {
2131 /* most putenv()s leak, so we manipulate environ directly */
2132 UV i;
2133 Size_t vlen, nlen = strlen(nam);
2134
2135 /* where does it go? */
2136 for (i = 0; environ[i]; i++) {
2137 if (strnEQ(environ[i], nam, nlen) && environ[i][nlen] == '=')
2138 break;
2139 }
2140
2141 if (environ == PL_origenviron) { /* need we copy environment? */
2142 UV j, max;
2143 char **tmpenv;
2144
2145 max = i;
2146 while (environ[max])
2147 max++;
2148
2149 /* XXX shouldn't that be max+1 rather than max+2 ??? - DAPM */
2150 tmpenv = (char**)S_env_alloc(NULL, max, 2, 0, sizeof(char*));
2151
2152 for (j=0; j<max; j++) { /* copy environment */
2153 const Size_t len = strlen(environ[j]);
2154 tmpenv[j] = S_env_alloc(NULL, len, 1, 0, 1);
2155 Copy(environ[j], tmpenv[j], len+1, char);
2156 }
2157
2158 tmpenv[max] = NULL;
2159 environ = tmpenv; /* tell exec where it is now */
2160 }
2161
2162 if (!val) {
2163 safesysfree(environ[i]);
2164 while (environ[i]) {
2165 environ[i] = environ[i+1];
2166 i++;
2167 }
2168# ifdef __amigaos4__
2169 goto my_setenv_out;
2170# else
2171 return;
2172# endif
2173 }
2174
2175 if (!environ[i]) { /* does not exist yet */
2176 environ = (char**)S_env_alloc(environ, i, 2, 0, sizeof(char*));
2177 environ[i+1] = NULL; /* make sure it's null terminated */
2178 }
2179 else
2180 safesysfree(environ[i]);
2181
2182 vlen = strlen(val);
2183
2184 environ[i] = S_env_alloc(NULL, nlen, vlen, 2, 1);
2185 /* all that work just for this */
2186 my_setenv_format(environ[i], nam, nlen, val, vlen);
2187 }
2188 else {
2189
2190# endif /* !PERL_USE_SAFE_PUTENV */
2191
2192# ifdef MY_HAS_SETENV
2193# if defined(HAS_UNSETENV)
2194 if (val == NULL) {
2195 (void)unsetenv(nam);
2196 } else {
2197 (void)setenv(nam, val, 1);
2198 }
2199# else /* ! HAS_UNSETENV */
2200 (void)setenv(nam, val, 1);
2201# endif /* HAS_UNSETENV */
2202
2203# elif defined(HAS_UNSETENV)
2204
2205 if (val == NULL) {
2206 if (environ) /* old glibc can crash with null environ */
2207 (void)unsetenv(nam);
2208 } else {
2209 const Size_t nlen = strlen(nam);
2210 const Size_t vlen = strlen(val);
2211 char * const new_env = S_env_alloc(NULL, nlen, vlen, 2, 1);
2212 my_setenv_format(new_env, nam, nlen, val, vlen);
2213 (void)putenv(new_env);
2214 }
2215
2216# else /* ! HAS_UNSETENV */
2217
2218 char *new_env;
2219 const Size_t nlen = strlen(nam);
2220 Size_t vlen;
2221 if (!val) {
2222 val = "";
2223 }
2224 vlen = strlen(val);
2225 new_env = S_env_alloc(NULL, nlen, vlen, 2, 1);
2226 /* all that work just for this */
2227 my_setenv_format(new_env, nam, nlen, val, vlen);
2228 (void)putenv(new_env);
2229
2230# endif /* MY_HAS_SETENV */
2231
2232# ifndef PERL_USE_SAFE_PUTENV
2233 }
2234# endif
2235 }
2236
2237# ifdef __amigaos4__
2238my_setenv_out:
2239 amigaos4_release_environ(__FUNCTION__);
2240# endif
2241}
2242
2243# else /* WIN32 || NETWARE */
2244
2245void
2246Perl_my_setenv(pTHX_ const char *nam, const char *val)
2247{
2248 dVAR;
2249 char *envstr;
2250 const Size_t nlen = strlen(nam);
2251 Size_t vlen;
2252
2253 if (!val) {
2254 val = "";
2255 }
2256 vlen = strlen(val);
2257 envstr = S_env_alloc(NULL, nlen, vlen, 2, 1);
2258 my_setenv_format(envstr, nam, nlen, val, vlen);
2259 (void)PerlEnv_putenv(envstr);
2260 Safefree(envstr);
2261}
2262
2263# endif /* WIN32 || NETWARE */
2264
2265#endif /* USE_ENVIRON_ARRAY */
2266
2267
2268
2269
2270#ifdef UNLINK_ALL_VERSIONS
2271I32
2272Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
2273{
2274 I32 retries = 0;
2275
2276 PERL_ARGS_ASSERT_UNLNK;
2277
2278 while (PerlLIO_unlink(f) >= 0)
2279 retries++;
2280 return retries ? 0 : -1;
2281}
2282#endif
2283
2284PerlIO *
2285Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
2286{
2287#if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(OS2) && !defined(VMS) && !defined(NETWARE) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2288 int p[2];
2289 I32 This, that;
2290 Pid_t pid;
2291 SV *sv;
2292 I32 did_pipes = 0;
2293 int pp[2];
2294
2295 PERL_ARGS_ASSERT_MY_POPEN_LIST;
2296
2297 PERL_FLUSHALL_FOR_CHILD;
2298 This = (*mode == 'w');
2299 that = !This;
2300 if (TAINTING_get) {
2301 taint_env();
2302 taint_proper("Insecure %s%s", "EXEC");
2303 }
2304 if (PerlProc_pipe_cloexec(p) < 0)
2305 return NULL;
2306 /* Try for another pipe pair for error return */
2307 if (PerlProc_pipe_cloexec(pp) >= 0)
2308 did_pipes = 1;
2309 while ((pid = PerlProc_fork()) < 0) {
2310 if (errno != EAGAIN) {
2311 PerlLIO_close(p[This]);
2312 PerlLIO_close(p[that]);
2313 if (did_pipes) {
2314 PerlLIO_close(pp[0]);
2315 PerlLIO_close(pp[1]);
2316 }
2317 return NULL;
2318 }
2319 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2320 sleep(5);
2321 }
2322 if (pid == 0) {
2323 /* Child */
2324#undef THIS
2325#undef THAT
2326#define THIS that
2327#define THAT This
2328 /* Close parent's end of error status pipe (if any) */
2329 if (did_pipes)
2330 PerlLIO_close(pp[0]);
2331 /* Now dup our end of _the_ pipe to right position */
2332 if (p[THIS] != (*mode == 'r')) {
2333 PerlLIO_dup2(p[THIS], *mode == 'r');
2334 PerlLIO_close(p[THIS]);
2335 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2336 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2337 }
2338 else {
2339 setfd_cloexec_or_inhexec_by_sysfdness(p[THIS]);
2340 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
2341 }
2342#if !defined(HAS_FCNTL) || !defined(F_SETFD)
2343 /* No automatic close - do it by hand */
2344# ifndef NOFILE
2345# define NOFILE 20
2346# endif
2347 {
2348 int fd;
2349
2350 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
2351 if (fd != pp[1])
2352 PerlLIO_close(fd);
2353 }
2354 }
2355#endif
2356 do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
2357 PerlProc__exit(1);
2358#undef THIS
2359#undef THAT
2360 }
2361 /* Parent */
2362 if (did_pipes)
2363 PerlLIO_close(pp[1]);
2364 /* Keep the lower of the two fd numbers */
2365 if (p[that] < p[This]) {
2366 PerlLIO_dup2_cloexec(p[This], p[that]);
2367 PerlLIO_close(p[This]);
2368 p[This] = p[that];
2369 }
2370 else
2371 PerlLIO_close(p[that]); /* close child's end of pipe */
2372
2373 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2374 SvUPGRADE(sv,SVt_IV);
2375 SvIV_set(sv, pid);
2376 PL_forkprocess = pid;
2377 /* If we managed to get status pipe check for exec fail */
2378 if (did_pipes && pid > 0) {
2379 int errkid;
2380 unsigned n = 0;
2381
2382 while (n < sizeof(int)) {
2383 const SSize_t n1 = PerlLIO_read(pp[0],
2384 (void*)(((char*)&errkid)+n),
2385 (sizeof(int)) - n);
2386 if (n1 <= 0)
2387 break;
2388 n += n1;
2389 }
2390 PerlLIO_close(pp[0]);
2391 did_pipes = 0;
2392 if (n) { /* Error */
2393 int pid2, status;
2394 PerlLIO_close(p[This]);
2395 if (n != sizeof(int))
2396 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", n);
2397 do {
2398 pid2 = wait4pid(pid, &status, 0);
2399 } while (pid2 == -1 && errno == EINTR);
2400 errno = errkid; /* Propagate errno from kid */
2401 return NULL;
2402 }
2403 }
2404 if (did_pipes)
2405 PerlLIO_close(pp[0]);
2406 return PerlIO_fdopen(p[This], mode);
2407#else
2408# if defined(OS2) /* Same, without fork()ing and all extra overhead... */
2409 return my_syspopen4(aTHX_ NULL, mode, n, args);
2410# elif defined(WIN32)
2411 return win32_popenlist(mode, n, args);
2412# else
2413 Perl_croak(aTHX_ "List form of piped open not implemented");
2414 return (PerlIO *) NULL;
2415# endif
2416#endif
2417}
2418
2419 /* VMS' my_popen() is in VMS.c, same with OS/2 and AmigaOS 4. */
2420#if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2421PerlIO *
2422Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2423{
2424 int p[2];
2425 I32 This, that;
2426 Pid_t pid;
2427 SV *sv;
2428 const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
2429 I32 did_pipes = 0;
2430 int pp[2];
2431
2432 PERL_ARGS_ASSERT_MY_POPEN;
2433
2434 PERL_FLUSHALL_FOR_CHILD;
2435#ifdef OS2
2436 if (doexec) {
2437 return my_syspopen(aTHX_ cmd,mode);
2438 }
2439#endif
2440 This = (*mode == 'w');
2441 that = !This;
2442 if (doexec && TAINTING_get) {
2443 taint_env();
2444 taint_proper("Insecure %s%s", "EXEC");
2445 }
2446 if (PerlProc_pipe_cloexec(p) < 0)
2447 return NULL;
2448 if (doexec && PerlProc_pipe_cloexec(pp) >= 0)
2449 did_pipes = 1;
2450 while ((pid = PerlProc_fork()) < 0) {
2451 if (errno != EAGAIN) {
2452 PerlLIO_close(p[This]);
2453 PerlLIO_close(p[that]);
2454 if (did_pipes) {
2455 PerlLIO_close(pp[0]);
2456 PerlLIO_close(pp[1]);
2457 }
2458 if (!doexec)
2459 Perl_croak(aTHX_ "Can't fork: %s", Strerror(errno));
2460 return NULL;
2461 }
2462 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
2463 sleep(5);
2464 }
2465 if (pid == 0) {
2466
2467#undef THIS
2468#undef THAT
2469#define THIS that
2470#define THAT This
2471 if (did_pipes)
2472 PerlLIO_close(pp[0]);
2473 if (p[THIS] != (*mode == 'r')) {
2474 PerlLIO_dup2(p[THIS], *mode == 'r');
2475 PerlLIO_close(p[THIS]);
2476 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2477 PerlLIO_close(p[THAT]);
2478 }
2479 else {
2480 setfd_cloexec_or_inhexec_by_sysfdness(p[THIS]);
2481 PerlLIO_close(p[THAT]);
2482 }
2483#ifndef OS2
2484 if (doexec) {
2485#if !defined(HAS_FCNTL) || !defined(F_SETFD)
2486#ifndef NOFILE
2487#define NOFILE 20
2488#endif
2489 {
2490 int fd;
2491
2492 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2493 if (fd != pp[1])
2494 PerlLIO_close(fd);
2495 }
2496#endif
2497 /* may or may not use the shell */
2498 do_exec3(cmd, pp[1], did_pipes);
2499 PerlProc__exit(1);
2500 }
2501#endif /* defined OS2 */
2502
2503#ifdef PERLIO_USING_CRLF
2504 /* Since we circumvent IO layers when we manipulate low-level
2505 filedescriptors directly, need to manually switch to the
2506 default, binary, low-level mode; see PerlIOBuf_open(). */
2507 PerlLIO_setmode((*mode == 'r'), O_BINARY);
2508#endif
2509 PL_forkprocess = 0;
2510#ifdef PERL_USES_PL_PIDSTATUS
2511 hv_clear(PL_pidstatus); /* we have no children */
2512#endif
2513 return NULL;
2514#undef THIS
2515#undef THAT
2516 }
2517 if (did_pipes)
2518 PerlLIO_close(pp[1]);
2519 if (p[that] < p[This]) {
2520 PerlLIO_dup2_cloexec(p[This], p[that]);
2521 PerlLIO_close(p[This]);
2522 p[This] = p[that];
2523 }
2524 else
2525 PerlLIO_close(p[that]);
2526
2527 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2528 SvUPGRADE(sv,SVt_IV);
2529 SvIV_set(sv, pid);
2530 PL_forkprocess = pid;
2531 if (did_pipes && pid > 0) {
2532 int errkid;
2533 unsigned n = 0;
2534
2535 while (n < sizeof(int)) {
2536 const SSize_t n1 = PerlLIO_read(pp[0],
2537 (void*)(((char*)&errkid)+n),
2538 (sizeof(int)) - n);
2539 if (n1 <= 0)
2540 break;
2541 n += n1;
2542 }
2543 PerlLIO_close(pp[0]);
2544 did_pipes = 0;
2545 if (n) { /* Error */
2546 int pid2, status;
2547 PerlLIO_close(p[This]);
2548 if (n != sizeof(int))
2549 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", n);
2550 do {
2551 pid2 = wait4pid(pid, &status, 0);
2552 } while (pid2 == -1 && errno == EINTR);
2553 errno = errkid; /* Propagate errno from kid */
2554 return NULL;
2555 }
2556 }
2557 if (did_pipes)
2558 PerlLIO_close(pp[0]);
2559 return PerlIO_fdopen(p[This], mode);
2560}
2561#elif defined(DJGPP)
2562FILE *djgpp_popen();
2563PerlIO *
2564Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2565{
2566 PERL_FLUSHALL_FOR_CHILD;
2567 /* Call system's popen() to get a FILE *, then import it.
2568 used 0 for 2nd parameter to PerlIO_importFILE;
2569 apparently not used
2570 */
2571 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2572}
2573#elif defined(__LIBCATAMOUNT__)
2574PerlIO *
2575Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2576{
2577 return NULL;
2578}
2579
2580#endif /* !DOSISH */
2581
2582/* this is called in parent before the fork() */
2583void
2584Perl_atfork_lock(void)
2585#if defined(USE_ITHREADS)
2586# ifdef USE_PERLIO
2587 PERL_TSA_ACQUIRE(PL_perlio_mutex)
2588# endif
2589# ifdef MYMALLOC
2590 PERL_TSA_ACQUIRE(PL_malloc_mutex)
2591# endif
2592 PERL_TSA_ACQUIRE(PL_op_mutex)
2593#endif
2594{
2595#if defined(USE_ITHREADS)
2596 dVAR;
2597 /* locks must be held in locking order (if any) */
2598# ifdef USE_PERLIO
2599 MUTEX_LOCK(&PL_perlio_mutex);
2600# endif
2601# ifdef MYMALLOC
2602 MUTEX_LOCK(&PL_malloc_mutex);
2603# endif
2604 OP_REFCNT_LOCK;
2605#endif
2606}
2607
2608/* this is called in both parent and child after the fork() */
2609void
2610Perl_atfork_unlock(void)
2611#if defined(USE_ITHREADS)
2612# ifdef USE_PERLIO
2613 PERL_TSA_RELEASE(PL_perlio_mutex)
2614# endif
2615# ifdef MYMALLOC
2616 PERL_TSA_RELEASE(PL_malloc_mutex)
2617# endif
2618 PERL_TSA_RELEASE(PL_op_mutex)
2619#endif
2620{
2621#if defined(USE_ITHREADS)
2622 dVAR;
2623 /* locks must be released in same order as in atfork_lock() */
2624# ifdef USE_PERLIO
2625 MUTEX_UNLOCK(&PL_perlio_mutex);
2626# endif
2627# ifdef MYMALLOC
2628 MUTEX_UNLOCK(&PL_malloc_mutex);
2629# endif
2630 OP_REFCNT_UNLOCK;
2631#endif
2632}
2633
2634Pid_t
2635Perl_my_fork(void)
2636{
2637#if defined(HAS_FORK)
2638 Pid_t pid;
2639#if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
2640 atfork_lock();
2641 pid = fork();
2642 atfork_unlock();
2643#else
2644 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2645 * handlers elsewhere in the code */
2646 pid = fork();
2647#endif
2648 return pid;
2649#elif defined(__amigaos4__)
2650 return amigaos_fork();
2651#else
2652 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2653 Perl_croak_nocontext("fork() not available");
2654 return 0;
2655#endif /* HAS_FORK */
2656}
2657
2658#ifndef HAS_DUP2
2659int
2660dup2(int oldfd, int newfd)
2661{
2662#if defined(HAS_FCNTL) && defined(F_DUPFD)
2663 if (oldfd == newfd)
2664 return oldfd;
2665 PerlLIO_close(newfd);
2666 return fcntl(oldfd, F_DUPFD, newfd);
2667#else
2668#define DUP2_MAX_FDS 256
2669 int fdtmp[DUP2_MAX_FDS];
2670 I32 fdx = 0;
2671 int fd;
2672
2673 if (oldfd == newfd)
2674 return oldfd;
2675 PerlLIO_close(newfd);
2676 /* good enough for low fd's... */
2677 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2678 if (fdx >= DUP2_MAX_FDS) {
2679 PerlLIO_close(fd);
2680 fd = -1;
2681 break;
2682 }
2683 fdtmp[fdx++] = fd;
2684 }
2685 while (fdx > 0)
2686 PerlLIO_close(fdtmp[--fdx]);
2687 return fd;
2688#endif
2689}
2690#endif
2691
2692#ifndef PERL_MICRO
2693#ifdef HAS_SIGACTION
2694
2695/*
2696=for apidoc rsignal
2697
2698A wrapper for the C library L<signal(2)>. Don't use the latter, as the Perl
2699version knows things that interact with the rest of the perl interpreter.
2700
2701=cut
2702*/
2703
2704Sighandler_t
2705Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2706{
2707 struct sigaction act, oact;
2708
2709#ifdef USE_ITHREADS
2710 dVAR;
2711 /* only "parent" interpreter can diddle signals */
2712 if (PL_curinterp != aTHX)
2713 return (Sighandler_t) SIG_ERR;
2714#endif
2715
2716 act.sa_handler = (void(*)(int))handler;
2717 sigemptyset(&act.sa_mask);
2718 act.sa_flags = 0;
2719#ifdef SA_RESTART
2720 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2721 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2722#endif
2723#if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2724 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2725 act.sa_flags |= SA_NOCLDWAIT;
2726#endif
2727 if (sigaction(signo, &act, &oact) == -1)
2728 return (Sighandler_t) SIG_ERR;
2729 else
2730 return (Sighandler_t) oact.sa_handler;
2731}
2732
2733Sighandler_t
2734Perl_rsignal_state(pTHX_ int signo)
2735{
2736 struct sigaction oact;
2737 PERL_UNUSED_CONTEXT;
2738
2739 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2740 return (Sighandler_t) SIG_ERR;
2741 else
2742 return (Sighandler_t) oact.sa_handler;
2743}
2744
2745int
2746Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2747{
2748#ifdef USE_ITHREADS
2749 dVAR;
2750#endif
2751 struct sigaction act;
2752
2753 PERL_ARGS_ASSERT_RSIGNAL_SAVE;
2754
2755#ifdef USE_ITHREADS
2756 /* only "parent" interpreter can diddle signals */
2757 if (PL_curinterp != aTHX)
2758 return -1;
2759#endif
2760
2761 act.sa_handler = (void(*)(int))handler;
2762 sigemptyset(&act.sa_mask);
2763 act.sa_flags = 0;
2764#ifdef SA_RESTART
2765 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2766 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2767#endif
2768#if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
2769 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
2770 act.sa_flags |= SA_NOCLDWAIT;
2771#endif
2772 return sigaction(signo, &act, save);
2773}
2774
2775int
2776Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2777{
2778#ifdef USE_ITHREADS
2779 dVAR;
2780#endif
2781 PERL_UNUSED_CONTEXT;
2782#ifdef USE_ITHREADS
2783 /* only "parent" interpreter can diddle signals */
2784 if (PL_curinterp != aTHX)
2785 return -1;
2786#endif
2787
2788 return sigaction(signo, save, (struct sigaction *)NULL);
2789}
2790
2791#else /* !HAS_SIGACTION */
2792
2793Sighandler_t
2794Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2795{
2796#if defined(USE_ITHREADS) && !defined(WIN32)
2797 /* only "parent" interpreter can diddle signals */
2798 if (PL_curinterp != aTHX)
2799 return (Sighandler_t) SIG_ERR;
2800#endif
2801
2802 return PerlProc_signal(signo, handler);
2803}
2804
2805static Signal_t
2806sig_trap(int signo)
2807{
2808 dVAR;
2809 PL_sig_trapped++;
2810}
2811
2812Sighandler_t
2813Perl_rsignal_state(pTHX_ int signo)
2814{
2815 dVAR;
2816 Sighandler_t oldsig;
2817
2818#if defined(USE_ITHREADS) && !defined(WIN32)
2819 /* only "parent" interpreter can diddle signals */
2820 if (PL_curinterp != aTHX)
2821 return (Sighandler_t) SIG_ERR;
2822#endif
2823
2824 PL_sig_trapped = 0;
2825 oldsig = PerlProc_signal(signo, sig_trap);
2826 PerlProc_signal(signo, oldsig);
2827 if (PL_sig_trapped)
2828 PerlProc_kill(PerlProc_getpid(), signo);
2829 return oldsig;
2830}
2831
2832int
2833Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2834{
2835#if defined(USE_ITHREADS) && !defined(WIN32)
2836 /* only "parent" interpreter can diddle signals */
2837 if (PL_curinterp != aTHX)
2838 return -1;
2839#endif
2840 *save = PerlProc_signal(signo, handler);
2841 return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
2842}
2843
2844int
2845Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2846{
2847#if defined(USE_ITHREADS) && !defined(WIN32)
2848 /* only "parent" interpreter can diddle signals */
2849 if (PL_curinterp != aTHX)
2850 return -1;
2851#endif
2852 return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
2853}
2854
2855#endif /* !HAS_SIGACTION */
2856#endif /* !PERL_MICRO */
2857
2858 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2859#if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
2860I32
2861Perl_my_pclose(pTHX_ PerlIO *ptr)
2862{
2863 int status;
2864 SV **svp;
2865 Pid_t pid;
2866 Pid_t pid2 = 0;
2867 bool close_failed;
2868 dSAVEDERRNO;
2869 const int fd = PerlIO_fileno(ptr);
2870 bool should_wait;
2871
2872 svp = av_fetch(PL_fdpid,fd,TRUE);
2873 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
2874 SvREFCNT_dec(*svp);
2875 *svp = NULL;
2876
2877#if defined(USE_PERLIO)
2878 /* Find out whether the refcount is low enough for us to wait for the
2879 child proc without blocking. */
2880 should_wait = PerlIOUnix_refcnt(fd) == 1 && pid > 0;
2881#else
2882 should_wait = pid > 0;
2883#endif
2884
2885#ifdef OS2
2886 if (pid == -1) { /* Opened by popen. */
2887 return my_syspclose(ptr);
2888 }
2889#endif
2890 close_failed = (PerlIO_close(ptr) == EOF);
2891 SAVE_ERRNO;
2892 if (should_wait) do {
2893 pid2 = wait4pid(pid, &status, 0);
2894 } while (pid2 == -1 && errno == EINTR);
2895 if (close_failed) {
2896 RESTORE_ERRNO;
2897 return -1;
2898 }
2899 return(
2900 should_wait
2901 ? pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status)
2902 : 0
2903 );
2904}
2905#elif defined(__LIBCATAMOUNT__)
2906I32
2907Perl_my_pclose(pTHX_ PerlIO *ptr)
2908{
2909 return -1;
2910}
2911#endif /* !DOSISH */
2912
2913#if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(__LIBCATAMOUNT__)
2914I32
2915Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2916{
2917 I32 result = 0;
2918 PERL_ARGS_ASSERT_WAIT4PID;
2919#ifdef PERL_USES_PL_PIDSTATUS
2920 if (!pid) {
2921 /* PERL_USES_PL_PIDSTATUS is only defined when neither
2922 waitpid() nor wait4() is available, or on OS/2, which
2923 doesn't appear to support waiting for a progress group
2924 member, so we can only treat a 0 pid as an unknown child.
2925 */
2926 errno = ECHILD;
2927 return -1;
2928 }
2929 {
2930 if (pid > 0) {
2931 /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
2932 pid, rather than a string form. */
2933 SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
2934 if (svp && *svp != &PL_sv_undef) {
2935 *statusp = SvIVX(*svp);
2936 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
2937 G_DISCARD);
2938 return pid;
2939 }
2940 }
2941 else {
2942 HE *entry;
2943
2944 hv_iterinit(PL_pidstatus);
2945 if ((entry = hv_iternext(PL_pidstatus))) {
2946 SV * const sv = hv_iterval(PL_pidstatus,entry);
2947 I32 len;
2948 const char * const spid = hv_iterkey(entry,&len);
2949
2950 assert (len == sizeof(Pid_t));
2951 memcpy((char *)&pid, spid, len);
2952 *statusp = SvIVX(sv);
2953 /* The hash iterator is currently on this entry, so simply
2954 calling hv_delete would trigger the lazy delete, which on
2955 aggregate does more work, because next call to hv_iterinit()
2956 would spot the flag, and have to call the delete routine,
2957 while in the meantime any new entries can't re-use that
2958 memory. */
2959 hv_iterinit(PL_pidstatus);
2960 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
2961 return pid;
2962 }
2963 }
2964 }
2965#endif
2966#ifdef HAS_WAITPID
2967# ifdef HAS_WAITPID_RUNTIME
2968 if (!HAS_WAITPID_RUNTIME)
2969 goto hard_way;
2970# endif
2971 result = PerlProc_waitpid(pid,statusp,flags);
2972 goto finish;
2973#endif
2974#if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2975 result = wait4(pid,statusp,flags,NULL);
2976 goto finish;
2977#endif
2978#ifdef PERL_USES_PL_PIDSTATUS
2979#if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
2980 hard_way:
2981#endif
2982 {
2983 if (flags)
2984 Perl_croak(aTHX_ "Can't do waitpid with flags");
2985 else {
2986 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2987 pidgone(result,*statusp);
2988 if (result < 0)
2989 *statusp = -1;
2990 }
2991 }
2992#endif
2993#if defined(HAS_WAITPID) || defined(HAS_WAIT4)
2994 finish:
2995#endif
2996 if (result < 0 && errno == EINTR) {
2997 PERL_ASYNC_CHECK();
2998 errno = EINTR; /* reset in case a signal handler changed $! */
2999 }
3000 return result;
3001}
3002#endif /* !DOSISH || OS2 || WIN32 || NETWARE */
3003
3004#ifdef PERL_USES_PL_PIDSTATUS
3005void
3006S_pidgone(pTHX_ Pid_t pid, int status)
3007{
3008 SV *sv;
3009
3010 sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
3011 SvUPGRADE(sv,SVt_IV);
3012 SvIV_set(sv, status);
3013 return;
3014}
3015#endif
3016
3017#if defined(OS2)
3018int pclose();
3019#ifdef HAS_FORK
3020int /* Cannot prototype with I32
3021 in os2ish.h. */
3022my_syspclose(PerlIO *ptr)
3023#else
3024I32
3025Perl_my_pclose(pTHX_ PerlIO *ptr)
3026#endif
3027{
3028 /* Needs work for PerlIO ! */
3029 FILE * const f = PerlIO_findFILE(ptr);
3030 const I32 result = pclose(f);
3031 PerlIO_releaseFILE(ptr,f);
3032 return result;
3033}
3034#endif
3035
3036#if defined(DJGPP)
3037int djgpp_pclose();
3038I32
3039Perl_my_pclose(pTHX_ PerlIO *ptr)
3040{
3041 /* Needs work for PerlIO ! */
3042 FILE * const f = PerlIO_findFILE(ptr);
3043 I32 result = djgpp_pclose(f);
3044 result = (result << 8) & 0xff00;
3045 PerlIO_releaseFILE(ptr,f);
3046 return result;
3047}
3048#endif
3049
3050#define PERL_REPEATCPY_LINEAR 4
3051void
3052Perl_repeatcpy(char *to, const char *from, I32 len, IV count)
3053{
3054 PERL_ARGS_ASSERT_REPEATCPY;
3055
3056 assert(len >= 0);
3057
3058 if (count < 0)
3059 croak_memory_wrap();
3060
3061 if (len == 1)
3062 memset(to, *from, count);
3063 else if (count) {
3064 char *p = to;
3065 IV items, linear, half;
3066
3067 linear = count < PERL_REPEATCPY_LINEAR ? count : PERL_REPEATCPY_LINEAR;
3068 for (items = 0; items < linear; ++items) {
3069 const char *q = from;
3070 IV todo;
3071 for (todo = len; todo > 0; todo--)
3072 *p++ = *q++;
3073 }
3074
3075 half = count / 2;
3076 while (items <= half) {
3077 IV size = items * len;
3078 memcpy(p, to, size);
3079 p += size;
3080 items *= 2;
3081 }
3082
3083 if (count > items)
3084 memcpy(p, to, (count - items) * len);
3085 }
3086}
3087
3088#ifndef HAS_RENAME
3089I32
3090Perl_same_dirent(pTHX_ const char *a, const char *b)
3091{
3092 char *fa = strrchr(a,'/');
3093 char *fb = strrchr(b,'/');
3094 Stat_t tmpstatbuf1;
3095 Stat_t tmpstatbuf2;
3096 SV * const tmpsv = sv_newmortal();
3097
3098 PERL_ARGS_ASSERT_SAME_DIRENT;
3099
3100 if (fa)
3101 fa++;
3102 else
3103 fa = a;
3104 if (fb)
3105 fb++;
3106 else
3107 fb = b;
3108 if (strNE(a,b))
3109 return FALSE;
3110 if (fa == a)
3111 sv_setpvs(tmpsv, ".");
3112 else
3113 sv_setpvn(tmpsv, a, fa - a);
3114 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
3115 return FALSE;
3116 if (fb == b)
3117 sv_setpvs(tmpsv, ".");
3118 else
3119 sv_setpvn(tmpsv, b, fb - b);
3120 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
3121 return FALSE;
3122 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3123 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3124}
3125#endif /* !HAS_RENAME */
3126
3127char*
3128Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3129 const char *const *const search_ext, I32 flags)
3130{
3131 const char *xfound = NULL;
3132 char *xfailed = NULL;
3133 char tmpbuf[MAXPATHLEN];
3134 char *s;
3135 I32 len = 0;
3136 int retval;
3137 char *bufend;
3138#if defined(DOSISH) && !defined(OS2)
3139# define SEARCH_EXTS ".bat", ".cmd", NULL
3140# define MAX_EXT_LEN 4
3141#endif
3142#ifdef OS2
3143# define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3144# define MAX_EXT_LEN 4
3145#endif
3146#ifdef VMS
3147# define SEARCH_EXTS ".pl", ".com", NULL
3148# define MAX_EXT_LEN 4
3149#endif
3150 /* additional extensions to try in each dir if scriptname not found */
3151#ifdef SEARCH_EXTS
3152 static const char *const exts[] = { SEARCH_EXTS };
3153 const char *const *const ext = search_ext ? search_ext : exts;
3154 int extidx = 0, i = 0;
3155 const char *curext = NULL;
3156#else
3157 PERL_UNUSED_ARG(search_ext);
3158# define MAX_EXT_LEN 0
3159#endif
3160
3161 PERL_ARGS_ASSERT_FIND_SCRIPT;
3162
3163 /*
3164 * If dosearch is true and if scriptname does not contain path
3165 * delimiters, search the PATH for scriptname.
3166 *
3167 * If SEARCH_EXTS is also defined, will look for each
3168 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3169 * while searching the PATH.
3170 *
3171 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3172 * proceeds as follows:
3173 * If DOSISH or VMSISH:
3174 * + look for ./scriptname{,.foo,.bar}
3175 * + search the PATH for scriptname{,.foo,.bar}
3176 *
3177 * If !DOSISH:
3178 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3179 * this will not look in '.' if it's not in the PATH)
3180 */
3181 tmpbuf[0] = '\0';
3182
3183#ifdef VMS
3184# ifdef ALWAYS_DEFTYPES
3185 len = strlen(scriptname);
3186 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3187 int idx = 0, deftypes = 1;
3188 bool seen_dot = 1;
3189
3190 const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
3191# else
3192 if (dosearch) {
3193 int idx = 0, deftypes = 1;
3194 bool seen_dot = 1;
3195
3196 const int hasdir = (strpbrk(scriptname,":[</") != NULL);
3197# endif
3198 /* The first time through, just add SEARCH_EXTS to whatever we
3199 * already have, so we can check for default file types. */
3200 while (deftypes ||
3201 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3202 {
3203 Stat_t statbuf;
3204 if (deftypes) {
3205 deftypes = 0;
3206 *tmpbuf = '\0';
3207 }
3208 if ((strlen(tmpbuf) + strlen(scriptname)
3209 + MAX_EXT_LEN) >= sizeof tmpbuf)
3210 continue; /* don't search dir with too-long name */
3211 my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
3212#else /* !VMS */
3213
3214#ifdef DOSISH
3215 if (strEQ(scriptname, "-"))
3216 dosearch = 0;
3217 if (dosearch) { /* Look in '.' first. */
3218 const char *cur = scriptname;
3219#ifdef SEARCH_EXTS
3220 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3221 while (ext[i])
3222 if (strEQ(ext[i++],curext)) {
3223 extidx = -1; /* already has an ext */
3224 break;
3225 }
3226 do {
3227#endif
3228 DEBUG_p(PerlIO_printf(Perl_debug_log,
3229 "Looking for %s\n",cur));
3230 {
3231 Stat_t statbuf;
3232 if (PerlLIO_stat(cur,&statbuf) >= 0
3233 && !S_ISDIR(statbuf.st_mode)) {
3234 dosearch = 0;
3235 scriptname = cur;
3236#ifdef SEARCH_EXTS
3237 break;
3238#endif
3239 }
3240 }
3241#ifdef SEARCH_EXTS
3242 if (cur == scriptname) {
3243 len = strlen(scriptname);
3244 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3245 break;
3246 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3247 cur = tmpbuf;
3248 }
3249 } while (extidx >= 0 && ext[extidx] /* try an extension? */
3250 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
3251#endif
3252 }
3253#endif
3254
3255 if (dosearch && !strchr(scriptname, '/')
3256#ifdef DOSISH
3257 && !strchr(scriptname, '\\')
3258#endif
3259 && (s = PerlEnv_getenv("PATH")))
3260 {
3261 bool seen_dot = 0;
3262
3263 bufend = s + strlen(s);
3264 while (s < bufend) {
3265 Stat_t statbuf;
3266# ifdef DOSISH
3267 for (len = 0; *s
3268 && *s != ';'; len++, s++) {
3269 if (len < sizeof tmpbuf)
3270 tmpbuf[len] = *s;
3271 }
3272 if (len < sizeof tmpbuf)
3273 tmpbuf[len] = '\0';
3274# else
3275 s = delimcpy_no_escape(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
3276 ':', &len);
3277# endif
3278 if (s < bufend)
3279 s++;
3280 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3281 continue; /* don't search dir with too-long name */
3282 if (len
3283# ifdef DOSISH
3284 && tmpbuf[len - 1] != '/'
3285 && tmpbuf[len - 1] != '\\'
3286# endif
3287 )
3288 tmpbuf[len++] = '/';
3289 if (len == 2 && tmpbuf[0] == '.')
3290 seen_dot = 1;
3291 (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
3292#endif /* !VMS */
3293
3294#ifdef SEARCH_EXTS
3295 len = strlen(tmpbuf);
3296 if (extidx > 0) /* reset after previous loop */
3297 extidx = 0;
3298 do {
3299#endif
3300 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3301 retval = PerlLIO_stat(tmpbuf,&statbuf);
3302 if (S_ISDIR(statbuf.st_mode)) {
3303 retval = -1;
3304 }
3305#ifdef SEARCH_EXTS
3306 } while ( retval < 0 /* not there */
3307 && extidx>=0 && ext[extidx] /* try an extension? */
3308 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
3309 );
3310#endif
3311 if (retval < 0)
3312 continue;
3313 if (S_ISREG(statbuf.st_mode)
3314 && cando(S_IRUSR,TRUE,&statbuf)
3315#if !defined(DOSISH)
3316 && cando(S_IXUSR,TRUE,&statbuf)
3317#endif
3318 )
3319 {
3320 xfound = tmpbuf; /* bingo! */
3321 break;
3322 }
3323 if (!xfailed)
3324 xfailed = savepv(tmpbuf);
3325 }
3326#ifndef DOSISH
3327 {
3328 Stat_t statbuf;
3329 if (!xfound && !seen_dot && !xfailed &&
3330 (PerlLIO_stat(scriptname,&statbuf) < 0
3331 || S_ISDIR(statbuf.st_mode)))
3332#endif
3333 seen_dot = 1; /* Disable message. */
3334#ifndef DOSISH
3335 }
3336#endif
3337 if (!xfound) {
3338 if (flags & 1) { /* do or die? */
3339 /* diag_listed_as: Can't execute %s */
3340 Perl_croak(aTHX_ "Can't %s %s%s%s",
3341 (xfailed ? "execute" : "find"),
3342 (xfailed ? xfailed : scriptname),
3343 (xfailed ? "" : " on PATH"),
3344 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3345 }
3346 scriptname = NULL;
3347 }
3348 Safefree(xfailed);
3349 scriptname = xfound;
3350 }
3351 return (scriptname ? savepv(scriptname) : NULL);
3352}
3353
3354#ifndef PERL_GET_CONTEXT_DEFINED
3355
3356void *
3357Perl_get_context(void)
3358{
3359#if defined(USE_ITHREADS)
3360 dVAR;
3361# ifdef OLD_PTHREADS_API
3362 pthread_addr_t t;
3363 int error = pthread_getspecific(PL_thr_key, &t);
3364 if (error)
3365 Perl_croak_nocontext("panic: pthread_getspecific, error=%d", error);
3366 return (void*)t;
3367# elif defined(I_MACH_CTHREADS)
3368 return (void*)cthread_data(cthread_self());
3369# else
3370 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3371# endif
3372#else
3373 return (void*)NULL;
3374#endif
3375}
3376
3377void
3378Perl_set_context(void *t)
3379{
3380#if defined(USE_ITHREADS)
3381 dVAR;
3382#endif
3383 PERL_ARGS_ASSERT_SET_CONTEXT;
3384#if defined(USE_ITHREADS)
3385# ifdef I_MACH_CTHREADS
3386 cthread_set_data(cthread_self(), t);
3387# else
3388 {
3389 const int error = pthread_setspecific(PL_thr_key, t);
3390 if (error)
3391 Perl_croak_nocontext("panic: pthread_setspecific, error=%d", error);
3392 }
3393# endif
3394#else
3395 PERL_UNUSED_ARG(t);
3396#endif
3397}
3398
3399#endif /* !PERL_GET_CONTEXT_DEFINED */
3400
3401#if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
3402struct perl_vars *
3403Perl_GetVars(pTHX)
3404{
3405 PERL_UNUSED_CONTEXT;
3406 return &PL_Vars;
3407}
3408#endif
3409
3410char **
3411Perl_get_op_names(pTHX)
3412{
3413 PERL_UNUSED_CONTEXT;
3414 return (char **)PL_op_name;
3415}
3416
3417char **
3418Perl_get_op_descs(pTHX)
3419{
3420 PERL_UNUSED_CONTEXT;
3421 return (char **)PL_op_desc;
3422}
3423
3424const char *
3425Perl_get_no_modify(pTHX)
3426{
3427 PERL_UNUSED_CONTEXT;
3428 return PL_no_modify;
3429}
3430
3431U32 *
3432Perl_get_opargs(pTHX)
3433{
3434 PERL_UNUSED_CONTEXT;
3435 return (U32 *)PL_opargs;
3436}
3437
3438PPADDR_t*
3439Perl_get_ppaddr(pTHX)
3440{
3441 dVAR;
3442 PERL_UNUSED_CONTEXT;
3443 return (PPADDR_t*)PL_ppaddr;
3444}
3445
3446#ifndef HAS_GETENV_LEN
3447char *
3448Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3449{
3450 char * const env_trans = PerlEnv_getenv(env_elem);
3451 PERL_UNUSED_CONTEXT;
3452 PERL_ARGS_ASSERT_GETENV_LEN;
3453 if (env_trans)
3454 *len = strlen(env_trans);
3455 return env_trans;
3456}
3457#endif
3458
3459
3460MGVTBL*
3461Perl_get_vtbl(pTHX_ int vtbl_id)
3462{
3463 PERL_UNUSED_CONTEXT;
3464
3465 return (vtbl_id < 0 || vtbl_id >= magic_vtable_max)
3466 ? NULL : (MGVTBL*)PL_magic_vtables + vtbl_id;
3467}
3468
3469I32
3470Perl_my_fflush_all(pTHX)
3471{
3472#if defined(USE_PERLIO) || defined(FFLUSH_NULL)
3473 return PerlIO_flush(NULL);
3474#else
3475# if defined(HAS__FWALK)
3476 extern int fflush(FILE *);
3477 /* undocumented, unprototyped, but very useful BSDism */
3478 extern void _fwalk(int (*)(FILE *));
3479 _fwalk(&fflush);
3480 return 0;
3481# else
3482# if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3483 long open_max = -1;
3484# ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3485 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3486# elif defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3487 open_max = sysconf(_SC_OPEN_MAX);
3488# elif defined(FOPEN_MAX)
3489 open_max = FOPEN_MAX;
3490# elif defined(OPEN_MAX)
3491 open_max = OPEN_MAX;
3492# elif defined(_NFILE)
3493 open_max = _NFILE;
3494# endif
3495 if (open_max > 0) {
3496 long i;
3497 for (i = 0; i < open_max; i++)
3498 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3499 STDIO_STREAM_ARRAY[i]._file < open_max &&
3500 STDIO_STREAM_ARRAY[i]._flag)
3501 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3502 return 0;
3503 }
3504# endif
3505 SETERRNO(EBADF,RMS_IFI);
3506 return EOF;
3507# endif
3508#endif
3509}
3510
3511void
3512Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have)
3513{
3514 if (ckWARN(WARN_IO)) {
3515 HEK * const name
3516 = gv && (isGV_with_GP(gv))
3517 ? GvENAME_HEK((gv))
3518 : NULL;
3519 const char * const direction = have == '>' ? "out" : "in";
3520
3521 if (name && HEK_LEN(name))
3522 Perl_warner(aTHX_ packWARN(WARN_IO),
3523 "Filehandle %" HEKf " opened only for %sput",
3524 HEKfARG(name), direction);
3525 else
3526 Perl_warner(aTHX_ packWARN(WARN_IO),
3527 "Filehandle opened only for %sput", direction);
3528 }
3529}
3530
3531void
3532Perl_report_evil_fh(pTHX_ const GV *gv)
3533{
3534 const IO *io = gv ? GvIO(gv) : NULL;
3535 const PERL_BITFIELD16 op = PL_op->op_type;
3536 const char *vile;
3537 I32 warn_type;
3538
3539 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
3540 vile = "closed";
3541 warn_type = WARN_CLOSED;
3542 }
3543 else {
3544 vile = "unopened";
3545 warn_type = WARN_UNOPENED;
3546 }
3547
3548 if (ckWARN(warn_type)) {
3549 SV * const name
3550 = gv && isGV_with_GP(gv) && GvENAMELEN(gv) ?
3551 sv_2mortal(newSVhek(GvENAME_HEK(gv))) : NULL;
3552 const char * const pars =
3553 (const char *)(OP_IS_FILETEST(op) ? "" : "()");
3554 const char * const func =
3555 (const char *)
3556 (op == OP_READLINE || op == OP_RCATLINE
3557 ? "readline" : /* "<HANDLE>" not nice */
3558 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3559 PL_op_desc[op]);
3560 const char * const type =
3561 (const char *)
3562 (OP_IS_SOCKET(op) || (io && IoTYPE(io) == IoTYPE_SOCKET)
3563 ? "socket" : "filehandle");
3564 const bool have_name = name && SvCUR(name);
3565 Perl_warner(aTHX_ packWARN(warn_type),
3566 "%s%s on %s %s%s%" SVf, func, pars, vile, type,
3567 have_name ? " " : "",
3568 SVfARG(have_name ? name : &PL_sv_no));
3569 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3570 Perl_warner(
3571 aTHX_ packWARN(warn_type),
3572 "\t(Are you trying to call %s%s on dirhandle%s%" SVf "?)\n",
3573 func, pars, have_name ? " " : "",
3574 SVfARG(have_name ? name : &PL_sv_no)
3575 );
3576 }
3577}
3578
3579/* To workaround core dumps from the uninitialised tm_zone we get the
3580 * system to give us a reasonable struct to copy. This fix means that
3581 * strftime uses the tm_zone and tm_gmtoff values returned by
3582 * localtime(time()). That should give the desired result most of the
3583 * time. But probably not always!
3584 *
3585 * This does not address tzname aspects of NETaa14816.
3586 *
3587 */
3588
3589#ifdef __GLIBC__
3590# ifndef STRUCT_TM_HASZONE
3591# define STRUCT_TM_HASZONE
3592# endif
3593#endif
3594
3595#ifdef STRUCT_TM_HASZONE /* Backward compat */
3596# ifndef HAS_TM_TM_ZONE
3597# define HAS_TM_TM_ZONE
3598# endif
3599#endif
3600
3601void
3602Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
3603{
3604#ifdef HAS_TM_TM_ZONE
3605 Time_t now;
3606 const struct tm* my_tm;
3607 PERL_UNUSED_CONTEXT;
3608 PERL_ARGS_ASSERT_INIT_TM;
3609 (void)time(&now);
3610 my_tm = localtime(&now);
3611 if (my_tm)
3612 Copy(my_tm, ptm, 1, struct tm);
3613#else
3614 PERL_UNUSED_CONTEXT;
3615 PERL_ARGS_ASSERT_INIT_TM;
3616 PERL_UNUSED_ARG(ptm);
3617#endif
3618}
3619
3620/*
3621 * mini_mktime - normalise struct tm values without the localtime()
3622 * semantics (and overhead) of mktime().
3623 */
3624void
3625Perl_mini_mktime(struct tm *ptm)
3626{
3627 int yearday;
3628 int secs;
3629 int month, mday, year, jday;
3630 int odd_cent, odd_year;
3631
3632 PERL_ARGS_ASSERT_MINI_MKTIME;
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 calendar 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 * - lwall
3708 */
3709
3710 year = 1900 + ptm->tm_year;
3711 month = ptm->tm_mon;
3712 mday = ptm->tm_mday;
3713 jday = 0;
3714 if (month >= 2)
3715 month+=2;
3716 else
3717 month+=14, year--;
3718 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
3719 yearday += month*MONTH_TO_DAYS + mday + jday;
3720 /*
3721 * Note that we don't know when leap-seconds were or will be,
3722 * so we have to trust the user if we get something which looks
3723 * like a sensible leap-second. Wild values for seconds will
3724 * be rationalised, however.
3725 */
3726 if ((unsigned) ptm->tm_sec <= 60) {
3727 secs = 0;
3728 }
3729 else {
3730 secs = ptm->tm_sec;
3731 ptm->tm_sec = 0;
3732 }
3733 secs += 60 * ptm->tm_min;
3734 secs += SECS_PER_HOUR * ptm->tm_hour;
3735 if (secs < 0) {
3736 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3737 /* got negative remainder, but need positive time */
3738 /* back off an extra day to compensate */
3739 yearday += (secs/SECS_PER_DAY)-1;
3740 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
3741 }
3742 else {
3743 yearday += (secs/SECS_PER_DAY);
3744 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
3745 }
3746 }
3747 else if (secs >= SECS_PER_DAY) {
3748 yearday += (secs/SECS_PER_DAY);
3749 secs %= SECS_PER_DAY;
3750 }
3751 ptm->tm_hour = secs/SECS_PER_HOUR;
3752 secs %= SECS_PER_HOUR;
3753 ptm->tm_min = secs/60;
3754 secs %= 60;
3755 ptm->tm_sec += secs;
3756 /* done with time of day effects */
3757 /*
3758 * The algorithm for yearday has (so far) left it high by 428.
3759 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
3760 * bias it by 123 while trying to figure out what year it
3761 * really represents. Even with this tweak, the reverse
3762 * translation fails for years before A.D. 0001.
3763 * It would still fail for Feb 29, but we catch that one below.
3764 */
3765 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
3766 yearday -= YEAR_ADJUST;
3767 year = (yearday / DAYS_PER_QCENT) * 400;
3768 yearday %= DAYS_PER_QCENT;
3769 odd_cent = yearday / DAYS_PER_CENT;
3770 year += odd_cent * 100;
3771 yearday %= DAYS_PER_CENT;
3772 year += (yearday / DAYS_PER_QYEAR) * 4;
3773 yearday %= DAYS_PER_QYEAR;
3774 odd_year = yearday / DAYS_PER_YEAR;
3775 year += odd_year;
3776 yearday %= DAYS_PER_YEAR;
3777 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
3778 month = 1;
3779 yearday = 29;
3780 }
3781 else {
3782 yearday += YEAR_ADJUST; /* recover March 1st crock */
3783 month = yearday*DAYS_TO_MONTH;
3784 yearday -= month*MONTH_TO_DAYS;
3785 /* recover other leap-year adjustment */
3786 if (month > 13) {
3787 month-=14;
3788 year++;
3789 }
3790 else {
3791 month-=2;
3792 }
3793 }
3794 ptm->tm_year = year - 1900;
3795 if (yearday) {
3796 ptm->tm_mday = yearday;
3797 ptm->tm_mon = month;
3798 }
3799 else {
3800 ptm->tm_mday = 31;
3801 ptm->tm_mon = month - 1;
3802 }
3803 /* re-build yearday based on Jan 1 to get tm_yday */
3804 year--;
3805 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
3806 yearday += 14*MONTH_TO_DAYS + 1;
3807 ptm->tm_yday = jday - yearday;
3808 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
3809}
3810
3811char *
3812Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst)
3813{
3814#ifdef HAS_STRFTIME
3815
3816 /* strftime(), but with a different API so that the return value is a pointer
3817 * to the formatted result (which MUST be arranged to be FREED BY THE
3818 * CALLER). This allows this function to increase the buffer size as needed,
3819 * so that the caller doesn't have to worry about that.
3820 *
3821 * Note that yday and wday effectively are ignored by this function, as
3822 * mini_mktime() overwrites them */
3823
3824 char *buf;
3825 int buflen;
3826 struct tm mytm;
3827 int len;
3828
3829 PERL_ARGS_ASSERT_MY_STRFTIME;
3830
3831 init_tm(&mytm); /* XXX workaround - see init_tm() above */
3832 mytm.tm_sec = sec;
3833 mytm.tm_min = min;
3834 mytm.tm_hour = hour;
3835 mytm.tm_mday = mday;
3836 mytm.tm_mon = mon;
3837 mytm.tm_year = year;
3838 mytm.tm_wday = wday;
3839 mytm.tm_yday = yday;
3840 mytm.tm_isdst = isdst;
3841 mini_mktime(&mytm);
3842 /* use libc to get the values for tm_gmtoff and tm_zone [perl #18238] */
3843#if defined(HAS_MKTIME) && (defined(HAS_TM_TM_GMTOFF) || defined(HAS_TM_TM_ZONE))
3844 STMT_START {
3845 struct tm mytm2;
3846 mytm2 = mytm;
3847 mktime(&mytm2);
3848#ifdef HAS_TM_TM_GMTOFF
3849 mytm.tm_gmtoff = mytm2.tm_gmtoff;
3850#endif
3851#ifdef HAS_TM_TM_ZONE
3852 mytm.tm_zone = mytm2.tm_zone;
3853#endif
3854 } STMT_END;
3855#endif
3856 buflen = 64;
3857 Newx(buf, buflen, char);
3858
3859 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* fmt checked by caller */
3860 len = strftime(buf, buflen, fmt, &mytm);
3861 GCC_DIAG_RESTORE_STMT;
3862
3863 /*
3864 ** The following is needed to handle to the situation where
3865 ** tmpbuf overflows. Basically we want to allocate a buffer
3866 ** and try repeatedly. The reason why it is so complicated
3867 ** is that getting a return value of 0 from strftime can indicate
3868 ** one of the following:
3869 ** 1. buffer overflowed,
3870 ** 2. illegal conversion specifier, or
3871 ** 3. the format string specifies nothing to be returned(not
3872 ** an error). This could be because format is an empty string
3873 ** or it specifies %p that yields an empty string in some locale.
3874 ** If there is a better way to make it portable, go ahead by
3875 ** all means.
3876 */
3877 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
3878 return buf;
3879 else {
3880 /* Possibly buf overflowed - try again with a bigger buf */
3881 const int fmtlen = strlen(fmt);
3882 int bufsize = fmtlen + buflen;
3883
3884 Renew(buf, bufsize, char);
3885 while (buf) {
3886
3887 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* fmt checked by caller */
3888 buflen = strftime(buf, bufsize, fmt, &mytm);
3889 GCC_DIAG_RESTORE_STMT;
3890
3891 if (buflen > 0 && buflen < bufsize)
3892 break;
3893 /* heuristic to prevent out-of-memory errors */
3894 if (bufsize > 100*fmtlen) {
3895 Safefree(buf);
3896 buf = NULL;
3897 break;
3898 }
3899 bufsize *= 2;
3900 Renew(buf, bufsize, char);
3901 }
3902 return buf;
3903 }
3904#else
3905 Perl_croak(aTHX_ "panic: no strftime");
3906 return NULL;
3907#endif
3908}
3909
3910
3911#define SV_CWD_RETURN_UNDEF \
3912 sv_set_undef(sv); \
3913 return FALSE
3914
3915#define SV_CWD_ISDOT(dp) \
3916 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
3917 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
3918
3919/*
3920=head1 Miscellaneous Functions
3921
3922=for apidoc getcwd_sv
3923
3924Fill C<sv> with current working directory
3925
3926=cut
3927*/
3928
3929/* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
3930 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
3931 * getcwd(3) if available
3932 * Comments from the original:
3933 * This is a faster version of getcwd. It's also more dangerous
3934 * because you might chdir out of a directory that you can't chdir
3935 * back into. */
3936
3937int
3938Perl_getcwd_sv(pTHX_ SV *sv)
3939{
3940#ifndef PERL_MICRO
3941 SvTAINTED_on(sv);
3942
3943 PERL_ARGS_ASSERT_GETCWD_SV;
3944
3945#ifdef HAS_GETCWD
3946 {
3947 char buf[MAXPATHLEN];
3948
3949 /* Some getcwd()s automatically allocate a buffer of the given
3950 * size from the heap if they are given a NULL buffer pointer.
3951 * The problem is that this behaviour is not portable. */
3952 if (getcwd(buf, sizeof(buf) - 1)) {
3953 sv_setpv(sv, buf);
3954 return TRUE;
3955 }
3956 else {
3957 SV_CWD_RETURN_UNDEF;
3958 }
3959 }
3960
3961#else
3962
3963 Stat_t statbuf;
3964 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
3965 int pathlen=0;
3966 Direntry_t *dp;
3967
3968 SvUPGRADE(sv, SVt_PV);
3969
3970 if (PerlLIO_lstat(".", &statbuf) < 0) {
3971 SV_CWD_RETURN_UNDEF;
3972 }
3973
3974 orig_cdev = statbuf.st_dev;
3975 orig_cino = statbuf.st_ino;
3976 cdev = orig_cdev;
3977 cino = orig_cino;
3978
3979 for (;;) {
3980 DIR *dir;
3981 int namelen;
3982 odev = cdev;
3983 oino = cino;
3984
3985 if (PerlDir_chdir("..") < 0) {
3986 SV_CWD_RETURN_UNDEF;
3987 }
3988 if (PerlLIO_stat(".", &statbuf) < 0) {
3989 SV_CWD_RETURN_UNDEF;
3990 }
3991
3992 cdev = statbuf.st_dev;
3993 cino = statbuf.st_ino;
3994
3995 if (odev == cdev && oino == cino) {
3996 break;
3997 }
3998 if (!(dir = PerlDir_open("."))) {
3999 SV_CWD_RETURN_UNDEF;
4000 }
4001
4002 while ((dp = PerlDir_read(dir)) != NULL) {
4003#ifdef DIRNAMLEN
4004 namelen = dp->d_namlen;
4005#else
4006 namelen = strlen(dp->d_name);
4007#endif
4008 /* skip . and .. */
4009 if (SV_CWD_ISDOT(dp)) {
4010 continue;
4011 }
4012
4013 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
4014 SV_CWD_RETURN_UNDEF;
4015 }
4016
4017 tdev = statbuf.st_dev;
4018 tino = statbuf.st_ino;
4019 if (tino == oino && tdev == odev) {
4020 break;
4021 }
4022 }
4023
4024 if (!dp) {
4025 SV_CWD_RETURN_UNDEF;
4026 }
4027
4028 if (pathlen + namelen + 1 >= MAXPATHLEN) {
4029 SV_CWD_RETURN_UNDEF;
4030 }
4031
4032 SvGROW(sv, pathlen + namelen + 1);
4033
4034 if (pathlen) {
4035 /* shift down */
4036 Move(SvPVX_const(sv), SvPVX(sv) + namelen + 1, pathlen, char);
4037 }
4038
4039 /* prepend current directory to the front */
4040 *SvPVX(sv) = '/';
4041 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
4042 pathlen += (namelen + 1);
4043
4044#ifdef VOID_CLOSEDIR
4045 PerlDir_close(dir);
4046#else
4047 if (PerlDir_close(dir) < 0) {
4048 SV_CWD_RETURN_UNDEF;
4049 }
4050#endif
4051 }
4052
4053 if (pathlen) {
4054 SvCUR_set(sv, pathlen);
4055 *SvEND(sv) = '\0';
4056 SvPOK_only(sv);
4057
4058 if (PerlDir_chdir(SvPVX_const(sv)) < 0) {
4059 SV_CWD_RETURN_UNDEF;
4060 }
4061 }
4062 if (PerlLIO_stat(".", &statbuf) < 0) {
4063 SV_CWD_RETURN_UNDEF;
4064 }
4065
4066 cdev = statbuf.st_dev;
4067 cino = statbuf.st_ino;
4068
4069 if (cdev != orig_cdev || cino != orig_cino) {
4070 Perl_croak(aTHX_ "Unstable directory path, "
4071 "current directory changed unexpectedly");
4072 }
4073
4074 return TRUE;
4075#endif
4076
4077#else
4078 return FALSE;
4079#endif
4080}
4081
4082#include "vutil.c"
4083
4084#if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET) && defined(SOCK_DGRAM) && defined(HAS_SELECT)
4085# define EMULATE_SOCKETPAIR_UDP
4086#endif
4087
4088#ifdef EMULATE_SOCKETPAIR_UDP
4089static int
4090S_socketpair_udp (int fd[2]) {
4091 dTHX;
4092 /* Fake a datagram socketpair using UDP to localhost. */
4093 int sockets[2] = {-1, -1};
4094 struct sockaddr_in addresses[2];
4095 int i;
4096 Sock_size_t size = sizeof(struct sockaddr_in);
4097 unsigned short port;
4098 int got;
4099
4100 memset(&addresses, 0, sizeof(addresses));
4101 i = 1;
4102 do {
4103 sockets[i] = PerlSock_socket(AF_INET, SOCK_DGRAM, PF_INET);
4104 if (sockets[i] == -1)
4105 goto tidy_up_and_fail;
4106
4107 addresses[i].sin_family = AF_INET;
4108 addresses[i].sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4109 addresses[i].sin_port = 0; /* kernel choses port. */
4110 if (PerlSock_bind(sockets[i], (struct sockaddr *) &addresses[i],
4111 sizeof(struct sockaddr_in)) == -1)
4112 goto tidy_up_and_fail;
4113 } while (i--);
4114
4115 /* Now have 2 UDP sockets. Find out which port each is connected to, and
4116 for each connect the other socket to it. */
4117 i = 1;
4118 do {
4119 if (PerlSock_getsockname(sockets[i], (struct sockaddr *) &addresses[i],
4120 &size) == -1)
4121 goto tidy_up_and_fail;
4122 if (size != sizeof(struct sockaddr_in))
4123 goto abort_tidy_up_and_fail;
4124 /* !1 is 0, !0 is 1 */
4125 if (PerlSock_connect(sockets[!i], (struct sockaddr *) &addresses[i],
4126 sizeof(struct sockaddr_in)) == -1)
4127 goto tidy_up_and_fail;
4128 } while (i--);
4129
4130 /* Now we have 2 sockets connected to each other. I don't trust some other
4131 process not to have already sent a packet to us (by random) so send
4132 a packet from each to the other. */
4133 i = 1;
4134 do {
4135 /* I'm going to send my own port number. As a short.
4136 (Who knows if someone somewhere has sin_port as a bitfield and needs
4137 this routine. (I'm assuming crays have socketpair)) */
4138 port = addresses[i].sin_port;
4139 got = PerlLIO_write(sockets[i], &port, sizeof(port));
4140 if (got != sizeof(port)) {
4141 if (got == -1)
4142 goto tidy_up_and_fail;
4143 goto abort_tidy_up_and_fail;
4144 }
4145 } while (i--);
4146
4147 /* Packets sent. I don't trust them to have arrived though.
4148 (As I understand it Solaris TCP stack is multithreaded. Non-blocking
4149 connect to localhost will use a second kernel thread. In 2.6 the
4150 first thread running the connect() returns before the second completes,
4151 so EINPROGRESS> In 2.7 the improved stack is faster and connect()
4152 returns 0. Poor programs have tripped up. One poor program's authors'
4153 had a 50-1 reverse stock split. Not sure how connected these were.)
4154 So I don't trust someone not to have an unpredictable UDP stack.
4155 */
4156
4157 {
4158 struct timeval waitfor = {0, 100000}; /* You have 0.1 seconds */
4159 int max = sockets[1] > sockets[0] ? sockets[1] : sockets[0];
4160 fd_set rset;
4161
4162 FD_ZERO(&rset);
4163 FD_SET((unsigned int)sockets[0], &rset);
4164 FD_SET((unsigned int)sockets[1], &rset);
4165
4166 got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
4167 if (got != 2 || !FD_ISSET(sockets[0], &rset)
4168 || !FD_ISSET(sockets[1], &rset)) {
4169 /* I hope this is portable and appropriate. */
4170 if (got == -1)
4171 goto tidy_up_and_fail;
4172 goto abort_tidy_up_and_fail;
4173 }
4174 }
4175
4176 /* And the paranoia department even now doesn't trust it to have arrive
4177 (hence MSG_DONTWAIT). Or that what arrives was sent by us. */
4178 {
4179 struct sockaddr_in readfrom;
4180 unsigned short buffer[2];
4181
4182 i = 1;
4183 do {
4184#ifdef MSG_DONTWAIT
4185 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4186 sizeof(buffer), MSG_DONTWAIT,
4187 (struct sockaddr *) &readfrom, &size);
4188#else
4189 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4190 sizeof(buffer), 0,
4191 (struct sockaddr *) &readfrom, &size);
4192#endif
4193
4194 if (got == -1)
4195 goto tidy_up_and_fail;
4196 if (got != sizeof(port)
4197 || size != sizeof(struct sockaddr_in)
4198 /* Check other socket sent us its port. */
4199 || buffer[0] != (unsigned short) addresses[!i].sin_port
4200 /* Check kernel says we got the datagram from that socket */
4201 || readfrom.sin_family != addresses[!i].sin_family
4202 || readfrom.sin_addr.s_addr != addresses[!i].sin_addr.s_addr
4203 || readfrom.sin_port != addresses[!i].sin_port)
4204 goto abort_tidy_up_and_fail;
4205 } while (i--);
4206 }
4207 /* My caller (my_socketpair) has validated that this is non-NULL */
4208 fd[0] = sockets[0];
4209 fd[1] = sockets[1];
4210 /* I hereby declare this connection open. May God bless all who cross
4211 her. */
4212 return 0;
4213
4214 abort_tidy_up_and_fail:
4215 errno = ECONNABORTED;
4216 tidy_up_and_fail:
4217 {
4218 dSAVE_ERRNO;
4219 if (sockets[0] != -1)
4220 PerlLIO_close(sockets[0]);
4221 if (sockets[1] != -1)
4222 PerlLIO_close(sockets[1]);
4223 RESTORE_ERRNO;
4224 return -1;
4225 }
4226}
4227#endif /* EMULATE_SOCKETPAIR_UDP */
4228
4229#if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET)
4230int
4231Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
4232 /* Stevens says that family must be AF_LOCAL, protocol 0.
4233 I'm going to enforce that, then ignore it, and use TCP (or UDP). */
4234 dTHXa(NULL);
4235 int listener = -1;
4236 int connector = -1;
4237 int acceptor = -1;
4238 struct sockaddr_in listen_addr;
4239 struct sockaddr_in connect_addr;
4240 Sock_size_t size;
4241
4242 if (protocol
4243#ifdef AF_UNIX
4244 || family != AF_UNIX
4245#endif
4246 ) {
4247 errno = EAFNOSUPPORT;
4248 return -1;
4249 }
4250 if (!fd) {
4251 errno = EINVAL;
4252 return -1;
4253 }
4254
4255#ifdef SOCK_CLOEXEC
4256 type &= ~SOCK_CLOEXEC;
4257#endif
4258
4259#ifdef EMULATE_SOCKETPAIR_UDP
4260 if (type == SOCK_DGRAM)
4261 return S_socketpair_udp(fd);
4262#endif
4263
4264 aTHXa(PERL_GET_THX);
4265 listener = PerlSock_socket(AF_INET, type, 0);
4266 if (listener == -1)
4267 return -1;
4268 memset(&listen_addr, 0, sizeof(listen_addr));
4269 listen_addr.sin_family = AF_INET;
4270 listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4271 listen_addr.sin_port = 0; /* kernel choses port. */
4272 if (PerlSock_bind(listener, (struct sockaddr *) &listen_addr,
4273 sizeof(listen_addr)) == -1)
4274 goto tidy_up_and_fail;
4275 if (PerlSock_listen(listener, 1) == -1)
4276 goto tidy_up_and_fail;
4277
4278 connector = PerlSock_socket(AF_INET, type, 0);
4279 if (connector == -1)
4280 goto tidy_up_and_fail;
4281 /* We want to find out the port number to connect to. */
4282 size = sizeof(connect_addr);
4283 if (PerlSock_getsockname(listener, (struct sockaddr *) &connect_addr,
4284 &size) == -1)
4285 goto tidy_up_and_fail;
4286 if (size != sizeof(connect_addr))
4287 goto abort_tidy_up_and_fail;
4288 if (PerlSock_connect(connector, (struct sockaddr *) &connect_addr,
4289 sizeof(connect_addr)) == -1)
4290 goto tidy_up_and_fail;
4291
4292 size = sizeof(listen_addr);
4293 acceptor = PerlSock_accept(listener, (struct sockaddr *) &listen_addr,
4294 &size);
4295 if (acceptor == -1)
4296 goto tidy_up_and_fail;
4297 if (size != sizeof(listen_addr))
4298 goto abort_tidy_up_and_fail;
4299 PerlLIO_close(listener);
4300 /* Now check we are talking to ourself by matching port and host on the
4301 two sockets. */
4302 if (PerlSock_getsockname(connector, (struct sockaddr *) &connect_addr,
4303 &size) == -1)
4304 goto tidy_up_and_fail;
4305 if (size != sizeof(connect_addr)
4306 || listen_addr.sin_family != connect_addr.sin_family
4307 || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr
4308 || listen_addr.sin_port != connect_addr.sin_port) {
4309 goto abort_tidy_up_and_fail;
4310 }
4311 fd[0] = connector;
4312 fd[1] = acceptor;
4313 return 0;
4314
4315 abort_tidy_up_and_fail:
4316#ifdef ECONNABORTED
4317 errno = ECONNABORTED; /* This would be the standard thing to do. */
4318#elif defined(ECONNREFUSED)
4319 errno = ECONNREFUSED; /* E.g. Symbian does not have ECONNABORTED. */
4320#else
4321 errno = ETIMEDOUT; /* Desperation time. */
4322#endif
4323 tidy_up_and_fail:
4324 {
4325 dSAVE_ERRNO;
4326 if (listener != -1)
4327 PerlLIO_close(listener);
4328 if (connector != -1)
4329 PerlLIO_close(connector);
4330 if (acceptor != -1)
4331 PerlLIO_close(acceptor);
4332 RESTORE_ERRNO;
4333 return -1;
4334 }
4335}
4336#else
4337/* In any case have a stub so that there's code corresponding
4338 * to the my_socketpair in embed.fnc. */
4339int
4340Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
4341#ifdef HAS_SOCKETPAIR
4342 return socketpair(family, type, protocol, fd);
4343#else
4344 return -1;
4345#endif
4346}
4347#endif
4348
4349/*
4350
4351=for apidoc sv_nosharing
4352
4353Dummy routine which "shares" an SV when there is no sharing module present.
4354Or "locks" it. Or "unlocks" it. In other
4355words, ignores its single SV argument.
4356Exists to avoid test for a C<NULL> function pointer and because it could
4357potentially warn under some level of strict-ness.
4358
4359=cut
4360*/
4361
4362void
4363Perl_sv_nosharing(pTHX_ SV *sv)
4364{
4365 PERL_UNUSED_CONTEXT;
4366 PERL_UNUSED_ARG(sv);
4367}
4368
4369/*
4370
4371=for apidoc sv_destroyable
4372
4373Dummy routine which reports that object can be destroyed when there is no
4374sharing module present. It ignores its single SV argument, and returns
4375'true'. Exists to avoid test for a C<NULL> function pointer and because it
4376could potentially warn under some level of strict-ness.
4377
4378=cut
4379*/
4380
4381bool
4382Perl_sv_destroyable(pTHX_ SV *sv)
4383{
4384 PERL_UNUSED_CONTEXT;
4385 PERL_UNUSED_ARG(sv);
4386 return TRUE;
4387}
4388
4389U32
4390Perl_parse_unicode_opts(pTHX_ const char **popt)
4391{
4392 const char *p = *popt;
4393 U32 opt = 0;
4394
4395 PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS;
4396
4397 if (*p) {
4398 if (isDIGIT(*p)) {
4399 const char* endptr = p + strlen(p);
4400 UV uv;
4401 if (grok_atoUV(p, &uv, &endptr) && uv <= U32_MAX) {
4402 opt = (U32)uv;
4403 p = endptr;
4404 if (p && *p && *p != '\n' && *p != '\r') {
4405 if (isSPACE(*p))
4406 goto the_end_of_the_opts_parser;
4407 else
4408 Perl_croak(aTHX_ "Unknown Unicode option letter '%c'", *p);
4409 }
4410 }
4411 else {
4412 Perl_croak(aTHX_ "Invalid number '%s' for -C option.\n", p);
4413 }
4414 }
4415 else {
4416 for (; *p; p++) {
4417 switch (*p) {
4418 case PERL_UNICODE_STDIN:
4419 opt |= PERL_UNICODE_STDIN_FLAG; break;
4420 case PERL_UNICODE_STDOUT:
4421 opt |= PERL_UNICODE_STDOUT_FLAG; break;
4422 case PERL_UNICODE_STDERR:
4423 opt |= PERL_UNICODE_STDERR_FLAG; break;
4424 case PERL_UNICODE_STD:
4425 opt |= PERL_UNICODE_STD_FLAG; break;
4426 case PERL_UNICODE_IN:
4427 opt |= PERL_UNICODE_IN_FLAG; break;
4428 case PERL_UNICODE_OUT:
4429 opt |= PERL_UNICODE_OUT_FLAG; break;
4430 case PERL_UNICODE_INOUT:
4431 opt |= PERL_UNICODE_INOUT_FLAG; break;
4432 case PERL_UNICODE_LOCALE:
4433 opt |= PERL_UNICODE_LOCALE_FLAG; break;
4434 case PERL_UNICODE_ARGV:
4435 opt |= PERL_UNICODE_ARGV_FLAG; break;
4436 case PERL_UNICODE_UTF8CACHEASSERT:
4437 opt |= PERL_UNICODE_UTF8CACHEASSERT_FLAG; break;
4438 default:
4439 if (*p != '\n' && *p != '\r') {
4440 if(isSPACE(*p)) goto the_end_of_the_opts_parser;
4441 else
4442 Perl_croak(aTHX_
4443 "Unknown Unicode option letter '%c'", *p);
4444 }
4445 }
4446 }
4447 }
4448 }
4449 else
4450 opt = PERL_UNICODE_DEFAULT_FLAGS;
4451
4452 the_end_of_the_opts_parser:
4453
4454 if (opt & ~PERL_UNICODE_ALL_FLAGS)
4455 Perl_croak(aTHX_ "Unknown Unicode option value %" UVuf,
4456 (UV) (opt & ~PERL_UNICODE_ALL_FLAGS));
4457
4458 *popt = p;
4459
4460 return opt;
4461}
4462
4463#ifdef VMS
4464# include <starlet.h>
4465#endif
4466
4467U32
4468Perl_seed(pTHX)
4469{
4470 /*
4471 * This is really just a quick hack which grabs various garbage
4472 * values. It really should be a real hash algorithm which
4473 * spreads the effect of every input bit onto every output bit,
4474 * if someone who knows about such things would bother to write it.
4475 * Might be a good idea to add that function to CORE as well.
4476 * No numbers below come from careful analysis or anything here,
4477 * except they are primes and SEED_C1 > 1E6 to get a full-width
4478 * value from (tv_sec * SEED_C1 + tv_usec). The multipliers should
4479 * probably be bigger too.
4480 */
4481#if RANDBITS > 16
4482# define SEED_C1 1000003
4483#define SEED_C4 73819
4484#else
4485# define SEED_C1 25747
4486#define SEED_C4 20639
4487#endif
4488#define SEED_C2 3
4489#define SEED_C3 269
4490#define SEED_C5 26107
4491
4492#ifndef PERL_NO_DEV_RANDOM
4493 int fd;
4494#endif
4495 U32 u;
4496#ifdef HAS_GETTIMEOFDAY
4497 struct timeval when;
4498#else
4499 Time_t when;
4500#endif
4501
4502/* This test is an escape hatch, this symbol isn't set by Configure. */
4503#ifndef PERL_NO_DEV_RANDOM
4504#ifndef PERL_RANDOM_DEVICE
4505 /* /dev/random isn't used by default because reads from it will block
4506 * if there isn't enough entropy available. You can compile with
4507 * PERL_RANDOM_DEVICE to it if you'd prefer Perl to block until there
4508 * is enough real entropy to fill the seed. */
4509# ifdef __amigaos4__
4510# define PERL_RANDOM_DEVICE "RANDOM:SIZE=4"
4511# else
4512# define PERL_RANDOM_DEVICE "/dev/urandom"
4513# endif
4514#endif
4515 fd = PerlLIO_open_cloexec(PERL_RANDOM_DEVICE, 0);
4516 if (fd != -1) {
4517 if (PerlLIO_read(fd, (void*)&u, sizeof u) != sizeof u)
4518 u = 0;
4519 PerlLIO_close(fd);
4520 if (u)
4521 return u;
4522 }
4523#endif
4524
4525#ifdef HAS_GETTIMEOFDAY
4526 PerlProc_gettimeofday(&when,NULL);
4527 u = (U32)SEED_C1 * when.tv_sec + (U32)SEED_C2 * when.tv_usec;
4528#else
4529 (void)time(&when);
4530 u = (U32)SEED_C1 * when;
4531#endif
4532 u += SEED_C3 * (U32)PerlProc_getpid();
4533 u += SEED_C4 * (U32)PTR2UV(PL_stack_sp);
4534#ifndef PLAN9 /* XXX Plan9 assembler chokes on this; fix needed */
4535 u += SEED_C5 * (U32)PTR2UV(&when);
4536#endif
4537 return u;
4538}
4539
4540void
4541Perl_get_hash_seed(pTHX_ unsigned char * const seed_buffer)
4542{
4543#ifndef NO_PERL_HASH_ENV
4544 const char *env_pv;
4545#endif
4546 unsigned long i;
4547
4548 PERL_ARGS_ASSERT_GET_HASH_SEED;
4549
4550#ifndef NO_PERL_HASH_ENV
4551 env_pv= PerlEnv_getenv("PERL_HASH_SEED");
4552
4553 if ( env_pv )
4554 {
4555 /* ignore leading spaces */
4556 while (isSPACE(*env_pv))
4557 env_pv++;
4558# ifdef USE_PERL_PERTURB_KEYS
4559 /* if they set it to "0" we disable key traversal randomization completely */
4560 if (strEQ(env_pv,"0")) {
4561 PL_hash_rand_bits_enabled= 0;
4562 } else {
4563 /* otherwise switch to deterministic mode */
4564 PL_hash_rand_bits_enabled= 2;
4565 }
4566# endif
4567 /* ignore a leading 0x... if it is there */
4568 if (env_pv[0] == '0' && env_pv[1] == 'x')
4569 env_pv += 2;
4570
4571 for( i = 0; isXDIGIT(*env_pv) && i < PERL_HASH_SEED_BYTES; i++ ) {
4572 seed_buffer[i] = READ_XDIGIT(env_pv) << 4;
4573 if ( isXDIGIT(*env_pv)) {
4574 seed_buffer[i] |= READ_XDIGIT(env_pv);
4575 }
4576 }
4577 while (isSPACE(*env_pv))
4578 env_pv++;
4579
4580 if (*env_pv && !isXDIGIT(*env_pv)) {
4581 Perl_warn(aTHX_ "perl: warning: Non hex character in '$ENV{PERL_HASH_SEED}', seed only partially set\n");
4582 }
4583 /* should we check for unparsed crap? */
4584 /* should we warn about unused hex? */
4585 /* should we warn about insufficient hex? */
4586 }
4587 else
4588#endif /* NO_PERL_HASH_ENV */
4589 {
4590 for( i = 0; i < PERL_HASH_SEED_BYTES; i++ ) {
4591 seed_buffer[i] = (unsigned char)(Perl_internal_drand48() * (U8_MAX+1));
4592 }
4593 }
4594#ifdef USE_PERL_PERTURB_KEYS
4595 { /* initialize PL_hash_rand_bits from the hash seed.
4596 * This value is highly volatile, it is updated every
4597 * hash insert, and is used as part of hash bucket chain
4598 * randomization and hash iterator randomization. */
4599 PL_hash_rand_bits= 0xbe49d17f; /* I just picked a number */
4600 for( i = 0; i < sizeof(UV) ; i++ ) {
4601 PL_hash_rand_bits += seed_buffer[i % PERL_HASH_SEED_BYTES];
4602 PL_hash_rand_bits = ROTL_UV(PL_hash_rand_bits,8);
4603 }
4604 }
4605# ifndef NO_PERL_HASH_ENV
4606 env_pv= PerlEnv_getenv("PERL_PERTURB_KEYS");
4607 if (env_pv) {
4608 if (strEQ(env_pv,"0") || strEQ(env_pv,"NO")) {
4609 PL_hash_rand_bits_enabled= 0;
4610 } else if (strEQ(env_pv,"1") || strEQ(env_pv,"RANDOM")) {
4611 PL_hash_rand_bits_enabled= 1;
4612 } else if (strEQ(env_pv,"2") || strEQ(env_pv,"DETERMINISTIC")) {
4613 PL_hash_rand_bits_enabled= 2;
4614 } else {
4615 Perl_warn(aTHX_ "perl: warning: strange setting in '$ENV{PERL_PERTURB_KEYS}': '%s'\n", env_pv);
4616 }
4617 }
4618# endif
4619#endif
4620}
4621
4622#ifdef PERL_GLOBAL_STRUCT
4623
4624#define PERL_GLOBAL_STRUCT_INIT
4625#include "opcode.h" /* the ppaddr and check */
4626
4627struct perl_vars *
4628Perl_init_global_struct(pTHX)
4629{
4630 struct perl_vars *plvarsp = NULL;
4631# ifdef PERL_GLOBAL_STRUCT
4632 const IV nppaddr = C_ARRAY_LENGTH(Gppaddr);
4633 const IV ncheck = C_ARRAY_LENGTH(Gcheck);
4634 PERL_UNUSED_CONTEXT;
4635# ifdef PERL_GLOBAL_STRUCT_PRIVATE
4636 /* PerlMem_malloc() because can't use even safesysmalloc() this early. */
4637 plvarsp = (struct perl_vars*)PerlMem_malloc(sizeof(struct perl_vars));
4638 if (!plvarsp)
4639 exit(1);
4640# else
4641 plvarsp = PL_VarsPtr;
4642# endif /* PERL_GLOBAL_STRUCT_PRIVATE */
4643# undef PERLVAR
4644# undef PERLVARA
4645# undef PERLVARI
4646# undef PERLVARIC
4647# define PERLVAR(prefix,var,type) /**/
4648# define PERLVARA(prefix,var,n,type) /**/
4649# define PERLVARI(prefix,var,type,init) plvarsp->prefix##var = init;
4650# define PERLVARIC(prefix,var,type,init) plvarsp->prefix##var = init;
4651# include "perlvars.h"
4652# undef PERLVAR
4653# undef PERLVARA
4654# undef PERLVARI
4655# undef PERLVARIC
4656# ifdef PERL_GLOBAL_STRUCT
4657 plvarsp->Gppaddr =
4658 (Perl_ppaddr_t*)
4659 PerlMem_malloc(nppaddr * sizeof(Perl_ppaddr_t));
4660 if (!plvarsp->Gppaddr)
4661 exit(1);
4662 plvarsp->Gcheck =
4663 (Perl_check_t*)
4664 PerlMem_malloc(ncheck * sizeof(Perl_check_t));
4665 if (!plvarsp->Gcheck)
4666 exit(1);
4667 Copy(Gppaddr, plvarsp->Gppaddr, nppaddr, Perl_ppaddr_t);
4668 Copy(Gcheck, plvarsp->Gcheck, ncheck, Perl_check_t);
4669# endif
4670# ifdef PERL_SET_VARS
4671 PERL_SET_VARS(plvarsp);
4672# endif
4673# ifdef PERL_GLOBAL_STRUCT_PRIVATE
4674 plvarsp->Gsv_placeholder.sv_flags = 0;
4675 memset(plvarsp->Ghash_seed, 0, sizeof(plvarsp->Ghash_seed));
4676# endif
4677# undef PERL_GLOBAL_STRUCT_INIT
4678# endif
4679 return plvarsp;
4680}
4681
4682#endif /* PERL_GLOBAL_STRUCT */
4683
4684#ifdef PERL_GLOBAL_STRUCT
4685
4686void
4687Perl_free_global_struct(pTHX_ struct perl_vars *plvarsp)
4688{
4689 int veto = plvarsp->Gveto_cleanup;
4690
4691 PERL_ARGS_ASSERT_FREE_GLOBAL_STRUCT;
4692 PERL_UNUSED_CONTEXT;
4693# ifdef PERL_GLOBAL_STRUCT
4694# ifdef PERL_UNSET_VARS
4695 PERL_UNSET_VARS(plvarsp);
4696# endif
4697 if (veto)
4698 return;
4699 free(plvarsp->Gppaddr);
4700 free(plvarsp->Gcheck);
4701# ifdef PERL_GLOBAL_STRUCT_PRIVATE
4702 free(plvarsp);
4703# endif
4704# endif
4705}
4706
4707#endif /* PERL_GLOBAL_STRUCT */
4708
4709#ifdef PERL_MEM_LOG
4710
4711/* -DPERL_MEM_LOG: the Perl_mem_log_..() is compiled, including
4712 * the default implementation, unless -DPERL_MEM_LOG_NOIMPL is also
4713 * given, and you supply your own implementation.
4714 *
4715 * The default implementation reads a single env var, PERL_MEM_LOG,
4716 * expecting one or more of the following:
4717 *
4718 * \d+ - fd fd to write to : must be 1st (grok_atoUV)
4719 * 'm' - memlog was PERL_MEM_LOG=1
4720 * 's' - svlog was PERL_SV_LOG=1
4721 * 't' - timestamp was PERL_MEM_LOG_TIMESTAMP=1
4722 *
4723 * This makes the logger controllable enough that it can reasonably be
4724 * added to the system perl.
4725 */
4726
4727/* -DPERL_MEM_LOG_SPRINTF_BUF_SIZE=X: size of a (stack-allocated) buffer
4728 * the Perl_mem_log_...() will use (either via sprintf or snprintf).
4729 */
4730#define PERL_MEM_LOG_SPRINTF_BUF_SIZE 128
4731
4732/* -DPERL_MEM_LOG_FD=N: the file descriptor the Perl_mem_log_...()
4733 * writes to. In the default logger, this is settable at runtime.
4734 */
4735#ifndef PERL_MEM_LOG_FD
4736# define PERL_MEM_LOG_FD 2 /* If STDERR is too boring for you. */
4737#endif
4738
4739#ifndef PERL_MEM_LOG_NOIMPL
4740
4741# ifdef DEBUG_LEAKING_SCALARS
4742# define SV_LOG_SERIAL_FMT " [%lu]"
4743# define _SV_LOG_SERIAL_ARG(sv) , (unsigned long) (sv)->sv_debug_serial
4744# else
4745# define SV_LOG_SERIAL_FMT
4746# define _SV_LOG_SERIAL_ARG(sv)
4747# endif
4748
4749static void
4750S_mem_log_common(enum mem_log_type mlt, const UV n,
4751 const UV typesize, const char *type_name, const SV *sv,
4752 Malloc_t oldalloc, Malloc_t newalloc,
4753 const char *filename, const int linenumber,
4754 const char *funcname)
4755{
4756 const char *pmlenv;
4757
4758 PERL_ARGS_ASSERT_MEM_LOG_COMMON;
4759
4760 pmlenv = PerlEnv_getenv("PERL_MEM_LOG");
4761 if (!pmlenv)
4762 return;
4763 if (mlt < MLT_NEW_SV ? strchr(pmlenv,'m') : strchr(pmlenv,'s'))
4764 {
4765 /* We can't use SVs or PerlIO for obvious reasons,
4766 * so we'll use stdio and low-level IO instead. */
4767 char buf[PERL_MEM_LOG_SPRINTF_BUF_SIZE];
4768
4769# ifdef HAS_GETTIMEOFDAY
4770# define MEM_LOG_TIME_FMT "%10d.%06d: "
4771# define MEM_LOG_TIME_ARG (int)tv.tv_sec, (int)tv.tv_usec
4772 struct timeval tv;
4773 gettimeofday(&tv, 0);
4774# else
4775# define MEM_LOG_TIME_FMT "%10d: "
4776# define MEM_LOG_TIME_ARG (int)when
4777 Time_t when;
4778 (void)time(&when);
4779# endif
4780 /* If there are other OS specific ways of hires time than
4781 * gettimeofday() (see dist/Time-HiRes), the easiest way is
4782 * probably that they would be used to fill in the struct
4783 * timeval. */
4784 {
4785 STRLEN len;
4786 const char* endptr = pmlenv + strlen(pmlenv);
4787 int fd;
4788 UV uv;
4789 if (grok_atoUV(pmlenv, &uv, &endptr) /* Ignore endptr. */
4790 && uv && uv <= PERL_INT_MAX
4791 ) {
4792 fd = (int)uv;
4793 } else {
4794 fd = PERL_MEM_LOG_FD;
4795 }
4796
4797 if (strchr(pmlenv, 't')) {
4798 len = my_snprintf(buf, sizeof(buf),
4799 MEM_LOG_TIME_FMT, MEM_LOG_TIME_ARG);
4800 PERL_UNUSED_RESULT(PerlLIO_write(fd, buf, len));
4801 }
4802 switch (mlt) {
4803 case MLT_ALLOC:
4804 len = my_snprintf(buf, sizeof(buf),
4805 "alloc: %s:%d:%s: %" IVdf " %" UVuf
4806 " %s = %" IVdf ": %" UVxf "\n",
4807 filename, linenumber, funcname, n, typesize,
4808 type_name, n * typesize, PTR2UV(newalloc));
4809 break;
4810 case MLT_REALLOC:
4811 len = my_snprintf(buf, sizeof(buf),
4812 "realloc: %s:%d:%s: %" IVdf " %" UVuf
4813 " %s = %" IVdf ": %" UVxf " -> %" UVxf "\n",
4814 filename, linenumber, funcname, n, typesize,
4815 type_name, n * typesize, PTR2UV(oldalloc),
4816 PTR2UV(newalloc));
4817 break;
4818 case MLT_FREE:
4819 len = my_snprintf(buf, sizeof(buf),
4820 "free: %s:%d:%s: %" UVxf "\n",
4821 filename, linenumber, funcname,
4822 PTR2UV(oldalloc));
4823 break;
4824 case MLT_NEW_SV:
4825 case MLT_DEL_SV:
4826 len = my_snprintf(buf, sizeof(buf),
4827 "%s_SV: %s:%d:%s: %" UVxf SV_LOG_SERIAL_FMT "\n",
4828 mlt == MLT_NEW_SV ? "new" : "del",
4829 filename, linenumber, funcname,
4830 PTR2UV(sv) _SV_LOG_SERIAL_ARG(sv));
4831 break;
4832 default:
4833 len = 0;
4834 }
4835 PERL_UNUSED_RESULT(PerlLIO_write(fd, buf, len));
4836 }
4837 }
4838}
4839#endif /* !PERL_MEM_LOG_NOIMPL */
4840
4841#ifndef PERL_MEM_LOG_NOIMPL
4842# define \
4843 mem_log_common_if(alty, num, tysz, tynm, sv, oal, nal, flnm, ln, fnnm) \
4844 mem_log_common (alty, num, tysz, tynm, sv, oal, nal, flnm, ln, fnnm)
4845#else
4846/* this is suboptimal, but bug compatible. User is providing their
4847 own implementation, but is getting these functions anyway, and they
4848 do nothing. But _NOIMPL users should be able to cope or fix */
4849# define \
4850 mem_log_common_if(alty, num, tysz, tynm, u, oal, nal, flnm, ln, fnnm) \
4851 /* mem_log_common_if_PERL_MEM_LOG_NOIMPL */
4852#endif
4853
4854Malloc_t
4855Perl_mem_log_alloc(const UV n, const UV typesize, const char *type_name,
4856 Malloc_t newalloc,
4857 const char *filename, const int linenumber,
4858 const char *funcname)
4859{
4860 PERL_ARGS_ASSERT_MEM_LOG_ALLOC;
4861
4862 mem_log_common_if(MLT_ALLOC, n, typesize, type_name,
4863 NULL, NULL, newalloc,
4864 filename, linenumber, funcname);
4865 return newalloc;
4866}
4867
4868Malloc_t
4869Perl_mem_log_realloc(const UV n, const UV typesize, const char *type_name,
4870 Malloc_t oldalloc, Malloc_t newalloc,
4871 const char *filename, const int linenumber,
4872 const char *funcname)
4873{
4874 PERL_ARGS_ASSERT_MEM_LOG_REALLOC;
4875
4876 mem_log_common_if(MLT_REALLOC, n, typesize, type_name,
4877 NULL, oldalloc, newalloc,
4878 filename, linenumber, funcname);
4879 return newalloc;
4880}
4881
4882Malloc_t
4883Perl_mem_log_free(Malloc_t oldalloc,
4884 const char *filename, const int linenumber,
4885 const char *funcname)
4886{
4887 PERL_ARGS_ASSERT_MEM_LOG_FREE;
4888
4889 mem_log_common_if(MLT_FREE, 0, 0, "", NULL, oldalloc, NULL,
4890 filename, linenumber, funcname);
4891 return oldalloc;
4892}
4893
4894void
4895Perl_mem_log_new_sv(const SV *sv,
4896 const char *filename, const int linenumber,
4897 const char *funcname)
4898{
4899 mem_log_common_if(MLT_NEW_SV, 0, 0, "", sv, NULL, NULL,
4900 filename, linenumber, funcname);
4901}
4902
4903void
4904Perl_mem_log_del_sv(const SV *sv,
4905 const char *filename, const int linenumber,
4906 const char *funcname)
4907{
4908 mem_log_common_if(MLT_DEL_SV, 0, 0, "", sv, NULL, NULL,
4909 filename, linenumber, funcname);
4910}
4911
4912#endif /* PERL_MEM_LOG */
4913
4914/*
4915=for apidoc quadmath_format_single
4916
4917C<quadmath_snprintf()> is very strict about its C<format> string and will
4918fail, returning -1, if the format is invalid. It accepts exactly
4919one format spec.
4920
4921C<quadmath_format_single()> checks that the intended single spec looks
4922sane: begins with C<%>, has only one C<%>, ends with C<[efgaEFGA]>,
4923and has C<Q> before it. This is not a full "printf syntax check",
4924just the basics.
4925
4926Returns the format if it is valid, NULL if not.
4927
4928C<quadmath_format_single()> can and will actually patch in the missing
4929C<Q>, if necessary. In this case it will return the modified copy of
4930the format, B<which the caller will need to free.>
4931
4932See also L</quadmath_format_needed>.
4933
4934=cut
4935*/
4936#ifdef USE_QUADMATH
4937const char*
4938Perl_quadmath_format_single(const char* format)
4939{
4940 STRLEN len;
4941
4942 PERL_ARGS_ASSERT_QUADMATH_FORMAT_SINGLE;
4943
4944 if (format[0] != '%' || strchr(format + 1, '%'))
4945 return NULL;
4946 len = strlen(format);
4947 /* minimum length three: %Qg */
4948 if (len < 3 || strchr("efgaEFGA", format[len - 1]) == NULL)
4949 return NULL;
4950 if (format[len - 2] != 'Q') {
4951 char* fixed;
4952 Newx(fixed, len + 2, char);
4953 memcpy(fixed, format, len - 1);
4954 fixed[len - 1] = 'Q';
4955 fixed[len ] = format[len - 1];
4956 fixed[len + 1] = 0;
4957 return (const char*)fixed;
4958 }
4959 return format;
4960}
4961#endif
4962
4963/*
4964=for apidoc quadmath_format_needed
4965
4966C<quadmath_format_needed()> returns true if the C<format> string seems to
4967contain at least one non-Q-prefixed C<%[efgaEFGA]> format specifier,
4968or returns false otherwise.
4969
4970The format specifier detection is not complete printf-syntax detection,
4971but it should catch most common cases.
4972
4973If true is returned, those arguments B<should> in theory be processed
4974with C<quadmath_snprintf()>, but in case there is more than one such
4975format specifier (see L</quadmath_format_single>), and if there is
4976anything else beyond that one (even just a single byte), they
4977B<cannot> be processed because C<quadmath_snprintf()> is very strict,
4978accepting only one format spec, and nothing else.
4979In this case, the code should probably fail.
4980
4981=cut
4982*/
4983#ifdef USE_QUADMATH
4984bool
4985Perl_quadmath_format_needed(const char* format)
4986{
4987 const char *p = format;
4988 const char *q;
4989
4990 PERL_ARGS_ASSERT_QUADMATH_FORMAT_NEEDED;
4991
4992 while ((q = strchr(p, '%'))) {
4993 q++;
4994 if (*q == '+') /* plus */
4995 q++;
4996 if (*q == '#') /* alt */
4997 q++;
4998 if (*q == '*') /* width */
4999 q++;
5000 else {
5001 if (isDIGIT(*q)) {
5002 while (isDIGIT(*q)) q++;
5003 }
5004 }
5005 if (*q == '.' && (q[1] == '*' || isDIGIT(q[1]))) { /* prec */
5006 q++;
5007 if (*q == '*')
5008 q++;
5009 else
5010 while (isDIGIT(*q)) q++;
5011 }
5012 if (strchr("efgaEFGA", *q)) /* Would have needed 'Q' in front. */
5013 return TRUE;
5014 p = q + 1;
5015 }
5016 return FALSE;
5017}
5018#endif
5019
5020/*
5021=for apidoc my_snprintf
5022
5023The C library C<snprintf> functionality, if available and
5024standards-compliant (uses C<vsnprintf>, actually). However, if the
5025C<vsnprintf> is not available, will unfortunately use the unsafe
5026C<vsprintf> which can overrun the buffer (there is an overrun check,
5027but that may be too late). Consider using C<sv_vcatpvf> instead, or
5028getting C<vsnprintf>.
5029
5030=cut
5031*/
5032int
5033Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...)
5034{
5035 int retval = -1;
5036 va_list ap;
5037 PERL_ARGS_ASSERT_MY_SNPRINTF;
5038#ifndef HAS_VSNPRINTF
5039 PERL_UNUSED_VAR(len);
5040#endif
5041 va_start(ap, format);
5042#ifdef USE_QUADMATH
5043 {
5044 const char* qfmt = quadmath_format_single(format);
5045 bool quadmath_valid = FALSE;
5046 if (qfmt) {
5047 /* If the format looked promising, use it as quadmath. */
5048 retval = quadmath_snprintf(buffer, len, qfmt, va_arg(ap, NV));
5049 if (retval == -1) {
5050 if (qfmt != format) {
5051 dTHX;
5052 SAVEFREEPV(qfmt);
5053 }
5054 Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s\"", qfmt);
5055 }
5056 quadmath_valid = TRUE;
5057 if (qfmt != format)
5058 Safefree(qfmt);
5059 qfmt = NULL;
5060 }
5061 assert(qfmt == NULL);
5062 /* quadmath_format_single() will return false for example for
5063 * "foo = %g", or simply "%g". We could handle the %g by
5064 * using quadmath for the NV args. More complex cases of
5065 * course exist: "foo = %g, bar = %g", or "foo=%Qg" (otherwise
5066 * quadmath-valid but has stuff in front).
5067 *
5068 * Handling the "Q-less" cases right would require walking
5069 * through the va_list and rewriting the format, calling
5070 * quadmath for the NVs, building a new va_list, and then
5071 * letting vsnprintf/vsprintf to take care of the other
5072 * arguments. This may be doable.
5073 *
5074 * We do not attempt that now. But for paranoia, we here try
5075 * to detect some common (but not all) cases where the
5076 * "Q-less" %[efgaEFGA] formats are present, and die if
5077 * detected. This doesn't fix the problem, but it stops the
5078 * vsnprintf/vsprintf pulling doubles off the va_list when
5079 * __float128 NVs should be pulled off instead.
5080 *
5081 * If quadmath_format_needed() returns false, we are reasonably
5082 * certain that we can call vnsprintf() or vsprintf() safely. */
5083 if (!quadmath_valid && quadmath_format_needed(format))
5084 Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s\"", format);
5085
5086 }
5087#endif
5088 if (retval == -1)
5089#ifdef HAS_VSNPRINTF
5090 retval = vsnprintf(buffer, len, format, ap);
5091#else
5092 retval = vsprintf(buffer, format, ap);
5093#endif
5094 va_end(ap);
5095 /* vsprintf() shows failure with < 0 */
5096 if (retval < 0
5097#ifdef HAS_VSNPRINTF
5098 /* vsnprintf() shows failure with >= len */
5099 ||
5100 (len > 0 && (Size_t)retval >= len)
5101#endif
5102 )
5103 Perl_croak_nocontext("panic: my_snprintf buffer overflow");
5104 return retval;
5105}
5106
5107/*
5108=for apidoc my_vsnprintf
5109
5110The C library C<vsnprintf> if available and standards-compliant.
5111However, if if the C<vsnprintf> is not available, will unfortunately
5112use the unsafe C<vsprintf> which can overrun the buffer (there is an
5113overrun check, but that may be too late). Consider using
5114C<sv_vcatpvf> instead, or getting C<vsnprintf>.
5115
5116=cut
5117*/
5118int
5119Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap)
5120{
5121#ifdef USE_QUADMATH
5122 PERL_UNUSED_ARG(buffer);
5123 PERL_UNUSED_ARG(len);
5124 PERL_UNUSED_ARG(format);
5125 /* the cast is to avoid gcc -Wsizeof-array-argument complaining */
5126 PERL_UNUSED_ARG((void*)ap);
5127 Perl_croak_nocontext("panic: my_vsnprintf not available with quadmath");
5128 return 0;
5129#else
5130 int retval;
5131#ifdef NEED_VA_COPY
5132 va_list apc;
5133
5134 PERL_ARGS_ASSERT_MY_VSNPRINTF;
5135 Perl_va_copy(ap, apc);
5136# ifdef HAS_VSNPRINTF
5137 retval = vsnprintf(buffer, len, format, apc);
5138# else
5139 PERL_UNUSED_ARG(len);
5140 retval = vsprintf(buffer, format, apc);
5141# endif
5142 va_end(apc);
5143#else
5144# ifdef HAS_VSNPRINTF
5145 retval = vsnprintf(buffer, len, format, ap);
5146# else
5147 PERL_UNUSED_ARG(len);
5148 retval = vsprintf(buffer, format, ap);
5149# endif
5150#endif /* #ifdef NEED_VA_COPY */
5151 /* vsprintf() shows failure with < 0 */
5152 if (retval < 0
5153#ifdef HAS_VSNPRINTF
5154 /* vsnprintf() shows failure with >= len */
5155 ||
5156 (len > 0 && (Size_t)retval >= len)
5157#endif
5158 )
5159 Perl_croak_nocontext("panic: my_vsnprintf buffer overflow");
5160 return retval;
5161#endif
5162}
5163
5164void
5165Perl_my_clearenv(pTHX)
5166{
5167 dVAR;
5168#if ! defined(PERL_MICRO)
5169# if defined(PERL_IMPLICIT_SYS) || defined(WIN32)
5170 PerlEnv_clearenv();
5171# else /* ! (PERL_IMPLICIT_SYS || WIN32) */
5172# if defined(USE_ENVIRON_ARRAY)
5173# if defined(USE_ITHREADS)
5174 /* only the parent thread can clobber the process environment */
5175 if (PL_curinterp == aTHX)
5176# endif /* USE_ITHREADS */
5177 {
5178# if ! defined(PERL_USE_SAFE_PUTENV)
5179 if ( !PL_use_safe_putenv) {
5180 I32 i;
5181 if (environ == PL_origenviron)
5182 environ = (char**)safesysmalloc(sizeof(char*));
5183 else
5184 for (i = 0; environ[i]; i++)
5185 (void)safesysfree(environ[i]);
5186 }
5187 environ[0] = NULL;
5188# else /* PERL_USE_SAFE_PUTENV */
5189# if defined(HAS_CLEARENV)
5190 (void)clearenv();
5191# elif defined(HAS_UNSETENV)
5192 int bsiz = 80; /* Most envvar names will be shorter than this. */
5193 char *buf = (char*)safesysmalloc(bsiz);
5194 while (*environ != NULL) {
5195 char *e = strchr(*environ, '=');
5196 int l = e ? e - *environ : (int)strlen(*environ);
5197 if (bsiz < l + 1) {
5198 (void)safesysfree(buf);
5199 bsiz = l + 1; /* + 1 for the \0. */
5200 buf = (char*)safesysmalloc(bsiz);
5201 }
5202 memcpy(buf, *environ, l);
5203 buf[l] = '\0';
5204 (void)unsetenv(buf);
5205 }
5206 (void)safesysfree(buf);
5207# else /* ! HAS_CLEARENV && ! HAS_UNSETENV */
5208 /* Just null environ and accept the leakage. */
5209 *environ = NULL;
5210# endif /* HAS_CLEARENV || HAS_UNSETENV */
5211# endif /* ! PERL_USE_SAFE_PUTENV */
5212 }
5213# endif /* USE_ENVIRON_ARRAY */
5214# endif /* PERL_IMPLICIT_SYS || WIN32 */
5215#endif /* PERL_MICRO */
5216}
5217
5218#ifdef PERL_IMPLICIT_CONTEXT
5219
5220
5221# ifdef PERL_GLOBAL_STRUCT_PRIVATE
5222
5223/* rather than each module having a static var holding its index,
5224 * use a global array of name to index mappings
5225 */
5226int
5227Perl_my_cxt_index(pTHX_ const char *my_cxt_key)
5228{
5229 dVAR;
5230 int index;
5231
5232 PERL_ARGS_ASSERT_MY_CXT_INDEX;
5233
5234 for (index = 0; index < PL_my_cxt_index; index++) {
5235 const char *key = PL_my_cxt_keys[index];
5236 /* try direct pointer compare first - there are chances to success,
5237 * and it's much faster.
5238 */
5239 if ((key == my_cxt_key) || strEQ(key, my_cxt_key))
5240 return index;
5241 }
5242 return -1;
5243}
5244# endif
5245
5246
5247/* Implements the MY_CXT_INIT macro. The first time a module is loaded,
5248the global PL_my_cxt_index is incremented, and that value is assigned to
5249that module's static my_cxt_index (who's address is passed as an arg).
5250Then, for each interpreter this function is called for, it makes sure a
5251void* slot is available to hang the static data off, by allocating or
5252extending the interpreter's PL_my_cxt_list array */
5253
5254void *
5255# ifdef PERL_GLOBAL_STRUCT_PRIVATE
5256Perl_my_cxt_init(pTHX_ const char *my_cxt_key, size_t size)
5257# else
5258Perl_my_cxt_init(pTHX_ int *indexp, size_t size)
5259# endif
5260{
5261 dVAR;
5262 void *p;
5263 int index;
5264
5265 PERL_ARGS_ASSERT_MY_CXT_INIT;
5266
5267# ifdef PERL_GLOBAL_STRUCT_PRIVATE
5268 index = Perl_my_cxt_index(aTHX_ my_cxt_key);
5269# else
5270 index = *indexp;
5271# endif
5272 /* do initial check without locking.
5273 * -1: not allocated or another thread currently allocating
5274 * other: already allocated by another thread
5275 */
5276 if (index == -1) {
5277 MUTEX_LOCK(&PL_my_ctx_mutex);
5278 /*now a stricter check with locking */
5279# ifdef PERL_GLOBAL_STRUCT_PRIVATE
5280 index = Perl_my_cxt_index(aTHX_ my_cxt_key);
5281# else
5282 index = *indexp;
5283# endif
5284 if (index == -1)
5285 /* this module hasn't been allocated an index yet */
5286# ifdef PERL_GLOBAL_STRUCT_PRIVATE
5287 index = PL_my_cxt_index++;
5288
5289 /* Store the index in a global MY_CXT_KEY string to index mapping
5290 * table. This emulates the perl-module static my_cxt_index var on
5291 * builds which don't allow static vars */
5292 if (PL_my_cxt_keys_size <= index) {
5293 int old_size = PL_my_cxt_keys_size;
5294 int i;
5295 if (PL_my_cxt_keys_size) {
5296 IV new_size = PL_my_cxt_keys_size;
5297 while (new_size <= index)
5298 new_size *= 2;
5299 PL_my_cxt_keys = (const char **)PerlMemShared_realloc(
5300 PL_my_cxt_keys,
5301 new_size * sizeof(const char *));
5302 PL_my_cxt_keys_size = new_size;
5303 }
5304 else {
5305 PL_my_cxt_keys_size = 16;
5306 PL_my_cxt_keys = (const char **)PerlMemShared_malloc(
5307 PL_my_cxt_keys_size * sizeof(const char *));
5308 }
5309 for (i = old_size; i < PL_my_cxt_keys_size; i++) {
5310 PL_my_cxt_keys[i] = 0;
5311 }
5312 }
5313 PL_my_cxt_keys[index] = my_cxt_key;
5314# else
5315 *indexp = PL_my_cxt_index++;
5316 index = *indexp;
5317# endif
5318 MUTEX_UNLOCK(&PL_my_ctx_mutex);
5319 }
5320
5321 /* make sure the array is big enough */
5322 if (PL_my_cxt_size <= index) {
5323 if (PL_my_cxt_size) {
5324 IV new_size = PL_my_cxt_size;
5325 while (new_size <= index)
5326 new_size *= 2;
5327 Renew(PL_my_cxt_list, new_size, void *);
5328 PL_my_cxt_size = new_size;
5329 }
5330 else {
5331 PL_my_cxt_size = 16;
5332 Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
5333 }
5334 }
5335 /* newSV() allocates one more than needed */
5336 p = (void*)SvPVX(newSV(size-1));
5337 PL_my_cxt_list[index] = p;
5338 Zero(p, size, char);
5339 return p;
5340}
5341
5342#endif /* PERL_IMPLICIT_CONTEXT */
5343
5344
5345/* Perl_xs_handshake():
5346 implement the various XS_*_BOOTCHECK macros, which are added to .c
5347 files by ExtUtils::ParseXS, to check that the perl the module was built
5348 with is binary compatible with the running perl.
5349
5350 usage:
5351 Perl_xs_handshake(U32 key, void * v_my_perl, const char * file,
5352 [U32 items, U32 ax], [char * api_version], [char * xs_version])
5353
5354 The meaning of the varargs is determined the U32 key arg (which is not
5355 a format string). The fields of key are assembled by using HS_KEY().
5356
5357 Under PERL_IMPLICIT_CONTEX, the v_my_perl arg is of type
5358 "PerlInterpreter *" and represents the callers context; otherwise it is
5359 of type "CV *", and is the boot xsub's CV.
5360
5361 v_my_perl will catch where a threaded future perl526.dll calling IO.dll
5362 for example, and IO.dll was linked with threaded perl524.dll, and both
5363 perl526.dll and perl524.dll are in %PATH and the Win32 DLL loader
5364 successfully can load IO.dll into the process but simultaneously it
5365 loaded an interpreter of a different version into the process, and XS
5366 code will naturally pass SV*s created by perl524.dll for perl526.dll to
5367 use through perl526.dll's my_perl->Istack_base.
5368
5369 v_my_perl cannot be the first arg, since then 'key' will be out of
5370 place in a threaded vs non-threaded mixup; and analyzing the key
5371 number's bitfields won't reveal the problem, since it will be a valid
5372 key (unthreaded perl) on interp side, but croak will report the XS mod's
5373 key as gibberish (it is really a my_perl ptr) (threaded XS mod); or if
5374 it's a threaded perl and an unthreaded XS module, threaded perl will
5375 look at an uninit C stack or an uninit register to get 'key'
5376 (remember that it assumes that the 1st arg is the interp cxt).
5377
5378 'file' is the source filename of the caller.
5379*/
5380
5381I32
5382Perl_xs_handshake(const U32 key, void * v_my_perl, const char * file, ...)
5383{
5384 va_list args;
5385 U32 items, ax;
5386 void * got;
5387 void * need;
5388#ifdef PERL_IMPLICIT_CONTEXT
5389 dTHX;
5390 tTHX xs_interp;
5391#else
5392 CV* cv;
5393 SV *** xs_spp;
5394#endif
5395 PERL_ARGS_ASSERT_XS_HANDSHAKE;
5396 va_start(args, file);
5397
5398 got = INT2PTR(void*, (UV)(key & HSm_KEY_MATCH));
5399 need = (void *)(HS_KEY(FALSE, FALSE, "", "") & HSm_KEY_MATCH);
5400 if (UNLIKELY(got != need))
5401 goto bad_handshake;
5402/* try to catch where a 2nd threaded perl interp DLL is loaded into a process
5403 by a XS DLL compiled against the wrong interl DLL b/c of bad @INC, and the
5404 2nd threaded perl interp DLL never initialized its TLS/PERL_SYS_INIT3 so
5405 dTHX call from 2nd interp DLL can't return the my_perl that pp_entersub
5406 passed to the XS DLL */
5407#ifdef PERL_IMPLICIT_CONTEXT
5408 xs_interp = (tTHX)v_my_perl;
5409 got = xs_interp;
5410 need = my_perl;
5411#else
5412/* try to catch where an unthreaded perl interp DLL (for ex. perl522.dll) is
5413 loaded into a process by a XS DLL built by an unthreaded perl522.dll perl,
5414 but the DynaLoder/Perl that started the process and loaded the XS DLL is
5415 unthreaded perl524.dll, since unthreadeds don't pass my_perl (a unique *)
5416 through pp_entersub, use a unique value (which is a pointer to PL_stack_sp's
5417 location in the unthreaded perl binary) stored in CV * to figure out if this
5418 Perl_xs_handshake was called by the same pp_entersub */
5419 cv = (CV*)v_my_perl;
5420 xs_spp = (SV***)CvHSCXT(cv);
5421 got = xs_spp;
5422 need = &PL_stack_sp;
5423#endif
5424 if(UNLIKELY(got != need)) {
5425 bad_handshake:/* recycle branch and string from above */
5426 if(got != (void *)HSf_NOCHK)
5427 noperl_die("%s: loadable library and perl binaries are mismatched"
5428 " (got handshake key %p, needed %p)\n",
5429 file, got, need);
5430 }
5431
5432 if(key & HSf_SETXSUBFN) { /* this might be called from a module bootstrap */
5433 SAVEPPTR(PL_xsubfilename);/* which was require'd from a XSUB BEGIN */
5434 PL_xsubfilename = file; /* so the old name must be restored for
5435 additional XSUBs to register themselves */
5436 /* XSUBs can't be perl lang/perl5db.pl debugged
5437 if (PERLDB_LINE_OR_SAVESRC)
5438 (void)gv_fetchfile(file); */
5439 }
5440
5441 if(key & HSf_POPMARK) {
5442 ax = POPMARK;
5443 { SV **mark = PL_stack_base + ax++;
5444 { dSP;
5445 items = (I32)(SP - MARK);
5446 }
5447 }
5448 } else {
5449 items = va_arg(args, U32);
5450 ax = va_arg(args, U32);
5451 }
5452 {
5453 U32 apiverlen;
5454 assert(HS_GETAPIVERLEN(key) <= UCHAR_MAX);
5455 if((apiverlen = HS_GETAPIVERLEN(key))) {
5456 char * api_p = va_arg(args, char*);
5457 if(apiverlen != sizeof("v" PERL_API_VERSION_STRING)-1
5458 || memNE(api_p, "v" PERL_API_VERSION_STRING,
5459 sizeof("v" PERL_API_VERSION_STRING)-1))
5460 Perl_croak_nocontext("Perl API version %s of %" SVf " does not match %s",
5461 api_p, SVfARG(PL_stack_base[ax + 0]),
5462 "v" PERL_API_VERSION_STRING);
5463 }
5464 }
5465 {
5466 U32 xsverlen;
5467 assert(HS_GETXSVERLEN(key) <= UCHAR_MAX && HS_GETXSVERLEN(key) <= HS_APIVERLEN_MAX);
5468 if((xsverlen = HS_GETXSVERLEN(key)))
5469 S_xs_version_bootcheck(aTHX_
5470 items, ax, va_arg(args, char*), xsverlen);
5471 }
5472 va_end(args);
5473 return ax;
5474}
5475
5476
5477STATIC void
5478S_xs_version_bootcheck(pTHX_ U32 items, U32 ax, const char *xs_p,
5479 STRLEN xs_len)
5480{
5481 SV *sv;
5482 const char *vn = NULL;
5483 SV *const module = PL_stack_base[ax];
5484
5485 PERL_ARGS_ASSERT_XS_VERSION_BOOTCHECK;
5486
5487 if (items >= 2) /* version supplied as bootstrap arg */
5488 sv = PL_stack_base[ax + 1];
5489 else {
5490 /* XXX GV_ADDWARN */
5491 vn = "XS_VERSION";
5492 sv = get_sv(Perl_form(aTHX_ "%" SVf "::%s", SVfARG(module), vn), 0);
5493 if (!sv || !SvOK(sv)) {
5494 vn = "VERSION";
5495 sv = get_sv(Perl_form(aTHX_ "%" SVf "::%s", SVfARG(module), vn), 0);
5496 }
5497 }
5498 if (sv) {
5499 SV *xssv = Perl_newSVpvn_flags(aTHX_ xs_p, xs_len, SVs_TEMP);
5500 SV *pmsv = sv_isobject(sv) && sv_derived_from(sv, "version")
5501 ? sv : sv_2mortal(new_version(sv));
5502 xssv = upg_version(xssv, 0);
5503 if ( vcmp(pmsv,xssv) ) {
5504 SV *string = vstringify(xssv);
5505 SV *xpt = Perl_newSVpvf(aTHX_ "%" SVf " object version %" SVf
5506 " does not match ", SVfARG(module), SVfARG(string));
5507
5508 SvREFCNT_dec(string);
5509 string = vstringify(pmsv);
5510
5511 if (vn) {
5512 Perl_sv_catpvf(aTHX_ xpt, "$%" SVf "::%s %" SVf, SVfARG(module), vn,
5513 SVfARG(string));
5514 } else {
5515 Perl_sv_catpvf(aTHX_ xpt, "bootstrap parameter %" SVf, SVfARG(string));
5516 }
5517 SvREFCNT_dec(string);
5518
5519 Perl_sv_2mortal(aTHX_ xpt);
5520 Perl_croak_sv(aTHX_ xpt);
5521 }
5522 }
5523}
5524
5525/*
5526=for apidoc my_strlcat
5527
5528The C library C<strlcat> if available, or a Perl implementation of it.
5529This operates on C C<NUL>-terminated strings.
5530
5531C<my_strlcat()> appends string C<src> to the end of C<dst>. It will append at
5532most S<C<size - strlen(dst) - 1>> characters. It will then C<NUL>-terminate,
5533unless C<size> is 0 or the original C<dst> string was longer than C<size> (in
5534practice this should not happen as it means that either C<size> is incorrect or
5535that C<dst> is not a proper C<NUL>-terminated string).
5536
5537Note that C<size> is the full size of the destination buffer and
5538the result is guaranteed to be C<NUL>-terminated if there is room. Note that
5539room for the C<NUL> should be included in C<size>.
5540
5541The return value is the total length that C<dst> would have if C<size> is
5542sufficiently large. Thus it is the initial length of C<dst> plus the length of
5543C<src>. If C<size> is smaller than the return, the excess was not appended.
5544
5545=cut
5546
5547Description stolen from http://man.openbsd.org/strlcat.3
5548*/
5549#ifndef HAS_STRLCAT
5550Size_t
5551Perl_my_strlcat(char *dst, const char *src, Size_t size)
5552{
5553 Size_t used, length, copy;
5554
5555 used = strlen(dst);
5556 length = strlen(src);
5557 if (size > 0 && used < size - 1) {
5558 copy = (length >= size - used) ? size - used - 1 : length;
5559 memcpy(dst + used, src, copy);
5560 dst[used + copy] = '\0';
5561 }
5562 return used + length;
5563}
5564#endif
5565
5566
5567/*
5568=for apidoc my_strlcpy
5569
5570The C library C<strlcpy> if available, or a Perl implementation of it.
5571This operates on C C<NUL>-terminated strings.
5572
5573C<my_strlcpy()> copies up to S<C<size - 1>> characters from the string C<src>
5574to C<dst>, C<NUL>-terminating the result if C<size> is not 0.
5575
5576The return value is the total length C<src> would be if the copy completely
5577succeeded. If it is larger than C<size>, the excess was not copied.
5578
5579=cut
5580
5581Description stolen from http://man.openbsd.org/strlcpy.3
5582*/
5583#ifndef HAS_STRLCPY
5584Size_t
5585Perl_my_strlcpy(char *dst, const char *src, Size_t size)
5586{
5587 Size_t length, copy;
5588
5589 length = strlen(src);
5590 if (size > 0) {
5591 copy = (length >= size) ? size - 1 : length;
5592 memcpy(dst, src, copy);
5593 dst[copy] = '\0';
5594 }
5595 return length;
5596}
5597#endif
5598
5599/*
5600=for apidoc my_strnlen
5601
5602The C library C<strnlen> if available, or a Perl implementation of it.
5603
5604C<my_strnlen()> computes the length of the string, up to C<maxlen>
5605characters. It will will never attempt to address more than C<maxlen>
5606characters, making it suitable for use with strings that are not
5607guaranteed to be NUL-terminated.
5608
5609=cut
5610
5611Description stolen from http://man.openbsd.org/strnlen.3,
5612implementation stolen from PostgreSQL.
5613*/
5614#ifndef HAS_STRNLEN
5615Size_t
5616Perl_my_strnlen(const char *str, Size_t maxlen)
5617{
5618 const char *p = str;
5619
5620 PERL_ARGS_ASSERT_MY_STRNLEN;
5621
5622 while(maxlen-- && *p)
5623 p++;
5624
5625 return p - str;
5626}
5627#endif
5628
5629#if defined(_MSC_VER) && (_MSC_VER >= 1300) && (_MSC_VER < 1400) && (WINVER < 0x0500)
5630/* VC7 or 7.1, building with pre-VC7 runtime libraries. */
5631long _ftol( double ); /* Defined by VC6 C libs. */
5632long _ftol2( double dblSource ) { return _ftol( dblSource ); }
5633#endif
5634
5635PERL_STATIC_INLINE bool
5636S_gv_has_usable_name(pTHX_ GV *gv)
5637{
5638 GV **gvp;
5639 return GvSTASH(gv)
5640 && HvENAME(GvSTASH(gv))
5641 && (gvp = (GV **)hv_fetchhek(
5642 GvSTASH(gv), GvNAME_HEK(gv), 0
5643 ))
5644 && *gvp == gv;
5645}
5646
5647void
5648Perl_get_db_sub(pTHX_ SV **svp, CV *cv)
5649{
5650 SV * const dbsv = GvSVn(PL_DBsub);
5651 const bool save_taint = TAINT_get;
5652
5653 /* When we are called from pp_goto (svp is null),
5654 * we do not care about using dbsv to call CV;
5655 * it's for informational purposes only.
5656 */
5657
5658 PERL_ARGS_ASSERT_GET_DB_SUB;
5659
5660 TAINT_set(FALSE);
5661 save_item(dbsv);
5662 if (!PERLDB_SUB_NN) {
5663 GV *gv = CvGV(cv);
5664
5665 if (!svp && !CvLEXICAL(cv)) {
5666 gv_efullname3(dbsv, gv, NULL);
5667 }
5668 else if ( (CvFLAGS(cv) & (CVf_ANON | CVf_CLONED)) || CvLEXICAL(cv)
5669 || strEQ(GvNAME(gv), "END")
5670 || ( /* Could be imported, and old sub redefined. */
5671 (GvCV(gv) != cv || !S_gv_has_usable_name(aTHX_ gv))
5672 &&
5673 !( (SvTYPE(*svp) == SVt_PVGV)
5674 && (GvCV((const GV *)*svp) == cv)
5675 /* Use GV from the stack as a fallback. */
5676 && S_gv_has_usable_name(aTHX_ gv = (GV *)*svp)
5677 )
5678 )
5679 ) {
5680 /* GV is potentially non-unique, or contain different CV. */
5681 SV * const tmp = newRV(MUTABLE_SV(cv));
5682 sv_setsv(dbsv, tmp);
5683 SvREFCNT_dec(tmp);
5684 }
5685 else {
5686 sv_sethek(dbsv, HvENAME_HEK(GvSTASH(gv)));
5687 sv_catpvs(dbsv, "::");
5688 sv_cathek(dbsv, GvNAME_HEK(gv));
5689 }
5690 }
5691 else {
5692 const int type = SvTYPE(dbsv);
5693 if (type < SVt_PVIV && type != SVt_IV)
5694 sv_upgrade(dbsv, SVt_PVIV);
5695 (void)SvIOK_on(dbsv);
5696 SvIV_set(dbsv, PTR2IV(cv)); /* Do it the quickest way */
5697 }
5698 SvSETMAGIC(dbsv);
5699 TAINT_IF(save_taint);
5700#ifdef NO_TAINT_SUPPORT
5701 PERL_UNUSED_VAR(save_taint);
5702#endif
5703}
5704
5705int
5706Perl_my_dirfd(DIR * dir) {
5707
5708 /* Most dirfd implementations have problems when passed NULL. */
5709 if(!dir)
5710 return -1;
5711#ifdef HAS_DIRFD
5712 return dirfd(dir);
5713#elif defined(HAS_DIR_DD_FD)
5714 return dir->dd_fd;
5715#else
5716 Perl_croak_nocontext(PL_no_func, "dirfd");
5717 NOT_REACHED; /* NOTREACHED */
5718 return 0;
5719#endif
5720}
5721
5722#if !defined(HAS_MKOSTEMP) || !defined(HAS_MKSTEMP)
5723
5724#define TEMP_FILE_CH "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvxyz0123456789"
5725#define TEMP_FILE_CH_COUNT (sizeof(TEMP_FILE_CH)-1)
5726
5727static int
5728S_my_mkostemp(char *templte, int flags) {
5729 dTHX;
5730 STRLEN len = strlen(templte);
5731 int fd;
5732 int attempts = 0;
5733#ifdef VMS
5734 int delete_on_close = flags & O_VMS_DELETEONCLOSE;
5735
5736 flags &= ~O_VMS_DELETEONCLOSE;
5737#endif
5738
5739 if (len < 6 ||
5740 templte[len-1] != 'X' || templte[len-2] != 'X' || templte[len-3] != 'X' ||
5741 templte[len-4] != 'X' || templte[len-5] != 'X' || templte[len-6] != 'X') {
5742 SETERRNO(EINVAL, LIB_INVARG);
5743 return -1;
5744 }
5745
5746 do {
5747 int i;
5748 for (i = 1; i <= 6; ++i) {
5749 templte[len-i] = TEMP_FILE_CH[(int)(Perl_internal_drand48() * TEMP_FILE_CH_COUNT)];
5750 }
5751#ifdef VMS
5752 if (delete_on_close) {
5753 fd = open(templte, O_RDWR | O_CREAT | O_EXCL | flags, 0600, "fop=dlt");
5754 }
5755 else
5756#endif
5757 {
5758 fd = PerlLIO_open3(templte, O_RDWR | O_CREAT | O_EXCL | flags, 0600);
5759 }
5760 } while (fd == -1 && errno == EEXIST && ++attempts <= 100);
5761
5762 return fd;
5763}
5764
5765#endif
5766
5767#ifndef HAS_MKOSTEMP
5768int
5769Perl_my_mkostemp(char *templte, int flags)
5770{
5771 PERL_ARGS_ASSERT_MY_MKOSTEMP;
5772 return S_my_mkostemp(templte, flags);
5773}
5774#endif
5775
5776#ifndef HAS_MKSTEMP
5777int
5778Perl_my_mkstemp(char *templte)
5779{
5780 PERL_ARGS_ASSERT_MY_MKSTEMP;
5781 return S_my_mkostemp(templte, 0);
5782}
5783#endif
5784
5785REGEXP *
5786Perl_get_re_arg(pTHX_ SV *sv) {
5787
5788 if (sv) {
5789 if (SvMAGICAL(sv))
5790 mg_get(sv);
5791 if (SvROK(sv))
5792 sv = MUTABLE_SV(SvRV(sv));
5793 if (SvTYPE(sv) == SVt_REGEXP)
5794 return (REGEXP*) sv;
5795 }
5796
5797 return NULL;
5798}
5799
5800/*
5801 * This code is derived from drand48() implementation from FreeBSD,
5802 * found in lib/libc/gen/_rand48.c.
5803 *
5804 * The U64 implementation is original, based on the POSIX
5805 * specification for drand48().
5806 */
5807
5808/*
5809* Copyright (c) 1993 Martin Birgmeier
5810* All rights reserved.
5811*
5812* You may redistribute unmodified or modified versions of this source
5813* code provided that the above copyright notice and this and the
5814* following conditions are retained.
5815*
5816* This software is provided ``as is'', and comes with no warranties
5817* of any kind. I shall in no event be liable for anything that happens
5818* to anyone/anything when using this software.
5819*/
5820
5821#define FREEBSD_DRAND48_SEED_0 (0x330e)
5822
5823#ifdef PERL_DRAND48_QUAD
5824
5825#define DRAND48_MULT UINT64_C(0x5deece66d)
5826#define DRAND48_ADD 0xb
5827#define DRAND48_MASK UINT64_C(0xffffffffffff)
5828
5829#else
5830
5831#define FREEBSD_DRAND48_SEED_1 (0xabcd)
5832#define FREEBSD_DRAND48_SEED_2 (0x1234)
5833#define FREEBSD_DRAND48_MULT_0 (0xe66d)
5834#define FREEBSD_DRAND48_MULT_1 (0xdeec)
5835#define FREEBSD_DRAND48_MULT_2 (0x0005)
5836#define FREEBSD_DRAND48_ADD (0x000b)
5837
5838const unsigned short _rand48_mult[3] = {
5839 FREEBSD_DRAND48_MULT_0,
5840 FREEBSD_DRAND48_MULT_1,
5841 FREEBSD_DRAND48_MULT_2
5842};
5843const unsigned short _rand48_add = FREEBSD_DRAND48_ADD;
5844
5845#endif
5846
5847void
5848Perl_drand48_init_r(perl_drand48_t *random_state, U32 seed)
5849{
5850 PERL_ARGS_ASSERT_DRAND48_INIT_R;
5851
5852#ifdef PERL_DRAND48_QUAD
5853 *random_state = FREEBSD_DRAND48_SEED_0 + ((U64)seed << 16);
5854#else
5855 random_state->seed[0] = FREEBSD_DRAND48_SEED_0;
5856 random_state->seed[1] = (U16) seed;
5857 random_state->seed[2] = (U16) (seed >> 16);
5858#endif
5859}
5860
5861double
5862Perl_drand48_r(perl_drand48_t *random_state)
5863{
5864 PERL_ARGS_ASSERT_DRAND48_R;
5865
5866#ifdef PERL_DRAND48_QUAD
5867 *random_state = (*random_state * DRAND48_MULT + DRAND48_ADD)
5868 & DRAND48_MASK;
5869
5870 return ldexp((double)*random_state, -48);
5871#else
5872 {
5873 U32 accu;
5874 U16 temp[2];
5875
5876 accu = (U32) _rand48_mult[0] * (U32) random_state->seed[0]
5877 + (U32) _rand48_add;
5878 temp[0] = (U16) accu; /* lower 16 bits */
5879 accu >>= sizeof(U16) * 8;
5880 accu += (U32) _rand48_mult[0] * (U32) random_state->seed[1]
5881 + (U32) _rand48_mult[1] * (U32) random_state->seed[0];
5882 temp[1] = (U16) accu; /* middle 16 bits */
5883 accu >>= sizeof(U16) * 8;
5884 accu += _rand48_mult[0] * random_state->seed[2]
5885 + _rand48_mult[1] * random_state->seed[1]
5886 + _rand48_mult[2] * random_state->seed[0];
5887 random_state->seed[0] = temp[0];
5888 random_state->seed[1] = temp[1];
5889 random_state->seed[2] = (U16) accu;
5890
5891 return ldexp((double) random_state->seed[0], -48) +
5892 ldexp((double) random_state->seed[1], -32) +
5893 ldexp((double) random_state->seed[2], -16);
5894 }
5895#endif
5896}
5897
5898#ifdef USE_C_BACKTRACE
5899
5900/* Possibly move all this USE_C_BACKTRACE code into a new file. */
5901
5902#ifdef USE_BFD
5903
5904typedef struct {
5905 /* abfd is the BFD handle. */
5906 bfd* abfd;
5907 /* bfd_syms is the BFD symbol table. */
5908 asymbol** bfd_syms;
5909 /* bfd_text is handle to the the ".text" section of the object file. */
5910 asection* bfd_text;
5911 /* Since opening the executable and scanning its symbols is quite
5912 * heavy operation, we remember the filename we used the last time,
5913 * and do the opening and scanning only if the filename changes.
5914 * This removes most (but not all) open+scan cycles. */
5915 const char* fname_prev;
5916} bfd_context;
5917
5918/* Given a dl_info, update the BFD context if necessary. */
5919static void bfd_update(bfd_context* ctx, Dl_info* dl_info)
5920{
5921 /* BFD open and scan only if the filename changed. */
5922 if (ctx->fname_prev == NULL ||
5923 strNE(dl_info->dli_fname, ctx->fname_prev)) {
5924 if (ctx->abfd) {
5925 bfd_close(ctx->abfd);
5926 }
5927 ctx->abfd = bfd_openr(dl_info->dli_fname, 0);
5928 if (ctx->abfd) {
5929 if (bfd_check_format(ctx->abfd, bfd_object)) {
5930 IV symbol_size = bfd_get_symtab_upper_bound(ctx->abfd);
5931 if (symbol_size > 0) {
5932 Safefree(ctx->bfd_syms);
5933 Newx(ctx->bfd_syms, symbol_size, asymbol*);
5934 ctx->bfd_text =
5935 bfd_get_section_by_name(ctx->abfd, ".text");
5936 }
5937 else
5938 ctx->abfd = NULL;
5939 }
5940 else
5941 ctx->abfd = NULL;
5942 }
5943 ctx->fname_prev = dl_info->dli_fname;
5944 }
5945}
5946
5947/* Given a raw frame, try to symbolize it and store
5948 * symbol information (source file, line number) away. */
5949static void bfd_symbolize(bfd_context* ctx,
5950 void* raw_frame,
5951 char** symbol_name,
5952 STRLEN* symbol_name_size,
5953 char** source_name,
5954 STRLEN* source_name_size,
5955 STRLEN* source_line)
5956{
5957 *symbol_name = NULL;
5958 *symbol_name_size = 0;
5959 if (ctx->abfd) {
5960 IV offset = PTR2IV(raw_frame) - PTR2IV(ctx->bfd_text->vma);
5961 if (offset > 0 &&
5962 bfd_canonicalize_symtab(ctx->abfd, ctx->bfd_syms) > 0) {
5963 const char *file;
5964 const char *func;
5965 unsigned int line = 0;
5966 if (bfd_find_nearest_line(ctx->abfd, ctx->bfd_text,
5967 ctx->bfd_syms, offset,
5968 &file, &func, &line) &&
5969 file && func && line > 0) {
5970 /* Size and copy the source file, use only
5971 * the basename of the source file.
5972 *
5973 * NOTE: the basenames are fine for the
5974 * Perl source files, but may not always
5975 * be the best idea for XS files. */
5976 const char *p, *b = NULL;
5977 /* Look for the last slash. */
5978 for (p = file; *p; p++) {
5979 if (*p == '/')
5980 b = p + 1;
5981 }
5982 if (b == NULL || *b == 0) {
5983 b = file;
5984 }
5985 *source_name_size = p - b + 1;
5986 Newx(*source_name, *source_name_size + 1, char);
5987 Copy(b, *source_name, *source_name_size + 1, char);
5988
5989 *symbol_name_size = strlen(func);
5990 Newx(*symbol_name, *symbol_name_size + 1, char);
5991 Copy(func, *symbol_name, *symbol_name_size + 1, char);
5992
5993 *source_line = line;
5994 }
5995 }
5996 }
5997}
5998
5999#endif /* #ifdef USE_BFD */
6000
6001#ifdef PERL_DARWIN
6002
6003/* OS X has no public API for for 'symbolicating' (Apple official term)
6004 * stack addresses to {function_name, source_file, line_number}.
6005 * Good news: there is command line utility atos(1) which does that.
6006 * Bad news 1: it's a command line utility.
6007 * Bad news 2: one needs to have the Developer Tools installed.
6008 * Bad news 3: in newer releases it needs to be run as 'xcrun atos'.
6009 *
6010 * To recap: we need to open a pipe for reading for a utility which
6011 * might not exist, or exists in different locations, and then parse
6012 * the output. And since this is all for a low-level API, we cannot
6013 * use high-level stuff. Thanks, Apple. */
6014
6015typedef struct {
6016 /* tool is set to the absolute pathname of the tool to use:
6017 * xcrun or atos. */
6018 const char* tool;
6019 /* format is set to a printf format string used for building
6020 * the external command to run. */
6021 const char* format;
6022 /* unavail is set if e.g. xcrun cannot be found, or something
6023 * else happens that makes getting the backtrace dubious. Note,
6024 * however, that the context isn't persistent, the next call to
6025 * get_c_backtrace() will start from scratch. */
6026 bool unavail;
6027 /* fname is the current object file name. */
6028 const char* fname;
6029 /* object_base_addr is the base address of the shared object. */
6030 void* object_base_addr;
6031} atos_context;
6032
6033/* Given |dl_info|, updates the context. If the context has been
6034 * marked unavailable, return immediately. If not but the tool has
6035 * not been set, set it to either "xcrun atos" or "atos" (also set the
6036 * format to use for creating commands for piping), or if neither is
6037 * unavailable (one needs the Developer Tools installed), mark the context
6038 * an unavailable. Finally, update the filename (object name),
6039 * and its base address. */
6040
6041static void atos_update(atos_context* ctx,
6042 Dl_info* dl_info)
6043{
6044 if (ctx->unavail)
6045 return;
6046 if (ctx->tool == NULL) {
6047 const char* tools[] = {
6048 "/usr/bin/xcrun",
6049 "/usr/bin/atos"
6050 };
6051 const char* formats[] = {
6052 "/usr/bin/xcrun atos -o '%s' -l %08x %08x 2>&1",
6053 "/usr/bin/atos -d -o '%s' -l %08x %08x 2>&1"
6054 };
6055 struct stat st;
6056 UV i;
6057 for (i = 0; i < C_ARRAY_LENGTH(tools); i++) {
6058 if (stat(tools[i], &st) == 0 && S_ISREG(st.st_mode)) {
6059 ctx->tool = tools[i];
6060 ctx->format = formats[i];
6061 break;
6062 }
6063 }
6064 if (ctx->tool == NULL) {
6065 ctx->unavail = TRUE;
6066 return;
6067 }
6068 }
6069 if (ctx->fname == NULL ||
6070 strNE(dl_info->dli_fname, ctx->fname)) {
6071 ctx->fname = dl_info->dli_fname;
6072 ctx->object_base_addr = dl_info->dli_fbase;
6073 }
6074}
6075
6076/* Given an output buffer end |p| and its |start|, matches
6077 * for the atos output, extracting the source code location
6078 * and returning non-NULL if possible, returning NULL otherwise. */
6079static const char* atos_parse(const char* p,
6080 const char* start,
6081 STRLEN* source_name_size,
6082 STRLEN* source_line) {
6083 /* atos() output is something like:
6084 * perl_parse (in miniperl) (perl.c:2314)\n\n".
6085 * We cannot use Perl regular expressions, because we need to
6086 * stay low-level. Therefore here we have a rolled-out version
6087 * of a state machine which matches _backwards_from_the_end_ and
6088 * if there's a success, returns the starts of the filename,
6089 * also setting the filename size and the source line number.
6090 * The matched regular expression is roughly "\(.*:\d+\)\s*$" */
6091 const char* source_number_start;
6092 const char* source_name_end;
6093 const char* source_line_end = start;
6094 const char* close_paren;
6095 UV uv;
6096
6097 /* Skip trailing whitespace. */
6098 while (p > start && isSPACE(*p)) p--;
6099 /* Now we should be at the close paren. */
6100 if (p == start || *p != ')')
6101 return NULL;
6102 close_paren = p;
6103 p--;
6104 /* Now we should be in the line number. */
6105 if (p == start || !isDIGIT(*p))
6106 return NULL;
6107 /* Skip over the digits. */
6108 while (p > start && isDIGIT(*p))
6109 p--;
6110 /* Now we should be at the colon. */
6111 if (p == start || *p != ':')
6112 return NULL;
6113 source_number_start = p + 1;
6114 source_name_end = p; /* Just beyond the end. */
6115 p--;
6116 /* Look for the open paren. */
6117 while (p > start && *p != '(')
6118 p--;
6119 if (p == start)
6120 return NULL;
6121 p++;
6122 *source_name_size = source_name_end - p;
6123 if (grok_atoUV(source_number_start, &uv, &source_line_end)
6124 && source_line_end == close_paren
6125 && uv <= PERL_INT_MAX
6126 ) {
6127 *source_line = (STRLEN)uv;
6128 return p;
6129 }
6130 return NULL;
6131}
6132
6133/* Given a raw frame, read a pipe from the symbolicator (that's the
6134 * technical term) atos, reads the result, and parses the source code
6135 * location. We must stay low-level, so we use snprintf(), pipe(),
6136 * and fread(), and then also parse the output ourselves. */
6137static void atos_symbolize(atos_context* ctx,
6138 void* raw_frame,
6139 char** source_name,
6140 STRLEN* source_name_size,
6141 STRLEN* source_line)
6142{
6143 char cmd[1024];
6144 const char* p;
6145 Size_t cnt;
6146
6147 if (ctx->unavail)
6148 return;
6149 /* Simple security measure: if there's any funny business with
6150 * the object name (used as "-o '%s'" ), leave since at least
6151 * partially the user controls it. */
6152 for (p = ctx->fname; *p; p++) {
6153 if (*p == '\'' || isCNTRL(*p)) {
6154 ctx->unavail = TRUE;
6155 return;
6156 }
6157 }
6158 cnt = snprintf(cmd, sizeof(cmd), ctx->format,
6159 ctx->fname, ctx->object_base_addr, raw_frame);
6160 if (cnt < sizeof(cmd)) {
6161 /* Undo nostdio.h #defines that disable stdio.
6162 * This is somewhat naughty, but is used elsewhere
6163 * in the core, and affects only OS X. */
6164#undef FILE
6165#undef popen
6166#undef fread
6167#undef pclose
6168 FILE* fp = popen(cmd, "r");
6169 /* At the moment we open a new pipe for each stack frame.
6170 * This is naturally somewhat slow, but hopefully generating
6171 * stack traces is never going to in a performance critical path.
6172 *
6173 * We could play tricks with atos by batching the stack
6174 * addresses to be resolved: atos can either take multiple
6175 * addresses from the command line, or read addresses from
6176 * a file (though the mess of creating temporary files would
6177 * probably negate much of any possible speedup).
6178 *
6179 * Normally there are only two objects present in the backtrace:
6180 * perl itself, and the libdyld.dylib. (Note that the object
6181 * filenames contain the full pathname, so perl may not always
6182 * be in the same place.) Whenever the object in the
6183 * backtrace changes, the base address also changes.
6184 *
6185 * The problem with batching the addresses, though, would be
6186 * matching the results with the addresses: the parsing of
6187 * the results is already painful enough with a single address. */
6188 if (fp) {
6189 char out[1024];
6190 UV cnt = fread(out, 1, sizeof(out), fp);
6191 if (cnt < sizeof(out)) {
6192 const char* p = atos_parse(out + cnt - 1, out,
6193 source_name_size,
6194 source_line);
6195 if (p) {
6196 Newx(*source_name,
6197 *source_name_size, char);
6198 Copy(p, *source_name,
6199 *source_name_size, char);
6200 }
6201 }
6202 pclose(fp);
6203 }
6204 }
6205}
6206
6207#endif /* #ifdef PERL_DARWIN */
6208
6209/*
6210=for apidoc get_c_backtrace
6211
6212Collects the backtrace (aka "stacktrace") into a single linear
6213malloced buffer, which the caller B<must> C<Perl_free_c_backtrace()>.
6214
6215Scans the frames back by S<C<depth + skip>>, then drops the C<skip> innermost,
6216returning at most C<depth> frames.
6217
6218=cut
6219*/
6220
6221Perl_c_backtrace*
6222Perl_get_c_backtrace(pTHX_ int depth, int skip)
6223{
6224 /* Note that here we must stay as low-level as possible: Newx(),
6225 * Copy(), Safefree(); since we may be called from anywhere,
6226 * so we should avoid higher level constructs like SVs or AVs.
6227 *
6228 * Since we are using safesysmalloc() via Newx(), don't try
6229 * getting backtrace() there, unless you like deep recursion. */
6230
6231 /* Currently only implemented with backtrace() and dladdr(),
6232 * for other platforms NULL is returned. */
6233
6234#if defined(HAS_BACKTRACE) && defined(HAS_DLADDR)
6235 /* backtrace() is available via <execinfo.h> in glibc and in most
6236 * modern BSDs; dladdr() is available via <dlfcn.h>. */
6237
6238 /* We try fetching this many frames total, but then discard
6239 * the |skip| first ones. For the remaining ones we will try
6240 * retrieving more information with dladdr(). */
6241 int try_depth = skip + depth;
6242
6243 /* The addresses (program counters) returned by backtrace(). */
6244 void** raw_frames;
6245
6246 /* Retrieved with dladdr() from the addresses returned by backtrace(). */
6247 Dl_info* dl_infos;
6248
6249 /* Sizes _including_ the terminating \0 of the object name
6250 * and symbol name strings. */
6251 STRLEN* object_name_sizes;
6252 STRLEN* symbol_name_sizes;
6253
6254#ifdef USE_BFD
6255 /* The symbol names comes either from dli_sname,
6256 * or if using BFD, they can come from BFD. */
6257 char** symbol_names;
6258#endif
6259
6260 /* The source code location information. Dug out with e.g. BFD. */
6261 char** source_names;
6262 STRLEN* source_name_sizes;
6263 STRLEN* source_lines;
6264
6265 Perl_c_backtrace* bt = NULL; /* This is what will be returned. */
6266 int got_depth; /* How many frames were returned from backtrace(). */
6267 UV frame_count = 0; /* How many frames we return. */
6268 UV total_bytes = 0; /* The size of the whole returned backtrace. */
6269
6270#ifdef USE_BFD
6271 bfd_context bfd_ctx;
6272#endif
6273#ifdef PERL_DARWIN
6274 atos_context atos_ctx;
6275#endif
6276
6277 /* Here are probably possibilities for optimizing. We could for
6278 * example have a struct that contains most of these and then
6279 * allocate |try_depth| of them, saving a bunch of malloc calls.
6280 * Note, however, that |frames| could not be part of that struct
6281 * because backtrace() will want an array of just them. Also be
6282 * careful about the name strings. */
6283 Newx(raw_frames, try_depth, void*);
6284 Newx(dl_infos, try_depth, Dl_info);
6285 Newx(object_name_sizes, try_depth, STRLEN);
6286 Newx(symbol_name_sizes, try_depth, STRLEN);
6287 Newx(source_names, try_depth, char*);
6288 Newx(source_name_sizes, try_depth, STRLEN);
6289 Newx(source_lines, try_depth, STRLEN);
6290#ifdef USE_BFD
6291 Newx(symbol_names, try_depth, char*);
6292#endif
6293
6294 /* Get the raw frames. */
6295 got_depth = (int)backtrace(raw_frames, try_depth);
6296
6297 /* We use dladdr() instead of backtrace_symbols() because we want
6298 * the full details instead of opaque strings. This is useful for
6299 * two reasons: () the details are needed for further symbolic
6300 * digging, for example in OS X (2) by having the details we fully
6301 * control the output, which in turn is useful when more platforms
6302 * are added: we can keep out output "portable". */
6303
6304 /* We want a single linear allocation, which can then be freed
6305 * with a single swoop. We will do the usual trick of first
6306 * walking over the structure and seeing how much we need to
6307 * allocate, then allocating, and then walking over the structure
6308 * the second time and populating it. */
6309
6310 /* First we must compute the total size of the buffer. */
6311 total_bytes = sizeof(Perl_c_backtrace_header);
6312 if (got_depth > skip) {
6313 int i;
6314#ifdef USE_BFD
6315 bfd_init(); /* Is this safe to call multiple times? */
6316 Zero(&bfd_ctx, 1, bfd_context);
6317#endif
6318#ifdef PERL_DARWIN
6319 Zero(&atos_ctx, 1, atos_context);
6320#endif
6321 for (i = skip; i < try_depth; i++) {
6322 Dl_info* dl_info = &dl_infos[i];
6323
6324 object_name_sizes[i] = 0;
6325 source_names[i] = NULL;
6326 source_name_sizes[i] = 0;
6327 source_lines[i] = 0;
6328
6329 /* Yes, zero from dladdr() is failure. */
6330 if (dladdr(raw_frames[i], dl_info)) {
6331 total_bytes += sizeof(Perl_c_backtrace_frame);
6332
6333 object_name_sizes[i] =
6334 dl_info->dli_fname ? strlen(dl_info->dli_fname) : 0;
6335 symbol_name_sizes[i] =
6336 dl_info->dli_sname ? strlen(dl_info->dli_sname) : 0;
6337#ifdef USE_BFD
6338 bfd_update(&bfd_ctx, dl_info);
6339 bfd_symbolize(&bfd_ctx, raw_frames[i],
6340 &symbol_names[i],
6341 &symbol_name_sizes[i],
6342 &source_names[i],
6343 &source_name_sizes[i],
6344 &source_lines[i]);
6345#endif
6346#if PERL_DARWIN
6347 atos_update(&atos_ctx, dl_info);
6348 atos_symbolize(&atos_ctx,
6349 raw_frames[i],
6350 &source_names[i],
6351 &source_name_sizes[i],
6352 &source_lines[i]);
6353#endif
6354
6355 /* Plus ones for the terminating \0. */
6356 total_bytes += object_name_sizes[i] + 1;
6357 total_bytes += symbol_name_sizes[i] + 1;
6358 total_bytes += source_name_sizes[i] + 1;
6359
6360 frame_count++;
6361 } else {
6362 break;
6363 }
6364 }
6365#ifdef USE_BFD
6366 Safefree(bfd_ctx.bfd_syms);
6367#endif
6368 }
6369
6370 /* Now we can allocate and populate the result buffer. */
6371 Newxc(bt, total_bytes, char, Perl_c_backtrace);
6372 Zero(bt, total_bytes, char);
6373 bt->header.frame_count = frame_count;
6374 bt->header.total_bytes = total_bytes;
6375 if (frame_count > 0) {
6376 Perl_c_backtrace_frame* frame = bt->frame_info;
6377 char* name_base = (char *)(frame + frame_count);
6378 char* name_curr = name_base; /* Outputting the name strings here. */
6379 UV i;
6380 for (i = skip; i < skip + frame_count; i++) {
6381 Dl_info* dl_info = &dl_infos[i];
6382
6383 frame->addr = raw_frames[i];
6384 frame->object_base_addr = dl_info->dli_fbase;
6385 frame->symbol_addr = dl_info->dli_saddr;
6386
6387 /* Copies a string, including the \0, and advances the name_curr.
6388 * Also copies the start and the size to the frame. */
6389#define PERL_C_BACKTRACE_STRCPY(frame, doffset, src, dsize, size) \
6390 if (size && src) \
6391 Copy(src, name_curr, size, char); \
6392 frame->doffset = name_curr - (char*)bt; \
6393 frame->dsize = size; \
6394 name_curr += size; \
6395 *name_curr++ = 0;
6396
6397 PERL_C_BACKTRACE_STRCPY(frame, object_name_offset,
6398 dl_info->dli_fname,
6399 object_name_size, object_name_sizes[i]);
6400
6401#ifdef USE_BFD
6402 PERL_C_BACKTRACE_STRCPY(frame, symbol_name_offset,
6403 symbol_names[i],
6404 symbol_name_size, symbol_name_sizes[i]);
6405 Safefree(symbol_names[i]);
6406#else
6407 PERL_C_BACKTRACE_STRCPY(frame, symbol_name_offset,
6408 dl_info->dli_sname,
6409 symbol_name_size, symbol_name_sizes[i]);
6410#endif
6411
6412 PERL_C_BACKTRACE_STRCPY(frame, source_name_offset,
6413 source_names[i],
6414 source_name_size, source_name_sizes[i]);
6415 Safefree(source_names[i]);
6416
6417#undef PERL_C_BACKTRACE_STRCPY
6418
6419 frame->source_line_number = source_lines[i];
6420
6421 frame++;
6422 }
6423 assert(total_bytes ==
6424 (UV)(sizeof(Perl_c_backtrace_header) +
6425 frame_count * sizeof(Perl_c_backtrace_frame) +
6426 name_curr - name_base));
6427 }
6428#ifdef USE_BFD
6429 Safefree(symbol_names);
6430 if (bfd_ctx.abfd) {
6431 bfd_close(bfd_ctx.abfd);
6432 }
6433#endif
6434 Safefree(source_lines);
6435 Safefree(source_name_sizes);
6436 Safefree(source_names);
6437 Safefree(symbol_name_sizes);
6438 Safefree(object_name_sizes);
6439 /* Assuming the strings returned by dladdr() are pointers
6440 * to read-only static memory (the object file), so that
6441 * they do not need freeing (and cannot be). */
6442 Safefree(dl_infos);
6443 Safefree(raw_frames);
6444 return bt;
6445#else
6446 PERL_UNUSED_ARG(depth);
6447 PERL_UNUSED_ARG(skip);
6448 return NULL;
6449#endif
6450}
6451
6452/*
6453=for apidoc free_c_backtrace
6454
6455Deallocates a backtrace received from get_c_bracktrace.
6456
6457=cut
6458*/
6459
6460/*
6461=for apidoc get_c_backtrace_dump
6462
6463Returns a SV containing a dump of C<depth> frames of the call stack, skipping
6464the C<skip> innermost ones. C<depth> of 20 is usually enough.
6465
6466The appended output looks like:
6467
6468...
64691 10e004812:0082 Perl_croak util.c:1716 /usr/bin/perl
64702 10df8d6d2:1d72 perl_parse perl.c:3975 /usr/bin/perl
6471...
6472
6473The fields are tab-separated. The first column is the depth (zero
6474being the innermost non-skipped frame). In the hex:offset, the hex is
6475where the program counter was in C<S_parse_body>, and the :offset (might
6476be missing) tells how much inside the C<S_parse_body> the program counter was.
6477
6478The C<util.c:1716> is the source code file and line number.
6479
6480The F</usr/bin/perl> is obvious (hopefully).
6481
6482Unknowns are C<"-">. Unknowns can happen unfortunately quite easily:
6483if the platform doesn't support retrieving the information;
6484if the binary is missing the debug information;
6485if the optimizer has transformed the code by for example inlining.
6486
6487=cut
6488*/
6489
6490SV*
6491Perl_get_c_backtrace_dump(pTHX_ int depth, int skip)
6492{
6493 Perl_c_backtrace* bt;
6494
6495 bt = get_c_backtrace(depth, skip + 1 /* Hide ourselves. */);
6496 if (bt) {
6497 Perl_c_backtrace_frame* frame;
6498 SV* dsv = newSVpvs("");
6499 UV i;
6500 for (i = 0, frame = bt->frame_info;
6501 i < bt->header.frame_count; i++, frame++) {
6502 Perl_sv_catpvf(aTHX_ dsv, "%d", (int)i);
6503 Perl_sv_catpvf(aTHX_ dsv, "\t%p", frame->addr ? frame->addr : "-");
6504 /* Symbol (function) names might disappear without debug info.
6505 *
6506 * The source code location might disappear in case of the
6507 * optimizer inlining or otherwise rearranging the code. */
6508 if (frame->symbol_addr) {
6509 Perl_sv_catpvf(aTHX_ dsv, ":%04x",
6510 (int)
6511 ((char*)frame->addr - (char*)frame->symbol_addr));
6512 }
6513 Perl_sv_catpvf(aTHX_ dsv, "\t%s",
6514 frame->symbol_name_size &&
6515 frame->symbol_name_offset ?
6516 (char*)bt + frame->symbol_name_offset : "-");
6517 if (frame->source_name_size &&
6518 frame->source_name_offset &&
6519 frame->source_line_number) {
6520 Perl_sv_catpvf(aTHX_ dsv, "\t%s:%" UVuf,
6521 (char*)bt + frame->source_name_offset,
6522 (UV)frame->source_line_number);
6523 } else {
6524 Perl_sv_catpvf(aTHX_ dsv, "\t-");
6525 }
6526 Perl_sv_catpvf(aTHX_ dsv, "\t%s",
6527 frame->object_name_size &&
6528 frame->object_name_offset ?
6529 (char*)bt + frame->object_name_offset : "-");
6530 /* The frame->object_base_addr is not output,
6531 * but it is used for symbolizing/symbolicating. */
6532 sv_catpvs(dsv, "\n");
6533 }
6534
6535 Perl_free_c_backtrace(bt);
6536
6537 return dsv;
6538 }
6539
6540 return NULL;
6541}
6542
6543/*
6544=for apidoc dump_c_backtrace
6545
6546Dumps the C backtrace to the given C<fp>.
6547
6548Returns true if a backtrace could be retrieved, false if not.
6549
6550=cut
6551*/
6552
6553bool
6554Perl_dump_c_backtrace(pTHX_ PerlIO* fp, int depth, int skip)
6555{
6556 SV* sv;
6557
6558 PERL_ARGS_ASSERT_DUMP_C_BACKTRACE;
6559
6560 sv = Perl_get_c_backtrace_dump(aTHX_ depth, skip);
6561 if (sv) {
6562 sv_2mortal(sv);
6563 PerlIO_printf(fp, "%s", SvPV_nolen(sv));
6564 return TRUE;
6565 }
6566 return FALSE;
6567}
6568
6569#endif /* #ifdef USE_C_BACKTRACE */
6570
6571#ifdef PERL_TSA_ACTIVE
6572
6573/* pthread_mutex_t and perl_mutex are typedef equivalent
6574 * so casting the pointers is fine. */
6575
6576int perl_tsa_mutex_lock(perl_mutex* mutex)
6577{
6578 return pthread_mutex_lock((pthread_mutex_t *) mutex);
6579}
6580
6581int perl_tsa_mutex_unlock(perl_mutex* mutex)
6582{
6583 return pthread_mutex_unlock((pthread_mutex_t *) mutex);
6584}
6585
6586int perl_tsa_mutex_destroy(perl_mutex* mutex)
6587{
6588 return pthread_mutex_destroy((pthread_mutex_t *) mutex);
6589}
6590
6591#endif
6592
6593
6594#ifdef USE_DTRACE
6595
6596/* log a sub call or return */
6597
6598void
6599Perl_dtrace_probe_call(pTHX_ CV *cv, bool is_call)
6600{
6601 const char *func;
6602 const char *file;
6603 const char *stash;
6604 const COP *start;
6605 line_t line;
6606
6607 PERL_ARGS_ASSERT_DTRACE_PROBE_CALL;
6608
6609 if (CvNAMED(cv)) {
6610 HEK *hek = CvNAME_HEK(cv);
6611 func = HEK_KEY(hek);
6612 }
6613 else {
6614 GV *gv = CvGV(cv);
6615 func = GvENAME(gv);
6616 }
6617 start = (const COP *)CvSTART(cv);
6618 file = CopFILE(start);
6619 line = CopLINE(start);
6620 stash = CopSTASHPV(start);
6621
6622 if (is_call) {
6623 PERL_SUB_ENTRY(func, file, line, stash);
6624 }
6625 else {
6626 PERL_SUB_RETURN(func, file, line, stash);
6627 }
6628}
6629
6630
6631/* log a require file loading/loaded */
6632
6633void
6634Perl_dtrace_probe_load(pTHX_ const char *name, bool is_loading)
6635{
6636 PERL_ARGS_ASSERT_DTRACE_PROBE_LOAD;
6637
6638 if (is_loading) {
6639 PERL_LOADING_FILE(name);
6640 }
6641 else {
6642 PERL_LOADED_FILE(name);
6643 }
6644}
6645
6646
6647/* log an op execution */
6648
6649void
6650Perl_dtrace_probe_op(pTHX_ const OP *op)
6651{
6652 PERL_ARGS_ASSERT_DTRACE_PROBE_OP;
6653
6654 PERL_OP_ENTRY(OP_NAME(op));
6655}
6656
6657
6658/* log a compile/run phase change */
6659
6660void
6661Perl_dtrace_probe_phase(pTHX_ enum perl_phase phase)
6662{
6663 const char *ph_old = PL_phase_names[PL_phase];
6664 const char *ph_new = PL_phase_names[phase];
6665
6666 PERL_PHASE_CHANGE(ph_new, ph_old);
6667}
6668
6669#endif
6670
6671/*
6672 * ex: set ts=8 sts=4 sw=4 et:
6673 */