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