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