This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Revert the support for new warning categories outside of "all"
[perl5.git] / util.c
CommitLineData
a0d0e21e 1/* util.c
a687059c 2 *
1129b882
NC
3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 * 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
a687059c 5 *
d48672a2
LW
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8d063cd8 8 *
8d063cd8 9 */
a0d0e21e
LW
10
11/*
4ac71550
TC
12 * 'Very useful, no doubt, that was to Saruman; yet it seems that he was
13 * not content.' --Gandalf to Pippin
14 *
cdad3b53 15 * [p.598 of _The Lord of the Rings_, III/xi: "The Palantír"]
a0d0e21e 16 */
8d063cd8 17
166f8a29
DM
18/* This file contains assorted utility routines.
19 * Which is a polite way of saying any stuff that people couldn't think of
20 * a better place for. Amongst other things, it includes the warning and
21 * dieing stuff, plus wrappers for malloc code.
22 */
23
8d063cd8 24#include "EXTERN.h"
864dbfa3 25#define PERL_IN_UTIL_C
8d063cd8 26#include "perl.h"
7dc86639 27#include "reentr.h"
62b28dd9 28
97cb92d6 29#if defined(USE_PERLIO)
2e0cfa16 30#include "perliol.h" /* For PerlIOUnix_refcnt */
6f408c34 31#endif
2e0cfa16 32
64ca3a65 33#ifndef PERL_MICRO
a687059c 34#include <signal.h>
36477c24 35#ifndef SIG_ERR
36# define SIG_ERR ((Sighandler_t) -1)
37#endif
64ca3a65 38#endif
36477c24 39
3be8f094
TC
40#include <math.h>
41#include <stdlib.h>
42
172d2248
OS
43#ifdef __Lynx__
44/* Missing protos on LynxOS */
45int putenv(char *);
46#endif
47
868439a2
JH
48#ifdef HAS_SELECT
49# ifdef I_SYS_SELECT
50# include <sys/select.h>
51# endif
52#endif
53
470dd224 54#ifdef USE_C_BACKTRACE
0762e42f
JH
55# ifdef I_BFD
56# define USE_BFD
57# ifdef PERL_DARWIN
58# undef USE_BFD /* BFD is useless in OS X. */
59# endif
60# ifdef USE_BFD
61# include <bfd.h>
62# endif
63# endif
470dd224
JH
64# ifdef I_DLFCN
65# include <dlfcn.h>
66# endif
67# ifdef I_EXECINFO
68# include <execinfo.h>
69# endif
70#endif
71
b001a0d1
FC
72#ifdef PERL_DEBUG_READONLY_COW
73# include <sys/mman.h>
74#endif
75
8d063cd8 76#define FLUSH
8d063cd8 77
a687059c
LW
78/* NOTE: Do not call the next three routines directly. Use the macros
79 * in handy.h, so that we can easily redefine everything to do tracking of
80 * allocated hunks back to the original New to track down any memory leaks.
20cec16a 81 * XXX This advice seems to be widely ignored :-( --AD August 1996.
a687059c
LW
82 */
83
79a92154 84#if defined (DEBUGGING) || defined(PERL_IMPLICIT_SYS) || defined (PERL_TRACK_MEMPOOL)
1f4d2d4e
NC
85# define ALWAYS_NEED_THX
86#endif
87
b001a0d1
FC
88#if defined(PERL_TRACK_MEMPOOL) && defined(PERL_DEBUG_READONLY_COW)
89static void
90S_maybe_protect_rw(pTHX_ struct perl_memory_debug_header *header)
91{
92 if (header->readonly
93 && mprotect(header, header->size, PROT_READ|PROT_WRITE))
94 Perl_warn(aTHX_ "mprotect for COW string %p %lu failed with %d",
95 header, header->size, errno);
96}
97
98static void
99S_maybe_protect_ro(pTHX_ struct perl_memory_debug_header *header)
100{
101 if (header->readonly
102 && mprotect(header, header->size, PROT_READ))
103 Perl_warn(aTHX_ "mprotect RW for COW string %p %lu failed with %d",
104 header, header->size, errno);
105}
106# define maybe_protect_rw(foo) S_maybe_protect_rw(aTHX_ foo)
107# define maybe_protect_ro(foo) S_maybe_protect_ro(aTHX_ foo)
108#else
109# define maybe_protect_rw(foo) NOOP
110# define maybe_protect_ro(foo) NOOP
111#endif
112
3f07c2bc
FC
113#if defined(PERL_TRACK_MEMPOOL) || defined(PERL_DEBUG_READONLY_COW)
114 /* Use memory_debug_header */
115# define USE_MDH
116# if (defined(PERL_POISON) && defined(PERL_TRACK_MEMPOOL)) \
117 || defined(PERL_DEBUG_READONLY_COW)
118# define MDH_HAS_SIZE
119# endif
120#endif
121
26fa51c3
AMS
122/* paranoid version of system's malloc() */
123
bd4080b3 124Malloc_t
4f63d024 125Perl_safesysmalloc(MEM_SIZE size)
8d063cd8 126{
1f4d2d4e 127#ifdef ALWAYS_NEED_THX
54aff467 128 dTHX;
0cb20dae 129#endif
bd4080b3 130 Malloc_t ptr;
a78adc84 131 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
34de22dd 132#ifdef DEBUGGING
03c5309f 133 if ((SSize_t)size < 0)
5637ef5b 134 Perl_croak_nocontext("panic: malloc, size=%"UVuf, (UV) size);
34de22dd 135#endif
b001a0d1
FC
136 if (!size) size = 1; /* malloc(0) is NASTY on our system */
137#ifdef PERL_DEBUG_READONLY_COW
138 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
139 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
140 perror("mmap failed");
141 abort();
142 }
143#else
144 ptr = (Malloc_t)PerlMem_malloc(size?size:1);
145#endif
da927450 146 PERL_ALLOC_CHECK(ptr);
bd61b366 147 if (ptr != NULL) {
3f07c2bc 148#ifdef USE_MDH
7cb608b5
NC
149 struct perl_memory_debug_header *const header
150 = (struct perl_memory_debug_header *)ptr;
9a083ecf
NC
151#endif
152
153#ifdef PERL_POISON
7e337ee0 154 PoisonNew(((char *)ptr), size, char);
9a083ecf 155#endif
7cb608b5 156
9a083ecf 157#ifdef PERL_TRACK_MEMPOOL
7cb608b5
NC
158 header->interpreter = aTHX;
159 /* Link us into the list. */
160 header->prev = &PL_memory_debug_header;
161 header->next = PL_memory_debug_header.next;
162 PL_memory_debug_header.next = header;
b001a0d1 163 maybe_protect_rw(header->next);
7cb608b5 164 header->next->prev = header;
b001a0d1
FC
165 maybe_protect_ro(header->next);
166# ifdef PERL_DEBUG_READONLY_COW
167 header->readonly = 0;
cd1541b2 168# endif
e8dda941 169#endif
3f07c2bc 170#ifdef MDH_HAS_SIZE
b001a0d1
FC
171 header->size = size;
172#endif
b033d668 173 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
5dfff8f3 174 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
b033d668
DD
175
176 }
8d063cd8 177 else {
1f4d2d4e 178#ifndef ALWAYS_NEED_THX
0cb20dae
NC
179 dTHX;
180#endif
c62df97f 181 if (PL_nomemok)
b033d668
DD
182 ptr = NULL;
183 else
4cbe3a7d 184 croak_no_mem();
8d063cd8 185 }
b033d668 186 return ptr;
8d063cd8
LW
187}
188
f2517201 189/* paranoid version of system's realloc() */
8d063cd8 190
bd4080b3 191Malloc_t
4f63d024 192Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
8d063cd8 193{
1f4d2d4e 194#ifdef ALWAYS_NEED_THX
54aff467 195 dTHX;
0cb20dae 196#endif
bd4080b3 197 Malloc_t ptr;
b001a0d1
FC
198#ifdef PERL_DEBUG_READONLY_COW
199 const MEM_SIZE oldsize = where
a78adc84 200 ? ((struct perl_memory_debug_header *)((char *)where - PERL_MEMORY_DEBUG_HEADER_SIZE))->size
b001a0d1
FC
201 : 0;
202#endif
9a34ef1d 203#if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
6ad3d225 204 Malloc_t PerlMem_realloc();
ecfc5424 205#endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
8d063cd8 206
7614df0c 207 if (!size) {
f2517201 208 safesysfree(where);
b033d668 209 ptr = NULL;
7614df0c 210 }
b033d668
DD
211 else if (!where) {
212 ptr = safesysmalloc(size);
213 }
214 else {
3f07c2bc 215#ifdef USE_MDH
b033d668
DD
216 where = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
217 size += PERL_MEMORY_DEBUG_HEADER_SIZE;
218 {
219 struct perl_memory_debug_header *const header
220 = (struct perl_memory_debug_header *)where;
7cb608b5 221
b001a0d1 222# ifdef PERL_TRACK_MEMPOOL
b033d668
DD
223 if (header->interpreter != aTHX) {
224 Perl_croak_nocontext("panic: realloc from wrong pool, %p!=%p",
225 header->interpreter, aTHX);
226 }
227 assert(header->next->prev == header);
228 assert(header->prev->next == header);
cd1541b2 229# ifdef PERL_POISON
b033d668
DD
230 if (header->size > size) {
231 const MEM_SIZE freed_up = header->size - size;
232 char *start_of_freed = ((char *)where) + size;
233 PoisonFree(start_of_freed, freed_up, char);
234 }
cd1541b2 235# endif
b001a0d1 236# endif
3f07c2bc 237# ifdef MDH_HAS_SIZE
b033d668 238 header->size = size;
b001a0d1 239# endif
b033d668 240 }
e8dda941 241#endif
34de22dd 242#ifdef DEBUGGING
b033d668
DD
243 if ((SSize_t)size < 0)
244 Perl_croak_nocontext("panic: realloc, size=%"UVuf, (UV)size);
34de22dd 245#endif
b001a0d1 246#ifdef PERL_DEBUG_READONLY_COW
b033d668
DD
247 if ((ptr = mmap(0, size, PROT_READ|PROT_WRITE,
248 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
249 perror("mmap failed");
250 abort();
251 }
252 Copy(where,ptr,oldsize < size ? oldsize : size,char);
253 if (munmap(where, oldsize)) {
254 perror("munmap failed");
255 abort();
256 }
b001a0d1 257#else
b033d668 258 ptr = (Malloc_t)PerlMem_realloc(where,size);
b001a0d1 259#endif
b033d668 260 PERL_ALLOC_CHECK(ptr);
a1d180c4 261
4fd0a9b8
NC
262 /* MUST do this fixup first, before doing ANYTHING else, as anything else
263 might allocate memory/free/move memory, and until we do the fixup, it
264 may well be chasing (and writing to) free memory. */
b033d668 265 if (ptr != NULL) {
b001a0d1 266#ifdef PERL_TRACK_MEMPOOL
b033d668
DD
267 struct perl_memory_debug_header *const header
268 = (struct perl_memory_debug_header *)ptr;
7cb608b5 269
9a083ecf 270# ifdef PERL_POISON
b033d668
DD
271 if (header->size < size) {
272 const MEM_SIZE fresh = size - header->size;
273 char *start_of_fresh = ((char *)ptr) + size;
274 PoisonNew(start_of_fresh, fresh, char);
275 }
9a083ecf
NC
276# endif
277
b033d668
DD
278 maybe_protect_rw(header->next);
279 header->next->prev = header;
280 maybe_protect_ro(header->next);
281 maybe_protect_rw(header->prev);
282 header->prev->next = header;
283 maybe_protect_ro(header->prev);
b001a0d1 284#endif
b033d668
DD
285 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
286 }
4fd0a9b8
NC
287
288 /* In particular, must do that fixup above before logging anything via
289 *printf(), as it can reallocate memory, which can cause SEGVs. */
290
b033d668
DD
291 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
292 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
4fd0a9b8 293
b033d668 294 if (ptr == NULL) {
1f4d2d4e 295#ifndef ALWAYS_NEED_THX
b033d668 296 dTHX;
0cb20dae 297#endif
b033d668
DD
298 if (PL_nomemok)
299 ptr = NULL;
300 else
301 croak_no_mem();
0cb20dae 302 }
8d063cd8 303 }
b033d668 304 return ptr;
8d063cd8
LW
305}
306
f2517201 307/* safe version of system's free() */
8d063cd8 308
54310121 309Free_t
4f63d024 310Perl_safesysfree(Malloc_t where)
8d063cd8 311{
79a92154 312#ifdef ALWAYS_NEED_THX
54aff467 313 dTHX;
155aba94 314#endif
97835f67 315 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
378cc40b 316 if (where) {
3f07c2bc 317#ifdef USE_MDH
6edcbed6 318 Malloc_t where_intrn = (Malloc_t)((char*)where-PERL_MEMORY_DEBUG_HEADER_SIZE);
cd1541b2 319 {
7cb608b5 320 struct perl_memory_debug_header *const header
6edcbed6 321 = (struct perl_memory_debug_header *)where_intrn;
7cb608b5 322
3f07c2bc 323# ifdef MDH_HAS_SIZE
b001a0d1
FC
324 const MEM_SIZE size = header->size;
325# endif
326# ifdef PERL_TRACK_MEMPOOL
7cb608b5 327 if (header->interpreter != aTHX) {
5637ef5b
NC
328 Perl_croak_nocontext("panic: free from wrong pool, %p!=%p",
329 header->interpreter, aTHX);
7cb608b5
NC
330 }
331 if (!header->prev) {
cd1541b2
NC
332 Perl_croak_nocontext("panic: duplicate free");
333 }
5637ef5b
NC
334 if (!(header->next))
335 Perl_croak_nocontext("panic: bad free, header->next==NULL");
336 if (header->next->prev != header || header->prev->next != header) {
337 Perl_croak_nocontext("panic: bad free, ->next->prev=%p, "
338 "header=%p, ->prev->next=%p",
339 header->next->prev, header,
340 header->prev->next);
cd1541b2 341 }
7cb608b5 342 /* Unlink us from the chain. */
b001a0d1 343 maybe_protect_rw(header->next);
7cb608b5 344 header->next->prev = header->prev;
b001a0d1
FC
345 maybe_protect_ro(header->next);
346 maybe_protect_rw(header->prev);
7cb608b5 347 header->prev->next = header->next;
b001a0d1
FC
348 maybe_protect_ro(header->prev);
349 maybe_protect_rw(header);
7cb608b5 350# ifdef PERL_POISON
6edcbed6 351 PoisonNew(where_intrn, size, char);
cd1541b2 352# endif
7cb608b5
NC
353 /* Trigger the duplicate free warning. */
354 header->next = NULL;
b001a0d1
FC
355# endif
356# ifdef PERL_DEBUG_READONLY_COW
6edcbed6 357 if (munmap(where_intrn, size)) {
b001a0d1
FC
358 perror("munmap failed");
359 abort();
360 }
361# endif
7cb608b5 362 }
6edcbed6
DD
363#else
364 Malloc_t where_intrn = where;
365#endif /* USE_MDH */
b001a0d1 366#ifndef PERL_DEBUG_READONLY_COW
6edcbed6 367 PerlMem_free(where_intrn);
b001a0d1 368#endif
378cc40b 369 }
8d063cd8
LW
370}
371
f2517201 372/* safe version of system's calloc() */
1050c9ca 373
bd4080b3 374Malloc_t
4f63d024 375Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
1050c9ca 376{
1f4d2d4e 377#ifdef ALWAYS_NEED_THX
54aff467 378 dTHX;
0cb20dae 379#endif
bd4080b3 380 Malloc_t ptr;
3f07c2bc 381#if defined(USE_MDH) || defined(DEBUGGING)
ad7244db 382 MEM_SIZE total_size = 0;
4b1123b9 383#endif
1050c9ca 384
ad7244db 385 /* Even though calloc() for zero bytes is strange, be robust. */
4b1123b9 386 if (size && (count <= MEM_SIZE_MAX / size)) {
3f07c2bc 387#if defined(USE_MDH) || defined(DEBUGGING)
ad7244db 388 total_size = size * count;
4b1123b9
NC
389#endif
390 }
ad7244db 391 else
d1decf2b 392 croak_memory_wrap();
3f07c2bc 393#ifdef USE_MDH
a78adc84
DM
394 if (PERL_MEMORY_DEBUG_HEADER_SIZE <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
395 total_size += PERL_MEMORY_DEBUG_HEADER_SIZE;
ad7244db 396 else
d1decf2b 397 croak_memory_wrap();
ad7244db 398#endif
1050c9ca 399#ifdef DEBUGGING
03c5309f 400 if ((SSize_t)size < 0 || (SSize_t)count < 0)
5637ef5b
NC
401 Perl_croak_nocontext("panic: calloc, size=%"UVuf", count=%"UVuf,
402 (UV)size, (UV)count);
1050c9ca 403#endif
b001a0d1
FC
404#ifdef PERL_DEBUG_READONLY_COW
405 if ((ptr = mmap(0, total_size ? total_size : 1, PROT_READ|PROT_WRITE,
406 MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED) {
407 perror("mmap failed");
408 abort();
409 }
410#elif defined(PERL_TRACK_MEMPOOL)
e1a95402
NC
411 /* Have to use malloc() because we've added some space for our tracking
412 header. */
ad7244db
JH
413 /* malloc(0) is non-portable. */
414 ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
e1a95402
NC
415#else
416 /* Use calloc() because it might save a memset() if the memory is fresh
417 and clean from the OS. */
ad7244db
JH
418 if (count && size)
419 ptr = (Malloc_t)PerlMem_calloc(count, size);
420 else /* calloc(0) is non-portable. */
421 ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
e8dda941 422#endif
da927450 423 PERL_ALLOC_CHECK(ptr);
e1a95402 424 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)total_size));
bd61b366 425 if (ptr != NULL) {
3f07c2bc 426#ifdef USE_MDH
7cb608b5
NC
427 {
428 struct perl_memory_debug_header *const header
429 = (struct perl_memory_debug_header *)ptr;
430
b001a0d1 431# ifndef PERL_DEBUG_READONLY_COW
e1a95402 432 memset((void*)ptr, 0, total_size);
b001a0d1
FC
433# endif
434# ifdef PERL_TRACK_MEMPOOL
7cb608b5
NC
435 header->interpreter = aTHX;
436 /* Link us into the list. */
437 header->prev = &PL_memory_debug_header;
438 header->next = PL_memory_debug_header.next;
439 PL_memory_debug_header.next = header;
b001a0d1 440 maybe_protect_rw(header->next);
7cb608b5 441 header->next->prev = header;
b001a0d1
FC
442 maybe_protect_ro(header->next);
443# ifdef PERL_DEBUG_READONLY_COW
444 header->readonly = 0;
445# endif
446# endif
3f07c2bc 447# ifdef MDH_HAS_SIZE
e1a95402 448 header->size = total_size;
cd1541b2 449# endif
a78adc84 450 ptr = (Malloc_t)((char*)ptr+PERL_MEMORY_DEBUG_HEADER_SIZE);
7cb608b5 451 }
e8dda941 452#endif
1050c9ca 453 return ptr;
454 }
0cb20dae 455 else {
1f4d2d4e 456#ifndef ALWAYS_NEED_THX
0cb20dae
NC
457 dTHX;
458#endif
459 if (PL_nomemok)
460 return NULL;
4cbe3a7d 461 croak_no_mem();
0cb20dae 462 }
1050c9ca 463}
464
cae6d0e5
GS
465/* These must be defined when not using Perl's malloc for binary
466 * compatibility */
467
468#ifndef MYMALLOC
469
470Malloc_t Perl_malloc (MEM_SIZE nbytes)
471{
20b7effb
JH
472#ifdef PERL_IMPLICIT_SYS
473 dTHX;
474#endif
077a72a9 475 return (Malloc_t)PerlMem_malloc(nbytes);
cae6d0e5
GS
476}
477
478Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
479{
20b7effb
JH
480#ifdef PERL_IMPLICIT_SYS
481 dTHX;
482#endif
077a72a9 483 return (Malloc_t)PerlMem_calloc(elements, size);
cae6d0e5
GS
484}
485
486Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
487{
20b7effb
JH
488#ifdef PERL_IMPLICIT_SYS
489 dTHX;
490#endif
077a72a9 491 return (Malloc_t)PerlMem_realloc(where, nbytes);
cae6d0e5
GS
492}
493
494Free_t Perl_mfree (Malloc_t where)
495{
20b7effb
JH
496#ifdef PERL_IMPLICIT_SYS
497 dTHX;
498#endif
cae6d0e5
GS
499 PerlMem_free(where);
500}
501
502#endif
503
8d063cd8
LW
504/* copy a string up to some (non-backslashed) delimiter, if any */
505
506char *
5aaab254 507Perl_delimcpy(char *to, const char *toend, const char *from, const char *fromend, int delim, I32 *retlen)
8d063cd8 508{
eb578fdb 509 I32 tolen;
35da51f7 510
7918f24d
NC
511 PERL_ARGS_ASSERT_DELIMCPY;
512
fc36a67e 513 for (tolen = 0; from < fromend; from++, tolen++) {
378cc40b 514 if (*from == '\\') {
35da51f7 515 if (from[1] != delim) {
fc36a67e 516 if (to < toend)
517 *to++ = *from;
518 tolen++;
fc36a67e 519 }
35da51f7 520 from++;
378cc40b 521 }
bedebaa5 522 else if (*from == delim)
8d063cd8 523 break;
fc36a67e 524 if (to < toend)
525 *to++ = *from;
8d063cd8 526 }
bedebaa5
CS
527 if (to < toend)
528 *to = '\0';
fc36a67e 529 *retlen = tolen;
73d840c0 530 return (char *)from;
8d063cd8
LW
531}
532
533/* return ptr to little string in big string, NULL if not found */
378cc40b 534/* This routine was donated by Corey Satten. */
8d063cd8
LW
535
536char *
5aaab254 537Perl_instr(const char *big, const char *little)
378cc40b 538{
378cc40b 539
7918f24d
NC
540 PERL_ARGS_ASSERT_INSTR;
541
9c4b6232
KW
542 /* libc prior to 4.6.27 (late 1994) did not work properly on a NULL
543 * 'little' */
a687059c 544 if (!little)
08105a92 545 return (char*)big;
5d1d68e2 546 return strstr((char*)big, (char*)little);
378cc40b 547}
8d063cd8 548
e057d092
KW
549/* same as instr but allow embedded nulls. The end pointers point to 1 beyond
550 * the final character desired to be checked */
a687059c
LW
551
552char *
04c9e624 553Perl_ninstr(const char *big, const char *bigend, const char *little, const char *lend)
8d063cd8 554{
7918f24d 555 PERL_ARGS_ASSERT_NINSTR;
4c8626be
GA
556 if (little >= lend)
557 return (char*)big;
558 {
8ba22ff4 559 const char first = *little;
4c8626be 560 const char *s, *x;
8ba22ff4 561 bigend -= lend - little++;
4c8626be
GA
562 OUTER:
563 while (big <= bigend) {
b0ca24ee
JH
564 if (*big++ == first) {
565 for (x=big,s=little; s < lend; x++,s++) {
566 if (*s != *x)
567 goto OUTER;
568 }
569 return (char*)(big-1);
4c8626be 570 }
4c8626be 571 }
378cc40b 572 }
bd61b366 573 return NULL;
a687059c
LW
574}
575
576/* reverse of the above--find last substring */
577
578char *
5aaab254 579Perl_rninstr(const char *big, const char *bigend, const char *little, const char *lend)
a687059c 580{
eb578fdb
KW
581 const char *bigbeg;
582 const I32 first = *little;
583 const char * const littleend = lend;
a687059c 584
7918f24d
NC
585 PERL_ARGS_ASSERT_RNINSTR;
586
260d78c9 587 if (little >= littleend)
08105a92 588 return (char*)bigend;
a687059c
LW
589 bigbeg = big;
590 big = bigend - (littleend - little++);
591 while (big >= bigbeg) {
eb578fdb 592 const char *s, *x;
a687059c
LW
593 if (*big-- != first)
594 continue;
595 for (x=big+2,s=little; s < littleend; /**/ ) {
4fc877ac 596 if (*s != *x)
a687059c 597 break;
4fc877ac
AL
598 else {
599 x++;
600 s++;
a687059c
LW
601 }
602 }
603 if (s >= littleend)
08105a92 604 return (char*)(big+1);
378cc40b 605 }
bd61b366 606 return NULL;
378cc40b 607}
a687059c 608
cf93c79d
IZ
609/* As a space optimization, we do not compile tables for strings of length
610 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
611 special-cased in fbm_instr().
612
613 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
614
954c1994 615/*
ccfc67b7
JH
616=head1 Miscellaneous Functions
617
954c1994
GS
618=for apidoc fbm_compile
619
620Analyses the string in order to make fast searches on it using fbm_instr()
621-- the Boyer-Moore algorithm.
622
623=cut
624*/
625
378cc40b 626void
7506f9c3 627Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
378cc40b 628{
eb578fdb 629 const U8 *s;
ea725ce6 630 STRLEN i;
0b71040e 631 STRLEN len;
79072805 632 U32 frequency = 256;
2bda37ba 633 MAGIC *mg;
00cccd05 634 PERL_DEB( STRLEN rarest = 0 );
79072805 635
7918f24d
NC
636 PERL_ARGS_ASSERT_FBM_COMPILE;
637
948d2370 638 if (isGV_with_GP(sv) || SvROK(sv))
4265b45d
NC
639 return;
640
9402563a
NC
641 if (SvVALID(sv))
642 return;
643
c517dc2b 644 if (flags & FBMcf_TAIL) {
890ce7af 645 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
396482e1 646 sv_catpvs(sv, "\n"); /* Taken into account in fbm_instr() */
c517dc2b
JH
647 if (mg && mg->mg_len >= 0)
648 mg->mg_len++;
649 }
11609d9c 650 if (!SvPOK(sv) || SvNIOKp(sv))
66379c06
FC
651 s = (U8*)SvPV_force_mutable(sv, len);
652 else s = (U8 *)SvPV_mutable(sv, len);
d1be9408 653 if (len == 0) /* TAIL might be on a zero-length string. */
cf93c79d 654 return;
c13a5c80 655 SvUPGRADE(sv, SVt_PVMG);
78d0cf80 656 SvIOK_off(sv);
8eeaf79a
NC
657 SvNOK_off(sv);
658 SvVALID_on(sv);
2bda37ba
NC
659
660 /* "deep magic", the comment used to add. The use of MAGIC itself isn't
661 really. MAGIC was originally added in 79072805bf63abe5 (perl 5.0 alpha 2)
662 to call SvVALID_off() if the scalar was assigned to.
663
664 The comment itself (and "deeper magic" below) date back to
665 378cc40b38293ffc (perl 2.0). "deep magic" was an annotation on
666 str->str_pok |= 2;
667 where the magic (presumably) was that the scalar had a BM table hidden
668 inside itself.
669
670 As MAGIC is always present on BMs [in Perl 5 :-)], we can use it to store
671 the table instead of the previous (somewhat hacky) approach of co-opting
672 the string buffer and storing it after the string. */
673
674 assert(!mg_find(sv, PERL_MAGIC_bm));
675 mg = sv_magicext(sv, NULL, PERL_MAGIC_bm, &PL_vtbl_bm, NULL, 0);
676 assert(mg);
677
02128f11 678 if (len > 2) {
21aeb718
NC
679 /* Shorter strings are special-cased in Perl_fbm_instr(), and don't use
680 the BM table. */
66a1b24b 681 const U8 mlen = (len>255) ? 255 : (U8)len;
2bda37ba 682 const unsigned char *const sb = s + len - mlen; /* first char (maybe) */
eb578fdb 683 U8 *table;
cf93c79d 684
2bda37ba 685 Newx(table, 256, U8);
7506f9c3 686 memset((void*)table, mlen, 256);
2bda37ba
NC
687 mg->mg_ptr = (char *)table;
688 mg->mg_len = 256;
689
690 s += len - 1; /* last char */
02128f11 691 i = 0;
cf93c79d
IZ
692 while (s >= sb) {
693 if (table[*s] == mlen)
7506f9c3 694 table[*s] = (U8)i;
cf93c79d
IZ
695 s--, i++;
696 }
378cc40b 697 }
378cc40b 698
9cbe880b 699 s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
bbce6d69 700 for (i = 0; i < len; i++) {
22c35a8c 701 if (PL_freq[s[i]] < frequency) {
00cccd05 702 PERL_DEB( rarest = i );
22c35a8c 703 frequency = PL_freq[s[i]];
378cc40b
LW
704 }
705 }
cf93c79d
IZ
706 BmUSEFUL(sv) = 100; /* Initial value */
707 if (flags & FBMcf_TAIL)
708 SvTAIL_on(sv);
ea725ce6 709 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %"UVuf"\n",
d80cf470 710 s[rarest], (UV)rarest));
378cc40b
LW
711}
712
cf93c79d
IZ
713/* If SvTAIL(littlestr), it has a fake '\n' at end. */
714/* If SvTAIL is actually due to \Z or \z, this gives false positives
715 if multiline */
716
954c1994
GS
717/*
718=for apidoc fbm_instr
719
3f4963df
FC
720Returns the location of the SV in the string delimited by C<big> and
721C<bigend>. It returns C<NULL> if the string can't be found. The C<sv>
954c1994
GS
722does not have to be fbm_compiled, but the search will not be as fast
723then.
724
725=cut
726*/
727
378cc40b 728char *
5aaab254 729Perl_fbm_instr(pTHX_ unsigned char *big, unsigned char *bigend, SV *littlestr, U32 flags)
378cc40b 730{
eb578fdb 731 unsigned char *s;
cf93c79d 732 STRLEN l;
eb578fdb
KW
733 const unsigned char *little = (const unsigned char *)SvPV_const(littlestr,l);
734 STRLEN littlelen = l;
735 const I32 multiline = flags & FBMrf_MULTILINE;
cf93c79d 736
7918f24d
NC
737 PERL_ARGS_ASSERT_FBM_INSTR;
738
eb160463 739 if ((STRLEN)(bigend - big) < littlelen) {
a1d180c4 740 if ( SvTAIL(littlestr)
eb160463 741 && ((STRLEN)(bigend - big) == littlelen - 1)
a1d180c4 742 && (littlelen == 1
12ae5dfc 743 || (*big == *little &&
27da23d5 744 memEQ((char *)big, (char *)little, littlelen - 1))))
cf93c79d 745 return (char*)big;
bd61b366 746 return NULL;
cf93c79d 747 }
378cc40b 748
21aeb718
NC
749 switch (littlelen) { /* Special cases for 0, 1 and 2 */
750 case 0:
751 return (char*)big; /* Cannot be SvTAIL! */
752 case 1:
cf93c79d
IZ
753 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
754 /* Know that bigend != big. */
755 if (bigend[-1] == '\n')
756 return (char *)(bigend - 1);
757 return (char *) bigend;
758 }
759 s = big;
760 while (s < bigend) {
761 if (*s == *little)
762 return (char *)s;
763 s++;
764 }
765 if (SvTAIL(littlestr))
766 return (char *) bigend;
bd61b366 767 return NULL;
21aeb718 768 case 2:
cf93c79d
IZ
769 if (SvTAIL(littlestr) && !multiline) {
770 if (bigend[-1] == '\n' && bigend[-2] == *little)
771 return (char*)bigend - 2;
772 if (bigend[-1] == *little)
773 return (char*)bigend - 1;
bd61b366 774 return NULL;
cf93c79d
IZ
775 }
776 {
777 /* This should be better than FBM if c1 == c2, and almost
778 as good otherwise: maybe better since we do less indirection.
779 And we save a lot of memory by caching no table. */
66a1b24b
AL
780 const unsigned char c1 = little[0];
781 const unsigned char c2 = little[1];
cf93c79d
IZ
782
783 s = big + 1;
784 bigend--;
785 if (c1 != c2) {
786 while (s <= bigend) {
787 if (s[0] == c2) {
788 if (s[-1] == c1)
789 return (char*)s - 1;
790 s += 2;
791 continue;
3fe6f2dc 792 }
cf93c79d
IZ
793 next_chars:
794 if (s[0] == c1) {
795 if (s == bigend)
796 goto check_1char_anchor;
797 if (s[1] == c2)
798 return (char*)s;
799 else {
800 s++;
801 goto next_chars;
802 }
803 }
804 else
805 s += 2;
806 }
807 goto check_1char_anchor;
808 }
809 /* Now c1 == c2 */
810 while (s <= bigend) {
811 if (s[0] == c1) {
812 if (s[-1] == c1)
813 return (char*)s - 1;
814 if (s == bigend)
815 goto check_1char_anchor;
816 if (s[1] == c1)
817 return (char*)s;
818 s += 3;
02128f11 819 }
c277df42 820 else
cf93c79d 821 s += 2;
c277df42 822 }
c277df42 823 }
cf93c79d
IZ
824 check_1char_anchor: /* One char and anchor! */
825 if (SvTAIL(littlestr) && (*bigend == *little))
826 return (char *)bigend; /* bigend is already decremented. */
bd61b366 827 return NULL;
21aeb718
NC
828 default:
829 break; /* Only lengths 0 1 and 2 have special-case code. */
d48672a2 830 }
21aeb718 831
cf93c79d 832 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
bbce6d69 833 s = bigend - littlelen;
a1d180c4 834 if (s >= big && bigend[-1] == '\n' && *s == *little
cf93c79d
IZ
835 /* Automatically of length > 2 */
836 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
7506f9c3 837 {
bbce6d69 838 return (char*)s; /* how sweet it is */
7506f9c3
GS
839 }
840 if (s[1] == *little
841 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
842 {
cf93c79d 843 return (char*)s + 1; /* how sweet it is */
7506f9c3 844 }
bd61b366 845 return NULL;
02128f11 846 }
cecf5685 847 if (!SvVALID(littlestr)) {
c4420975 848 char * const b = ninstr((char*)big,(char*)bigend,
cf93c79d
IZ
849 (char*)little, (char*)little + littlelen);
850
851 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
852 /* Chop \n from littlestr: */
853 s = bigend - littlelen + 1;
7506f9c3
GS
854 if (*s == *little
855 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
856 {
3fe6f2dc 857 return (char*)s;
7506f9c3 858 }
bd61b366 859 return NULL;
a687059c 860 }
cf93c79d 861 return b;
a687059c 862 }
a1d180c4 863
3566a07d
NC
864 /* Do actual FBM. */
865 if (littlelen > (STRLEN)(bigend - big))
866 return NULL;
867
868 {
2bda37ba 869 const MAGIC *const mg = mg_find(littlestr, PERL_MAGIC_bm);
eb578fdb 870 const unsigned char *oldlittle;
cf93c79d 871
316ebaf2
JH
872 assert(mg);
873
cf93c79d
IZ
874 --littlelen; /* Last char found by table lookup */
875
876 s = big + littlelen;
877 little += littlelen; /* last char */
878 oldlittle = little;
879 if (s < bigend) {
316ebaf2 880 const unsigned char * const table = (const unsigned char *) mg->mg_ptr;
eb578fdb 881 I32 tmp;
cf93c79d
IZ
882
883 top2:
7506f9c3 884 if ((tmp = table[*s])) {
cf93c79d 885 if ((s += tmp) < bigend)
62b28dd9 886 goto top2;
cf93c79d
IZ
887 goto check_end;
888 }
889 else { /* less expensive than calling strncmp() */
eb578fdb 890 unsigned char * const olds = s;
cf93c79d
IZ
891
892 tmp = littlelen;
893
894 while (tmp--) {
895 if (*--s == *--little)
896 continue;
cf93c79d
IZ
897 s = olds + 1; /* here we pay the price for failure */
898 little = oldlittle;
899 if (s < bigend) /* fake up continue to outer loop */
900 goto top2;
901 goto check_end;
902 }
903 return (char *)s;
a687059c 904 }
378cc40b 905 }
cf93c79d 906 check_end:
c8029a41 907 if ( s == bigend
cffe132d 908 && SvTAIL(littlestr)
12ae5dfc
JH
909 && memEQ((char *)(bigend - littlelen),
910 (char *)(oldlittle - littlelen), littlelen) )
cf93c79d 911 return (char*)bigend - littlelen;
bd61b366 912 return NULL;
378cc40b 913 }
378cc40b
LW
914}
915
e6226b18
KW
916/*
917=for apidoc foldEQ
918
919Returns true if the leading len bytes of the strings s1 and s2 are the same
920case-insensitively; false otherwise. Uppercase and lowercase ASCII range bytes
921match themselves and their opposite case counterparts. Non-cased and non-ASCII
922range bytes match only themselves.
923
924=cut
925*/
926
927
79072805 928I32
5aaab254 929Perl_foldEQ(const char *s1, const char *s2, I32 len)
79072805 930{
eb578fdb
KW
931 const U8 *a = (const U8 *)s1;
932 const U8 *b = (const U8 *)s2;
96a5add6 933
e6226b18 934 PERL_ARGS_ASSERT_FOLDEQ;
7918f24d 935
223f01db
KW
936 assert(len >= 0);
937
79072805 938 while (len--) {
22c35a8c 939 if (*a != *b && *a != PL_fold[*b])
e6226b18 940 return 0;
bbce6d69 941 a++,b++;
942 }
e6226b18 943 return 1;
bbce6d69 944}
1b9f127b 945I32
5aaab254 946Perl_foldEQ_latin1(const char *s1, const char *s2, I32 len)
1b9f127b
KW
947{
948 /* Compare non-utf8 using Unicode (Latin1) semantics. Does not work on
949 * MICRO_SIGN, LATIN_SMALL_LETTER_SHARP_S, nor
950 * LATIN_SMALL_LETTER_Y_WITH_DIAERESIS, and does not check for these. Nor
951 * does it check that the strings each have at least 'len' characters */
952
eb578fdb
KW
953 const U8 *a = (const U8 *)s1;
954 const U8 *b = (const U8 *)s2;
1b9f127b
KW
955
956 PERL_ARGS_ASSERT_FOLDEQ_LATIN1;
957
223f01db
KW
958 assert(len >= 0);
959
1b9f127b
KW
960 while (len--) {
961 if (*a != *b && *a != PL_fold_latin1[*b]) {
962 return 0;
963 }
964 a++, b++;
965 }
966 return 1;
967}
bbce6d69 968
e6226b18
KW
969/*
970=for apidoc foldEQ_locale
971
972Returns true if the leading len bytes of the strings s1 and s2 are the same
973case-insensitively in the current locale; false otherwise.
974
975=cut
976*/
977
bbce6d69 978I32
5aaab254 979Perl_foldEQ_locale(const char *s1, const char *s2, I32 len)
bbce6d69 980{
27da23d5 981 dVAR;
eb578fdb
KW
982 const U8 *a = (const U8 *)s1;
983 const U8 *b = (const U8 *)s2;
96a5add6 984
e6226b18 985 PERL_ARGS_ASSERT_FOLDEQ_LOCALE;
7918f24d 986
223f01db
KW
987 assert(len >= 0);
988
bbce6d69 989 while (len--) {
22c35a8c 990 if (*a != *b && *a != PL_fold_locale[*b])
e6226b18 991 return 0;
bbce6d69 992 a++,b++;
79072805 993 }
e6226b18 994 return 1;
79072805
LW
995}
996
8d063cd8
LW
997/* copy a string to a safe spot */
998
954c1994 999/*
ccfc67b7
JH
1000=head1 Memory Management
1001
954c1994
GS
1002=for apidoc savepv
1003
72d33970
FC
1004Perl's version of C<strdup()>. Returns a pointer to a newly allocated
1005string which is a duplicate of C<pv>. The size of the string is
30a15352
KW
1006determined by C<strlen()>, which means it may not contain embedded C<NUL>
1007characters and must have a trailing C<NUL>. The memory allocated for the new
1008string can be freed with the C<Safefree()> function.
954c1994 1009
0358c255
KW
1010On some platforms, Windows for example, all allocated memory owned by a thread
1011is deallocated when that thread ends. So if you need that not to happen, you
1012need to use the shared memory functions, such as C<L</savesharedpv>>.
1013
954c1994
GS
1014=cut
1015*/
1016
8d063cd8 1017char *
efdfce31 1018Perl_savepv(pTHX_ const char *pv)
8d063cd8 1019{
96a5add6 1020 PERL_UNUSED_CONTEXT;
e90e2364 1021 if (!pv)
bd61b366 1022 return NULL;
66a1b24b
AL
1023 else {
1024 char *newaddr;
1025 const STRLEN pvlen = strlen(pv)+1;
10edeb5d
JH
1026 Newx(newaddr, pvlen, char);
1027 return (char*)memcpy(newaddr, pv, pvlen);
66a1b24b 1028 }
8d063cd8
LW
1029}
1030
a687059c
LW
1031/* same thing but with a known length */
1032
954c1994
GS
1033/*
1034=for apidoc savepvn
1035
72d33970 1036Perl's version of what C<strndup()> would be if it existed. Returns a
61a925ed 1037pointer to a newly allocated string which is a duplicate of the first
72d33970 1038C<len> bytes from C<pv>, plus a trailing
6602b933 1039C<NUL> byte. The memory allocated for
cbf82dd0 1040the new string can be freed with the C<Safefree()> function.
954c1994 1041
0358c255
KW
1042On some platforms, Windows for example, all allocated memory owned by a thread
1043is deallocated when that thread ends. So if you need that not to happen, you
1044need to use the shared memory functions, such as C<L</savesharedpvn>>.
1045
954c1994
GS
1046=cut
1047*/
1048
a687059c 1049char *
5aaab254 1050Perl_savepvn(pTHX_ const char *pv, I32 len)
a687059c 1051{
eb578fdb 1052 char *newaddr;
96a5add6 1053 PERL_UNUSED_CONTEXT;
a687059c 1054
223f01db
KW
1055 assert(len >= 0);
1056
a02a5408 1057 Newx(newaddr,len+1,char);
92110913 1058 /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
efdfce31 1059 if (pv) {
e90e2364
NC
1060 /* might not be null terminated */
1061 newaddr[len] = '\0';
07409e01 1062 return (char *) CopyD(pv,newaddr,len,char);
92110913
NIS
1063 }
1064 else {
07409e01 1065 return (char *) ZeroD(newaddr,len+1,char);
92110913 1066 }
a687059c
LW
1067}
1068
05ec9bb3
NIS
1069/*
1070=for apidoc savesharedpv
1071
61a925ed
AMS
1072A version of C<savepv()> which allocates the duplicate string in memory
1073which is shared between threads.
05ec9bb3
NIS
1074
1075=cut
1076*/
1077char *
efdfce31 1078Perl_savesharedpv(pTHX_ const char *pv)
05ec9bb3 1079{
eb578fdb 1080 char *newaddr;
490a0e98 1081 STRLEN pvlen;
dc3bf405
BF
1082
1083 PERL_UNUSED_CONTEXT;
1084
e90e2364 1085 if (!pv)
bd61b366 1086 return NULL;
e90e2364 1087
490a0e98
NC
1088 pvlen = strlen(pv)+1;
1089 newaddr = (char*)PerlMemShared_malloc(pvlen);
e90e2364 1090 if (!newaddr) {
4cbe3a7d 1091 croak_no_mem();
05ec9bb3 1092 }
10edeb5d 1093 return (char*)memcpy(newaddr, pv, pvlen);
05ec9bb3
NIS
1094}
1095
2e0de35c 1096/*
d9095cec
NC
1097=for apidoc savesharedpvn
1098
1099A version of C<savepvn()> which allocates the duplicate string in memory
72d33970 1100which is shared between threads. (With the specific difference that a NULL
d9095cec
NC
1101pointer is not acceptable)
1102
1103=cut
1104*/
1105char *
1106Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
1107{
1108 char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
7918f24d 1109
dc3bf405 1110 PERL_UNUSED_CONTEXT;
6379d4a9 1111 /* PERL_ARGS_ASSERT_SAVESHAREDPVN; */
7918f24d 1112
d9095cec 1113 if (!newaddr) {
4cbe3a7d 1114 croak_no_mem();
d9095cec
NC
1115 }
1116 newaddr[len] = '\0';
1117 return (char*)memcpy(newaddr, pv, len);
1118}
1119
1120/*
2e0de35c
NC
1121=for apidoc savesvpv
1122
6832267f 1123A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
2e0de35c
NC
1124the passed in SV using C<SvPV()>
1125
0358c255
KW
1126On some platforms, Windows for example, all allocated memory owned by a thread
1127is deallocated when that thread ends. So if you need that not to happen, you
1128need to use the shared memory functions, such as C<L</savesharedsvpv>>.
1129
2e0de35c
NC
1130=cut
1131*/
1132
1133char *
1134Perl_savesvpv(pTHX_ SV *sv)
1135{
1136 STRLEN len;
7452cf6a 1137 const char * const pv = SvPV_const(sv, len);
eb578fdb 1138 char *newaddr;
2e0de35c 1139
7918f24d
NC
1140 PERL_ARGS_ASSERT_SAVESVPV;
1141
26866f99 1142 ++len;
a02a5408 1143 Newx(newaddr,len,char);
07409e01 1144 return (char *) CopyD(pv,newaddr,len,char);
2e0de35c 1145}
05ec9bb3 1146
9dcc53ea
Z
1147/*
1148=for apidoc savesharedsvpv
1149
1150A version of C<savesharedpv()> which allocates the duplicate string in
1151memory which is shared between threads.
1152
1153=cut
1154*/
1155
1156char *
1157Perl_savesharedsvpv(pTHX_ SV *sv)
1158{
1159 STRLEN len;
1160 const char * const pv = SvPV_const(sv, len);
1161
1162 PERL_ARGS_ASSERT_SAVESHAREDSVPV;
1163
1164 return savesharedpvn(pv, len);
1165}
05ec9bb3 1166
cea2e8a9 1167/* the SV for Perl_form() and mess() is not kept in an arena */
fc36a67e 1168
76e3520e 1169STATIC SV *
cea2e8a9 1170S_mess_alloc(pTHX)
fc36a67e 1171{
1172 SV *sv;
1173 XPVMG *any;
1174
627364f1 1175 if (PL_phase != PERL_PHASE_DESTRUCT)
84bafc02 1176 return newSVpvs_flags("", SVs_TEMP);
e72dc28c 1177
0372dbb6
GS
1178 if (PL_mess_sv)
1179 return PL_mess_sv;
1180
fc36a67e 1181 /* Create as PVMG now, to avoid any upgrading later */
a02a5408
JC
1182 Newx(sv, 1, SV);
1183 Newxz(any, 1, XPVMG);
fc36a67e 1184 SvFLAGS(sv) = SVt_PVMG;
1185 SvANY(sv) = (void*)any;
6136c704 1186 SvPV_set(sv, NULL);
fc36a67e 1187 SvREFCNT(sv) = 1 << 30; /* practically infinite */
e72dc28c 1188 PL_mess_sv = sv;
fc36a67e 1189 return sv;
1190}
1191
c5be433b 1192#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
1193char *
1194Perl_form_nocontext(const char* pat, ...)
1195{
1196 dTHX;
c5be433b 1197 char *retval;
cea2e8a9 1198 va_list args;
7918f24d 1199 PERL_ARGS_ASSERT_FORM_NOCONTEXT;
cea2e8a9 1200 va_start(args, pat);
c5be433b 1201 retval = vform(pat, &args);
cea2e8a9 1202 va_end(args);
c5be433b 1203 return retval;
cea2e8a9 1204}
c5be433b 1205#endif /* PERL_IMPLICIT_CONTEXT */
cea2e8a9 1206
7c9e965c 1207/*
ccfc67b7 1208=head1 Miscellaneous Functions
7c9e965c
JP
1209=for apidoc form
1210
1211Takes a sprintf-style format pattern and conventional
1212(non-SV) arguments and returns the formatted string.
1213
1214 (char *) Perl_form(pTHX_ const char* pat, ...)
1215
1216can be used any place a string (char *) is required:
1217
1218 char * s = Perl_form("%d.%d",major,minor);
1219
1220Uses a single private buffer so if you want to format several strings you
1221must explicitly copy the earlier strings away (and free the copies when you
1222are done).
1223
1224=cut
1225*/
1226
8990e307 1227char *
864dbfa3 1228Perl_form(pTHX_ const char* pat, ...)
8990e307 1229{
c5be433b 1230 char *retval;
46fc3d4c 1231 va_list args;
7918f24d 1232 PERL_ARGS_ASSERT_FORM;
46fc3d4c 1233 va_start(args, pat);
c5be433b 1234 retval = vform(pat, &args);
46fc3d4c 1235 va_end(args);
c5be433b
GS
1236 return retval;
1237}
1238
1239char *
1240Perl_vform(pTHX_ const char *pat, va_list *args)
1241{
2d03de9c 1242 SV * const sv = mess_alloc();
7918f24d 1243 PERL_ARGS_ASSERT_VFORM;
4608196e 1244 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
e72dc28c 1245 return SvPVX(sv);
46fc3d4c 1246}
a687059c 1247
c5df3096
Z
1248/*
1249=for apidoc Am|SV *|mess|const char *pat|...
1250
1251Take a sprintf-style format pattern and argument list. These are used to
1252generate a string message. If the message does not end with a newline,
1253then it will be extended with some indication of the current location
1254in the code, as described for L</mess_sv>.
1255
1256Normally, the resulting message is returned in a new mortal SV.
1257During global destruction a single SV may be shared between uses of
1258this function.
1259
1260=cut
1261*/
1262
5a844595
GS
1263#if defined(PERL_IMPLICIT_CONTEXT)
1264SV *
1265Perl_mess_nocontext(const char *pat, ...)
1266{
1267 dTHX;
1268 SV *retval;
1269 va_list args;
7918f24d 1270 PERL_ARGS_ASSERT_MESS_NOCONTEXT;
5a844595
GS
1271 va_start(args, pat);
1272 retval = vmess(pat, &args);
1273 va_end(args);
1274 return retval;
1275}
1276#endif /* PERL_IMPLICIT_CONTEXT */
1277
06bf62c7 1278SV *
5a844595
GS
1279Perl_mess(pTHX_ const char *pat, ...)
1280{
1281 SV *retval;
1282 va_list args;
7918f24d 1283 PERL_ARGS_ASSERT_MESS;
5a844595
GS
1284 va_start(args, pat);
1285 retval = vmess(pat, &args);
1286 va_end(args);
1287 return retval;
1288}
1289
25502127
FC
1290const COP*
1291Perl_closest_cop(pTHX_ const COP *cop, const OP *o, const OP *curop,
1292 bool opnext)
ae7d165c 1293{
25502127
FC
1294 /* Look for curop starting from o. cop is the last COP we've seen. */
1295 /* opnext means that curop is actually the ->op_next of the op we are
1296 seeking. */
ae7d165c 1297
7918f24d
NC
1298 PERL_ARGS_ASSERT_CLOSEST_COP;
1299
25502127
FC
1300 if (!o || !curop || (
1301 opnext ? o->op_next == curop && o->op_type != OP_SCOPE : o == curop
1302 ))
fabdb6c0 1303 return cop;
ae7d165c
PJ
1304
1305 if (o->op_flags & OPf_KIDS) {
5f66b61c 1306 const OP *kid;
e6dae479 1307 for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) {
5f66b61c 1308 const COP *new_cop;
ae7d165c
PJ
1309
1310 /* If the OP_NEXTSTATE has been optimised away we can still use it
1311 * the get the file and line number. */
1312
1313 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
5f66b61c 1314 cop = (const COP *)kid;
ae7d165c
PJ
1315
1316 /* Keep searching, and return when we've found something. */
1317
25502127 1318 new_cop = closest_cop(cop, kid, curop, opnext);
fabdb6c0
AL
1319 if (new_cop)
1320 return new_cop;
ae7d165c
PJ
1321 }
1322 }
1323
1324 /* Nothing found. */
1325
5f66b61c 1326 return NULL;
ae7d165c
PJ
1327}
1328
c5df3096
Z
1329/*
1330=for apidoc Am|SV *|mess_sv|SV *basemsg|bool consume
1331
1332Expands a message, intended for the user, to include an indication of
1333the current location in the code, if the message does not already appear
1334to be complete.
1335
1336C<basemsg> is the initial message or object. If it is a reference, it
1337will be used as-is and will be the result of this function. Otherwise it
1338is used as a string, and if it already ends with a newline, it is taken
1339to be complete, and the result of this function will be the same string.
1340If the message does not end with a newline, then a segment such as C<at
1341foo.pl line 37> will be appended, and possibly other clauses indicating
1342the current state of execution. The resulting message will end with a
1343dot and a newline.
1344
1345Normally, the resulting message is returned in a new mortal SV.
1346During global destruction a single SV may be shared between uses of this
1347function. If C<consume> is true, then the function is permitted (but not
1348required) to modify and return C<basemsg> instead of allocating a new SV.
1349
1350=cut
1351*/
1352
5a844595 1353SV *
c5df3096 1354Perl_mess_sv(pTHX_ SV *basemsg, bool consume)
46fc3d4c 1355{
c5df3096 1356 SV *sv;
46fc3d4c 1357
0762e42f 1358#if defined(USE_C_BACKTRACE) && defined(USE_C_BACKTRACE_ON_ERROR)
470dd224
JH
1359 {
1360 char *ws;
1361 int wi;
1362 /* The PERL_C_BACKTRACE_ON_WARN must be an integer of one or more. */
0762e42f 1363 if ((ws = PerlEnv_getenv("PERL_C_BACKTRACE_ON_ERROR")) &&
96e440d2 1364 (wi = grok_atou(ws, NULL)) > 0) {
470dd224
JH
1365 Perl_dump_c_backtrace(aTHX_ Perl_debug_log, wi, 1);
1366 }
1367 }
1368#endif
1369
c5df3096
Z
1370 PERL_ARGS_ASSERT_MESS_SV;
1371
1372 if (SvROK(basemsg)) {
1373 if (consume) {
1374 sv = basemsg;
1375 }
1376 else {
1377 sv = mess_alloc();
1378 sv_setsv(sv, basemsg);
1379 }
1380 return sv;
1381 }
1382
1383 if (SvPOK(basemsg) && consume) {
1384 sv = basemsg;
1385 }
1386 else {
1387 sv = mess_alloc();
1388 sv_copypv(sv, basemsg);
1389 }
7918f24d 1390
46fc3d4c 1391 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
ae7d165c
PJ
1392 /*
1393 * Try and find the file and line for PL_op. This will usually be
1394 * PL_curcop, but it might be a cop that has been optimised away. We
1395 * can try to find such a cop by searching through the optree starting
1396 * from the sibling of PL_curcop.
1397 */
1398
25502127 1399 const COP *cop =
e6dae479 1400 closest_cop(PL_curcop, OpSIBLING(PL_curcop), PL_op, FALSE);
5f66b61c
AL
1401 if (!cop)
1402 cop = PL_curcop;
ae7d165c
PJ
1403
1404 if (CopLINE(cop))
ed094faf 1405 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
3aed30dc 1406 OutCopFILE(cop), (IV)CopLINE(cop));
191f87d5
DH
1407 /* Seems that GvIO() can be untrustworthy during global destruction. */
1408 if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1409 && IoLINES(GvIOp(PL_last_in_gv)))
1410 {
2748e602 1411 STRLEN l;
e1ec3a88 1412 const bool line_mode = (RsSIMPLE(PL_rs) &&
2748e602 1413 *SvPV_const(PL_rs,l) == '\n' && l == 1);
3b46b707
BF
1414 Perl_sv_catpvf(aTHX_ sv, ", <%"SVf"> %s %"IVdf,
1415 SVfARG(PL_last_in_gv == PL_argvgv
1416 ? &PL_sv_no
1417 : sv_2mortal(newSVhek(GvNAME_HEK(PL_last_in_gv)))),
edc2eac3
JH
1418 line_mode ? "line" : "chunk",
1419 (IV)IoLINES(GvIOp(PL_last_in_gv)));
a687059c 1420 }
627364f1 1421 if (PL_phase == PERL_PHASE_DESTRUCT)
5f66b61c
AL
1422 sv_catpvs(sv, " during global destruction");
1423 sv_catpvs(sv, ".\n");
a687059c 1424 }
06bf62c7 1425 return sv;
a687059c
LW
1426}
1427
c5df3096
Z
1428/*
1429=for apidoc Am|SV *|vmess|const char *pat|va_list *args
1430
1431C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1432argument list. These are used to generate a string message. If the
1433message does not end with a newline, then it will be extended with
1434some indication of the current location in the code, as described for
1435L</mess_sv>.
1436
1437Normally, the resulting message is returned in a new mortal SV.
1438During global destruction a single SV may be shared between uses of
1439this function.
1440
1441=cut
1442*/
1443
1444SV *
1445Perl_vmess(pTHX_ const char *pat, va_list *args)
1446{
c5df3096
Z
1447 SV * const sv = mess_alloc();
1448
1449 PERL_ARGS_ASSERT_VMESS;
1450
1451 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
1452 return mess_sv(sv, 1);
1453}
1454
7ff03255 1455void
7d0994e0 1456Perl_write_to_stderr(pTHX_ SV* msv)
7ff03255
SG
1457{
1458 IO *io;
1459 MAGIC *mg;
1460
7918f24d
NC
1461 PERL_ARGS_ASSERT_WRITE_TO_STDERR;
1462
7ff03255
SG
1463 if (PL_stderrgv && SvREFCNT(PL_stderrgv)
1464 && (io = GvIO(PL_stderrgv))
daba3364 1465 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
36925d9e 1466 Perl_magic_methcall(aTHX_ MUTABLE_SV(io), mg, SV_CONST(PRINT),
d1d7a15d 1467 G_SCALAR | G_DISCARD | G_WRITING_TO_STDERR, 1, msv);
7ff03255 1468 else {
53c1dcc0 1469 PerlIO * const serr = Perl_error_log;
7ff03255 1470
83c55556 1471 do_print(msv, serr);
7ff03255 1472 (void)PerlIO_flush(serr);
7ff03255
SG
1473 }
1474}
1475
c5df3096
Z
1476/*
1477=head1 Warning and Dieing
1478*/
1479
1480/* Common code used in dieing and warning */
1481
1482STATIC SV *
1483S_with_queued_errors(pTHX_ SV *ex)
1484{
1485 PERL_ARGS_ASSERT_WITH_QUEUED_ERRORS;
1486 if (PL_errors && SvCUR(PL_errors) && !SvROK(ex)) {
1487 sv_catsv(PL_errors, ex);
1488 ex = sv_mortalcopy(PL_errors);
1489 SvCUR_set(PL_errors, 0);
1490 }
1491 return ex;
1492}
3ab1ac99 1493
46d9c920 1494STATIC bool
c5df3096 1495S_invoke_exception_hook(pTHX_ SV *ex, bool warn)
63315e18
NC
1496{
1497 HV *stash;
1498 GV *gv;
1499 CV *cv;
46d9c920
NC
1500 SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1501 /* sv_2cv might call Perl_croak() or Perl_warner() */
1502 SV * const oldhook = *hook;
1503
c5df3096
Z
1504 if (!oldhook)
1505 return FALSE;
63315e18 1506
63315e18 1507 ENTER;
46d9c920
NC
1508 SAVESPTR(*hook);
1509 *hook = NULL;
1510 cv = sv_2cv(oldhook, &stash, &gv, 0);
63315e18
NC
1511 LEAVE;
1512 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1513 dSP;
c5df3096 1514 SV *exarg;
63315e18
NC
1515
1516 ENTER;
46d9c920
NC
1517 if (warn) {
1518 SAVESPTR(*hook);
1519 *hook = NULL;
1520 }
c5df3096
Z
1521 exarg = newSVsv(ex);
1522 SvREADONLY_on(exarg);
1523 SAVEFREESV(exarg);
63315e18 1524
46d9c920 1525 PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
63315e18 1526 PUSHMARK(SP);
c5df3096 1527 XPUSHs(exarg);
63315e18 1528 PUTBACK;
daba3364 1529 call_sv(MUTABLE_SV(cv), G_DISCARD);
63315e18
NC
1530 POPSTACK;
1531 LEAVE;
46d9c920 1532 return TRUE;
63315e18 1533 }
46d9c920 1534 return FALSE;
63315e18
NC
1535}
1536
c5df3096
Z
1537/*
1538=for apidoc Am|OP *|die_sv|SV *baseex
e07360fa 1539
c5df3096
Z
1540Behaves the same as L</croak_sv>, except for the return type.
1541It should be used only where the C<OP *> return type is required.
1542The function never actually returns.
e07360fa 1543
c5df3096
Z
1544=cut
1545*/
e07360fa 1546
f8d5a522
DD
1547#ifdef _MSC_VER
1548# pragma warning( push )
1549# pragma warning( disable : 4646 ) /* warning C4646: function declared with
1550 __declspec(noreturn) has non-void return type */
1551# pragma warning( disable : 4645 ) /* warning C4645: function declared with
1552__declspec(noreturn) has a return statement */
1553#endif
c5df3096
Z
1554OP *
1555Perl_die_sv(pTHX_ SV *baseex)
36477c24 1556{
c5df3096
Z
1557 PERL_ARGS_ASSERT_DIE_SV;
1558 croak_sv(baseex);
e5964223 1559 /* NOTREACHED */
117af67d 1560 NORETURN_FUNCTION_END;
36477c24 1561}
f8d5a522
DD
1562#ifdef _MSC_VER
1563# pragma warning( pop )
1564#endif
36477c24 1565
c5df3096
Z
1566/*
1567=for apidoc Am|OP *|die|const char *pat|...
1568
1569Behaves the same as L</croak>, except for the return type.
1570It should be used only where the C<OP *> return type is required.
1571The function never actually returns.
1572
1573=cut
1574*/
1575
c5be433b 1576#if defined(PERL_IMPLICIT_CONTEXT)
f8d5a522
DD
1577#ifdef _MSC_VER
1578# pragma warning( push )
1579# pragma warning( disable : 4646 ) /* warning C4646: function declared with
1580 __declspec(noreturn) has non-void return type */
1581# pragma warning( disable : 4645 ) /* warning C4645: function declared with
1582__declspec(noreturn) has a return statement */
1583#endif
cea2e8a9
GS
1584OP *
1585Perl_die_nocontext(const char* pat, ...)
a687059c 1586{
cea2e8a9 1587 dTHX;
a687059c 1588 va_list args;
cea2e8a9 1589 va_start(args, pat);
c5df3096 1590 vcroak(pat, &args);
e5964223 1591 NOT_REACHED; /* NOTREACHED */
cea2e8a9 1592 va_end(args);
117af67d 1593 NORETURN_FUNCTION_END;
cea2e8a9 1594}
f8d5a522
DD
1595#ifdef _MSC_VER
1596# pragma warning( pop )
1597#endif
c5be433b 1598#endif /* PERL_IMPLICIT_CONTEXT */
cea2e8a9 1599
f8d5a522
DD
1600#ifdef _MSC_VER
1601# pragma warning( push )
1602# pragma warning( disable : 4646 ) /* warning C4646: function declared with
1603 __declspec(noreturn) has non-void return type */
1604# pragma warning( disable : 4645 ) /* warning C4645: function declared with
1605__declspec(noreturn) has a return statement */
1606#endif
cea2e8a9
GS
1607OP *
1608Perl_die(pTHX_ const char* pat, ...)
1609{
cea2e8a9
GS
1610 va_list args;
1611 va_start(args, pat);
c5df3096 1612 vcroak(pat, &args);
e5964223 1613 NOT_REACHED; /* NOTREACHED */
cea2e8a9 1614 va_end(args);
117af67d 1615 NORETURN_FUNCTION_END;
cea2e8a9 1616}
f8d5a522
DD
1617#ifdef _MSC_VER
1618# pragma warning( pop )
1619#endif
cea2e8a9 1620
c5df3096
Z
1621/*
1622=for apidoc Am|void|croak_sv|SV *baseex
1623
1624This is an XS interface to Perl's C<die> function.
1625
1626C<baseex> is the error message or object. If it is a reference, it
1627will be used as-is. Otherwise it is used as a string, and if it does
1628not end with a newline then it will be extended with some indication of
1629the current location in the code, as described for L</mess_sv>.
1630
1631The error message or object will be used as an exception, by default
1632returning control to the nearest enclosing C<eval>, but subject to
1633modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak_sv>
1634function never returns normally.
1635
1636To die with a simple string message, the L</croak> function may be
1637more convenient.
1638
1639=cut
1640*/
1641
c5be433b 1642void
c5df3096 1643Perl_croak_sv(pTHX_ SV *baseex)
cea2e8a9 1644{
c5df3096
Z
1645 SV *ex = with_queued_errors(mess_sv(baseex, 0));
1646 PERL_ARGS_ASSERT_CROAK_SV;
1647 invoke_exception_hook(ex, FALSE);
1648 die_unwind(ex);
1649}
1650
1651/*
1652=for apidoc Am|void|vcroak|const char *pat|va_list *args
1653
1654This is an XS interface to Perl's C<die> function.
1655
1656C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1657argument list. These are used to generate a string message. If the
1658message does not end with a newline, then it will be extended with
1659some indication of the current location in the code, as described for
1660L</mess_sv>.
1661
1662The error message will be used as an exception, by default
1663returning control to the nearest enclosing C<eval>, but subject to
1664modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1665function never returns normally.
a687059c 1666
c5df3096
Z
1667For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1668(C<$@>) will be used as an error message or object instead of building an
1669error message from arguments. If you want to throw a non-string object,
1670or build an error message in an SV yourself, it is preferable to use
1671the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
5a844595 1672
c5df3096
Z
1673=cut
1674*/
1675
1676void
1677Perl_vcroak(pTHX_ const char* pat, va_list *args)
1678{
1679 SV *ex = with_queued_errors(pat ? vmess(pat, args) : mess_sv(ERRSV, 0));
1680 invoke_exception_hook(ex, FALSE);
1681 die_unwind(ex);
a687059c
LW
1682}
1683
c5df3096
Z
1684/*
1685=for apidoc Am|void|croak|const char *pat|...
1686
1687This is an XS interface to Perl's C<die> function.
1688
1689Take a sprintf-style format pattern and argument list. These are used to
1690generate a string message. If the message does not end with a newline,
1691then it will be extended with some indication of the current location
1692in the code, as described for L</mess_sv>.
1693
1694The error message will be used as an exception, by default
1695returning control to the nearest enclosing C<eval>, but subject to
1696modification by a C<$SIG{__DIE__}> handler. In any case, the C<croak>
1697function never returns normally.
1698
1699For historical reasons, if C<pat> is null then the contents of C<ERRSV>
1700(C<$@>) will be used as an error message or object instead of building an
1701error message from arguments. If you want to throw a non-string object,
1702or build an error message in an SV yourself, it is preferable to use
1703the L</croak_sv> function, which does not involve clobbering C<ERRSV>.
1704
1705=cut
1706*/
1707
c5be433b 1708#if defined(PERL_IMPLICIT_CONTEXT)
8990e307 1709void
cea2e8a9 1710Perl_croak_nocontext(const char *pat, ...)
a687059c 1711{
cea2e8a9 1712 dTHX;
a687059c 1713 va_list args;
cea2e8a9 1714 va_start(args, pat);
c5be433b 1715 vcroak(pat, &args);
e5964223 1716 NOT_REACHED; /* NOTREACHED */
cea2e8a9
GS
1717 va_end(args);
1718}
1719#endif /* PERL_IMPLICIT_CONTEXT */
1720
c5df3096
Z
1721void
1722Perl_croak(pTHX_ const char *pat, ...)
1723{
1724 va_list args;
1725 va_start(args, pat);
1726 vcroak(pat, &args);
e5964223 1727 NOT_REACHED; /* NOTREACHED */
c5df3096
Z
1728 va_end(args);
1729}
1730
954c1994 1731/*
6ad8f254
NC
1732=for apidoc Am|void|croak_no_modify
1733
1734Exactly equivalent to C<Perl_croak(aTHX_ "%s", PL_no_modify)>, but generates
72d33970 1735terser object code than using C<Perl_croak>. Less code used on exception code
6ad8f254
NC
1736paths reduces CPU cache pressure.
1737
d8e47b5c 1738=cut
6ad8f254
NC
1739*/
1740
1741void
88772978 1742Perl_croak_no_modify(void)
6ad8f254 1743{
cb077ed2 1744 Perl_croak_nocontext( "%s", PL_no_modify);
6ad8f254
NC
1745}
1746
4cbe3a7d
DD
1747/* does not return, used in util.c perlio.c and win32.c
1748 This is typically called when malloc returns NULL.
1749*/
1750void
88772978 1751Perl_croak_no_mem(void)
4cbe3a7d
DD
1752{
1753 dTHX;
77c1c05b 1754
375ed12a
JH
1755 int fd = PerlIO_fileno(Perl_error_log);
1756 if (fd < 0)
1757 SETERRNO(EBADF,RMS_IFI);
1758 else {
1759 /* Can't use PerlIO to write as it allocates memory */
b469f1e0 1760 PERL_UNUSED_RESULT(PerlLIO_write(fd, PL_no_mem, sizeof(PL_no_mem)-1));
375ed12a 1761 }
4cbe3a7d
DD
1762 my_exit(1);
1763}
1764
3d04513d
DD
1765/* does not return, used only in POPSTACK */
1766void
1767Perl_croak_popstack(void)
1768{
1769 dTHX;
1770 PerlIO_printf(Perl_error_log, "panic: POPSTACK\n");
1771 my_exit(1);
1772}
1773
6ad8f254 1774/*
c5df3096 1775=for apidoc Am|void|warn_sv|SV *baseex
ccfc67b7 1776
c5df3096 1777This is an XS interface to Perl's C<warn> function.
954c1994 1778
c5df3096
Z
1779C<baseex> is the error message or object. If it is a reference, it
1780will be used as-is. Otherwise it is used as a string, and if it does
1781not end with a newline then it will be extended with some indication of
1782the current location in the code, as described for L</mess_sv>.
9983fa3c 1783
c5df3096
Z
1784The error message or object will by default be written to standard error,
1785but this is subject to modification by a C<$SIG{__WARN__}> handler.
9983fa3c 1786
c5df3096
Z
1787To warn with a simple string message, the L</warn> function may be
1788more convenient.
954c1994
GS
1789
1790=cut
1791*/
1792
cea2e8a9 1793void
c5df3096 1794Perl_warn_sv(pTHX_ SV *baseex)
cea2e8a9 1795{
c5df3096
Z
1796 SV *ex = mess_sv(baseex, 0);
1797 PERL_ARGS_ASSERT_WARN_SV;
1798 if (!invoke_exception_hook(ex, TRUE))
1799 write_to_stderr(ex);
cea2e8a9
GS
1800}
1801
c5df3096
Z
1802/*
1803=for apidoc Am|void|vwarn|const char *pat|va_list *args
1804
1805This is an XS interface to Perl's C<warn> function.
1806
1807C<pat> and C<args> are a sprintf-style format pattern and encapsulated
1808argument list. These are used to generate a string message. If the
1809message does not end with a newline, then it will be extended with
1810some indication of the current location in the code, as described for
1811L</mess_sv>.
1812
1813The error message or object will by default be written to standard error,
1814but this is subject to modification by a C<$SIG{__WARN__}> handler.
1815
1816Unlike with L</vcroak>, C<pat> is not permitted to be null.
1817
1818=cut
1819*/
1820
c5be433b
GS
1821void
1822Perl_vwarn(pTHX_ const char* pat, va_list *args)
cea2e8a9 1823{
c5df3096 1824 SV *ex = vmess(pat, args);
7918f24d 1825 PERL_ARGS_ASSERT_VWARN;
c5df3096
Z
1826 if (!invoke_exception_hook(ex, TRUE))
1827 write_to_stderr(ex);
1828}
7918f24d 1829
c5df3096
Z
1830/*
1831=for apidoc Am|void|warn|const char *pat|...
87582a92 1832
c5df3096
Z
1833This is an XS interface to Perl's C<warn> function.
1834
1835Take a sprintf-style format pattern and argument list. These are used to
1836generate a string message. If the message does not end with a newline,
1837then it will be extended with some indication of the current location
1838in the code, as described for L</mess_sv>.
1839
1840The error message or object will by default be written to standard error,
1841but this is subject to modification by a C<$SIG{__WARN__}> handler.
1842
1843Unlike with L</croak>, C<pat> is not permitted to be null.
1844
1845=cut
1846*/
8d063cd8 1847
c5be433b 1848#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
1849void
1850Perl_warn_nocontext(const char *pat, ...)
1851{
1852 dTHX;
1853 va_list args;
7918f24d 1854 PERL_ARGS_ASSERT_WARN_NOCONTEXT;
cea2e8a9 1855 va_start(args, pat);
c5be433b 1856 vwarn(pat, &args);
cea2e8a9
GS
1857 va_end(args);
1858}
1859#endif /* PERL_IMPLICIT_CONTEXT */
1860
1861void
1862Perl_warn(pTHX_ const char *pat, ...)
1863{
1864 va_list args;
7918f24d 1865 PERL_ARGS_ASSERT_WARN;
cea2e8a9 1866 va_start(args, pat);
c5be433b 1867 vwarn(pat, &args);
cea2e8a9
GS
1868 va_end(args);
1869}
1870
c5be433b
GS
1871#if defined(PERL_IMPLICIT_CONTEXT)
1872void
1873Perl_warner_nocontext(U32 err, const char *pat, ...)
1874{
27da23d5 1875 dTHX;
c5be433b 1876 va_list args;
7918f24d 1877 PERL_ARGS_ASSERT_WARNER_NOCONTEXT;
c5be433b
GS
1878 va_start(args, pat);
1879 vwarner(err, pat, &args);
1880 va_end(args);
1881}
1882#endif /* PERL_IMPLICIT_CONTEXT */
1883
599cee73 1884void
9b387841
NC
1885Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...)
1886{
1887 PERL_ARGS_ASSERT_CK_WARNER_D;
1888
1889 if (Perl_ckwarn_d(aTHX_ err)) {
1890 va_list args;
1891 va_start(args, pat);
1892 vwarner(err, pat, &args);
1893 va_end(args);
1894 }
1895}
1896
1897void
a2a5de95
NC
1898Perl_ck_warner(pTHX_ U32 err, const char* pat, ...)
1899{
1900 PERL_ARGS_ASSERT_CK_WARNER;
1901
1902 if (Perl_ckwarn(aTHX_ err)) {
1903 va_list args;
1904 va_start(args, pat);
1905 vwarner(err, pat, &args);
1906 va_end(args);
1907 }
1908}
1909
1910void
864dbfa3 1911Perl_warner(pTHX_ U32 err, const char* pat,...)
599cee73
PM
1912{
1913 va_list args;
7918f24d 1914 PERL_ARGS_ASSERT_WARNER;
c5be433b
GS
1915 va_start(args, pat);
1916 vwarner(err, pat, &args);
1917 va_end(args);
1918}
1919
1920void
1921Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1922{
27da23d5 1923 dVAR;
7918f24d 1924 PERL_ARGS_ASSERT_VWARNER;
5f2d9966 1925 if (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) {
a3b680e6 1926 SV * const msv = vmess(pat, args);
599cee73 1927
594b6fac
LM
1928 if (PL_parser && PL_parser->error_count) {
1929 qerror(msv);
1930 }
1931 else {
1932 invoke_exception_hook(msv, FALSE);
1933 die_unwind(msv);
1934 }
599cee73
PM
1935 }
1936 else {
d13b0d77 1937 Perl_vwarn(aTHX_ pat, args);
599cee73
PM
1938 }
1939}
1940
f54ba1c2
DM
1941/* implements the ckWARN? macros */
1942
1943bool
1944Perl_ckwarn(pTHX_ U32 w)
1945{
ad287e37 1946 /* If lexical warnings have not been set, use $^W. */
3c3f8cd6
AB
1947 if (isLEXWARN_off)
1948 return PL_dowarn & G_WARN_ON;
ad287e37 1949
26c7b074 1950 return ckwarn_common(w);
f54ba1c2
DM
1951}
1952
1953/* implements the ckWARN?_d macro */
1954
1955bool
1956Perl_ckwarn_d(pTHX_ U32 w)
1957{
ad287e37 1958 /* If lexical warnings have not been set then default classes warn. */
3c3f8cd6
AB
1959 if (isLEXWARN_off)
1960 return TRUE;
ad287e37 1961
26c7b074
NC
1962 return ckwarn_common(w);
1963}
1964
1965static bool
1966S_ckwarn_common(pTHX_ U32 w)
1967{
3c3f8cd6
AB
1968 if (PL_curcop->cop_warnings == pWARN_ALL)
1969 return TRUE;
ad287e37
NC
1970
1971 if (PL_curcop->cop_warnings == pWARN_NONE)
1972 return FALSE;
1973
98fe6610
NC
1974 /* Check the assumption that at least the first slot is non-zero. */
1975 assert(unpackWARN1(w));
1976
1977 /* Check the assumption that it is valid to stop as soon as a zero slot is
1978 seen. */
1979 if (!unpackWARN2(w)) {
1980 assert(!unpackWARN3(w));
1981 assert(!unpackWARN4(w));
1982 } else if (!unpackWARN3(w)) {
1983 assert(!unpackWARN4(w));
1984 }
1985
26c7b074
NC
1986 /* Right, dealt with all the special cases, which are implemented as non-
1987 pointers, so there is a pointer to a real warnings mask. */
98fe6610
NC
1988 do {
1989 if (isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)))
1990 return TRUE;
1991 } while (w >>= WARNshift);
1992
1993 return FALSE;
f54ba1c2
DM
1994}
1995
72dc9ed5
NC
1996/* Set buffer=NULL to get a new one. */
1997STRLEN *
8ee4cf24 1998Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
72dc9ed5 1999 STRLEN size) {
5af88345
FC
2000 const MEM_SIZE len_wanted =
2001 sizeof(STRLEN) + (size > WARNsize ? size : WARNsize);
35da51f7 2002 PERL_UNUSED_CONTEXT;
7918f24d 2003 PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD;
72dc9ed5 2004
10edeb5d
JH
2005 buffer = (STRLEN*)
2006 (specialWARN(buffer) ?
2007 PerlMemShared_malloc(len_wanted) :
2008 PerlMemShared_realloc(buffer, len_wanted));
72dc9ed5
NC
2009 buffer[0] = size;
2010 Copy(bits, (buffer + 1), size, char);
5af88345
FC
2011 if (size < WARNsize)
2012 Zero((char *)(buffer + 1) + size, WARNsize - size, char);
72dc9ed5
NC
2013 return buffer;
2014}
f54ba1c2 2015
e6587932
DM
2016/* since we've already done strlen() for both nam and val
2017 * we can use that info to make things faster than
2018 * sprintf(s, "%s=%s", nam, val)
2019 */
2020#define my_setenv_format(s, nam, nlen, val, vlen) \
2021 Copy(nam, s, nlen, char); \
2022 *(s+nlen) = '='; \
2023 Copy(val, s+(nlen+1), vlen, char); \
2024 *(s+(nlen+1+vlen)) = '\0'
2025
c5d12488
JH
2026#ifdef USE_ENVIRON_ARRAY
2027 /* VMS' my_setenv() is in vms.c */
2028#if !defined(WIN32) && !defined(NETWARE)
8d063cd8 2029void
e1ec3a88 2030Perl_my_setenv(pTHX_ const char *nam, const char *val)
8d063cd8 2031{
27da23d5 2032 dVAR;
4efc5df6
GS
2033#ifdef USE_ITHREADS
2034 /* only parent thread can modify process environment */
2035 if (PL_curinterp == aTHX)
2036#endif
2037 {
f2517201 2038#ifndef PERL_USE_SAFE_PUTENV
50acdf95 2039 if (!PL_use_safe_putenv) {
b7d87861
JH
2040 /* most putenv()s leak, so we manipulate environ directly */
2041 I32 i;
2042 const I32 len = strlen(nam);
2043 int nlen, vlen;
2044
2045 /* where does it go? */
2046 for (i = 0; environ[i]; i++) {
2047 if (strnEQ(environ[i],nam,len) && environ[i][len] == '=')
2048 break;
2049 }
c5d12488 2050
b7d87861
JH
2051 if (environ == PL_origenviron) { /* need we copy environment? */
2052 I32 j;
2053 I32 max;
2054 char **tmpenv;
2055
2056 max = i;
2057 while (environ[max])
2058 max++;
2059 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
2060 for (j=0; j<max; j++) { /* copy environment */
2061 const int len = strlen(environ[j]);
2062 tmpenv[j] = (char*)safesysmalloc((len+1)*sizeof(char));
2063 Copy(environ[j], tmpenv[j], len+1, char);
2064 }
2065 tmpenv[max] = NULL;
2066 environ = tmpenv; /* tell exec where it is now */
2067 }
2068 if (!val) {
2069 safesysfree(environ[i]);
2070 while (environ[i]) {
2071 environ[i] = environ[i+1];
2072 i++;
2073 }
2074 return;
2075 }
2076 if (!environ[i]) { /* does not exist yet */
2077 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
2078 environ[i+1] = NULL; /* make sure it's null terminated */
2079 }
2080 else
2081 safesysfree(environ[i]);
2082 nlen = strlen(nam);
2083 vlen = strlen(val);
2084
2085 environ[i] = (char*)safesysmalloc((nlen+vlen+2) * sizeof(char));
2086 /* all that work just for this */
2087 my_setenv_format(environ[i], nam, nlen, val, vlen);
50acdf95 2088 } else {
c5d12488 2089# endif
235c1d5f
AD
2090 /* This next branch should only be called #if defined(HAS_SETENV), but
2091 Configure doesn't test for that yet. For Solaris, setenv() and unsetenv()
2092 were introduced in Solaris 9, so testing for HAS UNSETENV is sufficient.
2093 */
2094# if defined(__CYGWIN__)|| defined(__SYMBIAN32__) || defined(__riscos__) || (defined(__sun) && defined(HAS_UNSETENV))
88f5bc07
AB
2095# if defined(HAS_UNSETENV)
2096 if (val == NULL) {
2097 (void)unsetenv(nam);
2098 } else {
2099 (void)setenv(nam, val, 1);
2100 }
2101# else /* ! HAS_UNSETENV */
2102 (void)setenv(nam, val, 1);
2103# endif /* HAS_UNSETENV */
47dafe4d 2104# else
88f5bc07
AB
2105# if defined(HAS_UNSETENV)
2106 if (val == NULL) {
ba88ff58
MJ
2107 if (environ) /* old glibc can crash with null environ */
2108 (void)unsetenv(nam);
88f5bc07 2109 } else {
c4420975
AL
2110 const int nlen = strlen(nam);
2111 const int vlen = strlen(val);
2112 char * const new_env =
88f5bc07
AB
2113 (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2114 my_setenv_format(new_env, nam, nlen, val, vlen);
2115 (void)putenv(new_env);
2116 }
2117# else /* ! HAS_UNSETENV */
2118 char *new_env;
c4420975
AL
2119 const int nlen = strlen(nam);
2120 int vlen;
88f5bc07
AB
2121 if (!val) {
2122 val = "";
2123 }
2124 vlen = strlen(val);
2125 new_env = (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
2126 /* all that work just for this */
2127 my_setenv_format(new_env, nam, nlen, val, vlen);
2128 (void)putenv(new_env);
2129# endif /* HAS_UNSETENV */
47dafe4d 2130# endif /* __CYGWIN__ */
50acdf95
MS
2131#ifndef PERL_USE_SAFE_PUTENV
2132 }
2133#endif
4efc5df6 2134 }
8d063cd8
LW
2135}
2136
c5d12488 2137#else /* WIN32 || NETWARE */
68dc0745 2138
2139void
72229eff 2140Perl_my_setenv(pTHX_ const char *nam, const char *val)
68dc0745 2141{
27da23d5 2142 dVAR;
eb578fdb 2143 char *envstr;
c5d12488
JH
2144 const int nlen = strlen(nam);
2145 int vlen;
e6587932 2146
c5d12488
JH
2147 if (!val) {
2148 val = "";
ac5c734f 2149 }
c5d12488
JH
2150 vlen = strlen(val);
2151 Newx(envstr, nlen+vlen+2, char);
2152 my_setenv_format(envstr, nam, nlen, val, vlen);
2153 (void)PerlEnv_putenv(envstr);
2154 Safefree(envstr);
3e3baf6d
TB
2155}
2156
c5d12488 2157#endif /* WIN32 || NETWARE */
3e3baf6d 2158
739a0b84 2159#endif /* !VMS */
378cc40b 2160
16d20bd9 2161#ifdef UNLINK_ALL_VERSIONS
79072805 2162I32
6e732051 2163Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
378cc40b 2164{
35da51f7 2165 I32 retries = 0;
378cc40b 2166
7918f24d
NC
2167 PERL_ARGS_ASSERT_UNLNK;
2168
35da51f7
AL
2169 while (PerlLIO_unlink(f) >= 0)
2170 retries++;
2171 return retries ? 0 : -1;
378cc40b
LW
2172}
2173#endif
2174
7a3f2258 2175/* this is a drop-in replacement for bcopy() */
2253333f 2176#if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
378cc40b 2177char *
5aaab254 2178Perl_my_bcopy(const char *from, char *to, I32 len)
378cc40b 2179{
2d03de9c 2180 char * const retval = to;
378cc40b 2181
7918f24d
NC
2182 PERL_ARGS_ASSERT_MY_BCOPY;
2183
223f01db
KW
2184 assert(len >= 0);
2185
7c0587c8
LW
2186 if (from - to >= 0) {
2187 while (len--)
2188 *to++ = *from++;
2189 }
2190 else {
2191 to += len;
2192 from += len;
2193 while (len--)
faf8582f 2194 *(--to) = *(--from);
7c0587c8 2195 }
378cc40b
LW
2196 return retval;
2197}
ffed7fef 2198#endif
378cc40b 2199
7a3f2258 2200/* this is a drop-in replacement for memset() */
fc36a67e 2201#ifndef HAS_MEMSET
2202void *
5aaab254 2203Perl_my_memset(char *loc, I32 ch, I32 len)
fc36a67e 2204{
2d03de9c 2205 char * const retval = loc;
fc36a67e 2206
7918f24d
NC
2207 PERL_ARGS_ASSERT_MY_MEMSET;
2208
223f01db
KW
2209 assert(len >= 0);
2210
fc36a67e 2211 while (len--)
2212 *loc++ = ch;
2213 return retval;
2214}
2215#endif
2216
7a3f2258 2217/* this is a drop-in replacement for bzero() */
7c0587c8 2218#if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
378cc40b 2219char *
5aaab254 2220Perl_my_bzero(char *loc, I32 len)
378cc40b 2221{
2d03de9c 2222 char * const retval = loc;
378cc40b 2223
7918f24d
NC
2224 PERL_ARGS_ASSERT_MY_BZERO;
2225
223f01db
KW
2226 assert(len >= 0);
2227
378cc40b
LW
2228 while (len--)
2229 *loc++ = 0;
2230 return retval;
2231}
2232#endif
7c0587c8 2233
7a3f2258 2234/* this is a drop-in replacement for memcmp() */
36477c24 2235#if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
79072805 2236I32
5aaab254 2237Perl_my_memcmp(const char *s1, const char *s2, I32 len)
7c0587c8 2238{
eb578fdb
KW
2239 const U8 *a = (const U8 *)s1;
2240 const U8 *b = (const U8 *)s2;
2241 I32 tmp;
7c0587c8 2242
7918f24d
NC
2243 PERL_ARGS_ASSERT_MY_MEMCMP;
2244
223f01db
KW
2245 assert(len >= 0);
2246
7c0587c8 2247 while (len--) {
27da23d5 2248 if ((tmp = *a++ - *b++))
7c0587c8
LW
2249 return tmp;
2250 }
2251 return 0;
2252}
36477c24 2253#endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
a687059c 2254
fe14fcc3 2255#ifndef HAS_VPRINTF
d05d9be5
AD
2256/* This vsprintf replacement should generally never get used, since
2257 vsprintf was available in both System V and BSD 2.11. (There may
2258 be some cross-compilation or embedded set-ups where it is needed,
2259 however.)
2260
2261 If you encounter a problem in this function, it's probably a symptom
2262 that Configure failed to detect your system's vprintf() function.
2263 See the section on "item vsprintf" in the INSTALL file.
2264
2265 This version may compile on systems with BSD-ish <stdio.h>,
2266 but probably won't on others.
2267*/
a687059c 2268
85e6fe83 2269#ifdef USE_CHAR_VSPRINTF
a687059c
LW
2270char *
2271#else
2272int
2273#endif
d05d9be5 2274vsprintf(char *dest, const char *pat, void *args)
a687059c
LW
2275{
2276 FILE fakebuf;
2277
d05d9be5
AD
2278#if defined(STDIO_PTR_LVALUE) && defined(STDIO_CNT_LVALUE)
2279 FILE_ptr(&fakebuf) = (STDCHAR *) dest;
2280 FILE_cnt(&fakebuf) = 32767;
2281#else
2282 /* These probably won't compile -- If you really need
2283 this, you'll have to figure out some other method. */
a687059c
LW
2284 fakebuf._ptr = dest;
2285 fakebuf._cnt = 32767;
d05d9be5 2286#endif
35c8bce7
LW
2287#ifndef _IOSTRG
2288#define _IOSTRG 0
2289#endif
a687059c
LW
2290 fakebuf._flag = _IOWRT|_IOSTRG;
2291 _doprnt(pat, args, &fakebuf); /* what a kludge */
d05d9be5
AD
2292#if defined(STDIO_PTR_LVALUE)
2293 *(FILE_ptr(&fakebuf)++) = '\0';
2294#else
2295 /* PerlIO has probably #defined away fputc, but we want it here. */
2296# ifdef fputc
2297# undef fputc /* XXX Should really restore it later */
2298# endif
2299 (void)fputc('\0', &fakebuf);
2300#endif
85e6fe83 2301#ifdef USE_CHAR_VSPRINTF
a687059c
LW
2302 return(dest);
2303#else
2304 return 0; /* perl doesn't use return value */
2305#endif
2306}
2307
fe14fcc3 2308#endif /* HAS_VPRINTF */
a687059c 2309
4a7d1889 2310PerlIO *
c9289b7b 2311Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
4a7d1889 2312{
739a0b84 2313#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(OS2) && !defined(VMS) && !defined(NETWARE) && !defined(__LIBCATAMOUNT__)
1f852d0d 2314 int p[2];
eb578fdb
KW
2315 I32 This, that;
2316 Pid_t pid;
1f852d0d
NIS
2317 SV *sv;
2318 I32 did_pipes = 0;
2319 int pp[2];
2320
7918f24d
NC
2321 PERL_ARGS_ASSERT_MY_POPEN_LIST;
2322
1f852d0d
NIS
2323 PERL_FLUSHALL_FOR_CHILD;
2324 This = (*mode == 'w');
2325 that = !This;
284167a5 2326 if (TAINTING_get) {
1f852d0d
NIS
2327 taint_env();
2328 taint_proper("Insecure %s%s", "EXEC");
2329 }
2330 if (PerlProc_pipe(p) < 0)
4608196e 2331 return NULL;
1f852d0d
NIS
2332 /* Try for another pipe pair for error return */
2333 if (PerlProc_pipe(pp) >= 0)
2334 did_pipes = 1;
52e18b1f 2335 while ((pid = PerlProc_fork()) < 0) {
1f852d0d
NIS
2336 if (errno != EAGAIN) {
2337 PerlLIO_close(p[This]);
4e6dfe71 2338 PerlLIO_close(p[that]);
1f852d0d
NIS
2339 if (did_pipes) {
2340 PerlLIO_close(pp[0]);
2341 PerlLIO_close(pp[1]);
2342 }
4608196e 2343 return NULL;
1f852d0d 2344 }
a2a5de95 2345 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
1f852d0d
NIS
2346 sleep(5);
2347 }
2348 if (pid == 0) {
2349 /* Child */
1f852d0d
NIS
2350#undef THIS
2351#undef THAT
2352#define THIS that
2353#define THAT This
1f852d0d
NIS
2354 /* Close parent's end of error status pipe (if any) */
2355 if (did_pipes) {
2356 PerlLIO_close(pp[0]);
2357#if defined(HAS_FCNTL) && defined(F_SETFD)
2358 /* Close error pipe automatically if exec works */
375ed12a
JH
2359 if (fcntl(pp[1], F_SETFD, FD_CLOEXEC) < 0)
2360 return NULL;
1f852d0d
NIS
2361#endif
2362 }
2363 /* Now dup our end of _the_ pipe to right position */
2364 if (p[THIS] != (*mode == 'r')) {
2365 PerlLIO_dup2(p[THIS], *mode == 'r');
2366 PerlLIO_close(p[THIS]);
4e6dfe71
GS
2367 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2368 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
1f852d0d 2369 }
4e6dfe71
GS
2370 else
2371 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
1f852d0d
NIS
2372#if !defined(HAS_FCNTL) || !defined(F_SETFD)
2373 /* No automatic close - do it by hand */
b7953727
JH
2374# ifndef NOFILE
2375# define NOFILE 20
2376# endif
a080fe3d
NIS
2377 {
2378 int fd;
2379
2380 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
3aed30dc 2381 if (fd != pp[1])
a080fe3d
NIS
2382 PerlLIO_close(fd);
2383 }
1f852d0d
NIS
2384 }
2385#endif
a0714e2c 2386 do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
1f852d0d
NIS
2387 PerlProc__exit(1);
2388#undef THIS
2389#undef THAT
2390 }
2391 /* Parent */
52e18b1f 2392 do_execfree(); /* free any memory malloced by child on fork */
1f852d0d
NIS
2393 if (did_pipes)
2394 PerlLIO_close(pp[1]);
2395 /* Keep the lower of the two fd numbers */
2396 if (p[that] < p[This]) {
2397 PerlLIO_dup2(p[This], p[that]);
2398 PerlLIO_close(p[This]);
2399 p[This] = p[that];
2400 }
4e6dfe71
GS
2401 else
2402 PerlLIO_close(p[that]); /* close child's end of pipe */
2403
1f852d0d 2404 sv = *av_fetch(PL_fdpid,p[This],TRUE);
862a34c6 2405 SvUPGRADE(sv,SVt_IV);
45977657 2406 SvIV_set(sv, pid);
1f852d0d
NIS
2407 PL_forkprocess = pid;
2408 /* If we managed to get status pipe check for exec fail */
2409 if (did_pipes && pid > 0) {
2410 int errkid;
bb7a0f54
MHM
2411 unsigned n = 0;
2412 SSize_t n1;
1f852d0d
NIS
2413
2414 while (n < sizeof(int)) {
2415 n1 = PerlLIO_read(pp[0],
2416 (void*)(((char*)&errkid)+n),
2417 (sizeof(int)) - n);
2418 if (n1 <= 0)
2419 break;
2420 n += n1;
2421 }
2422 PerlLIO_close(pp[0]);
2423 did_pipes = 0;
2424 if (n) { /* Error */
2425 int pid2, status;
8c51524e 2426 PerlLIO_close(p[This]);
1f852d0d 2427 if (n != sizeof(int))
5637ef5b 2428 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", n);
1f852d0d
NIS
2429 do {
2430 pid2 = wait4pid(pid, &status, 0);
2431 } while (pid2 == -1 && errno == EINTR);
2432 errno = errkid; /* Propagate errno from kid */
4608196e 2433 return NULL;
1f852d0d
NIS
2434 }
2435 }
2436 if (did_pipes)
2437 PerlLIO_close(pp[0]);
2438 return PerlIO_fdopen(p[This], mode);
2439#else
8492b23f 2440# if defined(OS2) /* Same, without fork()ing and all extra overhead... */
4e205ed6 2441 return my_syspopen4(aTHX_ NULL, mode, n, args);
8492b23f
TC
2442# elif defined(WIN32)
2443 return win32_popenlist(mode, n, args);
9d419b5f 2444# else
4a7d1889
NIS
2445 Perl_croak(aTHX_ "List form of piped open not implemented");
2446 return (PerlIO *) NULL;
9d419b5f 2447# endif
1f852d0d 2448#endif
4a7d1889
NIS
2449}
2450
5f05dabc 2451 /* VMS' my_popen() is in VMS.c, same with OS/2. */
739a0b84 2452#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__LIBCATAMOUNT__)
760ac839 2453PerlIO *
3dd43144 2454Perl_my_popen(pTHX_ const char *cmd, const char *mode)
a687059c
LW
2455{
2456 int p[2];
eb578fdb
KW
2457 I32 This, that;
2458 Pid_t pid;
79072805 2459 SV *sv;
bfce84ec 2460 const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
e446cec8
IZ
2461 I32 did_pipes = 0;
2462 int pp[2];
a687059c 2463
7918f24d
NC
2464 PERL_ARGS_ASSERT_MY_POPEN;
2465
45bc9206 2466 PERL_FLUSHALL_FOR_CHILD;
ddcf38b7
IZ
2467#ifdef OS2
2468 if (doexec) {
23da6c43 2469 return my_syspopen(aTHX_ cmd,mode);
ddcf38b7 2470 }
a1d180c4 2471#endif
8ac85365
NIS
2472 This = (*mode == 'w');
2473 that = !This;
284167a5 2474 if (doexec && TAINTING_get) {
bbce6d69 2475 taint_env();
2476 taint_proper("Insecure %s%s", "EXEC");
d48672a2 2477 }
c2267164 2478 if (PerlProc_pipe(p) < 0)
4608196e 2479 return NULL;
e446cec8
IZ
2480 if (doexec && PerlProc_pipe(pp) >= 0)
2481 did_pipes = 1;
52e18b1f 2482 while ((pid = PerlProc_fork()) < 0) {
a687059c 2483 if (errno != EAGAIN) {
6ad3d225 2484 PerlLIO_close(p[This]);
b5ac89c3 2485 PerlLIO_close(p[that]);
e446cec8
IZ
2486 if (did_pipes) {
2487 PerlLIO_close(pp[0]);
2488 PerlLIO_close(pp[1]);
2489 }
a687059c 2490 if (!doexec)
b3647a36 2491 Perl_croak(aTHX_ "Can't fork: %s", Strerror(errno));
4608196e 2492 return NULL;
a687059c 2493 }
a2a5de95 2494 Perl_ck_warner(aTHX_ packWARN(WARN_PIPE), "Can't fork, trying again in 5 seconds");
a687059c
LW
2495 sleep(5);
2496 }
2497 if (pid == 0) {
79072805 2498
30ac6d9b
GS
2499#undef THIS
2500#undef THAT
a687059c 2501#define THIS that
8ac85365 2502#define THAT This
e446cec8
IZ
2503 if (did_pipes) {
2504 PerlLIO_close(pp[0]);
2505#if defined(HAS_FCNTL) && defined(F_SETFD)
375ed12a
JH
2506 if (fcntl(pp[1], F_SETFD, FD_CLOEXEC) < 0)
2507 return NULL;
e446cec8
IZ
2508#endif
2509 }
a687059c 2510 if (p[THIS] != (*mode == 'r')) {
6ad3d225
GS
2511 PerlLIO_dup2(p[THIS], *mode == 'r');
2512 PerlLIO_close(p[THIS]);
b5ac89c3
NIS
2513 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2514 PerlLIO_close(p[THAT]);
a687059c 2515 }
b5ac89c3
NIS
2516 else
2517 PerlLIO_close(p[THAT]);
4435c477 2518#ifndef OS2
a687059c 2519 if (doexec) {
a0d0e21e 2520#if !defined(HAS_FCNTL) || !defined(F_SETFD)
ae986130
LW
2521#ifndef NOFILE
2522#define NOFILE 20
2523#endif
a080fe3d 2524 {
3aed30dc 2525 int fd;
a080fe3d
NIS
2526
2527 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2528 if (fd != pp[1])
3aed30dc 2529 PerlLIO_close(fd);
a080fe3d 2530 }
ae986130 2531#endif
a080fe3d
NIS
2532 /* may or may not use the shell */
2533 do_exec3(cmd, pp[1], did_pipes);
6ad3d225 2534 PerlProc__exit(1);
a687059c 2535 }
4435c477 2536#endif /* defined OS2 */
713cef20
IZ
2537
2538#ifdef PERLIO_USING_CRLF
2539 /* Since we circumvent IO layers when we manipulate low-level
2540 filedescriptors directly, need to manually switch to the
2541 default, binary, low-level mode; see PerlIOBuf_open(). */
2542 PerlLIO_setmode((*mode == 'r'), O_BINARY);
2543#endif
3280af22 2544 PL_forkprocess = 0;
ca0c25f6 2545#ifdef PERL_USES_PL_PIDSTATUS
3280af22 2546 hv_clear(PL_pidstatus); /* we have no children */
ca0c25f6 2547#endif
4608196e 2548 return NULL;
a687059c
LW
2549#undef THIS
2550#undef THAT
2551 }
b5ac89c3 2552 do_execfree(); /* free any memory malloced by child on vfork */
e446cec8
IZ
2553 if (did_pipes)
2554 PerlLIO_close(pp[1]);
8ac85365 2555 if (p[that] < p[This]) {
6ad3d225
GS
2556 PerlLIO_dup2(p[This], p[that]);
2557 PerlLIO_close(p[This]);
8ac85365 2558 p[This] = p[that];
62b28dd9 2559 }
b5ac89c3
NIS
2560 else
2561 PerlLIO_close(p[that]);
2562
3280af22 2563 sv = *av_fetch(PL_fdpid,p[This],TRUE);
862a34c6 2564 SvUPGRADE(sv,SVt_IV);
45977657 2565 SvIV_set(sv, pid);
3280af22 2566 PL_forkprocess = pid;
e446cec8
IZ
2567 if (did_pipes && pid > 0) {
2568 int errkid;
bb7a0f54
MHM
2569 unsigned n = 0;
2570 SSize_t n1;
e446cec8
IZ
2571
2572 while (n < sizeof(int)) {
2573 n1 = PerlLIO_read(pp[0],
2574 (void*)(((char*)&errkid)+n),
2575 (sizeof(int)) - n);
2576 if (n1 <= 0)
2577 break;
2578 n += n1;
2579 }
2f96c702
IZ
2580 PerlLIO_close(pp[0]);
2581 did_pipes = 0;
e446cec8 2582 if (n) { /* Error */
faa466a7 2583 int pid2, status;
8c51524e 2584 PerlLIO_close(p[This]);
e446cec8 2585 if (n != sizeof(int))
5637ef5b 2586 Perl_croak(aTHX_ "panic: kid popen errno read, n=%u", n);
faa466a7
RG
2587 do {
2588 pid2 = wait4pid(pid, &status, 0);
2589 } while (pid2 == -1 && errno == EINTR);
e446cec8 2590 errno = errkid; /* Propagate errno from kid */
4608196e 2591 return NULL;
e446cec8
IZ
2592 }
2593 }
2594 if (did_pipes)
2595 PerlLIO_close(pp[0]);
8ac85365 2596 return PerlIO_fdopen(p[This], mode);
a687059c 2597}
7c0587c8 2598#else
2b96b0a5
JH
2599#if defined(DJGPP)
2600FILE *djgpp_popen();
2601PerlIO *
cef6ea9d 2602Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2b96b0a5
JH
2603{
2604 PERL_FLUSHALL_FOR_CHILD;
2605 /* Call system's popen() to get a FILE *, then import it.
2606 used 0 for 2nd parameter to PerlIO_importFILE;
2607 apparently not used
2608 */
2609 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2610}
9c12f1e5
RGS
2611#else
2612#if defined(__LIBCATAMOUNT__)
2613PerlIO *
2614Perl_my_popen(pTHX_ const char *cmd, const char *mode)
2615{
2616 return NULL;
2617}
2618#endif
2b96b0a5 2619#endif
7c0587c8
LW
2620
2621#endif /* !DOSISH */
a687059c 2622
52e18b1f
GS
2623/* this is called in parent before the fork() */
2624void
2625Perl_atfork_lock(void)
2626{
3db8f154 2627#if defined(USE_ITHREADS)
20b7effb 2628 dVAR;
52e18b1f 2629 /* locks must be held in locking order (if any) */
4da80956
P
2630# ifdef USE_PERLIO
2631 MUTEX_LOCK(&PL_perlio_mutex);
2632# endif
52e18b1f
GS
2633# ifdef MYMALLOC
2634 MUTEX_LOCK(&PL_malloc_mutex);
2635# endif
2636 OP_REFCNT_LOCK;
2637#endif
2638}
2639
2640/* this is called in both parent and child after the fork() */
2641void
2642Perl_atfork_unlock(void)
2643{
3db8f154 2644#if defined(USE_ITHREADS)
20b7effb 2645 dVAR;
52e18b1f 2646 /* locks must be released in same order as in atfork_lock() */
4da80956
P
2647# ifdef USE_PERLIO
2648 MUTEX_UNLOCK(&PL_perlio_mutex);
2649# endif
52e18b1f
GS
2650# ifdef MYMALLOC
2651 MUTEX_UNLOCK(&PL_malloc_mutex);
2652# endif
2653 OP_REFCNT_UNLOCK;
2654#endif
2655}
2656
2657Pid_t
2658Perl_my_fork(void)
2659{
2660#if defined(HAS_FORK)
2661 Pid_t pid;
3db8f154 2662#if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
52e18b1f
GS
2663 atfork_lock();
2664 pid = fork();
2665 atfork_unlock();
2666#else
2667 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2668 * handlers elsewhere in the code */
2669 pid = fork();
2670#endif
2671 return pid;
2672#else
2673 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2674 Perl_croak_nocontext("fork() not available");
b961a566 2675 return 0;
52e18b1f
GS
2676#endif /* HAS_FORK */
2677}
2678
fe14fcc3 2679#ifndef HAS_DUP2
fec02dd3 2680int
ba106d47 2681dup2(int oldfd, int newfd)
a687059c 2682{
a0d0e21e 2683#if defined(HAS_FCNTL) && defined(F_DUPFD)
fec02dd3
AD
2684 if (oldfd == newfd)
2685 return oldfd;
6ad3d225 2686 PerlLIO_close(newfd);
fec02dd3 2687 return fcntl(oldfd, F_DUPFD, newfd);
62b28dd9 2688#else
fc36a67e 2689#define DUP2_MAX_FDS 256
2690 int fdtmp[DUP2_MAX_FDS];
79072805 2691 I32 fdx = 0;
ae986130
LW
2692 int fd;
2693
fe14fcc3 2694 if (oldfd == newfd)
fec02dd3 2695 return oldfd;
6ad3d225 2696 PerlLIO_close(newfd);
fc36a67e 2697 /* good enough for low fd's... */
6ad3d225 2698 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
fc36a67e 2699 if (fdx >= DUP2_MAX_FDS) {
6ad3d225 2700 PerlLIO_close(fd);
fc36a67e 2701 fd = -1;
2702 break;
2703 }
ae986130 2704 fdtmp[fdx++] = fd;
fc36a67e 2705 }
ae986130 2706 while (fdx > 0)
6ad3d225 2707 PerlLIO_close(fdtmp[--fdx]);
fec02dd3 2708 return fd;
62b28dd9 2709#endif
a687059c
LW
2710}
2711#endif
2712
64ca3a65 2713#ifndef PERL_MICRO
ff68c719 2714#ifdef HAS_SIGACTION
2715
2716Sighandler_t
864dbfa3 2717Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
ff68c719 2718{
2719 struct sigaction act, oact;
2720
a10b1e10 2721#ifdef USE_ITHREADS
20b7effb 2722 dVAR;
a10b1e10
JH
2723 /* only "parent" interpreter can diddle signals */
2724 if (PL_curinterp != aTHX)
8aad04aa 2725 return (Sighandler_t) SIG_ERR;
a10b1e10
JH
2726#endif
2727
8aad04aa 2728 act.sa_handler = (void(*)(int))handler;
ff68c719 2729 sigemptyset(&act.sa_mask);
2730 act.sa_flags = 0;
2731#ifdef SA_RESTART
4ffa73a3
JH
2732 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2733 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
0a8e0eff 2734#endif
358837b8 2735#if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
8aad04aa 2736 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
85264bed
CS
2737 act.sa_flags |= SA_NOCLDWAIT;
2738#endif
ff68c719 2739 if (sigaction(signo, &act, &oact) == -1)
8aad04aa 2740 return (Sighandler_t) SIG_ERR;
ff68c719 2741 else
8aad04aa 2742 return (Sighandler_t) oact.sa_handler;
ff68c719 2743}
2744
2745Sighandler_t
864dbfa3 2746Perl_rsignal_state(pTHX_ int signo)
ff68c719 2747{
2748 struct sigaction oact;
96a5add6 2749 PERL_UNUSED_CONTEXT;
ff68c719 2750
2751 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
8aad04aa 2752 return (Sighandler_t) SIG_ERR;
ff68c719 2753 else
8aad04aa 2754 return (Sighandler_t) oact.sa_handler;
ff68c719 2755}
2756
2757int
864dbfa3 2758Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2759{
20b7effb 2760#ifdef USE_ITHREADS
27da23d5 2761 dVAR;
20b7effb 2762#endif
ff68c719 2763 struct sigaction act;
2764
7918f24d
NC
2765 PERL_ARGS_ASSERT_RSIGNAL_SAVE;
2766
a10b1e10
JH
2767#ifdef USE_ITHREADS
2768 /* only "parent" interpreter can diddle signals */
2769 if (PL_curinterp != aTHX)
2770 return -1;
2771#endif
2772
8aad04aa 2773 act.sa_handler = (void(*)(int))handler;
ff68c719 2774 sigemptyset(&act.sa_mask);
2775 act.sa_flags = 0;
2776#ifdef SA_RESTART
4ffa73a3
JH
2777 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2778 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
0a8e0eff 2779#endif
36b5d377 2780#if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
8aad04aa 2781 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
85264bed
CS
2782 act.sa_flags |= SA_NOCLDWAIT;
2783#endif
ff68c719 2784 return sigaction(signo, &act, save);
2785}
2786
2787int
864dbfa3 2788Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
ff68c719 2789{
20b7effb 2790#ifdef USE_ITHREADS
27da23d5 2791 dVAR;
20b7effb
JH
2792#endif
2793 PERL_UNUSED_CONTEXT;
a10b1e10
JH
2794#ifdef USE_ITHREADS
2795 /* only "parent" interpreter can diddle signals */
2796 if (PL_curinterp != aTHX)
2797 return -1;
2798#endif
2799
ff68c719 2800 return sigaction(signo, save, (struct sigaction *)NULL);
2801}
2802
2803#else /* !HAS_SIGACTION */
2804
2805Sighandler_t
864dbfa3 2806Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
ff68c719 2807{
39f1703b 2808#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2809 /* only "parent" interpreter can diddle signals */
2810 if (PL_curinterp != aTHX)
8aad04aa 2811 return (Sighandler_t) SIG_ERR;
a10b1e10
JH
2812#endif
2813
6ad3d225 2814 return PerlProc_signal(signo, handler);
ff68c719 2815}
2816
fabdb6c0 2817static Signal_t
4e35701f 2818sig_trap(int signo)
ff68c719 2819{
27da23d5
JH
2820 dVAR;
2821 PL_sig_trapped++;
ff68c719 2822}
2823
2824Sighandler_t
864dbfa3 2825Perl_rsignal_state(pTHX_ int signo)
ff68c719 2826{
27da23d5 2827 dVAR;
ff68c719 2828 Sighandler_t oldsig;
2829
39f1703b 2830#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2831 /* only "parent" interpreter can diddle signals */
2832 if (PL_curinterp != aTHX)
8aad04aa 2833 return (Sighandler_t) SIG_ERR;
a10b1e10
JH
2834#endif
2835
27da23d5 2836 PL_sig_trapped = 0;
6ad3d225
GS
2837 oldsig = PerlProc_signal(signo, sig_trap);
2838 PerlProc_signal(signo, oldsig);
27da23d5 2839 if (PL_sig_trapped)
3aed30dc 2840 PerlProc_kill(PerlProc_getpid(), signo);
ff68c719 2841 return oldsig;
2842}
2843
2844int
864dbfa3 2845Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2846{
39f1703b 2847#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2848 /* only "parent" interpreter can diddle signals */
2849 if (PL_curinterp != aTHX)
2850 return -1;
2851#endif
6ad3d225 2852 *save = PerlProc_signal(signo, handler);
8aad04aa 2853 return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
ff68c719 2854}
2855
2856int
864dbfa3 2857Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
ff68c719 2858{
39f1703b 2859#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2860 /* only "parent" interpreter can diddle signals */
2861 if (PL_curinterp != aTHX)
2862 return -1;
2863#endif
8aad04aa 2864 return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
ff68c719 2865}
2866
2867#endif /* !HAS_SIGACTION */
64ca3a65 2868#endif /* !PERL_MICRO */
ff68c719 2869
5f05dabc 2870 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
739a0b84 2871#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__LIBCATAMOUNT__)
79072805 2872I32
864dbfa3 2873Perl_my_pclose(pTHX_ PerlIO *ptr)
a687059c 2874{
a687059c 2875 int status;
a0d0e21e 2876 SV **svp;
d8a83dd3 2877 Pid_t pid;
2e0cfa16 2878 Pid_t pid2 = 0;
03136e13 2879 bool close_failed;
4ee39169 2880 dSAVEDERRNO;
2e0cfa16 2881 const int fd = PerlIO_fileno(ptr);
e9d373c4
TC
2882 bool should_wait;
2883
2884 svp = av_fetch(PL_fdpid,fd,TRUE);
2885 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
2886 SvREFCNT_dec(*svp);
2887 *svp = NULL;
2e0cfa16 2888
97cb92d6 2889#if defined(USE_PERLIO)
2e0cfa16
FC
2890 /* Find out whether the refcount is low enough for us to wait for the
2891 child proc without blocking. */
e9d373c4 2892 should_wait = PerlIOUnix_refcnt(fd) == 1 && pid > 0;
b6ae43b7 2893#else
e9d373c4 2894 should_wait = pid > 0;
b6ae43b7 2895#endif
a687059c 2896
ddcf38b7
IZ
2897#ifdef OS2
2898 if (pid == -1) { /* Opened by popen. */
2899 return my_syspclose(ptr);
2900 }
a1d180c4 2901#endif
f1618b10
CS
2902 close_failed = (PerlIO_close(ptr) == EOF);
2903 SAVE_ERRNO;
2e0cfa16 2904 if (should_wait) do {
1d3434b8
GS
2905 pid2 = wait4pid(pid, &status, 0);
2906 } while (pid2 == -1 && errno == EINTR);
03136e13 2907 if (close_failed) {
4ee39169 2908 RESTORE_ERRNO;
03136e13
CS
2909 return -1;
2910 }
2e0cfa16
FC
2911 return(
2912 should_wait
2913 ? pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status)
2914 : 0
2915 );
20188a90 2916}
9c12f1e5
RGS
2917#else
2918#if defined(__LIBCATAMOUNT__)
2919I32
2920Perl_my_pclose(pTHX_ PerlIO *ptr)
2921{
2922 return -1;
2923}
2924#endif
4633a7c4
LW
2925#endif /* !DOSISH */
2926
e37778c2 2927#if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(__LIBCATAMOUNT__)
79072805 2928I32
d8a83dd3 2929Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
20188a90 2930{
27da23d5 2931 I32 result = 0;
7918f24d 2932 PERL_ARGS_ASSERT_WAIT4PID;
ca0c25f6 2933#ifdef PERL_USES_PL_PIDSTATUS
d4c02743
TC
2934 if (!pid) {
2935 /* PERL_USES_PL_PIDSTATUS is only defined when neither
2936 waitpid() nor wait4() is available, or on OS/2, which
2937 doesn't appear to support waiting for a progress group
2938 member, so we can only treat a 0 pid as an unknown child.
2939 */
2940 errno = ECHILD;
2941 return -1;
2942 }
b7953727 2943 {
3aed30dc 2944 if (pid > 0) {
12072db5
NC
2945 /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
2946 pid, rather than a string form. */
c4420975 2947 SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
3aed30dc
HS
2948 if (svp && *svp != &PL_sv_undef) {
2949 *statusp = SvIVX(*svp);
12072db5
NC
2950 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
2951 G_DISCARD);
3aed30dc
HS
2952 return pid;
2953 }
2954 }
2955 else {
2956 HE *entry;
2957
2958 hv_iterinit(PL_pidstatus);
2959 if ((entry = hv_iternext(PL_pidstatus))) {
c4420975 2960 SV * const sv = hv_iterval(PL_pidstatus,entry);
7ea75b61 2961 I32 len;
0bcc34c2 2962 const char * const spid = hv_iterkey(entry,&len);
27da23d5 2963
12072db5
NC
2964 assert (len == sizeof(Pid_t));
2965 memcpy((char *)&pid, spid, len);
3aed30dc 2966 *statusp = SvIVX(sv);
7b9a3241
NC
2967 /* The hash iterator is currently on this entry, so simply
2968 calling hv_delete would trigger the lazy delete, which on
2969 aggregate does more work, beacuse next call to hv_iterinit()
2970 would spot the flag, and have to call the delete routine,
2971 while in the meantime any new entries can't re-use that
2972 memory. */
2973 hv_iterinit(PL_pidstatus);
7ea75b61 2974 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
3aed30dc
HS
2975 return pid;
2976 }
20188a90
LW
2977 }
2978 }
68a29c53 2979#endif
79072805 2980#ifdef HAS_WAITPID
367f3c24
IZ
2981# ifdef HAS_WAITPID_RUNTIME
2982 if (!HAS_WAITPID_RUNTIME)
2983 goto hard_way;
2984# endif
cddd4526 2985 result = PerlProc_waitpid(pid,statusp,flags);
dfcfdb64 2986 goto finish;
367f3c24
IZ
2987#endif
2988#if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
d4c02743 2989 result = wait4(pid,statusp,flags,NULL);
dfcfdb64 2990 goto finish;
367f3c24 2991#endif
ca0c25f6 2992#ifdef PERL_USES_PL_PIDSTATUS
27da23d5 2993#if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
367f3c24 2994 hard_way:
27da23d5 2995#endif
a0d0e21e 2996 {
a0d0e21e 2997 if (flags)
cea2e8a9 2998 Perl_croak(aTHX_ "Can't do waitpid with flags");
a0d0e21e 2999 else {
76e3520e 3000 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
a0d0e21e
LW
3001 pidgone(result,*statusp);
3002 if (result < 0)
3003 *statusp = -1;
3004 }
a687059c
LW
3005 }
3006#endif
27da23d5 3007#if defined(HAS_WAITPID) || defined(HAS_WAIT4)
dfcfdb64 3008 finish:
27da23d5 3009#endif
cddd4526
NIS
3010 if (result < 0 && errno == EINTR) {
3011 PERL_ASYNC_CHECK();
48dbb59e 3012 errno = EINTR; /* reset in case a signal handler changed $! */
cddd4526
NIS
3013 }
3014 return result;
a687059c 3015}
2986a63f 3016#endif /* !DOSISH || OS2 || WIN32 || NETWARE */
a687059c 3017
ca0c25f6 3018#ifdef PERL_USES_PL_PIDSTATUS
7c0587c8 3019void
ed4173ef 3020S_pidgone(pTHX_ Pid_t pid, int status)
a687059c 3021{
eb578fdb 3022 SV *sv;
a687059c 3023
12072db5 3024 sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
862a34c6 3025 SvUPGRADE(sv,SVt_IV);
45977657 3026 SvIV_set(sv, status);
20188a90 3027 return;
a687059c 3028}
ca0c25f6 3029#endif
a687059c 3030
739a0b84 3031#if defined(OS2)
7c0587c8 3032int pclose();
ddcf38b7
IZ
3033#ifdef HAS_FORK
3034int /* Cannot prototype with I32
3035 in os2ish.h. */
ba106d47 3036my_syspclose(PerlIO *ptr)
ddcf38b7 3037#else
79072805 3038I32
864dbfa3 3039Perl_my_pclose(pTHX_ PerlIO *ptr)
a1d180c4 3040#endif
a687059c 3041{
760ac839 3042 /* Needs work for PerlIO ! */
c4420975 3043 FILE * const f = PerlIO_findFILE(ptr);
7452cf6a 3044 const I32 result = pclose(f);
2b96b0a5
JH
3045 PerlIO_releaseFILE(ptr,f);
3046 return result;
3047}
3048#endif
3049
933fea7f 3050#if defined(DJGPP)
2b96b0a5
JH
3051int djgpp_pclose();
3052I32
3053Perl_my_pclose(pTHX_ PerlIO *ptr)
3054{
3055 /* Needs work for PerlIO ! */
c4420975 3056 FILE * const f = PerlIO_findFILE(ptr);
2b96b0a5 3057 I32 result = djgpp_pclose(f);
933fea7f 3058 result = (result << 8) & 0xff00;
760ac839
LW
3059 PerlIO_releaseFILE(ptr,f);
3060 return result;
a687059c 3061}
7c0587c8 3062#endif
9f68db38 3063
16fa5c11 3064#define PERL_REPEATCPY_LINEAR 4
9f68db38 3065void
5aaab254 3066Perl_repeatcpy(char *to, const char *from, I32 len, IV count)
9f68db38 3067{
7918f24d
NC
3068 PERL_ARGS_ASSERT_REPEATCPY;
3069
223f01db
KW
3070 assert(len >= 0);
3071
2709980d 3072 if (count < 0)
d1decf2b 3073 croak_memory_wrap();
2709980d 3074
16fa5c11
VP
3075 if (len == 1)
3076 memset(to, *from, count);
3077 else if (count) {
eb578fdb 3078 char *p = to;
26e1303d 3079 IV items, linear, half;
16fa5c11
VP
3080
3081 linear = count < PERL_REPEATCPY_LINEAR ? count : PERL_REPEATCPY_LINEAR;
3082 for (items = 0; items < linear; ++items) {
eb578fdb 3083 const char *q = from;
26e1303d 3084 IV todo;
16fa5c11
VP
3085 for (todo = len; todo > 0; todo--)
3086 *p++ = *q++;
3087 }
3088
3089 half = count / 2;
3090 while (items <= half) {
26e1303d 3091 IV size = items * len;
16fa5c11
VP
3092 memcpy(p, to, size);
3093 p += size;
3094 items *= 2;
9f68db38 3095 }
16fa5c11
VP
3096
3097 if (count > items)
3098 memcpy(p, to, (count - items) * len);
9f68db38
LW
3099 }
3100}
0f85fab0 3101
fe14fcc3 3102#ifndef HAS_RENAME
79072805 3103I32
4373e329 3104Perl_same_dirent(pTHX_ const char *a, const char *b)
62b28dd9 3105{
93a17b20
LW
3106 char *fa = strrchr(a,'/');
3107 char *fb = strrchr(b,'/');
c623ac67
GS
3108 Stat_t tmpstatbuf1;
3109 Stat_t tmpstatbuf2;
c4420975 3110 SV * const tmpsv = sv_newmortal();
62b28dd9 3111
7918f24d
NC
3112 PERL_ARGS_ASSERT_SAME_DIRENT;
3113
62b28dd9
LW
3114 if (fa)
3115 fa++;
3116 else
3117 fa = a;
3118 if (fb)
3119 fb++;
3120 else
3121 fb = b;
3122 if (strNE(a,b))
3123 return FALSE;
3124 if (fa == a)
76f68e9b 3125 sv_setpvs(tmpsv, ".");
62b28dd9 3126 else
46fc3d4c 3127 sv_setpvn(tmpsv, a, fa - a);
95a20fc0 3128 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
62b28dd9
LW
3129 return FALSE;
3130 if (fb == b)
76f68e9b 3131 sv_setpvs(tmpsv, ".");
62b28dd9 3132 else
46fc3d4c 3133 sv_setpvn(tmpsv, b, fb - b);
95a20fc0 3134 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
62b28dd9
LW
3135 return FALSE;
3136 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3137 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3138}
fe14fcc3
LW
3139#endif /* !HAS_RENAME */
3140
491527d0 3141char*
7f315aed
NC
3142Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3143 const char *const *const search_ext, I32 flags)
491527d0 3144{
bd61b366
SS
3145 const char *xfound = NULL;
3146 char *xfailed = NULL;
0f31cffe 3147 char tmpbuf[MAXPATHLEN];
eb578fdb 3148 char *s;
5f74f29c 3149 I32 len = 0;
491527d0 3150 int retval;
39a02377 3151 char *bufend;
7c458fae 3152#if defined(DOSISH) && !defined(OS2)
491527d0
GS
3153# define SEARCH_EXTS ".bat", ".cmd", NULL
3154# define MAX_EXT_LEN 4
3155#endif
3156#ifdef OS2
3157# define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3158# define MAX_EXT_LEN 4
3159#endif
3160#ifdef VMS
3161# define SEARCH_EXTS ".pl", ".com", NULL
3162# define MAX_EXT_LEN 4
3163#endif
3164 /* additional extensions to try in each dir if scriptname not found */
3165#ifdef SEARCH_EXTS
0bcc34c2 3166 static const char *const exts[] = { SEARCH_EXTS };
7f315aed 3167 const char *const *const ext = search_ext ? search_ext : exts;
491527d0 3168 int extidx = 0, i = 0;
bd61b366 3169 const char *curext = NULL;
491527d0 3170#else
53c1dcc0 3171 PERL_UNUSED_ARG(search_ext);
491527d0
GS
3172# define MAX_EXT_LEN 0
3173#endif
3174
7918f24d
NC
3175 PERL_ARGS_ASSERT_FIND_SCRIPT;
3176
491527d0
GS
3177 /*
3178 * If dosearch is true and if scriptname does not contain path
3179 * delimiters, search the PATH for scriptname.
3180 *
3181 * If SEARCH_EXTS is also defined, will look for each
3182 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3183 * while searching the PATH.
3184 *
3185 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3186 * proceeds as follows:
3187 * If DOSISH or VMSISH:
3188 * + look for ./scriptname{,.foo,.bar}
3189 * + search the PATH for scriptname{,.foo,.bar}
3190 *
3191 * If !DOSISH:
3192 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3193 * this will not look in '.' if it's not in the PATH)
3194 */
84486fc6 3195 tmpbuf[0] = '\0';
491527d0
GS
3196
3197#ifdef VMS
3198# ifdef ALWAYS_DEFTYPES
3199 len = strlen(scriptname);
3200 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
c4420975 3201 int idx = 0, deftypes = 1;
491527d0
GS
3202 bool seen_dot = 1;
3203
bd61b366 3204 const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
491527d0
GS
3205# else
3206 if (dosearch) {
c4420975 3207 int idx = 0, deftypes = 1;
491527d0
GS
3208 bool seen_dot = 1;
3209
bd61b366 3210 const int hasdir = (strpbrk(scriptname,":[</") != NULL);
491527d0
GS
3211# endif
3212 /* The first time through, just add SEARCH_EXTS to whatever we
3213 * already have, so we can check for default file types. */
3214 while (deftypes ||
84486fc6 3215 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
491527d0
GS
3216 {
3217 if (deftypes) {
3218 deftypes = 0;
84486fc6 3219 *tmpbuf = '\0';
491527d0 3220 }
84486fc6
GS
3221 if ((strlen(tmpbuf) + strlen(scriptname)
3222 + MAX_EXT_LEN) >= sizeof tmpbuf)
491527d0 3223 continue; /* don't search dir with too-long name */
6fca0082 3224 my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
491527d0
GS
3225#else /* !VMS */
3226
3227#ifdef DOSISH
3228 if (strEQ(scriptname, "-"))
3229 dosearch = 0;
3230 if (dosearch) { /* Look in '.' first. */
fe2774ed 3231 const char *cur = scriptname;
491527d0
GS
3232#ifdef SEARCH_EXTS
3233 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3234 while (ext[i])
3235 if (strEQ(ext[i++],curext)) {
3236 extidx = -1; /* already has an ext */
3237 break;
3238 }
3239 do {
3240#endif
3241 DEBUG_p(PerlIO_printf(Perl_debug_log,
3242 "Looking for %s\n",cur));
017f25f1
IZ
3243 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3244 && !S_ISDIR(PL_statbuf.st_mode)) {
491527d0
GS
3245 dosearch = 0;
3246 scriptname = cur;
3247#ifdef SEARCH_EXTS
3248 break;
3249#endif
3250 }
3251#ifdef SEARCH_EXTS
3252 if (cur == scriptname) {
3253 len = strlen(scriptname);
84486fc6 3254 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
491527d0 3255 break;
9e4425f7
SH
3256 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3257 cur = tmpbuf;
491527d0
GS
3258 }
3259 } while (extidx >= 0 && ext[extidx] /* try an extension? */
6fca0082 3260 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
491527d0
GS
3261#endif
3262 }
3263#endif
3264
3265 if (dosearch && !strchr(scriptname, '/')
3266#ifdef DOSISH
3267 && !strchr(scriptname, '\\')
3268#endif
cd39f2b6 3269 && (s = PerlEnv_getenv("PATH")))
cd39f2b6 3270 {
491527d0 3271 bool seen_dot = 0;
92f0c265 3272
39a02377
DM
3273 bufend = s + strlen(s);
3274 while (s < bufend) {
7c458fae 3275# ifdef DOSISH
491527d0 3276 for (len = 0; *s
491527d0 3277 && *s != ';'; len++, s++) {
84486fc6
GS
3278 if (len < sizeof tmpbuf)
3279 tmpbuf[len] = *s;
491527d0 3280 }
84486fc6
GS
3281 if (len < sizeof tmpbuf)
3282 tmpbuf[len] = '\0';
7c458fae 3283# else
39a02377 3284 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, bufend,
491527d0
GS
3285 ':',
3286 &len);
7c458fae 3287# endif
39a02377 3288 if (s < bufend)
491527d0 3289 s++;
84486fc6 3290 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
491527d0
GS
3291 continue; /* don't search dir with too-long name */
3292 if (len
7c458fae 3293# ifdef DOSISH
84486fc6
GS
3294 && tmpbuf[len - 1] != '/'
3295 && tmpbuf[len - 1] != '\\'
490a0e98 3296# endif
491527d0 3297 )
84486fc6
GS
3298 tmpbuf[len++] = '/';
3299 if (len == 2 && tmpbuf[0] == '.')
491527d0 3300 seen_dot = 1;
28f0d0ec 3301 (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
491527d0
GS
3302#endif /* !VMS */
3303
3304#ifdef SEARCH_EXTS
84486fc6 3305 len = strlen(tmpbuf);
491527d0
GS
3306 if (extidx > 0) /* reset after previous loop */
3307 extidx = 0;
3308 do {
3309#endif
84486fc6 3310 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3280af22 3311 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
017f25f1
IZ
3312 if (S_ISDIR(PL_statbuf.st_mode)) {
3313 retval = -1;
3314 }
491527d0
GS
3315#ifdef SEARCH_EXTS
3316 } while ( retval < 0 /* not there */
3317 && extidx>=0 && ext[extidx] /* try an extension? */
6fca0082 3318 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
491527d0
GS
3319 );
3320#endif
3321 if (retval < 0)
3322 continue;
3280af22
NIS
3323 if (S_ISREG(PL_statbuf.st_mode)
3324 && cando(S_IRUSR,TRUE,&PL_statbuf)
e37778c2 3325#if !defined(DOSISH)
3280af22 3326 && cando(S_IXUSR,TRUE,&PL_statbuf)
491527d0
GS
3327#endif
3328 )
3329 {
3aed30dc 3330 xfound = tmpbuf; /* bingo! */
491527d0
GS
3331 break;
3332 }
3333 if (!xfailed)
84486fc6 3334 xfailed = savepv(tmpbuf);
491527d0
GS
3335 }
3336#ifndef DOSISH
017f25f1 3337 if (!xfound && !seen_dot && !xfailed &&
a1d180c4 3338 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
017f25f1 3339 || S_ISDIR(PL_statbuf.st_mode)))
491527d0
GS
3340#endif
3341 seen_dot = 1; /* Disable message. */
9ccb31f9
GS
3342 if (!xfound) {
3343 if (flags & 1) { /* do or die? */
6ad282c7 3344 /* diag_listed_as: Can't execute %s */
3aed30dc 3345 Perl_croak(aTHX_ "Can't %s %s%s%s",
9ccb31f9
GS
3346 (xfailed ? "execute" : "find"),
3347 (xfailed ? xfailed : scriptname),
3348 (xfailed ? "" : " on PATH"),
3349 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3350 }
bd61b366 3351 scriptname = NULL;
9ccb31f9 3352 }
43c5f42d 3353 Safefree(xfailed);
491527d0
GS
3354 scriptname = xfound;
3355 }
bd61b366 3356 return (scriptname ? savepv(scriptname) : NULL);
491527d0
GS
3357}
3358
ba869deb
GS
3359#ifndef PERL_GET_CONTEXT_DEFINED
3360
3361void *
3362Perl_get_context(void)
3363{
3db8f154 3364#if defined(USE_ITHREADS)
20b7effb 3365 dVAR;
ba869deb
GS
3366# ifdef OLD_PTHREADS_API
3367 pthread_addr_t t;
5637ef5b
NC
3368 int error = pthread_getspecific(PL_thr_key, &t)
3369 if (error)
3370 Perl_croak_nocontext("panic: pthread_getspecific, error=%d", error);
ba869deb
GS
3371 return (void*)t;
3372# else
bce813aa 3373# ifdef I_MACH_CTHREADS
8b8b35ab 3374 return (void*)cthread_data(cthread_self());
bce813aa 3375# else
8b8b35ab
JH
3376 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3377# endif
c44d3fdb 3378# endif
ba869deb
GS
3379#else
3380 return (void*)NULL;
3381#endif
3382}
3383
3384void
3385Perl_set_context(void *t)
3386{
20b7effb 3387#if defined(USE_ITHREADS)
8772537c 3388 dVAR;
20b7effb 3389#endif
7918f24d 3390 PERL_ARGS_ASSERT_SET_CONTEXT;
3db8f154 3391#if defined(USE_ITHREADS)
c44d3fdb
GS
3392# ifdef I_MACH_CTHREADS
3393 cthread_set_data(cthread_self(), t);
3394# else
5637ef5b
NC
3395 {
3396 const int error = pthread_setspecific(PL_thr_key, t);
3397 if (error)
3398 Perl_croak_nocontext("panic: pthread_setspecific, error=%d", error);
3399 }
c44d3fdb 3400# endif
b464bac0 3401#else
8772537c 3402 PERL_UNUSED_ARG(t);
ba869deb
GS
3403#endif
3404}
3405
3406#endif /* !PERL_GET_CONTEXT_DEFINED */
491527d0 3407
27da23d5 3408#if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
22239a37 3409struct perl_vars *
864dbfa3 3410Perl_GetVars(pTHX)
22239a37 3411{
23491f1d
JH
3412 PERL_UNUSED_CONTEXT;
3413 return &PL_Vars;
22239a37 3414}
31fb1209
NIS
3415#endif
3416
1cb0ed9b 3417char **
864dbfa3 3418Perl_get_op_names(pTHX)
31fb1209 3419{
96a5add6
AL
3420 PERL_UNUSED_CONTEXT;
3421 return (char **)PL_op_name;
31fb1209
NIS
3422}
3423
1cb0ed9b 3424char **
864dbfa3 3425Perl_get_op_descs(pTHX)
31fb1209 3426{
96a5add6
AL
3427 PERL_UNUSED_CONTEXT;
3428 return (char **)PL_op_desc;
31fb1209 3429}
9e6b2b00 3430
e1ec3a88 3431const char *
864dbfa3 3432Perl_get_no_modify(pTHX)
9e6b2b00 3433{
96a5add6
AL
3434 PERL_UNUSED_CONTEXT;
3435 return PL_no_modify;
9e6b2b00
GS
3436}
3437
3438U32 *
864dbfa3 3439Perl_get_opargs(pTHX)
9e6b2b00 3440{
96a5add6
AL
3441 PERL_UNUSED_CONTEXT;
3442 return (U32 *)PL_opargs;
9e6b2b00 3443}
51aa15f3 3444
0cb96387
GS
3445PPADDR_t*
3446Perl_get_ppaddr(pTHX)
3447{
96a5add6
AL
3448 dVAR;
3449 PERL_UNUSED_CONTEXT;
3450 return (PPADDR_t*)PL_ppaddr;
0cb96387
GS
3451}
3452
a6c40364
GS
3453#ifndef HAS_GETENV_LEN
3454char *
bf4acbe4 3455Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
a6c40364 3456{
8772537c 3457 char * const env_trans = PerlEnv_getenv(env_elem);
96a5add6 3458 PERL_UNUSED_CONTEXT;
7918f24d 3459 PERL_ARGS_ASSERT_GETENV_LEN;
a6c40364
GS
3460 if (env_trans)
3461 *len = strlen(env_trans);
3462 return env_trans;
f675dbe5
CB
3463}
3464#endif
3465
dc9e4912
GS
3466
3467MGVTBL*
864dbfa3 3468Perl_get_vtbl(pTHX_ int vtbl_id)
dc9e4912 3469{
96a5add6 3470 PERL_UNUSED_CONTEXT;
dc9e4912 3471
c7fdacb9 3472 return (vtbl_id < 0 || vtbl_id >= magic_vtable_max)
31114fe9 3473 ? NULL : (MGVTBL*)PL_magic_vtables + vtbl_id;
dc9e4912
GS
3474}
3475
767df6a1 3476I32
864dbfa3 3477Perl_my_fflush_all(pTHX)
767df6a1 3478{
97cb92d6 3479#if defined(USE_PERLIO) || defined(FFLUSH_NULL)
ce720889 3480 return PerlIO_flush(NULL);
767df6a1 3481#else
8fbdfb7c 3482# if defined(HAS__FWALK)
f13a2bc0 3483 extern int fflush(FILE *);
74cac757
JH
3484 /* undocumented, unprototyped, but very useful BSDism */
3485 extern void _fwalk(int (*)(FILE *));
8fbdfb7c 3486 _fwalk(&fflush);
74cac757 3487 return 0;
8fa7f367 3488# else
8fbdfb7c 3489# if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
8fa7f367 3490 long open_max = -1;
8fbdfb7c 3491# ifdef PERL_FFLUSH_ALL_FOPEN_MAX
d2201af2 3492 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
8fbdfb7c 3493# else
8fa7f367 3494# if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
767df6a1 3495 open_max = sysconf(_SC_OPEN_MAX);
8fa7f367
JH
3496# else
3497# ifdef FOPEN_MAX
74cac757 3498 open_max = FOPEN_MAX;
8fa7f367
JH
3499# else
3500# ifdef OPEN_MAX
74cac757 3501 open_max = OPEN_MAX;
8fa7f367
JH
3502# else
3503# ifdef _NFILE
d2201af2 3504 open_max = _NFILE;
8fa7f367
JH
3505# endif
3506# endif
74cac757 3507# endif
767df6a1
JH
3508# endif
3509# endif
767df6a1
JH
3510 if (open_max > 0) {
3511 long i;
3512 for (i = 0; i < open_max; i++)
d2201af2
AD
3513 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3514 STDIO_STREAM_ARRAY[i]._file < open_max &&
3515 STDIO_STREAM_ARRAY[i]._flag)
3516 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
767df6a1
JH
3517 return 0;
3518 }
8fbdfb7c 3519# endif
93189314 3520 SETERRNO(EBADF,RMS_IFI);
767df6a1 3521 return EOF;
74cac757 3522# endif
767df6a1
JH
3523#endif
3524}
097ee67d 3525
69282e91 3526void
45219de6 3527Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have)
a5390457
NC
3528{
3529 if (ckWARN(WARN_IO)) {
0223a801 3530 HEK * const name
c6e4ff34 3531 = gv && (isGV_with_GP(gv))
0223a801 3532 ? GvENAME_HEK((gv))
3b46b707 3533 : NULL;
a5390457
NC
3534 const char * const direction = have == '>' ? "out" : "in";
3535
b3c81598 3536 if (name && HEK_LEN(name))
a5390457 3537 Perl_warner(aTHX_ packWARN(WARN_IO),
0223a801 3538 "Filehandle %"HEKf" opened only for %sput",
10bafe90 3539 HEKfARG(name), direction);
a5390457
NC
3540 else
3541 Perl_warner(aTHX_ packWARN(WARN_IO),
3542 "Filehandle opened only for %sput", direction);
3543 }
3544}
3545
3546void
831e4cc3 3547Perl_report_evil_fh(pTHX_ const GV *gv)
bc37a18f 3548{
65820a28 3549 const IO *io = gv ? GvIO(gv) : NULL;
831e4cc3 3550 const PERL_BITFIELD16 op = PL_op->op_type;
a5390457
NC
3551 const char *vile;
3552 I32 warn_type;
3553
65820a28 3554 if (io && IoTYPE(io) == IoTYPE_CLOSED) {
a5390457
NC
3555 vile = "closed";
3556 warn_type = WARN_CLOSED;
2dd78f96
JH
3557 }
3558 else {
a5390457
NC
3559