This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
By re-ordering declarations in interpvar.h and thrdvar.h, reduce the
[perl5.git] / util.c
CommitLineData
a0d0e21e 1/* util.c
a687059c 2 *
4bb101f2 3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
7272f7c1 4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 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/*
12 * "Very useful, no doubt, that was to Saruman; yet it seems that he was
13 * not content." --Gandalf
14 */
8d063cd8 15
166f8a29
DM
16/* This file contains assorted utility routines.
17 * Which is a polite way of saying any stuff that people couldn't think of
18 * a better place for. Amongst other things, it includes the warning and
19 * dieing stuff, plus wrappers for malloc code.
20 */
21
8d063cd8 22#include "EXTERN.h"
864dbfa3 23#define PERL_IN_UTIL_C
8d063cd8 24#include "perl.h"
62b28dd9 25
64ca3a65 26#ifndef PERL_MICRO
a687059c 27#include <signal.h>
36477c24 28#ifndef SIG_ERR
29# define SIG_ERR ((Sighandler_t) -1)
30#endif
64ca3a65 31#endif
36477c24 32
172d2248
OS
33#ifdef __Lynx__
34/* Missing protos on LynxOS */
35int putenv(char *);
36#endif
37
ff68c719 38#ifdef I_SYS_WAIT
39# include <sys/wait.h>
40#endif
41
868439a2
JH
42#ifdef HAS_SELECT
43# ifdef I_SYS_SELECT
44# include <sys/select.h>
45# endif
46#endif
47
8d063cd8 48#define FLUSH
8d063cd8 49
16cebae2
GS
50#if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
51# define FD_CLOEXEC 1 /* NeXT needs this */
52#endif
53
a687059c
LW
54/* NOTE: Do not call the next three routines directly. Use the macros
55 * in handy.h, so that we can easily redefine everything to do tracking of
56 * allocated hunks back to the original New to track down any memory leaks.
20cec16a 57 * XXX This advice seems to be widely ignored :-( --AD August 1996.
a687059c
LW
58 */
59
ca8d8976
NC
60static char *
61S_write_no_mem(pTHX)
62{
97aff369 63 dVAR;
ca8d8976
NC
64 /* Can't use PerlIO to write as it allocates memory */
65 PerlLIO_write(PerlIO_fileno(Perl_error_log),
66 PL_no_mem, strlen(PL_no_mem));
67 my_exit(1);
1f440eb2 68 NORETURN_FUNCTION_END;
ca8d8976
NC
69}
70
26fa51c3
AMS
71/* paranoid version of system's malloc() */
72
bd4080b3 73Malloc_t
4f63d024 74Perl_safesysmalloc(MEM_SIZE size)
8d063cd8 75{
54aff467 76 dTHX;
bd4080b3 77 Malloc_t ptr;
55497cff 78#ifdef HAS_64K_LIMIT
62b28dd9 79 if (size > 0xffff) {
bf49b057 80 PerlIO_printf(Perl_error_log,
16cebae2 81 "Allocation too large: %lx\n", size) FLUSH;
54aff467 82 my_exit(1);
62b28dd9 83 }
55497cff 84#endif /* HAS_64K_LIMIT */
e8dda941
JD
85#ifdef PERL_TRACK_MEMPOOL
86 size += sTHX;
87#endif
34de22dd
LW
88#ifdef DEBUGGING
89 if ((long)size < 0)
4f63d024 90 Perl_croak_nocontext("panic: malloc");
34de22dd 91#endif
12ae5dfc 92 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
da927450 93 PERL_ALLOC_CHECK(ptr);
97835f67 94 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
bd61b366 95 if (ptr != NULL) {
e8dda941 96#ifdef PERL_TRACK_MEMPOOL
7cb608b5
NC
97 struct perl_memory_debug_header *const header
98 = (struct perl_memory_debug_header *)ptr;
9a083ecf
NC
99#endif
100
101#ifdef PERL_POISON
7e337ee0 102 PoisonNew(((char *)ptr), size, char);
9a083ecf 103#endif
7cb608b5 104
9a083ecf 105#ifdef PERL_TRACK_MEMPOOL
7cb608b5
NC
106 header->interpreter = aTHX;
107 /* Link us into the list. */
108 header->prev = &PL_memory_debug_header;
109 header->next = PL_memory_debug_header.next;
110 PL_memory_debug_header.next = header;
111 header->next->prev = header;
cd1541b2 112# ifdef PERL_POISON
7cb608b5 113 header->size = size;
cd1541b2 114# endif
e8dda941
JD
115 ptr = (Malloc_t)((char*)ptr+sTHX);
116#endif
8d063cd8 117 return ptr;
e8dda941 118}
3280af22 119 else if (PL_nomemok)
bd61b366 120 return NULL;
8d063cd8 121 else {
0bd48802 122 return write_no_mem();
8d063cd8
LW
123 }
124 /*NOTREACHED*/
125}
126
f2517201 127/* paranoid version of system's realloc() */
8d063cd8 128
bd4080b3 129Malloc_t
4f63d024 130Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
8d063cd8 131{
54aff467 132 dTHX;
bd4080b3 133 Malloc_t ptr;
9a34ef1d 134#if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
6ad3d225 135 Malloc_t PerlMem_realloc();
ecfc5424 136#endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
8d063cd8 137
a1d180c4 138#ifdef HAS_64K_LIMIT
5f05dabc 139 if (size > 0xffff) {
bf49b057 140 PerlIO_printf(Perl_error_log,
5f05dabc 141 "Reallocation too large: %lx\n", size) FLUSH;
54aff467 142 my_exit(1);
5f05dabc 143 }
55497cff 144#endif /* HAS_64K_LIMIT */
7614df0c 145 if (!size) {
f2517201 146 safesysfree(where);
7614df0c
JD
147 return NULL;
148 }
149
378cc40b 150 if (!where)
f2517201 151 return safesysmalloc(size);
e8dda941
JD
152#ifdef PERL_TRACK_MEMPOOL
153 where = (Malloc_t)((char*)where-sTHX);
154 size += sTHX;
7cb608b5
NC
155 {
156 struct perl_memory_debug_header *const header
157 = (struct perl_memory_debug_header *)where;
158
159 if (header->interpreter != aTHX) {
160 Perl_croak_nocontext("panic: realloc from wrong pool");
161 }
162 assert(header->next->prev == header);
163 assert(header->prev->next == header);
cd1541b2 164# ifdef PERL_POISON
7cb608b5
NC
165 if (header->size > size) {
166 const MEM_SIZE freed_up = header->size - size;
167 char *start_of_freed = ((char *)where) + size;
7e337ee0 168 PoisonFree(start_of_freed, freed_up, char);
7cb608b5
NC
169 }
170 header->size = size;
cd1541b2 171# endif
7cb608b5 172 }
e8dda941 173#endif
34de22dd
LW
174#ifdef DEBUGGING
175 if ((long)size < 0)
4f63d024 176 Perl_croak_nocontext("panic: realloc");
34de22dd 177#endif
12ae5dfc 178 ptr = (Malloc_t)PerlMem_realloc(where,size);
da927450 179 PERL_ALLOC_CHECK(ptr);
a1d180c4 180
97835f67
JH
181 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
182 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
79072805 183
bd61b366 184 if (ptr != NULL) {
e8dda941 185#ifdef PERL_TRACK_MEMPOOL
7cb608b5
NC
186 struct perl_memory_debug_header *const header
187 = (struct perl_memory_debug_header *)ptr;
188
9a083ecf
NC
189# ifdef PERL_POISON
190 if (header->size < size) {
191 const MEM_SIZE fresh = size - header->size;
192 char *start_of_fresh = ((char *)ptr) + size;
7e337ee0 193 PoisonNew(start_of_fresh, fresh, char);
9a083ecf
NC
194 }
195# endif
196
7cb608b5
NC
197 header->next->prev = header;
198 header->prev->next = header;
199
e8dda941
JD
200 ptr = (Malloc_t)((char*)ptr+sTHX);
201#endif
8d063cd8 202 return ptr;
e8dda941 203 }
3280af22 204 else if (PL_nomemok)
bd61b366 205 return NULL;
8d063cd8 206 else {
0bd48802 207 return write_no_mem();
8d063cd8
LW
208 }
209 /*NOTREACHED*/
210}
211
f2517201 212/* safe version of system's free() */
8d063cd8 213
54310121 214Free_t
4f63d024 215Perl_safesysfree(Malloc_t where)
8d063cd8 216{
e8dda941 217#if defined(PERL_IMPLICIT_SYS) || defined(PERL_TRACK_MEMPOOL)
54aff467 218 dTHX;
97aff369
JH
219#else
220 dVAR;
155aba94 221#endif
97835f67 222 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
378cc40b 223 if (where) {
e8dda941
JD
224#ifdef PERL_TRACK_MEMPOOL
225 where = (Malloc_t)((char*)where-sTHX);
cd1541b2 226 {
7cb608b5
NC
227 struct perl_memory_debug_header *const header
228 = (struct perl_memory_debug_header *)where;
229
230 if (header->interpreter != aTHX) {
231 Perl_croak_nocontext("panic: free from wrong pool");
232 }
233 if (!header->prev) {
cd1541b2
NC
234 Perl_croak_nocontext("panic: duplicate free");
235 }
7cb608b5
NC
236 if (!(header->next) || header->next->prev != header
237 || header->prev->next != header) {
238 Perl_croak_nocontext("panic: bad free");
cd1541b2 239 }
7cb608b5
NC
240 /* Unlink us from the chain. */
241 header->next->prev = header->prev;
242 header->prev->next = header->next;
243# ifdef PERL_POISON
7e337ee0 244 PoisonNew(where, header->size, char);
cd1541b2 245# endif
7cb608b5
NC
246 /* Trigger the duplicate free warning. */
247 header->next = NULL;
248 }
e8dda941 249#endif
6ad3d225 250 PerlMem_free(where);
378cc40b 251 }
8d063cd8
LW
252}
253
f2517201 254/* safe version of system's calloc() */
1050c9ca 255
bd4080b3 256Malloc_t
4f63d024 257Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
1050c9ca 258{
54aff467 259 dTHX;
bd4080b3 260 Malloc_t ptr;
ad7244db 261 MEM_SIZE total_size = 0;
1050c9ca 262
ad7244db 263 /* Even though calloc() for zero bytes is strange, be robust. */
19a94d75 264 if (size && (count <= MEM_SIZE_MAX / size))
ad7244db
JH
265 total_size = size * count;
266 else
267 Perl_croak_nocontext(PL_memory_wrap);
268#ifdef PERL_TRACK_MEMPOOL
19a94d75 269 if (sTHX <= MEM_SIZE_MAX - (MEM_SIZE)total_size)
ad7244db
JH
270 total_size += sTHX;
271 else
272 Perl_croak_nocontext(PL_memory_wrap);
273#endif
55497cff 274#ifdef HAS_64K_LIMIT
e1a95402 275 if (total_size > 0xffff) {
bf49b057 276 PerlIO_printf(Perl_error_log,
e1a95402 277 "Allocation too large: %lx\n", total_size) FLUSH;
54aff467 278 my_exit(1);
5f05dabc 279 }
55497cff 280#endif /* HAS_64K_LIMIT */
1050c9ca 281#ifdef DEBUGGING
282 if ((long)size < 0 || (long)count < 0)
4f63d024 283 Perl_croak_nocontext("panic: calloc");
1050c9ca 284#endif
e8dda941 285#ifdef PERL_TRACK_MEMPOOL
e1a95402
NC
286 /* Have to use malloc() because we've added some space for our tracking
287 header. */
ad7244db
JH
288 /* malloc(0) is non-portable. */
289 ptr = (Malloc_t)PerlMem_malloc(total_size ? total_size : 1);
e1a95402
NC
290#else
291 /* Use calloc() because it might save a memset() if the memory is fresh
292 and clean from the OS. */
ad7244db
JH
293 if (count && size)
294 ptr = (Malloc_t)PerlMem_calloc(count, size);
295 else /* calloc(0) is non-portable. */
296 ptr = (Malloc_t)PerlMem_calloc(count ? count : 1, size ? size : 1);
e8dda941 297#endif
da927450 298 PERL_ALLOC_CHECK(ptr);
e1a95402 299 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)total_size));
bd61b366 300 if (ptr != NULL) {
e8dda941 301#ifdef PERL_TRACK_MEMPOOL
7cb608b5
NC
302 {
303 struct perl_memory_debug_header *const header
304 = (struct perl_memory_debug_header *)ptr;
305
e1a95402 306 memset((void*)ptr, 0, total_size);
7cb608b5
NC
307 header->interpreter = aTHX;
308 /* Link us into the list. */
309 header->prev = &PL_memory_debug_header;
310 header->next = PL_memory_debug_header.next;
311 PL_memory_debug_header.next = header;
312 header->next->prev = header;
cd1541b2 313# ifdef PERL_POISON
e1a95402 314 header->size = total_size;
cd1541b2 315# endif
7cb608b5
NC
316 ptr = (Malloc_t)((char*)ptr+sTHX);
317 }
e8dda941 318#endif
1050c9ca 319 return ptr;
320 }
3280af22 321 else if (PL_nomemok)
bd61b366 322 return NULL;
0bd48802 323 return write_no_mem();
1050c9ca 324}
325
cae6d0e5
GS
326/* These must be defined when not using Perl's malloc for binary
327 * compatibility */
328
329#ifndef MYMALLOC
330
331Malloc_t Perl_malloc (MEM_SIZE nbytes)
332{
333 dTHXs;
077a72a9 334 return (Malloc_t)PerlMem_malloc(nbytes);
cae6d0e5
GS
335}
336
337Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
338{
339 dTHXs;
077a72a9 340 return (Malloc_t)PerlMem_calloc(elements, size);
cae6d0e5
GS
341}
342
343Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
344{
345 dTHXs;
077a72a9 346 return (Malloc_t)PerlMem_realloc(where, nbytes);
cae6d0e5
GS
347}
348
349Free_t Perl_mfree (Malloc_t where)
350{
351 dTHXs;
352 PerlMem_free(where);
353}
354
355#endif
356
8d063cd8
LW
357/* copy a string up to some (non-backslashed) delimiter, if any */
358
359char *
e1ec3a88 360Perl_delimcpy(pTHX_ register char *to, register const char *toend, register const char *from, register const char *fromend, register int delim, I32 *retlen)
8d063cd8 361{
fc36a67e 362 register I32 tolen;
96a5add6 363 PERL_UNUSED_CONTEXT;
35da51f7 364
fc36a67e 365 for (tolen = 0; from < fromend; from++, tolen++) {
378cc40b 366 if (*from == '\\') {
35da51f7 367 if (from[1] != delim) {
fc36a67e 368 if (to < toend)
369 *to++ = *from;
370 tolen++;
fc36a67e 371 }
35da51f7 372 from++;
378cc40b 373 }
bedebaa5 374 else if (*from == delim)
8d063cd8 375 break;
fc36a67e 376 if (to < toend)
377 *to++ = *from;
8d063cd8 378 }
bedebaa5
CS
379 if (to < toend)
380 *to = '\0';
fc36a67e 381 *retlen = tolen;
73d840c0 382 return (char *)from;
8d063cd8
LW
383}
384
385/* return ptr to little string in big string, NULL if not found */
378cc40b 386/* This routine was donated by Corey Satten. */
8d063cd8
LW
387
388char *
864dbfa3 389Perl_instr(pTHX_ register const char *big, register const char *little)
378cc40b 390{
79072805 391 register I32 first;
96a5add6 392 PERL_UNUSED_CONTEXT;
378cc40b 393
a687059c 394 if (!little)
08105a92 395 return (char*)big;
a687059c 396 first = *little++;
378cc40b 397 if (!first)
08105a92 398 return (char*)big;
378cc40b 399 while (*big) {
66a1b24b 400 register const char *s, *x;
378cc40b
LW
401 if (*big++ != first)
402 continue;
403 for (x=big,s=little; *s; /**/ ) {
404 if (!*x)
bd61b366 405 return NULL;
4fc877ac 406 if (*s != *x)
378cc40b 407 break;
4fc877ac
AL
408 else {
409 s++;
410 x++;
378cc40b
LW
411 }
412 }
413 if (!*s)
08105a92 414 return (char*)(big-1);
378cc40b 415 }
bd61b366 416 return NULL;
378cc40b 417}
8d063cd8 418
a687059c
LW
419/* same as instr but allow embedded nulls */
420
421char *
4c8626be 422Perl_ninstr(pTHX_ const char *big, const char *bigend, const char *little, const char *lend)
8d063cd8 423{
96a5add6 424 PERL_UNUSED_CONTEXT;
4c8626be
GA
425 if (little >= lend)
426 return (char*)big;
427 {
428 char first = *little++;
429 const char *s, *x;
430 bigend -= lend - little;
431 OUTER:
432 while (big <= bigend) {
b0ca24ee
JH
433 if (*big++ == first) {
434 for (x=big,s=little; s < lend; x++,s++) {
435 if (*s != *x)
436 goto OUTER;
437 }
438 return (char*)(big-1);
4c8626be 439 }
4c8626be 440 }
378cc40b 441 }
bd61b366 442 return NULL;
a687059c
LW
443}
444
445/* reverse of the above--find last substring */
446
447char *
864dbfa3 448Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
a687059c 449{
08105a92 450 register const char *bigbeg;
e1ec3a88 451 register const I32 first = *little;
7452cf6a 452 register const char * const littleend = lend;
96a5add6 453 PERL_UNUSED_CONTEXT;
a687059c 454
260d78c9 455 if (little >= littleend)
08105a92 456 return (char*)bigend;
a687059c
LW
457 bigbeg = big;
458 big = bigend - (littleend - little++);
459 while (big >= bigbeg) {
66a1b24b 460 register const char *s, *x;
a687059c
LW
461 if (*big-- != first)
462 continue;
463 for (x=big+2,s=little; s < littleend; /**/ ) {
4fc877ac 464 if (*s != *x)
a687059c 465 break;
4fc877ac
AL
466 else {
467 x++;
468 s++;
a687059c
LW
469 }
470 }
471 if (s >= littleend)
08105a92 472 return (char*)(big+1);
378cc40b 473 }
bd61b366 474 return NULL;
378cc40b 475}
a687059c 476
cf93c79d
IZ
477/* As a space optimization, we do not compile tables for strings of length
478 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
479 special-cased in fbm_instr().
480
481 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
482
954c1994 483/*
ccfc67b7
JH
484=head1 Miscellaneous Functions
485
954c1994
GS
486=for apidoc fbm_compile
487
488Analyses the string in order to make fast searches on it using fbm_instr()
489-- the Boyer-Moore algorithm.
490
491=cut
492*/
493
378cc40b 494void
7506f9c3 495Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
378cc40b 496{
97aff369 497 dVAR;
0d46e09a 498 register const U8 *s;
79072805 499 register U32 i;
0b71040e 500 STRLEN len;
cb742848 501 U32 rarest = 0;
79072805
LW
502 U32 frequency = 256;
503
c517dc2b 504 if (flags & FBMcf_TAIL) {
890ce7af 505 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
396482e1 506 sv_catpvs(sv, "\n"); /* Taken into account in fbm_instr() */
c517dc2b
JH
507 if (mg && mg->mg_len >= 0)
508 mg->mg_len++;
509 }
9cbe880b 510 s = (U8*)SvPV_force_mutable(sv, len);
d1be9408 511 if (len == 0) /* TAIL might be on a zero-length string. */
cf93c79d 512 return;
cecf5685 513 SvUPGRADE(sv, SVt_PVGV);
78d0cf80 514 SvIOK_off(sv);
8eeaf79a
NC
515 SvNOK_off(sv);
516 SvVALID_on(sv);
02128f11 517 if (len > 2) {
9cbe880b 518 const unsigned char *sb;
66a1b24b 519 const U8 mlen = (len>255) ? 255 : (U8)len;
890ce7af 520 register U8 *table;
cf93c79d 521
d8419e03
NC
522 Sv_Grow(sv, len + 256 + PERL_FBM_TABLE_OFFSET);
523 table
524 = (unsigned char*)(SvPVX_mutable(sv) + len + PERL_FBM_TABLE_OFFSET);
525 s = table - 1 - PERL_FBM_TABLE_OFFSET; /* last char */
7506f9c3 526 memset((void*)table, mlen, 256);
02128f11 527 i = 0;
7506f9c3 528 sb = s - mlen + 1; /* first char (maybe) */
cf93c79d
IZ
529 while (s >= sb) {
530 if (table[*s] == mlen)
7506f9c3 531 table[*s] = (U8)i;
cf93c79d
IZ
532 s--, i++;
533 }
d0688fc4
NC
534 } else {
535 Sv_Grow(sv, len + PERL_FBM_TABLE_OFFSET);
378cc40b 536 }
a0714e2c 537 sv_magic(sv, NULL, PERL_MAGIC_bm, NULL, 0); /* deep magic */
378cc40b 538
9cbe880b 539 s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
bbce6d69 540 for (i = 0; i < len; i++) {
22c35a8c 541 if (PL_freq[s[i]] < frequency) {
bbce6d69 542 rarest = i;
22c35a8c 543 frequency = PL_freq[s[i]];
378cc40b
LW
544 }
545 }
610460f9 546 BmFLAGS(sv) = (U8)flags;
79072805 547 BmRARE(sv) = s[rarest];
44a10c71 548 BmPREVIOUS(sv) = rarest;
cf93c79d
IZ
549 BmUSEFUL(sv) = 100; /* Initial value */
550 if (flags & FBMcf_TAIL)
551 SvTAIL_on(sv);
8eeaf79a
NC
552 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %lu\n",
553 BmRARE(sv),(unsigned long)BmPREVIOUS(sv)));
378cc40b
LW
554}
555
cf93c79d
IZ
556/* If SvTAIL(littlestr), it has a fake '\n' at end. */
557/* If SvTAIL is actually due to \Z or \z, this gives false positives
558 if multiline */
559
954c1994
GS
560/*
561=for apidoc fbm_instr
562
563Returns the location of the SV in the string delimited by C<str> and
bd61b366 564C<strend>. It returns C<NULL> if the string can't be found. The C<sv>
954c1994
GS
565does not have to be fbm_compiled, but the search will not be as fast
566then.
567
568=cut
569*/
570
378cc40b 571char *
864dbfa3 572Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
378cc40b 573{
a687059c 574 register unsigned char *s;
cf93c79d 575 STRLEN l;
9cbe880b
NC
576 register const unsigned char *little
577 = (const unsigned char *)SvPV_const(littlestr,l);
cf93c79d 578 register STRLEN littlelen = l;
e1ec3a88 579 register const I32 multiline = flags & FBMrf_MULTILINE;
cf93c79d 580
eb160463 581 if ((STRLEN)(bigend - big) < littlelen) {
a1d180c4 582 if ( SvTAIL(littlestr)
eb160463 583 && ((STRLEN)(bigend - big) == littlelen - 1)
a1d180c4 584 && (littlelen == 1
12ae5dfc 585 || (*big == *little &&
27da23d5 586 memEQ((char *)big, (char *)little, littlelen - 1))))
cf93c79d 587 return (char*)big;
bd61b366 588 return NULL;
cf93c79d 589 }
378cc40b 590
cf93c79d 591 if (littlelen <= 2) { /* Special-cased */
cf93c79d
IZ
592
593 if (littlelen == 1) {
594 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
595 /* Know that bigend != big. */
596 if (bigend[-1] == '\n')
597 return (char *)(bigend - 1);
598 return (char *) bigend;
599 }
600 s = big;
601 while (s < bigend) {
602 if (*s == *little)
603 return (char *)s;
604 s++;
605 }
606 if (SvTAIL(littlestr))
607 return (char *) bigend;
bd61b366 608 return NULL;
cf93c79d
IZ
609 }
610 if (!littlelen)
611 return (char*)big; /* Cannot be SvTAIL! */
612
613 /* littlelen is 2 */
614 if (SvTAIL(littlestr) && !multiline) {
615 if (bigend[-1] == '\n' && bigend[-2] == *little)
616 return (char*)bigend - 2;
617 if (bigend[-1] == *little)
618 return (char*)bigend - 1;
bd61b366 619 return NULL;
cf93c79d
IZ
620 }
621 {
622 /* This should be better than FBM if c1 == c2, and almost
623 as good otherwise: maybe better since we do less indirection.
624 And we save a lot of memory by caching no table. */
66a1b24b
AL
625 const unsigned char c1 = little[0];
626 const unsigned char c2 = little[1];
cf93c79d
IZ
627
628 s = big + 1;
629 bigend--;
630 if (c1 != c2) {
631 while (s <= bigend) {
632 if (s[0] == c2) {
633 if (s[-1] == c1)
634 return (char*)s - 1;
635 s += 2;
636 continue;
3fe6f2dc 637 }
cf93c79d
IZ
638 next_chars:
639 if (s[0] == c1) {
640 if (s == bigend)
641 goto check_1char_anchor;
642 if (s[1] == c2)
643 return (char*)s;
644 else {
645 s++;
646 goto next_chars;
647 }
648 }
649 else
650 s += 2;
651 }
652 goto check_1char_anchor;
653 }
654 /* Now c1 == c2 */
655 while (s <= bigend) {
656 if (s[0] == c1) {
657 if (s[-1] == c1)
658 return (char*)s - 1;
659 if (s == bigend)
660 goto check_1char_anchor;
661 if (s[1] == c1)
662 return (char*)s;
663 s += 3;
02128f11 664 }
c277df42 665 else
cf93c79d 666 s += 2;
c277df42 667 }
c277df42 668 }
cf93c79d
IZ
669 check_1char_anchor: /* One char and anchor! */
670 if (SvTAIL(littlestr) && (*bigend == *little))
671 return (char *)bigend; /* bigend is already decremented. */
bd61b366 672 return NULL;
d48672a2 673 }
cf93c79d 674 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
bbce6d69 675 s = bigend - littlelen;
a1d180c4 676 if (s >= big && bigend[-1] == '\n' && *s == *little
cf93c79d
IZ
677 /* Automatically of length > 2 */
678 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
7506f9c3 679 {
bbce6d69 680 return (char*)s; /* how sweet it is */
7506f9c3
GS
681 }
682 if (s[1] == *little
683 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
684 {
cf93c79d 685 return (char*)s + 1; /* how sweet it is */
7506f9c3 686 }
bd61b366 687 return NULL;
02128f11 688 }
cecf5685 689 if (!SvVALID(littlestr)) {
c4420975 690 char * const b = ninstr((char*)big,(char*)bigend,
cf93c79d
IZ
691 (char*)little, (char*)little + littlelen);
692
693 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
694 /* Chop \n from littlestr: */
695 s = bigend - littlelen + 1;
7506f9c3
GS
696 if (*s == *little
697 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
698 {
3fe6f2dc 699 return (char*)s;
7506f9c3 700 }
bd61b366 701 return NULL;
a687059c 702 }
cf93c79d 703 return b;
a687059c 704 }
a1d180c4 705
3566a07d
NC
706 /* Do actual FBM. */
707 if (littlelen > (STRLEN)(bigend - big))
708 return NULL;
709
710 {
d8419e03
NC
711 register const unsigned char * const table
712 = little + littlelen + PERL_FBM_TABLE_OFFSET;
0d46e09a 713 register const unsigned char *oldlittle;
cf93c79d 714
cf93c79d
IZ
715 --littlelen; /* Last char found by table lookup */
716
717 s = big + littlelen;
718 little += littlelen; /* last char */
719 oldlittle = little;
720 if (s < bigend) {
721 register I32 tmp;
722
723 top2:
7506f9c3 724 if ((tmp = table[*s])) {
cf93c79d 725 if ((s += tmp) < bigend)
62b28dd9 726 goto top2;
cf93c79d
IZ
727 goto check_end;
728 }
729 else { /* less expensive than calling strncmp() */
66a1b24b 730 register unsigned char * const olds = s;
cf93c79d
IZ
731
732 tmp = littlelen;
733
734 while (tmp--) {
735 if (*--s == *--little)
736 continue;
cf93c79d
IZ
737 s = olds + 1; /* here we pay the price for failure */
738 little = oldlittle;
739 if (s < bigend) /* fake up continue to outer loop */
740 goto top2;
741 goto check_end;
742 }
743 return (char *)s;
a687059c 744 }
378cc40b 745 }
cf93c79d 746 check_end:
c8029a41 747 if ( s == bigend
8eeaf79a 748 && (BmFLAGS(littlestr) & FBMcf_TAIL)
12ae5dfc
JH
749 && memEQ((char *)(bigend - littlelen),
750 (char *)(oldlittle - littlelen), littlelen) )
cf93c79d 751 return (char*)bigend - littlelen;
bd61b366 752 return NULL;
378cc40b 753 }
378cc40b
LW
754}
755
c277df42
IZ
756/* start_shift, end_shift are positive quantities which give offsets
757 of ends of some substring of bigstr.
a0288114 758 If "last" we want the last occurrence.
c277df42 759 old_posp is the way of communication between consequent calls if
a1d180c4 760 the next call needs to find the .
c277df42 761 The initial *old_posp should be -1.
cf93c79d
IZ
762
763 Note that we take into account SvTAIL, so one can get extra
764 optimizations if _ALL flag is set.
c277df42
IZ
765 */
766
cf93c79d 767/* If SvTAIL is actually due to \Z or \z, this gives false positives
26fa51c3 768 if PL_multiline. In fact if !PL_multiline the authoritative answer
cf93c79d
IZ
769 is not supported yet. */
770
378cc40b 771char *
864dbfa3 772Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
378cc40b 773{
97aff369 774 dVAR;
0d46e09a 775 register const unsigned char *big;
79072805
LW
776 register I32 pos;
777 register I32 previous;
778 register I32 first;
0d46e09a 779 register const unsigned char *little;
c277df42 780 register I32 stop_pos;
0d46e09a 781 register const unsigned char *littleend;
c277df42 782 I32 found = 0;
378cc40b 783
cecf5685
NC
784 assert(SvTYPE(littlestr) == SVt_PVGV);
785 assert(SvVALID(littlestr));
d372c834 786
c277df42 787 if (*old_posp == -1
3280af22 788 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
cf93c79d
IZ
789 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
790 cant_find:
a1d180c4 791 if ( BmRARE(littlestr) == '\n'
85c508c3 792 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
cfd0369c 793 little = (const unsigned char *)(SvPVX_const(littlestr));
cf93c79d
IZ
794 littleend = little + SvCUR(littlestr);
795 first = *little++;
796 goto check_tail;
797 }
bd61b366 798 return NULL;
cf93c79d
IZ
799 }
800
cfd0369c 801 little = (const unsigned char *)(SvPVX_const(littlestr));
79072805 802 littleend = little + SvCUR(littlestr);
378cc40b 803 first = *little++;
c277df42 804 /* The value of pos we can start at: */
79072805 805 previous = BmPREVIOUS(littlestr);
cfd0369c 806 big = (const unsigned char *)(SvPVX_const(bigstr));
c277df42
IZ
807 /* The value of pos we can stop at: */
808 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
cf93c79d 809 if (previous + start_shift > stop_pos) {
0fe87f7c
HS
810/*
811 stop_pos does not include SvTAIL in the count, so this check is incorrect
812 (I think) - see [ID 20010618.006] and t/op/study.t. HVDS 2001/06/19
813*/
814#if 0
cf93c79d
IZ
815 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
816 goto check_tail;
0fe87f7c 817#endif
bd61b366 818 return NULL;
cf93c79d 819 }
c277df42 820 while (pos < previous + start_shift) {
3280af22 821 if (!(pos += PL_screamnext[pos]))
cf93c79d 822 goto cant_find;
378cc40b 823 }
de3bb511 824 big -= previous;
bbce6d69 825 do {
0d46e09a 826 register const unsigned char *s, *x;
ef64f398 827 if (pos >= stop_pos) break;
bbce6d69 828 if (big[pos] != first)
829 continue;
830 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
bbce6d69 831 if (*s++ != *x++) {
832 s--;
833 break;
378cc40b 834 }
bbce6d69 835 }
c277df42
IZ
836 if (s == littleend) {
837 *old_posp = pos;
838 if (!last) return (char *)(big+pos);
839 found = 1;
840 }
3280af22 841 } while ( pos += PL_screamnext[pos] );
a1d180c4 842 if (last && found)
cf93c79d 843 return (char *)(big+(*old_posp));
cf93c79d
IZ
844 check_tail:
845 if (!SvTAIL(littlestr) || (end_shift > 0))
bd61b366 846 return NULL;
cf93c79d 847 /* Ignore the trailing "\n". This code is not microoptimized */
cfd0369c 848 big = (const unsigned char *)(SvPVX_const(bigstr) + SvCUR(bigstr));
cf93c79d
IZ
849 stop_pos = littleend - little; /* Actual littlestr len */
850 if (stop_pos == 0)
851 return (char*)big;
852 big -= stop_pos;
853 if (*big == first
12ae5dfc
JH
854 && ((stop_pos == 1) ||
855 memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
cf93c79d 856 return (char*)big;
bd61b366 857 return NULL;
8d063cd8
LW
858}
859
79072805 860I32
864dbfa3 861Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
79072805 862{
e1ec3a88
AL
863 register const U8 *a = (const U8 *)s1;
864 register const U8 *b = (const U8 *)s2;
96a5add6
AL
865 PERL_UNUSED_CONTEXT;
866
79072805 867 while (len--) {
22c35a8c 868 if (*a != *b && *a != PL_fold[*b])
bbce6d69 869 return 1;
870 a++,b++;
871 }
872 return 0;
873}
874
875I32
864dbfa3 876Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
bbce6d69 877{
27da23d5 878 dVAR;
e1ec3a88
AL
879 register const U8 *a = (const U8 *)s1;
880 register const U8 *b = (const U8 *)s2;
96a5add6
AL
881 PERL_UNUSED_CONTEXT;
882
bbce6d69 883 while (len--) {
22c35a8c 884 if (*a != *b && *a != PL_fold_locale[*b])
bbce6d69 885 return 1;
886 a++,b++;
79072805
LW
887 }
888 return 0;
889}
890
8d063cd8
LW
891/* copy a string to a safe spot */
892
954c1994 893/*
ccfc67b7
JH
894=head1 Memory Management
895
954c1994
GS
896=for apidoc savepv
897
61a925ed
AMS
898Perl's version of C<strdup()>. Returns a pointer to a newly allocated
899string which is a duplicate of C<pv>. The size of the string is
900determined by C<strlen()>. The memory allocated for the new string can
901be freed with the C<Safefree()> function.
954c1994
GS
902
903=cut
904*/
905
8d063cd8 906char *
efdfce31 907Perl_savepv(pTHX_ const char *pv)
8d063cd8 908{
96a5add6 909 PERL_UNUSED_CONTEXT;
e90e2364 910 if (!pv)
bd61b366 911 return NULL;
66a1b24b
AL
912 else {
913 char *newaddr;
914 const STRLEN pvlen = strlen(pv)+1;
10edeb5d
JH
915 Newx(newaddr, pvlen, char);
916 return (char*)memcpy(newaddr, pv, pvlen);
66a1b24b 917 }
8d063cd8
LW
918}
919
a687059c
LW
920/* same thing but with a known length */
921
954c1994
GS
922/*
923=for apidoc savepvn
924
61a925ed
AMS
925Perl's version of what C<strndup()> would be if it existed. Returns a
926pointer to a newly allocated string which is a duplicate of the first
cbf82dd0
NC
927C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for
928the new string can be freed with the C<Safefree()> function.
954c1994
GS
929
930=cut
931*/
932
a687059c 933char *
efdfce31 934Perl_savepvn(pTHX_ const char *pv, register I32 len)
a687059c
LW
935{
936 register char *newaddr;
96a5add6 937 PERL_UNUSED_CONTEXT;
a687059c 938
a02a5408 939 Newx(newaddr,len+1,char);
92110913 940 /* Give a meaning to NULL pointer mainly for the use in sv_magic() */
efdfce31 941 if (pv) {
e90e2364
NC
942 /* might not be null terminated */
943 newaddr[len] = '\0';
07409e01 944 return (char *) CopyD(pv,newaddr,len,char);
92110913
NIS
945 }
946 else {
07409e01 947 return (char *) ZeroD(newaddr,len+1,char);
92110913 948 }
a687059c
LW
949}
950
05ec9bb3
NIS
951/*
952=for apidoc savesharedpv
953
61a925ed
AMS
954A version of C<savepv()> which allocates the duplicate string in memory
955which is shared between threads.
05ec9bb3
NIS
956
957=cut
958*/
959char *
efdfce31 960Perl_savesharedpv(pTHX_ const char *pv)
05ec9bb3 961{
e90e2364 962 register char *newaddr;
490a0e98 963 STRLEN pvlen;
e90e2364 964 if (!pv)
bd61b366 965 return NULL;
e90e2364 966
490a0e98
NC
967 pvlen = strlen(pv)+1;
968 newaddr = (char*)PerlMemShared_malloc(pvlen);
e90e2364 969 if (!newaddr) {
0bd48802 970 return write_no_mem();
05ec9bb3 971 }
10edeb5d 972 return (char*)memcpy(newaddr, pv, pvlen);
05ec9bb3
NIS
973}
974
2e0de35c 975/*
d9095cec
NC
976=for apidoc savesharedpvn
977
978A version of C<savepvn()> which allocates the duplicate string in memory
979which is shared between threads. (With the specific difference that a NULL
980pointer is not acceptable)
981
982=cut
983*/
984char *
985Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
986{
987 char *const newaddr = (char*)PerlMemShared_malloc(len + 1);
988 assert(pv);
989 if (!newaddr) {
990 return write_no_mem();
991 }
992 newaddr[len] = '\0';
993 return (char*)memcpy(newaddr, pv, len);
994}
995
996/*
2e0de35c
NC
997=for apidoc savesvpv
998
6832267f 999A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
2e0de35c
NC
1000the passed in SV using C<SvPV()>
1001
1002=cut
1003*/
1004
1005char *
1006Perl_savesvpv(pTHX_ SV *sv)
1007{
1008 STRLEN len;
7452cf6a 1009 const char * const pv = SvPV_const(sv, len);
2e0de35c
NC
1010 register char *newaddr;
1011
26866f99 1012 ++len;
a02a5408 1013 Newx(newaddr,len,char);
07409e01 1014 return (char *) CopyD(pv,newaddr,len,char);
2e0de35c 1015}
05ec9bb3
NIS
1016
1017
cea2e8a9 1018/* the SV for Perl_form() and mess() is not kept in an arena */
fc36a67e 1019
76e3520e 1020STATIC SV *
cea2e8a9 1021S_mess_alloc(pTHX)
fc36a67e 1022{
97aff369 1023 dVAR;
fc36a67e 1024 SV *sv;
1025 XPVMG *any;
1026
e72dc28c 1027 if (!PL_dirty)
396482e1 1028 return sv_2mortal(newSVpvs(""));
e72dc28c 1029
0372dbb6
GS
1030 if (PL_mess_sv)
1031 return PL_mess_sv;
1032
fc36a67e 1033 /* Create as PVMG now, to avoid any upgrading later */
a02a5408
JC
1034 Newx(sv, 1, SV);
1035 Newxz(any, 1, XPVMG);
fc36a67e 1036 SvFLAGS(sv) = SVt_PVMG;
1037 SvANY(sv) = (void*)any;
6136c704 1038 SvPV_set(sv, NULL);
fc36a67e 1039 SvREFCNT(sv) = 1 << 30; /* practically infinite */
e72dc28c 1040 PL_mess_sv = sv;
fc36a67e 1041 return sv;
1042}
1043
c5be433b 1044#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
1045char *
1046Perl_form_nocontext(const char* pat, ...)
1047{
1048 dTHX;
c5be433b 1049 char *retval;
cea2e8a9
GS
1050 va_list args;
1051 va_start(args, pat);
c5be433b 1052 retval = vform(pat, &args);
cea2e8a9 1053 va_end(args);
c5be433b 1054 return retval;
cea2e8a9 1055}
c5be433b 1056#endif /* PERL_IMPLICIT_CONTEXT */
cea2e8a9 1057
7c9e965c 1058/*
ccfc67b7 1059=head1 Miscellaneous Functions
7c9e965c
JP
1060=for apidoc form
1061
1062Takes a sprintf-style format pattern and conventional
1063(non-SV) arguments and returns the formatted string.
1064
1065 (char *) Perl_form(pTHX_ const char* pat, ...)
1066
1067can be used any place a string (char *) is required:
1068
1069 char * s = Perl_form("%d.%d",major,minor);
1070
1071Uses a single private buffer so if you want to format several strings you
1072must explicitly copy the earlier strings away (and free the copies when you
1073are done).
1074
1075=cut
1076*/
1077
8990e307 1078char *
864dbfa3 1079Perl_form(pTHX_ const char* pat, ...)
8990e307 1080{
c5be433b 1081 char *retval;
46fc3d4c 1082 va_list args;
46fc3d4c 1083 va_start(args, pat);
c5be433b 1084 retval = vform(pat, &args);
46fc3d4c 1085 va_end(args);
c5be433b
GS
1086 return retval;
1087}
1088
1089char *
1090Perl_vform(pTHX_ const char *pat, va_list *args)
1091{
2d03de9c 1092 SV * const sv = mess_alloc();
4608196e 1093 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
e72dc28c 1094 return SvPVX(sv);
46fc3d4c 1095}
a687059c 1096
5a844595
GS
1097#if defined(PERL_IMPLICIT_CONTEXT)
1098SV *
1099Perl_mess_nocontext(const char *pat, ...)
1100{
1101 dTHX;
1102 SV *retval;
1103 va_list args;
1104 va_start(args, pat);
1105 retval = vmess(pat, &args);
1106 va_end(args);
1107 return retval;
1108}
1109#endif /* PERL_IMPLICIT_CONTEXT */
1110
06bf62c7 1111SV *
5a844595
GS
1112Perl_mess(pTHX_ const char *pat, ...)
1113{
1114 SV *retval;
1115 va_list args;
1116 va_start(args, pat);
1117 retval = vmess(pat, &args);
1118 va_end(args);
1119 return retval;
1120}
1121
5f66b61c
AL
1122STATIC const COP*
1123S_closest_cop(pTHX_ const COP *cop, const OP *o)
ae7d165c 1124{
97aff369 1125 dVAR;
ae7d165c
PJ
1126 /* Look for PL_op starting from o. cop is the last COP we've seen. */
1127
fabdb6c0
AL
1128 if (!o || o == PL_op)
1129 return cop;
ae7d165c
PJ
1130
1131 if (o->op_flags & OPf_KIDS) {
5f66b61c 1132 const OP *kid;
fabdb6c0 1133 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
5f66b61c 1134 const COP *new_cop;
ae7d165c
PJ
1135
1136 /* If the OP_NEXTSTATE has been optimised away we can still use it
1137 * the get the file and line number. */
1138
1139 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE)
5f66b61c 1140 cop = (const COP *)kid;
ae7d165c
PJ
1141
1142 /* Keep searching, and return when we've found something. */
1143
1144 new_cop = closest_cop(cop, kid);
fabdb6c0
AL
1145 if (new_cop)
1146 return new_cop;
ae7d165c
PJ
1147 }
1148 }
1149
1150 /* Nothing found. */
1151
5f66b61c 1152 return NULL;
ae7d165c
PJ
1153}
1154
5a844595
GS
1155SV *
1156Perl_vmess(pTHX_ const char *pat, va_list *args)
46fc3d4c 1157{
97aff369 1158 dVAR;
c4420975 1159 SV * const sv = mess_alloc();
46fc3d4c 1160
5f66b61c 1161 sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
46fc3d4c 1162 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
ae7d165c
PJ
1163 /*
1164 * Try and find the file and line for PL_op. This will usually be
1165 * PL_curcop, but it might be a cop that has been optimised away. We
1166 * can try to find such a cop by searching through the optree starting
1167 * from the sibling of PL_curcop.
1168 */
1169
e1ec3a88 1170 const COP *cop = closest_cop(PL_curcop, PL_curcop->op_sibling);
5f66b61c
AL
1171 if (!cop)
1172 cop = PL_curcop;
ae7d165c
PJ
1173
1174 if (CopLINE(cop))
ed094faf 1175 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
3aed30dc 1176 OutCopFILE(cop), (IV)CopLINE(cop));
191f87d5
DH
1177 /* Seems that GvIO() can be untrustworthy during global destruction. */
1178 if (GvIO(PL_last_in_gv) && (SvTYPE(GvIOp(PL_last_in_gv)) == SVt_PVIO)
1179 && IoLINES(GvIOp(PL_last_in_gv)))
1180 {
e1ec3a88 1181 const bool line_mode = (RsSIMPLE(PL_rs) &&
95a20fc0 1182 SvCUR(PL_rs) == 1 && *SvPVX_const(PL_rs) == '\n');
57def98f 1183 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
5f66b61c 1184 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
edc2eac3
JH
1185 line_mode ? "line" : "chunk",
1186 (IV)IoLINES(GvIOp(PL_last_in_gv)));
a687059c 1187 }
5f66b61c
AL
1188 if (PL_dirty)
1189 sv_catpvs(sv, " during global destruction");
1190 sv_catpvs(sv, ".\n");
a687059c 1191 }
06bf62c7 1192 return sv;
a687059c
LW
1193}
1194
7ff03255
SG
1195void
1196Perl_write_to_stderr(pTHX_ const char* message, int msglen)
1197{
27da23d5 1198 dVAR;
7ff03255
SG
1199 IO *io;
1200 MAGIC *mg;
1201
1202 if (PL_stderrgv && SvREFCNT(PL_stderrgv)
1203 && (io = GvIO(PL_stderrgv))
1204 && (mg = SvTIED_mg((SV*)io, PERL_MAGIC_tiedscalar)))
1205 {
1206 dSP;
1207 ENTER;
1208 SAVETMPS;
1209
1210 save_re_context();
1211 SAVESPTR(PL_stderrgv);
a0714e2c 1212 PL_stderrgv = NULL;
7ff03255
SG
1213
1214 PUSHSTACKi(PERLSI_MAGIC);
1215
1216 PUSHMARK(SP);
1217 EXTEND(SP,2);
1218 PUSHs(SvTIED_obj((SV*)io, mg));
1219 PUSHs(sv_2mortal(newSVpvn(message, msglen)));
1220 PUTBACK;
1221 call_method("PRINT", G_SCALAR);
1222
1223 POPSTACK;
1224 FREETMPS;
1225 LEAVE;
1226 }
1227 else {
1228#ifdef USE_SFIO
1229 /* SFIO can really mess with your errno */
53c1dcc0 1230 const int e = errno;
7ff03255 1231#endif
53c1dcc0 1232 PerlIO * const serr = Perl_error_log;
7ff03255
SG
1233
1234 PERL_WRITE_MSG_TO_CONSOLE(serr, message, msglen);
1235 (void)PerlIO_flush(serr);
1236#ifdef USE_SFIO
1237 errno = e;
1238#endif
1239 }
1240}
1241
46d9c920 1242/* Common code used by vcroak, vdie, vwarn and vwarner */
3ab1ac99 1243
46d9c920
NC
1244STATIC bool
1245S_vdie_common(pTHX_ const char *message, STRLEN msglen, I32 utf8, bool warn)
63315e18 1246{
97aff369 1247 dVAR;
63315e18
NC
1248 HV *stash;
1249 GV *gv;
1250 CV *cv;
46d9c920
NC
1251 SV **const hook = warn ? &PL_warnhook : &PL_diehook;
1252 /* sv_2cv might call Perl_croak() or Perl_warner() */
1253 SV * const oldhook = *hook;
1254
1255 assert(oldhook);
63315e18 1256
63315e18 1257 ENTER;
46d9c920
NC
1258 SAVESPTR(*hook);
1259 *hook = NULL;
1260 cv = sv_2cv(oldhook, &stash, &gv, 0);
63315e18
NC
1261 LEAVE;
1262 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1263 dSP;
1264 SV *msg;
1265
1266 ENTER;
1267 save_re_context();
46d9c920
NC
1268 if (warn) {
1269 SAVESPTR(*hook);
1270 *hook = NULL;
1271 }
1272 if (warn || message) {
63315e18
NC
1273 msg = newSVpvn(message, msglen);
1274 SvFLAGS(msg) |= utf8;
1275 SvREADONLY_on(msg);
1276 SAVEFREESV(msg);
1277 }
1278 else {
1279 msg = ERRSV;
1280 }
1281
46d9c920 1282 PUSHSTACKi(warn ? PERLSI_WARNHOOK : PERLSI_DIEHOOK);
63315e18
NC
1283 PUSHMARK(SP);
1284 XPUSHs(msg);
1285 PUTBACK;
1286 call_sv((SV*)cv, G_DISCARD);
1287 POPSTACK;
1288 LEAVE;
46d9c920 1289 return TRUE;
63315e18 1290 }
46d9c920 1291 return FALSE;
63315e18
NC
1292}
1293
cfd0369c 1294STATIC const char *
e07360fa
AT
1295S_vdie_croak_common(pTHX_ const char* pat, va_list* args, STRLEN* msglen,
1296 I32* utf8)
1297{
1298 dVAR;
cfd0369c 1299 const char *message;
e07360fa
AT
1300
1301 if (pat) {
890ce7af 1302 SV * const msv = vmess(pat, args);
e07360fa
AT
1303 if (PL_errors && SvCUR(PL_errors)) {
1304 sv_catsv(PL_errors, msv);
cfd0369c 1305 message = SvPV_const(PL_errors, *msglen);
e07360fa
AT
1306 SvCUR_set(PL_errors, 0);
1307 }
1308 else
cfd0369c 1309 message = SvPV_const(msv,*msglen);
e07360fa
AT
1310 *utf8 = SvUTF8(msv);
1311 }
1312 else {
bd61b366 1313 message = NULL;
e07360fa
AT
1314 }
1315
1316 DEBUG_S(PerlIO_printf(Perl_debug_log,
1317 "%p: die/croak: message = %s\ndiehook = %p\n",
6c9570dc 1318 (void*)thr, message, (void*)PL_diehook));
e07360fa 1319 if (PL_diehook) {
46d9c920 1320 S_vdie_common(aTHX_ message, *msglen, *utf8, FALSE);
e07360fa
AT
1321 }
1322 return message;
1323}
1324
c5be433b
GS
1325OP *
1326Perl_vdie(pTHX_ const char* pat, va_list *args)
36477c24 1327{
97aff369 1328 dVAR;
73d840c0 1329 const char *message;
e1ec3a88 1330 const int was_in_eval = PL_in_eval;
06bf62c7 1331 STRLEN msglen;
ff882698 1332 I32 utf8 = 0;
36477c24 1333
bf49b057 1334 DEBUG_S(PerlIO_printf(Perl_debug_log,
199100c8 1335 "%p: die: curstack = %p, mainstack = %p\n",
6c9570dc 1336 (void*)thr, (void*)PL_curstack, (void*)PL_mainstack));
36477c24 1337
890ce7af 1338 message = vdie_croak_common(pat, args, &msglen, &utf8);
36477c24 1339
06bf62c7 1340 PL_restartop = die_where(message, msglen);
ff882698 1341 SvFLAGS(ERRSV) |= utf8;
bf49b057 1342 DEBUG_S(PerlIO_printf(Perl_debug_log,
7c06b590 1343 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
6c9570dc 1344 (void*)thr, (void*)PL_restartop, was_in_eval, (void*)PL_top_env));
3280af22 1345 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
6224f72b 1346 JMPENV_JUMP(3);
3280af22 1347 return PL_restartop;
36477c24 1348}
1349
c5be433b 1350#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
1351OP *
1352Perl_die_nocontext(const char* pat, ...)
a687059c 1353{
cea2e8a9
GS
1354 dTHX;
1355 OP *o;
a687059c 1356 va_list args;
cea2e8a9 1357 va_start(args, pat);
c5be433b 1358 o = vdie(pat, &args);
cea2e8a9
GS
1359 va_end(args);
1360 return o;
1361}
c5be433b 1362#endif /* PERL_IMPLICIT_CONTEXT */
cea2e8a9
GS
1363
1364OP *
1365Perl_die(pTHX_ const char* pat, ...)
1366{
1367 OP *o;
1368 va_list args;
1369 va_start(args, pat);
c5be433b 1370 o = vdie(pat, &args);
cea2e8a9
GS
1371 va_end(args);
1372 return o;
1373}
1374
c5be433b
GS
1375void
1376Perl_vcroak(pTHX_ const char* pat, va_list *args)
cea2e8a9 1377{
97aff369 1378 dVAR;
73d840c0 1379 const char *message;
06bf62c7 1380 STRLEN msglen;
ff882698 1381 I32 utf8 = 0;
a687059c 1382
3ab1ac99 1383 message = S_vdie_croak_common(aTHX_ pat, args, &msglen, &utf8);
5a844595 1384
3280af22 1385 if (PL_in_eval) {
06bf62c7 1386 PL_restartop = die_where(message, msglen);
ff882698 1387 SvFLAGS(ERRSV) |= utf8;
6224f72b 1388 JMPENV_JUMP(3);
a0d0e21e 1389 }
84414e3e 1390 else if (!message)
cfd0369c 1391 message = SvPVx_const(ERRSV, msglen);
84414e3e 1392
7ff03255 1393 write_to_stderr(message, msglen);
f86702cc 1394 my_failure_exit();
a687059c
LW
1395}
1396
c5be433b 1397#if defined(PERL_IMPLICIT_CONTEXT)
8990e307 1398void
cea2e8a9 1399Perl_croak_nocontext(const char *pat, ...)
a687059c 1400{
cea2e8a9 1401 dTHX;
a687059c 1402 va_list args;
cea2e8a9 1403 va_start(args, pat);
c5be433b 1404 vcroak(pat, &args);
cea2e8a9
GS
1405 /* NOTREACHED */
1406 va_end(args);
1407}
1408#endif /* PERL_IMPLICIT_CONTEXT */
1409
954c1994 1410/*
ccfc67b7
JH
1411=head1 Warning and Dieing
1412
954c1994
GS
1413=for apidoc croak
1414
9983fa3c 1415This is the XSUB-writer's interface to Perl's C<die> function.
966353fd
MF
1416Normally call this function the same way you call the C C<printf>
1417function. Calling C<croak> returns control directly to Perl,
1418sidestepping the normal C order of execution. See C<warn>.
9983fa3c
GS
1419
1420If you want to throw an exception object, assign the object to
bd61b366 1421C<$@> and then pass C<NULL> to croak():
9983fa3c
GS
1422
1423 errsv = get_sv("@", TRUE);
1424 sv_setsv(errsv, exception_object);
bd61b366 1425 croak(NULL);
954c1994
GS
1426
1427=cut
1428*/
1429
cea2e8a9
GS
1430void
1431Perl_croak(pTHX_ const char *pat, ...)
1432{
1433 va_list args;
1434 va_start(args, pat);
c5be433b 1435 vcroak(pat, &args);
cea2e8a9
GS
1436 /* NOTREACHED */
1437 va_end(args);
1438}
1439
c5be433b
GS
1440void
1441Perl_vwarn(pTHX_ const char* pat, va_list *args)
cea2e8a9 1442{
27da23d5 1443 dVAR;
06bf62c7 1444 STRLEN msglen;
53c1dcc0
AL
1445 SV * const msv = vmess(pat, args);
1446 const I32 utf8 = SvUTF8(msv);
1447 const char * const message = SvPV_const(msv, msglen);
a687059c 1448
3280af22 1449 if (PL_warnhook) {
46d9c920 1450 if (vdie_common(message, msglen, utf8, TRUE))
20cec16a 1451 return;
748a9306 1452 }
87582a92 1453
7ff03255 1454 write_to_stderr(message, msglen);
a687059c 1455}
8d063cd8 1456
c5be433b 1457#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
1458void
1459Perl_warn_nocontext(const char *pat, ...)
1460{
1461 dTHX;
1462 va_list args;
1463 va_start(args, pat);
c5be433b 1464 vwarn(pat, &args);
cea2e8a9
GS
1465 va_end(args);
1466}
1467#endif /* PERL_IMPLICIT_CONTEXT */
1468
954c1994
GS
1469/*
1470=for apidoc warn
1471
966353fd
MF
1472This is the XSUB-writer's interface to Perl's C<warn> function. Call this
1473function the same way you call the C C<printf> function. See C<croak>.
954c1994
GS
1474
1475=cut
1476*/
1477
cea2e8a9
GS
1478void
1479Perl_warn(pTHX_ const char *pat, ...)
1480{
1481 va_list args;
1482 va_start(args, pat);
c5be433b 1483 vwarn(pat, &args);
cea2e8a9
GS
1484 va_end(args);
1485}
1486
c5be433b
GS
1487#if defined(PERL_IMPLICIT_CONTEXT)
1488void
1489Perl_warner_nocontext(U32 err, const char *pat, ...)
1490{
27da23d5 1491 dTHX;
c5be433b
GS
1492 va_list args;
1493 va_start(args, pat);
1494 vwarner(err, pat, &args);
1495 va_end(args);
1496}
1497#endif /* PERL_IMPLICIT_CONTEXT */
1498
599cee73 1499void
864dbfa3 1500Perl_warner(pTHX_ U32 err, const char* pat,...)
599cee73
PM
1501{
1502 va_list args;
c5be433b
GS
1503 va_start(args, pat);
1504 vwarner(err, pat, &args);
1505 va_end(args);
1506}
1507
1508void
1509Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1510{
27da23d5 1511 dVAR;
5f2d9966 1512 if (PL_warnhook == PERL_WARNHOOK_FATAL || ckDEAD(err)) {
a3b680e6 1513 SV * const msv = vmess(pat, args);
d13b0d77 1514 STRLEN msglen;
7452cf6a 1515 const char * const message = SvPV_const(msv, msglen);
a3b680e6 1516 const I32 utf8 = SvUTF8(msv);
599cee73 1517
3aed30dc 1518 if (PL_diehook) {
63315e18 1519 assert(message);
46d9c920 1520 S_vdie_common(aTHX_ message, msglen, utf8, FALSE);
3aed30dc
HS
1521 }
1522 if (PL_in_eval) {
1523 PL_restartop = die_where(message, msglen);
ff882698 1524 SvFLAGS(ERRSV) |= utf8;
3aed30dc
HS
1525 JMPENV_JUMP(3);
1526 }
7ff03255 1527 write_to_stderr(message, msglen);
3aed30dc 1528 my_failure_exit();
599cee73
PM
1529 }
1530 else {
d13b0d77 1531 Perl_vwarn(aTHX_ pat, args);
599cee73
PM
1532 }
1533}
1534
f54ba1c2
DM
1535/* implements the ckWARN? macros */
1536
1537bool
1538Perl_ckwarn(pTHX_ U32 w)
1539{
97aff369 1540 dVAR;
f54ba1c2
DM
1541 return
1542 (
1543 isLEXWARN_on
1544 && PL_curcop->cop_warnings != pWARN_NONE
1545 && (
1546 PL_curcop->cop_warnings == pWARN_ALL
1547 || isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w))
1548 || (unpackWARN2(w) &&
1549 isWARN_on(PL_curcop->cop_warnings, unpackWARN2(w)))
1550 || (unpackWARN3(w) &&
1551 isWARN_on(PL_curcop->cop_warnings, unpackWARN3(w)))
1552 || (unpackWARN4(w) &&
1553 isWARN_on(PL_curcop->cop_warnings, unpackWARN4(w)))
1554 )
1555 )
1556 ||
1557 (
1558 isLEXWARN_off && PL_dowarn & G_WARN_ON
1559 )
1560 ;
1561}
1562
1563/* implements the ckWARN?_d macro */
1564
1565bool
1566Perl_ckwarn_d(pTHX_ U32 w)
1567{
97aff369 1568 dVAR;
f54ba1c2
DM
1569 return
1570 isLEXWARN_off
1571 || PL_curcop->cop_warnings == pWARN_ALL
1572 || (
1573 PL_curcop->cop_warnings != pWARN_NONE
1574 && (
1575 isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w))
1576 || (unpackWARN2(w) &&
1577 isWARN_on(PL_curcop->cop_warnings, unpackWARN2(w)))
1578 || (unpackWARN3(w) &&
1579 isWARN_on(PL_curcop->cop_warnings, unpackWARN3(w)))
1580 || (unpackWARN4(w) &&
1581 isWARN_on(PL_curcop->cop_warnings, unpackWARN4(w)))
1582 )
1583 )
1584 ;
1585}
1586
72dc9ed5
NC
1587/* Set buffer=NULL to get a new one. */
1588STRLEN *
8ee4cf24 1589Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits,
72dc9ed5
NC
1590 STRLEN size) {
1591 const MEM_SIZE len_wanted = sizeof(STRLEN) + size;
35da51f7 1592 PERL_UNUSED_CONTEXT;
72dc9ed5 1593
10edeb5d
JH
1594 buffer = (STRLEN*)
1595 (specialWARN(buffer) ?
1596 PerlMemShared_malloc(len_wanted) :
1597 PerlMemShared_realloc(buffer, len_wanted));
72dc9ed5
NC
1598 buffer[0] = size;
1599 Copy(bits, (buffer + 1), size, char);
1600 return buffer;
1601}
f54ba1c2 1602
e6587932
DM
1603/* since we've already done strlen() for both nam and val
1604 * we can use that info to make things faster than
1605 * sprintf(s, "%s=%s", nam, val)
1606 */
1607#define my_setenv_format(s, nam, nlen, val, vlen) \
1608 Copy(nam, s, nlen, char); \
1609 *(s+nlen) = '='; \
1610 Copy(val, s+(nlen+1), vlen, char); \
1611 *(s+(nlen+1+vlen)) = '\0'
1612
c5d12488
JH
1613#ifdef USE_ENVIRON_ARRAY
1614 /* VMS' my_setenv() is in vms.c */
1615#if !defined(WIN32) && !defined(NETWARE)
8d063cd8 1616void
e1ec3a88 1617Perl_my_setenv(pTHX_ const char *nam, const char *val)
8d063cd8 1618{
27da23d5 1619 dVAR;
4efc5df6
GS
1620#ifdef USE_ITHREADS
1621 /* only parent thread can modify process environment */
1622 if (PL_curinterp == aTHX)
1623#endif
1624 {
f2517201 1625#ifndef PERL_USE_SAFE_PUTENV
50acdf95 1626 if (!PL_use_safe_putenv) {
c5d12488
JH
1627 /* most putenv()s leak, so we manipulate environ directly */
1628 register I32 i=setenv_getix(nam); /* where does it go? */
1629 int nlen, vlen;
1630
1631 if (environ == PL_origenviron) { /* need we copy environment? */
1632 I32 j;
1633 I32 max;
1634 char **tmpenv;
1635
1636 max = i;
1637 while (environ[max])
1638 max++;
1639 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1640 for (j=0; j<max; j++) { /* copy environment */
1641 const int len = strlen(environ[j]);
1642 tmpenv[j] = (char*)safesysmalloc((len+1)*sizeof(char));
1643 Copy(environ[j], tmpenv[j], len+1, char);
1644 }
1645 tmpenv[max] = NULL;
1646 environ = tmpenv; /* tell exec where it is now */
1647 }
1648 if (!val) {
1649 safesysfree(environ[i]);
1650 while (environ[i]) {
1651 environ[i] = environ[i+1];
1652 i++;
a687059c 1653 }
c5d12488
JH
1654 return;
1655 }
1656 if (!environ[i]) { /* does not exist yet */
1657 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1658 environ[i+1] = NULL; /* make sure it's null terminated */
1659 }
1660 else
1661 safesysfree(environ[i]);
1662 nlen = strlen(nam);
1663 vlen = strlen(val);
1664
1665 environ[i] = (char*)safesysmalloc((nlen+vlen+2) * sizeof(char));
1666 /* all that work just for this */
1667 my_setenv_format(environ[i], nam, nlen, val, vlen);
50acdf95 1668 } else {
c5d12488 1669# endif
7ee146b1 1670# if defined(__CYGWIN__) || defined(EPOC) || defined(__SYMBIAN32__) || defined(__riscos__)
88f5bc07
AB
1671# if defined(HAS_UNSETENV)
1672 if (val == NULL) {
1673 (void)unsetenv(nam);
1674 } else {
1675 (void)setenv(nam, val, 1);
1676 }
1677# else /* ! HAS_UNSETENV */
1678 (void)setenv(nam, val, 1);
1679# endif /* HAS_UNSETENV */
47dafe4d 1680# else
88f5bc07
AB
1681# if defined(HAS_UNSETENV)
1682 if (val == NULL) {
1683 (void)unsetenv(nam);
1684 } else {
c4420975
AL
1685 const int nlen = strlen(nam);
1686 const int vlen = strlen(val);
1687 char * const new_env =
88f5bc07
AB
1688 (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
1689 my_setenv_format(new_env, nam, nlen, val, vlen);
1690 (void)putenv(new_env);
1691 }
1692# else /* ! HAS_UNSETENV */
1693 char *new_env;
c4420975
AL
1694 const int nlen = strlen(nam);
1695 int vlen;
88f5bc07
AB
1696 if (!val) {
1697 val = "";
1698 }
1699 vlen = strlen(val);
1700 new_env = (char*)safesysmalloc((nlen + vlen + 2) * sizeof(char));
1701 /* all that work just for this */
1702 my_setenv_format(new_env, nam, nlen, val, vlen);
1703 (void)putenv(new_env);
1704# endif /* HAS_UNSETENV */
47dafe4d 1705# endif /* __CYGWIN__ */
50acdf95
MS
1706#ifndef PERL_USE_SAFE_PUTENV
1707 }
1708#endif
4efc5df6 1709 }
8d063cd8
LW
1710}
1711
c5d12488 1712#else /* WIN32 || NETWARE */
68dc0745 1713
1714void
72229eff 1715Perl_my_setenv(pTHX_ const char *nam, const char *val)
68dc0745 1716{
27da23d5 1717 dVAR;
c5d12488
JH
1718 register char *envstr;
1719 const int nlen = strlen(nam);
1720 int vlen;
e6587932 1721
c5d12488
JH
1722 if (!val) {
1723 val = "";
ac5c734f 1724 }
c5d12488
JH
1725 vlen = strlen(val);
1726 Newx(envstr, nlen+vlen+2, char);
1727 my_setenv_format(envstr, nam, nlen, val, vlen);
1728 (void)PerlEnv_putenv(envstr);
1729 Safefree(envstr);
3e3baf6d
TB
1730}
1731
c5d12488 1732#endif /* WIN32 || NETWARE */
3e3baf6d 1733
c5d12488 1734#ifndef PERL_MICRO
3e3baf6d 1735I32
e1ec3a88 1736Perl_setenv_getix(pTHX_ const char *nam)
3e3baf6d 1737{
c5d12488 1738 register I32 i;
0d46e09a 1739 register const I32 len = strlen(nam);
96a5add6 1740 PERL_UNUSED_CONTEXT;
3e3baf6d
TB
1741
1742 for (i = 0; environ[i]; i++) {
1743 if (
1744#ifdef WIN32
1745 strnicmp(environ[i],nam,len) == 0
1746#else
1747 strnEQ(environ[i],nam,len)
1748#endif
1749 && environ[i][len] == '=')
1750 break; /* strnEQ must come first to avoid */
1751 } /* potential SEGV's */
1752 return i;
68dc0745 1753}
c5d12488 1754#endif /* !PERL_MICRO */
68dc0745 1755
c5d12488 1756#endif /* !VMS && !EPOC*/
378cc40b 1757
16d20bd9 1758#ifdef UNLINK_ALL_VERSIONS
79072805 1759I32
6e732051 1760Perl_unlnk(pTHX_ const char *f) /* unlink all versions of a file */
378cc40b 1761{
35da51f7 1762 I32 retries = 0;
378cc40b 1763
35da51f7
AL
1764 while (PerlLIO_unlink(f) >= 0)
1765 retries++;
1766 return retries ? 0 : -1;
378cc40b
LW
1767}
1768#endif
1769
7a3f2258 1770/* this is a drop-in replacement for bcopy() */
2253333f 1771#if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
378cc40b 1772char *
7a3f2258 1773Perl_my_bcopy(register const char *from,register char *to,register I32 len)
378cc40b 1774{
2d03de9c 1775 char * const retval = to;
378cc40b 1776
7c0587c8
LW
1777 if (from - to >= 0) {
1778 while (len--)
1779 *to++ = *from++;
1780 }
1781 else {
1782 to += len;
1783 from += len;
1784 while (len--)
faf8582f 1785 *(--to) = *(--from);
7c0587c8 1786 }
378cc40b
LW
1787 return retval;
1788}
ffed7fef 1789#endif
378cc40b 1790
7a3f2258 1791/* this is a drop-in replacement for memset() */
fc36a67e 1792#ifndef HAS_MEMSET
1793void *
7a3f2258 1794Perl_my_memset(register char *loc, register I32 ch, register I32 len)
fc36a67e 1795{
2d03de9c 1796 char * const retval = loc;
fc36a67e 1797
1798 while (len--)
1799 *loc++ = ch;
1800 return retval;
1801}
1802#endif
1803
7a3f2258 1804/* this is a drop-in replacement for bzero() */
7c0587c8 1805#if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
378cc40b 1806char *
7a3f2258 1807Perl_my_bzero(register char *loc, register I32 len)
378cc40b 1808{
2d03de9c 1809 char * const retval = loc;
378cc40b
LW
1810
1811 while (len--)
1812 *loc++ = 0;
1813 return retval;
1814}
1815#endif
7c0587c8 1816
7a3f2258 1817/* this is a drop-in replacement for memcmp() */
36477c24 1818#if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
79072805 1819I32
7a3f2258 1820Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
7c0587c8 1821{
e1ec3a88
AL
1822 register const U8 *a = (const U8 *)s1;
1823 register const U8 *b = (const U8 *)s2;
79072805 1824 register I32 tmp;
7c0587c8
LW
1825
1826 while (len--) {
27da23d5 1827 if ((tmp = *a++ - *b++))
7c0587c8
LW
1828 return tmp;
1829 }
1830 return 0;
1831}
36477c24 1832#endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
a687059c 1833
fe14fcc3 1834#ifndef HAS_VPRINTF
a687059c 1835
85e6fe83 1836#ifdef USE_CHAR_VSPRINTF
a687059c
LW
1837char *
1838#else
1839int
1840#endif
08105a92 1841vsprintf(char *dest, const char *pat, char *args)
a687059c
LW
1842{
1843 FILE fakebuf;
1844
1845 fakebuf._ptr = dest;
1846 fakebuf._cnt = 32767;
35c8bce7
LW
1847#ifndef _IOSTRG
1848#define _IOSTRG 0
1849#endif
a687059c
LW
1850 fakebuf._flag = _IOWRT|_IOSTRG;
1851 _doprnt(pat, args, &fakebuf); /* what a kludge */
1852 (void)putc('\0', &fakebuf);
85e6fe83 1853#ifdef USE_CHAR_VSPRINTF
a687059c
LW
1854 return(dest);
1855#else
1856 return 0; /* perl doesn't use return value */
1857#endif
1858}
1859
fe14fcc3 1860#endif /* HAS_VPRINTF */
a687059c
LW
1861
1862#ifdef MYSWAP
ffed7fef 1863#if BYTEORDER != 0x4321
a687059c 1864short
864dbfa3 1865Perl_my_swap(pTHX_ short s)
a687059c
LW
1866{
1867#if (BYTEORDER & 1) == 0
1868 short result;
1869
1870 result = ((s & 255) << 8) + ((s >> 8) & 255);
1871 return result;
1872#else
1873 return s;
1874#endif
1875}
1876
1877long
864dbfa3 1878Perl_my_htonl(pTHX_ long l)
a687059c
LW
1879{
1880 union {
1881 long result;
ffed7fef 1882 char c[sizeof(long)];
a687059c
LW
1883 } u;
1884
ffed7fef 1885#if BYTEORDER == 0x1234
a687059c
LW
1886 u.c[0] = (l >> 24) & 255;
1887 u.c[1] = (l >> 16) & 255;
1888 u.c[2] = (l >> 8) & 255;
1889 u.c[3] = l & 255;
1890 return u.result;
1891#else
ffed7fef 1892#if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
cea2e8a9 1893 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
a687059c 1894#else
79072805
LW
1895 register I32 o;
1896 register I32 s;
a687059c 1897
ffed7fef
LW
1898 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1899 u.c[o & 0xf] = (l >> s) & 255;
a687059c
LW
1900 }
1901 return u.result;
1902#endif
1903#endif
1904}
1905
1906long
864dbfa3 1907Perl_my_ntohl(pTHX_ long l)
a687059c
LW
1908{
1909 union {
1910 long l;
ffed7fef 1911 char c[sizeof(long)];
a687059c
LW
1912 } u;
1913
ffed7fef 1914#if BYTEORDER == 0x1234
a687059c
LW
1915 u.c[0] = (l >> 24) & 255;
1916 u.c[1] = (l >> 16) & 255;
1917 u.c[2] = (l >> 8) & 255;
1918 u.c[3] = l & 255;
1919 return u.l;
1920#else
ffed7fef 1921#if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
cea2e8a9 1922 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
a687059c 1923#else
79072805
LW
1924 register I32 o;
1925 register I32 s;
a687059c
LW
1926
1927 u.l = l;
1928 l = 0;
ffed7fef
LW
1929 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1930 l |= (u.c[o & 0xf] & 255) << s;
a687059c
LW
1931 }
1932 return l;
1933#endif
1934#endif
1935}
1936
ffed7fef 1937#endif /* BYTEORDER != 0x4321 */
988174c1
LW
1938#endif /* MYSWAP */
1939
1940/*
1941 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1942 * If these functions are defined,
1943 * the BYTEORDER is neither 0x1234 nor 0x4321.
1944 * However, this is not assumed.
1945 * -DWS
1946 */
1947
1109a392 1948#define HTOLE(name,type) \
988174c1 1949 type \
ba106d47 1950 name (register type n) \
988174c1
LW
1951 { \
1952 union { \
1953 type value; \
1954 char c[sizeof(type)]; \
1955 } u; \
bb7a0f54
MHM
1956 register U32 i; \
1957 register U32 s = 0; \
1109a392 1958 for (i = 0; i < sizeof(u.c); i++, s += 8) { \
988174c1
LW
1959 u.c[i] = (n >> s) & 0xFF; \
1960 } \
1961 return u.value; \
1962 }
1963
1109a392 1964#define LETOH(name,type) \
988174c1 1965 type \
ba106d47 1966 name (register type n) \
988174c1
LW
1967 { \
1968 union { \
1969 type value; \
1970 char c[sizeof(type)]; \
1971 } u; \
bb7a0f54
MHM
1972 register U32 i; \
1973 register U32 s = 0; \
988174c1
LW
1974 u.value = n; \
1975 n = 0; \
1109a392
MHM
1976 for (i = 0; i < sizeof(u.c); i++, s += 8) { \
1977 n |= ((type)(u.c[i] & 0xFF)) << s; \
988174c1
LW
1978 } \
1979 return n; \
1980 }
1981
1109a392
MHM
1982/*
1983 * Big-endian byte order functions.
1984 */
1985
1986#define HTOBE(name,type) \
1987 type \
1988 name (register type n) \
1989 { \
1990 union { \
1991 type value; \
1992 char c[sizeof(type)]; \
1993 } u; \
bb7a0f54
MHM
1994 register U32 i; \
1995 register U32 s = 8*(sizeof(u.c)-1); \
1109a392
MHM
1996 for (i = 0; i < sizeof(u.c); i++, s -= 8) { \
1997 u.c[i] = (n >> s) & 0xFF; \
1998 } \
1999 return u.value; \
2000 }
2001
2002#define BETOH(name,type) \
2003 type \
2004 name (register type n) \
2005 { \
2006 union { \
2007 type value; \
2008 char c[sizeof(type)]; \
2009 } u; \
bb7a0f54
MHM
2010 register U32 i; \
2011 register U32 s = 8*(sizeof(u.c)-1); \
1109a392
MHM
2012 u.value = n; \
2013 n = 0; \
2014 for (i = 0; i < sizeof(u.c); i++, s -= 8) { \
2015 n |= ((type)(u.c[i] & 0xFF)) << s; \
2016 } \
2017 return n; \
2018 }
2019
2020/*
2021 * If we just can't do it...
2022 */
2023
2024#define NOT_AVAIL(name,type) \
2025 type \
2026 name (register type n) \
2027 { \
2028 Perl_croak_nocontext(#name "() not available"); \
2029 return n; /* not reached */ \
2030 }
2031
2032
988174c1 2033#if defined(HAS_HTOVS) && !defined(htovs)
1109a392 2034HTOLE(htovs,short)
988174c1
LW
2035#endif
2036#if defined(HAS_HTOVL) && !defined(htovl)
1109a392 2037HTOLE(htovl,long)
988174c1
LW
2038#endif
2039#if defined(HAS_VTOHS) && !defined(vtohs)
1109a392 2040LETOH(vtohs,short)
988174c1
LW
2041#endif
2042#if defined(HAS_VTOHL) && !defined(vtohl)
1109a392
MHM
2043LETOH(vtohl,long)
2044#endif
2045
2046#ifdef PERL_NEED_MY_HTOLE16
2047# if U16SIZE == 2
2048HTOLE(Perl_my_htole16,U16)
2049# else
2050NOT_AVAIL(Perl_my_htole16,U16)
2051# endif
2052#endif
2053#ifdef PERL_NEED_MY_LETOH16
2054# if U16SIZE == 2
2055LETOH(Perl_my_letoh16,U16)
2056# else
2057NOT_AVAIL(Perl_my_letoh16,U16)
2058# endif
2059#endif
2060#ifdef PERL_NEED_MY_HTOBE16
2061# if U16SIZE == 2
2062HTOBE(Perl_my_htobe16,U16)
2063# else
2064NOT_AVAIL(Perl_my_htobe16,U16)
2065# endif
2066#endif
2067#ifdef PERL_NEED_MY_BETOH16
2068# if U16SIZE == 2
2069BETOH(Perl_my_betoh16,U16)
2070# else
2071NOT_AVAIL(Perl_my_betoh16,U16)
2072# endif
2073#endif
2074
2075#ifdef PERL_NEED_MY_HTOLE32
2076# if U32SIZE == 4
2077HTOLE(Perl_my_htole32,U32)
2078# else
2079NOT_AVAIL(Perl_my_htole32,U32)
2080# endif
2081#endif
2082#ifdef PERL_NEED_MY_LETOH32
2083# if U32SIZE == 4
2084LETOH(Perl_my_letoh32,U32)
2085# else
2086NOT_AVAIL(Perl_my_letoh32,U32)
2087# endif
2088#endif
2089#ifdef PERL_NEED_MY_HTOBE32
2090# if U32SIZE == 4
2091HTOBE(Perl_my_htobe32,U32)
2092# else
2093NOT_AVAIL(Perl_my_htobe32,U32)
2094# endif
2095#endif
2096#ifdef PERL_NEED_MY_BETOH32
2097# if U32SIZE == 4
2098BETOH(Perl_my_betoh32,U32)
2099# else
2100NOT_AVAIL(Perl_my_betoh32,U32)
2101# endif
2102#endif
2103
2104#ifdef PERL_NEED_MY_HTOLE64
2105# if U64SIZE == 8
2106HTOLE(Perl_my_htole64,U64)
2107# else
2108NOT_AVAIL(Perl_my_htole64,U64)
2109# endif
2110#endif
2111#ifdef PERL_NEED_MY_LETOH64
2112# if U64SIZE == 8
2113LETOH(Perl_my_letoh64,U64)
2114# else
2115NOT_AVAIL(Perl_my_letoh64,U64)
2116# endif
2117#endif
2118#ifdef PERL_NEED_MY_HTOBE64
2119# if U64SIZE == 8
2120HTOBE(Perl_my_htobe64,U64)
2121# else
2122NOT_AVAIL(Perl_my_htobe64,U64)
2123# endif
2124#endif
2125#ifdef PERL_NEED_MY_BETOH64
2126# if U64SIZE == 8
2127BETOH(Perl_my_betoh64,U64)
2128# else
2129NOT_AVAIL(Perl_my_betoh64,U64)
2130# endif
988174c1 2131#endif
a687059c 2132
1109a392
MHM
2133#ifdef PERL_NEED_MY_HTOLES
2134HTOLE(Perl_my_htoles,short)
2135#endif
2136#ifdef PERL_NEED_MY_LETOHS
2137LETOH(Perl_my_letohs,short)
2138#endif
2139#ifdef PERL_NEED_MY_HTOBES
2140HTOBE(Perl_my_htobes,short)
2141#endif
2142#ifdef PERL_NEED_MY_BETOHS
2143BETOH(Perl_my_betohs,short)
2144#endif
2145
2146#ifdef PERL_NEED_MY_HTOLEI
2147HTOLE(Perl_my_htolei,int)
2148#endif
2149#ifdef PERL_NEED_MY_LETOHI
2150LETOH(Perl_my_letohi,int)
2151#endif
2152#ifdef PERL_NEED_MY_HTOBEI
2153HTOBE(Perl_my_htobei,int)
2154#endif
2155#ifdef PERL_NEED_MY_BETOHI
2156BETOH(Perl_my_betohi,int)
2157#endif
2158
2159#ifdef PERL_NEED_MY_HTOLEL
2160HTOLE(Perl_my_htolel,long)
2161#endif
2162#ifdef PERL_NEED_MY_LETOHL
2163LETOH(Perl_my_letohl,long)
2164#endif
2165#ifdef PERL_NEED_MY_HTOBEL
2166HTOBE(Perl_my_htobel,long)
2167#endif
2168#ifdef PERL_NEED_MY_BETOHL
2169BETOH(Perl_my_betohl,long)
2170#endif
2171
2172void
2173Perl_my_swabn(void *ptr, int n)
2174{
2175 register char *s = (char *)ptr;
2176 register char *e = s + (n-1);
2177 register char tc;
2178
2179 for (n /= 2; n > 0; s++, e--, n--) {
2180 tc = *s;
2181 *s = *e;
2182 *e = tc;
2183 }
2184}
2185
4a7d1889
NIS
2186PerlIO *
2187Perl_my_popen_list(pTHX_ char *mode, int n, SV **args)
2188{
2986a63f 2189#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(OS2) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL) && !defined(NETWARE)
97aff369 2190 dVAR;
1f852d0d
NIS
2191 int p[2];
2192 register I32 This, that;
2193 register Pid_t pid;
2194 SV *sv;
2195 I32 did_pipes = 0;
2196 int pp[2];
2197
2198 PERL_FLUSHALL_FOR_CHILD;
2199 This = (*mode == 'w');
2200 that = !This;
2201 if (PL_tainting) {
2202 taint_env();
2203 taint_proper("Insecure %s%s", "EXEC");
2204 }
2205 if (PerlProc_pipe(p) < 0)
4608196e 2206 return NULL;
1f852d0d
NIS
2207 /* Try for another pipe pair for error return */
2208 if (PerlProc_pipe(pp) >= 0)
2209 did_pipes = 1;
52e18b1f 2210 while ((pid = PerlProc_fork()) < 0) {
1f852d0d
NIS
2211 if (errno != EAGAIN) {
2212 PerlLIO_close(p[This]);
4e6dfe71 2213 PerlLIO_close(p[that]);
1f852d0d
NIS
2214 if (did_pipes) {
2215 PerlLIO_close(pp[0]);
2216 PerlLIO_close(pp[1]);
2217 }
4608196e 2218 return NULL;
1f852d0d
NIS
2219 }
2220 sleep(5);
2221 }
2222 if (pid == 0) {
2223 /* Child */
1f852d0d
NIS
2224#undef THIS
2225#undef THAT
2226#define THIS that
2227#define THAT This
1f852d0d
NIS
2228 /* Close parent's end of error status pipe (if any) */
2229 if (did_pipes) {
2230 PerlLIO_close(pp[0]);
2231#if defined(HAS_FCNTL) && defined(F_SETFD)
2232 /* Close error pipe automatically if exec works */
2233 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2234#endif
2235 }
2236 /* Now dup our end of _the_ pipe to right position */
2237 if (p[THIS] != (*mode == 'r')) {
2238 PerlLIO_dup2(p[THIS], *mode == 'r');
2239 PerlLIO_close(p[THIS]);
4e6dfe71
GS
2240 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2241 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
1f852d0d 2242 }
4e6dfe71
GS
2243 else
2244 PerlLIO_close(p[THAT]); /* close parent's end of _the_ pipe */
1f852d0d
NIS
2245#if !defined(HAS_FCNTL) || !defined(F_SETFD)
2246 /* No automatic close - do it by hand */
b7953727
JH
2247# ifndef NOFILE
2248# define NOFILE 20
2249# endif
a080fe3d
NIS
2250 {
2251 int fd;
2252
2253 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
3aed30dc 2254 if (fd != pp[1])
a080fe3d
NIS
2255 PerlLIO_close(fd);
2256 }
1f852d0d
NIS
2257 }
2258#endif
a0714e2c 2259 do_aexec5(NULL, args-1, args-1+n, pp[1], did_pipes);
1f852d0d
NIS
2260 PerlProc__exit(1);
2261#undef THIS
2262#undef THAT
2263 }
2264 /* Parent */
52e18b1f 2265 do_execfree(); /* free any memory malloced by child on fork */
1f852d0d
NIS
2266 if (did_pipes)
2267 PerlLIO_close(pp[1]);
2268 /* Keep the lower of the two fd numbers */
2269 if (p[that] < p[This]) {
2270 PerlLIO_dup2(p[This], p[that]);
2271 PerlLIO_close(p[This]);
2272 p[This] = p[that];
2273 }
4e6dfe71
GS
2274 else
2275 PerlLIO_close(p[that]); /* close child's end of pipe */
2276
1f852d0d
NIS
2277 LOCK_FDPID_MUTEX;
2278 sv = *av_fetch(PL_fdpid,p[This],TRUE);
2279 UNLOCK_FDPID_MUTEX;
862a34c6 2280 SvUPGRADE(sv,SVt_IV);
45977657 2281 SvIV_set(sv, pid);
1f852d0d
NIS
2282 PL_forkprocess = pid;
2283 /* If we managed to get status pipe check for exec fail */
2284 if (did_pipes && pid > 0) {
2285 int errkid;
bb7a0f54
MHM
2286 unsigned n = 0;
2287 SSize_t n1;
1f852d0d
NIS
2288
2289 while (n < sizeof(int)) {
2290 n1 = PerlLIO_read(pp[0],
2291 (void*)(((char*)&errkid)+n),
2292 (sizeof(int)) - n);
2293 if (n1 <= 0)
2294 break;
2295 n += n1;
2296 }
2297 PerlLIO_close(pp[0]);
2298 did_pipes = 0;
2299 if (n) { /* Error */
2300 int pid2, status;
8c51524e 2301 PerlLIO_close(p[This]);
1f852d0d
NIS
2302 if (n != sizeof(int))
2303 Perl_croak(aTHX_ "panic: kid popen errno read");
2304 do {
2305 pid2 = wait4pid(pid, &status, 0);
2306 } while (pid2 == -1 && errno == EINTR);
2307 errno = errkid; /* Propagate errno from kid */
4608196e 2308 return NULL;
1f852d0d
NIS
2309 }
2310 }
2311 if (did_pipes)
2312 PerlLIO_close(pp[0]);
2313 return PerlIO_fdopen(p[This], mode);
2314#else
9d419b5f
IZ
2315# ifdef OS2 /* Same, without fork()ing and all extra overhead... */
2316 return my_syspopen4(aTHX_ Nullch, mode, n, args);
2317# else
4a7d1889
NIS
2318 Perl_croak(aTHX_ "List form of piped open not implemented");
2319 return (PerlIO *) NULL;
9d419b5f 2320# endif
1f852d0d 2321#endif
4a7d1889
NIS
2322}
2323
5f05dabc 2324 /* VMS' my_popen() is in VMS.c, same with OS/2. */
cd39f2b6 2325#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
760ac839 2326PerlIO *
3dd43144 2327Perl_my_popen(pTHX_ const char *cmd, const char *mode)
a687059c 2328{
97aff369 2329 dVAR;
a687059c 2330 int p[2];
8ac85365 2331 register I32 This, that;
d8a83dd3 2332 register Pid_t pid;
79072805 2333 SV *sv;
bfce84ec 2334 const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
e446cec8
IZ
2335 I32 did_pipes = 0;
2336 int pp[2];
a687059c 2337
45bc9206 2338 PERL_FLUSHALL_FOR_CHILD;
ddcf38b7
IZ
2339#ifdef OS2
2340 if (doexec) {
23da6c43 2341 return my_syspopen(aTHX_ cmd,mode);
ddcf38b7 2342 }
a1d180c4 2343#endif
8ac85365
NIS
2344 This = (*mode == 'w');
2345 that = !This;
3280af22 2346 if (doexec && PL_tainting) {
bbce6d69 2347 taint_env();
2348 taint_proper("Insecure %s%s", "EXEC");
d48672a2 2349 }
c2267164 2350 if (PerlProc_pipe(p) < 0)
4608196e 2351 return NULL;
e446cec8
IZ
2352 if (doexec && PerlProc_pipe(pp) >= 0)
2353 did_pipes = 1;
52e18b1f 2354 while ((pid = PerlProc_fork()) < 0) {
a687059c 2355 if (errno != EAGAIN) {
6ad3d225 2356 PerlLIO_close(p[This]);
b5ac89c3 2357 PerlLIO_close(p[that]);
e446cec8
IZ
2358 if (did_pipes) {
2359 PerlLIO_close(pp[0]);
2360 PerlLIO_close(pp[1]);
2361 }
a687059c 2362 if (!doexec)
cea2e8a9 2363 Perl_croak(aTHX_ "Can't fork");
4608196e 2364 return NULL;
a687059c
LW
2365 }
2366 sleep(5);
2367 }
2368 if (pid == 0) {
79072805
LW
2369 GV* tmpgv;
2370
30ac6d9b
GS
2371#undef THIS
2372#undef THAT
a687059c 2373#define THIS that
8ac85365 2374#define THAT This
e446cec8
IZ
2375 if (did_pipes) {
2376 PerlLIO_close(pp[0]);
2377#if defined(HAS_FCNTL) && defined(F_SETFD)
2378 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2379#endif
2380 }
a687059c 2381 if (p[THIS] != (*mode == 'r')) {
6ad3d225
GS
2382 PerlLIO_dup2(p[THIS], *mode == 'r');
2383 PerlLIO_close(p[THIS]);
b5ac89c3
NIS
2384 if (p[THAT] != (*mode == 'r')) /* if dup2() didn't close it */
2385 PerlLIO_close(p[THAT]);
a687059c 2386 }
b5ac89c3
NIS
2387 else
2388 PerlLIO_close(p[THAT]);
4435c477 2389#ifndef OS2
a687059c 2390 if (doexec) {
a0d0e21e 2391#if !defined(HAS_FCNTL) || !defined(F_SETFD)
ae986130
LW
2392#ifndef NOFILE
2393#define NOFILE 20
2394#endif
a080fe3d 2395 {
3aed30dc 2396 int fd;
a080fe3d
NIS
2397
2398 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2399 if (fd != pp[1])
3aed30dc 2400 PerlLIO_close(fd);
a080fe3d 2401 }
ae986130 2402#endif
a080fe3d
NIS
2403 /* may or may not use the shell */
2404 do_exec3(cmd, pp[1], did_pipes);
6ad3d225 2405 PerlProc__exit(1);
a687059c 2406 }
4435c477 2407#endif /* defined OS2 */
713cef20
IZ
2408
2409#ifdef PERLIO_USING_CRLF
2410 /* Since we circumvent IO layers when we manipulate low-level
2411 filedescriptors directly, need to manually switch to the
2412 default, binary, low-level mode; see PerlIOBuf_open(). */
2413 PerlLIO_setmode((*mode == 'r'), O_BINARY);
2414#endif
2415
fafc274c 2416 if ((tmpgv = gv_fetchpvs("$", GV_ADD|GV_NOTQUAL, SVt_PV))) {
4d76a344 2417 SvREADONLY_off(GvSV(tmpgv));
7766f137 2418 sv_setiv(GvSV(tmpgv), PerlProc_getpid());
4d76a344
RGS
2419 SvREADONLY_on(GvSV(tmpgv));
2420 }
2421#ifdef THREADS_HAVE_PIDS
2422 PL_ppid = (IV)getppid();
2423#endif
3280af22 2424 PL_forkprocess = 0;
ca0c25f6 2425#ifdef PERL_USES_PL_PIDSTATUS
3280af22 2426 hv_clear(PL_pidstatus); /* we have no children */
ca0c25f6 2427#endif
4608196e 2428 return NULL;
a687059c
LW
2429#undef THIS
2430#undef THAT
2431 }
b5ac89c3 2432 do_execfree(); /* free any memory malloced by child on vfork */
e446cec8
IZ
2433 if (did_pipes)
2434 PerlLIO_close(pp[1]);
8ac85365 2435 if (p[that] < p[This]) {
6ad3d225
GS
2436 PerlLIO_dup2(p[This], p[that]);
2437 PerlLIO_close(p[This]);
8ac85365 2438 p[This] = p[that];
62b28dd9 2439 }
b5ac89c3
NIS
2440 else
2441 PerlLIO_close(p[that]);
2442
4755096e 2443 LOCK_FDPID_MUTEX;
3280af22 2444 sv = *av_fetch(PL_fdpid,p[This],TRUE);
4755096e 2445 UNLOCK_FDPID_MUTEX;
862a34c6 2446 SvUPGRADE(sv,SVt_IV);
45977657 2447 SvIV_set(sv, pid);
3280af22 2448 PL_forkprocess = pid;
e446cec8
IZ
2449 if (did_pipes && pid > 0) {
2450 int errkid;
bb7a0f54
MHM
2451 unsigned n = 0;
2452 SSize_t n1;
e446cec8
IZ
2453
2454 while (n < sizeof(int)) {
2455 n1 = PerlLIO_read(pp[0],
2456 (void*)(((char*)&errkid)+n),
2457 (sizeof(int)) - n);
2458 if (n1 <= 0)
2459 break;
2460 n += n1;
2461 }
2f96c702
IZ
2462 PerlLIO_close(pp[0]);
2463 did_pipes = 0;
e446cec8 2464 if (n) { /* Error */
faa466a7 2465 int pid2, status;
8c51524e 2466 PerlLIO_close(p[This]);
e446cec8 2467 if (n != sizeof(int))
cea2e8a9 2468 Perl_croak(aTHX_ "panic: kid popen errno read");
faa466a7
RG
2469 do {
2470 pid2 = wait4pid(pid, &status, 0);
2471 } while (pid2 == -1 && errno == EINTR);
e446cec8 2472 errno = errkid; /* Propagate errno from kid */
4608196e 2473 return NULL;
e446cec8
IZ
2474 }
2475 }
2476 if (did_pipes)
2477 PerlLIO_close(pp[0]);
8ac85365 2478 return PerlIO_fdopen(p[This], mode);
a687059c 2479}
7c0587c8 2480#else
85ca448a 2481#if defined(atarist) || defined(EPOC)
7c0587c8 2482FILE *popen();
760ac839 2483PerlIO *
7dc3a6bf 2484Perl_my_popen((pTHX_ const char *cmd, const char *mode)
7c0587c8 2485{
45bc9206 2486 PERL_FLUSHALL_FOR_CHILD;
a1d180c4
NIS
2487 /* Call system's popen() to get a FILE *, then import it.
2488 used 0 for 2nd parameter to PerlIO_importFILE;
2489 apparently not used
2490 */
2491 return PerlIO_importFILE(popen(cmd, mode), 0);
7c0587c8 2492}
2b96b0a5
JH
2493#else
2494#if defined(DJGPP)
2495FILE *djgpp_popen();
2496PerlIO *
7dc3a6bf 2497Perl_my_popen((pTHX_ const char *cmd, const char *mode)
2b96b0a5
JH
2498{
2499 PERL_FLUSHALL_FOR_CHILD;
2500 /* Call system's popen() to get a FILE *, then import it.
2501 used 0 for 2nd parameter to PerlIO_importFILE;
2502 apparently not used
2503 */
2504 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2505}
2506#endif
7c0587c8
LW
2507#endif
2508
2509#endif /* !DOSISH */
a687059c 2510
52e18b1f
GS
2511/* this is called in parent before the fork() */
2512void
2513Perl_atfork_lock(void)
2514{
27da23d5 2515 dVAR;
3db8f154 2516#if defined(USE_ITHREADS)
52e18b1f
GS
2517 /* locks must be held in locking order (if any) */
2518# ifdef MYMALLOC
2519 MUTEX_LOCK(&PL_malloc_mutex);
2520# endif
2521 OP_REFCNT_LOCK;
2522#endif
2523}
2524
2525/* this is called in both parent and child after the fork() */
2526void
2527Perl_atfork_unlock(void)
2528{
27da23d5 2529 dVAR;
3db8f154 2530#if defined(USE_ITHREADS)
52e18b1f
GS
2531 /* locks must be released in same order as in atfork_lock() */
2532# ifdef MYMALLOC
2533 MUTEX_UNLOCK(&PL_malloc_mutex);
2534# endif
2535 OP_REFCNT_UNLOCK;
2536#endif
2537}
2538
2539Pid_t
2540Perl_my_fork(void)
2541{
2542#if defined(HAS_FORK)
2543 Pid_t pid;
3db8f154 2544#if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
52e18b1f
GS
2545 atfork_lock();
2546 pid = fork();
2547 atfork_unlock();
2548#else
2549 /* atfork_lock() and atfork_unlock() are installed as pthread_atfork()
2550 * handlers elsewhere in the code */
2551 pid = fork();
2552#endif
2553 return pid;
2554#else
2555 /* this "canna happen" since nothing should be calling here if !HAS_FORK */
2556 Perl_croak_nocontext("fork() not available");
b961a566 2557 return 0;
52e18b1f
GS
2558#endif /* HAS_FORK */
2559}
2560
748a9306 2561#ifdef DUMP_FDS
35ff7856 2562void
864dbfa3 2563Perl_dump_fds(pTHX_ char *s)
ae986130
LW
2564{
2565 int fd;
c623ac67 2566 Stat_t tmpstatbuf;
ae986130 2567
bf49b057 2568 PerlIO_printf(Perl_debug_log,"%s", s);
ae986130 2569 for (fd = 0; fd < 32; fd++) {
6ad3d225 2570 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
bf49b057 2571 PerlIO_printf(Perl_debug_log," %d",fd);
ae986130 2572 }
bf49b057 2573 PerlIO_printf(Perl_debug_log,"\n");
27da23d5 2574 return;
ae986130 2575}
35ff7856 2576#endif /* DUMP_FDS */
ae986130 2577
fe14fcc3 2578#ifndef HAS_DUP2
fec02dd3 2579int
ba106d47 2580dup2(int oldfd, int newfd)
a687059c 2581{
a0d0e21e 2582#if defined(HAS_FCNTL) && defined(F_DUPFD)
fec02dd3
AD
2583 if (oldfd == newfd)
2584 return oldfd;
6ad3d225 2585 PerlLIO_close(newfd);
fec02dd3 2586 return fcntl(oldfd, F_DUPFD, newfd);
62b28dd9 2587#else
fc36a67e 2588#define DUP2_MAX_FDS 256
2589 int fdtmp[DUP2_MAX_FDS];
79072805 2590 I32 fdx = 0;
ae986130
LW
2591 int fd;
2592
fe14fcc3 2593 if (oldfd == newfd)
fec02dd3 2594 return oldfd;
6ad3d225 2595 PerlLIO_close(newfd);
fc36a67e 2596 /* good enough for low fd's... */
6ad3d225 2597 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
fc36a67e 2598 if (fdx >= DUP2_MAX_FDS) {
6ad3d225 2599 PerlLIO_close(fd);
fc36a67e 2600 fd = -1;
2601 break;
2602 }
ae986130 2603 fdtmp[fdx++] = fd;
fc36a67e 2604 }
ae986130 2605 while (fdx > 0)
6ad3d225 2606 PerlLIO_close(fdtmp[--fdx]);
fec02dd3 2607 return fd;
62b28dd9 2608#endif
a687059c
LW
2609}
2610#endif
2611
64ca3a65 2612#ifndef PERL_MICRO
ff68c719 2613#ifdef HAS_SIGACTION
2614
abea2c45
HS
2615#ifdef MACOS_TRADITIONAL
2616/* We don't want restart behavior on MacOS */
2617#undef SA_RESTART
2618#endif
2619
ff68c719 2620Sighandler_t
864dbfa3 2621Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
ff68c719 2622{
27da23d5 2623 dVAR;
ff68c719 2624 struct sigaction act, oact;
2625
a10b1e10
JH
2626#ifdef USE_ITHREADS
2627 /* only "parent" interpreter can diddle signals */
2628 if (PL_curinterp != aTHX)
8aad04aa 2629 return (Sighandler_t) SIG_ERR;
a10b1e10
JH
2630#endif
2631
8aad04aa 2632 act.sa_handler = (void(*)(int))handler;
ff68c719 2633 sigemptyset(&act.sa_mask);
2634 act.sa_flags = 0;
2635#ifdef SA_RESTART
4ffa73a3
JH
2636 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2637 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
0a8e0eff 2638#endif
358837b8 2639#if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
8aad04aa 2640 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
85264bed
CS
2641 act.sa_flags |= SA_NOCLDWAIT;
2642#endif
ff68c719 2643 if (sigaction(signo, &act, &oact) == -1)
8aad04aa 2644 return (Sighandler_t) SIG_ERR;
ff68c719 2645 else
8aad04aa 2646 return (Sighandler_t) oact.sa_handler;
ff68c719 2647}
2648
2649Sighandler_t
864dbfa3 2650Perl_rsignal_state(pTHX_ int signo)
ff68c719 2651{
2652 struct sigaction oact;
96a5add6 2653 PERL_UNUSED_CONTEXT;
ff68c719 2654
2655 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
8aad04aa 2656 return (Sighandler_t) SIG_ERR;
ff68c719 2657 else
8aad04aa 2658 return (Sighandler_t) oact.sa_handler;
ff68c719 2659}
2660
2661int
864dbfa3 2662Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2663{
27da23d5 2664 dVAR;
ff68c719 2665 struct sigaction act;
2666
a10b1e10
JH
2667#ifdef USE_ITHREADS
2668 /* only "parent" interpreter can diddle signals */
2669 if (PL_curinterp != aTHX)
2670 return -1;
2671#endif
2672
8aad04aa 2673 act.sa_handler = (void(*)(int))handler;
ff68c719 2674 sigemptyset(&act.sa_mask);
2675 act.sa_flags = 0;
2676#ifdef SA_RESTART
4ffa73a3
JH
2677 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
2678 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
0a8e0eff 2679#endif
36b5d377 2680#if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
8aad04aa 2681 if (signo == SIGCHLD && handler == (Sighandler_t) SIG_IGN)
85264bed
CS
2682 act.sa_flags |= SA_NOCLDWAIT;
2683#endif
ff68c719 2684 return sigaction(signo, &act, save);
2685}
2686
2687int
864dbfa3 2688Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
ff68c719 2689{
27da23d5 2690 dVAR;
a10b1e10
JH
2691#ifdef USE_ITHREADS
2692 /* only "parent" interpreter can diddle signals */
2693 if (PL_curinterp != aTHX)
2694 return -1;
2695#endif
2696
ff68c719 2697 return sigaction(signo, save, (struct sigaction *)NULL);
2698}
2699
2700#else /* !HAS_SIGACTION */
2701
2702Sighandler_t
864dbfa3 2703Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
ff68c719 2704{
39f1703b 2705#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2706 /* only "parent" interpreter can diddle signals */
2707 if (PL_curinterp != aTHX)
8aad04aa 2708 return (Sighandler_t) SIG_ERR;
a10b1e10
JH
2709#endif
2710
6ad3d225 2711 return PerlProc_signal(signo, handler);
ff68c719 2712}
2713
fabdb6c0 2714static Signal_t
4e35701f 2715sig_trap(int signo)
ff68c719 2716{
27da23d5
JH
2717 dVAR;
2718 PL_sig_trapped++;
ff68c719 2719}
2720
2721Sighandler_t
864dbfa3 2722Perl_rsignal_state(pTHX_ int signo)
ff68c719 2723{
27da23d5 2724 dVAR;
ff68c719 2725 Sighandler_t oldsig;
2726
39f1703b 2727#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2728 /* only "parent" interpreter can diddle signals */
2729 if (PL_curinterp != aTHX)
8aad04aa 2730 return (Sighandler_t) SIG_ERR;
a10b1e10
JH
2731#endif
2732
27da23d5 2733 PL_sig_trapped = 0;
6ad3d225
GS
2734 oldsig = PerlProc_signal(signo, sig_trap);
2735 PerlProc_signal(signo, oldsig);
27da23d5 2736 if (PL_sig_trapped)
3aed30dc 2737 PerlProc_kill(PerlProc_getpid(), signo);
ff68c719 2738 return oldsig;
2739}
2740
2741int
864dbfa3 2742Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2743{
39f1703b 2744#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2745 /* only "parent" interpreter can diddle signals */
2746 if (PL_curinterp != aTHX)
2747 return -1;
2748#endif
6ad3d225 2749 *save = PerlProc_signal(signo, handler);
8aad04aa 2750 return (*save == (Sighandler_t) SIG_ERR) ? -1 : 0;
ff68c719 2751}
2752
2753int
864dbfa3 2754Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
ff68c719 2755{
39f1703b 2756#if defined(USE_ITHREADS) && !defined(WIN32)
a10b1e10
JH
2757 /* only "parent" interpreter can diddle signals */
2758 if (PL_curinterp != aTHX)
2759 return -1;
2760#endif
8aad04aa 2761 return (PerlProc_signal(signo, *save) == (Sighandler_t) SIG_ERR) ? -1 : 0;
ff68c719 2762}
2763
2764#endif /* !HAS_SIGACTION */
64ca3a65 2765#endif /* !PERL_MICRO */
ff68c719 2766
5f05dabc 2767 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
cd39f2b6 2768#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
79072805 2769I32
864dbfa3 2770Perl_my_pclose(pTHX_ PerlIO *ptr)
a687059c 2771{
97aff369 2772 dVAR;
ff68c719 2773 Sigsave_t hstat, istat, qstat;
a687059c 2774 int status;
a0d0e21e 2775 SV **svp;
d8a83dd3
JH
2776 Pid_t pid;
2777 Pid_t pid2;
03136e13 2778 bool close_failed;
b7953727 2779 int saved_errno = 0;
22fae026
TM
2780#ifdef WIN32
2781 int saved_win32_errno;
2782#endif
a687059c 2783
4755096e 2784 LOCK_FDPID_MUTEX;
3280af22 2785 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
4755096e 2786 UNLOCK_FDPID_MUTEX;
25d92023 2787 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
a0d0e21e 2788 SvREFCNT_dec(*svp);
3280af22 2789 *svp = &PL_sv_undef;
ddcf38b7
IZ
2790#ifdef OS2
2791 if (pid == -1) { /* Opened by popen. */
2792 return my_syspclose(ptr);
2793 }
a1d180c4 2794#endif
03136e13
CS
2795 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2796 saved_errno = errno;
22fae026
TM
2797#ifdef WIN32
2798 saved_win32_errno = GetLastError();
2799#endif
03136e13 2800 }
7c0587c8 2801#ifdef UTS
6ad3d225 2802 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
7c0587c8 2803#endif
64ca3a65 2804#ifndef PERL_MICRO
8aad04aa
JH
2805 rsignal_save(SIGHUP, (Sighandler_t) SIG_IGN, &hstat);
2806 rsignal_save(SIGINT, (Sighandler_t) SIG_IGN, &istat);
2807 rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qstat);
64ca3a65 2808#endif
748a9306 2809 do {
1d3434b8
GS
2810 pid2 = wait4pid(pid, &status, 0);
2811 } while (pid2 == -1 && errno == EINTR);
64ca3a65 2812#ifndef PERL_MICRO
ff68c719 2813 rsignal_restore(SIGHUP, &hstat);
2814 rsignal_restore(SIGINT, &istat);
2815 rsignal_restore(SIGQUIT, &qstat);
64ca3a65 2816#endif
03136e13 2817 if (close_failed) {
ce6e1103 2818 SETERRNO(saved_errno, 0);
03136e13
CS
2819 return -1;
2820 }
1d3434b8 2821 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
20188a90 2822}
4633a7c4
LW
2823#endif /* !DOSISH */
2824
2986a63f 2825#if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(MACOS_TRADITIONAL)
79072805 2826I32
d8a83dd3 2827Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
20188a90 2828{
97aff369 2829 dVAR;
27da23d5 2830 I32 result = 0;
b7953727
JH
2831 if (!pid)
2832 return -1;
ca0c25f6 2833#ifdef PERL_USES_PL_PIDSTATUS
b7953727 2834 {
3aed30dc 2835 if (pid > 0) {
12072db5
NC
2836 /* The keys in PL_pidstatus are now the raw 4 (or 8) bytes of the
2837 pid, rather than a string form. */
c4420975 2838 SV * const * const svp = hv_fetch(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),FALSE);
3aed30dc
HS
2839 if (svp && *svp != &PL_sv_undef) {
2840 *statusp = SvIVX(*svp);
12072db5
NC
2841 (void)hv_delete(PL_pidstatus,(const char*) &pid,sizeof(Pid_t),
2842 G_DISCARD);
3aed30dc
HS
2843 return pid;
2844 }
2845 }
2846 else {
2847 HE *entry;
2848
2849 hv_iterinit(PL_pidstatus);
2850 if ((entry = hv_iternext(PL_pidstatus))) {
c4420975 2851 SV * const sv = hv_iterval(PL_pidstatus,entry);
7ea75b61 2852 I32 len;
0bcc34c2 2853 const char * const spid = hv_iterkey(entry,&len);
27da23d5 2854
12072db5
NC
2855 assert (len == sizeof(Pid_t));
2856 memcpy((char *)&pid, spid, len);
3aed30dc 2857 *statusp = SvIVX(sv);
7b9a3241
NC
2858 /* The hash iterator is currently on this entry, so simply
2859 calling hv_delete would trigger the lazy delete, which on
2860 aggregate does more work, beacuse next call to hv_iterinit()
2861 would spot the flag, and have to call the delete routine,
2862 while in the meantime any new entries can't re-use that
2863 memory. */
2864 hv_iterinit(PL_pidstatus);
7ea75b61 2865 (void)hv_delete(PL_pidstatus,spid,len,G_DISCARD);
3aed30dc
HS
2866 return pid;
2867 }
20188a90
LW
2868 }
2869 }
68a29c53 2870#endif
79072805 2871#ifdef HAS_WAITPID
367f3c24
IZ
2872# ifdef HAS_WAITPID_RUNTIME
2873 if (!HAS_WAITPID_RUNTIME)
2874 goto hard_way;
2875# endif
cddd4526 2876 result = PerlProc_waitpid(pid,statusp,flags);
dfcfdb64 2877 goto finish;
367f3c24
IZ
2878#endif
2879#if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
4608196e 2880 result = wait4((pid==-1)?0:pid,statusp,flags,NULL);
dfcfdb64 2881 goto finish;
367f3c24 2882#endif
ca0c25f6 2883#ifdef PERL_USES_PL_PIDSTATUS
27da23d5 2884#if defined(HAS_WAITPID) && defined(HAS_WAITPID_RUNTIME)
367f3c24 2885 hard_way:
27da23d5 2886#endif
a0d0e21e 2887 {
a0d0e21e 2888 if (flags)
cea2e8a9 2889 Perl_croak(aTHX_ "Can't do waitpid with flags");
a0d0e21e 2890 else {
76e3520e 2891 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
a0d0e21e
LW
2892 pidgone(result,*statusp);
2893 if (result < 0)
2894 *statusp = -1;
2895 }
a687059c
LW
2896 }
2897#endif
27da23d5 2898#if defined(HAS_WAITPID) || defined(HAS_WAIT4)
dfcfdb64 2899 finish:
27da23d5 2900#endif
cddd4526
NIS
2901 if (result < 0 && errno == EINTR) {
2902 PERL_ASYNC_CHECK();
2903 }
2904 return result;
a687059c 2905}
2986a63f 2906#endif /* !DOSISH || OS2 || WIN32 || NETWARE */
a687059c 2907
ca0c25f6 2908#ifdef PERL_USES_PL_PIDSTATUS
7c0587c8 2909void
d8a83dd3 2910Perl_pidgone(pTHX_ Pid_t pid, int status)
a687059c 2911{
79072805 2912 register SV *sv;
a687059c 2913
12072db5 2914 sv = *hv_fetch(PL_pidstatus,(const char*)&pid,sizeof(Pid_t),TRUE);
862a34c6 2915 SvUPGRADE(sv,SVt_IV);
45977657 2916 SvIV_set(sv, status);
20188a90 2917 return;
a687059c 2918}
ca0c25f6 2919#endif
a687059c 2920
85ca448a 2921#if defined(atarist) || defined(OS2) || defined(EPOC)
7c0587c8 2922int pclose();
ddcf38b7
IZ
2923#ifdef HAS_FORK
2924int /* Cannot prototype with I32
2925 in os2ish.h. */
ba106d47 2926my_syspclose(PerlIO *ptr)
ddcf38b7 2927#else
79072805 2928I32
864dbfa3 2929Perl_my_pclose(pTHX_ PerlIO *ptr)
a1d180c4 2930#endif
a687059c 2931{
760ac839 2932 /* Needs work for PerlIO ! */
c4420975 2933 FILE * const f = PerlIO_findFILE(ptr);
7452cf6a 2934 const I32 result = pclose(f);
2b96b0a5
JH
2935 PerlIO_releaseFILE(ptr,f);
2936 return result;
2937}
2938#endif
2939
933fea7f 2940#if defined(DJGPP)
2b96b0a5
JH
2941int djgpp_pclose();
2942I32
2943Perl_my_pclose(pTHX_ PerlIO *ptr)
2944{
2945 /* Needs work for PerlIO ! */
c4420975 2946 FILE * const f = PerlIO_findFILE(ptr);
2b96b0a5 2947 I32 result = djgpp_pclose(f);
933fea7f 2948 result = (result << 8) & 0xff00;
760ac839
LW
2949 PerlIO_releaseFILE(ptr,f);
2950 return result;
a687059c 2951}
7c0587c8 2952#endif
9f68db38
LW
2953
2954void
864dbfa3 2955Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
9f68db38 2956{
79072805 2957 register I32 todo;
c4420975 2958 register const char * const frombase = from;
96a5add6 2959 PERL_UNUSED_CONTEXT;
9f68db38
LW
2960
2961 if (len == 1) {
08105a92 2962 register const char c = *from;
9f68db38 2963 while (count-- > 0)
5926133d 2964 *to++ = c;
9f68db38
LW
2965 return;
2966 }
2967 while (count-- > 0) {
2968 for (todo = len; todo > 0; todo--) {
2969 *to++ = *from++;
2970 }
2971 from = frombase;
2972 }
2973}
0f85fab0 2974
fe14fcc3 2975#ifndef HAS_RENAME
79072805 2976I32
4373e329 2977Perl_same_dirent(pTHX_ const char *a, const char *b)
62b28dd9 2978{
93a17b20
LW
2979 char *fa = strrchr(a,'/');
2980 char *fb = strrchr(b,'/');
c623ac67
GS
2981 Stat_t tmpstatbuf1;
2982 Stat_t tmpstatbuf2;
c4420975 2983 SV * const tmpsv = sv_newmortal();
62b28dd9
LW
2984
2985 if (fa)
2986 fa++;
2987 else
2988 fa = a;
2989 if (fb)
2990 fb++;
2991 else
2992 fb = b;
2993 if (strNE(a,b))
2994 return FALSE;
2995 if (fa == a)
616d8c9c 2996 sv_setpvn(tmpsv, ".", 1);
62b28dd9 2997 else
46fc3d4c 2998 sv_setpvn(tmpsv, a, fa - a);
95a20fc0 2999 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf1) < 0)
62b28dd9
LW
3000 return FALSE;
3001 if (fb == b)
616d8c9c 3002 sv_setpvn(tmpsv, ".", 1);
62b28dd9 3003 else
46fc3d4c 3004 sv_setpvn(tmpsv, b, fb - b);
95a20fc0 3005 if (PerlLIO_stat(SvPVX_const(tmpsv), &tmpstatbuf2) < 0)
62b28dd9
LW
3006 return FALSE;
3007 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
3008 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
3009}
fe14fcc3
LW
3010#endif /* !HAS_RENAME */
3011
491527d0 3012char*
7f315aed
NC
3013Perl_find_script(pTHX_ const char *scriptname, bool dosearch,
3014 const char *const *const search_ext, I32 flags)
491527d0 3015{
97aff369 3016 dVAR;
bd61b366
SS
3017 const char *xfound = NULL;
3018 char *xfailed = NULL;
0f31cffe 3019 char tmpbuf[MAXPATHLEN];
491527d0 3020 register char *s;
5f74f29c 3021 I32 len = 0;
491527d0
GS
3022 int retval;
3023#if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3024# define SEARCH_EXTS ".bat", ".cmd", NULL
3025# define MAX_EXT_LEN 4
3026#endif
3027#ifdef OS2
3028# define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3029# define MAX_EXT_LEN 4
3030#endif
3031#ifdef VMS
3032# define SEARCH_EXTS ".pl", ".com", NULL
3033# define MAX_EXT_LEN 4
3034#endif
3035 /* additional extensions to try in each dir if scriptname not found */
3036#ifdef SEARCH_EXTS
0bcc34c2 3037 static const char *const exts[] = { SEARCH_EXTS };
7f315aed 3038 const char *const *const ext = search_ext ? search_ext : exts;
491527d0 3039 int extidx = 0, i = 0;
bd61b366 3040 const char *curext = NULL;
491527d0 3041#else
53c1dcc0 3042 PERL_UNUSED_ARG(search_ext);
491527d0
GS
3043# define MAX_EXT_LEN 0
3044#endif
3045
3046 /*
3047 * If dosearch is true and if scriptname does not contain path
3048 * delimiters, search the PATH for scriptname.
3049 *
3050 * If SEARCH_EXTS is also defined, will look for each
3051 * scriptname{SEARCH_EXTS} whenever scriptname is not found
3052 * while searching the PATH.
3053 *
3054 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3055 * proceeds as follows:
3056 * If DOSISH or VMSISH:
3057 * + look for ./scriptname{,.foo,.bar}
3058 * + search the PATH for scriptname{,.foo,.bar}
3059 *
3060 * If !DOSISH:
3061 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
3062 * this will not look in '.' if it's not in the PATH)
3063 */
84486fc6 3064 tmpbuf[0] = '\0';
491527d0
GS
3065
3066#ifdef VMS
3067# ifdef ALWAYS_DEFTYPES
3068 len = strlen(scriptname);
3069 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
c4420975 3070 int idx = 0, deftypes = 1;
491527d0
GS
3071 bool seen_dot = 1;
3072
bd61b366 3073 const int hasdir = !dosearch || (strpbrk(scriptname,":[</") != NULL);
491527d0
GS
3074# else
3075 if (dosearch) {
c4420975 3076 int idx = 0, deftypes = 1;
491527d0
GS
3077 bool seen_dot = 1;
3078
bd61b366 3079 const int hasdir = (strpbrk(scriptname,":[</") != NULL);
491527d0
GS
3080# endif
3081 /* The first time through, just add SEARCH_EXTS to whatever we
3082 * already have, so we can check for default file types. */
3083 while (deftypes ||
84486fc6 3084 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
491527d0
GS
3085 {
3086 if (deftypes) {
3087 deftypes = 0;
84486fc6 3088 *tmpbuf = '\0';
491527d0 3089 }
84486fc6
GS
3090 if ((strlen(tmpbuf) + strlen(scriptname)
3091 + MAX_EXT_LEN) >= sizeof tmpbuf)
491527d0 3092 continue; /* don't search dir with too-long name */
6fca0082 3093 my_strlcat(tmpbuf, scriptname, sizeof(tmpbuf));
491527d0
GS
3094#else /* !VMS */
3095
3096#ifdef DOSISH
3097 if (strEQ(scriptname, "-"))
3098 dosearch = 0;
3099 if (dosearch) { /* Look in '.' first. */
fe2774ed 3100 const char *cur = scriptname;
491527d0
GS
3101#ifdef SEARCH_EXTS
3102 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3103 while (ext[i])
3104 if (strEQ(ext[i++],curext)) {
3105 extidx = -1; /* already has an ext */
3106 break;
3107 }
3108 do {
3109#endif
3110 DEBUG_p(PerlIO_printf(Perl_debug_log,
3111 "Looking for %s\n",cur));
017f25f1
IZ
3112 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3113 && !S_ISDIR(PL_statbuf.st_mode)) {
491527d0
GS
3114 dosearch = 0;
3115 scriptname = cur;
3116#ifdef SEARCH_EXTS
3117 break;
3118#endif
3119 }
3120#ifdef SEARCH_EXTS
3121 if (cur == scriptname) {
3122 len = strlen(scriptname);
84486fc6 3123 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
491527d0 3124 break;
9e4425f7
SH
3125 my_strlcpy(tmpbuf, scriptname, sizeof(tmpbuf));
3126 cur = tmpbuf;
491527d0
GS
3127 }
3128 } while (extidx >= 0 && ext[extidx] /* try an extension? */
6fca0082 3129 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len));
491527d0
GS
3130#endif
3131 }
3132#endif
3133
cd39f2b6
JH
3134#ifdef MACOS_TRADITIONAL
3135 if (dosearch && !strchr(scriptname, ':') &&
3136 (s = PerlEnv_getenv("Commands")))
3137#else
491527d0
GS
3138 if (dosearch && !strchr(scriptname, '/')
3139#ifdef DOSISH
3140 && !strchr(scriptname, '\\')
3141#endif
cd39f2b6
JH
3142 && (s = PerlEnv_getenv("PATH")))
3143#endif
3144 {
491527d0 3145 bool seen_dot = 0;
92f0c265 3146
3280af22
NIS
3147 PL_bufend = s + strlen(s);
3148 while (s < PL_bufend) {
cd39f2b6
JH
3149#ifdef MACOS_TRADITIONAL
3150 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3151 ',',
3152 &len);
3153#else
491527d0
GS
3154#if defined(atarist) || defined(DOSISH)
3155 for (len = 0; *s
3156# ifdef atarist
3157 && *s != ','
3158# endif
3159 && *s != ';'; len++, s++) {
84486fc6
GS
3160 if (len < sizeof tmpbuf)
3161 tmpbuf[len] = *s;
491527d0 3162 }
84486fc6
GS
3163 if (len < sizeof tmpbuf)
3164 tmpbuf[len] = '\0';
491527d0 3165#else /* ! (atarist || DOSISH) */
3280af22 3166 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
491527d0
GS
3167 ':',
3168 &len);
3169#endif /* ! (atarist || DOSISH) */
cd39f2b6 3170#endif /* MACOS_TRADITIONAL */
3280af22 3171 if (s < PL_bufend)
491527d0 3172 s++;
84486fc6 3173 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
491527d0 3174 continue; /* don't search dir with too-long name */
cd39f2b6
JH
3175#ifdef MACOS_TRADITIONAL
3176 if (len && tmpbuf[len - 1] != ':')
3177 tmpbuf[len++] = ':';
3178#else
491527d0 3179 if (len
490a0e98 3180# if defined(atarist) || defined(__MINT__) || defined(DOSISH)
84486fc6
GS
3181 && tmpbuf[len - 1] != '/'
3182 && tmpbuf[len - 1] != '\\'
490a0e98 3183# endif
491527d0 3184 )
84486fc6
GS
3185 tmpbuf[len++] = '/';
3186 if (len == 2 && tmpbuf[0] == '.')
491527d0 3187 seen_dot = 1;
cd39f2b6 3188#endif
28f0d0ec 3189 (void)my_strlcpy(tmpbuf + len, scriptname, sizeof(tmpbuf) - len);
491527d0
GS
3190#endif /* !VMS */
3191
3192#ifdef SEARCH_EXTS
84486fc6 3193 len = strlen(tmpbuf);
491527d0
GS
3194 if (extidx > 0) /* reset after previous loop */
3195 extidx = 0;
3196 do {
3197#endif
84486fc6 3198 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3280af22 3199 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
017f25f1
IZ
3200 if (S_ISDIR(PL_statbuf.st_mode)) {
3201 retval = -1;
3202 }
491527d0
GS
3203#ifdef SEARCH_EXTS
3204 } while ( retval < 0 /* not there */
3205 && extidx>=0 && ext[extidx] /* try an extension? */
6fca0082 3206 && my_strlcpy(tmpbuf+len, ext[extidx++], sizeof(tmpbuf) - len)
491527d0
GS
3207 );
3208#endif
3209 if (retval < 0)
3210 continue;
3280af22
NIS
3211 if (S_ISREG(PL_statbuf.st_mode)
3212 && cando(S_IRUSR,TRUE,&PL_statbuf)
73811745 3213#if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3280af22 3214 && cando(S_IXUSR,TRUE,&PL_statbuf)
491527d0
GS
3215#endif
3216 )
3217 {
3aed30dc 3218 xfound = tmpbuf; /* bingo! */
491527d0
GS
3219 break;
3220 }
3221 if (!xfailed)
84486fc6 3222 xfailed = savepv(tmpbuf);
491527d0
GS
3223 }
3224#ifndef DOSISH
017f25f1 3225 if (!xfound && !seen_dot && !xfailed &&
a1d180c4 3226 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
017f25f1 3227 || S_ISDIR(PL_statbuf.st_mode)))
491527d0
GS
3228#endif
3229 seen_dot = 1; /* Disable message. */
9ccb31f9
GS
3230 if (!xfound) {
3231 if (flags & 1) { /* do or die? */
3aed30dc 3232 Perl_croak(aTHX_ "Can't %s %s%s%s",
9ccb31f9
GS
3233 (xfailed ? "execute" : "find"),
3234 (xfailed ? xfailed : scriptname),
3235 (xfailed ? "" : " on PATH"),
3236 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3237 }
bd61b366 3238 scriptname = NULL;
9ccb31f9 3239 }
43c5f42d 3240 Safefree(xfailed);
491527d0
GS
3241 scriptname = xfound;
3242 }
bd61b366 3243 return (scriptname ? savepv(scriptname) : NULL);
491527d0
GS
3244}
3245
ba869deb
GS
3246#ifndef PERL_GET_CONTEXT_DEFINED
3247
3248void *
3249Perl_get_context(void)
3250{
27da23d5 3251 dVAR;
3db8f154 3252#if defined(USE_ITHREADS)
ba869deb
GS
3253# ifdef OLD_PTHREADS_API
3254 pthread_addr_t t;
3255 if (pthread_getspecific(PL_thr_key, &t))
3256 Perl_croak_nocontext("panic: pthread_getspecific");
3257 return (void*)t;
3258# else
bce813aa 3259# ifdef I_MACH_CTHREADS
8b8b35ab 3260 return (void*)cthread_data(cthread_self());
bce813aa 3261# else
8b8b35ab
JH
3262 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
3263# endif
c44d3fdb 3264# endif
ba869deb
GS
3265#else
3266 return (void*)NULL;
3267#endif
3268}
3269
3270void
3271Perl_set_context(void *t)
3272{
8772537c 3273 dVAR;
3db8f154 3274#if defined(USE_ITHREADS)
c44d3fdb
GS
3275# ifdef I_MACH_CTHREADS
3276 cthread_set_data(cthread_self(), t);
3277# else
ba869deb
GS
3278 if (pthread_setspecific(PL_thr_key, t))
3279 Perl_croak_nocontext("panic: pthread_setspecific");
c44d3fdb 3280# endif
b464bac0 3281#else
8772537c 3282 PERL_UNUSED_ARG(t);
ba869deb
GS
3283#endif
3284}
3285
3286#endif /* !PERL_GET_CONTEXT_DEFINED */
491527d0 3287
27da23d5 3288#if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
22239a37 3289struct perl_vars *
864dbfa3 3290Perl_GetVars(pTHX)
22239a37 3291{
533c011a 3292 return &PL_Vars;
22239a37 3293}
31fb1209
NIS
3294#endif
3295
1cb0ed9b 3296char **
864dbfa3 3297Perl_get_op_names(pTHX)
31fb1209 3298{
96a5add6
AL
3299 PERL_UNUSED_CONTEXT;
3300 return (char **)PL_op_name;
31fb1209
NIS
3301}
3302
1cb0ed9b 3303char **
864dbfa3 3304Perl_get_op_descs(pTHX)
31fb1209 3305{
96a5add6
AL
3306 PERL_UNUSED_CONTEXT;
3307 return (char **)PL_op_desc;
31fb1209 3308}
9e6b2b00 3309
e1ec3a88 3310const char *
864dbfa3 3311Perl_get_no_modify(pTHX)
9e6b2b00 3312{
96a5add6
AL
3313 PERL_UNUSED_CONTEXT;
3314 return PL_no_modify;
9e6b2b00
GS
3315}
3316
3317U32 *
864dbfa3 3318Perl_get_opargs(pTHX)
9e6b2b00 3319{
96a5add6
AL
3320 PERL_UNUSED_CONTEXT;
3321 return (U32 *)PL_opargs;
9e6b2b00 3322}
51aa15f3 3323
0cb96387
GS
3324PPADDR_t*
3325Perl_get_ppaddr(pTHX)
3326{
96a5add6
AL
3327 dVAR;
3328 PERL_UNUSED_CONTEXT;
3329 return (PPADDR_t*)PL_ppaddr;
0cb96387
GS
3330}
3331
a6c40364
GS
3332#ifndef HAS_GETENV_LEN
3333char *
bf4acbe4 3334Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
a6c40364 3335{
8772537c 3336 char * const env_trans = PerlEnv_getenv(env_elem);
96a5add6 3337 PERL_UNUSED_CONTEXT;
a6c40364
GS
3338 if (env_trans)
3339 *len = strlen(env_trans);
3340 return env_trans;
f675dbe5
CB
3341}
3342#endif
3343
dc9e4912
GS
3344
3345MGVTBL*
864dbfa3 3346Perl_get_vtbl(pTHX_ int vtbl_id)
dc9e4912 3347{
7452cf6a 3348 const MGVTBL* result;
96a5add6 3349 PERL_UNUSED_CONTEXT;
dc9e4912
GS
3350
3351 switch(vtbl_id) {
3352 case want_vtbl_sv:
3353 result = &PL_vtbl_sv;
3354 break;
3355 case want_vtbl_env:
3356 result = &PL_vtbl_env;
3357 break;
3358 case want_vtbl_envelem:
3359 result = &PL_vtbl_envelem;
3360 break;
3361 case want_vtbl_sig:
3362 result = &PL_vtbl_sig;
3363 break;
3364 case want_vtbl_sigelem:
3365 result = &PL_vtbl_sigelem;
3366 break;
3367 case want_vtbl_pack:
3368 result = &PL_vtbl_pack;
3369 break;
3370 case want_vtbl_packelem:
3371 result = &PL_vtbl_packelem;
3372 break;
3373 case want_vtbl_dbline:
3374 result = &PL_vtbl_dbline;
3375 break;
3376 case want_vtbl_isa:
3377 result = &PL_vtbl_isa;
3378 break;
3379 case want_vtbl_isaelem:
3380 result = &PL_vtbl_isaelem;
3381 break;
3382 case want_vtbl_arylen:
3383 result = &PL_vtbl_arylen;
3384 break;
dc9e4912
GS
3385 case want_vtbl_mglob:
3386 result = &PL_vtbl_mglob;
3387 break;
3388 case want_vtbl_nkeys:
3389 result = &PL_vtbl_nkeys;
3390 break;
3391 case want_vtbl_taint:
3392 result = &PL_vtbl_taint;
3393 break;
3394 case want_vtbl_substr:
3395 result = &PL_vtbl_substr;
3396 break;
3397 case want_vtbl_vec:
3398 result = &PL_vtbl_vec;
3399 break;
3400 case want_vtbl_pos:
3401 result = &PL_vtbl_pos;
3402 break;
3403 case want_vtbl_bm:
3404 result = &PL_vtbl_bm;
3405 break;
3406 case want_vtbl_fm:
3407 result = &PL_vtbl_fm;
3408 break;
3409 case want_vtbl_uvar:
3410 result = &PL_vtbl_uvar;
3411 break;
dc9e4912
GS
3412 case want_vtbl_defelem:
3413 result = &PL_vtbl_defelem;
3414 break;
3415 case want_vtbl_regexp:
3416 result = &PL_vtbl_regexp;
3417 break;
3418 case want_vtbl_regdata:
3419 result = &PL_vtbl_regdata;
3420 break;
3421 case want_vtbl_regdatum:
3422 result = &PL_vtbl_regdatum;
3423 break;
3c90161d 3424#ifdef USE_LOCALE_COLLATE
dc9e4912
GS
3425 case want_vtbl_collxfrm:
3426 result = &PL_vtbl_collxfrm;
3427 break;
3c90161d 3428#endif
dc9e4912
GS
3429 case want_vtbl_amagic:
3430 result = &PL_vtbl_amagic;
3431 break;
3432 case want_vtbl_amagicelem:
3433 result = &PL_vtbl_amagicelem;
3434 break;
810b8aa5
GS
3435 case want_vtbl_backref:
3436 result = &PL_vtbl_backref;
3437 break;
7e8c5dac
HS
3438 case want_vtbl_utf8:
3439 result = &PL_vtbl_utf8;
3440 break;
7452cf6a 3441 default:
4608196e 3442 result = NULL;
7452cf6a 3443 break;
dc9e4912 3444 }
27da23d5 3445 return (MGVTBL*)result;
dc9e4912
GS
3446}
3447
767df6a1 3448I32
864dbfa3 3449Perl_my_fflush_all(pTHX)
767df6a1 3450{
f800e14d 3451#if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
ce720889 3452 return PerlIO_flush(NULL);
767df6a1 3453#else
8fbdfb7c 3454# if defined(HAS__FWALK)
f13a2bc0 3455 extern int fflush(FILE *);
74cac757
JH
3456 /* undocumented, unprototyped, but very useful BSDism */
3457 extern void _fwalk(int (*)(FILE *));
8fbdfb7c 3458 _fwalk(&fflush);
74cac757 3459 return 0;
8fa7f367 3460# else
8fbdfb7c 3461# if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
8fa7f367 3462 long open_max = -1;
8fbdfb7c 3463# ifdef PERL_FFLUSH_ALL_FOPEN_MAX
d2201af2 3464 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
8fbdfb7c 3465# else
8fa7f367 3466# if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
767df6a1 3467 open_max = sysconf(_SC_OPEN_MAX);
8fa7f367
JH
3468# else
3469# ifdef FOPEN_MAX
74cac757 3470 open_max = FOPEN_MAX;
8fa7f367
JH
3471# else
3472# ifdef OPEN_MAX
74cac757 3473 open_max = OPEN_MAX;
8fa7f367
JH
3474# else
3475# ifdef _NFILE
d2201af2 3476 open_max = _NFILE;
8fa7f367
JH
3477# endif
3478# endif
74cac757 3479# endif
767df6a1
JH
3480# endif
3481# endif
767df6a1
JH
3482 if (open_max > 0) {
3483 long i;
3484 for (i = 0; i < open_max; i++)
d2201af2
AD
3485 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3486 STDIO_STREAM_ARRAY[i]._file < open_max &&
3487 STDIO_STREAM_ARRAY[i]._flag)
3488 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
767df6a1
JH
3489 return 0;
3490 }
8fbdfb7c 3491# endif
93189314 3492 SETERRNO(EBADF,RMS_IFI);
767df6a1 3493 return EOF;
74cac757 3494# endif
767df6a1
JH
3495#endif
3496}
097ee67d 3497
69282e91 3498void
e1ec3a88 3499Perl_report_evil_fh(pTHX_ const GV *gv, const IO *io, I32 op)
bc37a18f 3500{
b64e5050 3501 const char * const name = gv && isGV(gv) ? GvENAME(gv) : NULL;
66fc2fa5 3502
4c80c0b2 3503 if (op == OP_phoney_OUTPUT_ONLY || op == OP_phoney_INPUT_ONLY) {
3aed30dc 3504 if (ckWARN(WARN_IO)) {
10edeb5d
JH
3505 const char * const direction =
3506 (const char *)((op == OP_phoney_INPUT_ONLY) ? "in" : "out");
3aed30dc
HS
3507 if (name && *name)
3508 Perl_warner(aTHX_ packWARN(WARN_IO),
3509 "Filehandle %s opened only for %sput",
fd322ea4 3510 name, direction);
3aed30dc
HS
3511 else
3512 Perl_warner(aTHX_ packWARN(WARN_IO),
fd322ea4 3513 "Filehandle opened only for %sput", direction);
3aed30dc 3514 }
2dd78f96
JH
3515 }
3516 else {
e1ec3a88 3517 const char *vile;
3aed30dc
HS
3518 I32 warn_type;
3519
3520 if (gv && io && IoTYPE(io) == IoTYPE_CLOSED) {
3521 vile = "closed";
3522 warn_type = WARN_CLOSED;
3523 }
3524 else {
3525 vile = "unopened";
3526 warn_type = WARN_UNOPENED;
3527 }
3528
3529 if (ckWARN(warn_type)) {
10edeb5d
JH
3530 const char * const pars =
3531 (const char *)(OP_IS_FILETEST(op) ? "" : "()");
f0a09b71 3532 const char * const func =
10edeb5d
JH
3533 (const char *)
3534 (op == OP_READLINE ? "readline" : /* "<HANDLE>" not nice */
3535 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
3536 op < 0 ? "" : /* handle phoney cases */
3537 PL_op_desc[op]);
3538 const char * const type =
3539 (const char *)
3540 (OP_IS_SOCKET(op) ||
3541 (gv && io && IoTYPE(io) == IoTYPE_SOCKET) ?
3542 "socket" : "filehandle");
3aed30dc
HS
3543 if (name && *name) {
3544 Perl_warner(aTHX_ packWARN(warn_type),
3545 "%s%s on %s %s %s", func, pars, vile, type, name);
3546 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3547 Perl_warner(
3548 aTHX_ packWARN(warn_type),
3549 "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3550 func, pars, name
3551 );
3552 }
3553 else {
3554 Perl_warner(aTHX_ packWARN(warn_type),
3555 "%s%s on %s %s", func, pars, vile, type);
3556 if (gv && io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
3557 Perl_warner(
3558 aTHX_ packWARN(warn_type),
3559 "\t(Are you trying to call %s%s on dirhandle?)\n",
3560 func, pars
3561 );
3562 }
3563 }
bc37a18f 3564 }
69282e91 3565}
a926ef6b
JH
3566
3567#ifdef EBCDIC
cbebf344
JH
3568/* in ASCII order, not that it matters */
3569static const char controllablechars[] = "?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_";
3570
a926ef6b
JH
3571int
3572Perl_ebcdic_control(pTHX_ int ch)
3573{
3aed30dc 3574 if (ch > 'a') {
e1ec3a88 3575 const char *ctlp;
3aed30dc
HS
3576
3577 if (islower(ch))
3578 ch = toupper(ch);
3579
3580 if ((ctlp = strchr(controllablechars, ch)) == 0) {
3581 Perl_die(aTHX_ "unrecognised control character '%c'\n", ch);
a926ef6b 3582 }
3aed30dc
HS
3583
3584 if (ctlp == controllablechars)
3585 return('\177'); /* DEL */
3586 else
3587 return((unsigned char)(ctlp - controllablechars - 1));
3588 } else { /* Want uncontrol */
3589 if (ch == '\177' || ch == -1)
3590 return('?');
3591 else if (ch == '\157')
3592 return('\177');
3593 else if (ch == '\174')
3594 return('\000');
3595 else if (ch == '^') /* '\137' in 1047, '\260' in 819 */
3596 return('\036');
3597 else if (ch == '\155')
3598 return('\037');
3599 else if (0 < ch && ch < (sizeof(controllablechars) - 1))
3600 return(controllablechars[ch+1]);
3601 else
3602 Perl_die(aTHX_ "invalid control request: '\\%03o'\n", ch & 0xFF);
3603 }
a926ef6b
JH
3604}
3605#endif
e72cf795 3606
f6adc668 3607/* To workaround core dumps from the uninitialised tm_zone we get the
e72cf795
JH
3608 * system to give us a reasonable struct to copy. This fix means that
3609 * strftime uses the tm_zone and tm_gmtoff values returned by
3610 * localtime(time()). That should give the desired result most of the
3611 * time. But probably not always!
3612 *
f6adc668
JH
3613 * This does not address tzname aspects of NETaa14816.
3614 *
e72cf795 3615 */
f6adc668 3616
e72cf795
JH
3617#ifdef HAS_GNULIBC
3618# ifndef STRUCT_TM_HASZONE
3619# define STRUCT_TM_HASZONE
3620# endif
3621#endif
3622
f6adc668
JH
3623#ifdef STRUCT_TM_HASZONE /* Backward compat */
3624# ifndef HAS_TM_TM_ZONE
3625# define HAS_TM_TM_ZONE
3626# endif
3627#endif
3628
e72cf795 3629void
f1208910 3630Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
e72cf795 3631{
f6adc668 3632#ifdef HAS_TM_TM_ZONE
e72cf795 3633 Time_t now;
1b6737cc 3634 const struct tm* my_tm;
e72cf795 3635 (void)time(&now);
82c57498 3636 my_tm = localtime(&now);
ca46b8ee
SP
3637 if (my_tm)
3638 Copy(my_tm, ptm, 1, struct tm);
1b6737cc
AL
3639#else
3640 PERL_UNUSED_ARG(ptm);
e72cf795
JH
3641#endif
3642}
3643
3644/*
3645 * mini_mktime - normalise struct tm values without the localtime()
3646 * semantics (and overhead) of mktime().
3647 */
3648void
f1208910 3649Perl_mini_mktime(pTHX_ struct tm *ptm)
e72cf795
JH
3650{
3651 int yearday;
3652 int secs;
3653 int month, mday, year, jday;
3654 int odd_cent, odd_year;
96a5add6 3655 PERL_UNUSED_CONTEXT;
e72cf795
JH
3656
3657#define DAYS_PER_YEAR 365
3658#define DAYS_PER_QYEAR (4*DAYS_PER_YEAR+1)
3659#define DAYS_PER_CENT (25*DAYS_PER_QYEAR-1)
3660#define DAYS_PER_QCENT (4*DAYS_PER_CENT+1)
3661#define SECS_PER_HOUR (60*60)
3662#define SECS_PER_DAY (24*SECS_PER_HOUR)
3663/* parentheses deliberately absent on these two, otherwise they don't work */
3664#define MONTH_TO_DAYS 153/5
3665#define DAYS_TO_MONTH 5/153
3666/* offset to bias by March (month 4) 1st between month/mday & year finding */
3667#define YEAR_ADJUST (4*MONTH_TO_DAYS+1)
3668/* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
3669#define WEEKDAY_BIAS 6 /* (1+6)%7 makes Sunday 0 again */
3670
3671/*
3672 * Year/day algorithm notes:
3673 *
3674 * With a suitable offset for numeric value of the month, one can find
3675 * an offset into the year by considering months to have 30.6 (153/5) days,
3676 * using integer arithmetic (i.e., with truncation). To avoid too much
3677 * messing about with leap days, we consider January and February to be
3678 * the 13th and 14th month of the previous year. After that transformation,
3679 * we need the month index we use to be high by 1 from 'normal human' usage,
3680 * so the month index values we use run from 4 through 15.
3681 *
3682 * Given that, and the rules for the Gregorian calendar (leap years are those
3683 * divisible by 4 unless also divisible by 100, when they must be divisible
3684 * by 400 instead), we can simply calculate the number of days since some
3685 * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
3686 * the days we derive from our month index, and adding in the day of the
3687 * month. The value used here is not adjusted for the actual origin which
3688 * it normally would use (1 January A.D. 1), since we're not exposing it.
3689 * We're only building the value so we can turn around and get the
3690 * normalised values for the year, month, day-of-month, and day-of-year.
3691 *
3692 * For going backward, we need to bias the value we're using so that we find
3693 * the right year value. (Basically, we don't want the contribution of
3694 * March 1st to the number to apply while deriving the year). Having done
3695 * that, we 'count up' the contribution to the year number by accounting for
3696 * full quadracenturies (400-year periods) with their extra leap days, plus
3697 * the contribution from full centuries (to avoid counting in the lost leap
3698 * days), plus the contribution from full quad-years (to count in the normal
3699 * leap days), plus the leftover contribution from any non-leap years.
3700 * At this point, if we were working with an actual leap day, we'll have 0
3701 * days left over. This is also true for March 1st, however. So, we have
3702 * to special-case that result, and (earlier) keep track of the 'odd'
3703 * century and year contributions. If we got 4 extra centuries in a qcent,
3704 * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
3705 * Otherwise, we add back in the earlier bias we removed (the 123 from
3706 * figuring in March 1st), find the month index (integer division by 30.6),
3707 * and the remainder is the day-of-month. We then have to convert back to
3708 * 'real' months (including fixing January and February from being 14/15 in
3709 * the previous year to being in the proper year). After that, to get
3710 * tm_yday, we work with the normalised year and get a new yearday value for
3711 * January 1st, which we subtract from the yearday value we had earlier,
3712 * representing the date we've re-built. This is done from January 1
3713 * because tm_yday is 0-origin.
3714 *
3715 * Since POSIX time routines are only guaranteed to work for times since the
3716 * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
3717 * applies Gregorian calendar rules even to dates before the 16th century
3718 * doesn't bother me. Besides, you'd need cultural context for a given
3719 * date to know whether it was Julian or Gregorian calendar, and that's
3720 * outside the scope for this routine. Since we convert back based on the
3721 * same rules we used to build the yearday, you'll only get strange results
3722 * for input which needed normalising, or for the 'odd' century years which
3723 * were leap years in the Julian calander but not in the Gregorian one.
3724 * I can live with that.
3725 *
3726 * This algorithm also fails to handle years before A.D. 1 gracefully, but
3727 * that's still outside the scope for POSIX time manipulation, so I don't
3728 * care.
3729 */
3730
3731 year = 1900 + ptm->tm_year;
3732 month = ptm->tm_mon;
3733 mday = ptm->tm_mday;
3734 /* allow given yday with no month & mday to dominate the result */
3735 if (ptm->tm_yday >= 0 && mday <= 0 && month <= 0) {
3736 month = 0;
3737 mday = 0;
3738 jday = 1 + ptm->tm_yday;
3739 }
3740 else {
3741 jday = 0;
3742 }
3743 if (month >= 2)
3744 month+=2;
3745 else
3746 month+=14, year--;
3747 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
3748 yearday += month*MONTH_TO_DAYS + mday + jday;
3749 /*
3750 * Note that we don't know when leap-seconds were or will be,
3751 * so we have to trust the user if we get something which looks
3752 * like a sensible leap-second. Wild values for seconds will
3753 * be rationalised, however.
3754 */
3755 if ((unsigned) ptm->tm_sec <= 60) {
3756 secs = 0;
3757 }
3758 else {
3759 secs = ptm->tm_sec;
3760 ptm->tm_sec = 0;
3761 }
3762 secs += 60 * ptm->tm_min;
3763 secs += SECS_PER_HOUR * ptm->tm_hour;
3764 if (secs < 0) {
3765 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3766 /* got negative remainder, but need positive time */
3767 /* back off an extra day to compensate */
3768 yearday += (secs/SECS_PER_DAY)-1;
3769 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
3770 }
3771 else {
3772 yearday += (secs/SECS_PER_DAY);
3773 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
3774 }
3775 }
3776 else if (secs >= SECS_PER_DAY) {
3777 yearday += (secs/SECS_PER_DAY);
3778 secs %= SECS_PER_DAY;
3779 }
3780 ptm->tm_hour = secs/SECS_PER_HOUR;
3781 secs %= SECS_PER_HOUR;
3782 ptm->tm_min = secs/60;
3783 secs %= 60;
3784 ptm->tm_sec += secs;
3785 /* done with time of day effects */
3786 /*
3787 * The algorithm for yearday has (so far) left it high by 428.
3788 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
3789 * bias it by 123 while trying to figure out what year it
3790 * really represents. Even with this tweak, the reverse
3791 * translation fails for years before A.D. 0001.
3792 * It would still fail for Feb 29, but we catch that one below.
3793 */
3794 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
3795 yearday -= YEAR_ADJUST;
3796 year = (yearday / DAYS_PER_QCENT) * 400;
3797 yearday %= DAYS_PER_QCENT;
3798 odd_cent = yearday / DAYS_PER_CENT;
3799 year += odd_cent * 100;
3800 yearday %= DAYS_PER_CENT;
3801 year += (yearday / DAYS_PER_QYEAR) * 4;
3802 yearday %= DAYS_PER_QYEAR;
3803 odd_year = yearday / DAYS_PER_YEAR;
3804 year += odd_year;
3805 yearday %= DAYS_PER_YEAR;
3806 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
3807 month = 1;
3808 yearday = 29;
3809 }
3810 else {
3811 yearday += YEAR_ADJUST; /* recover March 1st crock */
3812 month = yearday*DAYS_TO_MONTH;
3813 yearday -= month*MONTH_TO_DAYS;
3814 /* recover other leap-year adjustment */
3815 if (month > 13) {
3816 month-=14;
3817 year++;
3818 }
3819 else {
3820 month-=2;
3821 }
3822 }
3823 ptm->tm_year = year - 1900;
3824 if (yearday) {
3825 ptm->tm_mday = yearday;
3826 ptm->tm_mon = month;
3827 }
3828 else {
3829 ptm->tm_mday = 31;
3830 ptm->tm_mon = month - 1;
3831 }
3832 /* re-build yearday based on Jan 1 to get tm_yday */
3833 year--;
3834 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
3835 yearday += 14*MONTH_TO_DAYS + 1;
3836 ptm->tm_yday = jday - yearday;
3837 /* fix tm_wday if not overridden by caller */
3838 if ((unsigned)ptm->tm_wday > 6)
3839 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
3840}
b3c85772
JH
3841
3842char *
e1ec3a88 3843Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst)
b3c85772
JH
3844{
3845#ifdef HAS_STRFTIME
3846 char *buf;
3847 int buflen;
3848 struct tm mytm;
3849 int len;
3850
3851 init_tm(&mytm); /* XXX workaround - see init_tm() above */
3852 mytm.tm_sec = sec;
3853 mytm.tm_min = min;
3854 mytm.tm_hour = hour;
3855 mytm.tm_mday = mday;
3856 mytm.tm_mon = mon;
3857 mytm.tm_year = year;
3858 mytm.tm_wday = wday;
3859 mytm.tm_yday = yday;
3860 mytm.tm_isdst = isdst;
3861 mini_mktime(&mytm);
c473feec
SR
3862 /* use libc to get the values for tm_gmtoff and tm_zone [perl #18238] */
3863#if defined(HAS_MKTIME) && (defined(HAS_TM_TM_GMTOFF) || defined(HAS_TM_TM_ZONE))
3864 STMT_START {
3865 struct tm mytm2;
3866 mytm2 = mytm;
3867 mktime(&mytm2);
3868#ifdef HAS_TM_TM_GMTOFF
3869 mytm.tm_gmtoff = mytm2.tm_gmtoff;
3870#endif
3871#ifdef HAS_TM_TM_ZONE
3872 mytm.tm_zone = mytm2.tm_zone;
3873#endif
3874 } STMT_END;
3875#endif
b3c85772 3876 buflen = 64;
a02a5408 3877 Newx(buf, buflen, char);
b3c85772
JH
3878 len = strftime(buf, buflen, fmt, &mytm);
3879 /*
877f6a72 3880 ** The following is needed to handle to the situation where
b3c85772
JH
3881 ** tmpbuf overflows. Basically we want to allocate a buffer
3882 ** and try repeatedly. The reason why it is so complicated
3883 ** is that getting a return value of 0 from strftime can indicate
3884 ** one of the following:
3885 ** 1. buffer overflowed,
3886 ** 2. illegal conversion specifier, or
3887 ** 3. the format string specifies nothing to be returned(not
3888 ** an error). This could be because format is an empty string
3889 ** or it specifies %p that yields an empty string in some locale.
3890 ** If there is a better way to make it portable, go ahead by
3891 ** all means.
3892 */
3893 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
3894 return buf;
3895 else {
3896 /* Possibly buf overflowed - try again with a bigger buf */
e1ec3a88 3897 const int fmtlen = strlen(fmt);
7743c307 3898 int bufsize = fmtlen + buflen;
877f6a72 3899
a02a5408 3900 Newx(buf, bufsize, char);
b3c85772
JH
3901 while (buf) {
3902 buflen = strftime(buf, bufsize, fmt, &mytm);
3903 if (buflen > 0 && buflen < bufsize)
3904 break;
3905 /* heuristic to prevent out-of-memory errors */
3906 if (bufsize > 100*fmtlen) {
3907 Safefree(buf);
3908 buf = NULL;
3909 break;
3910 }
7743c307
SH
3911 bufsize *= 2;
3912 Renew(buf, bufsize, char);
b3c85772
JH
3913 }
3914 return buf;
3915 }
3916#else
3917 Perl_croak(aTHX_ "panic: no strftime");
27da23d5 3918 return NULL;
b3c85772
JH
3919#endif
3920}
3921
877f6a72
NIS
3922
3923#define SV_CWD_RETURN_UNDEF \
3924sv_setsv(sv, &PL_sv_undef); \
3925return FALSE
3926
3927#define SV_CWD_ISDOT(dp) \
3928 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
3aed30dc 3929 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
877f6a72
NIS
3930
3931/*
ccfc67b7
JH
3932=head1 Miscellaneous Functions
3933
89423764 3934=for apidoc getcwd_sv
877f6a72
NIS
3935
3936Fill the sv with current working directory
3937
3938=cut
3939*/
3940
3941/* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
3942 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
3943 * getcwd(3) if available
3944 * Comments from the orignal:
3945 * This is a faster version of getcwd. It's also more dangerous
3946 * because you might chdir out of a directory that you can't chdir
3947 * back into. */
3948
877f6a72 3949int
89423764 3950Perl_getcwd_sv(pTHX_ register SV *sv)
877f6a72
NIS
3951{
3952#ifndef PERL_MICRO
97aff369 3953 dVAR;
ea715489
JH
3954#ifndef INCOMPLETE_TAINTS
3955 SvTAINTED_on(sv);
3956#endif
3957
8f95b30d
JH
3958#ifdef HAS_GETCWD
3959 {
60e110a8
DM
3960 char buf[MAXPATHLEN];
3961
3aed30dc 3962 /* Some getcwd()s automatically allocate a buffer of the given
60e110a8
DM
3963 * size from the heap if they are given a NULL buffer pointer.
3964 * The problem is that this behaviour is not portable. */
3aed30dc 3965 if (getcwd(buf, sizeof(buf) - 1)) {
42d9b98d 3966 sv_setpv(sv, buf);
3aed30dc
HS
3967 return TRUE;
3968 }
3969 else {
3970 sv_setsv(sv, &PL_sv_undef);
3971 return FALSE;
3972 }
8f95b30d
JH
3973 }
3974
3975#else
3976
c623ac67 3977 Stat_t statbuf;
877f6a72 3978 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
4373e329 3979 int pathlen=0;
877f6a72 3980 Direntry_t *dp;
877f6a72 3981
862a34c6 3982 SvUPGRADE(sv, SVt_PV);
877f6a72 3983
877f6a72 3984 if (PerlLIO_lstat(".", &statbuf) < 0) {
3aed30dc 3985 SV_CWD_RETURN_UNDEF;
877f6a72
NIS
3986 }
3987
3988 orig_cdev = statbuf.st_dev;
3989 orig_cino = statbuf.st_ino;
3990 cdev = orig_cdev;
3991 cino = orig_cino;
3992
3993 for (;;) {
4373e329 3994 DIR *dir;
3aed30dc
HS
3995 odev = cdev;
3996 oino = cino;
3997
3998 if (PerlDir_chdir("..") < 0) {
3999 SV_CWD_RETURN_UNDEF;
4000 }
4001 if (PerlLIO_stat(".", &statbuf) < 0) {
4002 SV_CWD_RETURN_UNDEF;
4003 }
4004
4005 cdev = statbuf.st_dev;
4006 cino = statbuf.st_ino;
4007
4008 if (odev == cdev && oino == cino) {
4009 break;
4010 }
4011 if (!(dir = PerlDir_open("."))) {
4012 SV_CWD_RETURN_UNDEF;
4013 }
4014
4015 while ((dp = PerlDir_read(dir)) != NULL) {
877f6a72 4016#ifdef DIRNAMLEN
4373e329 4017 const int namelen = dp->d_namlen;
877f6a72 4018#else
4373e329 4019 const int namelen = strlen(dp->d_name);
877f6a72 4020#endif
3aed30dc
HS
4021 /* skip . and .. */
4022 if (SV_CWD_ISDOT(dp)) {
4023 continue;
4024 }
4025
4026 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
4027 SV_CWD_RETURN_UNDEF;
4028 }
4029
4030 tdev = statbuf.st_dev;
4031 tino = statbuf.st_ino;
4032 if (tino == oino && tdev == odev) {
4033 break;
4034 }
cb5953d6
JH
4035 }
4036
3aed30dc
HS
4037 if (!dp) {
4038 SV_CWD_RETURN_UNDEF;
4039 }
4040
4041 if (pathlen + namelen + 1 >= MAXPATHLEN) {
4042 SV_CWD_RETURN_UNDEF;
4043 }
877f6a72 4044
3aed30dc
HS
4045 SvGROW(sv, pathlen + namelen + 1);
4046
4047 if (pathlen) {
4048 /* shift down */
95a20fc0 4049 Move(SvPVX_const(sv), SvPVX(sv) + namelen + 1, pathlen, char);
3aed30dc 4050 }
877f6a72 4051
3aed30dc
HS
4052 /* prepend current directory to the front */
4053 *SvPVX(sv) = '/';
4054 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
4055 pathlen += (namelen + 1);
877f6a72
NIS
4056
4057#ifdef VOID_CLOSEDIR
3aed30dc 4058 PerlDir_close(dir);
877f6a72 4059#else
3aed30dc
HS
4060 if (PerlDir_close(dir) < 0) {
4061 SV_CWD_RETURN_UNDEF;
4062 }
877f6a72
NIS
4063#endif
4064 }
4065
60e110a8 4066 if (pathlen) {
3aed30dc
HS
4067 SvCUR_set(sv, pathlen);
4068 *SvEND(sv) = '\0';
4069 SvPOK_only(sv);
877f6a72 4070
95a20fc0 4071 if (PerlDir_chdir(SvPVX_const(sv)) < 0) {
3aed30dc
HS
4072 SV_CWD_RETURN_UNDEF;
4073 }
877f6a72
NIS
4074 }
4075 if (PerlLIO_stat(".", &statbuf) < 0) {
3aed30dc 4076 SV_CWD_RETURN_UNDEF;
877f6a72
NIS
4077 }
4078
4079 cdev = statbuf.st_dev;
4080 cino = statbuf.st_ino;
4081
4082 if (cdev != orig_cdev || cino != orig_cino) {
3aed30dc
HS
4083 Perl_croak(aTHX_ "Unstable directory path, "
4084 "current directory changed unexpectedly");
877f6a72 4085 }
877f6a72
NIS
4086
4087 return TRUE;
793b8d8e
JH
4088#endif
4089
877f6a72
NIS
4090#else
4091 return FALSE;
4092#endif
4093}
4094
f4758303 4095/*
b0f01acb
JP
4096=for apidoc scan_version
4097
4098Returns a pointer to the next character after the parsed
4099version string, as well as upgrading the passed in SV to
4100an RV.
4101
4102Function must be called with an already existing SV like
4103
137d6fc0 4104 sv = newSV(0);
abc25d8c 4105 s = scan_version(s, SV *sv, bool qv);
b0f01acb
JP
4106
4107Performs some preprocessing to the string to ensure that
4108it has the correct characteristics of a version. Flags the
4109object if it contains an underscore (which denotes this
abc25d8c 4110is an alpha version). The boolean qv denotes that the version
137d6fc0
JP
4111should be interpreted as if it had multiple decimals, even if
4112it doesn't.
b0f01acb
JP
4113
4114=cut
4115*/
4116
9137345a 4117const char *
e1ec3a88 4118Perl_scan_version(pTHX_ const char *s, SV *rv, bool qv)
b0f01acb 4119{
e0218a61 4120 const char *start;
9137345a
JP
4121 const char *pos;
4122 const char *last;
4123 int saw_period = 0;
cb5772bb 4124 int alpha = 0;
9137345a 4125 int width = 3;
7452cf6a
AL
4126 AV * const av = newAV();
4127 SV * const hv = newSVrv(rv, "version"); /* create an SV and upgrade the RV */
9137345a 4128 (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
cb5772bb 4129
3a242bf8
NC
4130#ifndef NODEFAULT_SHAREKEYS
4131 HvSHAREKEYS_on(hv); /* key-sharing on by default */
4132#endif
9137345a 4133
e0218a61
JP
4134 while (isSPACE(*s)) /* leading whitespace is OK */
4135 s++;
4136
8cb289bd
RGS
4137 start = last = s;
4138
9137345a
JP
4139 if (*s == 'v') {
4140 s++; /* get past 'v' */
4141 qv = 1; /* force quoted version processing */
4142 }
4143
8cb289bd 4144 pos = s;
9137345a
JP
4145
4146 /* pre-scan the input string to check for decimals/underbars */
ad63d80f
JP
4147 while ( *pos == '.' || *pos == '_' || isDIGIT(*pos) )
4148 {
4149 if ( *pos == '.' )
4150 {
cb5772bb 4151 if ( alpha )
5f89c282 4152 Perl_croak(aTHX_ "Invalid version format (underscores before decimal)");
ad63d80f 4153 saw_period++ ;
9137345a 4154 last = pos;
46314c13 4155 }
ad63d80f
JP
4156 else if ( *pos == '_' )
4157 {
cb5772bb 4158 if ( alpha )
5f89c282 4159 Perl_croak(aTHX_ "Invalid version format (multiple underscores)");
cb5772bb 4160 alpha = 1;
9137345a 4161 width = pos - last - 1; /* natural width of sub-version */
ad63d80f
JP
4162 }
4163 pos++;
4164 }
ad63d80f 4165
34ba6322
SP
4166 if ( alpha && !saw_period )
4167 Perl_croak(aTHX_ "Invalid version format (alpha without decimal)");
4168
f34c6aaf
JP
4169 if ( alpha && saw_period && width == 0 )
4170 Perl_croak(aTHX_ "Invalid version format (misplaced _ in number)");
4171
e0218a61 4172 if ( saw_period > 1 )
137d6fc0 4173 qv = 1; /* force quoted version processing */
9137345a
JP
4174
4175 pos = s;
4176
4177 if ( qv )
cb5772bb
RGS
4178 hv_store((HV *)hv, "qv", 2, newSViv(qv), 0);
4179 if ( alpha )
4180 hv_store((HV *)hv, "alpha", 5, newSViv(alpha), 0);
9137345a
JP
4181 if ( !qv && width < 3 )
4182 hv_store((HV *)hv, "width", 5, newSViv(width), 0);
4183
ad63d80f 4184 while (isDIGIT(*pos))
46314c13 4185 pos++;
ad63d80f
JP
4186 if (!isALPHA(*pos)) {
4187 I32 rev;
4188
ad63d80f
JP
4189 for (;;) {
4190 rev = 0;
4191 {
129318bd 4192 /* this is atoi() that delimits on underscores */
9137345a 4193 const char *end = pos;
129318bd
JP
4194 I32 mult = 1;
4195 I32 orev;
9137345a 4196
129318bd
JP
4197 /* the following if() will only be true after the decimal
4198 * point of a version originally created with a bare
4199 * floating point number, i.e. not quoted in any way
4200 */
e0218a61 4201 if ( !qv && s > start && saw_period == 1 ) {
c76df65e 4202 mult *= 100;
129318bd
JP
4203 while ( s < end ) {
4204 orev = rev;
4205 rev += (*s - '0') * mult;
4206 mult /= 10;
32fdb065 4207 if ( PERL_ABS(orev) > PERL_ABS(rev) )
129318bd
JP
4208 Perl_croak(aTHX_ "Integer overflow in version");
4209 s++;
9137345a
JP
4210 if ( *s == '_' )
4211 s++;
129318bd
JP
4212 }
4213 }
4214 else {
4215 while (--end >= s) {
4216 orev = rev;
4217 rev += (*end - '0') * mult;
4218 mult *= 10;
32fdb065 4219 if ( PERL_ABS(orev) > PERL_ABS(rev) )
129318bd
JP
4220 Perl_croak(aTHX_ "Integer overflow in version");
4221 }
4222 }
4223 }
9137345a 4224
129318bd 4225 /* Append revision */
9137345a 4226 av_push(av, newSViv(rev));
c8a14fb6 4227 if ( *pos == '.' )
9137345a
JP
4228 s = ++pos;
4229 else if ( *pos == '_' && isDIGIT(pos[1]) )
ad63d80f
JP
4230 s = ++pos;
4231 else if ( isDIGIT(*pos) )
4232 s = pos;
b0f01acb 4233 else {
ad63d80f
JP
4234 s = pos;
4235 break;
4236 }
9137345a
JP
4237 if ( qv ) {
4238 while ( isDIGIT(*pos) )
4239 pos++;
4240 }
4241 else {
4242 int digits = 0;
4243 while ( ( isDIGIT(*pos) || *pos == '_' ) && digits < 3 ) {
4244 if ( *pos != '_' )
4245 digits++;
4246 pos++;
4247 }
b0f01acb
JP
4248 }
4249 }
4250 }
9137345a
JP
4251 if ( qv ) { /* quoted versions always get at least three terms*/
4252 I32 len = av_len(av);
4edfc503
NC
4253 /* This for loop appears to trigger a compiler bug on OS X, as it
4254 loops infinitely. Yes, len is negative. No, it makes no sense.
4255 Compiler in question is:
4256 gcc version 3.3 20030304 (Apple Computer, Inc. build 1640)
4257 for ( len = 2 - len; len > 0; len-- )
4258 av_push((AV *)sv, newSViv(0));
4259 */
4260 len = 2 - len;
4261 while (len-- > 0)
9137345a 4262 av_push(av, newSViv(0));
b9381830 4263 }
9137345a 4264
8cb289bd
RGS
4265 /* need to save off the current version string for later */
4266 if ( s > start ) {
4267 SV * orig = newSVpvn(start,s-start);
4268 if ( qv && saw_period == 1 && *start != 'v' ) {
4269 /* need to insert a v to be consistent */
4270 sv_insert(orig, 0, 0, "v", 1);
4271 }
4272 hv_store((HV *)hv, "original", 8, orig, 0);
4273 }
4274 else {
4275 hv_store((HV *)hv, "original", 8, newSVpvn("0",1), 0);
9137345a 4276 av_push(av, newSViv(0));
8cb289bd
RGS
4277 }
4278
4279 /* And finally, store the AV in the hash */
4280 hv_store((HV *)hv, "version", 7, newRV_noinc((SV *)av), 0);
9137345a 4281
92dcf8ce
JP
4282 /* fix RT#19517 - special case 'undef' as string */
4283 if ( *s == 'u' && strEQ(s,"undef") ) {
4284 s += 5;
4285 }
4286
9137345a 4287 return s;
b0f01acb
JP
4288}
4289
4290/*
4291=for apidoc new_version
4292
4293Returns a new version object based on the passed in SV:
4294
4295 SV *sv = new_version(SV *ver);
4296
4297Does not alter the passed in ver SV. See "upg_version" if you
4298want to upgrade the SV.
4299
4300=cut
4301*/
4302
4303SV *
4304Perl_new_version(pTHX_ SV *ver)
4305{
97aff369 4306 dVAR;
2d03de9c 4307 SV * const rv = newSV(0);
d7aa5382
JP
4308 if ( sv_derived_from(ver,"version") ) /* can just copy directly */
4309 {
4310 I32 key;
53c1dcc0 4311 AV * const av = newAV();
9137345a
JP
4312 AV *sav;
4313 /* This will get reblessed later if a derived class*/
e0218a61 4314 SV * const hv = newSVrv(rv, "version");
9137345a 4315 (void)sv_upgrade(hv, SVt_PVHV); /* needs to be an HV type */
3a242bf8
NC
4316#ifndef NODEFAULT_SHAREKEYS
4317 HvSHAREKEYS_on(hv); /* key-sharing on by default */
4318#endif
9137345a
JP
4319
4320 if ( SvROK(ver) )
4321 ver = SvRV(ver);
4322
4323 /* Begin copying all of the elements */
4324 if ( hv_exists((HV *)ver, "qv", 2) )
4325 hv_store((HV *)hv, "qv", 2, &PL_sv_yes, 0);
4326
4327 if ( hv_exists((HV *)ver, "alpha", 5) )
4328 hv_store((HV *)hv, "alpha", 5, &PL_sv_yes, 0);
4329
4330 if ( hv_exists((HV*)ver, "width", 5 ) )
d7aa5382 4331 {
017a3ce5 4332 const I32 width = SvIV(*hv_fetchs((HV*)ver, "width", FALSE));
9137345a 4333 hv_store((HV *)hv, "width", 5, newSViv(width), 0);
d7aa5382 4334 }
9137345a 4335
8cb289bd
RGS
4336 if ( hv_exists((HV*)ver, "original", 8 ) )
4337 {
4338 SV * pv = *hv_fetchs((HV*)ver, "original", FALSE);
4339 hv_store((HV *)hv, "original", 8, newSVsv(pv), 0);
4340 }
4341
017a3ce5 4342 sav = (AV *)SvRV(*hv_fetchs((HV*)ver, "version", FALSE));
9137345a
JP
4343 /* This will get reblessed later if a derived class*/
4344 for ( key = 0; key <= av_len(sav); key++ )
4345 {
4346 const I32 rev = SvIV(*av_fetch(sav, key, FALSE));
4347 av_push(av, newSViv(rev));
4348 }
4349
cb5772bb 4350 hv_store((HV *)hv, "version", 7, newRV_noinc((SV *)av), 0);
d7aa5382
JP
4351 return rv;
4352 }
ad63d80f 4353#ifdef SvVOK
4f2da183 4354 {
3c21775b 4355 const MAGIC* const mg = SvVSTRING_mg(ver);
4f2da183
NC
4356 if ( mg ) { /* already a v-string */
4357 const STRLEN len = mg->mg_len;
4358 char * const version = savepvn( (const char*)mg->mg_ptr, len);
4359 sv_setpvn(rv,version,len);
8cb289bd
RGS
4360 /* this is for consistency with the pure Perl class */
4361 if ( *version != 'v' )
4362 sv_insert(rv, 0, 0, "v", 1);
4f2da183
NC
4363 Safefree(version);
4364 }
4365 else {
ad63d80f 4366#endif
4f2da183 4367 sv_setsv(rv,ver); /* make a duplicate */
137d6fc0 4368#ifdef SvVOK
4f2da183 4369 }
26ec6fc3 4370 }
137d6fc0 4371#endif
ac0e6a2f 4372 return upg_version(rv, FALSE);
b0f01acb
JP
4373}
4374
4375/*
4376=for apidoc upg_version
4377
4378In-place upgrade of the supplied SV to a version object.
4379
ac0e6a2f 4380 SV *sv = upg_version(SV *sv, bool qv);
b0f01acb 4381
ac0e6a2f
RGS
4382Returns a pointer to the upgraded SV. Set the boolean qv if you want
4383to force this SV to be interpreted as an "extended" version.
b0f01acb
JP
4384
4385=cut
4386*/
4387
4388SV *
ac0e6a2f 4389Perl_upg_version(pTHX_ SV *ver, bool qv)
b0f01acb 4390{
cd57dc11 4391 const char *version, *s;
4f2da183
NC
4392#ifdef SvVOK
4393 const MAGIC *mg;
4394#endif
137d6fc0 4395
ac0e6a2f 4396 if ( SvNOK(ver) && !( SvPOK(ver) && sv_len(ver) == 3 ) )
137d6fc0 4397 {
ac0e6a2f 4398 /* may get too much accuracy */
137d6fc0 4399 char tbuf[64];
b5b5a8f0
RGS
4400#ifdef USE_LOCALE_NUMERIC
4401 char *loc = setlocale(LC_NUMERIC, "C");
4402#endif
63e3af20 4403 STRLEN len = my_snprintf(tbuf, sizeof(tbuf), "%.9"NVff, SvNVX(ver));
b5b5a8f0
RGS
4404#ifdef USE_LOCALE_NUMERIC
4405 setlocale(LC_NUMERIC, loc);
4406#endif
c8a14fb6 4407 while (tbuf[len-1] == '0' && len > 0) len--;
8cb289bd 4408 if ( tbuf[len-1] == '.' ) len--; /* eat the trailing decimal */
86c11942 4409 version = savepvn(tbuf, len);
137d6fc0 4410 }
ad63d80f 4411#ifdef SvVOK
666cce26 4412 else if ( (mg = SvVSTRING_mg(ver)) ) { /* already a v-string */
ad63d80f 4413 version = savepvn( (const char*)mg->mg_ptr,mg->mg_len );
137d6fc0 4414 qv = 1;
b0f01acb 4415 }
ad63d80f 4416#endif
137d6fc0
JP
4417 else /* must be a string or something like a string */
4418 {
ac0e6a2f
RGS
4419 STRLEN len;
4420 version = savepv(SvPV(ver,len));
4421#ifndef SvVOK
4422# if PERL_VERSION > 5
4423 /* This will only be executed for 5.6.0 - 5.8.0 inclusive */
4424 if ( len == 3 && !instr(version,".") && !instr(version,"_") ) {
4425 /* may be a v-string */
4426 SV * const nsv = sv_newmortal();
4427 const char *nver;
4428 const char *pos;
4429 int saw_period = 0;
8cb289bd 4430 sv_setpvf(nsv,"v%vd",ver);
ac0e6a2f
RGS
4431 pos = nver = savepv(SvPV_nolen(nsv));
4432
4433 /* scan the resulting formatted string */
8cb289bd 4434 pos++; /* skip the leading 'v' */
ac0e6a2f
RGS
4435 while ( *pos == '.' || isDIGIT(*pos) ) {
4436 if ( *pos == '.' )
4437 saw_period++ ;
4438 pos++;
4439 }
4440
4441 /* is definitely a v-string */
4442 if ( saw_period == 2 ) {
4443 Safefree(version);
4444 version = nver;
4445 }
4446 }
4447# endif
4448#endif
137d6fc0 4449 }
92dcf8ce 4450
cd57dc11 4451 s = scan_version(version, ver, qv);
808ee47e 4452 if ( *s != '\0' )
92dcf8ce 4453 if(ckWARN(WARN_MISC))
808ee47e 4454 Perl_warner(aTHX_ packWARN(WARN_MISC),
92dcf8ce
JP
4455 "Version string '%s' contains invalid data; "
4456 "ignoring: '%s'", version, s);
137d6fc0 4457 Safefree(version);
ad63d80f 4458 return ver;
b0f01acb
JP
4459}
4460
e0218a61
JP
4461/*
4462=for apidoc vverify
4463
4464Validates that the SV contains a valid version object.
4465
4466 bool vverify(SV *vobj);
4467
4468Note that it only confirms the bare minimum structure (so as not to get
4469confused by derived classes which may contain additional hash entries):
4470
4471=over 4
4472
cb5772bb 4473=item * The SV contains a [reference to a] hash
e0218a61
JP
4474
4475=item * The hash contains a "version" key
4476
cb5772bb 4477=item * The "version" key has [a reference to] an AV as its value
e0218a61
JP
4478
4479=back
4480
4481=cut
4482*/
4483
4484bool
4485Perl_vverify(pTHX_ SV *vs)
4486{
4487 SV *sv;
4488 if ( SvROK(vs) )
4489 vs = SvRV(vs);
4490
4491 /* see if the appropriate elements exist */
4492 if ( SvTYPE(vs) == SVt_PVHV
4493 && hv_exists((HV*)vs, "version", 7)
017a3ce5 4494 && (sv = SvRV(*hv_fetchs((HV*)vs, "version", FALSE)))
e0218a61
JP
4495 && SvTYPE(sv) == SVt_PVAV )
4496 return TRUE;
4497 else
4498 return FALSE;
4499}
b0f01acb
JP
4500
4501/*
4502=for apidoc vnumify
4503
ad63d80f
JP
4504Accepts a version object and returns the normalized floating
4505point representation. Call like:
b0f01acb 4506
ad63d80f 4507 sv = vnumify(rv);
b0f01acb 4508
ad63d80f
JP
4509NOTE: you can pass either the object directly or the SV
4510contained within the RV.
b0f01acb
JP
4511
4512=cut
4513*/
4514
4515SV *
ad63d80f 4516Perl_vnumify(pTHX_ SV *vs)
b0f01acb 4517{
ad63d80f 4518 I32 i, len, digit;
9137345a
JP
4519 int width;
4520 bool alpha = FALSE;
53c1dcc0 4521 SV * const sv = newSV(0);
9137345a 4522 AV *av;
ad63d80f
JP
4523 if ( SvROK(vs) )
4524 vs = SvRV(vs);
9137345a 4525
e0218a61
JP
4526 if ( !vverify(vs) )
4527 Perl_croak(aTHX_ "Invalid version object");
4528
9137345a
JP
4529 /* see if various flags exist */
4530 if ( hv_exists((HV*)vs, "alpha", 5 ) )
4531 alpha = TRUE;
4532 if ( hv_exists((HV*)vs, "width", 5 ) )
017a3ce5 4533 width = SvIV(*hv_fetchs((HV*)vs, "width", FALSE));
9137345a
JP
4534 else
4535 width = 3;
4536
4537
4538 /* attempt to retrieve the version array */
017a3ce5 4539 if ( !(av = (AV *)SvRV(*hv_fetchs((HV*)vs, "version", FALSE)) ) ) {
396482e1 4540 sv_catpvs(sv,"0");
9137345a
JP
4541 return sv;
4542 }
4543
4544 len = av_len(av);
46314c13
JP
4545 if ( len == -1 )
4546 {
396482e1 4547 sv_catpvs(sv,"0");
46314c13
JP
4548 return sv;
4549 }
9137345a
JP
4550
4551 digit = SvIV(*av_fetch(av, 0, 0));
261fcdab 4552 Perl_sv_setpvf(aTHX_ sv, "%d.", (int)PERL_ABS(digit));
13f8f398 4553 for ( i = 1 ; i < len ; i++ )
b0f01acb 4554 {
9137345a
JP
4555 digit = SvIV(*av_fetch(av, i, 0));
4556 if ( width < 3 ) {
43eaf59d 4557 const int denom = (width == 2 ? 10 : 100);
53c1dcc0 4558 const div_t term = div((int)PERL_ABS(digit),denom);
261fcdab 4559 Perl_sv_catpvf(aTHX_ sv, "%0*d_%d", width, term.quot, term.rem);
9137345a
JP
4560 }
4561 else {
261fcdab 4562 Perl_sv_catpvf(aTHX_ sv, "%0*d", width, (int)digit);
9137345a 4563 }
b0f01acb 4564 }
13f8f398
JP
4565
4566 if ( len > 0 )
4567 {
9137345a
JP
4568 digit = SvIV(*av_fetch(av, len, 0));
4569 if ( alpha && width == 3 ) /* alpha version */
396482e1 4570 sv_catpvs(sv,"_");
261fcdab 4571 Perl_sv_catpvf(aTHX_ sv, "%0*d", width, (int)digit);
13f8f398 4572 }
e0218a61 4573 else /* len == 0 */
13f8f398 4574 {
396482e1 4575 sv_catpvs(sv, "000");
13f8f398 4576 }
b0f01acb
JP
4577 return sv;
4578}
4579
4580/*
b9381830 4581=for apidoc vnormal
b0f01acb 4582
ad63d80f
JP
4583Accepts a version object and returns the normalized string
4584representation. Call like:
b0f01acb 4585
b9381830 4586 sv = vnormal(rv);
b0f01acb 4587
ad63d80f
JP
4588NOTE: you can pass either the object directly or the SV
4589contained within the RV.
b0f01acb
JP
4590
4591=cut
4592*/
4593
4594SV *
b9381830 4595Perl_vnormal(pTHX_ SV *vs)
b0f01acb 4596{
ad63d80f 4597 I32 i, len, digit;
9137345a 4598 bool alpha = FALSE;
2d03de9c 4599 SV * const sv = newSV(0);
9137345a 4600 AV *av;
ad63d80f
JP
4601 if ( SvROK(vs) )
4602 vs = SvRV(vs);
9137345a 4603
e0218a61
JP
4604 if ( !vverify(vs) )
4605 Perl_croak(aTHX_ "Invalid version object");
4606
9137345a
JP
4607 if ( hv_exists((HV*)vs, "alpha", 5 ) )
4608 alpha = TRUE;
017a3ce5 4609 av = (AV *)SvRV(*hv_fetchs((HV*)vs, "version", FALSE));
9137345a
JP
4610
4611 len = av_len(av);
e0218a61
JP
4612 if ( len == -1 )
4613 {
396482e1 4614 sv_catpvs(sv,"");
46314c13
JP
4615 return sv;
4616 }
9137345a 4617 digit = SvIV(*av_fetch(av, 0, 0));
261fcdab 4618 Perl_sv_setpvf(aTHX_ sv, "v%"IVdf, (IV)digit);
cb5772bb 4619 for ( i = 1 ; i < len ; i++ ) {
9137345a 4620 digit = SvIV(*av_fetch(av, i, 0));
261fcdab 4621 Perl_sv_catpvf(aTHX_ sv, ".%"IVdf, (IV)digit);
9137345a
JP
4622 }
4623
e0218a61
JP
4624 if ( len > 0 )
4625 {
9137345a
JP
4626 /* handle last digit specially */
4627 digit = SvIV(*av_fetch(av, len, 0));
4628 if ( alpha )
261fcdab 4629 Perl_sv_catpvf(aTHX_ sv, "_%"IVdf, (IV)digit);
ad63d80f 4630 else
261fcdab 4631 Perl_sv_catpvf(aTHX_ sv, ".%"IVdf, (IV)digit);
b0f01acb 4632 }
9137345a 4633
137d6fc0
JP
4634 if ( len <= 2 ) { /* short version, must be at least three */
4635 for ( len = 2 - len; len != 0; len-- )
396482e1 4636 sv_catpvs(sv,".0");
137d6fc0 4637 }
b0f01acb 4638 return sv;
9137345a 4639}
b0f01acb 4640
ad63d80f 4641/*
b9381830
JP
4642=for apidoc vstringify
4643
4644In order to maintain maximum compatibility with earlier versions
4645of Perl, this function will return either the floating point
4646notation or the multiple dotted notation, depending on whether
4647the original version contained 1 or more dots, respectively
4648
4649=cut
4650*/
4651
4652SV *
4653Perl_vstringify(pTHX_ SV *vs)
4654{
8cb289bd 4655 SV *pv;
b9381830
JP
4656 if ( SvROK(vs) )
4657 vs = SvRV(vs);
e0218a61
JP
4658
4659 if ( !vverify(vs) )
4660 Perl_croak(aTHX_ "Invalid version object");
4661
8cb289bd
RGS
4662 pv = *hv_fetchs((HV*)vs, "original", FALSE);
4663 if ( SvPOK(pv) )
4664 return newSVsv(pv);
9137345a 4665 else
8cb289bd 4666 return &PL_sv_undef;
b9381830
JP
4667}
4668
4669/*
ad63d80f
JP
4670=for apidoc vcmp
4671
4672Version object aware cmp. Both operands must already have been
4673converted into version objects.
4674
4675=cut
4676*/
4677
4678int
9137345a 4679Perl_vcmp(pTHX_ SV *lhv, SV *rhv)
ad63d80f
JP
4680{
4681 I32 i,l,m,r,retval;
9137345a
JP
4682 bool lalpha = FALSE;
4683 bool ralpha = FALSE;
4684 I32 left = 0;
4685 I32 right = 0;
4686 AV *lav, *rav;
4687 if ( SvROK(lhv) )
4688 lhv = SvRV(lhv);
4689 if ( SvROK(rhv) )
4690 rhv = SvRV(rhv);
4691
e0218a61
JP
4692 if ( !vverify(lhv) )
4693 Perl_croak(aTHX_ "Invalid version object");
4694
4695 if ( !vverify(rhv) )
4696 Perl_croak(aTHX_ "Invalid version object");
4697
9137345a 4698 /* get the left hand term */
017a3ce5 4699 lav = (AV *)SvRV(*hv_fetchs((HV*)lhv, "version", FALSE));
9137345a
JP
4700 if ( hv_exists((HV*)lhv, "alpha", 5 ) )
4701 lalpha = TRUE;
4702
4703 /* and the right hand term */
017a3ce5 4704 rav = (AV *)SvRV(*hv_fetchs((HV*)rhv, "version", FALSE));
9137345a
JP
4705 if ( hv_exists((HV*)rhv, "alpha", 5 ) )
4706 ralpha = TRUE;
4707
4708 l = av_len(lav);
4709 r = av_len(rav);
ad63d80f
JP
4710 m = l < r ? l : r;
4711 retval = 0;
4712 i = 0;
4713 while ( i <= m && retval == 0 )
4714 {
9137345a
JP
4715 left = SvIV(*av_fetch(lav,i,0));
4716 right = SvIV(*av_fetch(rav,i,0));
4717 if ( left < right )
ad63d80f 4718 retval = -1;
9137345a 4719 if ( left > right )
ad63d80f
JP
4720 retval = +1;
4721 i++;
4722 }
4723
9137345a
JP
4724 /* tiebreaker for alpha with identical terms */
4725 if ( retval == 0 && l == r && left == right && ( lalpha || ralpha ) )
4726 {
4727 if ( lalpha && !ralpha )
4728 {
4729 retval = -1;
4730 }
4731 else if ( ralpha && !lalpha)
4732 {
4733 retval = +1;
4734 }
4735 }
4736
137d6fc0 4737 if ( l != r && retval == 0 ) /* possible match except for trailing 0's */
129318bd 4738 {
137d6fc0 4739 if ( l < r )
129318bd 4740 {
137d6fc0
JP
4741 while ( i <= r && retval == 0 )
4742 {
9137345a 4743 if ( SvIV(*av_fetch(rav,i,0)) != 0 )
137d6fc0
JP
4744 retval = -1; /* not a match after all */
4745 i++;
4746 }
4747 }
4748 else
4749 {
4750 while ( i <= l && retval == 0 )
4751 {
9137345a 4752 if ( SvIV(*av_fetch(lav,i,0)) != 0 )
137d6fc0
JP
4753 retval = +1; /* not a match after all */
4754 i++;
4755 }
129318bd
JP
4756 }
4757 }
ad63d80f
JP
4758 return retval;
4759}
4760
c95c94b1 4761#if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET) && defined(SOCK_DGRAM) && defined(HAS_SELECT)
2bc69dc4
NIS
4762# define EMULATE_SOCKETPAIR_UDP
4763#endif
4764
4765#ifdef EMULATE_SOCKETPAIR_UDP
02fc2eee
NC
4766static int
4767S_socketpair_udp (int fd[2]) {
e10bb1e9 4768 dTHX;
02fc2eee
NC
4769 /* Fake a datagram socketpair using UDP to localhost. */
4770 int sockets[2] = {-1, -1};
4771 struct sockaddr_in addresses[2];
4772 int i;
3aed30dc 4773 Sock_size_t size = sizeof(struct sockaddr_in);
ae92b34e 4774 unsigned short port;
02fc2eee
NC
4775 int got;
4776
3aed30dc 4777 memset(&addresses, 0, sizeof(addresses));
02fc2eee
NC
4778 i = 1;
4779 do {
3aed30dc
HS
4780 sockets[i] = PerlSock_socket(AF_INET, SOCK_DGRAM, PF_INET);
4781 if (sockets[i] == -1)
4782 goto tidy_up_and_fail;
4783
4784 addresses[i].sin_family = AF_INET;
4785 addresses[i].sin_addr.s_addr = htonl(INADDR_LOOPBACK);
4786 addresses[i].sin_port = 0; /* kernel choses port. */
4787 if (PerlSock_bind(sockets[i], (struct sockaddr *) &addresses[i],
4788 sizeof(struct sockaddr_in)) == -1)
4789 goto tidy_up_and_fail;
02fc2eee
NC
4790 } while (i--);
4791
4792 /* Now have 2 UDP sockets. Find out which port each is connected to, and
4793 for each connect the other socket to it. */
4794 i = 1;
4795 do {
3aed30dc
HS
4796 if (PerlSock_getsockname(sockets[i], (struct sockaddr *) &addresses[i],
4797 &size) == -1)
4798 goto tidy_up_and_fail;
4799 if (size != sizeof(struct sockaddr_in))
4800 goto abort_tidy_up_and_fail;
4801 /* !1 is 0, !0 is 1 */
4802 if (PerlSock_connect(sockets[!i], (struct sockaddr *) &addresses[i],
4803 sizeof(struct sockaddr_in)) == -1)
4804 goto tidy_up_and_fail;
02fc2eee
NC
4805 } while (i--);
4806
4807 /* Now we have 2 sockets connected to each other. I don't trust some other
4808 process not to have already sent a packet to us (by random) so send
4809 a packet from each to the other. */
4810 i = 1;
4811 do {
3aed30dc
HS
4812 /* I'm going to send my own port number. As a short.
4813 (Who knows if someone somewhere has sin_port as a bitfield and needs
4814 this routine. (I'm assuming crays have socketpair)) */
4815 port = addresses[i].sin_port;
4816 got = PerlLIO_write(sockets[i], &port, sizeof(port));
4817 if (got != sizeof(port)) {
4818 if (got == -1)
4819 goto tidy_up_and_fail;
4820 goto abort_tidy_up_and_fail;
4821 }
02fc2eee
NC
4822 } while (i--);
4823
4824 /* Packets sent. I don't trust them to have arrived though.
4825 (As I understand it Solaris TCP stack is multithreaded. Non-blocking
4826 connect to localhost will use a second kernel thread. In 2.6 the
4827 first thread running the connect() returns before the second completes,
4828 so EINPROGRESS> In 2.7 the improved stack is faster and connect()
4829 returns 0. Poor programs have tripped up. One poor program's authors'
4830 had a 50-1 reverse stock split. Not sure how connected these were.)
4831 So I don't trust someone not to have an unpredictable UDP stack.
4832 */
4833
4834 {
3aed30dc
HS
4835 struct timeval waitfor = {0, 100000}; /* You have 0.1 seconds */
4836 int max = sockets[1] > sockets[0] ? sockets[1] : sockets[0];
4837 fd_set rset;
4838
4839 FD_ZERO(&rset);
ea407a0c
NC
4840 FD_SET((unsigned int)sockets[0], &rset);
4841 FD_SET((unsigned int)sockets[1], &rset);
3aed30dc
HS
4842
4843 got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
4844 if (got != 2 || !FD_ISSET(sockets[0], &rset)
4845 || !FD_ISSET(sockets[1], &rset)) {
4846 /* I hope this is portable and appropriate. */
4847 if (got == -1)
4848 goto tidy_up_and_fail;
4849 goto abort_tidy_up_and_fail;
4850 }
02fc2eee 4851 }
f4758303 4852
02fc2eee
NC
4853 /* And the paranoia department even now doesn't trust it to have arrive
4854 (hence MSG_DONTWAIT). Or that what arrives was sent by us. */
4855 {
3aed30dc
HS
4856 struct sockaddr_in readfrom;
4857 unsigned short buffer[2];
02fc2eee 4858
3aed30dc
HS
4859 i = 1;
4860 do {
02fc2eee 4861#ifdef MSG_DONTWAIT
3aed30dc
HS
4862 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4863 sizeof(buffer), MSG_DONTWAIT,
4864 (struct sockaddr *) &readfrom, &size);
02fc2eee 4865#else
3aed30dc
HS
4866 got = PerlSock_recvfrom(sockets[i], (char *) &buffer,
4867 sizeof(buffer), 0,
4868 (struct sockaddr *) &readfrom, &size);
e10bb1e9 4869#endif
02fc2eee 4870
3aed30dc
HS
4871 if (got == -1)
4872 goto tidy_up_and_fail;
4873 if (got != sizeof(port)
4874 || size != sizeof(struct sockaddr_in)
4875 /* Check other socket sent us its port. */
4876 || buffer[0] != (unsigned short) addresses[!i].sin_port
4877 /* Check kernel says we got the datagram from that socket */
4878 || readfrom.sin_family != addresses[!i].sin_family
4879 || readfrom.sin_addr.s_addr != addresses[!i].sin_addr.s_addr
4880 || readfrom.sin_port != addresses[!i].sin_port)
4881 goto abort_tidy_up_and_fail;
4882 } while (i--);
02fc2eee
NC
4883 }
4884 /* My caller (my_socketpair) has validated that this is non-NULL */
4885 fd[0] = sockets[0];
4886 fd[1] = sockets[1];
4887 /* I hereby declare this connection open. May God bless all who cross
4888 her. */
4889 return 0;
4890
4891 abort_tidy_up_and_fail:
4892 errno = ECONNABORTED;
4893 tidy_up_and_fail:
4894 {
4373e329 4895 const int save_errno = errno;
3aed30dc
HS
4896 if (sockets[0] != -1)
4897 PerlLIO_close(sockets[0]);
4898 if (sockets[1] != -1)
4899 PerlLIO_close(sockets[1]);
4900 errno = save_errno;
4901 return -1;
02fc2eee
NC
4902 }
4903}
85ca448a 4904#endif /* EMULATE_SOCKETPAIR_UDP */
02fc2eee 4905
b5ac89c3 4906#if !defined(HAS_SOCKETPAIR) && defined(HAS_SOCKET) && defined(AF_INET) && defined(PF_INET)
02fc2eee
NC
4907int
4908Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
4909 /* Stevens says that family must be AF_LOCAL, protocol 0.
2948e0bd 4910 I'm going to enforce that, then ignore it, and use TCP (or UDP). */
e10bb1e9 4911 dTHX;
02fc2eee
NC
4912 int listener = -1;
4913 int connector = -1;
4914 int acceptor = -1;
4915 struct sockaddr_in listen_addr;
4916 struct sockaddr_in connect_addr;
4917 Sock_size_t size;
4918
50458334
JH
4919 if (protocol
4920#ifdef AF_UNIX
4921 || family != AF_UNIX
4922#endif
3aed30dc
HS
4923 ) {
4924 errno = EAFNOSUPPORT;
4925 return -1;
02fc2eee 4926 }
2948e0bd 4927 if (!fd) {
3aed30dc
HS
4928 errno = EINVAL;
4929 return -1;
2948e0bd 4930 }
02fc2eee 4931
2bc69dc4 4932#ifdef EMULATE_SOCKETPAIR_UDP
02fc2eee 4933 if (type == SOCK_DGRAM)
3aed30dc 4934 return S_socketpair_udp(fd);
2bc69dc4 4935#endif
02fc2eee 4936
3aed30dc 4937 listener = PerlSock_socket(AF_INET, type, 0);
02fc2eee 4938 if (listener == -1)
3aed30dc
HS
4939 return -1;
4940 memset(&listen_addr, 0, sizeof(listen_addr));
02fc2eee 4941 listen_addr.sin_family = AF_INET;
3aed30dc 4942 listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
02fc2eee 4943 listen_addr.sin_port = 0; /* kernel choses port. */
3aed30dc
HS
4944 if (PerlSock_bind(listener, (struct sockaddr *) &listen_addr,
4945 sizeof(listen_addr)) == -1)
4946 goto tidy_up_and_fail;
e10bb1e9 4947 if (PerlSock_listen(listener, 1) == -1)
3aed30dc 4948 goto tidy_up_and_fail;
02fc2eee 4949
3aed30dc 4950 connector = PerlSock_socket(AF_INET, type, 0);
02fc2eee 4951 if (connector == -1)
3aed30dc 4952 goto tidy_up_and_fail;
02fc2eee 4953 /* We want to find out the port number to connect to. */
3aed30dc
HS
4954 size = sizeof(connect_addr);
4955 if (PerlSock_getsockname(listener, (struct sockaddr *) &connect_addr,
4956 &size) == -1)
4957 goto tidy_up_and_fail;
4958 if (size != sizeof(connect_addr))
4959 goto abort_tidy_up_and_fail;
e10bb1e9 4960 if (PerlSock_connect(connector, (struct sockaddr *) &connect_addr,
3aed30dc
HS
4961 sizeof(connect_addr)) == -1)
4962 goto tidy_up_and_fail;
02fc2eee 4963
3aed30dc
HS
4964 size = sizeof(listen_addr);
4965 acceptor = PerlSock_accept(listener, (struct sockaddr *) &listen_addr,
4966 &size);
02fc2eee 4967 if (acceptor == -1)
3aed30dc
HS
4968 goto tidy_up_and_fail;
4969 if (size != sizeof(listen_addr))
4970 goto abort_tidy_up_and_fail;
4971 PerlLIO_close(listener);
02fc2eee
NC
4972 /* Now check we are talking to ourself by matching port and host on the
4973 two sockets. */
3aed30dc
HS
4974 if (PerlSock_getsockname(connector, (struct sockaddr *) &connect_addr,
4975 &size) == -1)
4976 goto tidy_up_and_fail;
4977 if (size != sizeof(connect_addr)
4978 || listen_addr.sin_family != connect_addr.sin_family
4979 || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr
4980 || listen_addr.sin_port != connect_addr.sin_port) {
4981 goto abort_tidy_up_and_fail;
02fc2eee
NC
4982 }
4983 fd[0] = connector;
4984 fd[1] = acceptor;
4985 return 0;
4986
4987 abort_tidy_up_and_fail:
27da23d5
JH
4988#ifdef ECONNABORTED
4989 errno = ECONNABORTED; /* This would be the standard thing to do. */
4990#else
4991# ifdef ECONNREFUSED
4992 errno = ECONNREFUSED; /* E.g. Symbian does not have ECONNABORTED. */
4993# else
4994 errno = ETIMEDOUT; /* Desperation time. */
4995# endif
4996#endif
02fc2eee
NC
4997 tidy_up_and_fail:
4998 {
7452cf6a 4999 const int save_errno = errno;
3aed30dc
HS
5000 if (listener != -1)
5001 PerlLIO_close(listener);
5002 if (connector != -1)
5003 PerlLIO_close(connector);
5004 if (acceptor != -1)
5005 PerlLIO_close(acceptor);
5006 errno = save_errno;
5007 return -1;
02fc2eee
NC
5008 }
5009}
85ca448a 5010#else
48ea76d1
JH
5011/* In any case have a stub so that there's code corresponding
5012 * to the my_socketpair in global.sym. */
5013int
5014Perl_my_socketpair (int family, int type, int protocol, int fd[2]) {
daf16542 5015#ifdef HAS_SOCKETPAIR
48ea76d1 5016 return socketpair(family, type, protocol, fd);
daf16542
JH
5017#else
5018 return -1;
5019#endif
48ea76d1
JH
5020}
5021#endif
5022
68795e93
NIS
5023/*
5024
5025=for apidoc sv_nosharing
5026
5027Dummy routine which "shares" an SV when there is no sharing module present.
d5b2b27b
NC
5028Or "locks" it. Or "unlocks" it. In other words, ignores its single SV argument.
5029Exists to avoid test for a NULL function pointer and because it could
5030potentially warn under some level of strict-ness.
68795e93
NIS
5031
5032=cut
5033*/
5034
5035void
5036Perl_sv_nosharing(pTHX_ SV *sv)
5037{
96a5add6 5038 PERL_UNUSED_CONTEXT;
53c1dcc0 5039 PERL_UNUSED_ARG(sv);
68795e93
NIS
5040}
5041
a05d7ebb 5042U32
e1ec3a88 5043Perl_parse_unicode_opts(pTHX_ const char **popt)
a05d7ebb 5044{
e1ec3a88 5045 const char *p = *popt;
a05d7ebb
JH
5046 U32 opt = 0;
5047
5048 if (*p) {
5049 if (isDIGIT(*p)) {
5050 opt = (U32) atoi(p);
35da51f7
AL
5051 while (isDIGIT(*p))
5052 p++;
7c91f477 5053 if (*p && *p != '\n' && *p != '\r')
a05d7ebb
JH
5054 Perl_croak(aTHX_ "Unknown Unicode option letter '%c'", *p);
5055 }
5056 else {
5057 for (; *p; p++) {
5058 switch (*p) {
5059 case PERL_UNICODE_STDIN:
5060 opt |= PERL_UNICODE_STDIN_FLAG; break;
5061 case PERL_UNICODE_STDOUT:
5062 opt |= PERL_UNICODE_STDOUT_FLAG; break;
5063 case PERL_UNICODE_STDERR:
5064 opt |= PERL_UNICODE_STDERR_FLAG; break;
5065 case PERL_UNICODE_STD:
5066 opt |= PERL_UNICODE_STD_FLAG; break;
5067 case PERL_UNICODE_IN:
5068 opt |= PERL_UNICODE_IN_FLAG; break;
5069 case PERL_UNICODE_OUT:
5070 opt |= PERL_UNICODE_OUT_FLAG; break;
5071 case PERL_UNICODE_INOUT:
5072 opt |= PERL_UNICODE_INOUT_FLAG; break;
5073 case PERL_UNICODE_LOCALE:
5074 opt |= PERL_UNICODE_LOCALE_FLAG; break;
5075 case PERL_UNICODE_ARGV:
5076 opt |= PERL_UNICODE_ARGV_FLAG; break;
5a22a2bb
NC
5077 case PERL_UNICODE_UTF8CACHEASSERT:
5078 opt |= PERL_UNICODE_UTF8CACHEASSERT_FLAG; break;
a05d7ebb 5079 default:
7c91f477
JH
5080 if (*p != '\n' && *p != '\r')
5081 Perl_croak(aTHX_
5082 "Unknown Unicode option letter '%c'", *p);
a05d7ebb
JH
5083 }
5084 }
5085 }
5086 }
5087 else
5088 opt = PERL_UNICODE_DEFAULT_FLAGS;
5089
5090 if (opt & ~PERL_UNICODE_ALL_FLAGS)
06e66572 5091 Perl_croak(aTHX_ "Unknown Unicode option value %"UVuf,
a05d7ebb
JH
5092 (UV) (opt & ~PERL_UNICODE_ALL_FLAGS));
5093
5094 *popt = p;
5095
5096 return opt;
5097}
5098
132efe8b
JH
5099U32
5100Perl_seed(pTHX)
5101{
97aff369 5102 dVAR;
132efe8b
JH
5103 /*
5104 * This is really just a quick hack which grabs various garbage
5105 * values. It really should be a real hash algorithm which
5106 * spreads the effect of every input bit onto every output bit,
5107 * if someone who knows about such things would bother to write it.
5108 * Might be a good idea to add that function to CORE as well.
5109 * No numbers below come from careful analysis or anything here,
5110 * except they are primes and SEED_C1 > 1E6 to get a full-width
5111 * value from (tv_sec * SEED_C1 + tv_usec). The multipliers should
5112 * probably be bigger too.
5113 */
5114#if RANDBITS > 16
5115# define SEED_C1 1000003
5116#define SEED_C4 73819
5117#else
5118# define SEED_C1 25747
5119#define SEED_C4 20639
5120#endif
5121#define SEED_C2 3
5122#define SEED_C3 269
5123#define SEED_C5 26107
5124
5125#ifndef PERL_NO_DEV_RANDOM
5126 int fd;
5127#endif
5128 U32 u;
5129#ifdef VMS
5130# include <starlet.h>
5131 /* when[] = (low 32 bits, high 32 bits) of time since epoch
5132 * in 100-ns units, typically incremented ever 10 ms. */
5133 unsigned int when[2];
5134#else
5135# ifdef HAS_GETTIMEOFDAY
5136 struct timeval when;
5137# else
5138 Time_t when;
5139# endif
5140#endif
5141
5142/* This test is an escape hatch, this symbol isn't set by Configure. */
5143#ifndef PERL_NO_DEV_RANDOM
5144#ifndef PERL_RANDOM_DEVICE
5145 /* /dev/random isn't used by default because reads from it will block
5146 * if there isn't enough entropy available. You can compile with
5147 * PERL_RANDOM_DEVICE to it if you'd prefer Perl to block until there
5148 * is enough real entropy to fill the seed. */
5149# define PERL_RANDOM_DEVICE "/dev/urandom"
5150#endif
5151 fd = PerlLIO_open(PERL_RANDOM_DEVICE, 0);
5152 if (fd != -1) {
27da23d5 5153 if (PerlLIO_read(fd, (void*)&u, sizeof u) != sizeof u)
132efe8b
JH
5154 u = 0;
5155 PerlLIO_close(fd);
5156 if (u)
5157 return u;
5158 }
5159#endif
5160
5161#ifdef VMS
5162 _ckvmssts(sys$gettim(when));
5163 u = (U32)SEED_C1 * when[0] + (U32)SEED_C2 * when[1];
5164#else
5165# ifdef HAS_GETTIMEOFDAY
5166 PerlProc_gettimeofday(&when,NULL);
5167 u = (U32)SEED_C1 * when.tv_sec + (U32)SEED_C2 * when.tv_usec;
5168# else
5169 (void)time(&when);
5170 u = (U32)SEED_C1 * when;
5171# endif
5172#endif
5173 u += SEED_C3 * (U32)PerlProc_getpid();
5174 u += SEED_C4 * (U32)PTR2UV(PL_stack_sp);
5175#ifndef PLAN9 /* XXX Plan9 assembler chokes on this; fix needed */
5176 u += SEED_C5 * (U32)PTR2UV(&when);
5177#endif
5178 return u;
5179}
5180
bed60192 5181UV
a783c5f4 5182Perl_get_hash_seed(pTHX)
bed60192 5183{
97aff369 5184 dVAR;
e1ec3a88 5185 const char *s = PerlEnv_getenv("PERL_HASH_SEED");
bed60192
JH
5186 UV myseed = 0;
5187
5188 if (s)
35da51f7
AL
5189 while (isSPACE(*s))
5190 s++;
bed60192
JH
5191 if (s && isDIGIT(*s))
5192 myseed = (UV)Atoul(s);
5193 else
5194#ifdef USE_HASH_SEED_EXPLICIT
5195 if (s)
5196#endif
5197 {
5198 /* Compute a random seed */
5199 (void)seedDrand01((Rand_seed_t)seed());
bed60192
JH
5200 myseed = (UV)(Drand01() * (NV)UV_MAX);
5201#if RANDBITS < (UVSIZE * 8)
5202 /* Since there are not enough randbits to to reach all
5203 * the bits of a UV, the low bits might need extra
5204 * help. Sum in another random number that will
5205 * fill in the low bits. */
5206 myseed +=
5207 (UV)(Drand01() * (NV)((1 << ((UVSIZE * 8 - RANDBITS))) - 1));
5208#endif /* RANDBITS < (UVSIZE * 8) */
6cfd5ea7
JH
5209 if (myseed == 0) { /* Superparanoia. */
5210 myseed = (UV)(Drand01() * (NV)UV_MAX); /* One more chance. */
5211 if (myseed == 0)
5212 Perl_croak(aTHX_ "Your random numbers are not that random");
5213 }
bed60192 5214 }
008fb0c0 5215 PL_rehash_seed_set = TRUE;
bed60192
JH
5216
5217 return myseed;
5218}
27da23d5 5219
ed221c57
AL
5220#ifdef USE_ITHREADS
5221bool
5222Perl_stashpv_hvname_match(pTHX_ const COP *c, const HV *hv)
5223{
5224 const char * const stashpv = CopSTASHPV(c);
5225 const char * const name = HvNAME_get(hv);
96a5add6 5226 PERL_UNUSED_CONTEXT;
ed221c57
AL
5227
5228 if (stashpv == name)
5229 return TRUE;
5230 if (stashpv && name)
5231 if (strEQ(stashpv, name))
5232 return TRUE;
5233 return FALSE;
5234}
5235#endif
5236
5237
27da23d5
JH
5238#ifdef PERL_GLOBAL_STRUCT
5239
bae1192d
JH
5240#define PERL_GLOBAL_STRUCT_INIT
5241#include "opcode.h" /* the ppaddr and check */
5242
27da23d5
JH
5243struct perl_vars *
5244Perl_init_global_struct(pTHX)
5245{
5246 struct perl_vars *plvarsp = NULL;
bae1192d 5247# ifdef PERL_GLOBAL_STRUCT
7452cf6a
AL
5248 const IV nppaddr = sizeof(Gppaddr)/sizeof(Perl_ppaddr_t);
5249 const IV ncheck = sizeof(Gcheck) /sizeof(Perl_check_t);
27da23d5
JH
5250# ifdef PERL_GLOBAL_STRUCT_PRIVATE
5251 /* PerlMem_malloc() because can't use even safesysmalloc() this early. */
5252 plvarsp = (struct perl_vars*)PerlMem_malloc(sizeof(struct perl_vars));
5253 if (!plvarsp)
5254 exit(1);
5255# else
5256 plvarsp = PL_VarsPtr;
5257# endif /* PERL_GLOBAL_STRUCT_PRIVATE */
aadb217d
JH
5258# undef PERLVAR
5259# undef PERLVARA
5260# undef PERLVARI
5261# undef PERLVARIC
5262# undef PERLVARISC
27da23d5
JH
5263# define PERLVAR(var,type) /**/
5264# define PERLVARA(var,n,type) /**/
5265# define PERLVARI(var,type,init) plvarsp->var = init;
5266# define PERLVARIC(var,type,init) plvarsp->var = init;
5267# define PERLVARISC(var,init) Copy(init, plvarsp->var, sizeof(init), char);
5268# include "perlvars.h"
5269# undef PERLVAR
5270# undef PERLVARA
5271# undef PERLVARI
5272# undef PERLVARIC
5273# undef PERLVARISC
5274# ifdef PERL_GLOBAL_STRUCT
bae1192d
JH
5275 plvarsp->Gppaddr =
5276 (Perl_ppaddr_t*)
5277 PerlMem_malloc(nppaddr * sizeof(Perl_ppaddr_t));
27da23d5
JH
5278 if (!plvarsp->Gppaddr)
5279 exit(1);
bae1192d
JH
5280 plvarsp->Gcheck =
5281 (Perl_check_t*)
5282 PerlMem_malloc(ncheck * sizeof(Perl_check_t));
27da23d5
JH
5283 if (!plvarsp->Gcheck)
5284 exit(1);
5285 Copy(Gppaddr, plvarsp->Gppaddr, nppaddr, Perl_ppaddr_t);
5286 Copy(Gcheck, plvarsp->Gcheck, ncheck, Perl_check_t);
5287# endif
5288# ifdef PERL_SET_VARS
5289 PERL_SET_VARS(plvarsp);
5290# endif
bae1192d
JH
5291# undef PERL_GLOBAL_STRUCT_INIT
5292# endif
27da23d5
JH
5293 return plvarsp;
5294}
5295
5296#endif /* PERL_GLOBAL_STRUCT */
5297
5298#ifdef PERL_GLOBAL_STRUCT
5299
5300void
5301Perl_free_global_struct(pTHX_ struct perl_vars *plvarsp)
5302{
bae1192d 5303# ifdef PERL_GLOBAL_STRUCT
27da23d5
JH
5304# ifdef PERL_UNSET_VARS
5305 PERL_UNSET_VARS(plvarsp);
5306# endif
5307 free(plvarsp->Gppaddr);
5308 free(plvarsp->Gcheck);
bae1192d 5309# ifdef PERL_GLOBAL_STRUCT_PRIVATE
27da23d5 5310 free(plvarsp);
bae1192d
JH
5311# endif
5312# endif
27da23d5
JH
5313}
5314
5315#endif /* PERL_GLOBAL_STRUCT */
5316
fe4f188c
JH
5317#ifdef PERL_MEM_LOG
5318
65ceff02
JH
5319/*
5320 * PERL_MEM_LOG: the Perl_mem_log_..() will be compiled.
5321 *
5322 * PERL_MEM_LOG_ENV: if defined, during run time the environment
5323 * variable PERL_MEM_LOG will be consulted, and if the integer value
5324 * of that is true, the logging will happen. (The default is to
5325 * always log if the PERL_MEM_LOG define was in effect.)
5326 */
5327
5328/*
5329 * PERL_MEM_LOG_SPRINTF_BUF_SIZE: size of a (stack-allocated) buffer
5330 * the Perl_mem_log_...() will use (either via sprintf or snprintf).
5331 */
e352bcff
JH
5332#define PERL_MEM_LOG_SPRINTF_BUF_SIZE 128
5333
65ceff02
JH
5334/*
5335 * PERL_MEM_LOG_FD: the file descriptor the Perl_mem_log_...() will
5336 * log to. You can also define in compile time PERL_MEM_LOG_ENV_FD,
5337 * in which case the environment variable PERL_MEM_LOG_FD will be
5338 * consulted for the file descriptor number to use.
5339 */
5340#ifndef PERL_MEM_LOG_FD
5341# define PERL_MEM_LOG_FD 2 /* If STDERR is too boring for you. */
5342#endif
5343
fe4f188c 5344Malloc_t
46c6c7e2 5345Perl_mem_log_alloc(const UV n, const UV typesize, const char *typename, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname)
fe4f188c
JH
5346{
5347#ifdef PERL_MEM_LOG_STDERR
65ceff02
JH
5348# if defined(PERL_MEM_LOG_ENV) || defined(PERL_MEM_LOG_ENV_FD)
5349 char *s;
5350# endif
5351# ifdef PERL_MEM_LOG_ENV
5352 s = getenv("PERL_MEM_LOG");
5353 if (s ? atoi(s) : 0)
5354# endif
5355 {
5356 /* We can't use SVs or PerlIO for obvious reasons,
5357 * so we'll use stdio and low-level IO instead. */
5358 char buf[PERL_MEM_LOG_SPRINTF_BUF_SIZE];
5b692037 5359# ifdef PERL_MEM_LOG_TIMESTAMP
65ceff02 5360 struct timeval tv;
5b692037 5361# ifdef HAS_GETTIMEOFDAY
65ceff02 5362 gettimeofday(&tv, 0);
5b692037
JH
5363# endif
5364 /* If there are other OS specific ways of hires time than
5365 * gettimeofday() (see ext/Time/HiRes), the easiest way is
5366 * probably that they would be used to fill in the struct
5367 * timeval. */
5368# endif
65ceff02
JH
5369 {
5370 const STRLEN len =
d9fad198 5371 my_snprintf(buf,
d1307786 5372 sizeof(buf),
5b692037
JH
5373# ifdef PERL_MEM_LOG_TIMESTAMP
5374 "%10d.%06d: "
5375# endif
d9fad198
JH
5376 "alloc: %s:%d:%s: %"IVdf" %"UVuf
5377 " %s = %"IVdf": %"UVxf"\n",
5b692037
JH
5378# ifdef PERL_MEM_LOG_TIMESTAMP
5379 (int)tv.tv_sec, (int)tv.tv_usec,
5380# endif
d9fad198
JH
5381 filename, linenumber, funcname, n, typesize,
5382 typename, n * typesize, PTR2UV(newalloc));
65ceff02
JH
5383# ifdef PERL_MEM_LOG_ENV_FD
5384 s = PerlEnv_getenv("PERL_MEM_LOG_FD");
5385 PerlLIO_write(s ? atoi(s) : PERL_MEM_LOG_FD, buf, len);
5386# else
5387 PerlLIO_write(PERL_MEM_LOG_FD, buf, len);
5388#endif
5389 }
5390 }
fe4f188c
JH
5391#endif
5392 return newalloc;
5393}
5394
5395Malloc_t
46c6c7e2 5396Perl_mem_log_realloc(const UV n, const UV typesize, const char *typename, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname)
fe4f188c
JH
5397{
5398#ifdef PERL_MEM_LOG_STDERR
65ceff02
JH
5399# if defined(PERL_MEM_LOG_ENV) || defined(PERL_MEM_LOG_ENV_FD)
5400 char *s;
5401# endif
5402# ifdef PERL_MEM_LOG_ENV
5403 s = PerlEnv_getenv("PERL_MEM_LOG");
5404 if (s ? atoi(s) : 0)
5405# endif
5406 {
5407 /* We can't use SVs or PerlIO for obvious reasons,
5408 * so we'll use stdio and low-level IO instead. */
5409 char buf[PERL_MEM_LOG_SPRINTF_BUF_SIZE];
5b692037 5410# ifdef PERL_MEM_LOG_TIMESTAMP
65ceff02
JH
5411 struct timeval tv;
5412 gettimeofday(&tv, 0);
5b692037 5413# endif
65ceff02
JH
5414 {
5415 const STRLEN len =
d9fad198 5416 my_snprintf(buf,
d1307786 5417 sizeof(buf),
5b692037
JH
5418# ifdef PERL_MEM_LOG_TIMESTAMP
5419 "%10d.%06d: "
5420# endif
d9fad198
JH
5421 "realloc: %s:%d:%s: %"IVdf" %"UVuf
5422 " %s = %"IVdf": %"UVxf" -> %"UVxf"\n",
5b692037
JH
5423# ifdef PERL_MEM_LOG_TIMESTAMP
5424 (int)tv.tv_sec, (int)tv.tv_usec,
5425# endif
d9fad198
JH
5426 filename, linenumber, funcname, n, typesize,
5427 typename, n * typesize, PTR2UV(oldalloc),
5428 PTR2UV(newalloc));
65ceff02
JH
5429# ifdef PERL_MEM_LOG_ENV_FD
5430 s = PerlEnv_getenv("PERL_MEM_LOG_FD");
5431 PerlLIO_write(s ? atoi(s) : PERL_MEM_LOG_FD, buf, len);
5432# else
5433 PerlLIO_write(PERL_MEM_LOG_FD, buf, len);
5434# endif
5435 }
5436 }
fe4f188c
JH
5437#endif
5438 return newalloc;
5439}
5440
5441Malloc_t
46c6c7e2 5442Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int linenumber, const char *funcname)
fe4f188c
JH
5443{
5444#ifdef PERL_MEM_LOG_STDERR
65ceff02
JH
5445# if defined(PERL_MEM_LOG_ENV) || defined(PERL_MEM_LOG_ENV_FD)
5446 char *s;
5447# endif
5448# ifdef PERL_MEM_LOG_ENV
5449 s = PerlEnv_getenv("PERL_MEM_LOG");
5450 if (s ? atoi(s) : 0)
5451# endif
5452 {
5453 /* We can't use SVs or PerlIO for obvious reasons,
5454 * so we'll use stdio and low-level IO instead. */
5455 char buf[PERL_MEM_LOG_SPRINTF_BUF_SIZE];
5b692037 5456# ifdef PERL_MEM_LOG_TIMESTAMP
65ceff02
JH
5457 struct timeval tv;
5458 gettimeofday(&tv, 0);
5b692037 5459# endif
65ceff02
JH
5460 {
5461 const STRLEN len =
d9fad198 5462 my_snprintf(buf,
d1307786 5463 sizeof(buf),
5b692037
JH
5464# ifdef PERL_MEM_LOG_TIMESTAMP
5465 "%10d.%06d: "
5466# endif
5467 "free: %s:%d:%s: %"UVxf"\n",
5468# ifdef PERL_MEM_LOG_TIMESTAMP
d9fad198 5469 (int)tv.tv_sec, (int)tv.tv_usec,
5b692037 5470# endif
d9fad198
JH
5471 filename, linenumber, funcname,
5472 PTR2UV(oldalloc));
65ceff02
JH
5473# ifdef PERL_MEM_LOG_ENV_FD
5474 s = PerlEnv_getenv("PERL_MEM_LOG_FD");
5475 PerlLIO_write(s ? atoi(s) : PERL_MEM_LOG_FD, buf, len);
5476# else
5477 PerlLIO_write(PERL_MEM_LOG_FD, buf, len);
5478# endif
5479 }
5480 }
fe4f188c
JH
5481#endif
5482 return oldalloc;
5483}
5484
5485#endif /* PERL_MEM_LOG */
5486
66610fdd 5487/*
ce582cee
NC
5488=for apidoc my_sprintf
5489
5490The C library C<sprintf>, wrapped if necessary, to ensure that it will return
5491the length of the string written to the buffer. Only rare pre-ANSI systems
5492need the wrapper function - usually this is a direct call to C<sprintf>.
5493
5494=cut
5495*/
5496#ifndef SPRINTF_RETURNS_STRLEN
5497int
5498Perl_my_sprintf(char *buffer, const char* pat, ...)
5499{
5500 va_list args;
5501 va_start(args, pat);
5502 vsprintf(buffer, pat, args);
5503 va_end(args);
5504 return strlen(buffer);
5505}
5506#endif
5507
d9fad198
JH
5508/*
5509=for apidoc my_snprintf
5510
5511The C library C<snprintf> functionality, if available and
5b692037 5512standards-compliant (uses C<vsnprintf>, actually). However, if the
d9fad198 5513C<vsnprintf> is not available, will unfortunately use the unsafe
5b692037
JH
5514C<vsprintf> which can overrun the buffer (there is an overrun check,
5515but that may be too late). Consider using C<sv_vcatpvf> instead, or
5516getting C<vsnprintf>.
d9fad198
JH
5517
5518=cut
5519*/
5520int
5521Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...)
d9fad198
JH
5522{
5523 dTHX;
5524 int retval;
5525 va_list ap;
d9fad198 5526 va_start(ap, format);
5b692037 5527#ifdef HAS_VSNPRINTF
d9fad198
JH
5528 retval = vsnprintf(buffer, len, format, ap);
5529#else
5530 retval = vsprintf(buffer, format, ap);
5531#endif
5532 va_end(ap);
1208b3dd 5533 /* vsnprintf() shows failure with >= len, vsprintf() with < 0 */
625dac9d 5534 if (retval < 0 || (len > 0 && (Size_t)retval >= len))
5b692037 5535 Perl_croak(aTHX_ "panic: my_snprintf buffer overflow");
d9fad198
JH
5536 return retval;
5537}
5538
5539/*
5540=for apidoc my_vsnprintf
5541
5b692037
JH
5542The C library C<vsnprintf> if available and standards-compliant.
5543However, if if the C<vsnprintf> is not available, will unfortunately
5544use the unsafe C<vsprintf> which can overrun the buffer (there is an
5545overrun check, but that may be too late). Consider using
5546C<sv_vcatpvf> instead, or getting C<vsnprintf>.
d9fad198
JH
5547
5548=cut
5549*/
5550int
5551Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap)
d9fad198
JH
5552{
5553 dTHX;
5554 int retval;
d9fad198
JH
5555#ifdef NEED_VA_COPY
5556 va_list apc;
239fec62 5557 Perl_va_copy(ap, apc);
5b692037 5558# ifdef HAS_VSNPRINTF
d9fad198
JH
5559 retval = vsnprintf(buffer, len, format, apc);
5560# else
5561 retval = vsprintf(buffer, format, apc);
5562# endif
5563#else
5b692037 5564# ifdef HAS_VSNPRINTF
d9fad198
JH
5565 retval = vsnprintf(buffer, len, format, ap);
5566# else
5567 retval = vsprintf(buffer, format, ap);
5568# endif
5b692037 5569#endif /* #ifdef NEED_VA_COPY */
1208b3dd 5570 /* vsnprintf() shows failure with >= len, vsprintf() with < 0 */
625dac9d 5571 if (retval < 0 || (len > 0 && (Size_t)retval >= len))
5b692037 5572 Perl_croak(aTHX_ "panic: my_vsnprintf buffer overflow");
d9fad198
JH
5573 return retval;
5574}
5575
b0269e46
AB
5576void
5577Perl_my_clearenv(pTHX)
5578{
5579 dVAR;
5580#if ! defined(PERL_MICRO)
5581# if defined(PERL_IMPLICIT_SYS) || defined(WIN32)
5582 PerlEnv_clearenv();
5583# else /* ! (PERL_IMPLICIT_SYS || WIN32) */
5584# if defined(USE_ENVIRON_ARRAY)
5585# if defined(USE_ITHREADS)
5586 /* only the parent thread can clobber the process environment */
5587 if (PL_curinterp == aTHX)
5588# endif /* USE_ITHREADS */
5589 {
5590# if ! defined(PERL_USE_SAFE_PUTENV)
5591 if ( !PL_use_safe_putenv) {
5592 I32 i;
5593 if (environ == PL_origenviron)
5594 environ = (char**)safesysmalloc(sizeof(char*));
5595 else
5596 for (i = 0; environ[i]; i++)
5597 (void)safesysfree(environ[i]);
5598 }
5599 environ[0] = NULL;
5600# else /* PERL_USE_SAFE_PUTENV */
5601# if defined(HAS_CLEARENV)
5602 (void)clearenv();
5603# elif defined(HAS_UNSETENV)
5604 int bsiz = 80; /* Most envvar names will be shorter than this. */
d1307786
JH
5605 int bufsiz = bsiz * sizeof(char); /* sizeof(char) paranoid? */
5606 char *buf = (char*)safesysmalloc(bufsiz);
b0269e46
AB
5607 while (*environ != NULL) {
5608 char *e = strchr(*environ, '=');
b57a0404 5609 int l = e ? e - *environ : (int)strlen(*environ);
b0269e46
AB
5610 if (bsiz < l + 1) {
5611 (void)safesysfree(buf);
1bdfa2de 5612 bsiz = l + 1; /* + 1 for the \0. */
d1307786 5613 buf = (char*)safesysmalloc(bufsiz);
b0269e46 5614 }
1bdfa2de 5615 my_strlcpy(buf, *environ, l + 1);
b0269e46
AB
5616 (void)unsetenv(buf);
5617 }
5618 (void)safesysfree(buf);
5619# else /* ! HAS_CLEARENV && ! HAS_UNSETENV */
5620 /* Just null environ and accept the leakage. */
5621 *environ = NULL;
5622# endif /* HAS_CLEARENV || HAS_UNSETENV */
5623# endif /* ! PERL_USE_SAFE_PUTENV */
5624 }
5625# endif /* USE_ENVIRON_ARRAY */
5626# endif /* PERL_IMPLICIT_SYS || WIN32 */
5627#endif /* PERL_MICRO */
5628}
5629
f16dd614
DM
5630#ifdef PERL_IMPLICIT_CONTEXT
5631
53d44271 5632/* Implements the MY_CXT_INIT macro. The first time a module is loaded,
f16dd614
DM
5633the global PL_my_cxt_index is incremented, and that value is assigned to
5634that module's static my_cxt_index (who's address is passed as an arg).
5635Then, for each interpreter this function is called for, it makes sure a
5636void* slot is available to hang the static data off, by allocating or
5637extending the interpreter's PL_my_cxt_list array */
5638
53d44271 5639#ifndef PERL_GLOBAL_STRUCT_PRIVATE
f16dd614
DM
5640void *
5641Perl_my_cxt_init(pTHX_ int *index, size_t size)
5642{
97aff369 5643 dVAR;
f16dd614
DM
5644 void *p;
5645 if (*index == -1) {
5646 /* this module hasn't been allocated an index yet */
5647 MUTEX_LOCK(&PL_my_ctx_mutex);
5648 *index = PL_my_cxt_index++;
5649 MUTEX_UNLOCK(&PL_my_ctx_mutex);
5650 }
5651
5652 /* make sure the array is big enough */
4c901e72
DM
5653 if (PL_my_cxt_size <= *index) {
5654 if (PL_my_cxt_size) {
5655 while (PL_my_cxt_size <= *index)
f16dd614
DM
5656 PL_my_cxt_size *= 2;
5657 Renew(PL_my_cxt_list, PL_my_cxt_size, void *);
5658 }
5659 else {
5660 PL_my_cxt_size = 16;
5661 Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
5662 }
5663 }
5664 /* newSV() allocates one more than needed */
5665 p = (void*)SvPVX(newSV(size-1));
5666 PL_my_cxt_list[*index] = p;
5667 Zero(p, size, char);
5668 return p;
5669}
53d44271
JH
5670
5671#else /* #ifndef PERL_GLOBAL_STRUCT_PRIVATE */
5672
5673int
5674Perl_my_cxt_index(pTHX_ const char *my_cxt_key)
5675{
5676 dVAR;
5677 int index;
5678
5679 for (index = 0; index < PL_my_cxt_index; index++) {
5680 const char *key = PL_my_cxt_keys[index];
5681 /* try direct pointer compare first - there are chances to success,
5682 * and it's much faster.
5683 */
5684 if ((key == my_cxt_key) || strEQ(key, my_cxt_key))
5685 return index;
5686 }
5687 return -1;
5688}
5689
5690void *
5691Perl_my_cxt_init(pTHX_ const char *my_cxt_key, size_t size)
5692{
5693 dVAR;
5694 void *p;
5695 int index;
5696
5697 index = Perl_my_cxt_index(aTHX_ my_cxt_key);
5698 if (index == -1) {
5699 /* this module hasn't been allocated an index yet */
5700 MUTEX_LOCK(&PL_my_ctx_mutex);
5701 index = PL_my_cxt_index++;
5702 MUTEX_UNLOCK(&PL_my_ctx_mutex);
5703 }
5704
5705 /* make sure the array is big enough */
5706 if (PL_my_cxt_size <= index) {
5707 int old_size = PL_my_cxt_size;
5708 int i;
5709 if (PL_my_cxt_size) {
5710 while (PL_my_cxt_size <= index)
5711 PL_my_cxt_size *= 2;
5712 Renew(PL_my_cxt_list, PL_my_cxt_size, void *);
5713 Renew(PL_my_cxt_keys, PL_my_cxt_size, const char *);
5714 }
5715 else {
5716 PL_my_cxt_size = 16;
5717 Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
5718 Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
5719 }
5720 for (i = old_size; i < PL_my_cxt_size; i++) {
5721 PL_my_cxt_keys[i] = 0;
5722 PL_my_cxt_list[i] = 0;
5723 }
5724 }
5725 PL_my_cxt_keys[index] = my_cxt_key;
5726 /* newSV() allocates one more than needed */
5727 p = (void*)SvPVX(newSV(size-1));
5728 PL_my_cxt_list[index] = p;
5729 Zero(p, size, char);
5730 return p;
5731}
5732#endif /* #ifndef PERL_GLOBAL_STRUCT_PRIVATE */
5733#endif /* PERL_IMPLICIT_CONTEXT */
f16dd614 5734
a6cc4119
SP
5735#ifndef HAS_STRLCAT
5736Size_t
5737Perl_my_strlcat(char *dst, const char *src, Size_t size)
5738{
5739 Size_t used, length, copy;
5740
5741 used = strlen(dst);
5742 length = strlen(src);
5743 if (size > 0 && used < size - 1) {
5744 copy = (length >= size - used) ? size - used - 1 : length;
5745 memcpy(dst + used, src, copy);
5746 dst[used + copy] = '\0';
5747 }
5748 return used + length;
5749}
5750#endif
5751
5752#ifndef HAS_STRLCPY
5753Size_t
5754Perl_my_strlcpy(char *dst, const char *src, Size_t size)
5755{
5756 Size_t length, copy;
5757
5758 length = strlen(src);
5759 if (size > 0) {
5760 copy = (length >= size) ? size - 1 : length;
5761 memcpy(dst, src, copy);
5762 dst[copy] = '\0';
5763 }
5764 return length;
5765}
5766#endif
5767
17dd9954
JH
5768#if defined(_MSC_VER) && (_MSC_VER >= 1300) && (_MSC_VER < 1400) && (WINVER < 0x0500)
5769/* VC7 or 7.1, building with pre-VC7 runtime libraries. */
5770long _ftol( double ); /* Defined by VC6 C libs. */
5771long _ftol2( double dblSource ) { return _ftol( dblSource ); }
5772#endif
5773
c51f309c
NC
5774void
5775Perl_get_db_sub(pTHX_ SV **svp, CV *cv)
5776{
5777 dVAR;
5778 SV * const dbsv = GvSVn(PL_DBsub);
5779 /* We do not care about using sv to call CV;
5780 * it's for informational purposes only.
5781 */
5782
5783 save_item(dbsv);
5784 if (!PERLDB_SUB_NN) {
5785 GV * const gv = CvGV(cv);
5786
5787 if ( svp && ((CvFLAGS(cv) & (CVf_ANON | CVf_CLONED))
5788 || strEQ(GvNAME(gv), "END")
5789 || ((GvCV(gv) != cv) && /* Could be imported, and old sub redefined. */
5790 !( (SvTYPE(*svp) == SVt_PVGV) && (GvCV((GV*)*svp) == cv) )))) {
5791 /* Use GV from the stack as a fallback. */
5792 /* GV is potentially non-unique, or contain different CV. */
5793 SV * const tmp = newRV((SV*)cv);
5794 sv_setsv(dbsv, tmp);
5795 SvREFCNT_dec(tmp);
5796 }
5797 else {
5798 gv_efullname3(dbsv, gv, NULL);
5799 }
5800 }
5801 else {
5802 const int type = SvTYPE(dbsv);
5803 if (type < SVt_PVIV && type != SVt_IV)
5804 sv_upgrade(dbsv, SVt_PVIV);
5805 (void)SvIOK_on(dbsv);
5806 SvIV_set(dbsv, PTR2IV(cv)); /* Do it the quickest way */
5807 }
5808}
5809
ce582cee 5810/*
66610fdd
RGS
5811 * Local variables:
5812 * c-indentation-style: bsd
5813 * c-basic-offset: 4
5814 * indent-tabs-mode: t
5815 * End:
5816 *
37442d52
RGS
5817 * ex: set ts=8 sts=4 sw=4 noet:
5818 */