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