ByteLoader mark 2
[p5sagit/p5-mst-13.2.git] / util.c
CommitLineData
a0d0e21e 1/* util.c
a687059c 2 *
4eb8286e 3 * Copyright (c) 1991-1999, Larry Wall
a687059c 4 *
d48672a2 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 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"
8d063cd8 16#include "perl.h"
62b28dd9 17
e1dfb34b 18#if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
a687059c 19#include <signal.h>
62b28dd9 20#endif
a687059c 21
36477c24 22#ifndef SIG_ERR
23# define SIG_ERR ((Sighandler_t) -1)
24#endif
25
bd4080b3 26/* XXX If this causes problems, set i_unistd=undef in the hint file. */
85e6fe83 27#ifdef I_UNISTD
8990e307 28# include <unistd.h>
29#endif
30
a687059c 31#ifdef I_VFORK
32# include <vfork.h>
33#endif
34
94b6baf5 35/* Put this after #includes because fork and vfork prototypes may
36 conflict.
37*/
38#ifndef HAS_VFORK
39# define vfork fork
40#endif
41
fe14fcc3 42#ifdef I_FCNTL
43# include <fcntl.h>
44#endif
45#ifdef I_SYS_FILE
46# include <sys/file.h>
47#endif
48
ff68c719 49#ifdef I_SYS_WAIT
50# include <sys/wait.h>
51#endif
52
8d063cd8 53#define FLUSH
8d063cd8 54
a0d0e21e 55#ifdef LEAKTEST
a0d0e21e 56
8c52afec 57static void xstat _((int));
58long xcount[MAXXCOUNT];
59long lastxcount[MAXXCOUNT];
60long xycount[MAXXCOUNT][MAXYCOUNT];
61long lastxycount[MAXXCOUNT][MAXYCOUNT];
62
a0d0e21e 63#endif
a863c7d1 64
f2517201 65/* paranoid version of system's malloc() */
8d063cd8 66
a687059c 67/* NOTE: Do not call the next three routines directly. Use the macros
68 * in handy.h, so that we can easily redefine everything to do tracking of
69 * allocated hunks back to the original New to track down any memory leaks.
20cec16a 70 * XXX This advice seems to be widely ignored :-( --AD August 1996.
a687059c 71 */
72
bd4080b3 73Malloc_t
f2517201 74safesysmalloc(MEM_SIZE size)
8d063cd8 75{
bd4080b3 76 Malloc_t ptr;
55497cff 77#ifdef HAS_64K_LIMIT
62b28dd9 78 if (size > 0xffff) {
760ac839 79 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
79072805 80 my_exit(1);
62b28dd9 81 }
55497cff 82#endif /* HAS_64K_LIMIT */
34de22dd 83#ifdef DEBUGGING
84 if ((long)size < 0)
463ee0b2 85 croak("panic: malloc");
34de22dd 86#endif
6ad3d225 87 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
79072805 88#if !(defined(I286) || defined(atarist))
3280af22 89 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
79072805 90#else
6b88bc9c 91 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
8d063cd8 92#endif
93 if (ptr != Nullch)
94 return ptr;
3280af22 95 else if (PL_nomemok)
7c0587c8 96 return Nullch;
8d063cd8 97 else {
22c35a8c 98 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
79072805 99 my_exit(1);
4e35701f 100 return Nullch;
8d063cd8 101 }
102 /*NOTREACHED*/
103}
104
f2517201 105/* paranoid version of system's realloc() */
8d063cd8 106
bd4080b3 107Malloc_t
f2517201 108safesysrealloc(Malloc_t where,MEM_SIZE size)
8d063cd8 109{
bd4080b3 110 Malloc_t ptr;
ecfc5424 111#if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
6ad3d225 112 Malloc_t PerlMem_realloc();
ecfc5424 113#endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
8d063cd8 114
55497cff 115#ifdef HAS_64K_LIMIT
5f05dabc 116 if (size > 0xffff) {
117 PerlIO_printf(PerlIO_stderr(),
118 "Reallocation too large: %lx\n", size) FLUSH;
119 my_exit(1);
120 }
55497cff 121#endif /* HAS_64K_LIMIT */
7614df0c 122 if (!size) {
f2517201 123 safesysfree(where);
7614df0c 124 return NULL;
125 }
126
378cc40b 127 if (!where)
f2517201 128 return safesysmalloc(size);
34de22dd 129#ifdef DEBUGGING
130 if ((long)size < 0)
463ee0b2 131 croak("panic: realloc");
34de22dd 132#endif
7614df0c 133 ptr = PerlMem_realloc(where,size);
79072805 134
135#if !(defined(I286) || defined(atarist))
136 DEBUG_m( {
3280af22 137 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,PL_an++);
138 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
79072805 139 } )
140#else
141 DEBUG_m( {
6b88bc9c 142 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,PL_an++);
143 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
79072805 144 } )
8d063cd8 145#endif
79072805 146
8d063cd8 147 if (ptr != Nullch)
148 return ptr;
3280af22 149 else if (PL_nomemok)
7c0587c8 150 return Nullch;
8d063cd8 151 else {
22c35a8c 152 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
79072805 153 my_exit(1);
4e35701f 154 return Nullch;
8d063cd8 155 }
156 /*NOTREACHED*/
157}
158
f2517201 159/* safe version of system's free() */
8d063cd8 160
54310121 161Free_t
f2517201 162safesysfree(Malloc_t where)
8d063cd8 163{
79072805 164#if !(defined(I286) || defined(atarist))
3280af22 165 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,PL_an++));
79072805 166#else
6b88bc9c 167 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,PL_an++));
8d063cd8 168#endif
378cc40b 169 if (where) {
de3bb511 170 /*SUPPRESS 701*/
6ad3d225 171 PerlMem_free(where);
378cc40b 172 }
8d063cd8 173}
174
f2517201 175/* safe version of system's calloc() */
1050c9ca 176
bd4080b3 177Malloc_t
f2517201 178safesyscalloc(MEM_SIZE count, MEM_SIZE size)
1050c9ca 179{
bd4080b3 180 Malloc_t ptr;
1050c9ca 181
55497cff 182#ifdef HAS_64K_LIMIT
5f05dabc 183 if (size * count > 0xffff) {
184 PerlIO_printf(PerlIO_stderr(),
185 "Allocation too large: %lx\n", size * count) FLUSH;
186 my_exit(1);
187 }
55497cff 188#endif /* HAS_64K_LIMIT */
1050c9ca 189#ifdef DEBUGGING
190 if ((long)size < 0 || (long)count < 0)
191 croak("panic: calloc");
192#endif
0b7c1c42 193 size *= count;
6ad3d225 194 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
1050c9ca 195#if !(defined(I286) || defined(atarist))
3280af22 196 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
1050c9ca 197#else
6b88bc9c 198 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
1050c9ca 199#endif
1050c9ca 200 if (ptr != Nullch) {
201 memset((void*)ptr, 0, size);
202 return ptr;
203 }
3280af22 204 else if (PL_nomemok)
1050c9ca 205 return Nullch;
206 else {
22c35a8c 207 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
1050c9ca 208 my_exit(1);
4e35701f 209 return Nullch;
1050c9ca 210 }
211 /*NOTREACHED*/
212}
213
a687059c 214#ifdef LEAKTEST
215
8c52afec 216struct mem_test_strut {
217 union {
218 long type;
219 char c[2];
220 } u;
221 long size;
222};
223
224# define ALIGN sizeof(struct mem_test_strut)
225
226# define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
227# define typeof_chunk(ch) \
228 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
229# define set_typeof_chunk(ch,t) \
230 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
231#define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
232 ? MAXYCOUNT - 1 \
233 : ( (size) > 40 \
234 ? ((size) - 1)/8 + 5 \
235 : ((size) - 1)/4))
8d063cd8 236
bd4080b3 237Malloc_t
f0f333f4 238safexmalloc(I32 x, MEM_SIZE size)
8d063cd8 239{
8c52afec 240 register char* where = (char*)safemalloc(size + ALIGN);
8d063cd8 241
8c52afec 242 xcount[x] += size;
243 xycount[x][SIZE_TO_Y(size)]++;
244 set_typeof_chunk(where, x);
245 sizeof_chunk(where) = size;
246 return (Malloc_t)(where + ALIGN);
8d063cd8 247}
8d063cd8 248
bd4080b3 249Malloc_t
8c52afec 250safexrealloc(Malloc_t wh, MEM_SIZE size)
a687059c 251{
8c52afec 252 char *where = (char*)wh;
253
254 if (!wh)
255 return safexmalloc(0,size);
256
257 {
258 MEM_SIZE old = sizeof_chunk(where - ALIGN);
259 int t = typeof_chunk(where - ALIGN);
260 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
261
262 xycount[t][SIZE_TO_Y(old)]--;
263 xycount[t][SIZE_TO_Y(size)]++;
264 xcount[t] += size - old;
265 sizeof_chunk(new) = size;
266 return (Malloc_t)(new + ALIGN);
267 }
a687059c 268}
269
270void
8c52afec 271safexfree(Malloc_t wh)
a687059c 272{
79072805 273 I32 x;
8c52afec 274 char *where = (char*)wh;
275 MEM_SIZE size;
276
a687059c 277 if (!where)
278 return;
279 where -= ALIGN;
8c52afec 280 size = sizeof_chunk(where);
a687059c 281 x = where[0] + 100 * where[1];
8c52afec 282 xcount[x] -= size;
283 xycount[x][SIZE_TO_Y(size)]--;
a687059c 284 safefree(where);
285}
286
bd4080b3 287Malloc_t
f0f333f4 288safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
1050c9ca 289{
8c52afec 290 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
291 xcount[x] += size;
292 xycount[x][SIZE_TO_Y(size)]++;
293 memset((void*)(where + ALIGN), 0, size * count);
294 set_typeof_chunk(where, x);
295 sizeof_chunk(where) = size;
296 return (Malloc_t)(where + ALIGN);
1050c9ca 297}
298
7c0587c8 299static void
8c52afec 300xstat(int flag)
8d063cd8 301{
8c52afec 302 register I32 i, j, total = 0;
303 I32 subtot[MAXYCOUNT];
8d063cd8 304
8c52afec 305 for (j = 0; j < MAXYCOUNT; j++) {
306 subtot[j] = 0;
307 }
308
309 PerlIO_printf(PerlIO_stderr(), " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
a687059c 310 for (i = 0; i < MAXXCOUNT; i++) {
8c52afec 311 total += xcount[i];
312 for (j = 0; j < MAXYCOUNT; j++) {
313 subtot[j] += xycount[i][j];
314 }
315 if (flag == 0
316 ? xcount[i] /* Have something */
317 : (flag == 2
318 ? xcount[i] != lastxcount[i] /* Changed */
319 : xcount[i] > lastxcount[i])) { /* Growed */
320 PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100,
321 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
a687059c 322 lastxcount[i] = xcount[i];
8c52afec 323 for (j = 0; j < MAXYCOUNT; j++) {
324 if ( flag == 0
325 ? xycount[i][j] /* Have something */
326 : (flag == 2
327 ? xycount[i][j] != lastxycount[i][j] /* Changed */
328 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
329 PerlIO_printf(PerlIO_stderr(),"%3ld ",
330 flag == 2
331 ? xycount[i][j] - lastxycount[i][j]
332 : xycount[i][j]);
333 lastxycount[i][j] = xycount[i][j];
334 } else {
335 PerlIO_printf(PerlIO_stderr(), " . ", xycount[i][j]);
336 }
337 }
338 PerlIO_printf(PerlIO_stderr(), "\n");
339 }
340 }
341 if (flag != 2) {
342 PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
343 for (j = 0; j < MAXYCOUNT; j++) {
344 if (subtot[j]) {
345 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
346 } else {
347 PerlIO_printf(PerlIO_stderr(), " . ");
348 }
8d063cd8 349 }
8c52afec 350 PerlIO_printf(PerlIO_stderr(), "\n");
8d063cd8 351 }
8d063cd8 352}
a687059c 353
354#endif /* LEAKTEST */
8d063cd8 355
356/* copy a string up to some (non-backslashed) delimiter, if any */
357
358char *
8ac85365 359delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
8d063cd8 360{
fc36a67e 361 register I32 tolen;
362 for (tolen = 0; from < fromend; from++, tolen++) {
378cc40b 363 if (*from == '\\') {
364 if (from[1] == delim)
365 from++;
fc36a67e 366 else {
367 if (to < toend)
368 *to++ = *from;
369 tolen++;
370 from++;
371 }
378cc40b 372 }
bedebaa5 373 else if (*from == delim)
8d063cd8 374 break;
fc36a67e 375 if (to < toend)
376 *to++ = *from;
8d063cd8 377 }
bedebaa5 378 if (to < toend)
379 *to = '\0';
fc36a67e 380 *retlen = tolen;
8d063cd8 381 return from;
382}
383
384/* return ptr to little string in big string, NULL if not found */
378cc40b 385/* This routine was donated by Corey Satten. */
8d063cd8 386
387char *
08105a92 388instr(register const char *big, register const char *little)
378cc40b 389{
08105a92 390 register const char *s, *x;
79072805 391 register I32 first;
378cc40b 392
a687059c 393 if (!little)
08105a92 394 return (char*)big;
a687059c 395 first = *little++;
378cc40b 396 if (!first)
08105a92 397 return (char*)big;
378cc40b 398 while (*big) {
399 if (*big++ != first)
400 continue;
401 for (x=big,s=little; *s; /**/ ) {
402 if (!*x)
403 return Nullch;
404 if (*s++ != *x++) {
405 s--;
406 break;
407 }
408 }
409 if (!*s)
08105a92 410 return (char*)(big-1);
378cc40b 411 }
412 return Nullch;
413}
8d063cd8 414
a687059c 415/* same as instr but allow embedded nulls */
416
417char *
08105a92 418ninstr(register const char *big, register const char *bigend, const char *little, const char *lend)
8d063cd8 419{
08105a92 420 register const char *s, *x;
79072805 421 register I32 first = *little;
08105a92 422 register const char *littleend = lend;
378cc40b 423
a0d0e21e 424 if (!first && little >= littleend)
08105a92 425 return (char*)big;
de3bb511 426 if (bigend - big < littleend - little)
427 return Nullch;
a687059c 428 bigend -= littleend - little++;
429 while (big <= bigend) {
430 if (*big++ != first)
431 continue;
432 for (x=big,s=little; s < littleend; /**/ ) {
433 if (*s++ != *x++) {
434 s--;
435 break;
436 }
437 }
438 if (s >= littleend)
08105a92 439 return (char*)(big-1);
378cc40b 440 }
a687059c 441 return Nullch;
442}
443
444/* reverse of the above--find last substring */
445
446char *
08105a92 447rninstr(register const char *big, const char *bigend, const char *little, const char *lend)
a687059c 448{
08105a92 449 register const char *bigbeg;
450 register const char *s, *x;
79072805 451 register I32 first = *little;
08105a92 452 register const char *littleend = lend;
a687059c 453
a0d0e21e 454 if (!first && little >= littleend)
08105a92 455 return (char*)bigend;
a687059c 456 bigbeg = big;
457 big = bigend - (littleend - little++);
458 while (big >= bigbeg) {
459 if (*big-- != first)
460 continue;
461 for (x=big+2,s=little; s < littleend; /**/ ) {
462 if (*s++ != *x++) {
463 s--;
464 break;
465 }
466 }
467 if (s >= littleend)
08105a92 468 return (char*)(big+1);
378cc40b 469 }
a687059c 470 return Nullch;
378cc40b 471}
a687059c 472
bbce6d69 473/*
474 * Set up for a new ctype locale.
475 */
55497cff 476void
08105a92 477perl_new_ctype(const char *newctype)
ef7eada9 478{
36477c24 479#ifdef USE_LOCALE_CTYPE
480
bbce6d69 481 int i;
ef7eada9 482
bbce6d69 483 for (i = 0; i < 256; i++) {
484 if (isUPPER_LC(i))
22c35a8c 485 PL_fold_locale[i] = toLOWER_LC(i);
bbce6d69 486 else if (isLOWER_LC(i))
22c35a8c 487 PL_fold_locale[i] = toUPPER_LC(i);
bbce6d69 488 else
22c35a8c 489 PL_fold_locale[i] = i;
bbce6d69 490 }
bbce6d69 491
36477c24 492#endif /* USE_LOCALE_CTYPE */
493}
bbce6d69 494
495/*
496 * Set up for a new collation locale.
497 */
498void
08105a92 499perl_new_collate(const char *newcoll)
bbce6d69 500{
36477c24 501#ifdef USE_LOCALE_COLLATE
502
bbce6d69 503 if (! newcoll) {
3280af22 504 if (PL_collation_name) {
505 ++PL_collation_ix;
506 Safefree(PL_collation_name);
507 PL_collation_name = NULL;
508 PL_collation_standard = TRUE;
509 PL_collxfrm_base = 0;
510 PL_collxfrm_mult = 2;
bbce6d69 511 }
512 return;
513 }
514
3280af22 515 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
516 ++PL_collation_ix;
517 Safefree(PL_collation_name);
518 PL_collation_name = savepv(newcoll);
519 PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
bbce6d69 520
bbce6d69 521 {
522 /* 2: at most so many chars ('a', 'b'). */
523 /* 50: surely no system expands a char more. */
524#define XFRMBUFSIZE (2 * 50)
525 char xbuf[XFRMBUFSIZE];
526 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
527 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
528 SSize_t mult = fb - fa;
529 if (mult < 1)
530 croak("strxfrm() gets absurd");
3280af22 531 PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
532 PL_collxfrm_mult = mult;
bbce6d69 533 }
bbce6d69 534 }
bbce6d69 535
36477c24 536#endif /* USE_LOCALE_COLLATE */
537}
bbce6d69 538
539/*
540 * Set up for a new numeric locale.
541 */
542void
08105a92 543perl_new_numeric(const char *newnum)
bbce6d69 544{
36477c24 545#ifdef USE_LOCALE_NUMERIC
546
bbce6d69 547 if (! newnum) {
3280af22 548 if (PL_numeric_name) {
549 Safefree(PL_numeric_name);
550 PL_numeric_name = NULL;
551 PL_numeric_standard = TRUE;
552 PL_numeric_local = TRUE;
bbce6d69 553 }
554 return;
555 }
556
3280af22 557 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
558 Safefree(PL_numeric_name);
559 PL_numeric_name = savepv(newnum);
560 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
561 PL_numeric_local = TRUE;
bbce6d69 562 }
36477c24 563
564#endif /* USE_LOCALE_NUMERIC */
bbce6d69 565}
566
567void
8ac85365 568perl_set_numeric_standard(void)
bbce6d69 569{
5f05dabc 570#ifdef USE_LOCALE_NUMERIC
571
3280af22 572 if (! PL_numeric_standard) {
bbce6d69 573 setlocale(LC_NUMERIC, "C");
3280af22 574 PL_numeric_standard = TRUE;
575 PL_numeric_local = FALSE;
bbce6d69 576 }
5f05dabc 577
578#endif /* USE_LOCALE_NUMERIC */
bbce6d69 579}
580
581void
8ac85365 582perl_set_numeric_local(void)
bbce6d69 583{
5f05dabc 584#ifdef USE_LOCALE_NUMERIC
585
3280af22 586 if (! PL_numeric_local) {
587 setlocale(LC_NUMERIC, PL_numeric_name);
588 PL_numeric_standard = FALSE;
589 PL_numeric_local = TRUE;
bbce6d69 590 }
bbce6d69 591
36477c24 592#endif /* USE_LOCALE_NUMERIC */
5f05dabc 593}
36477c24 594
bbce6d69 595
36477c24 596/*
597 * Initialize locale awareness.
598 */
f0c5b223 599int
8ac85365 600perl_init_i18nl10n(int printwarn)
f0c5b223 601{
602 int ok = 1;
603 /* returns
604 * 1 = set ok or not applicable,
605 * 0 = fallback to C locale,
606 * -1 = fallback to C locale failed
607 */
bbce6d69 608
36477c24 609#ifdef USE_LOCALE
bbce6d69 610
36477c24 611#ifdef USE_LOCALE_CTYPE
bbce6d69 612 char *curctype = NULL;
36477c24 613#endif /* USE_LOCALE_CTYPE */
614#ifdef USE_LOCALE_COLLATE
bbce6d69 615 char *curcoll = NULL;
36477c24 616#endif /* USE_LOCALE_COLLATE */
617#ifdef USE_LOCALE_NUMERIC
bbce6d69 618 char *curnum = NULL;
36477c24 619#endif /* USE_LOCALE_NUMERIC */
3aeabbed 620#ifdef __GLIBC__
621 char *language = PerlEnv_getenv("LANGUAGE");
622#endif
76e3520e 623 char *lc_all = PerlEnv_getenv("LC_ALL");
624 char *lang = PerlEnv_getenv("LANG");
bbce6d69 625 bool setlocale_failure = FALSE;
f0c5b223 626
02b32252 627#ifdef LOCALE_ENVIRON_REQUIRED
628
629 /*
630 * Ultrix setlocale(..., "") fails if there are no environment
631 * variables from which to get a locale name.
632 */
633
634 bool done = FALSE;
635
636#ifdef LC_ALL
637 if (lang) {
638 if (setlocale(LC_ALL, ""))
639 done = TRUE;
640 else
641 setlocale_failure = TRUE;
642 }
0644c9cb 643 if (!setlocale_failure) {
02b32252 644#ifdef USE_LOCALE_CTYPE
0644c9cb 645 if (! (curctype =
646 setlocale(LC_CTYPE,
647 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
02b32252 648 ? "" : Nullch)))
649 setlocale_failure = TRUE;
650#endif /* USE_LOCALE_CTYPE */
651#ifdef USE_LOCALE_COLLATE
0644c9cb 652 if (! (curcoll =
653 setlocale(LC_COLLATE,
654 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
02b32252 655 ? "" : Nullch)))
656 setlocale_failure = TRUE;
657#endif /* USE_LOCALE_COLLATE */
658#ifdef USE_LOCALE_NUMERIC
0644c9cb 659 if (! (curnum =
660 setlocale(LC_NUMERIC,
661 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
02b32252 662 ? "" : Nullch)))
663 setlocale_failure = TRUE;
664#endif /* USE_LOCALE_NUMERIC */
665 }
666
0644c9cb 667#endif /* LC_ALL */
02b32252 668
0644c9cb 669#endif /* !LOCALE_ENVIRON_REQUIRED */
5f05dabc 670
0644c9cb 671#ifdef LC_ALL
bbce6d69 672 if (! setlocale(LC_ALL, ""))
673 setlocale_failure = TRUE;
0644c9cb 674#endif /* LC_ALL */
bbce6d69 675
0644c9cb 676 if (!setlocale_failure) {
36477c24 677#ifdef USE_LOCALE_CTYPE
0644c9cb 678 if (! (curctype = setlocale(LC_CTYPE, "")))
679 setlocale_failure = TRUE;
36477c24 680#endif /* USE_LOCALE_CTYPE */
681#ifdef USE_LOCALE_COLLATE
0644c9cb 682 if (! (curcoll = setlocale(LC_COLLATE, "")))
683 setlocale_failure = TRUE;
36477c24 684#endif /* USE_LOCALE_COLLATE */
685#ifdef USE_LOCALE_NUMERIC
0644c9cb 686 if (! (curnum = setlocale(LC_NUMERIC, "")))
687 setlocale_failure = TRUE;
36477c24 688#endif /* USE_LOCALE_NUMERIC */
0644c9cb 689 }
02b32252 690
5f05dabc 691 if (setlocale_failure) {
692 char *p;
693 bool locwarn = (printwarn > 1 ||
694 printwarn &&
76e3520e 695 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
20cec16a 696
5f05dabc 697 if (locwarn) {
698#ifdef LC_ALL
699
700 PerlIO_printf(PerlIO_stderr(),
701 "perl: warning: Setting locale failed.\n");
702
703#else /* !LC_ALL */
704
ef7eada9 705 PerlIO_printf(PerlIO_stderr(),
bbce6d69 706 "perl: warning: Setting locale failed for the categories:\n\t");
36477c24 707#ifdef USE_LOCALE_CTYPE
bbce6d69 708 if (! curctype)
5f05dabc 709 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
36477c24 710#endif /* USE_LOCALE_CTYPE */
711#ifdef USE_LOCALE_COLLATE
bbce6d69 712 if (! curcoll)
5f05dabc 713 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
36477c24 714#endif /* USE_LOCALE_COLLATE */
715#ifdef USE_LOCALE_NUMERIC
bbce6d69 716 if (! curnum)
5f05dabc 717 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
36477c24 718#endif /* USE_LOCALE_NUMERIC */
bbce6d69 719 PerlIO_printf(PerlIO_stderr(), "\n");
720
5f05dabc 721#endif /* LC_ALL */
722
760ac839 723 PerlIO_printf(PerlIO_stderr(),
bbce6d69 724 "perl: warning: Please check that your locale settings:\n");
ef7eada9 725
3aeabbed 726#ifdef __GLIBC__
727 PerlIO_printf(PerlIO_stderr(),
728 "\tLANGUAGE = %c%s%c,\n",
729 language ? '"' : '(',
730 language ? language : "unset",
731 language ? '"' : ')');
732#endif
733
ef7eada9 734 PerlIO_printf(PerlIO_stderr(),
bbce6d69 735 "\tLC_ALL = %c%s%c,\n",
736 lc_all ? '"' : '(',
737 lc_all ? lc_all : "unset",
738 lc_all ? '"' : ')');
5f05dabc 739
740 {
741 char **e;
742 for (e = environ; *e; e++) {
743 if (strnEQ(*e, "LC_", 3)
744 && strnNE(*e, "LC_ALL=", 7)
745 && (p = strchr(*e, '=')))
746 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
fb73857a 747 (int)(p - *e), *e, p + 1);
5f05dabc 748 }
749 }
750
ef7eada9 751 PerlIO_printf(PerlIO_stderr(),
bbce6d69 752 "\tLANG = %c%s%c\n",
5f05dabc 753 lang ? '"' : '(',
bbce6d69 754 lang ? lang : "unset",
755 lang ? '"' : ')');
ef7eada9 756
bbce6d69 757 PerlIO_printf(PerlIO_stderr(),
758 " are supported and installed on your system.\n");
5f05dabc 759 }
ef7eada9 760
5f05dabc 761#ifdef LC_ALL
762
763 if (setlocale(LC_ALL, "C")) {
764 if (locwarn)
765 PerlIO_printf(PerlIO_stderr(),
766 "perl: warning: Falling back to the standard locale (\"C\").\n");
bbce6d69 767 ok = 0;
ef7eada9 768 }
5f05dabc 769 else {
770 if (locwarn)
771 PerlIO_printf(PerlIO_stderr(),
772 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
773 ok = -1;
774 }
bbce6d69 775
5f05dabc 776#else /* ! LC_ALL */
777
778 if (0
36477c24 779#ifdef USE_LOCALE_CTYPE
5f05dabc 780 || !(curctype || setlocale(LC_CTYPE, "C"))
36477c24 781#endif /* USE_LOCALE_CTYPE */
782#ifdef USE_LOCALE_COLLATE
5f05dabc 783 || !(curcoll || setlocale(LC_COLLATE, "C"))
36477c24 784#endif /* USE_LOCALE_COLLATE */
785#ifdef USE_LOCALE_NUMERIC
5f05dabc 786 || !(curnum || setlocale(LC_NUMERIC, "C"))
36477c24 787#endif /* USE_LOCALE_NUMERIC */
5f05dabc 788 )
789 {
790 if (locwarn)
bbce6d69 791 PerlIO_printf(PerlIO_stderr(),
5f05dabc 792 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
793 ok = -1;
bbce6d69 794 }
5f05dabc 795
bbce6d69 796#endif /* ! LC_ALL */
5f05dabc 797
798#ifdef USE_LOCALE_CTYPE
799 curctype = setlocale(LC_CTYPE, Nullch);
800#endif /* USE_LOCALE_CTYPE */
801#ifdef USE_LOCALE_COLLATE
802 curcoll = setlocale(LC_COLLATE, Nullch);
803#endif /* USE_LOCALE_COLLATE */
804#ifdef USE_LOCALE_NUMERIC
805 curnum = setlocale(LC_NUMERIC, Nullch);
806#endif /* USE_LOCALE_NUMERIC */
ef7eada9 807 }
808
36477c24 809#ifdef USE_LOCALE_CTYPE
bbce6d69 810 perl_new_ctype(curctype);
36477c24 811#endif /* USE_LOCALE_CTYPE */
bbce6d69 812
36477c24 813#ifdef USE_LOCALE_COLLATE
bbce6d69 814 perl_new_collate(curcoll);
36477c24 815#endif /* USE_LOCALE_COLLATE */
bbce6d69 816
36477c24 817#ifdef USE_LOCALE_NUMERIC
bbce6d69 818 perl_new_numeric(curnum);
36477c24 819#endif /* USE_LOCALE_NUMERIC */
ef7eada9 820
36477c24 821#endif /* USE_LOCALE */
ef7eada9 822
f0c5b223 823 return ok;
824}
825
bbce6d69 826/* Backwards compatibility. */
827int
8ac85365 828perl_init_i18nl14n(int printwarn)
bbce6d69 829{
5f05dabc 830 return perl_init_i18nl10n(printwarn);
bbce6d69 831}
ef7eada9 832
36477c24 833#ifdef USE_LOCALE_COLLATE
ef7eada9 834
bbce6d69 835/*
836 * mem_collxfrm() is a bit like strxfrm() but with two important
837 * differences. First, it handles embedded NULs. Second, it allocates
838 * a bit more memory than needed for the transformed data itself.
839 * The real transformed data begins at offset sizeof(collationix).
840 * Please see sv_collxfrm() to see how this is used.
841 */
842char *
8ac85365 843mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
bbce6d69 844{
845 char *xbuf;
76e3520e 846 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
bbce6d69 847
848 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
849 /* the +1 is for the terminating NUL. */
850
3280af22 851 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
76e3520e 852 New(171, xbuf, xAlloc, char);
bbce6d69 853 if (! xbuf)
854 goto bad;
855
3280af22 856 *(U32*)xbuf = PL_collation_ix;
857 xout = sizeof(PL_collation_ix);
bbce6d69 858 for (xin = 0; xin < len; ) {
859 SSize_t xused;
860
861 for (;;) {
76e3520e 862 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
bbce6d69 863 if (xused == -1)
864 goto bad;
76e3520e 865 if (xused < xAlloc - xout)
bbce6d69 866 break;
76e3520e 867 xAlloc = (2 * xAlloc) + 1;
868 Renew(xbuf, xAlloc, char);
bbce6d69 869 if (! xbuf)
870 goto bad;
871 }
ef7eada9 872
bbce6d69 873 xin += strlen(s + xin) + 1;
874 xout += xused;
875
876 /* Embedded NULs are understood but silently skipped
877 * because they make no sense in locale collation. */
878 }
ef7eada9 879
bbce6d69 880 xbuf[xout] = '\0';
3280af22 881 *xlen = xout - sizeof(PL_collation_ix);
bbce6d69 882 return xbuf;
883
884 bad:
885 Safefree(xbuf);
886 *xlen = 0;
887 return NULL;
ef7eada9 888}
889
36477c24 890#endif /* USE_LOCALE_COLLATE */
bbce6d69 891
cf93c79d 892#define FBM_TABLE_OFFSET 2 /* Number of bytes between EOS and table*/
893
894/* As a space optimization, we do not compile tables for strings of length
895 0 and 1, and for strings of length 2 unless FBMcf_TAIL. These are
896 special-cased in fbm_instr().
897
898 If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
899
378cc40b 900void
2779dcf1 901fbm_compile(SV *sv, U32 flags /* not used yet */)
378cc40b 902{
942e002e 903 register U8 *s;
904 register U8 *table;
79072805 905 register U32 i;
0b71040e 906 STRLEN len;
79072805 907 I32 rarest = 0;
908 U32 frequency = 256;
909
cf93c79d 910 if (flags & FBMcf_TAIL)
911 sv_catpvn(sv, "\n", 1); /* Taken into account in fbm_instr() */
942e002e 912 s = (U8*)SvPV_force(sv, len);
07f14f54 913 (void)SvUPGRADE(sv, SVt_PVBM);
cf93c79d 914 if (len == 0) /* TAIL might be on on a zero-length string. */
915 return;
02128f11 916 if (len > 2) {
cf93c79d 917 I32 mlen = len;
918 unsigned char *sb;
919
920 if (mlen > 255)
921 mlen = 255;
922 Sv_Grow(sv,len + 256 + FBM_TABLE_OFFSET);
923 table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
924 s = table - 1 - FBM_TABLE_OFFSET; /* Last char */
02128f11 925 for (i = 0; i < 256; i++) {
cf93c79d 926 table[i] = mlen;
02128f11 927 }
cf93c79d 928 table[-1] = flags; /* Not used yet */
02128f11 929 i = 0;
cf93c79d 930 sb = s - mlen;
931 while (s >= sb) {
932 if (table[*s] == mlen)
933 table[*s] = i;
934 s--, i++;
935 }
378cc40b 936 }
bbce6d69 937 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
79072805 938 SvVALID_on(sv);
378cc40b 939
463ee0b2 940 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
bbce6d69 941 for (i = 0; i < len; i++) {
22c35a8c 942 if (PL_freq[s[i]] < frequency) {
bbce6d69 943 rarest = i;
22c35a8c 944 frequency = PL_freq[s[i]];
378cc40b 945 }
946 }
79072805 947 BmRARE(sv) = s[rarest];
948 BmPREVIOUS(sv) = rarest;
cf93c79d 949 BmUSEFUL(sv) = 100; /* Initial value */
950 if (flags & FBMcf_TAIL)
951 SvTAIL_on(sv);
760ac839 952 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
378cc40b 953}
954
cf93c79d 955/* If SvTAIL(littlestr), it has a fake '\n' at end. */
956/* If SvTAIL is actually due to \Z or \z, this gives false positives
957 if multiline */
958
378cc40b 959char *
411d5715 960fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
378cc40b 961{
a687059c 962 register unsigned char *s;
cf93c79d 963 STRLEN l;
964 register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
965 register STRLEN littlelen = l;
966 register I32 multiline = flags & FBMrf_MULTILINE;
967
968 if (bigend - big < littlelen) {
969 check_tail:
970 if ( SvTAIL(littlestr)
971 && (bigend - big == littlelen - 1)
972 && (littlelen == 1
973 || *big == *little && memEQ(big, little, littlelen - 1)))
974 return (char*)big;
975 return Nullch;
976 }
378cc40b 977
cf93c79d 978 if (littlelen <= 2) { /* Special-cased */
979 register char c;
980
981 if (littlelen == 1) {
982 if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
983 /* Know that bigend != big. */
984 if (bigend[-1] == '\n')
985 return (char *)(bigend - 1);
986 return (char *) bigend;
987 }
988 s = big;
989 while (s < bigend) {
990 if (*s == *little)
991 return (char *)s;
992 s++;
993 }
994 if (SvTAIL(littlestr))
995 return (char *) bigend;
996 return Nullch;
997 }
998 if (!littlelen)
999 return (char*)big; /* Cannot be SvTAIL! */
1000
1001 /* littlelen is 2 */
1002 if (SvTAIL(littlestr) && !multiline) {
1003 if (bigend[-1] == '\n' && bigend[-2] == *little)
1004 return (char*)bigend - 2;
1005 if (bigend[-1] == *little)
1006 return (char*)bigend - 1;
1007 return Nullch;
1008 }
1009 {
1010 /* This should be better than FBM if c1 == c2, and almost
1011 as good otherwise: maybe better since we do less indirection.
1012 And we save a lot of memory by caching no table. */
1013 register unsigned char c1 = little[0];
1014 register unsigned char c2 = little[1];
1015
1016 s = big + 1;
1017 bigend--;
1018 if (c1 != c2) {
1019 while (s <= bigend) {
1020 if (s[0] == c2) {
1021 if (s[-1] == c1)
1022 return (char*)s - 1;
1023 s += 2;
1024 continue;
3fe6f2dc 1025 }
cf93c79d 1026 next_chars:
1027 if (s[0] == c1) {
1028 if (s == bigend)
1029 goto check_1char_anchor;
1030 if (s[1] == c2)
1031 return (char*)s;
1032 else {
1033 s++;
1034 goto next_chars;
1035 }
1036 }
1037 else
1038 s += 2;
1039 }
1040 goto check_1char_anchor;
1041 }
1042 /* Now c1 == c2 */
1043 while (s <= bigend) {
1044 if (s[0] == c1) {
1045 if (s[-1] == c1)
1046 return (char*)s - 1;
1047 if (s == bigend)
1048 goto check_1char_anchor;
1049 if (s[1] == c1)
1050 return (char*)s;
1051 s += 3;
02128f11 1052 }
c277df42 1053 else
cf93c79d 1054 s += 2;
c277df42 1055 }
c277df42 1056 }
cf93c79d 1057 check_1char_anchor: /* One char and anchor! */
1058 if (SvTAIL(littlestr) && (*bigend == *little))
1059 return (char *)bigend; /* bigend is already decremented. */
1060 return Nullch;
d48672a2 1061 }
cf93c79d 1062 if (SvTAIL(littlestr) && !multiline) { /* tail anchored? */
bbce6d69 1063 s = bigend - littlelen;
cf93c79d 1064 if (s >= big
02128f11 1065 && bigend[-1] == '\n'
cf93c79d 1066 && *s == *little
1067 /* Automatically of length > 2 */
1068 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
bbce6d69 1069 return (char*)s; /* how sweet it is */
cf93c79d 1070 if (s[1] == *little && memEQ((char*)s + 2,(char*)little + 1,
1071 littlelen - 2))
1072 return (char*)s + 1; /* how sweet it is */
02128f11 1073 return Nullch;
1074 }
cf93c79d 1075 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
1076 char *b = ninstr((char*)big,(char*)bigend,
1077 (char*)little, (char*)little + littlelen);
1078
1079 if (!b && SvTAIL(littlestr)) { /* Automatically multiline! */
1080 /* Chop \n from littlestr: */
1081 s = bigend - littlelen + 1;
1082 if (*s == *little && memEQ((char*)s + 1, (char*)little + 1,
1083 littlelen - 2))
3fe6f2dc 1084 return (char*)s;
cf93c79d 1085 return Nullch;
a687059c 1086 }
cf93c79d 1087 return b;
a687059c 1088 }
cf93c79d 1089
1090 { /* Do actual FBM. */
1091 register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
1092 register unsigned char *oldlittle;
1093
1094 if (littlelen > bigend - big)
1095 return Nullch;
1096 --littlelen; /* Last char found by table lookup */
1097
1098 s = big + littlelen;
1099 little += littlelen; /* last char */
1100 oldlittle = little;
1101 if (s < bigend) {
1102 register I32 tmp;
1103
1104 top2:
1105 /*SUPPRESS 560*/
1106 if (tmp = table[*s]) {
62b28dd9 1107#ifdef POINTERRIGOR
cf93c79d 1108 if (bigend - s > tmp) {
1109 s += tmp;
1110 goto top2;
1111 }
bbce6d69 1112 s += tmp;
62b28dd9 1113#else
cf93c79d 1114 if ((s += tmp) < bigend)
62b28dd9 1115 goto top2;
cf93c79d 1116#endif
1117 goto check_end;
1118 }
1119 else { /* less expensive than calling strncmp() */
1120 register unsigned char *olds = s;
1121
1122 tmp = littlelen;
1123
1124 while (tmp--) {
1125 if (*--s == *--little)
1126 continue;
1127 differ:
1128 s = olds + 1; /* here we pay the price for failure */
1129 little = oldlittle;
1130 if (s < bigend) /* fake up continue to outer loop */
1131 goto top2;
1132 goto check_end;
1133 }
1134 return (char *)s;
a687059c 1135 }
378cc40b 1136 }
cf93c79d 1137 check_end:
1138 if ( s == bigend && (table[-1] & FBMcf_TAIL)
1139 && memEQ(bigend - littlelen, oldlittle - littlelen, littlelen) )
1140 return (char*)bigend - littlelen;
1141 return Nullch;
378cc40b 1142 }
378cc40b 1143}
1144
c277df42 1145/* start_shift, end_shift are positive quantities which give offsets
1146 of ends of some substring of bigstr.
1147 If `last' we want the last occurence.
1148 old_posp is the way of communication between consequent calls if
1149 the next call needs to find the .
1150 The initial *old_posp should be -1.
cf93c79d 1151
1152 Note that we take into account SvTAIL, so one can get extra
1153 optimizations if _ALL flag is set.
c277df42 1154 */
1155
cf93c79d 1156/* If SvTAIL is actually due to \Z or \z, this gives false positives
1157 if PL_multiline. In fact if !PL_multiline the autoritative answer
1158 is not supported yet. */
1159
378cc40b 1160char *
c277df42 1161screaminstr(SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
378cc40b 1162{
5c0ca799 1163 dTHR;
a687059c 1164 register unsigned char *s, *x;
1165 register unsigned char *big;
79072805 1166 register I32 pos;
1167 register I32 previous;
1168 register I32 first;
a687059c 1169 register unsigned char *little;
c277df42 1170 register I32 stop_pos;
a687059c 1171 register unsigned char *littleend;
c277df42 1172 I32 found = 0;
378cc40b 1173
c277df42 1174 if (*old_posp == -1
3280af22 1175 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
cf93c79d 1176 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
1177 cant_find:
1178 if ( BmRARE(littlestr) == '\n'
1179 && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
1180 little = (unsigned char *)(SvPVX(littlestr));
1181 littleend = little + SvCUR(littlestr);
1182 first = *little++;
1183 goto check_tail;
1184 }
378cc40b 1185 return Nullch;
cf93c79d 1186 }
1187
463ee0b2 1188 little = (unsigned char *)(SvPVX(littlestr));
79072805 1189 littleend = little + SvCUR(littlestr);
378cc40b 1190 first = *little++;
c277df42 1191 /* The value of pos we can start at: */
79072805 1192 previous = BmPREVIOUS(littlestr);
463ee0b2 1193 big = (unsigned char *)(SvPVX(bigstr));
c277df42 1194 /* The value of pos we can stop at: */
1195 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
cf93c79d 1196 if (previous + start_shift > stop_pos) {
1197 if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
1198 goto check_tail;
1199 return Nullch;
1200 }
c277df42 1201 while (pos < previous + start_shift) {
3280af22 1202 if (!(pos += PL_screamnext[pos]))
cf93c79d 1203 goto cant_find;
378cc40b 1204 }
de3bb511 1205#ifdef POINTERRIGOR
bbce6d69 1206 do {
ef64f398 1207 if (pos >= stop_pos) break;
bbce6d69 1208 if (big[pos-previous] != first)
1209 continue;
1210 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
bbce6d69 1211 if (*s++ != *x++) {
1212 s--;
1213 break;
de3bb511 1214 }
bbce6d69 1215 }
c277df42 1216 if (s == littleend) {
1217 *old_posp = pos;
1218 if (!last) return (char *)(big+pos-previous);
1219 found = 1;
1220 }
6b88bc9c 1221 } while ( pos += PL_screamnext[pos] );
c277df42 1222 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
de3bb511 1223#else /* !POINTERRIGOR */
1224 big -= previous;
bbce6d69 1225 do {
ef64f398 1226 if (pos >= stop_pos) break;
bbce6d69 1227 if (big[pos] != first)
1228 continue;
1229 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
bbce6d69 1230 if (*s++ != *x++) {
1231 s--;
1232 break;
378cc40b 1233 }
bbce6d69 1234 }
c277df42 1235 if (s == littleend) {
1236 *old_posp = pos;
1237 if (!last) return (char *)(big+pos);
1238 found = 1;
1239 }
3280af22 1240 } while ( pos += PL_screamnext[pos] );
cf93c79d 1241 if (last && found)
1242 return (char *)(big+(*old_posp));
de3bb511 1243#endif /* POINTERRIGOR */
cf93c79d 1244 check_tail:
1245 if (!SvTAIL(littlestr) || (end_shift > 0))
1246 return Nullch;
1247 /* Ignore the trailing "\n". This code is not microoptimized */
1248 big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
1249 stop_pos = littleend - little; /* Actual littlestr len */
1250 if (stop_pos == 0)
1251 return (char*)big;
1252 big -= stop_pos;
1253 if (*big == first
1254 && ((stop_pos == 1) || memEQ(big + 1, little, stop_pos - 1)))
1255 return (char*)big;
1256 return Nullch;
8d063cd8 1257}
1258
79072805 1259I32
08105a92 1260ibcmp(const char *s1, const char *s2, register I32 len)
79072805 1261{
bbce6d69 1262 register U8 *a = (U8 *)s1;
1263 register U8 *b = (U8 *)s2;
79072805 1264 while (len--) {
22c35a8c 1265 if (*a != *b && *a != PL_fold[*b])
bbce6d69 1266 return 1;
1267 a++,b++;
1268 }
1269 return 0;
1270}
1271
1272I32
08105a92 1273ibcmp_locale(const char *s1, const char *s2, register I32 len)
bbce6d69 1274{
1275 register U8 *a = (U8 *)s1;
1276 register U8 *b = (U8 *)s2;
1277 while (len--) {
22c35a8c 1278 if (*a != *b && *a != PL_fold_locale[*b])
bbce6d69 1279 return 1;
1280 a++,b++;
79072805 1281 }
1282 return 0;
1283}
1284
8d063cd8 1285/* copy a string to a safe spot */
1286
1287char *
08105a92 1288savepv(const char *sv)
8d063cd8 1289{
a687059c 1290 register char *newaddr;
8d063cd8 1291
79072805 1292 New(902,newaddr,strlen(sv)+1,char);
1293 (void)strcpy(newaddr,sv);
8d063cd8 1294 return newaddr;
1295}
1296
a687059c 1297/* same thing but with a known length */
1298
1299char *
08105a92 1300savepvn(const char *sv, register I32 len)
a687059c 1301{
1302 register char *newaddr;
1303
1304 New(903,newaddr,len+1,char);
79072805 1305 Copy(sv,newaddr,len,char); /* might not be null terminated */
a687059c 1306 newaddr[len] = '\0'; /* is now */
1307 return newaddr;
1308}
1309
fc36a67e 1310/* the SV for form() and mess() is not kept in an arena */
1311
76e3520e 1312STATIC SV *
8ac85365 1313mess_alloc(void)
fc36a67e 1314{
e72dc28c 1315 dTHR;
fc36a67e 1316 SV *sv;
1317 XPVMG *any;
1318
e72dc28c 1319 if (!PL_dirty)
1320 return sv_2mortal(newSVpvn("",0));
1321
0372dbb6 1322 if (PL_mess_sv)
1323 return PL_mess_sv;
1324
fc36a67e 1325 /* Create as PVMG now, to avoid any upgrading later */
1326 New(905, sv, 1, SV);
1327 Newz(905, any, 1, XPVMG);
1328 SvFLAGS(sv) = SVt_PVMG;
1329 SvANY(sv) = (void*)any;
1330 SvREFCNT(sv) = 1 << 30; /* practically infinite */
e72dc28c 1331 PL_mess_sv = sv;
fc36a67e 1332 return sv;
1333}
1334
8990e307 1335char *
46fc3d4c 1336form(const char* pat, ...)
8990e307 1337{
e72dc28c 1338 SV *sv = mess_alloc();
46fc3d4c 1339 va_list args;
46fc3d4c 1340 va_start(args, pat);
e72dc28c 1341 sv_vsetpvfn(sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
46fc3d4c 1342 va_end(args);
e72dc28c 1343 return SvPVX(sv);
46fc3d4c 1344}
a687059c 1345
06bf62c7 1346SV *
8ac85365 1347mess(const char *pat, va_list *args)
46fc3d4c 1348{
e72dc28c 1349 SV *sv = mess_alloc();
46fc3d4c 1350 static char dgd[] = " during global destruction.\n";
1351
fc36a67e 1352 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
46fc3d4c 1353 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
e858de61 1354 dTHR;
515f54a1 1355 if (PL_curcop->cop_line)
1356 sv_catpvf(sv, " at %_ line %ld",
1357 GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1358 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1359 bool line_mode = (RsSIMPLE(PL_rs) &&
7c1e0849 1360 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
515f54a1 1361 sv_catpvf(sv, ", <%s> %s %ld",
1362 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1363 line_mode ? "line" : "chunk",
1364 (long)IoLINES(GvIOp(PL_last_in_gv)));
a687059c 1365 }
515f54a1 1366 sv_catpv(sv, PL_dirty ? dgd : ".\n");
a687059c 1367 }
06bf62c7 1368 return sv;
a687059c 1369}
1370
36477c24 1371OP *
71be2cbc 1372die(const char* pat, ...)
36477c24 1373{
5dc0d613 1374 dTHR;
36477c24 1375 va_list args;
1376 char *message;
3280af22 1377 int was_in_eval = PL_in_eval;
36477c24 1378 HV *stash;
1379 GV *gv;
1380 CV *cv;
06bf62c7 1381 SV *msv;
1382 STRLEN msglen;
36477c24 1383
8b73bbec 1384 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
199100c8 1385 "%p: die: curstack = %p, mainstack = %p\n",
533c011a 1386 thr, PL_curstack, PL_mainstack));
36477c24 1387
36477c24 1388 va_start(args, pat);
06bf62c7 1389 if (pat) {
1390 msv = mess(pat, &args);
1391 message = SvPV(msv,msglen);
1392 }
1393 else {
1394 message = Nullch;
1395 }
36477c24 1396 va_end(args);
1397
8b73bbec 1398 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
199100c8 1399 "%p: die: message = %s\ndiehook = %p\n",
533c011a 1400 thr, message, PL_diehook));
3280af22 1401 if (PL_diehook) {
1738f5c4 1402 /* sv_2cv might call croak() */
3280af22 1403 SV *olddiehook = PL_diehook;
1738f5c4 1404 ENTER;
3280af22 1405 SAVESPTR(PL_diehook);
1406 PL_diehook = Nullsv;
1738f5c4 1407 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1408 LEAVE;
1409 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1410 dSP;
774d564b 1411 SV *msg;
1412
1413 ENTER;
79cb57f6 1414 if (message) {
06bf62c7 1415 msg = newSVpvn(message, msglen);
4e6ea2c3 1416 SvREADONLY_on(msg);
1417 SAVEFREESV(msg);
1418 }
1419 else {
1420 msg = ERRSV;
1421 }
1738f5c4 1422
e788e7d3 1423 PUSHSTACKi(PERLSI_DIEHOOK);
924508f0 1424 PUSHMARK(SP);
1738f5c4 1425 XPUSHs(msg);
1426 PUTBACK;
1427 perl_call_sv((SV*)cv, G_DISCARD);
d3acc0f7 1428 POPSTACK;
774d564b 1429 LEAVE;
1738f5c4 1430 }
36477c24 1431 }
1432
06bf62c7 1433 PL_restartop = die_where(message, msglen);
8b73bbec 1434 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
7c06b590 1435 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
533c011a 1436 thr, PL_restartop, was_in_eval, PL_top_env));
3280af22 1437 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
6224f72b 1438 JMPENV_JUMP(3);
3280af22 1439 return PL_restartop;
36477c24 1440}
1441
79072805 1442void
71be2cbc 1443croak(const char* pat, ...)
a687059c 1444{
11343788 1445 dTHR;
a687059c 1446 va_list args;
de3bb511 1447 char *message;
748a9306 1448 HV *stash;
1449 GV *gv;
1450 CV *cv;
06bf62c7 1451 SV *msv;
1452 STRLEN msglen;
a687059c 1453
8990e307 1454 va_start(args, pat);
06bf62c7 1455 msv = mess(pat, &args);
1456 message = SvPV(msv,msglen);
a687059c 1457 va_end(args);
8b73bbec 1458 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
3280af22 1459 if (PL_diehook) {
1738f5c4 1460 /* sv_2cv might call croak() */
3280af22 1461 SV *olddiehook = PL_diehook;
1738f5c4 1462 ENTER;
3280af22 1463 SAVESPTR(PL_diehook);
1464 PL_diehook = Nullsv;
20cec16a 1465 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1738f5c4 1466 LEAVE;
1467 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
20cec16a 1468 dSP;
774d564b 1469 SV *msg;
1470
1471 ENTER;
06bf62c7 1472 msg = newSVpvn(message, msglen);
774d564b 1473 SvREADONLY_on(msg);
1474 SAVEFREESV(msg);
20cec16a 1475
e788e7d3 1476 PUSHSTACKi(PERLSI_DIEHOOK);
924508f0 1477 PUSHMARK(SP);
1738f5c4 1478 XPUSHs(msg);
20cec16a 1479 PUTBACK;
1480 perl_call_sv((SV*)cv, G_DISCARD);
d3acc0f7 1481 POPSTACK;
774d564b 1482 LEAVE;
20cec16a 1483 }
748a9306 1484 }
3280af22 1485 if (PL_in_eval) {
06bf62c7 1486 PL_restartop = die_where(message, msglen);
6224f72b 1487 JMPENV_JUMP(3);
a0d0e21e 1488 }
d175a3f0 1489 {
1490#ifdef USE_SFIO
1491 /* SFIO can really mess with your errno */
1492 int e = errno;
1493#endif
06bf62c7 1494 PerlIO_write(PerlIO_stderr(), message, msglen);
d175a3f0 1495 (void)PerlIO_flush(PerlIO_stderr());
1496#ifdef USE_SFIO
1497 errno = e;
1498#endif
1499 }
f86702cc 1500 my_failure_exit();
a687059c 1501}
1502
8990e307 1503void
71be2cbc 1504warn(const char* pat,...)
a687059c 1505{
1506 va_list args;
de3bb511 1507 char *message;
748a9306 1508 HV *stash;
1509 GV *gv;
1510 CV *cv;
06bf62c7 1511 SV *msv;
1512 STRLEN msglen;
a687059c 1513
8990e307 1514 va_start(args, pat);
06bf62c7 1515 msv = mess(pat, &args);
1516 message = SvPV(msv, msglen);
a687059c 1517 va_end(args);
1518
3280af22 1519 if (PL_warnhook) {
1738f5c4 1520 /* sv_2cv might call warn() */
11343788 1521 dTHR;
3280af22 1522 SV *oldwarnhook = PL_warnhook;
1738f5c4 1523 ENTER;
3280af22 1524 SAVESPTR(PL_warnhook);
1525 PL_warnhook = Nullsv;
20cec16a 1526 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1738f5c4 1527 LEAVE;
1528 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
20cec16a 1529 dSP;
774d564b 1530 SV *msg;
1531
1532 ENTER;
06bf62c7 1533 msg = newSVpvn(message, msglen);
774d564b 1534 SvREADONLY_on(msg);
1535 SAVEFREESV(msg);
1536
e788e7d3 1537 PUSHSTACKi(PERLSI_WARNHOOK);
924508f0 1538 PUSHMARK(SP);
774d564b 1539 XPUSHs(msg);
20cec16a 1540 PUTBACK;
1541 perl_call_sv((SV*)cv, G_DISCARD);
d3acc0f7 1542 POPSTACK;
774d564b 1543 LEAVE;
20cec16a 1544 return;
1545 }
748a9306 1546 }
06bf62c7 1547 PerlIO_write(PerlIO_stderr(), message, msglen);
a687059c 1548#ifdef LEAKTEST
8c52afec 1549 DEBUG_L(*message == '!'
1550 ? (xstat(message[1]=='!'
1551 ? (message[2]=='!' ? 2 : 1)
1552 : 0)
1553 , 0)
1554 : 0);
a687059c 1555#endif
20cec16a 1556 (void)PerlIO_flush(PerlIO_stderr());
a687059c 1557}
8d063cd8 1558
599cee73 1559void
1560warner(U32 err, const char* pat,...)
1561{
d008e5eb 1562 dTHR;
599cee73 1563 va_list args;
1564 char *message;
1565 HV *stash;
1566 GV *gv;
1567 CV *cv;
06bf62c7 1568 SV *msv;
1569 STRLEN msglen;
599cee73 1570
1571 va_start(args, pat);
06bf62c7 1572 msv = mess(pat, &args);
1573 message = SvPV(msv, msglen);
599cee73 1574 va_end(args);
1575
1576 if (ckDEAD(err)) {
1577#ifdef USE_THREADS
d008e5eb 1578 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
599cee73 1579#endif /* USE_THREADS */
1580 if (PL_diehook) {
1581 /* sv_2cv might call croak() */
1582 SV *olddiehook = PL_diehook;
1583 ENTER;
1584 SAVESPTR(PL_diehook);
1585 PL_diehook = Nullsv;
1586 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1587 LEAVE;
1588 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1589 dSP;
1590 SV *msg;
1591
1592 ENTER;
06bf62c7 1593 msg = newSVpvn(message, msglen);
599cee73 1594 SvREADONLY_on(msg);
1595 SAVEFREESV(msg);
1596
1597 PUSHMARK(sp);
1598 XPUSHs(msg);
1599 PUTBACK;
1600 perl_call_sv((SV*)cv, G_DISCARD);
1601
1602 LEAVE;
1603 }
1604 }
1605 if (PL_in_eval) {
06bf62c7 1606 PL_restartop = die_where(message, msglen);
599cee73 1607 JMPENV_JUMP(3);
1608 }
06bf62c7 1609 PerlIO_write(PerlIO_stderr(), message, msglen);
599cee73 1610 (void)PerlIO_flush(PerlIO_stderr());
1611 my_failure_exit();
1612
1613 }
1614 else {
1615 if (PL_warnhook) {
1616 /* sv_2cv might call warn() */
1617 dTHR;
1618 SV *oldwarnhook = PL_warnhook;
1619 ENTER;
1620 SAVESPTR(PL_warnhook);
1621 PL_warnhook = Nullsv;
1622 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1623 LEAVE;
1624 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1625 dSP;
1626 SV *msg;
1627
1628 ENTER;
06bf62c7 1629 msg = newSVpvn(message, msglen);
599cee73 1630 SvREADONLY_on(msg);
1631 SAVEFREESV(msg);
1632
1633 PUSHMARK(sp);
1634 XPUSHs(msg);
1635 PUTBACK;
1636 perl_call_sv((SV*)cv, G_DISCARD);
1637
1638 LEAVE;
1639 return;
1640 }
1641 }
06bf62c7 1642 PerlIO_write(PerlIO_stderr(), message, msglen);
599cee73 1643#ifdef LEAKTEST
1644 DEBUG_L(xstat());
1645#endif
1646 (void)PerlIO_flush(PerlIO_stderr());
1647 }
1648}
1649
a0d0e21e 1650#ifndef VMS /* VMS' my_setenv() is in VMS.c */
f89d6eaa 1651#if !defined(WIN32) && !defined(CYGWIN32)
8d063cd8 1652void
8ac85365 1653my_setenv(char *nam, char *val)
8d063cd8 1654{
f2517201 1655#ifndef PERL_USE_SAFE_PUTENV
1656 /* most putenv()s leak, so we manipulate environ directly */
79072805 1657 register I32 i=setenv_getix(nam); /* where does it go? */
8d063cd8 1658
3280af22 1659 if (environ == PL_origenviron) { /* need we copy environment? */
79072805 1660 I32 j;
1661 I32 max;
fe14fcc3 1662 char **tmpenv;
1663
de3bb511 1664 /*SUPPRESS 530*/
fe14fcc3 1665 for (max = i; environ[max]; max++) ;
f2517201 1666 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1667 for (j=0; j<max; j++) { /* copy environment */
1668 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1669 strcpy(tmpenv[j], environ[j]);
1670 }
fe14fcc3 1671 tmpenv[max] = Nullch;
1672 environ = tmpenv; /* tell exec where it is now */
1673 }
a687059c 1674 if (!val) {
f2517201 1675 safesysfree(environ[i]);
a687059c 1676 while (environ[i]) {
1677 environ[i] = environ[i+1];
1678 i++;
1679 }
1680 return;
1681 }
8d063cd8 1682 if (!environ[i]) { /* does not exist yet */
f2517201 1683 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
8d063cd8 1684 environ[i+1] = Nullch; /* make sure it's null terminated */
1685 }
fe14fcc3 1686 else
f2517201 1687 safesysfree(environ[i]);
1688 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1689
62b28dd9 1690#ifndef MSDOS
a687059c 1691 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
62b28dd9 1692#else
1693 /* MS-DOS requires environment variable names to be in uppercase */
fe14fcc3 1694 /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1695 * some utilities and applications may break because they only look
1696 * for upper case strings. (Fixed strupr() bug here.)]
1697 */
1698 strcpy(environ[i],nam); strupr(environ[i]);
62b28dd9 1699 (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1700#endif /* MSDOS */
f2517201 1701
1702#else /* PERL_USE_SAFE_PUTENV */
1703 char *new_env;
1704
1705 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1706#ifndef MSDOS
1707 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1708#else
1709 strcpy(new_env,nam); strupr(new_env);
1710 (void)sprintf(new_env + strlen(nam),"=%s",val);
1711#endif
1712 (void)putenv(new_env);
1713#endif /* PERL_USE_SAFE_PUTENV */
8d063cd8 1714}
1715
3e3baf6d 1716#else /* if WIN32 */
68dc0745 1717
1718void
4e35701f 1719my_setenv(char *nam,char *val)
68dc0745 1720{
3e3baf6d 1721
1722#ifdef USE_WIN32_RTL_ENV
1723
68dc0745 1724 register char *envstr;
1725 STRLEN namlen = strlen(nam);
3e3baf6d 1726 STRLEN vallen;
1727 char *oldstr = environ[setenv_getix(nam)];
1728
1729 /* putenv() has totally broken semantics in both the Borland
1730 * and Microsoft CRTLs. They either store the passed pointer in
1731 * the environment without making a copy, or make a copy and don't
1732 * free it. And on top of that, they dont free() old entries that
1733 * are being replaced/deleted. This means the caller must
1734 * free any old entries somehow, or we end up with a memory
1735 * leak every time my_setenv() is called. One might think
1736 * one could directly manipulate environ[], like the UNIX code
1737 * above, but direct changes to environ are not allowed when
1738 * calling putenv(), since the RTLs maintain an internal
1739 * *copy* of environ[]. Bad, bad, *bad* stink.
1740 * GSAR 97-06-07
1741 */
68dc0745 1742
3e3baf6d 1743 if (!val) {
1744 if (!oldstr)
1745 return;
1746 val = "";
1747 vallen = 0;
1748 }
1749 else
1750 vallen = strlen(val);
f2517201 1751 envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
68dc0745 1752 (void)sprintf(envstr,"%s=%s",nam,val);
76e3520e 1753 (void)PerlEnv_putenv(envstr);
3e3baf6d 1754 if (oldstr)
f2517201 1755 safesysfree(oldstr);
3e3baf6d 1756#ifdef _MSC_VER
f2517201 1757 safesysfree(envstr); /* MSVCRT leaks without this */
3e3baf6d 1758#endif
1759
1760#else /* !USE_WIN32_RTL_ENV */
1761
ac5c734f 1762 register char *envstr;
1763 STRLEN len = strlen(nam) + 3;
1764 if (!val) {
1765 val = "";
1766 }
1767 len += strlen(val);
1768 New(904, envstr, len, char);
1769 (void)sprintf(envstr,"%s=%s",nam,val);
1770 (void)PerlEnv_putenv(envstr);
1771 Safefree(envstr);
3e3baf6d 1772
1773#endif
1774}
1775
1776#endif /* WIN32 */
1777
1778I32
8ac85365 1779setenv_getix(char *nam)
3e3baf6d 1780{
1781 register I32 i, len = strlen(nam);
1782
1783 for (i = 0; environ[i]; i++) {
1784 if (
1785#ifdef WIN32
1786 strnicmp(environ[i],nam,len) == 0
1787#else
1788 strnEQ(environ[i],nam,len)
1789#endif
1790 && environ[i][len] == '=')
1791 break; /* strnEQ must come first to avoid */
1792 } /* potential SEGV's */
1793 return i;
68dc0745 1794}
1795
a0d0e21e 1796#endif /* !VMS */
378cc40b 1797
16d20bd9 1798#ifdef UNLINK_ALL_VERSIONS
79072805 1799I32
378cc40b 1800unlnk(f) /* unlink all versions of a file */
1801char *f;
1802{
79072805 1803 I32 i;
378cc40b 1804
6ad3d225 1805 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
378cc40b 1806 return i ? 0 : -1;
1807}
1808#endif
1809
85e6fe83 1810#if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
378cc40b 1811char *
08105a92 1812my_bcopy(register const char *from,register char *to,register I32 len)
378cc40b 1813{
1814 char *retval = to;
1815
7c0587c8 1816 if (from - to >= 0) {
1817 while (len--)
1818 *to++ = *from++;
1819 }
1820 else {
1821 to += len;
1822 from += len;
1823 while (len--)
faf8582f 1824 *(--to) = *(--from);
7c0587c8 1825 }
378cc40b 1826 return retval;
1827}
ffed7fef 1828#endif
378cc40b 1829
fc36a67e 1830#ifndef HAS_MEMSET
1831void *
08105a92 1832my_memset(register char *loc, register I32 ch, register I32 len)
fc36a67e 1833{
1834 char *retval = loc;
1835
1836 while (len--)
1837 *loc++ = ch;
1838 return retval;
1839}
1840#endif
1841
7c0587c8 1842#if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
378cc40b 1843char *
08105a92 1844my_bzero(register char *loc, register I32 len)
378cc40b 1845{
1846 char *retval = loc;
1847
1848 while (len--)
1849 *loc++ = 0;
1850 return retval;
1851}
1852#endif
7c0587c8 1853
36477c24 1854#if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
79072805 1855I32
08105a92 1856my_memcmp(const char *s1, const char *s2, register I32 len)
7c0587c8 1857{
36477c24 1858 register U8 *a = (U8 *)s1;
1859 register U8 *b = (U8 *)s2;
79072805 1860 register I32 tmp;
7c0587c8 1861
1862 while (len--) {
36477c24 1863 if (tmp = *a++ - *b++)
7c0587c8 1864 return tmp;
1865 }
1866 return 0;
1867}
36477c24 1868#endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
a687059c 1869
fe14fcc3 1870#ifndef HAS_VPRINTF
a687059c 1871
85e6fe83 1872#ifdef USE_CHAR_VSPRINTF
a687059c 1873char *
1874#else
1875int
1876#endif
08105a92 1877vsprintf(char *dest, const char *pat, char *args)
a687059c 1878{
1879 FILE fakebuf;
1880
1881 fakebuf._ptr = dest;
1882 fakebuf._cnt = 32767;
35c8bce7 1883#ifndef _IOSTRG
1884#define _IOSTRG 0
1885#endif
a687059c 1886 fakebuf._flag = _IOWRT|_IOSTRG;
1887 _doprnt(pat, args, &fakebuf); /* what a kludge */
1888 (void)putc('\0', &fakebuf);
85e6fe83 1889#ifdef USE_CHAR_VSPRINTF
a687059c 1890 return(dest);
1891#else
1892 return 0; /* perl doesn't use return value */
1893#endif
1894}
1895
fe14fcc3 1896#endif /* HAS_VPRINTF */
a687059c 1897
1898#ifdef MYSWAP
ffed7fef 1899#if BYTEORDER != 0x4321
a687059c 1900short
748a9306 1901my_swap(short s)
a687059c 1902{
1903#if (BYTEORDER & 1) == 0
1904 short result;
1905
1906 result = ((s & 255) << 8) + ((s >> 8) & 255);
1907 return result;
1908#else
1909 return s;
1910#endif
1911}
1912
1913long
748a9306 1914my_htonl(long l)
a687059c 1915{
1916 union {
1917 long result;
ffed7fef 1918 char c[sizeof(long)];
a687059c 1919 } u;
1920
ffed7fef 1921#if BYTEORDER == 0x1234
a687059c 1922 u.c[0] = (l >> 24) & 255;
1923 u.c[1] = (l >> 16) & 255;
1924 u.c[2] = (l >> 8) & 255;
1925 u.c[3] = l & 255;
1926 return u.result;
1927#else
ffed7fef 1928#if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
463ee0b2 1929 croak("Unknown BYTEORDER\n");
a687059c 1930#else
79072805 1931 register I32 o;
1932 register I32 s;
a687059c 1933
ffed7fef 1934 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1935 u.c[o & 0xf] = (l >> s) & 255;
a687059c 1936 }
1937 return u.result;
1938#endif
1939#endif
1940}
1941
1942long
748a9306 1943my_ntohl(long l)
a687059c 1944{
1945 union {
1946 long l;
ffed7fef 1947 char c[sizeof(long)];
a687059c 1948 } u;
1949
ffed7fef 1950#if BYTEORDER == 0x1234
a687059c 1951 u.c[0] = (l >> 24) & 255;
1952 u.c[1] = (l >> 16) & 255;
1953 u.c[2] = (l >> 8) & 255;
1954 u.c[3] = l & 255;
1955 return u.l;
1956#else
ffed7fef 1957#if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
463ee0b2 1958 croak("Unknown BYTEORDER\n");
a687059c 1959#else
79072805 1960 register I32 o;
1961 register I32 s;
a687059c 1962
1963 u.l = l;
1964 l = 0;
ffed7fef 1965 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1966 l |= (u.c[o & 0xf] & 255) << s;
a687059c 1967 }
1968 return l;
1969#endif
1970#endif
1971}
1972
ffed7fef 1973#endif /* BYTEORDER != 0x4321 */
988174c1 1974#endif /* MYSWAP */
1975
1976/*
1977 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1978 * If these functions are defined,
1979 * the BYTEORDER is neither 0x1234 nor 0x4321.
1980 * However, this is not assumed.
1981 * -DWS
1982 */
1983
1984#define HTOV(name,type) \
1985 type \
1986 name (n) \
1987 register type n; \
1988 { \
1989 union { \
1990 type value; \
1991 char c[sizeof(type)]; \
1992 } u; \
79072805 1993 register I32 i; \
1994 register I32 s; \
988174c1 1995 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1996 u.c[i] = (n >> s) & 0xFF; \
1997 } \
1998 return u.value; \
1999 }
2000
2001#define VTOH(name,type) \
2002 type \
2003 name (n) \
2004 register type n; \
2005 { \
2006 union { \
2007 type value; \
2008 char c[sizeof(type)]; \
2009 } u; \
79072805 2010 register I32 i; \
2011 register I32 s; \
988174c1 2012 u.value = n; \
2013 n = 0; \
2014 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
2015 n += (u.c[i] & 0xFF) << s; \
2016 } \
2017 return n; \
2018 }
2019
2020#if defined(HAS_HTOVS) && !defined(htovs)
2021HTOV(htovs,short)
2022#endif
2023#if defined(HAS_HTOVL) && !defined(htovl)
2024HTOV(htovl,long)
2025#endif
2026#if defined(HAS_VTOHS) && !defined(vtohs)
2027VTOH(vtohs,short)
2028#endif
2029#if defined(HAS_VTOHL) && !defined(vtohl)
2030VTOH(vtohl,long)
2031#endif
a687059c 2032
5f05dabc 2033 /* VMS' my_popen() is in VMS.c, same with OS/2. */
092bebab 2034#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM)
760ac839 2035PerlIO *
8ac85365 2036my_popen(char *cmd, char *mode)
a687059c 2037{
2038 int p[2];
8ac85365 2039 register I32 This, that;
79072805 2040 register I32 pid;
2041 SV *sv;
1738f5c4 2042 I32 doexec = strNE(cmd,"-");
e446cec8 2043 I32 did_pipes = 0;
2044 int pp[2];
a687059c 2045
45bc9206 2046 PERL_FLUSHALL_FOR_CHILD;
ddcf38b7 2047#ifdef OS2
2048 if (doexec) {
2049 return my_syspopen(cmd,mode);
2050 }
2051#endif
8ac85365 2052 This = (*mode == 'w');
2053 that = !This;
3280af22 2054 if (doexec && PL_tainting) {
bbce6d69 2055 taint_env();
2056 taint_proper("Insecure %s%s", "EXEC");
d48672a2 2057 }
c2267164 2058 if (PerlProc_pipe(p) < 0)
2059 return Nullfp;
e446cec8 2060 if (doexec && PerlProc_pipe(pp) >= 0)
2061 did_pipes = 1;
a687059c 2062 while ((pid = (doexec?vfork():fork())) < 0) {
2063 if (errno != EAGAIN) {
6ad3d225 2064 PerlLIO_close(p[This]);
e446cec8 2065 if (did_pipes) {
2066 PerlLIO_close(pp[0]);
2067 PerlLIO_close(pp[1]);
2068 }
a687059c 2069 if (!doexec)
463ee0b2 2070 croak("Can't fork");
a687059c 2071 return Nullfp;
2072 }
2073 sleep(5);
2074 }
2075 if (pid == 0) {
79072805 2076 GV* tmpgv;
2077
30ac6d9b 2078#undef THIS
2079#undef THAT
a687059c 2080#define THIS that
8ac85365 2081#define THAT This
6ad3d225 2082 PerlLIO_close(p[THAT]);
e446cec8 2083 if (did_pipes) {
2084 PerlLIO_close(pp[0]);
2085#if defined(HAS_FCNTL) && defined(F_SETFD)
2086 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2087#endif
2088 }
a687059c 2089 if (p[THIS] != (*mode == 'r')) {
6ad3d225 2090 PerlLIO_dup2(p[THIS], *mode == 'r');
2091 PerlLIO_close(p[THIS]);
a687059c 2092 }
4435c477 2093#ifndef OS2
a687059c 2094 if (doexec) {
a0d0e21e 2095#if !defined(HAS_FCNTL) || !defined(F_SETFD)
ae986130 2096 int fd;
2097
2098#ifndef NOFILE
2099#define NOFILE 20
2100#endif
6b88bc9c 2101 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
e446cec8 2102 if (fd != pp[1])
2103 PerlLIO_close(fd);
ae986130 2104#endif
e446cec8 2105 do_exec3(cmd,pp[1],did_pipes); /* may or may not use the shell */
6ad3d225 2106 PerlProc__exit(1);
a687059c 2107 }
4435c477 2108#endif /* defined OS2 */
de3bb511 2109 /*SUPPRESS 560*/
85e6fe83 2110 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1e422769 2111 sv_setiv(GvSV(tmpgv), (IV)getpid());
3280af22 2112 PL_forkprocess = 0;
2113 hv_clear(PL_pidstatus); /* we have no children */
a687059c 2114 return Nullfp;
2115#undef THIS
2116#undef THAT
2117 }
62b28dd9 2118 do_execfree(); /* free any memory malloced by child on vfork */
6ad3d225 2119 PerlLIO_close(p[that]);
e446cec8 2120 if (did_pipes)
2121 PerlLIO_close(pp[1]);
8ac85365 2122 if (p[that] < p[This]) {
6ad3d225 2123 PerlLIO_dup2(p[This], p[that]);
2124 PerlLIO_close(p[This]);
8ac85365 2125 p[This] = p[that];
62b28dd9 2126 }
3280af22 2127 sv = *av_fetch(PL_fdpid,p[This],TRUE);
a0d0e21e 2128 (void)SvUPGRADE(sv,SVt_IV);
463ee0b2 2129 SvIVX(sv) = pid;
3280af22 2130 PL_forkprocess = pid;
e446cec8 2131 if (did_pipes && pid > 0) {
2132 int errkid;
2133 int n = 0, n1;
2134
2135 while (n < sizeof(int)) {
2136 n1 = PerlLIO_read(pp[0],
2137 (void*)(((char*)&errkid)+n),
2138 (sizeof(int)) - n);
2139 if (n1 <= 0)
2140 break;
2141 n += n1;
2142 }
2143 if (n) { /* Error */
2144 if (n != sizeof(int))
2145 croak("panic: kid popen errno read");
2146 PerlLIO_close(pp[0]);
2147 errno = errkid; /* Propagate errno from kid */
2148 return Nullfp;
2149 }
2150 }
2151 if (did_pipes)
2152 PerlLIO_close(pp[0]);
8ac85365 2153 return PerlIO_fdopen(p[This], mode);
a687059c 2154}
7c0587c8 2155#else
55497cff 2156#if defined(atarist) || defined(DJGPP)
7c0587c8 2157FILE *popen();
760ac839 2158PerlIO *
45bc9206 2159my_popen(char *cmd, char *mode)
7c0587c8 2160{
760ac839 2161 /* Needs work for PerlIO ! */
55497cff 2162 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
45bc9206 2163 PERL_FLUSHALL_FOR_CHILD;
55497cff 2164 return popen(PerlIO_exportFILE(cmd, 0), mode);
7c0587c8 2165}
2166#endif
2167
2168#endif /* !DOSISH */
a687059c 2169
748a9306 2170#ifdef DUMP_FDS
35ff7856 2171void
2172dump_fds(char *s)
ae986130 2173{
2174 int fd;
2175 struct stat tmpstatbuf;
2176
760ac839 2177 PerlIO_printf(PerlIO_stderr(),"%s", s);
ae986130 2178 for (fd = 0; fd < 32; fd++) {
6ad3d225 2179 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
760ac839 2180 PerlIO_printf(PerlIO_stderr()," %d",fd);
ae986130 2181 }
760ac839 2182 PerlIO_printf(PerlIO_stderr(),"\n");
ae986130 2183}
35ff7856 2184#endif /* DUMP_FDS */
ae986130 2185
fe14fcc3 2186#ifndef HAS_DUP2
fec02dd3 2187int
a687059c 2188dup2(oldfd,newfd)
2189int oldfd;
2190int newfd;
2191{
a0d0e21e 2192#if defined(HAS_FCNTL) && defined(F_DUPFD)
fec02dd3 2193 if (oldfd == newfd)
2194 return oldfd;
6ad3d225 2195 PerlLIO_close(newfd);
fec02dd3 2196 return fcntl(oldfd, F_DUPFD, newfd);
62b28dd9 2197#else
fc36a67e 2198#define DUP2_MAX_FDS 256
2199 int fdtmp[DUP2_MAX_FDS];
79072805 2200 I32 fdx = 0;
ae986130 2201 int fd;
2202
fe14fcc3 2203 if (oldfd == newfd)
fec02dd3 2204 return oldfd;
6ad3d225 2205 PerlLIO_close(newfd);
fc36a67e 2206 /* good enough for low fd's... */
6ad3d225 2207 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
fc36a67e 2208 if (fdx >= DUP2_MAX_FDS) {
6ad3d225 2209 PerlLIO_close(fd);
fc36a67e 2210 fd = -1;
2211 break;
2212 }
ae986130 2213 fdtmp[fdx++] = fd;
fc36a67e 2214 }
ae986130 2215 while (fdx > 0)
6ad3d225 2216 PerlLIO_close(fdtmp[--fdx]);
fec02dd3 2217 return fd;
62b28dd9 2218#endif
a687059c 2219}
2220#endif
2221
ff68c719 2222
2223#ifdef HAS_SIGACTION
2224
2225Sighandler_t
8ac85365 2226rsignal(int signo, Sighandler_t handler)
ff68c719 2227{
2228 struct sigaction act, oact;
2229
2230 act.sa_handler = handler;
2231 sigemptyset(&act.sa_mask);
2232 act.sa_flags = 0;
2233#ifdef SA_RESTART
2234 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2235#endif
85264bed 2236#ifdef SA_NOCLDWAIT
2237 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2238 act.sa_flags |= SA_NOCLDWAIT;
2239#endif
ff68c719 2240 if (sigaction(signo, &act, &oact) == -1)
36477c24 2241 return SIG_ERR;
ff68c719 2242 else
36477c24 2243 return oact.sa_handler;
ff68c719 2244}
2245
2246Sighandler_t
8ac85365 2247rsignal_state(int signo)
ff68c719 2248{
2249 struct sigaction oact;
2250
2251 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2252 return SIG_ERR;
2253 else
2254 return oact.sa_handler;
2255}
2256
2257int
8ac85365 2258rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2259{
2260 struct sigaction act;
2261
2262 act.sa_handler = handler;
2263 sigemptyset(&act.sa_mask);
2264 act.sa_flags = 0;
2265#ifdef SA_RESTART
2266 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2267#endif
85264bed 2268#ifdef SA_NOCLDWAIT
2269 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2270 act.sa_flags |= SA_NOCLDWAIT;
2271#endif
ff68c719 2272 return sigaction(signo, &act, save);
2273}
2274
2275int
8ac85365 2276rsignal_restore(int signo, Sigsave_t *save)
ff68c719 2277{
2278 return sigaction(signo, save, (struct sigaction *)NULL);
2279}
2280
2281#else /* !HAS_SIGACTION */
2282
2283Sighandler_t
4e35701f 2284rsignal(int signo, Sighandler_t handler)
ff68c719 2285{
6ad3d225 2286 return PerlProc_signal(signo, handler);
ff68c719 2287}
2288
2289static int sig_trapped;
2290
2291static
2292Signal_t
4e35701f 2293sig_trap(int signo)
ff68c719 2294{
2295 sig_trapped++;
2296}
2297
2298Sighandler_t
4e35701f 2299rsignal_state(int signo)
ff68c719 2300{
2301 Sighandler_t oldsig;
2302
2303 sig_trapped = 0;
6ad3d225 2304 oldsig = PerlProc_signal(signo, sig_trap);
2305 PerlProc_signal(signo, oldsig);
ff68c719 2306 if (sig_trapped)
6ad3d225 2307 PerlProc_kill(getpid(), signo);
ff68c719 2308 return oldsig;
2309}
2310
2311int
4e35701f 2312rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
ff68c719 2313{
6ad3d225 2314 *save = PerlProc_signal(signo, handler);
ff68c719 2315 return (*save == SIG_ERR) ? -1 : 0;
2316}
2317
2318int
4e35701f 2319rsignal_restore(int signo, Sigsave_t *save)
ff68c719 2320{
6ad3d225 2321 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
ff68c719 2322}
2323
2324#endif /* !HAS_SIGACTION */
2325
5f05dabc 2326 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
092bebab 2327#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM)
79072805 2328I32
6acef3b7 2329my_pclose(PerlIO *ptr)
a687059c 2330{
ff68c719 2331 Sigsave_t hstat, istat, qstat;
a687059c 2332 int status;
a0d0e21e 2333 SV **svp;
20188a90 2334 int pid;
1d3434b8 2335 int pid2;
03136e13 2336 bool close_failed;
2337 int saved_errno;
2338#ifdef VMS
2339 int saved_vaxc_errno;
2340#endif
22fae026 2341#ifdef WIN32
2342 int saved_win32_errno;
2343#endif
a687059c 2344
3280af22 2345 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
748a9306 2346 pid = (int)SvIVX(*svp);
a0d0e21e 2347 SvREFCNT_dec(*svp);
3280af22 2348 *svp = &PL_sv_undef;
ddcf38b7 2349#ifdef OS2
2350 if (pid == -1) { /* Opened by popen. */
2351 return my_syspclose(ptr);
2352 }
2353#endif
03136e13 2354 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2355 saved_errno = errno;
2356#ifdef VMS
2357 saved_vaxc_errno = vaxc$errno;
2358#endif
22fae026 2359#ifdef WIN32
2360 saved_win32_errno = GetLastError();
2361#endif
03136e13 2362 }
7c0587c8 2363#ifdef UTS
6ad3d225 2364 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
7c0587c8 2365#endif
ff68c719 2366 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2367 rsignal_save(SIGINT, SIG_IGN, &istat);
2368 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
748a9306 2369 do {
1d3434b8 2370 pid2 = wait4pid(pid, &status, 0);
2371 } while (pid2 == -1 && errno == EINTR);
ff68c719 2372 rsignal_restore(SIGHUP, &hstat);
2373 rsignal_restore(SIGINT, &istat);
2374 rsignal_restore(SIGQUIT, &qstat);
03136e13 2375 if (close_failed) {
2376 SETERRNO(saved_errno, saved_vaxc_errno);
2377 return -1;
2378 }
1d3434b8 2379 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
20188a90 2380}
4633a7c4 2381#endif /* !DOSISH */
2382
8736538c 2383#if !defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(CYGWIN32)
79072805 2384I32
8ac85365 2385wait4pid(int pid, int *statusp, int flags)
20188a90 2386{
79072805 2387 SV *sv;
2388 SV** svp;
fc36a67e 2389 char spid[TYPE_CHARS(int)];
20188a90 2390
2391 if (!pid)
2392 return -1;
20188a90 2393 if (pid > 0) {
2394 sprintf(spid, "%d", pid);
3280af22 2395 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2396 if (svp && *svp != &PL_sv_undef) {
463ee0b2 2397 *statusp = SvIVX(*svp);
3280af22 2398 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
20188a90 2399 return pid;
2400 }
2401 }
2402 else {
79072805 2403 HE *entry;
20188a90 2404
3280af22 2405 hv_iterinit(PL_pidstatus);
2406 if (entry = hv_iternext(PL_pidstatus)) {
a0d0e21e 2407 pid = atoi(hv_iterkey(entry,(I32*)statusp));
3280af22 2408 sv = hv_iterval(PL_pidstatus,entry);
463ee0b2 2409 *statusp = SvIVX(sv);
20188a90 2410 sprintf(spid, "%d", pid);
3280af22 2411 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
20188a90 2412 return pid;
2413 }
2414 }
79072805 2415#ifdef HAS_WAITPID
367f3c24 2416# ifdef HAS_WAITPID_RUNTIME
2417 if (!HAS_WAITPID_RUNTIME)
2418 goto hard_way;
2419# endif
f55ee38a 2420 return PerlProc_waitpid(pid,statusp,flags);
367f3c24 2421#endif
2422#if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
a0d0e21e 2423 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
367f3c24 2424#endif
2425#if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2426 hard_way:
a0d0e21e 2427 {
2428 I32 result;
2429 if (flags)
2430 croak("Can't do waitpid with flags");
2431 else {
76e3520e 2432 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
a0d0e21e 2433 pidgone(result,*statusp);
2434 if (result < 0)
2435 *statusp = -1;
2436 }
2437 return result;
a687059c 2438 }
2439#endif
a687059c 2440}
2d7a9237 2441#endif /* !DOSISH || OS2 || WIN32 */
a687059c 2442
7c0587c8 2443void
de3bb511 2444/*SUPPRESS 590*/
8ac85365 2445pidgone(int pid, int status)
a687059c 2446{
79072805 2447 register SV *sv;
fc36a67e 2448 char spid[TYPE_CHARS(int)];
a687059c 2449
20188a90 2450 sprintf(spid, "%d", pid);
3280af22 2451 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
a0d0e21e 2452 (void)SvUPGRADE(sv,SVt_IV);
463ee0b2 2453 SvIVX(sv) = status;
20188a90 2454 return;
a687059c 2455}
2456
55497cff 2457#if defined(atarist) || defined(OS2) || defined(DJGPP)
7c0587c8 2458int pclose();
ddcf38b7 2459#ifdef HAS_FORK
2460int /* Cannot prototype with I32
2461 in os2ish.h. */
2462my_syspclose(ptr)
2463#else
79072805 2464I32
2465my_pclose(ptr)
ddcf38b7 2466#endif
760ac839 2467PerlIO *ptr;
a687059c 2468{
760ac839 2469 /* Needs work for PerlIO ! */
2470 FILE *f = PerlIO_findFILE(ptr);
2471 I32 result = pclose(f);
2472 PerlIO_releaseFILE(ptr,f);
2473 return result;
a687059c 2474}
7c0587c8 2475#endif
9f68db38 2476
2477void
08105a92 2478repeatcpy(register char *to, register const char *from, I32 len, register I32 count)
9f68db38 2479{
79072805 2480 register I32 todo;
08105a92 2481 register const char *frombase = from;
9f68db38 2482
2483 if (len == 1) {
08105a92 2484 register const char c = *from;
9f68db38 2485 while (count-- > 0)
5926133d 2486 *to++ = c;
9f68db38 2487 return;
2488 }
2489 while (count-- > 0) {
2490 for (todo = len; todo > 0; todo--) {
2491 *to++ = *from++;
2492 }
2493 from = frombase;
2494 }
2495}
0f85fab0 2496
463ee0b2 2497U32
22c35a8c 2498cast_ulong(double f)
0f85fab0 2499{
2500 long along;
2501
27e2fb84 2502#if CASTFLAGS & 2
34de22dd 2503# define BIGDOUBLE 2147483648.0
2504 if (f >= BIGDOUBLE)
2505 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2506#endif
0f85fab0 2507 if (f >= 0.0)
2508 return (unsigned long)f;
2509 along = (long)f;
2510 return (unsigned long)along;
2511}
ed6116ce 2512# undef BIGDOUBLE
5d94fbed 2513
5d94fbed 2514/* Unfortunately, on some systems the cast_uv() function doesn't
2515 work with the system-supplied definition of ULONG_MAX. The
2516 comparison (f >= ULONG_MAX) always comes out true. It must be a
2517 problem with the compiler constant folding.
2518
2519 In any case, this workaround should be fine on any two's complement
2520 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2521 ccflags.
2522 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2523*/
1eb770ff 2524
2525/* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2526 of LONG_(MIN/MAX).
2527 -- Kenneth Albanowski <kjahds@kjahds.com>
2528*/
2529
20cec16a 2530#ifndef MY_UV_MAX
2531# define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
5d94fbed 2532#endif
2533
ed6116ce 2534I32
22c35a8c 2535cast_i32(double f)
ed6116ce 2536{
20cec16a 2537 if (f >= I32_MAX)
2538 return (I32) I32_MAX;
2539 if (f <= I32_MIN)
2540 return (I32) I32_MIN;
ed6116ce 2541 return (I32) f;
2542}
a0d0e21e 2543
2544IV
22c35a8c 2545cast_iv(double f)
a0d0e21e 2546{
25da4f38 2547 if (f >= IV_MAX) {
2548 UV uv;
2549
2550 if (f >= (double)UV_MAX)
2551 return (IV) UV_MAX;
2552 uv = (UV) f;
2553 return (IV)uv;
2554 }
20cec16a 2555 if (f <= IV_MIN)
2556 return (IV) IV_MIN;
a0d0e21e 2557 return (IV) f;
2558}
5d94fbed 2559
2560UV
22c35a8c 2561cast_uv(double f)
5d94fbed 2562{
20cec16a 2563 if (f >= MY_UV_MAX)
2564 return (UV) MY_UV_MAX;
25da4f38 2565 if (f < 0) {
2566 IV iv;
2567
2568 if (f < IV_MIN)
2569 return (UV)IV_MIN;
2570 iv = (IV) f;
2571 return (UV) iv;
2572 }
5d94fbed 2573 return (UV) f;
2574}
2575
fe14fcc3 2576#ifndef HAS_RENAME
79072805 2577I32
22c35a8c 2578same_dirent(char *a, char *b)
62b28dd9 2579{
93a17b20 2580 char *fa = strrchr(a,'/');
2581 char *fb = strrchr(b,'/');
62b28dd9 2582 struct stat tmpstatbuf1;
2583 struct stat tmpstatbuf2;
46fc3d4c 2584 SV *tmpsv = sv_newmortal();
62b28dd9 2585
2586 if (fa)
2587 fa++;
2588 else
2589 fa = a;
2590 if (fb)
2591 fb++;
2592 else
2593 fb = b;
2594 if (strNE(a,b))
2595 return FALSE;
2596 if (fa == a)
46fc3d4c 2597 sv_setpv(tmpsv, ".");
62b28dd9 2598 else
46fc3d4c 2599 sv_setpvn(tmpsv, a, fa - a);
c6ed36e1 2600 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
62b28dd9 2601 return FALSE;
2602 if (fb == b)
46fc3d4c 2603 sv_setpv(tmpsv, ".");
62b28dd9 2604 else
46fc3d4c 2605 sv_setpvn(tmpsv, b, fb - b);
c6ed36e1 2606 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
62b28dd9 2607 return FALSE;
2608 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2609 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2610}
fe14fcc3 2611#endif /* !HAS_RENAME */
2612
55497cff 2613UV
4f19785b 2614scan_bin(char *start, I32 len, I32 *retlen)
2615{
2616 register char *s = start;
2617 register UV retval = 0;
2618 bool overflowed = FALSE;
2619 while (len && *s >= '0' && *s <= '1') {
2620 register UV n = retval << 1;
2621 if (!overflowed && (n >> 1) != retval) {
2622 warn("Integer overflow in binary number");
2623 overflowed = TRUE;
2624 }
2625 retval = n | (*s++ - '0');
2626 len--;
2627 }
6529e8bd 2628 if (len && (*s >= '2' && *s <= '9')) {
4f19785b 2629 dTHR;
2630 if (ckWARN(WARN_UNSAFE))
399388f4 2631 warner(WARN_UNSAFE, "Illegal binary digit '%c' ignored", *s);
4f19785b 2632 }
2633 *retlen = s - start;
2634 return retval;
2635}
2636UV
8ac85365 2637scan_oct(char *start, I32 len, I32 *retlen)
fe14fcc3 2638{
2639 register char *s = start;
55497cff 2640 register UV retval = 0;
2641 bool overflowed = FALSE;
fe14fcc3 2642
748a9306 2643 while (len && *s >= '0' && *s <= '7') {
55497cff 2644 register UV n = retval << 3;
2645 if (!overflowed && (n >> 3) != retval) {
2646 warn("Integer overflow in octal number");
2647 overflowed = TRUE;
2648 }
2649 retval = n | (*s++ - '0');
748a9306 2650 len--;
fe14fcc3 2651 }
d008e5eb 2652 if (len && (*s == '8' || *s == '9')) {
2653 dTHR;
2654 if (ckWARN(WARN_OCTAL))
399388f4 2655 warner(WARN_OCTAL, "Illegal octal digit '%c' ignored", *s);
d008e5eb 2656 }
fe14fcc3 2657 *retlen = s - start;
2658 return retval;
2659}
2660
71be2cbc 2661UV
8ac85365 2662scan_hex(char *start, I32 len, I32 *retlen)
fe14fcc3 2663{
2664 register char *s = start;
55497cff 2665 register UV retval = 0;
2666 bool overflowed = FALSE;
6ff81951 2667 char *tmp = s;
a0ed51b3 2668 register UV n;
fe14fcc3 2669
a0ed51b3 2670 while (len-- && *s) {
2671 tmp = strchr((char *) PL_hexdigit, *s++);
2672 if (!tmp) {
e3fdf988 2673 if (*(s-1) == '_' || (*(s-1) == 'x' && retval == 0))
a0ed51b3 2674 continue;
2675 else {
d008e5eb 2676 dTHR;
a0ed51b3 2677 --s;
599cee73 2678 if (ckWARN(WARN_UNSAFE))
399388f4 2679 warner(WARN_UNSAFE,"Illegal hex digit '%c' ignored", *s);
a0ed51b3 2680 break;
2681 }
2682 }
2683 n = retval << 4;
55497cff 2684 if (!overflowed && (n >> 4) != retval) {
2685 warn("Integer overflow in hex number");
2686 overflowed = TRUE;
2687 }
3280af22 2688 retval = n | ((tmp - PL_hexdigit) & 15);
6ff81951 2689 }
fe14fcc3 2690 *retlen = s - start;
2691 return retval;
2692}
760ac839 2693
491527d0 2694char*
2695find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2696{
2697 dTHR;
2698 char *xfound = Nullch;
2699 char *xfailed = Nullch;
0f31cffe 2700 char tmpbuf[MAXPATHLEN];
491527d0 2701 register char *s;
2702 I32 len;
2703 int retval;
2704#if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2705# define SEARCH_EXTS ".bat", ".cmd", NULL
2706# define MAX_EXT_LEN 4
2707#endif
2708#ifdef OS2
2709# define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2710# define MAX_EXT_LEN 4
2711#endif
2712#ifdef VMS
2713# define SEARCH_EXTS ".pl", ".com", NULL
2714# define MAX_EXT_LEN 4
2715#endif
2716 /* additional extensions to try in each dir if scriptname not found */
2717#ifdef SEARCH_EXTS
2718 char *exts[] = { SEARCH_EXTS };
2719 char **ext = search_ext ? search_ext : exts;
2720 int extidx = 0, i = 0;
2721 char *curext = Nullch;
2722#else
2723# define MAX_EXT_LEN 0
2724#endif
2725
2726 /*
2727 * If dosearch is true and if scriptname does not contain path
2728 * delimiters, search the PATH for scriptname.
2729 *
2730 * If SEARCH_EXTS is also defined, will look for each
2731 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2732 * while searching the PATH.
2733 *
2734 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2735 * proceeds as follows:
2736 * If DOSISH or VMSISH:
2737 * + look for ./scriptname{,.foo,.bar}
2738 * + search the PATH for scriptname{,.foo,.bar}
2739 *
2740 * If !DOSISH:
2741 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2742 * this will not look in '.' if it's not in the PATH)
2743 */
84486fc6 2744 tmpbuf[0] = '\0';
491527d0 2745
2746#ifdef VMS
2747# ifdef ALWAYS_DEFTYPES
2748 len = strlen(scriptname);
2749 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2750 int hasdir, idx = 0, deftypes = 1;
2751 bool seen_dot = 1;
2752
2753 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2754# else
2755 if (dosearch) {
2756 int hasdir, idx = 0, deftypes = 1;
2757 bool seen_dot = 1;
2758
2759 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2760# endif
2761 /* The first time through, just add SEARCH_EXTS to whatever we
2762 * already have, so we can check for default file types. */
2763 while (deftypes ||
84486fc6 2764 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
491527d0 2765 {
2766 if (deftypes) {
2767 deftypes = 0;
84486fc6 2768 *tmpbuf = '\0';
491527d0 2769 }
84486fc6 2770 if ((strlen(tmpbuf) + strlen(scriptname)
2771 + MAX_EXT_LEN) >= sizeof tmpbuf)
491527d0 2772 continue; /* don't search dir with too-long name */
84486fc6 2773 strcat(tmpbuf, scriptname);
491527d0 2774#else /* !VMS */
2775
2776#ifdef DOSISH
2777 if (strEQ(scriptname, "-"))
2778 dosearch = 0;
2779 if (dosearch) { /* Look in '.' first. */
2780 char *cur = scriptname;
2781#ifdef SEARCH_EXTS
2782 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2783 while (ext[i])
2784 if (strEQ(ext[i++],curext)) {
2785 extidx = -1; /* already has an ext */
2786 break;
2787 }
2788 do {
2789#endif
2790 DEBUG_p(PerlIO_printf(Perl_debug_log,
2791 "Looking for %s\n",cur));
017f25f1 2792 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2793 && !S_ISDIR(PL_statbuf.st_mode)) {
491527d0 2794 dosearch = 0;
2795 scriptname = cur;
2796#ifdef SEARCH_EXTS
2797 break;
2798#endif
2799 }
2800#ifdef SEARCH_EXTS
2801 if (cur == scriptname) {
2802 len = strlen(scriptname);
84486fc6 2803 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
491527d0 2804 break;
84486fc6 2805 cur = strcpy(tmpbuf, scriptname);
491527d0 2806 }
2807 } while (extidx >= 0 && ext[extidx] /* try an extension? */
84486fc6 2808 && strcpy(tmpbuf+len, ext[extidx++]));
491527d0 2809#endif
2810 }
2811#endif
2812
2813 if (dosearch && !strchr(scriptname, '/')
2814#ifdef DOSISH
2815 && !strchr(scriptname, '\\')
2816#endif
2817 && (s = PerlEnv_getenv("PATH"))) {
2818 bool seen_dot = 0;
2819
3280af22 2820 PL_bufend = s + strlen(s);
2821 while (s < PL_bufend) {
491527d0 2822#if defined(atarist) || defined(DOSISH)
2823 for (len = 0; *s
2824# ifdef atarist
2825 && *s != ','
2826# endif
2827 && *s != ';'; len++, s++) {
84486fc6 2828 if (len < sizeof tmpbuf)
2829 tmpbuf[len] = *s;
491527d0 2830 }
84486fc6 2831 if (len < sizeof tmpbuf)
2832 tmpbuf[len] = '\0';
491527d0 2833#else /* ! (atarist || DOSISH) */
3280af22 2834 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
491527d0 2835 ':',
2836 &len);
2837#endif /* ! (atarist || DOSISH) */
3280af22 2838 if (s < PL_bufend)
491527d0 2839 s++;
84486fc6 2840 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
491527d0 2841 continue; /* don't search dir with too-long name */
2842 if (len
61ae2fbf 2843#if defined(atarist) || defined(__MINT__) || defined(DOSISH)
84486fc6 2844 && tmpbuf[len - 1] != '/'
2845 && tmpbuf[len - 1] != '\\'
491527d0 2846#endif
2847 )
84486fc6 2848 tmpbuf[len++] = '/';
2849 if (len == 2 && tmpbuf[0] == '.')
491527d0 2850 seen_dot = 1;
84486fc6 2851 (void)strcpy(tmpbuf + len, scriptname);
491527d0 2852#endif /* !VMS */
2853
2854#ifdef SEARCH_EXTS
84486fc6 2855 len = strlen(tmpbuf);
491527d0 2856 if (extidx > 0) /* reset after previous loop */
2857 extidx = 0;
2858 do {
2859#endif
84486fc6 2860 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3280af22 2861 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
017f25f1 2862 if (S_ISDIR(PL_statbuf.st_mode)) {
2863 retval = -1;
2864 }
491527d0 2865#ifdef SEARCH_EXTS
2866 } while ( retval < 0 /* not there */
2867 && extidx>=0 && ext[extidx] /* try an extension? */
84486fc6 2868 && strcpy(tmpbuf+len, ext[extidx++])
491527d0 2869 );
2870#endif
2871 if (retval < 0)
2872 continue;
3280af22 2873 if (S_ISREG(PL_statbuf.st_mode)
2874 && cando(S_IRUSR,TRUE,&PL_statbuf)
491527d0 2875#ifndef DOSISH
3280af22 2876 && cando(S_IXUSR,TRUE,&PL_statbuf)
491527d0 2877#endif
2878 )
2879 {
84486fc6 2880 xfound = tmpbuf; /* bingo! */
491527d0 2881 break;
2882 }
2883 if (!xfailed)
84486fc6 2884 xfailed = savepv(tmpbuf);
491527d0 2885 }
2886#ifndef DOSISH
017f25f1 2887 if (!xfound && !seen_dot && !xfailed &&
2888 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
2889 || S_ISDIR(PL_statbuf.st_mode)))
491527d0 2890#endif
2891 seen_dot = 1; /* Disable message. */
9ccb31f9 2892 if (!xfound) {
2893 if (flags & 1) { /* do or die? */
2894 croak("Can't %s %s%s%s",
2895 (xfailed ? "execute" : "find"),
2896 (xfailed ? xfailed : scriptname),
2897 (xfailed ? "" : " on PATH"),
2898 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2899 }
2900 scriptname = Nullch;
2901 }
491527d0 2902 if (xfailed)
2903 Safefree(xfailed);
2904 scriptname = xfound;
2905 }
9ccb31f9 2906 return (scriptname ? savepv(scriptname) : Nullch);
491527d0 2907}
2908
2909
11343788 2910#ifdef USE_THREADS
12ca11f6 2911#ifdef FAKE_THREADS
2912/* Very simplistic scheduler for now */
2913void
2914schedule(void)
2915{
c7848ba1 2916 thr = thr->i.next_run;
12ca11f6 2917}
2918
2919void
22c35a8c 2920perl_cond_init(perl_cond *cp)
12ca11f6 2921{
2922 *cp = 0;
2923}
2924
2925void
22c35a8c 2926perl_cond_signal(perl_cond *cp)
12ca11f6 2927{
51dd5992 2928 perl_os_thread t;
12ca11f6 2929 perl_cond cond = *cp;
2930
2931 if (!cond)
2932 return;
2933 t = cond->thread;
2934 /* Insert t in the runnable queue just ahead of us */
c7848ba1 2935 t->i.next_run = thr->i.next_run;
2936 thr->i.next_run->i.prev_run = t;
2937 t->i.prev_run = thr;
2938 thr->i.next_run = t;
2939 thr->i.wait_queue = 0;
12ca11f6 2940 /* Remove from the wait queue */
2941 *cp = cond->next;
2942 Safefree(cond);
2943}
2944
2945void
22c35a8c 2946perl_cond_broadcast(perl_cond *cp)
12ca11f6 2947{
51dd5992 2948 perl_os_thread t;
12ca11f6 2949 perl_cond cond, cond_next;
2950
2951 for (cond = *cp; cond; cond = cond_next) {
2952 t = cond->thread;
2953 /* Insert t in the runnable queue just ahead of us */
c7848ba1 2954 t->i.next_run = thr->i.next_run;
2955 thr->i.next_run->i.prev_run = t;
2956 t->i.prev_run = thr;
2957 thr->i.next_run = t;
2958 thr->i.wait_queue = 0;
12ca11f6 2959 /* Remove from the wait queue */
2960 cond_next = cond->next;
2961 Safefree(cond);
2962 }
2963 *cp = 0;
2964}
2965
2966void
22c35a8c 2967perl_cond_wait(perl_cond *cp)
12ca11f6 2968{
2969 perl_cond cond;
2970
c7848ba1 2971 if (thr->i.next_run == thr)
12ca11f6 2972 croak("panic: perl_cond_wait called by last runnable thread");
2973
0f15f207 2974 New(666, cond, 1, struct perl_wait_queue);
12ca11f6 2975 cond->thread = thr;
2976 cond->next = *cp;
2977 *cp = cond;
c7848ba1 2978 thr->i.wait_queue = cond;
12ca11f6 2979 /* Remove ourselves from runnable queue */
c7848ba1 2980 thr->i.next_run->i.prev_run = thr->i.prev_run;
2981 thr->i.prev_run->i.next_run = thr->i.next_run;
12ca11f6 2982}
2983#endif /* FAKE_THREADS */
2984
0d85d877 2985#ifdef PTHREAD_GETSPECIFIC_INT
52e1cb5e 2986struct perl_thread *
11343788 2987getTHR _((void))
2988{
2989 pthread_addr_t t;
2990
6b88bc9c 2991 if (pthread_getspecific(PL_thr_key, &t))
11343788 2992 croak("panic: pthread_getspecific");
52e1cb5e 2993 return (struct perl_thread *) t;
11343788 2994}
0d85d877 2995#endif
f93b4edd 2996
2997MAGIC *
8ac85365 2998condpair_magic(SV *sv)
f93b4edd 2999{
3000 MAGIC *mg;
3001
3002 SvUPGRADE(sv, SVt_PVMG);
3003 mg = mg_find(sv, 'm');
3004 if (!mg) {
3005 condpair_t *cp;
3006
3007 New(53, cp, 1, condpair_t);
3008 MUTEX_INIT(&cp->mutex);
3009 COND_INIT(&cp->owner_cond);
3010 COND_INIT(&cp->cond);
3011 cp->owner = 0;
28a8573f 3012 MUTEX_LOCK(&PL_cred_mutex); /* XXX need separate mutex? */
f93b4edd 3013 mg = mg_find(sv, 'm');
3014 if (mg) {
3015 /* someone else beat us to initialising it */
28a8573f 3016 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
f93b4edd 3017 MUTEX_DESTROY(&cp->mutex);
3018 COND_DESTROY(&cp->owner_cond);
3019 COND_DESTROY(&cp->cond);
3020 Safefree(cp);
3021 }
3022 else {
3023 sv_magic(sv, Nullsv, 'm', 0, 0);
3024 mg = SvMAGIC(sv);
3025 mg->mg_ptr = (char *)cp;
565764a8 3026 mg->mg_len = sizeof(cp);
28a8573f 3027 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
8b73bbec 3028 DEBUG_S(WITH_THR(PerlIO_printf(PerlIO_stderr(),
c7848ba1 3029 "%p: condpair_magic %p\n", thr, sv));)
f93b4edd 3030 }
3031 }
3032 return mg;
3033}
a863c7d1 3034
3035/*
199100c8 3036 * Make a new perl thread structure using t as a prototype. Some of the
3037 * fields for the new thread are copied from the prototype thread, t,
3038 * so t should not be running in perl at the time this function is
3039 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3040 * thread calling new_struct_thread) clearly satisfies this constraint.
a863c7d1 3041 */
52e1cb5e 3042struct perl_thread *
3043new_struct_thread(struct perl_thread *t)
a863c7d1 3044{
52e1cb5e 3045 struct perl_thread *thr;
a863c7d1 3046 SV *sv;
199100c8 3047 SV **svp;
3048 I32 i;
3049
79cb57f6 3050 sv = newSVpvn("", 0);
52e1cb5e 3051 SvGROW(sv, sizeof(struct perl_thread) + 1);
3052 SvCUR_set(sv, sizeof(struct perl_thread));
199100c8 3053 thr = (Thread) SvPVX(sv);
949ced2d 3054#ifdef DEBUGGING
52e1cb5e 3055 memset(thr, 0xab, sizeof(struct perl_thread));
533c011a 3056 PL_markstack = 0;
3057 PL_scopestack = 0;
3058 PL_savestack = 0;
3059 PL_retstack = 0;
3060 PL_dirty = 0;
3061 PL_localizing = 0;
949ced2d 3062 Zero(&PL_hv_fetch_ent_mh, 1, HE);
3063#else
3064 Zero(thr, 1, struct perl_thread);
3065#endif
199100c8 3066
312caa8e 3067 PL_protect = FUNC_NAME_TO_PTR(default_protect);
3068
199100c8 3069 thr->oursv = sv;
d55594ae 3070 init_stacks(ARGS);
a863c7d1 3071
533c011a 3072 PL_curcop = &PL_compiling;
199100c8 3073 thr->cvcache = newHV();
54b9620d 3074 thr->threadsv = newAV();
a863c7d1 3075 thr->specific = newAV();
79cb57f6 3076 thr->errsv = newSVpvn("", 0);
38a03e6e 3077 thr->errhv = newHV();
a863c7d1 3078 thr->flags = THRf_R_JOINABLE;
3079 MUTEX_INIT(&thr->mutex);
199100c8 3080
d55594ae 3081 /* top_env needs to be non-zero. It points to an area
3082 in which longjmp() stuff is stored, as C callstack
3083 info there at least is thread specific this has to
3084 be per-thread. Otherwise a 'die' in a thread gives
3085 that thread the C stack of last thread to do an eval {}!
3086 See comments in scope.h
3087 Initialize top entry (as in perl.c for main thread)
3088 */
533c011a 3089 PL_start_env.je_prev = NULL;
3090 PL_start_env.je_ret = -1;
3091 PL_start_env.je_mustcatch = TRUE;
3092 PL_top_env = &PL_start_env;
3093
faef0170 3094 PL_in_eval = EVAL_NULL; /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
533c011a 3095 PL_restartop = 0;
3096
b099ddc0 3097 PL_statname = NEWSV(66,0);
3098 PL_maxscream = -1;
3099 PL_regcompp = FUNC_NAME_TO_PTR(pregcomp);
3100 PL_regexecp = FUNC_NAME_TO_PTR(regexec_flags);
3101 PL_regindent = 0;
3102 PL_reginterp_cnt = 0;
3103 PL_lastscream = Nullsv;
3104 PL_screamfirst = 0;
3105 PL_screamnext = 0;
3106 PL_reg_start_tmp = 0;
3107 PL_reg_start_tmpl = 0;
3108
3109 /* parent thread's data needs to be locked while we make copy */
3110 MUTEX_LOCK(&t->mutex);
3111
312caa8e 3112 PL_protect = t->Tprotect;
3113
b099ddc0 3114 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
3115 PL_defstash = t->Tdefstash; /* XXX maybe these should */
3116 PL_curstash = t->Tcurstash; /* always be set to main? */
3117
6b88bc9c 3118 PL_tainted = t->Ttainted;
84fee439 3119 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
3120 PL_nrs = newSVsv(t->Tnrs);
3121 PL_rs = SvREFCNT_inc(PL_nrs);
3122 PL_last_in_gv = Nullgv;
3123 PL_ofslen = t->Tofslen;
3124 PL_ofs = savepvn(t->Tofs, PL_ofslen);
3125 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3126 PL_chopset = t->Tchopset;
3127 PL_formtarget = newSVsv(t->Tformtarget);
3128 PL_bodytarget = newSVsv(t->Tbodytarget);
3129 PL_toptarget = newSVsv(t->Ttoptarget);
533c011a 3130
54b9620d 3131 /* Initialise all per-thread SVs that the template thread used */
3132 svp = AvARRAY(t->threadsv);
93965878 3133 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
533c011a 3134 if (*svp && *svp != &PL_sv_undef) {
199100c8 3135 SV *sv = newSVsv(*svp);
54b9620d 3136 av_store(thr->threadsv, i, sv);
533c011a 3137 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
8b73bbec 3138 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
54b9620d 3139 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
199100c8 3140 }
3141 }
940cb80d 3142 thr->threadsvp = AvARRAY(thr->threadsv);
199100c8 3143
533c011a 3144 MUTEX_LOCK(&PL_threads_mutex);
3145 PL_nthreads++;
3146 thr->tid = ++PL_threadnum;
199100c8 3147 thr->next = t->next;
3148 thr->prev = t;
3149 t->next = thr;
3150 thr->next->prev = thr;
533c011a 3151 MUTEX_UNLOCK(&PL_threads_mutex);
a863c7d1 3152
b099ddc0 3153 /* done copying parent's state */
3154 MUTEX_UNLOCK(&t->mutex);
3155
a863c7d1 3156#ifdef HAVE_THREAD_INTERN
3157 init_thread_intern(thr);
a863c7d1 3158#endif /* HAVE_THREAD_INTERN */
a863c7d1 3159 return thr;
3160}
11343788 3161#endif /* USE_THREADS */
760ac839 3162
3163#ifdef HUGE_VAL
3164/*
3165 * This hack is to force load of "huge" support from libm.a
3166 * So it is in perl for (say) POSIX to use.
3167 * Needed for SunOS with Sun's 'acc' for example.
3168 */
3169double
8ac85365 3170Perl_huge(void)
760ac839 3171{
3172 return HUGE_VAL;
3173}
3174#endif
4e35701f 3175
22239a37 3176#ifdef PERL_GLOBAL_STRUCT
3177struct perl_vars *
3178Perl_GetVars(void)
3179{
533c011a 3180 return &PL_Vars;
22239a37 3181}
31fb1209 3182#endif
3183
3184char **
3185get_op_names(void)
3186{
22c35a8c 3187 return PL_op_name;
31fb1209 3188}
3189
3190char **
3191get_op_descs(void)
3192{
22c35a8c 3193 return PL_op_desc;
31fb1209 3194}
9e6b2b00 3195
3196char *
3197get_no_modify(void)
3198{
22c35a8c 3199 return (char*)PL_no_modify;
9e6b2b00 3200}
3201
3202U32 *
3203get_opargs(void)
3204{
22c35a8c 3205 return PL_opargs;
9e6b2b00 3206}
51aa15f3 3207
a6c40364 3208#ifndef HAS_GETENV_LEN
3209char *
3210getenv_len(char *env_elem, unsigned long *len)
3211{
3212 char *env_trans = PerlEnv_getenv(env_elem);
3213 if (env_trans)
3214 *len = strlen(env_trans);
3215 return env_trans;
f675dbe5 3216}
3217#endif
3218
dc9e4912 3219
3220MGVTBL*
3221get_vtbl(int vtbl_id)
3222{
3223 MGVTBL* result = Null(MGVTBL*);
3224
3225 switch(vtbl_id) {
3226 case want_vtbl_sv:
3227 result = &PL_vtbl_sv;
3228 break;
3229 case want_vtbl_env:
3230 result = &PL_vtbl_env;
3231 break;
3232 case want_vtbl_envelem:
3233 result = &PL_vtbl_envelem;
3234 break;
3235 case want_vtbl_sig:
3236 result = &PL_vtbl_sig;
3237 break;
3238 case want_vtbl_sigelem:
3239 result = &PL_vtbl_sigelem;
3240 break;
3241 case want_vtbl_pack:
3242 result = &PL_vtbl_pack;
3243 break;
3244 case want_vtbl_packelem:
3245 result = &PL_vtbl_packelem;
3246 break;
3247 case want_vtbl_dbline:
3248 result = &PL_vtbl_dbline;
3249 break;
3250 case want_vtbl_isa:
3251 result = &PL_vtbl_isa;
3252 break;
3253 case want_vtbl_isaelem:
3254 result = &PL_vtbl_isaelem;
3255 break;
3256 case want_vtbl_arylen:
3257 result = &PL_vtbl_arylen;
3258 break;
3259 case want_vtbl_glob:
3260 result = &PL_vtbl_glob;
3261 break;
3262 case want_vtbl_mglob:
3263 result = &PL_vtbl_mglob;
3264 break;
3265 case want_vtbl_nkeys:
3266 result = &PL_vtbl_nkeys;
3267 break;
3268 case want_vtbl_taint:
3269 result = &PL_vtbl_taint;
3270 break;
3271 case want_vtbl_substr:
3272 result = &PL_vtbl_substr;
3273 break;
3274 case want_vtbl_vec:
3275 result = &PL_vtbl_vec;
3276 break;
3277 case want_vtbl_pos:
3278 result = &PL_vtbl_pos;
3279 break;
3280 case want_vtbl_bm:
3281 result = &PL_vtbl_bm;
3282 break;
3283 case want_vtbl_fm:
3284 result = &PL_vtbl_fm;
3285 break;
3286 case want_vtbl_uvar:
3287 result = &PL_vtbl_uvar;
3288 break;
3289#ifdef USE_THREADS
3290 case want_vtbl_mutex:
3291 result = &PL_vtbl_mutex;
3292 break;
3293#endif
3294 case want_vtbl_defelem:
3295 result = &PL_vtbl_defelem;
3296 break;
3297 case want_vtbl_regexp:
3298 result = &PL_vtbl_regexp;
3299 break;
3300 case want_vtbl_regdata:
3301 result = &PL_vtbl_regdata;
3302 break;
3303 case want_vtbl_regdatum:
3304 result = &PL_vtbl_regdatum;
3305 break;
3c90161d 3306#ifdef USE_LOCALE_COLLATE
dc9e4912 3307 case want_vtbl_collxfrm:
3308 result = &PL_vtbl_collxfrm;
3309 break;
3c90161d 3310#endif
dc9e4912 3311 case want_vtbl_amagic:
3312 result = &PL_vtbl_amagic;
3313 break;
3314 case want_vtbl_amagicelem:
3315 result = &PL_vtbl_amagicelem;
3316 break;
810b8aa5 3317 case want_vtbl_backref:
3318 result = &PL_vtbl_backref;
3319 break;
dc9e4912 3320 }
3321 return result;
3322}
3323
767df6a1 3324I32
3325my_fflush_all(void)
3326{
3327#ifdef FFLUSH_NULL
ce720889 3328 return PerlIO_flush(NULL);
767df6a1 3329#else
3330 long open_max = -1;
ed39a0f2 3331# if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
d2201af2 3332# ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3333 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3334# else
767df6a1 3335# if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3336 open_max = sysconf(_SC_OPEN_MAX);
3337# else
3338# ifdef FOPEN_MAX
d2201af2 3339 open_max = FOPEN_MAX;
767df6a1 3340# else
3341# ifdef OPEN_MAX
d2201af2 3342 open_max = OPEN_MAX;
767df6a1 3343# else
3344# ifdef _NFILE
d2201af2 3345 open_max = _NFILE;
767df6a1 3346# endif
3347# endif
3348# endif
3349# endif
d2201af2 3350# endif
767df6a1 3351 if (open_max > 0) {
3352 long i;
3353 for (i = 0; i < open_max; i++)
d2201af2 3354 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3355 STDIO_STREAM_ARRAY[i]._file < open_max &&
3356 STDIO_STREAM_ARRAY[i]._flag)
3357 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
767df6a1 3358 return 0;
3359 }
3360# endif
3361 SETERRNO(EBADF,RMS$_IFI);
3362 return EOF;
3363#endif
3364}