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