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