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