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