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