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