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