This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Cut-and-pasto in #11298.
[perl5.git] / util.c
CommitLineData
a0d0e21e 1/* util.c
a687059c 2 *
bc89e66f 3 * Copyright (c) 1991-2001, Larry Wall
a687059c 4 *
d48672a2
LW
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8d063cd8 7 *
8d063cd8 8 */
a0d0e21e
LW
9
10/*
11 * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12 * not content." --Gandalf
13 */
8d063cd8 14
8d063cd8 15#include "EXTERN.h"
864dbfa3 16#define PERL_IN_UTIL_C
8d063cd8 17#include "perl.h"
62b28dd9 18
64ca3a65 19#ifndef PERL_MICRO
e1dfb34b 20#if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
a687059c 21#include <signal.h>
62b28dd9 22#endif
a687059c 23
36477c24 24#ifndef SIG_ERR
25# define SIG_ERR ((Sighandler_t) -1)
26#endif
64ca3a65 27#endif
36477c24 28
a687059c
LW
29#ifdef I_VFORK
30# include <vfork.h>
31#endif
32
94b6baf5
AD
33/* Put this after #includes because fork and vfork prototypes may
34 conflict.
35*/
36#ifndef HAS_VFORK
37# define vfork fork
38#endif
39
ff68c719 40#ifdef I_SYS_WAIT
41# include <sys/wait.h>
42#endif
43
8d063cd8 44#define FLUSH
8d063cd8 45
a0d0e21e 46#ifdef LEAKTEST
a0d0e21e 47
8c52afec
IZ
48long xcount[MAXXCOUNT];
49long lastxcount[MAXXCOUNT];
50long xycount[MAXXCOUNT][MAXYCOUNT];
51long lastxycount[MAXXCOUNT][MAXYCOUNT];
52
a0d0e21e 53#endif
a863c7d1 54
16cebae2
GS
55#if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
56# define FD_CLOEXEC 1 /* NeXT needs this */
57#endif
58
a687059c
LW
59/* NOTE: Do not call the next three routines directly. Use the macros
60 * in handy.h, so that we can easily redefine everything to do tracking of
61 * allocated hunks back to the original New to track down any memory leaks.
20cec16a 62 * XXX This advice seems to be widely ignored :-( --AD August 1996.
a687059c
LW
63 */
64
26fa51c3
AMS
65/* paranoid version of system's malloc() */
66
bd4080b3 67Malloc_t
4f63d024 68Perl_safesysmalloc(MEM_SIZE size)
8d063cd8 69{
54aff467 70 dTHX;
bd4080b3 71 Malloc_t ptr;
55497cff 72#ifdef HAS_64K_LIMIT
62b28dd9 73 if (size > 0xffff) {
bf49b057 74 PerlIO_printf(Perl_error_log,
16cebae2 75 "Allocation too large: %lx\n", size) FLUSH;
54aff467 76 my_exit(1);
62b28dd9 77 }
55497cff 78#endif /* HAS_64K_LIMIT */
34de22dd
LW
79#ifdef DEBUGGING
80 if ((long)size < 0)
4f63d024 81 Perl_croak_nocontext("panic: malloc");
34de22dd 82#endif
12ae5dfc 83 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
da927450 84 PERL_ALLOC_CHECK(ptr);
97835f67 85 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
8d063cd8
LW
86 if (ptr != Nullch)
87 return ptr;
3280af22 88 else if (PL_nomemok)
7c0587c8 89 return Nullch;
8d063cd8 90 else {
bf49b057 91 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
54aff467 92 my_exit(1);
4e35701f 93 return Nullch;
8d063cd8
LW
94 }
95 /*NOTREACHED*/
96}
97
f2517201 98/* paranoid version of system's realloc() */
8d063cd8 99
bd4080b3 100Malloc_t
4f63d024 101Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
8d063cd8 102{
54aff467 103 dTHX;
bd4080b3 104 Malloc_t ptr;
9a34ef1d 105#if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
6ad3d225 106 Malloc_t PerlMem_realloc();
ecfc5424 107#endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
8d063cd8 108
a1d180c4 109#ifdef HAS_64K_LIMIT
5f05dabc 110 if (size > 0xffff) {
bf49b057 111 PerlIO_printf(Perl_error_log,
5f05dabc 112 "Reallocation too large: %lx\n", size) FLUSH;
54aff467 113 my_exit(1);
5f05dabc 114 }
55497cff 115#endif /* HAS_64K_LIMIT */
7614df0c 116 if (!size) {
f2517201 117 safesysfree(where);
7614df0c
JD
118 return NULL;
119 }
120
378cc40b 121 if (!where)
f2517201 122 return safesysmalloc(size);
34de22dd
LW
123#ifdef DEBUGGING
124 if ((long)size < 0)
4f63d024 125 Perl_croak_nocontext("panic: realloc");
34de22dd 126#endif
12ae5dfc 127 ptr = (Malloc_t)PerlMem_realloc(where,size);
da927450 128 PERL_ALLOC_CHECK(ptr);
a1d180c4 129
97835f67
JH
130 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
131 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
79072805 132
8d063cd8
LW
133 if (ptr != Nullch)
134 return ptr;
3280af22 135 else if (PL_nomemok)
7c0587c8 136 return Nullch;
8d063cd8 137 else {
bf49b057 138 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
54aff467 139 my_exit(1);
4e35701f 140 return Nullch;
8d063cd8
LW
141 }
142 /*NOTREACHED*/
143}
144
f2517201 145/* safe version of system's free() */
8d063cd8 146
54310121 147Free_t
4f63d024 148Perl_safesysfree(Malloc_t where)
8d063cd8 149{
155aba94 150#ifdef PERL_IMPLICIT_SYS
54aff467 151 dTHX;
155aba94 152#endif
97835f67 153 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
378cc40b 154 if (where) {
de3bb511 155 /*SUPPRESS 701*/
6ad3d225 156 PerlMem_free(where);
378cc40b 157 }
8d063cd8
LW
158}
159
f2517201 160/* safe version of system's calloc() */
1050c9ca 161
bd4080b3 162Malloc_t
4f63d024 163Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
1050c9ca 164{
54aff467 165 dTHX;
bd4080b3 166 Malloc_t ptr;
1050c9ca 167
55497cff 168#ifdef HAS_64K_LIMIT
5f05dabc 169 if (size * count > 0xffff) {
bf49b057 170 PerlIO_printf(Perl_error_log,
5f05dabc 171 "Allocation too large: %lx\n", size * count) FLUSH;
54aff467 172 my_exit(1);
5f05dabc 173 }
55497cff 174#endif /* HAS_64K_LIMIT */
1050c9ca 175#ifdef DEBUGGING
176 if ((long)size < 0 || (long)count < 0)
4f63d024 177 Perl_croak_nocontext("panic: calloc");
1050c9ca 178#endif
0b7c1c42 179 size *= count;
12ae5dfc 180 ptr = (Malloc_t)PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
da927450 181 PERL_ALLOC_CHECK(ptr);
97835f67 182 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)size));
1050c9ca 183 if (ptr != Nullch) {
184 memset((void*)ptr, 0, size);
185 return ptr;
186 }
3280af22 187 else if (PL_nomemok)
1050c9ca 188 return Nullch;
189 else {
bf49b057 190 PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
54aff467 191 my_exit(1);
4e35701f 192 return Nullch;
1050c9ca 193 }
194 /*NOTREACHED*/
195}
196
a687059c
LW
197#ifdef LEAKTEST
198
8c52afec
IZ
199struct mem_test_strut {
200 union {
201 long type;
202 char c[2];
203 } u;
204 long size;
205};
206
207# define ALIGN sizeof(struct mem_test_strut)
208
209# define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
210# define typeof_chunk(ch) \
211 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
212# define set_typeof_chunk(ch,t) \
213 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
214#define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
215 ? MAXYCOUNT - 1 \
216 : ( (size) > 40 \
217 ? ((size) - 1)/8 + 5 \
218 : ((size) - 1)/4))
8d063cd8 219
bd4080b3 220Malloc_t
4f63d024 221Perl_safexmalloc(I32 x, MEM_SIZE size)
8d063cd8 222{
8c52afec 223 register char* where = (char*)safemalloc(size + ALIGN);
8d063cd8 224
8c52afec
IZ
225 xcount[x] += size;
226 xycount[x][SIZE_TO_Y(size)]++;
227 set_typeof_chunk(where, x);
228 sizeof_chunk(where) = size;
229 return (Malloc_t)(where + ALIGN);
8d063cd8 230}
8d063cd8 231
bd4080b3 232Malloc_t
4f63d024 233Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
a687059c 234{
8c52afec
IZ
235 char *where = (char*)wh;
236
237 if (!wh)
238 return safexmalloc(0,size);
a1d180c4 239
8c52afec
IZ
240 {
241 MEM_SIZE old = sizeof_chunk(where - ALIGN);
242 int t = typeof_chunk(where - ALIGN);
243 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
a1d180c4 244
8c52afec
IZ
245 xycount[t][SIZE_TO_Y(old)]--;
246 xycount[t][SIZE_TO_Y(size)]++;
247 xcount[t] += size - old;
248 sizeof_chunk(new) = size;
249 return (Malloc_t)(new + ALIGN);
250 }
a687059c
LW
251}
252
253void
4f63d024 254Perl_safexfree(Malloc_t wh)
a687059c 255{
79072805 256 I32 x;
8c52afec
IZ
257 char *where = (char*)wh;
258 MEM_SIZE size;
a1d180c4 259
a687059c
LW
260 if (!where)
261 return;
262 where -= ALIGN;
8c52afec 263 size = sizeof_chunk(where);
a687059c 264 x = where[0] + 100 * where[1];
8c52afec
IZ
265 xcount[x] -= size;
266 xycount[x][SIZE_TO_Y(size)]--;
a687059c
LW
267 safefree(where);
268}
269
bd4080b3 270Malloc_t
4f63d024 271Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
1050c9ca 272{
8c52afec
IZ
273 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
274 xcount[x] += size;
275 xycount[x][SIZE_TO_Y(size)]++;
276 memset((void*)(where + ALIGN), 0, size * count);
277 set_typeof_chunk(where, x);
278 sizeof_chunk(where) = size;
279 return (Malloc_t)(where + ALIGN);
1050c9ca 280}
281
864dbfa3 282STATIC void
cea2e8a9 283S_xstat(pTHX_ int flag)
8d063cd8 284{
8c52afec
IZ
285 register I32 i, j, total = 0;
286 I32 subtot[MAXYCOUNT];
8d063cd8 287
8c52afec
IZ
288 for (j = 0; j < MAXYCOUNT; j++) {
289 subtot[j] = 0;
290 }
a1d180c4 291
bf49b057 292 PerlIO_printf(Perl_debug_log, " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
a687059c 293 for (i = 0; i < MAXXCOUNT; i++) {
8c52afec
IZ
294 total += xcount[i];
295 for (j = 0; j < MAXYCOUNT; j++) {
296 subtot[j] += xycount[i][j];
297 }
298 if (flag == 0
299 ? xcount[i] /* Have something */
a1d180c4 300 : (flag == 2
8c52afec
IZ
301 ? xcount[i] != lastxcount[i] /* Changed */
302 : xcount[i] > lastxcount[i])) { /* Growed */
a1d180c4 303 PerlIO_printf(Perl_debug_log,"%2d %02d %7ld ", i / 100, i % 100,
8c52afec 304 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
a687059c 305 lastxcount[i] = xcount[i];
8c52afec 306 for (j = 0; j < MAXYCOUNT; j++) {
a1d180c4 307 if ( flag == 0
8c52afec 308 ? xycount[i][j] /* Have something */
a1d180c4 309 : (flag == 2
8c52afec
IZ
310 ? xycount[i][j] != lastxycount[i][j] /* Changed */
311 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
a1d180c4
NIS
312 PerlIO_printf(Perl_debug_log,"%3ld ",
313 flag == 2
314 ? xycount[i][j] - lastxycount[i][j]
8c52afec
IZ
315 : xycount[i][j]);
316 lastxycount[i][j] = xycount[i][j];
317 } else {
bf49b057 318 PerlIO_printf(Perl_debug_log, " . ", xycount[i][j]);
8c52afec
IZ
319 }
320 }
bf49b057 321 PerlIO_printf(Perl_debug_log, "\n");
8c52afec
IZ
322 }
323 }
324 if (flag != 2) {
bf49b057 325 PerlIO_printf(Perl_debug_log, "Total %7ld ", total);
8c52afec
IZ
326 for (j = 0; j < MAXYCOUNT; j++) {
327 if (subtot[j]) {
bf49b057 328 PerlIO_printf(Perl_debug_log, "%3ld ", subtot[j]);
8c52afec 329 } else {
bf49b057 330 PerlIO_printf(Perl_debug_log, " . ");
8c52afec 331 }
8d063cd8 332 }
bf49b057 333 PerlIO_printf(Perl_debug_log, "\n");
8d063cd8 334 }
8d063cd8 335}
a687059c
LW
336
337#endif /* LEAKTEST */
8d063cd8 338
cae6d0e5
GS
339/* These must be defined when not using Perl's malloc for binary
340 * compatibility */
341
342#ifndef MYMALLOC
343
344Malloc_t Perl_malloc (MEM_SIZE nbytes)
345{
346 dTHXs;
347 return PerlMem_malloc(nbytes);
348}
349
350Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size)
351{
352 dTHXs;
353 return PerlMem_calloc(elements, size);
354}
355
356Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes)
357{
358 dTHXs;
359 return PerlMem_realloc(where, nbytes);
360}
361
362Free_t Perl_mfree (Malloc_t where)
363{
364 dTHXs;
365 PerlMem_free(where);
366}
367
368#endif
369
8d063cd8
LW
370/* copy a string up to some (non-backslashed) delimiter, if any */
371
372char *
864dbfa3 373Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
8d063cd8 374{
fc36a67e 375 register I32 tolen;
376 for (tolen = 0; from < fromend; from++, tolen++) {
378cc40b
LW
377 if (*from == '\\') {
378 if (from[1] == delim)
379 from++;
fc36a67e 380 else {
381 if (to < toend)
382 *to++ = *from;
383 tolen++;
384 from++;
385 }
378cc40b 386 }
bedebaa5 387 else if (*from == delim)
8d063cd8 388 break;
fc36a67e 389 if (to < toend)
390 *to++ = *from;
8d063cd8 391 }
bedebaa5
CS
392 if (to < toend)
393 *to = '\0';
fc36a67e 394 *retlen = tolen;
8d063cd8
LW
395 return from;
396}
397
398/* return ptr to little string in big string, NULL if not found */
378cc40b 399/* This routine was donated by Corey Satten. */
8d063cd8
LW
400
401char *
864dbfa3 402Perl_instr(pTHX_ register const char *big, register const char *little)
378cc40b 403{
08105a92 404 register const char *s, *x;
79072805 405 register I32 first;
378cc40b 406
a687059c 407 if (!little)
08105a92 408 return (char*)big;
a687059c 409 first = *little++;
378cc40b 410 if (!first)
08105a92 411 return (char*)big;
378cc40b
LW
412 while (*big) {
413 if (*big++ != first)
414 continue;
415 for (x=big,s=little; *s; /**/ ) {
416 if (!*x)
417 return Nullch;
418 if (*s++ != *x++) {
419 s--;
420 break;
421 }
422 }
423 if (!*s)
08105a92 424 return (char*)(big-1);
378cc40b
LW
425 }
426 return Nullch;
427}
8d063cd8 428
a687059c
LW
429/* same as instr but allow embedded nulls */
430
431char *
864dbfa3 432Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
8d063cd8 433{
08105a92 434 register const char *s, *x;
79072805 435 register I32 first = *little;
08105a92 436 register const char *littleend = lend;
378cc40b 437
a0d0e21e 438 if (!first && little >= littleend)
08105a92 439 return (char*)big;
de3bb511
LW
440 if (bigend - big < littleend - little)
441 return Nullch;
a687059c
LW
442 bigend -= littleend - little++;
443 while (big <= bigend) {
444 if (*big++ != first)
445 continue;
446 for (x=big,s=little; s < littleend; /**/ ) {
447 if (*s++ != *x++) {
448 s--;
449 break;
450 }
451 }
452 if (s >= littleend)
08105a92 453 return (char*)(big-1);
378cc40b 454 }
a687059c
LW
455 return Nullch;
456}
457
458/* reverse of the above--find last substring */
459
460char *
864dbfa3 461Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
a687059c 462{
08105a92
GS
463 register const char *bigbeg;
464 register const char *s, *x;
79072805 465 register I32 first = *little;
08105a92 466 register const char *littleend = lend;
a687059c 467
a0d0e21e 468 if (!first && little >= littleend)
08105a92 469 return (char*)bigend;
a687059c
LW
470 bigbeg = big;
471 big = bigend - (littleend - little++);
472 while (big >= bigbeg) {
473 if (*big-- != first)
474 continue;
475 for (x=big+2,s=little; s < littleend; /**/ ) {
476 if (*s++ != *x++) {
477 s--;
478 break;
479 }
480 }
481 if (s >= littleend)
08105a92 482 return (char*)(big+1);
378cc40b 483 }
a687059c 484 return Nullch;
378cc40b 485}
a687059c 486
cf93c79d
IZ
487#define FBM_TABLE_OFFSET 2 /* Number of bytes between EOS and table*/
488
489/* As a space optimization, we do not compile tables for strings of length
490 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
491 special-cased in fbm_instr().
492
493 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
494
954c1994
GS
495/*
496=for apidoc fbm_compile
497
498Analyses the string in order to make fast searches on it using fbm_instr()
499-- the Boyer-Moore algorithm.
500
501=cut
502*/
503
378cc40b 504void
7506f9c3 505Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
378cc40b 506{
942e002e
GS
507 register U8 *s;
508 register U8 *table;
79072805 509 register U32 i;
0b71040e 510 STRLEN len;
79072805
LW
511 I32 rarest = 0;
512 U32 frequency = 256;
513
cf93c79d
IZ
514 if (flags & FBMcf_TAIL)
515 sv_catpvn(sv, "\n", 1); /* Taken into account in fbm_instr() */
942e002e 516 s = (U8*)SvPV_force(sv, len);
07f14f54 517 (void)SvUPGRADE(sv, SVt_PVBM);
cf93c79d
IZ
518 if (len == 0) /* TAIL might be on on a zero-length string. */
519 return;
02128f11 520 if (len > 2) {
7506f9c3 521 U8 mlen;
cf93c79d
IZ
522 unsigned char *sb;
523
7506f9c3 524 if (len > 255)
cf93c79d 525 mlen = 255;
7506f9c3
GS
526 else
527 mlen = (U8)len;
528 Sv_Grow(sv, len + 256 + FBM_TABLE_OFFSET);
cf93c79d 529 table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
7506f9c3
GS
530 s = table - 1 - FBM_TABLE_OFFSET; /* last char */
531 memset((void*)table, mlen, 256);
532 table[-1] = (U8)flags;
02128f11 533 i = 0;
7506f9c3 534 sb = s - mlen + 1; /* first char (maybe) */
cf93c79d
IZ
535 while (s >= sb) {
536 if (table[*s] == mlen)
7506f9c3 537 table[*s] = (U8)i;
cf93c79d
IZ
538 s--, i++;
539 }
378cc40b 540 }
14befaf4 541 sv_magic(sv, Nullsv, PERL_MAGIC_bm, Nullch, 0); /* deep magic */
79072805 542 SvVALID_on(sv);
378cc40b 543
463ee0b2 544 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
bbce6d69 545 for (i = 0; i < len; i++) {
22c35a8c 546 if (PL_freq[s[i]] < frequency) {
bbce6d69 547 rarest = i;
22c35a8c 548 frequency = PL_freq[s[i]];
378cc40b
LW
549 }
550 }
79072805
LW
551 BmRARE(sv) = s[rarest];
552 BmPREVIOUS(sv) = rarest;
cf93c79d
IZ
553 BmUSEFUL(sv) = 100; /* Initial value */
554 if (flags & FBMcf_TAIL)
555 SvTAIL_on(sv);
7506f9c3
GS
556 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",
557 BmRARE(sv),BmPREVIOUS(sv)));
378cc40b
LW
558}
559
cf93c79d
IZ
560/* If SvTAIL(littlestr), it has a fake '\n' at end. */
561/* If SvTAIL is actually due to \Z or \z, this gives false positives
562 if multiline */
563
954c1994
GS
564/*
565=for apidoc fbm_instr
566
567Returns the location of the SV in the string delimited by C<str> and
568C<strend>. It returns C<Nullch> if the string can't be found. The C<sv>
569does not have to be fbm_compiled, but the search will not be as fast
570then.
571
572=cut
573*/
574
378cc40b 575char *
864dbfa3 576Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
378cc40b 577{
a687059c 578 register unsigned char *s;
cf93c79d
IZ
579 STRLEN l;
580 register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
581 register STRLEN littlelen = l;
582 register I32 multiline = flags & FBMrf_MULTILINE;
583
584 if (bigend - big < littlelen) {
a1d180c4 585 if ( SvTAIL(littlestr)
cf93c79d 586 && (bigend - big == littlelen - 1)
a1d180c4 587 && (littlelen == 1
12ae5dfc
JH
588 || (*big == *little &&
589 memEQ((char *)big, (char *)little, littlelen - 1))))
cf93c79d
IZ
590 return (char*)big;
591 return Nullch;
592 }
378cc40b 593
cf93c79d 594 if (littlelen <= 2) { /* Special-cased */
cf93c79d
IZ
595
596 if (littlelen == 1) {
597 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
598 /* Know that bigend != big. */
599 if (bigend[-1] == '\n')
600 return (char *)(bigend - 1);
601 return (char *) bigend;
602 }
603 s = big;
604 while (s < bigend) {
605 if (*s == *little)
606 return (char *)s;
607 s++;
608 }
609 if (SvTAIL(littlestr))
610 return (char *) bigend;
611 return Nullch;
612 }
613 if (!littlelen)
614 return (char*)big; /* Cannot be SvTAIL! */
615
616 /* littlelen is 2 */
617 if (SvTAIL(littlestr) && !multiline) {
618 if (bigend[-1] == '\n' && bigend[-2] == *little)
619 return (char*)bigend - 2;
620 if (bigend[-1] == *little)
621 return (char*)bigend - 1;
622 return Nullch;
623 }
624 {
625 /* This should be better than FBM if c1 == c2, and almost
626 as good otherwise: maybe better since we do less indirection.
627 And we save a lot of memory by caching no table. */
628 register unsigned char c1 = little[0];
629 register unsigned char c2 = little[1];
630
631 s = big + 1;
632 bigend--;
633 if (c1 != c2) {
634 while (s <= bigend) {
635 if (s[0] == c2) {
636 if (s[-1] == c1)
637 return (char*)s - 1;
638 s += 2;
639 continue;
3fe6f2dc 640 }
cf93c79d
IZ
641 next_chars:
642 if (s[0] == c1) {
643 if (s == bigend)
644 goto check_1char_anchor;
645 if (s[1] == c2)
646 return (char*)s;
647 else {
648 s++;
649 goto next_chars;
650 }
651 }
652 else
653 s += 2;
654 }
655 goto check_1char_anchor;
656 }
657 /* Now c1 == c2 */
658 while (s <= bigend) {
659 if (s[0] == c1) {
660 if (s[-1] == c1)
661 return (char*)s - 1;
662 if (s == bigend)
663 goto check_1char_anchor;
664 if (s[1] == c1)
665 return (char*)s;
666 s += 3;
02128f11 667 }
c277df42 668 else
cf93c79d 669 s += 2;
c277df42 670 }
c277df42 671 }
cf93c79d
IZ
672 check_1char_anchor: /* One char and anchor! */
673 if (SvTAIL(littlestr) && (*bigend == *little))
674 return (char *)bigend; /* bigend is already decremented. */
675 return Nullch;
d48672a2 676 }
cf93c79d 677 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
bbce6d69 678 s = bigend - littlelen;
a1d180c4 679 if (s >= big && bigend[-1] == '\n' && *s == *little
cf93c79d
IZ
680 /* Automatically of length > 2 */
681 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
7506f9c3 682 {
bbce6d69 683 return (char*)s; /* how sweet it is */
7506f9c3
GS
684 }
685 if (s[1] == *little
686 && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
687 {
cf93c79d 688 return (char*)s + 1; /* how sweet it is */
7506f9c3 689 }
02128f11
IZ
690 return Nullch;
691 }
cf93c79d
IZ
692 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
693 char *b = ninstr((char*)big,(char*)bigend,
694 (char*)little, (char*)little + littlelen);
695
696 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
697 /* Chop \n from littlestr: */
698 s = bigend - littlelen + 1;
7506f9c3
GS
699 if (*s == *little
700 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
701 {
3fe6f2dc 702 return (char*)s;
7506f9c3 703 }
cf93c79d 704 return Nullch;
a687059c 705 }
cf93c79d 706 return b;
a687059c 707 }
a1d180c4 708
cf93c79d
IZ
709 { /* Do actual FBM. */
710 register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
711 register unsigned char *oldlittle;
712
713 if (littlelen > bigend - big)
714 return Nullch;
715 --littlelen; /* Last char found by table lookup */
716
717 s = big + littlelen;
718 little += littlelen; /* last char */
719 oldlittle = little;
720 if (s < bigend) {
721 register I32 tmp;
722
723 top2:
724 /*SUPPRESS 560*/
7506f9c3 725 if ((tmp = table[*s])) {
cf93c79d 726 if ((s += tmp) < bigend)
62b28dd9 727 goto top2;
cf93c79d
IZ
728 goto check_end;
729 }
730 else { /* less expensive than calling strncmp() */
731 register unsigned char *olds = s;
732
733 tmp = littlelen;
734
735 while (tmp--) {
736 if (*--s == *--little)
737 continue;
cf93c79d
IZ
738 s = olds + 1; /* here we pay the price for failure */
739 little = oldlittle;
740 if (s < bigend) /* fake up continue to outer loop */
741 goto top2;
742 goto check_end;
743 }
744 return (char *)s;
a687059c 745 }
378cc40b 746 }
cf93c79d
IZ
747 check_end:
748 if ( s == bigend && (table[-1] & FBMcf_TAIL)
12ae5dfc
JH
749 && memEQ((char *)(bigend - littlelen),
750 (char *)(oldlittle - littlelen), littlelen) )
cf93c79d
IZ
751 return (char*)bigend - littlelen;
752 return Nullch;
378cc40b 753 }
378cc40b
LW
754}
755
c277df42
IZ
756/* start_shift, end_shift are positive quantities which give offsets
757 of ends of some substring of bigstr.
758 If `last' we want the last occurence.
759 old_posp is the way of communication between consequent calls if
a1d180c4 760 the next call needs to find the .
c277df42 761 The initial *old_posp should be -1.
cf93c79d
IZ
762
763 Note that we take into account SvTAIL, so one can get extra
764 optimizations if _ALL flag is set.
c277df42
IZ
765 */
766
cf93c79d 767/* If SvTAIL is actually due to \Z or \z, this gives false positives
26fa51c3 768 if PL_multiline. In fact if !PL_multiline the authoritative answer
cf93c79d
IZ
769 is not supported yet. */
770
378cc40b 771char *
864dbfa3 772Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
378cc40b 773{
a687059c
LW
774 register unsigned char *s, *x;
775 register unsigned char *big;
79072805
LW
776 register I32 pos;
777 register I32 previous;
778 register I32 first;
a687059c 779 register unsigned char *little;
c277df42 780 register I32 stop_pos;
a687059c 781 register unsigned char *littleend;
c277df42 782 I32 found = 0;
378cc40b 783
c277df42 784 if (*old_posp == -1
3280af22 785 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
cf93c79d
IZ
786 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
787 cant_find:
a1d180c4 788 if ( BmRARE(littlestr) == '\n'
cf93c79d
IZ
789 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
790 little = (unsigned char *)(SvPVX(littlestr));
791 littleend = little + SvCUR(littlestr);
792 first = *little++;
793 goto check_tail;
794 }
378cc40b 795 return Nullch;
cf93c79d
IZ
796 }
797
463ee0b2 798 little = (unsigned char *)(SvPVX(littlestr));
79072805 799 littleend = little + SvCUR(littlestr);
378cc40b 800 first = *little++;
c277df42 801 /* The value of pos we can start at: */
79072805 802 previous = BmPREVIOUS(littlestr);
463ee0b2 803 big = (unsigned char *)(SvPVX(bigstr));
c277df42
IZ
804 /* The value of pos we can stop at: */
805 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
cf93c79d 806 if (previous + start_shift > stop_pos) {
0fe87f7c
HS
807/*
808 stop_pos does not include SvTAIL in the count, so this check is incorrect
809 (I think) - see [ID 20010618.006] and t/op/study.t. HVDS 2001/06/19
810*/
811#if 0
cf93c79d
IZ
812 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
813 goto check_tail;
0fe87f7c 814#endif
cf93c79d
IZ
815 return Nullch;
816 }
c277df42 817 while (pos < previous + start_shift) {
3280af22 818 if (!(pos += PL_screamnext[pos]))
cf93c79d 819 goto cant_find;
378cc40b 820 }
de3bb511 821 big -= previous;
bbce6d69 822 do {
ef64f398 823 if (pos >= stop_pos) break;
bbce6d69 824 if (big[pos] != first)
825 continue;
826 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
bbce6d69 827 if (*s++ != *x++) {
828 s--;
829 break;
378cc40b 830 }
bbce6d69 831 }
c277df42
IZ
832 if (s == littleend) {
833 *old_posp = pos;
834 if (!last) return (char *)(big+pos);
835 found = 1;
836 }
3280af22 837 } while ( pos += PL_screamnext[pos] );
a1d180c4 838 if (last && found)
cf93c79d 839 return (char *)(big+(*old_posp));
cf93c79d
IZ
840 check_tail:
841 if (!SvTAIL(littlestr) || (end_shift > 0))
842 return Nullch;
843 /* Ignore the trailing "\n". This code is not microoptimized */
844 big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
845 stop_pos = littleend - little; /* Actual littlestr len */
846 if (stop_pos == 0)
847 return (char*)big;
848 big -= stop_pos;
849 if (*big == first
12ae5dfc
JH
850 && ((stop_pos == 1) ||
851 memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
cf93c79d
IZ
852 return (char*)big;
853 return Nullch;
8d063cd8
LW
854}
855
79072805 856I32
864dbfa3 857Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
79072805 858{
bbce6d69 859 register U8 *a = (U8 *)s1;
860 register U8 *b = (U8 *)s2;
79072805 861 while (len--) {
22c35a8c 862 if (*a != *b && *a != PL_fold[*b])
bbce6d69 863 return 1;
864 a++,b++;
865 }
866 return 0;
867}
868
869I32
864dbfa3 870Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
bbce6d69 871{
872 register U8 *a = (U8 *)s1;
873 register U8 *b = (U8 *)s2;
874 while (len--) {
22c35a8c 875 if (*a != *b && *a != PL_fold_locale[*b])
bbce6d69 876 return 1;
877 a++,b++;
79072805
LW
878 }
879 return 0;
880}
881
8d063cd8
LW
882/* copy a string to a safe spot */
883
954c1994
GS
884/*
885=for apidoc savepv
886
887Copy a string to a safe spot. This does not use an SV.
888
889=cut
890*/
891
8d063cd8 892char *
864dbfa3 893Perl_savepv(pTHX_ const char *sv)
8d063cd8 894{
a687059c 895 register char *newaddr;
8d063cd8 896
79072805
LW
897 New(902,newaddr,strlen(sv)+1,char);
898 (void)strcpy(newaddr,sv);
8d063cd8
LW
899 return newaddr;
900}
901
a687059c
LW
902/* same thing but with a known length */
903
954c1994
GS
904/*
905=for apidoc savepvn
906
907Copy a string to a safe spot. The C<len> indicates number of bytes to
908copy. This does not use an SV.
909
910=cut
911*/
912
a687059c 913char *
864dbfa3 914Perl_savepvn(pTHX_ const char *sv, register I32 len)
a687059c
LW
915{
916 register char *newaddr;
917
918 New(903,newaddr,len+1,char);
79072805 919 Copy(sv,newaddr,len,char); /* might not be null terminated */
a687059c
LW
920 newaddr[len] = '\0'; /* is now */
921 return newaddr;
922}
923
cea2e8a9 924/* the SV for Perl_form() and mess() is not kept in an arena */
fc36a67e 925
76e3520e 926STATIC SV *
cea2e8a9 927S_mess_alloc(pTHX)
fc36a67e 928{
929 SV *sv;
930 XPVMG *any;
931
e72dc28c
GS
932 if (!PL_dirty)
933 return sv_2mortal(newSVpvn("",0));
934
0372dbb6
GS
935 if (PL_mess_sv)
936 return PL_mess_sv;
937
fc36a67e 938 /* Create as PVMG now, to avoid any upgrading later */
939 New(905, sv, 1, SV);
940 Newz(905, any, 1, XPVMG);
941 SvFLAGS(sv) = SVt_PVMG;
942 SvANY(sv) = (void*)any;
943 SvREFCNT(sv) = 1 << 30; /* practically infinite */
e72dc28c 944 PL_mess_sv = sv;
fc36a67e 945 return sv;
946}
947
c5be433b 948#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
949char *
950Perl_form_nocontext(const char* pat, ...)
951{
952 dTHX;
c5be433b 953 char *retval;
cea2e8a9
GS
954 va_list args;
955 va_start(args, pat);
c5be433b 956 retval = vform(pat, &args);
cea2e8a9 957 va_end(args);
c5be433b 958 return retval;
cea2e8a9 959}
c5be433b 960#endif /* PERL_IMPLICIT_CONTEXT */
cea2e8a9 961
8990e307 962char *
864dbfa3 963Perl_form(pTHX_ const char* pat, ...)
8990e307 964{
c5be433b 965 char *retval;
46fc3d4c 966 va_list args;
46fc3d4c 967 va_start(args, pat);
c5be433b 968 retval = vform(pat, &args);
46fc3d4c 969 va_end(args);
c5be433b
GS
970 return retval;
971}
972
973char *
974Perl_vform(pTHX_ const char *pat, va_list *args)
975{
976 SV *sv = mess_alloc();
977 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
e72dc28c 978 return SvPVX(sv);
46fc3d4c 979}
a687059c 980
5a844595
GS
981#if defined(PERL_IMPLICIT_CONTEXT)
982SV *
983Perl_mess_nocontext(const char *pat, ...)
984{
985 dTHX;
986 SV *retval;
987 va_list args;
988 va_start(args, pat);
989 retval = vmess(pat, &args);
990 va_end(args);
991 return retval;
992}
993#endif /* PERL_IMPLICIT_CONTEXT */
994
06bf62c7 995SV *
5a844595
GS
996Perl_mess(pTHX_ const char *pat, ...)
997{
998 SV *retval;
999 va_list args;
1000 va_start(args, pat);
1001 retval = vmess(pat, &args);
1002 va_end(args);
1003 return retval;
1004}
1005
1006SV *
1007Perl_vmess(pTHX_ const char *pat, va_list *args)
46fc3d4c 1008{
e72dc28c 1009 SV *sv = mess_alloc();
46fc3d4c 1010 static char dgd[] = " during global destruction.\n";
1011
fc36a67e 1012 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
46fc3d4c 1013 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
57843af0 1014 if (CopLINE(PL_curcop))
ed094faf
GS
1015 Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1016 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
515f54a1
GS
1017 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1018 bool line_mode = (RsSIMPLE(PL_rs) &&
7c1e0849 1019 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
57def98f 1020 Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
cf2093f6 1021 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
a1d180c4 1022 line_mode ? "line" : "chunk",
cf2093f6 1023 (IV)IoLINES(GvIOp(PL_last_in_gv)));
a687059c 1024 }
9efbc0eb 1025#ifdef USE_THREADS
e8e6f333
GS
1026 if (thr->tid)
1027 Perl_sv_catpvf(aTHX_ sv, " thread %ld", thr->tid);
9efbc0eb 1028#endif
515f54a1 1029 sv_catpv(sv, PL_dirty ? dgd : ".\n");
a687059c 1030 }
06bf62c7 1031 return sv;
a687059c
LW
1032}
1033
c5be433b
GS
1034OP *
1035Perl_vdie(pTHX_ const char* pat, va_list *args)
36477c24 1036{
36477c24 1037 char *message;
3280af22 1038 int was_in_eval = PL_in_eval;
36477c24 1039 HV *stash;
1040 GV *gv;
1041 CV *cv;
06bf62c7
GS
1042 SV *msv;
1043 STRLEN msglen;
36477c24 1044
bf49b057 1045 DEBUG_S(PerlIO_printf(Perl_debug_log,
199100c8 1046 "%p: die: curstack = %p, mainstack = %p\n",
533c011a 1047 thr, PL_curstack, PL_mainstack));
36477c24 1048
06bf62c7 1049 if (pat) {
5a844595
GS
1050 msv = vmess(pat, args);
1051 if (PL_errors && SvCUR(PL_errors)) {
1052 sv_catsv(PL_errors, msv);
1053 message = SvPV(PL_errors, msglen);
1054 SvCUR_set(PL_errors, 0);
1055 }
1056 else
1057 message = SvPV(msv,msglen);
06bf62c7
GS
1058 }
1059 else {
1060 message = Nullch;
0f79a09d 1061 msglen = 0;
06bf62c7 1062 }
36477c24 1063
bf49b057 1064 DEBUG_S(PerlIO_printf(Perl_debug_log,
199100c8 1065 "%p: die: message = %s\ndiehook = %p\n",
533c011a 1066 thr, message, PL_diehook));
3280af22 1067 if (PL_diehook) {
cea2e8a9 1068 /* sv_2cv might call Perl_croak() */
3280af22 1069 SV *olddiehook = PL_diehook;
1738f5c4 1070 ENTER;
3280af22
NIS
1071 SAVESPTR(PL_diehook);
1072 PL_diehook = Nullsv;
1738f5c4
CS
1073 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1074 LEAVE;
1075 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1076 dSP;
774d564b 1077 SV *msg;
1078
1079 ENTER;
3a1f2dc9 1080 save_re_context();
79cb57f6 1081 if (message) {
06bf62c7 1082 msg = newSVpvn(message, msglen);
4e6ea2c3
GS
1083 SvREADONLY_on(msg);
1084 SAVEFREESV(msg);
1085 }
1086 else {
1087 msg = ERRSV;
1088 }
1738f5c4 1089
e788e7d3 1090 PUSHSTACKi(PERLSI_DIEHOOK);
924508f0 1091 PUSHMARK(SP);
1738f5c4
CS
1092 XPUSHs(msg);
1093 PUTBACK;
0cdb2077 1094 call_sv((SV*)cv, G_DISCARD);
d3acc0f7 1095 POPSTACK;
774d564b 1096 LEAVE;
1738f5c4 1097 }
36477c24 1098 }
1099
06bf62c7 1100 PL_restartop = die_where(message, msglen);
bf49b057 1101 DEBUG_S(PerlIO_printf(Perl_debug_log,
7c06b590 1102 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
533c011a 1103 thr, PL_restartop, was_in_eval, PL_top_env));
3280af22 1104 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
6224f72b 1105 JMPENV_JUMP(3);
3280af22 1106 return PL_restartop;
36477c24 1107}
1108
c5be433b 1109#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
1110OP *
1111Perl_die_nocontext(const char* pat, ...)
a687059c 1112{
cea2e8a9
GS
1113 dTHX;
1114 OP *o;
a687059c 1115 va_list args;
cea2e8a9 1116 va_start(args, pat);
c5be433b 1117 o = vdie(pat, &args);
cea2e8a9
GS
1118 va_end(args);
1119 return o;
1120}
c5be433b 1121#endif /* PERL_IMPLICIT_CONTEXT */
cea2e8a9
GS
1122
1123OP *
1124Perl_die(pTHX_ const char* pat, ...)
1125{
1126 OP *o;
1127 va_list args;
1128 va_start(args, pat);
c5be433b 1129 o = vdie(pat, &args);
cea2e8a9
GS
1130 va_end(args);
1131 return o;
1132}
1133
c5be433b
GS
1134void
1135Perl_vcroak(pTHX_ const char* pat, va_list *args)
cea2e8a9 1136{
de3bb511 1137 char *message;
748a9306
LW
1138 HV *stash;
1139 GV *gv;
1140 CV *cv;
06bf62c7
GS
1141 SV *msv;
1142 STRLEN msglen;
a687059c 1143
9983fa3c
GS
1144 if (pat) {
1145 msv = vmess(pat, args);
1146 if (PL_errors && SvCUR(PL_errors)) {
1147 sv_catsv(PL_errors, msv);
1148 message = SvPV(PL_errors, msglen);
1149 SvCUR_set(PL_errors, 0);
1150 }
1151 else
1152 message = SvPV(msv,msglen);
1153 }
1154 else {
1155 message = Nullch;
1156 msglen = 0;
5a844595 1157 }
5a844595 1158
b900a521
JH
1159 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s",
1160 PTR2UV(thr), message));
5a844595 1161
3280af22 1162 if (PL_diehook) {
cea2e8a9 1163 /* sv_2cv might call Perl_croak() */
3280af22 1164 SV *olddiehook = PL_diehook;
1738f5c4 1165 ENTER;
3280af22
NIS
1166 SAVESPTR(PL_diehook);
1167 PL_diehook = Nullsv;
20cec16a 1168 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1738f5c4
CS
1169 LEAVE;
1170 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
20cec16a 1171 dSP;
774d564b 1172 SV *msg;
1173
1174 ENTER;
3a1f2dc9 1175 save_re_context();
9983fa3c
GS
1176 if (message) {
1177 msg = newSVpvn(message, msglen);
1178 SvREADONLY_on(msg);
1179 SAVEFREESV(msg);
1180 }
1181 else {
1182 msg = ERRSV;
1183 }
20cec16a 1184
e788e7d3 1185 PUSHSTACKi(PERLSI_DIEHOOK);
924508f0 1186 PUSHMARK(SP);
1738f5c4 1187 XPUSHs(msg);
20cec16a 1188 PUTBACK;
864dbfa3 1189 call_sv((SV*)cv, G_DISCARD);
d3acc0f7 1190 POPSTACK;
774d564b 1191 LEAVE;
20cec16a 1192 }
748a9306 1193 }
3280af22 1194 if (PL_in_eval) {
06bf62c7 1195 PL_restartop = die_where(message, msglen);
6224f72b 1196 JMPENV_JUMP(3);
a0d0e21e 1197 }
d175a3f0
GS
1198 {
1199#ifdef USE_SFIO
1200 /* SFIO can really mess with your errno */
1201 int e = errno;
1202#endif
bf49b057
GS
1203 PerlIO *serr = Perl_error_log;
1204
1205 PerlIO_write(serr, message, msglen);
1206 (void)PerlIO_flush(serr);
d175a3f0
GS
1207#ifdef USE_SFIO
1208 errno = e;
1209#endif
1210 }
f86702cc 1211 my_failure_exit();
a687059c
LW
1212}
1213
c5be433b 1214#if defined(PERL_IMPLICIT_CONTEXT)
8990e307 1215void
cea2e8a9 1216Perl_croak_nocontext(const char *pat, ...)
a687059c 1217{
cea2e8a9 1218 dTHX;
a687059c 1219 va_list args;
cea2e8a9 1220 va_start(args, pat);
c5be433b 1221 vcroak(pat, &args);
cea2e8a9
GS
1222 /* NOTREACHED */
1223 va_end(args);
1224}
1225#endif /* PERL_IMPLICIT_CONTEXT */
1226
954c1994
GS
1227/*
1228=for apidoc croak
1229
9983fa3c
GS
1230This is the XSUB-writer's interface to Perl's C<die> function.
1231Normally use this function the same way you use the C C<printf>
1232function. See C<warn>.
1233
1234If you want to throw an exception object, assign the object to
1235C<$@> and then pass C<Nullch> to croak():
1236
1237 errsv = get_sv("@", TRUE);
1238 sv_setsv(errsv, exception_object);
1239 croak(Nullch);
954c1994
GS
1240
1241=cut
1242*/
1243
cea2e8a9
GS
1244void
1245Perl_croak(pTHX_ const char *pat, ...)
1246{
1247 va_list args;
1248 va_start(args, pat);
c5be433b 1249 vcroak(pat, &args);
cea2e8a9
GS
1250 /* NOTREACHED */
1251 va_end(args);
1252}
1253
c5be433b
GS
1254void
1255Perl_vwarn(pTHX_ const char* pat, va_list *args)
cea2e8a9 1256{
de3bb511 1257 char *message;
748a9306
LW
1258 HV *stash;
1259 GV *gv;
1260 CV *cv;
06bf62c7
GS
1261 SV *msv;
1262 STRLEN msglen;
a687059c 1263
5a844595 1264 msv = vmess(pat, args);
06bf62c7 1265 message = SvPV(msv, msglen);
a687059c 1266
3280af22 1267 if (PL_warnhook) {
cea2e8a9 1268 /* sv_2cv might call Perl_warn() */
3280af22 1269 SV *oldwarnhook = PL_warnhook;
1738f5c4 1270 ENTER;
3280af22
NIS
1271 SAVESPTR(PL_warnhook);
1272 PL_warnhook = Nullsv;
20cec16a 1273 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1738f5c4
CS
1274 LEAVE;
1275 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
20cec16a 1276 dSP;
774d564b 1277 SV *msg;
1278
1279 ENTER;
3a1f2dc9 1280 save_re_context();
06bf62c7 1281 msg = newSVpvn(message, msglen);
774d564b 1282 SvREADONLY_on(msg);
1283 SAVEFREESV(msg);
1284
e788e7d3 1285 PUSHSTACKi(PERLSI_WARNHOOK);
924508f0 1286 PUSHMARK(SP);
774d564b 1287 XPUSHs(msg);
20cec16a 1288 PUTBACK;
864dbfa3 1289 call_sv((SV*)cv, G_DISCARD);
d3acc0f7 1290 POPSTACK;
774d564b 1291 LEAVE;
20cec16a 1292 return;
1293 }
748a9306 1294 }
bf49b057
GS
1295 {
1296 PerlIO *serr = Perl_error_log;
1297
1298 PerlIO_write(serr, message, msglen);
a687059c 1299#ifdef LEAKTEST
a1d180c4 1300 DEBUG_L(*message == '!'
bf49b057
GS
1301 ? (xstat(message[1]=='!'
1302 ? (message[2]=='!' ? 2 : 1)
1303 : 0)
1304 , 0)
1305 : 0);
a687059c 1306#endif
bf49b057
GS
1307 (void)PerlIO_flush(serr);
1308 }
a687059c 1309}
8d063cd8 1310
c5be433b 1311#if defined(PERL_IMPLICIT_CONTEXT)
cea2e8a9
GS
1312void
1313Perl_warn_nocontext(const char *pat, ...)
1314{
1315 dTHX;
1316 va_list args;
1317 va_start(args, pat);
c5be433b 1318 vwarn(pat, &args);
cea2e8a9
GS
1319 va_end(args);
1320}
1321#endif /* PERL_IMPLICIT_CONTEXT */
1322
954c1994
GS
1323/*
1324=for apidoc warn
1325
1326This is the XSUB-writer's interface to Perl's C<warn> function. Use this
1327function the same way you use the C C<printf> function. See
1328C<croak>.
1329
1330=cut
1331*/
1332
cea2e8a9
GS
1333void
1334Perl_warn(pTHX_ const char *pat, ...)
1335{
1336 va_list args;
1337 va_start(args, pat);
c5be433b 1338 vwarn(pat, &args);
cea2e8a9
GS
1339 va_end(args);
1340}
1341
c5be433b
GS
1342#if defined(PERL_IMPLICIT_CONTEXT)
1343void
1344Perl_warner_nocontext(U32 err, const char *pat, ...)
1345{
1346 dTHX;
1347 va_list args;
1348 va_start(args, pat);
1349 vwarner(err, pat, &args);
1350 va_end(args);
1351}
1352#endif /* PERL_IMPLICIT_CONTEXT */
1353
599cee73 1354void
864dbfa3 1355Perl_warner(pTHX_ U32 err, const char* pat,...)
599cee73
PM
1356{
1357 va_list args;
c5be433b
GS
1358 va_start(args, pat);
1359 vwarner(err, pat, &args);
1360 va_end(args);
1361}
1362
1363void
1364Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args)
1365{
599cee73
PM
1366 char *message;
1367 HV *stash;
1368 GV *gv;
1369 CV *cv;
06bf62c7
GS
1370 SV *msv;
1371 STRLEN msglen;
599cee73 1372
5a844595 1373 msv = vmess(pat, args);
06bf62c7 1374 message = SvPV(msv, msglen);
599cee73
PM
1375
1376 if (ckDEAD(err)) {
1377#ifdef USE_THREADS
b900a521 1378 DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s", PTR2UV(thr), message));
599cee73
PM
1379#endif /* USE_THREADS */
1380 if (PL_diehook) {
cea2e8a9 1381 /* sv_2cv might call Perl_croak() */
599cee73
PM
1382 SV *olddiehook = PL_diehook;
1383 ENTER;
1384 SAVESPTR(PL_diehook);
1385 PL_diehook = Nullsv;
1386 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1387 LEAVE;
1388 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1389 dSP;
1390 SV *msg;
a1d180c4 1391
599cee73 1392 ENTER;
3a1f2dc9 1393 save_re_context();
06bf62c7 1394 msg = newSVpvn(message, msglen);
599cee73
PM
1395 SvREADONLY_on(msg);
1396 SAVEFREESV(msg);
a1d180c4 1397
3a1f2dc9 1398 PUSHSTACKi(PERLSI_DIEHOOK);
599cee73
PM
1399 PUSHMARK(sp);
1400 XPUSHs(msg);
1401 PUTBACK;
864dbfa3 1402 call_sv((SV*)cv, G_DISCARD);
3a1f2dc9 1403 POPSTACK;
599cee73
PM
1404 LEAVE;
1405 }
1406 }
1407 if (PL_in_eval) {
06bf62c7 1408 PL_restartop = die_where(message, msglen);
599cee73
PM
1409 JMPENV_JUMP(3);
1410 }
bf49b057
GS
1411 {
1412 PerlIO *serr = Perl_error_log;
1413 PerlIO_write(serr, message, msglen);
1414 (void)PerlIO_flush(serr);
1415 }
599cee73
PM
1416 my_failure_exit();
1417
1418 }
1419 else {
1420 if (PL_warnhook) {
cea2e8a9 1421 /* sv_2cv might call Perl_warn() */
599cee73
PM
1422 SV *oldwarnhook = PL_warnhook;
1423 ENTER;
1424 SAVESPTR(PL_warnhook);
1425 PL_warnhook = Nullsv;
1426 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
3a1f2dc9 1427 LEAVE;
599cee73
PM
1428 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1429 dSP;
1430 SV *msg;
a1d180c4 1431
599cee73 1432 ENTER;
3a1f2dc9 1433 save_re_context();
06bf62c7 1434 msg = newSVpvn(message, msglen);
599cee73
PM
1435 SvREADONLY_on(msg);
1436 SAVEFREESV(msg);
a1d180c4 1437
3a1f2dc9 1438 PUSHSTACKi(PERLSI_WARNHOOK);
599cee73
PM
1439 PUSHMARK(sp);
1440 XPUSHs(msg);
1441 PUTBACK;
864dbfa3 1442 call_sv((SV*)cv, G_DISCARD);
3a1f2dc9 1443 POPSTACK;
599cee73
PM
1444 LEAVE;
1445 return;
1446 }
1447 }
bf49b057
GS
1448 {
1449 PerlIO *serr = Perl_error_log;
1450 PerlIO_write(serr, message, msglen);
599cee73 1451#ifdef LEAKTEST
a1d180c4 1452 DEBUG_L(*message == '!'
06247ec9
JH
1453 ? (xstat(message[1]=='!'
1454 ? (message[2]=='!' ? 2 : 1)
1455 : 0)
1456 , 0)
1457 : 0);
599cee73 1458#endif
bf49b057
GS
1459 (void)PerlIO_flush(serr);
1460 }
599cee73
PM
1461 }
1462}
1463
13b6e58c
JH
1464#ifdef USE_ENVIRON_ARRAY
1465 /* VMS' and EPOC's my_setenv() is in vms.c and epoc.c */
2986a63f 1466#if !defined(WIN32) && !defined(NETWARE)
8d063cd8 1467void
864dbfa3 1468Perl_my_setenv(pTHX_ char *nam, char *val)
8d063cd8 1469{
f2517201
GS
1470#ifndef PERL_USE_SAFE_PUTENV
1471 /* most putenv()s leak, so we manipulate environ directly */
79072805 1472 register I32 i=setenv_getix(nam); /* where does it go? */
8d063cd8 1473
3280af22 1474 if (environ == PL_origenviron) { /* need we copy environment? */
79072805
LW
1475 I32 j;
1476 I32 max;
fe14fcc3
LW
1477 char **tmpenv;
1478
de3bb511 1479 /*SUPPRESS 530*/
fe14fcc3 1480 for (max = i; environ[max]; max++) ;
f2517201
GS
1481 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1482 for (j=0; j<max; j++) { /* copy environment */
1483 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1484 strcpy(tmpenv[j], environ[j]);
1485 }
fe14fcc3
LW
1486 tmpenv[max] = Nullch;
1487 environ = tmpenv; /* tell exec where it is now */
1488 }
a687059c 1489 if (!val) {
f2517201 1490 safesysfree(environ[i]);
a687059c
LW
1491 while (environ[i]) {
1492 environ[i] = environ[i+1];
1493 i++;
1494 }
1495 return;
1496 }
8d063cd8 1497 if (!environ[i]) { /* does not exist yet */
f2517201 1498 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
8d063cd8
LW
1499 environ[i+1] = Nullch; /* make sure it's null terminated */
1500 }
fe14fcc3 1501 else
f2517201
GS
1502 safesysfree(environ[i]);
1503 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1504
a687059c 1505 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
f2517201
GS
1506
1507#else /* PERL_USE_SAFE_PUTENV */
47dafe4d
EF
1508# if defined(__CYGWIN__)
1509 setenv(nam, val, 1);
1510# else
f2517201
GS
1511 char *new_env;
1512
1513 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
f2517201 1514 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
f2517201 1515 (void)putenv(new_env);
47dafe4d 1516# endif /* __CYGWIN__ */
f2517201 1517#endif /* PERL_USE_SAFE_PUTENV */
8d063cd8
LW
1518}
1519
2986a63f 1520#else /* WIN32 || NETWARE */
68dc0745 1521
1522void
864dbfa3 1523Perl_my_setenv(pTHX_ char *nam,char *val)
68dc0745 1524{
ac5c734f
GS
1525 register char *envstr;
1526 STRLEN len = strlen(nam) + 3;
1527 if (!val) {
1528 val = "";
1529 }
1530 len += strlen(val);
1531 New(904, envstr, len, char);
1532 (void)sprintf(envstr,"%s=%s",nam,val);
1533 (void)PerlEnv_putenv(envstr);
1534 Safefree(envstr);
3e3baf6d
TB
1535}
1536
2986a63f 1537#endif /* WIN32 || NETWARE */
3e3baf6d
TB
1538
1539I32
864dbfa3 1540Perl_setenv_getix(pTHX_ char *nam)
3e3baf6d
TB
1541{
1542 register I32 i, len = strlen(nam);
1543
1544 for (i = 0; environ[i]; i++) {
1545 if (
1546#ifdef WIN32
1547 strnicmp(environ[i],nam,len) == 0
1548#else
1549 strnEQ(environ[i],nam,len)
1550#endif
1551 && environ[i][len] == '=')
1552 break; /* strnEQ must come first to avoid */
1553 } /* potential SEGV's */
1554 return i;
68dc0745 1555}
1556
ed79a026 1557#endif /* !VMS && !EPOC*/
378cc40b 1558
16d20bd9 1559#ifdef UNLINK_ALL_VERSIONS
79072805 1560I32
864dbfa3 1561Perl_unlnk(pTHX_ char *f) /* unlink all versions of a file */
378cc40b 1562{
79072805 1563 I32 i;
378cc40b 1564
6ad3d225 1565 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
378cc40b
LW
1566 return i ? 0 : -1;
1567}
1568#endif
1569
7a3f2258 1570/* this is a drop-in replacement for bcopy() */
2253333f 1571#if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
378cc40b 1572char *
7a3f2258 1573Perl_my_bcopy(register const char *from,register char *to,register I32 len)
378cc40b
LW
1574{
1575 char *retval = to;
1576
7c0587c8
LW
1577 if (from - to >= 0) {
1578 while (len--)
1579 *to++ = *from++;
1580 }
1581 else {
1582 to += len;
1583 from += len;
1584 while (len--)
faf8582f 1585 *(--to) = *(--from);
7c0587c8 1586 }
378cc40b
LW
1587 return retval;
1588}
ffed7fef 1589#endif
378cc40b 1590
7a3f2258 1591/* this is a drop-in replacement for memset() */
fc36a67e 1592#ifndef HAS_MEMSET
1593void *
7a3f2258 1594Perl_my_memset(register char *loc, register I32 ch, register I32 len)
fc36a67e 1595{
1596 char *retval = loc;
1597
1598 while (len--)
1599 *loc++ = ch;
1600 return retval;
1601}
1602#endif
1603
7a3f2258 1604/* this is a drop-in replacement for bzero() */
7c0587c8 1605#if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
378cc40b 1606char *
7a3f2258 1607Perl_my_bzero(register char *loc, register I32 len)
378cc40b
LW
1608{
1609 char *retval = loc;
1610
1611 while (len--)
1612 *loc++ = 0;
1613 return retval;
1614}
1615#endif
7c0587c8 1616
7a3f2258 1617/* this is a drop-in replacement for memcmp() */
36477c24 1618#if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
79072805 1619I32
7a3f2258 1620Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
7c0587c8 1621{
36477c24 1622 register U8 *a = (U8 *)s1;
1623 register U8 *b = (U8 *)s2;
79072805 1624 register I32 tmp;
7c0587c8
LW
1625
1626 while (len--) {
36477c24 1627 if (tmp = *a++ - *b++)
7c0587c8
LW
1628 return tmp;
1629 }
1630 return 0;
1631}
36477c24 1632#endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
a687059c 1633
fe14fcc3 1634#ifndef HAS_VPRINTF
a687059c 1635
85e6fe83 1636#ifdef USE_CHAR_VSPRINTF
a687059c
LW
1637char *
1638#else
1639int
1640#endif
08105a92 1641vsprintf(char *dest, const char *pat, char *args)
a687059c
LW
1642{
1643 FILE fakebuf;
1644
1645 fakebuf._ptr = dest;
1646 fakebuf._cnt = 32767;
35c8bce7
LW
1647#ifndef _IOSTRG
1648#define _IOSTRG 0
1649#endif
a687059c
LW
1650 fakebuf._flag = _IOWRT|_IOSTRG;
1651 _doprnt(pat, args, &fakebuf); /* what a kludge */
1652 (void)putc('\0', &fakebuf);
85e6fe83 1653#ifdef USE_CHAR_VSPRINTF
a687059c
LW
1654 return(dest);
1655#else
1656 return 0; /* perl doesn't use return value */
1657#endif
1658}
1659
fe14fcc3 1660#endif /* HAS_VPRINTF */
a687059c
LW
1661
1662#ifdef MYSWAP
ffed7fef 1663#if BYTEORDER != 0x4321
a687059c 1664short
864dbfa3 1665Perl_my_swap(pTHX_ short s)
a687059c
LW
1666{
1667#if (BYTEORDER & 1) == 0
1668 short result;
1669
1670 result = ((s & 255) << 8) + ((s >> 8) & 255);
1671 return result;
1672#else
1673 return s;
1674#endif
1675}
1676
1677long
864dbfa3 1678Perl_my_htonl(pTHX_ long l)
a687059c
LW
1679{
1680 union {
1681 long result;
ffed7fef 1682 char c[sizeof(long)];
a687059c
LW
1683 } u;
1684
ffed7fef 1685#if BYTEORDER == 0x1234
a687059c
LW
1686 u.c[0] = (l >> 24) & 255;
1687 u.c[1] = (l >> 16) & 255;
1688 u.c[2] = (l >> 8) & 255;
1689 u.c[3] = l & 255;
1690 return u.result;
1691#else
ffed7fef 1692#if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
cea2e8a9 1693 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
a687059c 1694#else
79072805
LW
1695 register I32 o;
1696 register I32 s;
a687059c 1697
ffed7fef
LW
1698 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1699 u.c[o & 0xf] = (l >> s) & 255;
a687059c
LW
1700 }
1701 return u.result;
1702#endif
1703#endif
1704}
1705
1706long
864dbfa3 1707Perl_my_ntohl(pTHX_ long l)
a687059c
LW
1708{
1709 union {
1710 long l;
ffed7fef 1711 char c[sizeof(long)];
a687059c
LW
1712 } u;
1713
ffed7fef 1714#if BYTEORDER == 0x1234
a687059c
LW
1715 u.c[0] = (l >> 24) & 255;
1716 u.c[1] = (l >> 16) & 255;
1717 u.c[2] = (l >> 8) & 255;
1718 u.c[3] = l & 255;
1719 return u.l;
1720#else
ffed7fef 1721#if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
cea2e8a9 1722 Perl_croak(aTHX_ "Unknown BYTEORDER\n");
a687059c 1723#else
79072805
LW
1724 register I32 o;
1725 register I32 s;
a687059c
LW
1726
1727 u.l = l;
1728 l = 0;
ffed7fef
LW
1729 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1730 l |= (u.c[o & 0xf] & 255) << s;
a687059c
LW
1731 }
1732 return l;
1733#endif
1734#endif
1735}
1736
ffed7fef 1737#endif /* BYTEORDER != 0x4321 */
988174c1
LW
1738#endif /* MYSWAP */
1739
1740/*
1741 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1742 * If these functions are defined,
1743 * the BYTEORDER is neither 0x1234 nor 0x4321.
1744 * However, this is not assumed.
1745 * -DWS
1746 */
1747
1748#define HTOV(name,type) \
1749 type \
ba106d47 1750 name (register type n) \
988174c1
LW
1751 { \
1752 union { \
1753 type value; \
1754 char c[sizeof(type)]; \
1755 } u; \
79072805
LW
1756 register I32 i; \
1757 register I32 s; \
988174c1
LW
1758 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1759 u.c[i] = (n >> s) & 0xFF; \
1760 } \
1761 return u.value; \
1762 }
1763
1764#define VTOH(name,type) \
1765 type \
ba106d47 1766 name (register type n) \
988174c1
LW
1767 { \
1768 union { \
1769 type value; \
1770 char c[sizeof(type)]; \
1771 } u; \
79072805
LW
1772 register I32 i; \
1773 register I32 s; \
988174c1
LW
1774 u.value = n; \
1775 n = 0; \
1776 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1777 n += (u.c[i] & 0xFF) << s; \
1778 } \
1779 return n; \
1780 }
1781
1782#if defined(HAS_HTOVS) && !defined(htovs)
1783HTOV(htovs,short)
1784#endif
1785#if defined(HAS_HTOVL) && !defined(htovl)
1786HTOV(htovl,long)
1787#endif
1788#if defined(HAS_VTOHS) && !defined(vtohs)
1789VTOH(vtohs,short)
1790#endif
1791#if defined(HAS_VTOHL) && !defined(vtohl)
1792VTOH(vtohl,long)
1793#endif
a687059c 1794
4a7d1889
NIS
1795PerlIO *
1796Perl_my_popen_list(pTHX_ char *mode, int n, SV **args)
1797{
2986a63f 1798#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(OS2) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL) && !defined(NETWARE)
1f852d0d
NIS
1799 int p[2];
1800 register I32 This, that;
1801 register Pid_t pid;
1802 SV *sv;
1803 I32 did_pipes = 0;
1804 int pp[2];
1805
1806 PERL_FLUSHALL_FOR_CHILD;
1807 This = (*mode == 'w');
1808 that = !This;
1809 if (PL_tainting) {
1810 taint_env();
1811 taint_proper("Insecure %s%s", "EXEC");
1812 }
1813 if (PerlProc_pipe(p) < 0)
1814 return Nullfp;
1815 /* Try for another pipe pair for error return */
1816 if (PerlProc_pipe(pp) >= 0)
1817 did_pipes = 1;
1818 while ((pid = vfork()) < 0) {
1819 if (errno != EAGAIN) {
1820 PerlLIO_close(p[This]);
1821 if (did_pipes) {
1822 PerlLIO_close(pp[0]);
1823 PerlLIO_close(pp[1]);
1824 }
1825 return Nullfp;
1826 }
1827 sleep(5);
1828 }
1829 if (pid == 0) {
1830 /* Child */
1f852d0d
NIS
1831#undef THIS
1832#undef THAT
1833#define THIS that
1834#define THAT This
1835 /* Close parent's end of _the_ pipe */
1836 PerlLIO_close(p[THAT]);
1837 /* Close parent's end of error status pipe (if any) */
1838 if (did_pipes) {
1839 PerlLIO_close(pp[0]);
1840#if defined(HAS_FCNTL) && defined(F_SETFD)
1841 /* Close error pipe automatically if exec works */
1842 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
1843#endif
1844 }
1845 /* Now dup our end of _the_ pipe to right position */
1846 if (p[THIS] != (*mode == 'r')) {
1847 PerlLIO_dup2(p[THIS], *mode == 'r');
1848 PerlLIO_close(p[THIS]);
1849 }
1850#if !defined(HAS_FCNTL) || !defined(F_SETFD)
1851 /* No automatic close - do it by hand */
b7953727
JH
1852# ifndef NOFILE
1853# define NOFILE 20
1854# endif
a080fe3d
NIS
1855 {
1856 int fd;
1857
1858 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++) {
1859 if (fd != pp[1])
1860 PerlLIO_close(fd);
1861 }
1f852d0d
NIS
1862 }
1863#endif
1864 do_aexec5(Nullsv, args-1, args-1+n, pp[1], did_pipes);
1865 PerlProc__exit(1);
1866#undef THIS
1867#undef THAT
1868 }
1869 /* Parent */
1870 do_execfree(); /* free any memory malloced by child on vfork */
1871 /* Close child's end of pipe */
1872 PerlLIO_close(p[that]);
1873 if (did_pipes)
1874 PerlLIO_close(pp[1]);
1875 /* Keep the lower of the two fd numbers */
1876 if (p[that] < p[This]) {
1877 PerlLIO_dup2(p[This], p[that]);
1878 PerlLIO_close(p[This]);
1879 p[This] = p[that];
1880 }
1881 LOCK_FDPID_MUTEX;
1882 sv = *av_fetch(PL_fdpid,p[This],TRUE);
1883 UNLOCK_FDPID_MUTEX;
1884 (void)SvUPGRADE(sv,SVt_IV);
1885 SvIVX(sv) = pid;
1886 PL_forkprocess = pid;
1887 /* If we managed to get status pipe check for exec fail */
1888 if (did_pipes && pid > 0) {
1889 int errkid;
1890 int n = 0, n1;
1891
1892 while (n < sizeof(int)) {
1893 n1 = PerlLIO_read(pp[0],
1894 (void*)(((char*)&errkid)+n),
1895 (sizeof(int)) - n);
1896 if (n1 <= 0)
1897 break;
1898 n += n1;
1899 }
1900 PerlLIO_close(pp[0]);
1901 did_pipes = 0;
1902 if (n) { /* Error */
1903 int pid2, status;
1904 if (n != sizeof(int))
1905 Perl_croak(aTHX_ "panic: kid popen errno read");
1906 do {
1907 pid2 = wait4pid(pid, &status, 0);
1908 } while (pid2 == -1 && errno == EINTR);
1909 errno = errkid; /* Propagate errno from kid */
1910 return Nullfp;
1911 }
1912 }
1913 if (did_pipes)
1914 PerlLIO_close(pp[0]);
1915 return PerlIO_fdopen(p[This], mode);
1916#else
4a7d1889
NIS
1917 Perl_croak(aTHX_ "List form of piped open not implemented");
1918 return (PerlIO *) NULL;
1f852d0d 1919#endif
4a7d1889
NIS
1920}
1921
5f05dabc 1922 /* VMS' my_popen() is in VMS.c, same with OS/2. */
cd39f2b6 1923#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
760ac839 1924PerlIO *
864dbfa3 1925Perl_my_popen(pTHX_ char *cmd, char *mode)
a687059c
LW
1926{
1927 int p[2];
8ac85365 1928 register I32 This, that;
d8a83dd3 1929 register Pid_t pid;
79072805 1930 SV *sv;
1738f5c4 1931 I32 doexec = strNE(cmd,"-");
e446cec8
IZ
1932 I32 did_pipes = 0;
1933 int pp[2];
a687059c 1934
45bc9206 1935 PERL_FLUSHALL_FOR_CHILD;
ddcf38b7
IZ
1936#ifdef OS2
1937 if (doexec) {
23da6c43 1938 return my_syspopen(aTHX_ cmd,mode);
ddcf38b7 1939 }
a1d180c4 1940#endif
8ac85365
NIS
1941 This = (*mode == 'w');
1942 that = !This;
3280af22 1943 if (doexec && PL_tainting) {
bbce6d69 1944 taint_env();
1945 taint_proper("Insecure %s%s", "EXEC");
d48672a2 1946 }
c2267164
IZ
1947 if (PerlProc_pipe(p) < 0)
1948 return Nullfp;
e446cec8
IZ
1949 if (doexec && PerlProc_pipe(pp) >= 0)
1950 did_pipes = 1;
a687059c
LW
1951 while ((pid = (doexec?vfork():fork())) < 0) {
1952 if (errno != EAGAIN) {
6ad3d225 1953 PerlLIO_close(p[This]);
e446cec8
IZ
1954 if (did_pipes) {
1955 PerlLIO_close(pp[0]);
1956 PerlLIO_close(pp[1]);
1957 }
a687059c 1958 if (!doexec)
cea2e8a9 1959 Perl_croak(aTHX_ "Can't fork");
a687059c
LW
1960 return Nullfp;
1961 }
1962 sleep(5);
1963 }
1964 if (pid == 0) {
79072805
LW
1965 GV* tmpgv;
1966
30ac6d9b
GS
1967#undef THIS
1968#undef THAT
a687059c 1969#define THIS that
8ac85365 1970#define THAT This
6ad3d225 1971 PerlLIO_close(p[THAT]);
e446cec8
IZ
1972 if (did_pipes) {
1973 PerlLIO_close(pp[0]);
1974#if defined(HAS_FCNTL) && defined(F_SETFD)
1975 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
1976#endif
1977 }
a687059c 1978 if (p[THIS] != (*mode == 'r')) {
6ad3d225
GS
1979 PerlLIO_dup2(p[THIS], *mode == 'r');
1980 PerlLIO_close(p[THIS]);
a687059c 1981 }
4435c477 1982#ifndef OS2
a687059c 1983 if (doexec) {
a0d0e21e 1984#if !defined(HAS_FCNTL) || !defined(F_SETFD)
ae986130
LW
1985 int fd;
1986
1987#ifndef NOFILE
1988#define NOFILE 20
1989#endif
a080fe3d
NIS
1990 {
1991 int fd;
1992
1993 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
1994 if (fd != pp[1])
1995 PerlLIO_close(fd);
1996 }
ae986130 1997#endif
a080fe3d
NIS
1998 /* may or may not use the shell */
1999 do_exec3(cmd, pp[1], did_pipes);
6ad3d225 2000 PerlProc__exit(1);
a687059c 2001 }
4435c477 2002#endif /* defined OS2 */
de3bb511 2003 /*SUPPRESS 560*/
155aba94 2004 if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
7766f137 2005 sv_setiv(GvSV(tmpgv), PerlProc_getpid());
3280af22
NIS
2006 PL_forkprocess = 0;
2007 hv_clear(PL_pidstatus); /* we have no children */
a687059c
LW
2008 return Nullfp;
2009#undef THIS
2010#undef THAT
2011 }
62b28dd9 2012 do_execfree(); /* free any memory malloced by child on vfork */
6ad3d225 2013 PerlLIO_close(p[that]);
e446cec8
IZ
2014 if (did_pipes)
2015 PerlLIO_close(pp[1]);
8ac85365 2016 if (p[that] < p[This]) {
6ad3d225
GS
2017 PerlLIO_dup2(p[This], p[that]);
2018 PerlLIO_close(p[This]);
8ac85365 2019 p[This] = p[that];
62b28dd9 2020 }
4755096e 2021 LOCK_FDPID_MUTEX;
3280af22 2022 sv = *av_fetch(PL_fdpid,p[This],TRUE);
4755096e 2023 UNLOCK_FDPID_MUTEX;
a0d0e21e 2024 (void)SvUPGRADE(sv,SVt_IV);
463ee0b2 2025 SvIVX(sv) = pid;
3280af22 2026 PL_forkprocess = pid;
e446cec8
IZ
2027 if (did_pipes && pid > 0) {
2028 int errkid;
2029 int n = 0, n1;
2030
2031 while (n < sizeof(int)) {
2032 n1 = PerlLIO_read(pp[0],
2033 (void*)(((char*)&errkid)+n),
2034 (sizeof(int)) - n);
2035 if (n1 <= 0)
2036 break;
2037 n += n1;
2038 }
2f96c702
IZ
2039 PerlLIO_close(pp[0]);
2040 did_pipes = 0;
e446cec8 2041 if (n) { /* Error */
faa466a7 2042 int pid2, status;
e446cec8 2043 if (n != sizeof(int))
cea2e8a9 2044 Perl_croak(aTHX_ "panic: kid popen errno read");
faa466a7
RG
2045 do {
2046 pid2 = wait4pid(pid, &status, 0);
2047 } while (pid2 == -1 && errno == EINTR);
e446cec8
IZ
2048 errno = errkid; /* Propagate errno from kid */
2049 return Nullfp;
2050 }
2051 }
2052 if (did_pipes)
2053 PerlLIO_close(pp[0]);
8ac85365 2054 return PerlIO_fdopen(p[This], mode);
a687059c 2055}
7c0587c8 2056#else
2b96b0a5 2057#if defined(atarist)
7c0587c8 2058FILE *popen();
760ac839 2059PerlIO *
864dbfa3 2060Perl_my_popen(pTHX_ char *cmd, char *mode)
7c0587c8 2061{
45bc9206 2062 PERL_FLUSHALL_FOR_CHILD;
a1d180c4
NIS
2063 /* Call system's popen() to get a FILE *, then import it.
2064 used 0 for 2nd parameter to PerlIO_importFILE;
2065 apparently not used
2066 */
2067 return PerlIO_importFILE(popen(cmd, mode), 0);
7c0587c8 2068}
2b96b0a5
JH
2069#else
2070#if defined(DJGPP)
2071FILE *djgpp_popen();
2072PerlIO *
2073Perl_my_popen(pTHX_ char *cmd, char *mode)
2074{
2075 PERL_FLUSHALL_FOR_CHILD;
2076 /* Call system's popen() to get a FILE *, then import it.
2077 used 0 for 2nd parameter to PerlIO_importFILE;
2078 apparently not used
2079 */
2080 return PerlIO_importFILE(djgpp_popen(cmd, mode), 0);
2081}
2082#endif
7c0587c8
LW
2083#endif
2084
2085#endif /* !DOSISH */
a687059c 2086
748a9306 2087#ifdef DUMP_FDS
35ff7856 2088void
864dbfa3 2089Perl_dump_fds(pTHX_ char *s)
ae986130
LW
2090{
2091 int fd;
2092 struct stat tmpstatbuf;
2093
bf49b057 2094 PerlIO_printf(Perl_debug_log,"%s", s);
ae986130 2095 for (fd = 0; fd < 32; fd++) {
6ad3d225 2096 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
bf49b057 2097 PerlIO_printf(Perl_debug_log," %d",fd);
ae986130 2098 }
bf49b057 2099 PerlIO_printf(Perl_debug_log,"\n");
ae986130 2100}
35ff7856 2101#endif /* DUMP_FDS */
ae986130 2102
fe14fcc3 2103#ifndef HAS_DUP2
fec02dd3 2104int
ba106d47 2105dup2(int oldfd, int newfd)
a687059c 2106{
a0d0e21e 2107#if defined(HAS_FCNTL) && defined(F_DUPFD)
fec02dd3
AD
2108 if (oldfd == newfd)
2109 return oldfd;
6ad3d225 2110 PerlLIO_close(newfd);
fec02dd3 2111 return fcntl(oldfd, F_DUPFD, newfd);
62b28dd9 2112#else
fc36a67e 2113#define DUP2_MAX_FDS 256
2114 int fdtmp[DUP2_MAX_FDS];
79072805 2115 I32 fdx = 0;
ae986130
LW
2116 int fd;
2117
fe14fcc3 2118 if (oldfd == newfd)
fec02dd3 2119 return oldfd;
6ad3d225 2120 PerlLIO_close(newfd);
fc36a67e 2121 /* good enough for low fd's... */
6ad3d225 2122 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
fc36a67e 2123 if (fdx >= DUP2_MAX_FDS) {
6ad3d225 2124 PerlLIO_close(fd);
fc36a67e 2125 fd = -1;
2126 break;
2127 }
ae986130 2128 fdtmp[fdx++] = fd;
fc36a67e 2129 }
ae986130 2130 while (fdx > 0)
6ad3d225 2131 PerlLIO_close(fdtmp[--fdx]);
fec02dd3 2132 return fd;
62b28dd9 2133#endif
a687059c
LW
2134}
2135#endif
2136
64ca3a65 2137#ifndef PERL_MICRO
ff68c719 2138#ifdef HAS_SIGACTION
2139
2140Sighandler_t
864dbfa3 2141Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
ff68c719 2142{
2143 struct sigaction act, oact;
2144
2145 act.sa_handler = handler;
2146 sigemptyset(&act.sa_mask);
2147 act.sa_flags = 0;
2148#ifdef SA_RESTART
0a8e0eff 2149#if !defined(USE_PERLIO) || defined(PERL_OLD_SIGNALS)
ff68c719 2150 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2151#endif
0a8e0eff 2152#endif
85264bed
CS
2153#ifdef SA_NOCLDWAIT
2154 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2155 act.sa_flags |= SA_NOCLDWAIT;
2156#endif
ff68c719 2157 if (sigaction(signo, &act, &oact) == -1)
36477c24 2158 return SIG_ERR;
ff68c719 2159 else
36477c24 2160 return oact.sa_handler;
ff68c719 2161}
2162
2163Sighandler_t
864dbfa3 2164Perl_rsignal_state(pTHX_ int signo)
ff68c719 2165{
2166 struct sigaction oact;
2167
2168 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2169 return SIG_ERR;
2170 else
2171 return oact.sa_handler;
2172}
2173
2174int
864dbfa3 2175Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2176{
2177 struct sigaction act;
2178
2179 act.sa_handler = handler;
2180 sigemptyset(&act.sa_mask);
2181 act.sa_flags = 0;
2182#ifdef SA_RESTART
0a8e0eff 2183#if !defined(USE_PERLIO) || defined(PERL_OLD_SIGNALS)
ff68c719 2184 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2185#endif
0a8e0eff 2186#endif
85264bed
CS
2187#ifdef SA_NOCLDWAIT
2188 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2189 act.sa_flags |= SA_NOCLDWAIT;
2190#endif
ff68c719 2191 return sigaction(signo, &act, save);
2192}
2193
2194int
864dbfa3 2195Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
ff68c719 2196{
2197 return sigaction(signo, save, (struct sigaction *)NULL);
2198}
2199
2200#else /* !HAS_SIGACTION */
2201
2202Sighandler_t
864dbfa3 2203Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
ff68c719 2204{
6ad3d225 2205 return PerlProc_signal(signo, handler);
ff68c719 2206}
2207
2208static int sig_trapped;
2209
2210static
2211Signal_t
4e35701f 2212sig_trap(int signo)
ff68c719 2213{
2214 sig_trapped++;
2215}
2216
2217Sighandler_t
864dbfa3 2218Perl_rsignal_state(pTHX_ int signo)
ff68c719 2219{
2220 Sighandler_t oldsig;
2221
2222 sig_trapped = 0;
6ad3d225
GS
2223 oldsig = PerlProc_signal(signo, sig_trap);
2224 PerlProc_signal(signo, oldsig);
ff68c719 2225 if (sig_trapped)
7766f137 2226 PerlProc_kill(PerlProc_getpid(), signo);
ff68c719 2227 return oldsig;
2228}
2229
2230int
864dbfa3 2231Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2232{
6ad3d225 2233 *save = PerlProc_signal(signo, handler);
ff68c719 2234 return (*save == SIG_ERR) ? -1 : 0;
2235}
2236
2237int
864dbfa3 2238Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
ff68c719 2239{
6ad3d225 2240 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
ff68c719 2241}
2242
2243#endif /* !HAS_SIGACTION */
64ca3a65 2244#endif /* !PERL_MICRO */
ff68c719 2245
5f05dabc 2246 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
cd39f2b6 2247#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
79072805 2248I32
864dbfa3 2249Perl_my_pclose(pTHX_ PerlIO *ptr)
a687059c 2250{
ff68c719 2251 Sigsave_t hstat, istat, qstat;
a687059c 2252 int status;
a0d0e21e 2253 SV **svp;
d8a83dd3
JH
2254 Pid_t pid;
2255 Pid_t pid2;
03136e13 2256 bool close_failed;
b7953727 2257 int saved_errno = 0;
03136e13
CS
2258#ifdef VMS
2259 int saved_vaxc_errno;
2260#endif
22fae026
TM
2261#ifdef WIN32
2262 int saved_win32_errno;
2263#endif
a687059c 2264
4755096e 2265 LOCK_FDPID_MUTEX;
3280af22 2266 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
4755096e 2267 UNLOCK_FDPID_MUTEX;
25d92023 2268 pid = (SvTYPE(*svp) == SVt_IV) ? SvIVX(*svp) : -1;
a0d0e21e 2269 SvREFCNT_dec(*svp);
3280af22 2270 *svp = &PL_sv_undef;
ddcf38b7
IZ
2271#ifdef OS2
2272 if (pid == -1) { /* Opened by popen. */
2273 return my_syspclose(ptr);
2274 }
a1d180c4 2275#endif
03136e13
CS
2276 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2277 saved_errno = errno;
2278#ifdef VMS
2279 saved_vaxc_errno = vaxc$errno;
2280#endif
22fae026
TM
2281#ifdef WIN32
2282 saved_win32_errno = GetLastError();
2283#endif
03136e13 2284 }
7c0587c8 2285#ifdef UTS
6ad3d225 2286 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
7c0587c8 2287#endif
64ca3a65 2288#ifndef PERL_MICRO
ff68c719 2289 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2290 rsignal_save(SIGINT, SIG_IGN, &istat);
2291 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
64ca3a65 2292#endif
748a9306 2293 do {
1d3434b8
GS
2294 pid2 = wait4pid(pid, &status, 0);
2295 } while (pid2 == -1 && errno == EINTR);
64ca3a65 2296#ifndef PERL_MICRO
ff68c719 2297 rsignal_restore(SIGHUP, &hstat);
2298 rsignal_restore(SIGINT, &istat);
2299 rsignal_restore(SIGQUIT, &qstat);
64ca3a65 2300#endif
03136e13
CS
2301 if (close_failed) {
2302 SETERRNO(saved_errno, saved_vaxc_errno);
2303 return -1;
2304 }
1d3434b8 2305 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
20188a90 2306}
4633a7c4
LW
2307#endif /* !DOSISH */
2308
2986a63f 2309#if (!defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(NETWARE)) && !defined(MACOS_TRADITIONAL)
79072805 2310I32
d8a83dd3 2311Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
20188a90 2312{
b7953727
JH
2313 if (!pid)
2314 return -1;
2315#if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2316 {
79072805
LW
2317 SV *sv;
2318 SV** svp;
fc36a67e 2319 char spid[TYPE_CHARS(int)];
20188a90 2320
20188a90 2321 if (pid > 0) {
7b0972df 2322 sprintf(spid, "%"IVdf, (IV)pid);
3280af22
NIS
2323 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2324 if (svp && *svp != &PL_sv_undef) {
463ee0b2 2325 *statusp = SvIVX(*svp);
3280af22 2326 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
20188a90
LW
2327 return pid;
2328 }
2329 }
2330 else {
79072805 2331 HE *entry;
20188a90 2332
3280af22 2333 hv_iterinit(PL_pidstatus);
155aba94 2334 if ((entry = hv_iternext(PL_pidstatus))) {
a0d0e21e 2335 pid = atoi(hv_iterkey(entry,(I32*)statusp));
3280af22 2336 sv = hv_iterval(PL_pidstatus,entry);
463ee0b2 2337 *statusp = SvIVX(sv);
7b0972df 2338 sprintf(spid, "%"IVdf, (IV)pid);
3280af22 2339 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
20188a90
LW
2340 return pid;
2341 }
b7953727 2342 }
20188a90 2343 }
68a29c53 2344#endif
79072805 2345#ifdef HAS_WAITPID
367f3c24
IZ
2346# ifdef HAS_WAITPID_RUNTIME
2347 if (!HAS_WAITPID_RUNTIME)
2348 goto hard_way;
2349# endif
f55ee38a 2350 return PerlProc_waitpid(pid,statusp,flags);
367f3c24
IZ
2351#endif
2352#if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
a0d0e21e 2353 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
367f3c24
IZ
2354#endif
2355#if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2356 hard_way:
a0d0e21e
LW
2357 {
2358 I32 result;
2359 if (flags)
cea2e8a9 2360 Perl_croak(aTHX_ "Can't do waitpid with flags");
a0d0e21e 2361 else {
76e3520e 2362 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
a0d0e21e
LW
2363 pidgone(result,*statusp);
2364 if (result < 0)
2365 *statusp = -1;
2366 }
2367 return result;
a687059c
LW
2368 }
2369#endif
a687059c 2370}
2986a63f 2371#endif /* !DOSISH || OS2 || WIN32 || NETWARE */
a687059c 2372
7c0587c8 2373void
de3bb511 2374/*SUPPRESS 590*/
d8a83dd3 2375Perl_pidgone(pTHX_ Pid_t pid, int status)
a687059c 2376{
79072805 2377 register SV *sv;
fc36a67e 2378 char spid[TYPE_CHARS(int)];
a687059c 2379
7b0972df 2380 sprintf(spid, "%"IVdf, (IV)pid);
3280af22 2381 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
a0d0e21e 2382 (void)SvUPGRADE(sv,SVt_IV);
463ee0b2 2383 SvIVX(sv) = status;
20188a90 2384 return;
a687059c
LW
2385}
2386
2b96b0a5 2387#if defined(atarist) || defined(OS2)
7c0587c8 2388int pclose();
ddcf38b7
IZ
2389#ifdef HAS_FORK
2390int /* Cannot prototype with I32
2391 in os2ish.h. */
ba106d47 2392my_syspclose(PerlIO *ptr)
ddcf38b7 2393#else
79072805 2394I32
864dbfa3 2395Perl_my_pclose(pTHX_ PerlIO *ptr)
a1d180c4 2396#endif
a687059c 2397{
760ac839
LW
2398 /* Needs work for PerlIO ! */
2399 FILE *f = PerlIO_findFILE(ptr);
2400 I32 result = pclose(f);
2b96b0a5
JH
2401 PerlIO_releaseFILE(ptr,f);
2402 return result;
2403}
2404#endif
2405
933fea7f 2406#if defined(DJGPP)
2b96b0a5
JH
2407int djgpp_pclose();
2408I32
2409Perl_my_pclose(pTHX_ PerlIO *ptr)
2410{
2411 /* Needs work for PerlIO ! */
2412 FILE *f = PerlIO_findFILE(ptr);
2413 I32 result = djgpp_pclose(f);
933fea7f 2414 result = (result << 8) & 0xff00;
760ac839
LW
2415 PerlIO_releaseFILE(ptr,f);
2416 return result;
a687059c 2417}
7c0587c8 2418#endif
9f68db38
LW
2419
2420void
864dbfa3 2421Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
9f68db38 2422{
79072805 2423 register I32 todo;
08105a92 2424 register const char *frombase = from;
9f68db38
LW
2425
2426 if (len == 1) {
08105a92 2427 register const char c = *from;
9f68db38 2428 while (count-- > 0)
5926133d 2429 *to++ = c;
9f68db38
LW
2430 return;
2431 }
2432 while (count-- > 0) {
2433 for (todo = len; todo > 0; todo--) {
2434 *to++ = *from++;
2435 }
2436 from = frombase;
2437 }
2438}
0f85fab0 2439
fe14fcc3 2440#ifndef HAS_RENAME
79072805 2441I32
864dbfa3 2442Perl_same_dirent(pTHX_ char *a, char *b)
62b28dd9 2443{
93a17b20
LW
2444 char *fa = strrchr(a,'/');
2445 char *fb = strrchr(b,'/');
62b28dd9
LW
2446 struct stat tmpstatbuf1;
2447 struct stat tmpstatbuf2;
46fc3d4c 2448 SV *tmpsv = sv_newmortal();
62b28dd9
LW
2449
2450 if (fa)
2451 fa++;
2452 else
2453 fa = a;
2454 if (fb)
2455 fb++;
2456 else
2457 fb = b;
2458 if (strNE(a,b))
2459 return FALSE;
2460 if (fa == a)
46fc3d4c 2461 sv_setpv(tmpsv, ".");
62b28dd9 2462 else
46fc3d4c 2463 sv_setpvn(tmpsv, a, fa - a);
c6ed36e1 2464 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
62b28dd9
LW
2465 return FALSE;
2466 if (fb == b)
46fc3d4c 2467 sv_setpv(tmpsv, ".");
62b28dd9 2468 else
46fc3d4c 2469 sv_setpvn(tmpsv, b, fb - b);
c6ed36e1 2470 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
62b28dd9
LW
2471 return FALSE;
2472 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2473 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2474}
fe14fcc3
LW
2475#endif /* !HAS_RENAME */
2476
491527d0 2477char*
864dbfa3 2478Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
491527d0 2479{
491527d0
GS
2480 char *xfound = Nullch;
2481 char *xfailed = Nullch;
0f31cffe 2482 char tmpbuf[MAXPATHLEN];
491527d0
GS
2483 register char *s;
2484 I32 len;
2485 int retval;
2486#if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2487# define SEARCH_EXTS ".bat", ".cmd", NULL
2488# define MAX_EXT_LEN 4
2489#endif
2490#ifdef OS2
2491# define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2492# define MAX_EXT_LEN 4
2493#endif
2494#ifdef VMS
2495# define SEARCH_EXTS ".pl", ".com", NULL
2496# define MAX_EXT_LEN 4
2497#endif
2498 /* additional extensions to try in each dir if scriptname not found */
2499#ifdef SEARCH_EXTS
2500 char *exts[] = { SEARCH_EXTS };
2501 char **ext = search_ext ? search_ext : exts;
2502 int extidx = 0, i = 0;
2503 char *curext = Nullch;
2504#else
2505# define MAX_EXT_LEN 0
2506#endif
2507
2508 /*
2509 * If dosearch is true and if scriptname does not contain path
2510 * delimiters, search the PATH for scriptname.
2511 *
2512 * If SEARCH_EXTS is also defined, will look for each
2513 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2514 * while searching the PATH.
2515 *
2516 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2517 * proceeds as follows:
2518 * If DOSISH or VMSISH:
2519 * + look for ./scriptname{,.foo,.bar}
2520 * + search the PATH for scriptname{,.foo,.bar}
2521 *
2522 * If !DOSISH:
2523 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2524 * this will not look in '.' if it's not in the PATH)
2525 */
84486fc6 2526 tmpbuf[0] = '\0';
491527d0
GS
2527
2528#ifdef VMS
2529# ifdef ALWAYS_DEFTYPES
2530 len = strlen(scriptname);
2531 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2532 int hasdir, idx = 0, deftypes = 1;
2533 bool seen_dot = 1;
2534
2535 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2536# else
2537 if (dosearch) {
2538 int hasdir, idx = 0, deftypes = 1;
2539 bool seen_dot = 1;
2540
2541 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2542# endif
2543 /* The first time through, just add SEARCH_EXTS to whatever we
2544 * already have, so we can check for default file types. */
2545 while (deftypes ||
84486fc6 2546 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
491527d0
GS
2547 {
2548 if (deftypes) {
2549 deftypes = 0;
84486fc6 2550 *tmpbuf = '\0';
491527d0 2551 }
84486fc6
GS
2552 if ((strlen(tmpbuf) + strlen(scriptname)
2553 + MAX_EXT_LEN) >= sizeof tmpbuf)
491527d0 2554 continue; /* don't search dir with too-long name */
84486fc6 2555 strcat(tmpbuf, scriptname);
491527d0
GS
2556#else /* !VMS */
2557
2558#ifdef DOSISH
2559 if (strEQ(scriptname, "-"))
2560 dosearch = 0;
2561 if (dosearch) { /* Look in '.' first. */
2562 char *cur = scriptname;
2563#ifdef SEARCH_EXTS
2564 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2565 while (ext[i])
2566 if (strEQ(ext[i++],curext)) {
2567 extidx = -1; /* already has an ext */
2568 break;
2569 }
2570 do {
2571#endif
2572 DEBUG_p(PerlIO_printf(Perl_debug_log,
2573 "Looking for %s\n",cur));
017f25f1
IZ
2574 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2575 && !S_ISDIR(PL_statbuf.st_mode)) {
491527d0
GS
2576 dosearch = 0;
2577 scriptname = cur;
2578#ifdef SEARCH_EXTS
2579 break;
2580#endif
2581 }
2582#ifdef SEARCH_EXTS
2583 if (cur == scriptname) {
2584 len = strlen(scriptname);
84486fc6 2585 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
491527d0 2586 break;
84486fc6 2587 cur = strcpy(tmpbuf, scriptname);
491527d0
GS
2588 }
2589 } while (extidx >= 0 && ext[extidx] /* try an extension? */
84486fc6 2590 && strcpy(tmpbuf+len, ext[extidx++]));
491527d0
GS
2591#endif
2592 }
2593#endif
2594
cd39f2b6
JH
2595#ifdef MACOS_TRADITIONAL
2596 if (dosearch && !strchr(scriptname, ':') &&
2597 (s = PerlEnv_getenv("Commands")))
2598#else
491527d0
GS
2599 if (dosearch && !strchr(scriptname, '/')
2600#ifdef DOSISH
2601 && !strchr(scriptname, '\\')
2602#endif
cd39f2b6
JH
2603 && (s = PerlEnv_getenv("PATH")))
2604#endif
2605 {
491527d0
GS
2606 bool seen_dot = 0;
2607
3280af22
NIS
2608 PL_bufend = s + strlen(s);
2609 while (s < PL_bufend) {
cd39f2b6
JH
2610#ifdef MACOS_TRADITIONAL
2611 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2612 ',',
2613 &len);
2614#else
491527d0
GS
2615#if defined(atarist) || defined(DOSISH)
2616 for (len = 0; *s
2617# ifdef atarist
2618 && *s != ','
2619# endif
2620 && *s != ';'; len++, s++) {
84486fc6
GS
2621 if (len < sizeof tmpbuf)
2622 tmpbuf[len] = *s;
491527d0 2623 }
84486fc6
GS
2624 if (len < sizeof tmpbuf)
2625 tmpbuf[len] = '\0';
491527d0 2626#else /* ! (atarist || DOSISH) */
3280af22 2627 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
491527d0
GS
2628 ':',
2629 &len);
2630#endif /* ! (atarist || DOSISH) */
cd39f2b6 2631#endif /* MACOS_TRADITIONAL */
3280af22 2632 if (s < PL_bufend)
491527d0 2633 s++;
84486fc6 2634 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
491527d0 2635 continue; /* don't search dir with too-long name */
cd39f2b6
JH
2636#ifdef MACOS_TRADITIONAL
2637 if (len && tmpbuf[len - 1] != ':')
2638 tmpbuf[len++] = ':';
2639#else
491527d0 2640 if (len
61ae2fbf 2641#if defined(atarist) || defined(__MINT__) || defined(DOSISH)
84486fc6
GS
2642 && tmpbuf[len - 1] != '/'
2643 && tmpbuf[len - 1] != '\\'
491527d0
GS
2644#endif
2645 )
84486fc6
GS
2646 tmpbuf[len++] = '/';
2647 if (len == 2 && tmpbuf[0] == '.')
491527d0 2648 seen_dot = 1;
cd39f2b6 2649#endif
84486fc6 2650 (void)strcpy(tmpbuf + len, scriptname);
491527d0
GS
2651#endif /* !VMS */
2652
2653#ifdef SEARCH_EXTS
84486fc6 2654 len = strlen(tmpbuf);
491527d0
GS
2655 if (extidx > 0) /* reset after previous loop */
2656 extidx = 0;
2657 do {
2658#endif
84486fc6 2659 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3280af22 2660 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
017f25f1
IZ
2661 if (S_ISDIR(PL_statbuf.st_mode)) {
2662 retval = -1;
2663 }
491527d0
GS
2664#ifdef SEARCH_EXTS
2665 } while ( retval < 0 /* not there */
2666 && extidx>=0 && ext[extidx] /* try an extension? */
84486fc6 2667 && strcpy(tmpbuf+len, ext[extidx++])
491527d0
GS
2668 );
2669#endif
2670 if (retval < 0)
2671 continue;
3280af22
NIS
2672 if (S_ISREG(PL_statbuf.st_mode)
2673 && cando(S_IRUSR,TRUE,&PL_statbuf)
73811745 2674#if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3280af22 2675 && cando(S_IXUSR,TRUE,&PL_statbuf)
491527d0
GS
2676#endif
2677 )
2678 {
84486fc6 2679 xfound = tmpbuf; /* bingo! */
491527d0
GS
2680 break;
2681 }
2682 if (!xfailed)
84486fc6 2683 xfailed = savepv(tmpbuf);
491527d0
GS
2684 }
2685#ifndef DOSISH
017f25f1 2686 if (!xfound && !seen_dot && !xfailed &&
a1d180c4 2687 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
017f25f1 2688 || S_ISDIR(PL_statbuf.st_mode)))
491527d0
GS
2689#endif
2690 seen_dot = 1; /* Disable message. */
9ccb31f9
GS
2691 if (!xfound) {
2692 if (flags & 1) { /* do or die? */
cea2e8a9 2693 Perl_croak(aTHX_ "Can't %s %s%s%s",
9ccb31f9
GS
2694 (xfailed ? "execute" : "find"),
2695 (xfailed ? xfailed : scriptname),
2696 (xfailed ? "" : " on PATH"),
2697 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2698 }
2699 scriptname = Nullch;
2700 }
491527d0
GS
2701 if (xfailed)
2702 Safefree(xfailed);
2703 scriptname = xfound;
2704 }
9ccb31f9 2705 return (scriptname ? savepv(scriptname) : Nullch);
491527d0
GS
2706}
2707
ba869deb
GS
2708#ifndef PERL_GET_CONTEXT_DEFINED
2709
2710void *
2711Perl_get_context(void)
2712{
2713#if defined(USE_THREADS) || defined(USE_ITHREADS)
2714# ifdef OLD_PTHREADS_API
2715 pthread_addr_t t;
2716 if (pthread_getspecific(PL_thr_key, &t))
2717 Perl_croak_nocontext("panic: pthread_getspecific");
2718 return (void*)t;
2719# else
bce813aa 2720# ifdef I_MACH_CTHREADS
8b8b35ab 2721 return (void*)cthread_data(cthread_self());
bce813aa 2722# else
8b8b35ab
JH
2723 return (void*)PTHREAD_GETSPECIFIC(PL_thr_key);
2724# endif
c44d3fdb 2725# endif
ba869deb
GS
2726#else
2727 return (void*)NULL;
2728#endif
2729}
2730
2731void
2732Perl_set_context(void *t)
2733{
2734#if defined(USE_THREADS) || defined(USE_ITHREADS)
c44d3fdb
GS
2735# ifdef I_MACH_CTHREADS
2736 cthread_set_data(cthread_self(), t);
2737# else
ba869deb
GS
2738 if (pthread_setspecific(PL_thr_key, t))
2739 Perl_croak_nocontext("panic: pthread_setspecific");
c44d3fdb 2740# endif
ba869deb
GS
2741#endif
2742}
2743
2744#endif /* !PERL_GET_CONTEXT_DEFINED */
491527d0 2745
11343788 2746#ifdef USE_THREADS
ba869deb 2747
12ca11f6
MB
2748#ifdef FAKE_THREADS
2749/* Very simplistic scheduler for now */
2750void
2751schedule(void)
2752{
c7848ba1 2753 thr = thr->i.next_run;
12ca11f6
MB
2754}
2755
2756void
864dbfa3 2757Perl_cond_init(pTHX_ perl_cond *cp)
12ca11f6
MB
2758{
2759 *cp = 0;
2760}
2761
2762void
864dbfa3 2763Perl_cond_signal(pTHX_ perl_cond *cp)
12ca11f6 2764{
51dd5992 2765 perl_os_thread t;
12ca11f6 2766 perl_cond cond = *cp;
a1d180c4 2767
12ca11f6
MB
2768 if (!cond)
2769 return;
2770 t = cond->thread;
2771 /* Insert t in the runnable queue just ahead of us */
c7848ba1
MB
2772 t->i.next_run = thr->i.next_run;
2773 thr->i.next_run->i.prev_run = t;
2774 t->i.prev_run = thr;
2775 thr->i.next_run = t;
2776 thr->i.wait_queue = 0;
12ca11f6
MB
2777 /* Remove from the wait queue */
2778 *cp = cond->next;
2779 Safefree(cond);
2780}
2781
2782void
864dbfa3 2783Perl_cond_broadcast(pTHX_ perl_cond *cp)
12ca11f6 2784{
51dd5992 2785 perl_os_thread t;
12ca11f6 2786 perl_cond cond, cond_next;
a1d180c4 2787
12ca11f6
MB
2788 for (cond = *cp; cond; cond = cond_next) {
2789 t = cond->thread;
2790 /* Insert t in the runnable queue just ahead of us */
c7848ba1
MB
2791 t->i.next_run = thr->i.next_run;
2792 thr->i.next_run->i.prev_run = t;
2793 t->i.prev_run = thr;
2794 thr->i.next_run = t;
2795 thr->i.wait_queue = 0;
12ca11f6
MB
2796 /* Remove from the wait queue */
2797 cond_next = cond->next;
2798 Safefree(cond);
2799 }
2800 *cp = 0;
2801}
2802
2803void
864dbfa3 2804Perl_cond_wait(pTHX_ perl_cond *cp)
12ca11f6
MB
2805{
2806 perl_cond cond;
2807
c7848ba1 2808 if (thr->i.next_run == thr)
cea2e8a9 2809 Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
a1d180c4 2810
0f15f207 2811 New(666, cond, 1, struct perl_wait_queue);
12ca11f6
MB
2812 cond->thread = thr;
2813 cond->next = *cp;
2814 *cp = cond;
c7848ba1 2815 thr->i.wait_queue = cond;
12ca11f6 2816 /* Remove ourselves from runnable queue */
c7848ba1
MB
2817 thr->i.next_run->i.prev_run = thr->i.prev_run;
2818 thr->i.prev_run->i.next_run = thr->i.next_run;
12ca11f6
MB
2819}
2820#endif /* FAKE_THREADS */
2821
f93b4edd 2822MAGIC *
864dbfa3 2823Perl_condpair_magic(pTHX_ SV *sv)
f93b4edd
MB
2824{
2825 MAGIC *mg;
a1d180c4 2826
3e209e71 2827 (void)SvUPGRADE(sv, SVt_PVMG);
14befaf4 2828 mg = mg_find(sv, PERL_MAGIC_mutex);
f93b4edd
MB
2829 if (!mg) {
2830 condpair_t *cp;
2831
2832 New(53, cp, 1, condpair_t);
2833 MUTEX_INIT(&cp->mutex);
2834 COND_INIT(&cp->owner_cond);
2835 COND_INIT(&cp->cond);
2836 cp->owner = 0;
1feb2720 2837 LOCK_CRED_MUTEX; /* XXX need separate mutex? */
14befaf4 2838 mg = mg_find(sv, PERL_MAGIC_mutex);
f93b4edd
MB
2839 if (mg) {
2840 /* someone else beat us to initialising it */
1feb2720 2841 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
f93b4edd
MB
2842 MUTEX_DESTROY(&cp->mutex);
2843 COND_DESTROY(&cp->owner_cond);
2844 COND_DESTROY(&cp->cond);
2845 Safefree(cp);
2846 }
2847 else {
14befaf4 2848 sv_magic(sv, Nullsv, PERL_MAGIC_mutex, 0, 0);
f93b4edd
MB
2849 mg = SvMAGIC(sv);
2850 mg->mg_ptr = (char *)cp;
565764a8 2851 mg->mg_len = sizeof(cp);
1feb2720 2852 UNLOCK_CRED_MUTEX; /* XXX need separate mutex? */
bf49b057 2853 DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
a674cc95 2854 "%p: condpair_magic %p\n", thr, sv)));
f93b4edd
MB
2855 }
2856 }
2857 return mg;
2858}
a863c7d1 2859
3d35f11b 2860SV *
4755096e 2861Perl_sv_lock(pTHX_ SV *osv)
3d35f11b
GS
2862{
2863 MAGIC *mg;
2864 SV *sv = osv;
2865
631cfb58 2866 LOCK_SV_LOCK_MUTEX;
3d35f11b
GS
2867 if (SvROK(sv)) {
2868 sv = SvRV(sv);
3d35f11b
GS
2869 }
2870
2871 mg = condpair_magic(sv);
2872 MUTEX_LOCK(MgMUTEXP(mg));
2873 if (MgOWNER(mg) == thr)
2874 MUTEX_UNLOCK(MgMUTEXP(mg));
4755096e 2875 else {
3d35f11b
GS
2876 while (MgOWNER(mg))
2877 COND_WAIT(MgOWNERCONDP(mg), MgMUTEXP(mg));
2878 MgOWNER(mg) = thr;
4755096e
GS
2879 DEBUG_S(PerlIO_printf(Perl_debug_log,
2880 "0x%"UVxf": Perl_lock lock 0x%"UVxf"\n",
a674cc95 2881 PTR2UV(thr), PTR2UV(sv)));
3d35f11b
GS
2882 MUTEX_UNLOCK(MgMUTEXP(mg));
2883 SAVEDESTRUCTOR_X(Perl_unlock_condpair, sv);
2884 }
631cfb58 2885 UNLOCK_SV_LOCK_MUTEX;
4755096e 2886 return sv;
3d35f11b
GS
2887}
2888
a863c7d1 2889/*
199100c8
MB
2890 * Make a new perl thread structure using t as a prototype. Some of the
2891 * fields for the new thread are copied from the prototype thread, t,
2892 * so t should not be running in perl at the time this function is
2893 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2894 * thread calling new_struct_thread) clearly satisfies this constraint.
a863c7d1 2895 */
52e1cb5e 2896struct perl_thread *
864dbfa3 2897Perl_new_struct_thread(pTHX_ struct perl_thread *t)
a863c7d1 2898{
c5be433b 2899#if !defined(PERL_IMPLICIT_CONTEXT)
52e1cb5e 2900 struct perl_thread *thr;
cea2e8a9 2901#endif
a863c7d1 2902 SV *sv;
199100c8
MB
2903 SV **svp;
2904 I32 i;
2905
79cb57f6 2906 sv = newSVpvn("", 0);
52e1cb5e
JH
2907 SvGROW(sv, sizeof(struct perl_thread) + 1);
2908 SvCUR_set(sv, sizeof(struct perl_thread));
199100c8 2909 thr = (Thread) SvPVX(sv);
949ced2d 2910#ifdef DEBUGGING
52e1cb5e 2911 memset(thr, 0xab, sizeof(struct perl_thread));
533c011a
NIS
2912 PL_markstack = 0;
2913 PL_scopestack = 0;
2914 PL_savestack = 0;
2915 PL_retstack = 0;
2916 PL_dirty = 0;
2917 PL_localizing = 0;
949ced2d 2918 Zero(&PL_hv_fetch_ent_mh, 1, HE);
d0e9ca0c
HS
2919 PL_efloatbuf = (char*)NULL;
2920 PL_efloatsize = 0;
949ced2d
GS
2921#else
2922 Zero(thr, 1, struct perl_thread);
2923#endif
199100c8
MB
2924
2925 thr->oursv = sv;
cea2e8a9 2926 init_stacks();
a863c7d1 2927
533c011a 2928 PL_curcop = &PL_compiling;
c5be433b 2929 thr->interp = t->interp;
199100c8 2930 thr->cvcache = newHV();
54b9620d 2931 thr->threadsv = newAV();
a863c7d1 2932 thr->specific = newAV();
79cb57f6 2933 thr->errsv = newSVpvn("", 0);
a863c7d1 2934 thr->flags = THRf_R_JOINABLE;
8dcd6f7b 2935 thr->thr_done = 0;
a863c7d1 2936 MUTEX_INIT(&thr->mutex);
199100c8 2937
5c831c24 2938 JMPENV_BOOTSTRAP;
533c011a 2939
6dc8a9e4 2940 PL_in_eval = EVAL_NULL; /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR|EVAL_INREQUIRE) */
533c011a
NIS
2941 PL_restartop = 0;
2942
b099ddc0 2943 PL_statname = NEWSV(66,0);
5a844595 2944 PL_errors = newSVpvn("", 0);
b099ddc0 2945 PL_maxscream = -1;
0b94c7bb
GS
2946 PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
2947 PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
2948 PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
2949 PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
2950 PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
b099ddc0
GS
2951 PL_regindent = 0;
2952 PL_reginterp_cnt = 0;
2953 PL_lastscream = Nullsv;
2954 PL_screamfirst = 0;
2955 PL_screamnext = 0;
2956 PL_reg_start_tmp = 0;
2957 PL_reg_start_tmpl = 0;
14ed4b74 2958 PL_reg_poscache = Nullch;
b099ddc0
GS
2959
2960 /* parent thread's data needs to be locked while we make copy */
2961 MUTEX_LOCK(&t->mutex);
2962
14dd3ad8 2963#ifdef PERL_FLEXIBLE_EXCEPTIONS
312caa8e 2964 PL_protect = t->Tprotect;
14dd3ad8 2965#endif
312caa8e 2966
b099ddc0
GS
2967 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
2968 PL_defstash = t->Tdefstash; /* XXX maybe these should */
2969 PL_curstash = t->Tcurstash; /* always be set to main? */
2970
6b88bc9c 2971 PL_tainted = t->Ttainted;
84fee439
NIS
2972 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
2973 PL_nrs = newSVsv(t->Tnrs);
7d3de3d5 2974 PL_rs = t->Tnrs ? SvREFCNT_inc(PL_nrs) : Nullsv;
84fee439 2975 PL_last_in_gv = Nullgv;
7d3de3d5 2976 PL_ofs_sv = t->Tofs_sv ? SvREFCNT_inc(PL_ofs_sv) : Nullsv;
84fee439
NIS
2977 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
2978 PL_chopset = t->Tchopset;
84fee439
NIS
2979 PL_bodytarget = newSVsv(t->Tbodytarget);
2980 PL_toptarget = newSVsv(t->Ttoptarget);
5c831c24
GS
2981 if (t->Tformtarget == t->Ttoptarget)
2982 PL_formtarget = PL_toptarget;
2983 else
2984 PL_formtarget = PL_bodytarget;
533c011a 2985
54b9620d
MB
2986 /* Initialise all per-thread SVs that the template thread used */
2987 svp = AvARRAY(t->threadsv);
93965878 2988 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
533c011a 2989 if (*svp && *svp != &PL_sv_undef) {
199100c8 2990 SV *sv = newSVsv(*svp);
54b9620d 2991 av_store(thr->threadsv, i, sv);
14befaf4 2992 sv_magic(sv, 0, PERL_MAGIC_sv, &PL_threadsv_names[i], 1);
bf49b057 2993 DEBUG_S(PerlIO_printf(Perl_debug_log,
f1dbda3d
JH
2994 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
2995 (IV)i, t, thr));
199100c8 2996 }
a1d180c4 2997 }
940cb80d 2998 thr->threadsvp = AvARRAY(thr->threadsv);
199100c8 2999
533c011a
NIS
3000 MUTEX_LOCK(&PL_threads_mutex);
3001 PL_nthreads++;
3002 thr->tid = ++PL_threadnum;
199100c8
MB
3003 thr->next = t->next;
3004 thr->prev = t;
3005 t->next = thr;
3006 thr->next->prev = thr;
533c011a 3007 MUTEX_UNLOCK(&PL_threads_mutex);
a863c7d1 3008
b099ddc0
GS
3009 /* done copying parent's state */
3010 MUTEX_UNLOCK(&t->mutex);
3011
a863c7d1 3012#ifdef HAVE_THREAD_INTERN
4f63d024 3013 Perl_init_thread_intern(thr);
a863c7d1 3014#endif /* HAVE_THREAD_INTERN */
a863c7d1
MB
3015 return thr;
3016}
11343788 3017#endif /* USE_THREADS */
760ac839 3018
22239a37
NIS
3019#ifdef PERL_GLOBAL_STRUCT
3020struct perl_vars *
864dbfa3 3021Perl_GetVars(pTHX)
22239a37 3022{
533c011a 3023 return &PL_Vars;
22239a37 3024}
31fb1209
NIS
3025#endif
3026
3027char **
864dbfa3 3028Perl_get_op_names(pTHX)
31fb1209 3029{
22c35a8c 3030 return PL_op_name;
31fb1209
NIS
3031}
3032
3033char **
864dbfa3 3034Perl_get_op_descs(pTHX)
31fb1209 3035{
22c35a8c 3036 return PL_op_desc;
31fb1209 3037}
9e6b2b00
GS
3038
3039char *
864dbfa3 3040Perl_get_no_modify(pTHX)
9e6b2b00 3041{
22c35a8c 3042 return (char*)PL_no_modify;
9e6b2b00
GS
3043}
3044
3045U32 *
864dbfa3 3046Perl_get_opargs(pTHX)
9e6b2b00 3047{
22c35a8c 3048 return PL_opargs;
9e6b2b00 3049}
51aa15f3 3050
0cb96387
GS
3051PPADDR_t*
3052Perl_get_ppaddr(pTHX)
3053{
12ae5dfc 3054 return (PPADDR_t*)PL_ppaddr;
0cb96387
GS
3055}
3056
a6c40364
GS
3057#ifndef HAS_GETENV_LEN
3058char *
bf4acbe4 3059Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
a6c40364
GS
3060{
3061 char *env_trans = PerlEnv_getenv(env_elem);
3062 if (env_trans)
3063 *len = strlen(env_trans);
3064 return env_trans;
f675dbe5
CB
3065}
3066#endif
3067
dc9e4912
GS
3068
3069MGVTBL*
864dbfa3 3070Perl_get_vtbl(pTHX_ int vtbl_id)
dc9e4912
GS
3071{
3072 MGVTBL* result = Null(MGVTBL*);
3073
3074 switch(vtbl_id) {
3075 case want_vtbl_sv:
3076 result = &PL_vtbl_sv;
3077 break;
3078 case want_vtbl_env:
3079 result = &PL_vtbl_env;
3080 break;
3081 case want_vtbl_envelem:
3082 result = &PL_vtbl_envelem;
3083 break;
3084 case want_vtbl_sig:
3085 result = &PL_vtbl_sig;
3086 break;
3087 case want_vtbl_sigelem:
3088 result = &PL_vtbl_sigelem;
3089 break;
3090 case want_vtbl_pack:
3091 result = &PL_vtbl_pack;
3092 break;
3093 case want_vtbl_packelem:
3094 result = &PL_vtbl_packelem;
3095 break;
3096 case want_vtbl_dbline:
3097 result = &PL_vtbl_dbline;
3098 break;
3099 case want_vtbl_isa:
3100 result = &PL_vtbl_isa;
3101 break;
3102 case want_vtbl_isaelem:
3103 result = &PL_vtbl_isaelem;
3104 break;
3105 case want_vtbl_arylen:
3106 result = &PL_vtbl_arylen;
3107 break;
3108 case want_vtbl_glob:
3109 result = &PL_vtbl_glob;
3110 break;
3111 case want_vtbl_mglob:
3112 result = &PL_vtbl_mglob;
3113 break;
3114 case want_vtbl_nkeys:
3115 result = &PL_vtbl_nkeys;
3116 break;
3117 case want_vtbl_taint:
3118 result = &PL_vtbl_taint;
3119 break;
3120 case want_vtbl_substr:
3121 result = &PL_vtbl_substr;
3122 break;
3123 case want_vtbl_vec:
3124 result = &PL_vtbl_vec;
3125 break;
3126 case want_vtbl_pos:
3127 result = &PL_vtbl_pos;
3128 break;
3129 case want_vtbl_bm:
3130 result = &PL_vtbl_bm;
3131 break;
3132 case want_vtbl_fm:
3133 result = &PL_vtbl_fm;
3134 break;
3135 case want_vtbl_uvar:
3136 result = &PL_vtbl_uvar;
3137 break;
3138#ifdef USE_THREADS
3139 case want_vtbl_mutex:
3140 result = &PL_vtbl_mutex;
3141 break;
3142#endif
3143 case want_vtbl_defelem:
3144 result = &PL_vtbl_defelem;
3145 break;
3146 case want_vtbl_regexp:
3147 result = &PL_vtbl_regexp;
3148 break;
3149 case want_vtbl_regdata:
3150 result = &PL_vtbl_regdata;
3151 break;
3152 case want_vtbl_regdatum:
3153 result = &PL_vtbl_regdatum;
3154 break;
3c90161d 3155#ifdef USE_LOCALE_COLLATE
dc9e4912
GS
3156 case want_vtbl_collxfrm:
3157 result = &PL_vtbl_collxfrm;
3158 break;
3c90161d 3159#endif
dc9e4912
GS
3160 case want_vtbl_amagic:
3161 result = &PL_vtbl_amagic;
3162 break;
3163 case want_vtbl_amagicelem:
3164 result = &PL_vtbl_amagicelem;
3165 break;
810b8aa5
GS
3166 case want_vtbl_backref:
3167 result = &PL_vtbl_backref;
3168 break;
dc9e4912
GS
3169 }
3170 return result;
3171}
3172
767df6a1 3173I32
864dbfa3 3174Perl_my_fflush_all(pTHX)
767df6a1 3175{
8fbdfb7c 3176#if defined(FFLUSH_NULL)
ce720889 3177 return PerlIO_flush(NULL);
767df6a1 3178#else
8fbdfb7c 3179# if defined(HAS__FWALK)
74cac757
JH
3180 /* undocumented, unprototyped, but very useful BSDism */
3181 extern void _fwalk(int (*)(FILE *));
8fbdfb7c 3182 _fwalk(&fflush);
74cac757 3183 return 0;
8fa7f367 3184# else
8fbdfb7c 3185# if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
8fa7f367 3186 long open_max = -1;
8fbdfb7c 3187# ifdef PERL_FFLUSH_ALL_FOPEN_MAX
d2201af2 3188 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
8fbdfb7c 3189# else
8fa7f367 3190# if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
767df6a1 3191 open_max = sysconf(_SC_OPEN_MAX);
8fa7f367
JH
3192# else
3193# ifdef FOPEN_MAX
74cac757 3194 open_max = FOPEN_MAX;
8fa7f367
JH
3195# else
3196# ifdef OPEN_MAX
74cac757 3197 open_max = OPEN_MAX;
8fa7f367
JH
3198# else
3199# ifdef _NFILE
d2201af2 3200 open_max = _NFILE;
8fa7f367
JH
3201# endif
3202# endif
74cac757 3203# endif
767df6a1
JH
3204# endif
3205# endif
767df6a1
JH
3206 if (open_max > 0) {
3207 long i;
3208 for (i = 0; i < open_max; i++)
d2201af2
AD
3209 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3210 STDIO_STREAM_ARRAY[i]._file < open_max &&
3211 STDIO_STREAM_ARRAY[i]._flag)
3212 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
767df6a1
JH
3213 return 0;
3214 }
8fbdfb7c 3215# endif
767df6a1
JH
3216 SETERRNO(EBADF,RMS$_IFI);
3217 return EOF;
74cac757 3218# endif
767df6a1
JH
3219#endif
3220}
097ee67d 3221
69282e91 3222void
bc37a18f
RG
3223Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op)
3224{
9c0fcd4f 3225 char *vile;
4e34385f 3226 I32 warn_type;
bc37a18f 3227 char *func =
66fc2fa5
JH
3228 op == OP_READLINE ? "readline" : /* "<HANDLE>" not nice */
3229 op == OP_LEAVEWRITE ? "write" : /* "write exit" not nice */
bc37a18f
RG
3230 PL_op_desc[op];
3231 char *pars = OP_IS_FILETEST(op) ? "" : "()";
21865922
JH
3232 char *type = OP_IS_SOCKET(op) ||
3233 (gv && io && IoTYPE(io) == IoTYPE_SOCKET) ?
2dd78f96 3234 "socket" : "filehandle";
9c0fcd4f 3235 char *name = NULL;
bc37a18f 3236
21865922 3237 if (gv && io && IoTYPE(io) == IoTYPE_CLOSED) {
9c0fcd4f 3238 vile = "closed";
4e34385f 3239 warn_type = WARN_CLOSED;
2dd78f96
JH
3240 }
3241 else {
9c0fcd4f 3242 vile = "unopened";
4e34385f 3243 warn_type = WARN_UNOPENED;
9c0fcd4f 3244 }
bc37a18f 3245
66fc2fa5
JH
3246 if (gv && isGV(gv)) {
3247 SV *sv = sv_newmortal();
3248 gv_efullname4(sv, gv, Nullch, FALSE);
3249 name = SvPVX(sv);
3250 }
3251
4c80c0b2
NC
3252 if (op == OP_phoney_OUTPUT_ONLY || op == OP_phoney_INPUT_ONLY) {
3253 if (name && *name)
3254 Perl_warner(aTHX_ WARN_IO, "Filehandle %s opened only for %sput",
7889fe52 3255 name,
4c80c0b2
NC
3256 (op == OP_phoney_INPUT_ONLY ? "in" : "out"));
3257 else
3258 Perl_warner(aTHX_ WARN_IO, "Filehandle opened only for %sput",
3259 (op == OP_phoney_INPUT_ONLY ? "in" : "out"));
3260 } else if (name && *name) {
4e34385f 3261 Perl_warner(aTHX_ warn_type,
9c0fcd4f 3262 "%s%s on %s %s %s", func, pars, vile, type, name);
3e11456d 3263 if (io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
4e34385f 3264 Perl_warner(aTHX_ warn_type,
bc37a18f
RG
3265 "\t(Are you trying to call %s%s on dirhandle %s?)\n",
3266 func, pars, name);
2dd78f96
JH
3267 }
3268 else {
4e34385f 3269 Perl_warner(aTHX_ warn_type,
9c0fcd4f 3270 "%s%s on %s %s", func, pars, vile, type);
21865922 3271 if (gv && io && IoDIRP(io) && !(IoFLAGS(io) & IOf_FAKE_DIRP))
4e34385f 3272 Perl_warner(aTHX_ warn_type,
bc37a18f
RG
3273 "\t(Are you trying to call %s%s on dirhandle?)\n",
3274 func, pars);
3275 }
69282e91 3276}
a926ef6b
JH
3277
3278#ifdef EBCDIC
cbebf344
JH
3279/* in ASCII order, not that it matters */
3280static const char controllablechars[] = "?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_";
3281
a926ef6b
JH
3282int
3283Perl_ebcdic_control(pTHX_ int ch)
3284{
3285 if (ch > 'a') {
3286 char *ctlp;
4a7d1889 3287
a926ef6b
JH
3288 if (islower(ch))
3289 ch = toupper(ch);
4a7d1889 3290
a926ef6b
JH
3291 if ((ctlp = strchr(controllablechars, ch)) == 0) {
3292 Perl_die(aTHX_ "unrecognised control character '%c'\n", ch);
3293 }
4a7d1889 3294
a926ef6b
JH
3295 if (ctlp == controllablechars)
3296 return('\177'); /* DEL */
3297 else
3298 return((unsigned char)(ctlp - controllablechars - 1));
3299 } else { /* Want uncontrol */
3300 if (ch == '\177' || ch == -1)
3301 return('?');
3302 else if (ch == '\157')
3303 return('\177');
3304 else if (ch == '\174')
3305 return('\000');
3306 else if (ch == '^') /* '\137' in 1047, '\260' in 819 */
3307 return('\036');
3308 else if (ch == '\155')
3309 return('\037');
3310 else if (0 < ch && ch < (sizeof(controllablechars) - 1))
3311 return(controllablechars[ch+1]);
3312 else
3313 Perl_die(aTHX_ "invalid control request: '\\%03o'\n", ch & 0xFF);
3314 }
3315}
3316#endif
e72cf795 3317
e72cf795
JH
3318/* XXX struct tm on some systems (SunOS4/BSD) contains extra (non POSIX)
3319 * fields for which we don't have Configure support yet:
3320 * char *tm_zone; -- abbreviation of timezone name
3321 * long tm_gmtoff; -- offset from GMT in seconds
3322 * To workaround core dumps from the uninitialised tm_zone we get the
3323 * system to give us a reasonable struct to copy. This fix means that
3324 * strftime uses the tm_zone and tm_gmtoff values returned by
3325 * localtime(time()). That should give the desired result most of the
3326 * time. But probably not always!
3327 *
3328 * This is a temporary workaround to be removed once Configure
3329 * support is added and NETaa14816 is considered in full.
3330 * It does not address tzname aspects of NETaa14816.
3331 */
3332#ifdef HAS_GNULIBC
3333# ifndef STRUCT_TM_HASZONE
3334# define STRUCT_TM_HASZONE
3335# endif
3336#endif
3337
3338void
f1208910 3339Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */
e72cf795
JH
3340{
3341#ifdef STRUCT_TM_HASZONE
3342 Time_t now;
3343 (void)time(&now);
3344 Copy(localtime(&now), ptm, 1, struct tm);
3345#endif
3346}
3347
3348/*
3349 * mini_mktime - normalise struct tm values without the localtime()
3350 * semantics (and overhead) of mktime().
3351 */
3352void
f1208910 3353Perl_mini_mktime(pTHX_ struct tm *ptm)
e72cf795
JH
3354{
3355 int yearday;
3356 int secs;
3357 int month, mday, year, jday;
3358 int odd_cent, odd_year;
3359
3360#define DAYS_PER_YEAR 365
3361#define DAYS_PER_QYEAR (4*DAYS_PER_YEAR+1)
3362#define DAYS_PER_CENT (25*DAYS_PER_QYEAR-1)
3363#define DAYS_PER_QCENT (4*DAYS_PER_CENT+1)
3364#define SECS_PER_HOUR (60*60)
3365#define SECS_PER_DAY (24*SECS_PER_HOUR)
3366/* parentheses deliberately absent on these two, otherwise they don't work */
3367#define MONTH_TO_DAYS 153/5
3368#define DAYS_TO_MONTH 5/153
3369/* offset to bias by March (month 4) 1st between month/mday & year finding */
3370#define YEAR_ADJUST (4*MONTH_TO_DAYS+1)
3371/* as used here, the algorithm leaves Sunday as day 1 unless we adjust it */
3372#define WEEKDAY_BIAS 6 /* (1+6)%7 makes Sunday 0 again */
3373
3374/*
3375 * Year/day algorithm notes:
3376 *
3377 * With a suitable offset for numeric value of the month, one can find
3378 * an offset into the year by considering months to have 30.6 (153/5) days,
3379 * using integer arithmetic (i.e., with truncation). To avoid too much
3380 * messing about with leap days, we consider January and February to be
3381 * the 13th and 14th month of the previous year. After that transformation,
3382 * we need the month index we use to be high by 1 from 'normal human' usage,
3383 * so the month index values we use run from 4 through 15.
3384 *
3385 * Given that, and the rules for the Gregorian calendar (leap years are those
3386 * divisible by 4 unless also divisible by 100, when they must be divisible
3387 * by 400 instead), we can simply calculate the number of days since some
3388 * arbitrary 'beginning of time' by futzing with the (adjusted) year number,
3389 * the days we derive from our month index, and adding in the day of the
3390 * month. The value used here is not adjusted for the actual origin which
3391 * it normally would use (1 January A.D. 1), since we're not exposing it.
3392 * We're only building the value so we can turn around and get the
3393 * normalised values for the year, month, day-of-month, and day-of-year.
3394 *
3395 * For going backward, we need to bias the value we're using so that we find
3396 * the right year value. (Basically, we don't want the contribution of
3397 * March 1st to the number to apply while deriving the year). Having done
3398 * that, we 'count up' the contribution to the year number by accounting for
3399 * full quadracenturies (400-year periods) with their extra leap days, plus
3400 * the contribution from full centuries (to avoid counting in the lost leap
3401 * days), plus the contribution from full quad-years (to count in the normal
3402 * leap days), plus the leftover contribution from any non-leap years.
3403 * At this point, if we were working with an actual leap day, we'll have 0
3404 * days left over. This is also true for March 1st, however. So, we have
3405 * to special-case that result, and (earlier) keep track of the 'odd'
3406 * century and year contributions. If we got 4 extra centuries in a qcent,
3407 * or 4 extra years in a qyear, then it's a leap day and we call it 29 Feb.
3408 * Otherwise, we add back in the earlier bias we removed (the 123 from
3409 * figuring in March 1st), find the month index (integer division by 30.6),
3410 * and the remainder is the day-of-month. We then have to convert back to
3411 * 'real' months (including fixing January and February from being 14/15 in
3412 * the previous year to being in the proper year). After that, to get
3413 * tm_yday, we work with the normalised year and get a new yearday value for
3414 * January 1st, which we subtract from the yearday value we had earlier,
3415 * representing the date we've re-built. This is done from January 1
3416 * because tm_yday is 0-origin.
3417 *
3418 * Since POSIX time routines are only guaranteed to work for times since the
3419 * UNIX epoch (00:00:00 1 Jan 1970 UTC), the fact that this algorithm
3420 * applies Gregorian calendar rules even to dates before the 16th century
3421 * doesn't bother me. Besides, you'd need cultural context for a given
3422 * date to know whether it was Julian or Gregorian calendar, and that's
3423 * outside the scope for this routine. Since we convert back based on the
3424 * same rules we used to build the yearday, you'll only get strange results
3425 * for input which needed normalising, or for the 'odd' century years which
3426 * were leap years in the Julian calander but not in the Gregorian one.
3427 * I can live with that.
3428 *
3429 * This algorithm also fails to handle years before A.D. 1 gracefully, but
3430 * that's still outside the scope for POSIX time manipulation, so I don't
3431 * care.
3432 */
3433
3434 year = 1900 + ptm->tm_year;
3435 month = ptm->tm_mon;
3436 mday = ptm->tm_mday;
3437 /* allow given yday with no month & mday to dominate the result */
3438 if (ptm->tm_yday >= 0 && mday <= 0 && month <= 0) {
3439 month = 0;
3440 mday = 0;
3441 jday = 1 + ptm->tm_yday;
3442 }
3443 else {
3444 jday = 0;
3445 }
3446 if (month >= 2)
3447 month+=2;
3448 else
3449 month+=14, year--;
3450 yearday = DAYS_PER_YEAR * year + year/4 - year/100 + year/400;
3451 yearday += month*MONTH_TO_DAYS + mday + jday;
3452 /*
3453 * Note that we don't know when leap-seconds were or will be,
3454 * so we have to trust the user if we get something which looks
3455 * like a sensible leap-second. Wild values for seconds will
3456 * be rationalised, however.
3457 */
3458 if ((unsigned) ptm->tm_sec <= 60) {
3459 secs = 0;
3460 }
3461 else {
3462 secs = ptm->tm_sec;
3463 ptm->tm_sec = 0;
3464 }
3465 secs += 60 * ptm->tm_min;
3466 secs += SECS_PER_HOUR * ptm->tm_hour;
3467 if (secs < 0) {
3468 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3469 /* got negative remainder, but need positive time */
3470 /* back off an extra day to compensate */
3471 yearday += (secs/SECS_PER_DAY)-1;
3472 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
3473 }
3474 else {
3475 yearday += (secs/SECS_PER_DAY);
3476 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
3477 }
3478 }
3479 else if (secs >= SECS_PER_DAY) {
3480 yearday += (secs/SECS_PER_DAY);
3481 secs %= SECS_PER_DAY;
3482 }
3483 ptm->tm_hour = secs/SECS_PER_HOUR;
3484 secs %= SECS_PER_HOUR;
3485 ptm->tm_min = secs/60;
3486 secs %= 60;
3487 ptm->tm_sec += secs;
3488 /* done with time of day effects */
3489 /*
3490 * The algorithm for yearday has (so far) left it high by 428.
3491 * To avoid mistaking a legitimate Feb 29 as Mar 1, we need to
3492 * bias it by 123 while trying to figure out what year it
3493 * really represents. Even with this tweak, the reverse
3494 * translation fails for years before A.D. 0001.
3495 * It would still fail for Feb 29, but we catch that one below.
3496 */
3497 jday = yearday; /* save for later fixup vis-a-vis Jan 1 */
3498 yearday -= YEAR_ADJUST;
3499 year = (yearday / DAYS_PER_QCENT) * 400;
3500 yearday %= DAYS_PER_QCENT;
3501 odd_cent = yearday / DAYS_PER_CENT;
3502 year += odd_cent * 100;
3503 yearday %= DAYS_PER_CENT;
3504 year += (yearday / DAYS_PER_QYEAR) * 4;
3505 yearday %= DAYS_PER_QYEAR;
3506 odd_year = yearday / DAYS_PER_YEAR;
3507 year += odd_year;
3508 yearday %= DAYS_PER_YEAR;
3509 if (!yearday && (odd_cent==4 || odd_year==4)) { /* catch Feb 29 */
3510 month = 1;
3511 yearday = 29;
3512 }
3513 else {
3514 yearday += YEAR_ADJUST; /* recover March 1st crock */
3515 month = yearday*DAYS_TO_MONTH;
3516 yearday -= month*MONTH_TO_DAYS;
3517 /* recover other leap-year adjustment */
3518 if (month > 13) {
3519 month-=14;
3520 year++;
3521 }
3522 else {
3523 month-=2;
3524 }
3525 }
3526 ptm->tm_year = year - 1900;
3527 if (yearday) {
3528 ptm->tm_mday = yearday;
3529 ptm->tm_mon = month;
3530 }
3531 else {
3532 ptm->tm_mday = 31;
3533 ptm->tm_mon = month - 1;
3534 }
3535 /* re-build yearday based on Jan 1 to get tm_yday */
3536 year--;
3537 yearday = year*DAYS_PER_YEAR + year/4 - year/100 + year/400;
3538 yearday += 14*MONTH_TO_DAYS + 1;
3539 ptm->tm_yday = jday - yearday;
3540 /* fix tm_wday if not overridden by caller */
3541 if ((unsigned)ptm->tm_wday > 6)
3542 ptm->tm_wday = (jday + WEEKDAY_BIAS) % 7;
3543}
b3c85772
JH
3544
3545char *
f1208910 3546Perl_my_strftime(pTHX_ char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst)
b3c85772
JH
3547{
3548#ifdef HAS_STRFTIME
3549 char *buf;
3550 int buflen;
3551 struct tm mytm;
3552 int len;
3553
3554 init_tm(&mytm); /* XXX workaround - see init_tm() above */
3555 mytm.tm_sec = sec;
3556 mytm.tm_min = min;
3557 mytm.tm_hour = hour;
3558 mytm.tm_mday = mday;
3559 mytm.tm_mon = mon;
3560 mytm.tm_year = year;
3561 mytm.tm_wday = wday;
3562 mytm.tm_yday = yday;
3563 mytm.tm_isdst = isdst;
3564 mini_mktime(&mytm);
3565 buflen = 64;
3566 New(0, buf, buflen, char);
3567 len = strftime(buf, buflen, fmt, &mytm);
3568 /*
877f6a72 3569 ** The following is needed to handle to the situation where
b3c85772
JH
3570 ** tmpbuf overflows. Basically we want to allocate a buffer
3571 ** and try repeatedly. The reason why it is so complicated
3572 ** is that getting a return value of 0 from strftime can indicate
3573 ** one of the following:
3574 ** 1. buffer overflowed,
3575 ** 2. illegal conversion specifier, or
3576 ** 3. the format string specifies nothing to be returned(not
3577 ** an error). This could be because format is an empty string
3578 ** or it specifies %p that yields an empty string in some locale.
3579 ** If there is a better way to make it portable, go ahead by
3580 ** all means.
3581 */
3582 if ((len > 0 && len < buflen) || (len == 0 && *fmt == '\0'))
3583 return buf;
3584 else {
3585 /* Possibly buf overflowed - try again with a bigger buf */
3586 int fmtlen = strlen(fmt);
3587 int bufsize = fmtlen + buflen;
877f6a72 3588
b3c85772
JH
3589 New(0, buf, bufsize, char);
3590 while (buf) {
3591 buflen = strftime(buf, bufsize, fmt, &mytm);
3592 if (buflen > 0 && buflen < bufsize)
3593 break;
3594 /* heuristic to prevent out-of-memory errors */
3595 if (bufsize > 100*fmtlen) {
3596 Safefree(buf);
3597 buf = NULL;
3598 break;
3599 }
3600 bufsize *= 2;
3601 Renew(buf, bufsize, char);
3602 }
3603 return buf;
3604 }
3605#else
3606 Perl_croak(aTHX_ "panic: no strftime");
3607#endif
3608}
3609
877f6a72
NIS
3610
3611#define SV_CWD_RETURN_UNDEF \
3612sv_setsv(sv, &PL_sv_undef); \
3613return FALSE
3614
3615#define SV_CWD_ISDOT(dp) \
3616 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
3617 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
3618
3619/*
89423764 3620=for apidoc getcwd_sv
877f6a72
NIS
3621
3622Fill the sv with current working directory
3623
3624=cut
3625*/
3626
3627/* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
3628 * rewritten again by dougm, optimized for use with xs TARG, and to prefer
3629 * getcwd(3) if available
3630 * Comments from the orignal:
3631 * This is a faster version of getcwd. It's also more dangerous
3632 * because you might chdir out of a directory that you can't chdir
3633 * back into. */
3634
877f6a72 3635int
89423764 3636Perl_getcwd_sv(pTHX_ register SV *sv)
877f6a72
NIS
3637{
3638#ifndef PERL_MICRO
3639
8f95b30d
JH
3640#ifdef HAS_GETCWD
3641 {
60e110a8
DM
3642 char buf[MAXPATHLEN];
3643
3644 /* Some getcwd()s automatically allocate a buffer of the given
3645 * size from the heap if they are given a NULL buffer pointer.
3646 * The problem is that this behaviour is not portable. */
3647 if (getcwd(buf, sizeof(buf) - 1)) {
3648 STRLEN len = strlen(buf);
3649 sv_setpvn(sv, buf, len);
3650 return TRUE;
3651 }
3652 else {
3653 sv_setsv(sv, &PL_sv_undef);
3654 return FALSE;
3655 }
8f95b30d
JH
3656 }
3657
3658#else
3659
877f6a72
NIS
3660 struct stat statbuf;
3661 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
3662 int namelen, pathlen=0;
3663 DIR *dir;
3664 Direntry_t *dp;
877f6a72
NIS
3665
3666 (void)SvUPGRADE(sv, SVt_PV);
3667
877f6a72 3668 if (PerlLIO_lstat(".", &statbuf) < 0) {
a87ab2eb 3669 SV_CWD_RETURN_UNDEF;
877f6a72
NIS
3670 }
3671
3672 orig_cdev = statbuf.st_dev;
3673 orig_cino = statbuf.st_ino;
3674 cdev = orig_cdev;
3675 cino = orig_cino;
3676
3677 for (;;) {
3678 odev = cdev;
3679 oino = cino;
3680
3681 if (PerlDir_chdir("..") < 0) {
3682 SV_CWD_RETURN_UNDEF;
3683 }
3684 if (PerlLIO_stat(".", &statbuf) < 0) {
3685 SV_CWD_RETURN_UNDEF;
3686 }
3687
3688 cdev = statbuf.st_dev;
3689 cino = statbuf.st_ino;
3690
3691 if (odev == cdev && oino == cino) {
3692 break;
3693 }
3694 if (!(dir = PerlDir_open("."))) {
3695 SV_CWD_RETURN_UNDEF;
3696 }
3697
3698 while ((dp = PerlDir_read(dir)) != NULL) {
3699#ifdef DIRNAMLEN
3700 namelen = dp->d_namlen;
3701#else
3702 namelen = strlen(dp->d_name);
3703#endif
3704 /* skip . and .. */
a87ab2eb 3705 if (SV_CWD_ISDOT(dp)) {
877f6a72
NIS
3706 continue;
3707 }
3708
3709 if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
3710 SV_CWD_RETURN_UNDEF;
3711 }
3712
3713 tdev = statbuf.st_dev;
3714 tino = statbuf.st_ino;
3715 if (tino == oino && tdev == odev) {
3716 break;
3717 }
3718 }
3719
3720 if (!dp) {
3721 SV_CWD_RETURN_UNDEF;
3722 }
3723
cb5953d6
JH
3724 if (pathlen + namelen + 1 >= MAXPATHLEN) {
3725 SV_CWD_RETURN_UNDEF;
3726 }
3727
877f6a72
NIS
3728 SvGROW(sv, pathlen + namelen + 1);
3729
3730 if (pathlen) {
3731 /* shift down */
3732 Move(SvPVX(sv), SvPVX(sv) + namelen + 1, pathlen, char);
3733 }
3734
3735 /* prepend current directory to the front */
3736 *SvPVX(sv) = '/';
3737 Move(dp->d_name, SvPVX(sv)+1, namelen, char);
3738 pathlen += (namelen + 1);
3739
3740#ifdef VOID_CLOSEDIR
3741 PerlDir_close(dir);
3742#else
3743 if (PerlDir_close(dir) < 0) {
3744 SV_CWD_RETURN_UNDEF;
3745 }
3746#endif
3747 }
3748
60e110a8
DM
3749 if (pathlen) {
3750 SvCUR_set(sv, pathlen);
3751 *SvEND(sv) = '\0';
3752 SvPOK_only(sv);
877f6a72 3753
2a45baea 3754 if (PerlDir_chdir(SvPVX(sv)) < 0) {
60e110a8
DM
3755 SV_CWD_RETURN_UNDEF;
3756 }
877f6a72
NIS
3757 }
3758 if (PerlLIO_stat(".", &statbuf) < 0) {
3759 SV_CWD_RETURN_UNDEF;
3760 }
3761
3762 cdev = statbuf.st_dev;
3763 cino = statbuf.st_ino;
3764
3765 if (cdev != orig_cdev || cino != orig_cino) {
3766 Perl_croak(aTHX_ "Unstable directory path, "
3767 "current directory changed unexpectedly");
3768 }
3769#endif
3770
3771 return TRUE;
3772#else
3773 return FALSE;
3774#endif
3775}
3776