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