This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update CPAN.pm to 1.93_53
[perl5.git] / reentr.pl
1 #!/usr/bin/perl -w
2
3 #
4 # Generate the reentr.c and reentr.h,
5 # and optionally also the relevant metaconfig units (-U option).
6
7
8 BEGIN {
9     # Get function prototypes
10     require 'regen_lib.pl';
11 }
12
13 use strict;
14 use Getopt::Std;
15 my %opts;
16 getopts('Uv', \%opts);
17
18 my %map = (
19            V => "void",
20            A => "char*",        # as an input argument
21            B => "char*",        # as an output argument 
22            C => "const char*",  # as a read-only input argument
23            I => "int",
24            L => "long",
25            W => "size_t",
26            H => "FILE**",
27            E => "int*",
28           );
29
30 # (See the definitions after __DATA__.)
31 # In func|inc|type|... a "S" means "type*", and a "R" means "type**".
32 # (The "types" are often structs, such as "struct passwd".)
33 #
34 # After the prototypes one can have |X=...|Y=... to define more types.
35 # A commonly used extra type is to define D to be equal to "type_data",
36 # for example "struct_hostent_data to" go with "struct hostent".
37 #
38 # Example #1: I_XSBWR means int  func_r(X, type, char*, size_t, type**)
39 # Example #2: S_SBIE  means type func_r(type, char*, int, int*)
40 # Example #3: S_CBI   means type func_r(const char*, char*, int)
41
42
43 # safer_unlink 'reentr.h';
44 my $h = safer_open("reentr.h-new");
45 select $h;
46 print <<EOF;
47 /* -*- buffer-read-only: t -*-
48  *
49  *    reentr.h
50  *
51  *    Copyright (C) 2002, 2003, 2005, 2006, 2007 by Larry Wall and others
52  *
53  *    You may distribute under the terms of either the GNU General Public
54  *    License or the Artistic License, as specified in the README file.
55  *
56  *  !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
57  *  This file is built by reentr.pl from data in reentr.pl.
58  */
59
60 #ifndef REENTR_H
61 #define REENTR_H
62
63 /* If compiling for a threaded perl, we will macro-wrap the system/library
64  * interfaces (e.g. getpwent()) which have threaded versions
65  * (e.g. getpwent_r()), which will handle things correctly for
66  * the Perl interpreter, but otherwise (for XS) the wrapping does
67  * not take place.  See L<perlxs/Thread-aware system interfaces>.
68  */
69
70 #ifndef PERL_REENTR_API
71 # if defined(PERL_CORE) || defined(PERL_EXT)
72 #  define PERL_REENTR_API 1
73 # else
74 #  define PERL_REENTR_API 0
75 # endif
76 #endif
77
78 #ifdef USE_REENTRANT_API
79  
80 /* Deprecations: some platforms have the said reentrant interfaces
81  * but they are declared obsolete and are not to be used.  Often this
82  * means that the platform has threadsafed the interfaces (hopefully).
83  * All this is OS version dependent, so we are of course fooling ourselves.
84  * If you know of more deprecations on some platforms, please add your own
85  * (by editing reentr.pl, mind!) */
86
87 #ifdef __hpux
88 #   undef HAS_CRYPT_R
89 #   undef HAS_DRAND48_R
90 #   undef HAS_ENDGRENT_R
91 #   undef HAS_ENDPWENT_R
92 #   undef HAS_GETGRENT_R
93 #   undef HAS_GETPWENT_R
94 #   undef HAS_SETLOCALE_R
95 #   undef HAS_SRAND48_R
96 #   undef HAS_STRERROR_R
97 #   define NETDB_R_OBSOLETE
98 #endif
99
100 #if defined(__osf__) && defined(__alpha) /* Tru64 aka Digital UNIX */
101 #   undef HAS_CRYPT_R
102 #   undef HAS_STRERROR_R
103 #   define NETDB_R_OBSOLETE
104 #endif
105
106 /*
107  * As of OpenBSD 3.7, reentrant functions are now working, they just are
108  * incompatible with everyone else.  To make OpenBSD happy, we have to
109  * memzero out certain structures before calling the functions.
110  */
111 #if defined(__OpenBSD__)
112 #    define REENTR_MEMZERO(a,b) memzero(a,b)
113 #else
114 #    define REENTR_MEMZERO(a,b) 0
115 #endif 
116
117 #ifdef NETDB_R_OBSOLETE
118 #   undef HAS_ENDHOSTENT_R
119 #   undef HAS_ENDNETENT_R
120 #   undef HAS_ENDPROTOENT_R
121 #   undef HAS_ENDSERVENT_R
122 #   undef HAS_GETHOSTBYADDR_R
123 #   undef HAS_GETHOSTBYNAME_R
124 #   undef HAS_GETHOSTENT_R
125 #   undef HAS_GETNETBYADDR_R
126 #   undef HAS_GETNETBYNAME_R
127 #   undef HAS_GETNETENT_R
128 #   undef HAS_GETPROTOBYNAME_R
129 #   undef HAS_GETPROTOBYNUMBER_R
130 #   undef HAS_GETPROTOENT_R
131 #   undef HAS_GETSERVBYNAME_R
132 #   undef HAS_GETSERVBYPORT_R
133 #   undef HAS_GETSERVENT_R
134 #   undef HAS_SETHOSTENT_R
135 #   undef HAS_SETNETENT_R
136 #   undef HAS_SETPROTOENT_R
137 #   undef HAS_SETSERVENT_R
138 #endif
139
140 #ifdef I_PWD
141 #   include <pwd.h>
142 #endif
143 #ifdef I_GRP
144 #   include <grp.h>
145 #endif
146 #ifdef I_NETDB
147 #   include <netdb.h>
148 #endif
149 #ifdef I_STDLIB
150 #   include <stdlib.h>  /* drand48_data */
151 #endif
152 #ifdef I_CRYPT
153 #   ifdef I_CRYPT
154 #       include <crypt.h>
155 #   endif
156 #endif
157 #ifdef HAS_GETSPNAM_R
158 #   ifdef I_SHADOW
159 #       include <shadow.h>
160 #   endif
161 #endif
162
163 EOF
164
165 my %seenh; # the different prototypes signatures for this function
166 my %seena; # the different prototypes signatures for this function in order
167 my @seenf; # all the seen functions
168 my %seenp; # the different prototype signatures for all functions
169 my %seent; # the return type of this function
170 my %seens; # the type of this function's "S"
171 my %seend; # the type of this function's "D"
172 my %seenm; # all the types
173 my %seenu; # the length of the argument list of this function
174
175 while (<DATA>) { # Read in the protypes.
176     next if /^\s+$/;
177     chomp;
178     my ($func, $hdr, $type, @p) = split(/\s*\|\s*/, $_, -1);
179     my $u;
180     # Split off the real function name and the argument list.
181     ($func, $u) = split(' ', $func);
182     $seenu{$func} = defined $u ? length $u : 0;
183     my $FUNC = uc $func; # for output.
184     push @seenf, $func;
185     my %m = %map;
186     if ($type) {
187         $m{S} = "$type*";
188         $m{R} = "$type**";
189     }
190
191     # Set any special mapping variables (like X=x_t)
192     if (@p) {
193         while ($p[-1] =~ /=/) {
194             my ($k, $v) = ($p[-1] =~ /^([A-Za-z])\s*=\s*(.*)/);
195             $m{$k} = $v;
196             pop @p;
197         }
198     }
199
200     # If given the -U option open up the metaconfig unit for this function.
201     if ($opts{U} && open(U, ">d_${func}_r.U"))  {
202         binmode U;
203         select U;
204     }
205
206     if ($opts{U}) {
207         # The metaconfig units needs prerequisite dependencies.
208         my $prereqs  = '';
209         my $prereqh  = '';
210         my $prereqsh = '';
211         if ($hdr ne 'stdio') { # There's no i_stdio.
212             $prereqs  = "i_$hdr";
213             $prereqh  = "$hdr.h";
214             $prereqsh = "\$$prereqs $prereqh";
215         }
216         my @prereq = qw(Inlibc Protochk Hasproto i_systypes usethreads);
217         push @prereq, $prereqs;
218         my $hdrs = "\$i_systypes sys/types.h define stdio.h $prereqsh";
219         if ($hdr eq 'time') {
220             $hdrs .= " \$i_systime sys/time.h";
221             push @prereq, 'i_systime';
222         }
223         # Output the metaconfig unit header.
224         print <<EOF;
225 ?RCS: \$Id: d_${func}_r.U,v $
226 ?RCS:
227 ?RCS: Copyright (c) 2002,2003 Jarkko Hietaniemi
228 ?RCS:
229 ?RCS: You may distribute under the terms of either the GNU General Public
230 ?RCS: License or the Artistic License, as specified in the README file.
231 ?RCS:
232 ?RCS: Generated by the reentr.pl from the Perl 5.8 distribution.
233 ?RCS:
234 ?MAKE:d_${func}_r ${func}_r_proto: @prereq
235 ?MAKE:  -pick add \$@ %<
236 ?S:d_${func}_r:
237 ?S:     This variable conditionally defines the HAS_${FUNC}_R symbol,
238 ?S:     which indicates to the C program that the ${func}_r()
239 ?S:     routine is available.
240 ?S:.
241 ?S:${func}_r_proto:
242 ?S:     This variable encodes the prototype of ${func}_r.
243 ?S:     It is zero if d_${func}_r is undef, and one of the
244 ?S:     REENTRANT_PROTO_T_ABC macros of reentr.h if d_${func}_r
245 ?S:     is defined.
246 ?S:.
247 ?C:HAS_${FUNC}_R:
248 ?C:     This symbol, if defined, indicates that the ${func}_r routine
249 ?C:     is available to ${func} re-entrantly.
250 ?C:.
251 ?C:${FUNC}_R_PROTO:
252 ?C:     This symbol encodes the prototype of ${func}_r.
253 ?C:     It is zero if d_${func}_r is undef, and one of the
254 ?C:     REENTRANT_PROTO_T_ABC macros of reentr.h if d_${func}_r
255 ?C:     is defined.
256 ?C:.
257 ?H:#\$d_${func}_r HAS_${FUNC}_R    /**/
258 ?H:#define ${FUNC}_R_PROTO \$${func}_r_proto       /**/
259 ?H:.
260 ?T:try hdrs d_${func}_r_proto
261 ?LINT:set d_${func}_r
262 ?LINT:set ${func}_r_proto
263 : see if ${func}_r exists
264 set ${func}_r d_${func}_r
265 eval \$inlibc
266 case "\$d_${func}_r" in
267 "\$define")
268 EOF
269         print <<EOF;
270         hdrs="$hdrs"
271         case "\$d_${func}_r_proto:\$usethreads" in
272         ":define")      d_${func}_r_proto=define
273                 set d_${func}_r_proto ${func}_r \$hdrs
274                 eval \$hasproto ;;
275         *)      ;;
276         esac
277         case "\$d_${func}_r_proto" in
278         define)
279 EOF
280     }
281     for my $p (@p) {
282         my ($r, $a) = ($p =~ /^(.)_(.+)/);
283         my $v = join(", ", map { $m{$_} } split '', $a);
284         if ($opts{U}) {
285             print <<EOF ;
286         case "\$${func}_r_proto" in
287         ''|0) try='$m{$r} ${func}_r($v);'
288         ./protochk "extern \$try" \$hdrs && ${func}_r_proto=$p ;;
289         esac
290 EOF
291         }
292         $seenh{$func}->{$p}++;
293         push @{$seena{$func}}, $p;
294         $seenp{$p}++;
295         $seent{$func} = $type;
296         $seens{$func} = $m{S};
297         $seend{$func} = $m{D};
298         $seenm{$func} = \%m;
299     }
300     if ($opts{U}) {
301         print <<EOF;
302         case "\$${func}_r_proto" in
303         ''|0)   d_${func}_r=undef
304                 ${func}_r_proto=0
305                 echo "Disabling ${func}_r, cannot determine prototype." >&4 ;;
306         * )     case "\$${func}_r_proto" in
307                 REENTRANT_PROTO*) ;;
308                 *) ${func}_r_proto="REENTRANT_PROTO_\$${func}_r_proto" ;;
309                 esac
310                 echo "Prototype: \$try" ;;
311         esac
312         ;;
313         *)      case "\$usethreads" in
314                 define) echo "${func}_r has no prototype, not using it." >&4 ;;
315                 esac
316                 d_${func}_r=undef
317                 ${func}_r_proto=0
318                 ;;
319         esac
320         ;;
321 *)      ${func}_r_proto=0
322         ;;
323 esac
324
325 EOF
326         close(U);                   
327     }
328 }
329
330 close DATA;
331
332 # Prepare to continue writing the reentr.h.
333
334 select $h;
335
336 {
337     # Write out all the known prototype signatures.
338     my $i = 1;
339     for my $p (sort keys %seenp) {
340         print "#define REENTRANT_PROTO_${p}     ${i}\n";
341         $i++;
342     }
343 }
344
345 my @struct; # REENTR struct members
346 my @size;   # struct member buffer size initialization code
347 my @init;   # struct member buffer initialization (malloc) code
348 my @free;   # struct member buffer release (free) code
349 my @wrap;   # the wrapper (foo(a) -> foo_r(a,...)) cpp code
350 my @define; # defines for optional features
351
352 sub ifprotomatch {
353     my $FUNC = shift;
354     join " || ", map { "${FUNC}_R_PROTO == REENTRANT_PROTO_$_" } @_;
355 }
356
357 sub pushssif {
358     push @struct, @_;
359     push @size, @_;
360     push @init, @_;
361     push @free, @_;
362 }
363
364 sub pushinitfree {
365     my $func = shift;
366     push @init, <<EOF;
367         Newx(PL_reentrant_buffer->_${func}_buffer, PL_reentrant_buffer->_${func}_size, char);
368 EOF
369     push @free, <<EOF;
370         Safefree(PL_reentrant_buffer->_${func}_buffer);
371 EOF
372 }
373
374 sub define {
375     my ($n, $p, @F) = @_;
376     my @H;
377     my $H = uc $F[0];
378     push @define, <<EOF;
379 /* The @F using \L$n? */
380
381 EOF
382     my $GENFUNC;
383     for my $func (@F) {
384         my $FUNC = uc $func;
385         my $HAS = "${FUNC}_R_HAS_$n";
386         push @H, $HAS;
387         my @h = grep { /$p/ } @{$seena{$func}};
388         unless (defined $GENFUNC) {
389             $GENFUNC = $FUNC;
390             $GENFUNC =~ s/^GET//;
391         }
392         if (@h) {
393             push @define, "#if defined(HAS_${FUNC}_R) && (" . join(" || ", map { "${FUNC}_R_PROTO == REENTRANT_PROTO_$_" } @h) . ")\n";
394
395             push @define, <<EOF;
396 #   define $HAS
397 #else
398 #   undef  $HAS
399 #endif
400 EOF
401         }
402     }
403     return if @F == 1;
404     push @define, <<EOF;
405
406 /* Any of the @F using \L$n? */
407
408 EOF
409     push @define, "#if (" . join(" || ", map { "defined($_)" } @H) . ")\n";
410     push @define, <<EOF;
411 #   define USE_${GENFUNC}_$n
412 #else
413 #   undef  USE_${GENFUNC}_$n
414 #endif
415
416 EOF
417 }
418
419 define('BUFFER',  'B',
420        qw(getgrent getgrgid getgrnam));
421
422 define('PTR',  'R',
423        qw(getgrent getgrgid getgrnam));
424 define('PTR',  'R',
425        qw(getpwent getpwnam getpwuid));
426 define('PTR',  'R',
427        qw(getspent getspnam));
428
429 define('FPTR', 'H',
430        qw(getgrent getgrgid getgrnam setgrent endgrent));
431 define('FPTR', 'H',
432        qw(getpwent getpwnam getpwuid setpwent endpwent));
433
434 define('BUFFER',  'B',
435        qw(getpwent getpwgid getpwnam));
436
437 define('PTR', 'R',
438        qw(gethostent gethostbyaddr gethostbyname));
439 define('PTR', 'R',
440        qw(getnetent getnetbyaddr getnetbyname));
441 define('PTR', 'R',
442        qw(getprotoent getprotobyname getprotobynumber));
443 define('PTR', 'R',
444        qw(getservent getservbyname getservbyport));
445
446 define('BUFFER', 'B',
447        qw(gethostent gethostbyaddr gethostbyname));
448 define('BUFFER', 'B',
449        qw(getnetent getnetbyaddr getnetbyname));
450 define('BUFFER', 'B',
451        qw(getprotoent getprotobyname getprotobynumber));
452 define('BUFFER', 'B',
453        qw(getservent getservbyname getservbyport));
454
455 define('ERRNO', 'E',
456        qw(gethostent gethostbyaddr gethostbyname));
457 define('ERRNO', 'E',
458        qw(getnetent getnetbyaddr getnetbyname));
459
460 # The following loop accumulates the "ssif" (struct, size, init, free)
461 # sections that declare the struct members (in reentr.h), and the buffer
462 # size initialization, buffer initialization (malloc), and buffer
463 # release (free) code (in reentr.c).
464 #
465 # The loop also contains a lot of intrinsic logic about groups of
466 # functions (since functions of certain kind operate the same way).
467
468 for my $func (@seenf) {
469     my $FUNC = uc $func;
470     my $ifdef = "#ifdef HAS_${FUNC}_R\n";
471     my $endif = "#endif /* HAS_${FUNC}_R */\n";
472     if (exists $seena{$func}) {
473         my @p = @{$seena{$func}};
474         if ($func =~ /^(asctime|ctime|getlogin|setlocale|strerror|ttyname)$/) {
475             pushssif $ifdef;
476             push @struct, <<EOF;
477         char*   _${func}_buffer;
478         size_t  _${func}_size;
479 EOF
480             push @size, <<EOF;
481         PL_reentrant_buffer->_${func}_size = REENTRANTSMALLSIZE;
482 EOF
483             pushinitfree $func;
484             pushssif $endif;
485         }
486         elsif ($func =~ /^(crypt)$/) {
487             pushssif $ifdef;
488             push @struct, <<EOF;
489 #if CRYPT_R_PROTO == REENTRANT_PROTO_B_CCD
490         $seend{$func} _${func}_data;
491 #else
492         $seent{$func} *_${func}_struct_buffer;
493 #endif
494 EOF
495             push @init, <<EOF;
496 #if CRYPT_R_PROTO != REENTRANT_PROTO_B_CCD
497         PL_reentrant_buffer->_${func}_struct_buffer = 0;
498 #endif
499 EOF
500             push @free, <<EOF;
501 #if CRYPT_R_PROTO != REENTRANT_PROTO_B_CCD
502         Safefree(PL_reentrant_buffer->_${func}_struct_buffer);
503 #endif
504 EOF
505             pushssif $endif;
506         }
507         elsif ($func =~ /^(drand48|random|srandom)$/) {
508             pushssif $ifdef;
509             push @struct, <<EOF;
510         $seent{$func} _${func}_struct;
511 EOF
512             if ($1 eq 'drand48') {
513                 push @struct, <<EOF;
514         double  _${func}_double;
515 EOF
516             } elsif ($1 eq 'random') {
517             push @struct, <<EOF;
518 #   if RANDOM_R_PROTO == REENTRANT_PROTO_I_iS
519         int     _${func}_retval;
520 #   endif
521 #   if RANDOM_R_PROTO == REENTRANT_PROTO_I_lS
522         long    _${func}_retval;
523 #   endif
524 #   if RANDOM_R_PROTO == REENTRANT_PROTO_I_St
525         int32_t _${func}_retval;
526 #   endif
527 EOF
528             }
529             pushssif $endif;
530         }
531         elsif ($func =~ /^(getgrnam|getpwnam|getspnam)$/) {
532             pushssif $ifdef;
533             # 'genfunc' can be read either as 'generic' or 'genre',
534             # it represents a group of functions.
535             my $genfunc = $func;
536             $genfunc =~ s/nam/ent/g;
537             $genfunc =~ s/^get//;
538             my $GENFUNC = uc $genfunc;
539             push @struct, <<EOF;
540         $seent{$func}   _${genfunc}_struct;
541         char*   _${genfunc}_buffer;
542         size_t  _${genfunc}_size;
543 EOF
544             push @struct, <<EOF;
545 #   ifdef USE_${GENFUNC}_PTR
546         $seent{$func}*  _${genfunc}_ptr;
547 #   endif
548 EOF
549             push @struct, <<EOF;
550 #   ifdef USE_${GENFUNC}_FPTR
551         FILE*   _${genfunc}_fptr;
552 #   endif
553 EOF
554             push @init, <<EOF;
555 #   ifdef USE_${GENFUNC}_FPTR
556         PL_reentrant_buffer->_${genfunc}_fptr = NULL;
557 #   endif
558 EOF
559             my $sc = $genfunc eq 'grent' ?
560                     '_SC_GETGR_R_SIZE_MAX' : '_SC_GETPW_R_SIZE_MAX';
561             my $sz = "_${genfunc}_size";
562             push @size, <<EOF;
563 #   if defined(HAS_SYSCONF) && defined($sc) && !defined(__GLIBC__)
564         PL_reentrant_buffer->$sz = sysconf($sc);
565         if (PL_reentrant_buffer->$sz == (size_t) -1)
566                 PL_reentrant_buffer->$sz = REENTRANTUSUALSIZE;
567 #   else
568 #       if defined(__osf__) && defined(__alpha) && defined(SIABUFSIZ)
569         PL_reentrant_buffer->$sz = SIABUFSIZ;
570 #       else
571 #           ifdef __sgi
572         PL_reentrant_buffer->$sz = BUFSIZ;
573 #           else
574         PL_reentrant_buffer->$sz = REENTRANTUSUALSIZE;
575 #           endif
576 #       endif
577 #   endif 
578 EOF
579             pushinitfree $genfunc;
580             pushssif $endif;
581         }
582         elsif ($func =~ /^(gethostbyname|getnetbyname|getservbyname|getprotobyname)$/) {
583             pushssif $ifdef;
584             my $genfunc = $func;
585             $genfunc =~ s/byname/ent/;
586             $genfunc =~ s/^get//;
587             my $GENFUNC = uc $genfunc;
588             my $D = ifprotomatch($FUNC, grep {/D/} @p);
589             my $d = $seend{$func};
590             $d =~ s/\*$//; # snip: we need need the base type.
591             push @struct, <<EOF;
592         $seent{$func}   _${genfunc}_struct;
593 #   if $D
594         $d      _${genfunc}_data;
595 #   else
596         char*   _${genfunc}_buffer;
597         size_t  _${genfunc}_size;
598 #   endif
599 #   ifdef USE_${GENFUNC}_PTR
600         $seent{$func}*  _${genfunc}_ptr;
601 #   endif
602 EOF
603             push @struct, <<EOF;
604 #   ifdef USE_${GENFUNC}_ERRNO
605         int     _${genfunc}_errno;
606 #   endif 
607 EOF
608             push @size, <<EOF;
609 #if   !($D)
610         PL_reentrant_buffer->_${genfunc}_size = REENTRANTUSUALSIZE;
611 #endif
612 EOF
613             push @init, <<EOF;
614 #if   !($D)
615         Newx(PL_reentrant_buffer->_${genfunc}_buffer, PL_reentrant_buffer->_${genfunc}_size, char);
616 #endif
617 EOF
618             push @free, <<EOF;
619 #if   !($D)
620         Safefree(PL_reentrant_buffer->_${genfunc}_buffer);
621 #endif
622 EOF
623             pushssif $endif;
624         }
625         elsif ($func =~ /^(readdir|readdir64)$/) {
626             pushssif $ifdef;
627             my $R = ifprotomatch($FUNC, grep {/R/} @p);
628             push @struct, <<EOF;
629         $seent{$func}*  _${func}_struct;
630         size_t  _${func}_size;
631 #   if $R
632         $seent{$func}*  _${func}_ptr;
633 #   endif
634 EOF
635             push @size, <<EOF;
636         /* This is the size Solaris recommends.
637          * (though we go static, should use pathconf() instead) */
638         PL_reentrant_buffer->_${func}_size = sizeof($seent{$func}) + MAXPATHLEN + 1;
639 EOF
640             push @init, <<EOF;
641         PL_reentrant_buffer->_${func}_struct = ($seent{$func}*)safemalloc(PL_reentrant_buffer->_${func}_size);
642 EOF
643             push @free, <<EOF;
644         Safefree(PL_reentrant_buffer->_${func}_struct);
645 EOF
646             pushssif $endif;
647         }
648
649         push @wrap, $ifdef;
650
651         push @wrap, <<EOF;
652 #  if defined(PERL_REENTR_API) && (PERL_REENTR_API+0 == 1)
653 #   undef $func
654 EOF
655
656         # Write out what we have learned.
657         
658         my @v = 'a'..'z';
659         my $v = join(", ", @v[0..$seenu{$func}-1]);
660         for my $p (@p) {
661             my ($r, $a) = split '_', $p;
662             my $test = $r eq 'I' ? ' == 0' : '';
663             my $true  = 1;
664             my $genfunc = $func;
665             if ($genfunc =~ /^(?:get|set|end)(pw|gr|host|net|proto|serv|sp)/) {
666                 $genfunc = "${1}ent";
667             } elsif ($genfunc eq 'srand48') {
668                 $genfunc = "drand48";
669             }
670             my $b = $a;
671             my $w = '';
672             substr($b, 0, $seenu{$func}) = '';
673             if ($func =~ /^random$/) {
674                 $true = "PL_reentrant_buffer->_random_retval";
675             } elsif ($b =~ /R/) {
676                 $true = "PL_reentrant_buffer->_${genfunc}_ptr";
677             } elsif ($b =~ /T/ && $func eq 'drand48') {
678                 $true = "PL_reentrant_buffer->_${genfunc}_double";
679             } elsif ($b =~ /S/) {
680                 if ($func =~ /^readdir/) {
681                     $true = "PL_reentrant_buffer->_${genfunc}_struct";
682                 } else {
683                     $true = "&PL_reentrant_buffer->_${genfunc}_struct";
684                 }
685             } elsif ($b =~ /B/) {
686                 $true = "PL_reentrant_buffer->_${genfunc}_buffer";
687             }
688             if (length $b) {
689                 $w = join ", ",
690                          map {
691                              $_ eq 'R' ?
692                                  "&PL_reentrant_buffer->_${genfunc}_ptr" :
693                              $_ eq 'E' ?
694                                  "&PL_reentrant_buffer->_${genfunc}_errno" :
695                              $_ eq 'B' ?
696                                  "PL_reentrant_buffer->_${genfunc}_buffer" :
697                              $_ =~ /^[WI]$/ ?
698                                  "PL_reentrant_buffer->_${genfunc}_size" :
699                              $_ eq 'H' ?
700                                  "&PL_reentrant_buffer->_${genfunc}_fptr" :
701                              $_ eq 'D' ?
702                                  "&PL_reentrant_buffer->_${genfunc}_data" :
703                              $_ eq 'S' ?
704                                  ($func =~ /^readdir\d*$/ ?
705                                   "PL_reentrant_buffer->_${genfunc}_struct" :
706                                   $func =~ /^crypt$/ ?
707                                   "PL_reentrant_buffer->_${genfunc}_struct_buffer" :
708                                   "&PL_reentrant_buffer->_${genfunc}_struct") :
709                              $_ eq 'T' && $func eq 'drand48' ?
710                                  "&PL_reentrant_buffer->_${genfunc}_double" :
711                              $_ =~ /^[ilt]$/ && $func eq 'random' ?
712                                  "&PL_reentrant_buffer->_random_retval" :
713                                  $_
714                          } split '', $b;
715                 $w = ", $w" if length $v;
716             }
717
718             my $call = "${func}_r($v$w)";
719
720             # Must make OpenBSD happy
721             my $memzero = '';
722             if($p =~ /D$/ &&
723                 ($genfunc eq 'protoent' || $genfunc eq 'servent')) {
724                 $memzero = 'REENTR_MEMZERO(&PL_reentrant_buffer->_' . $genfunc . '_data, sizeof(PL_reentrant_buffer->_' . $genfunc . '_data)),';
725             }
726             push @wrap, <<EOF;
727 #   if !defined($func) && ${FUNC}_R_PROTO == REENTRANT_PROTO_$p
728 EOF
729             if ($r eq 'V' || $r eq 'B') {
730                 push @wrap, <<EOF;
731 #       define $func($v) $call
732 EOF
733             } else {
734                 if ($func =~ /^get/) {
735                     my $rv = $v ? ", $v" : "";
736                     if ($r eq 'I') {
737                         push @wrap, <<EOF;
738 #       define $func($v) ($memzero(PL_reentrant_retint = $call)$test ? $true : ((PL_reentrant_retint == ERANGE) ? ($seent{$func} *) Perl_reentrant_retry("$func"$rv) : 0))
739 EOF
740                     } else {
741                         push @wrap, <<EOF;
742 #       define $func($v) ($call$test ? $true : ((errno == ERANGE) ? ($seent{$func} *) Perl_reentrant_retry("$func"$rv) : 0))
743 EOF
744                     }
745                 } else {
746                     push @wrap, <<EOF;
747 #       define $func($v) ($call$test ? $true : 0)
748 EOF
749                 }
750             }
751             push @wrap, <<EOF;  # !defined(xxx) && XXX_R_PROTO == REENTRANT_PROTO_Y_TS
752 #   endif
753 EOF
754         }
755
756             push @wrap, <<EOF;  # defined(PERL_REENTR_API) && (PERL_REENTR_API+0 == 1)
757 #  endif
758 EOF
759
760         push @wrap, $endif, "\n";
761     }
762 }
763
764 local $" = '';
765
766 print <<EOF;
767
768 /* Defines for indicating which special features are supported. */
769
770 @define
771 typedef struct {
772 @struct
773     int dummy; /* cannot have empty structs */
774 } REENTR;
775
776 /* The wrappers. */
777
778 @wrap
779
780 #endif /* USE_REENTRANT_API */
781  
782 #endif
783
784 /* ex: set ro: */
785 EOF
786
787 safer_close($h);
788 rename_if_different('reentr.h-new', 'reentr.h');
789
790 # Prepare to write the reentr.c.
791
792 # safer_unlink 'reentr.c';
793 my $c = safer_open("reentr.c-new");
794 select $c;
795 print <<EOF;
796 /* -*- buffer-read-only: t -*-
797  *
798  *    reentr.c
799  *
800  *    Copyright (C) 2002, 2003, 2005, 2006, 2007 by Larry Wall and others
801  *
802  *    You may distribute under the terms of either the GNU General Public
803  *    License or the Artistic License, as specified in the README file.
804  *
805  *  !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
806  *  This file is built by reentr.pl from data in reentr.pl.
807  *
808  * "Saruman," I said, standing away from him, "only one hand at a time can
809  *  wield the One, and you know that well, so do not trouble to say we!"
810  *
811  * This file contains a collection of automatically created wrappers
812  * (created by running reentr.pl) for reentrant (thread-safe) versions of
813  * various library calls, such as getpwent_r.  The wrapping is done so
814  * that other files like pp_sys.c calling those library functions need not
815  * care about the differences between various platforms' idiosyncrasies
816  * regarding these reentrant interfaces.  
817  */
818
819 #include "EXTERN.h"
820 #define PERL_IN_REENTR_C
821 #include "perl.h"
822 #include "reentr.h"
823
824 void
825 Perl_reentrant_size(pTHX) {
826 #ifdef USE_REENTRANT_API
827 #define REENTRANTSMALLSIZE       256    /* Make something up. */
828 #define REENTRANTUSUALSIZE      4096    /* Make something up. */
829 @size
830 #endif /* USE_REENTRANT_API */
831 }
832
833 void
834 Perl_reentrant_init(pTHX) {
835 #ifdef USE_REENTRANT_API
836         Newx(PL_reentrant_buffer, 1, REENTR);
837         Perl_reentrant_size(aTHX);
838 @init
839 #endif /* USE_REENTRANT_API */
840 }
841
842 void
843 Perl_reentrant_free(pTHX) {
844 #ifdef USE_REENTRANT_API
845 @free
846         Safefree(PL_reentrant_buffer);
847 #endif /* USE_REENTRANT_API */
848 }
849
850 void*
851 Perl_reentrant_retry(const char *f, ...)
852 {
853     dTHX;
854     void *retptr = NULL;
855     va_list ap;
856 #ifdef USE_REENTRANT_API
857     /* Easier to special case this here than in embed.pl. (Look at what it
858        generates for proto.h) */
859     PERL_ARGS_ASSERT_REENTRANT_RETRY;
860 #endif
861     va_start(ap, f);
862     {
863 #ifdef USE_REENTRANT_API
864 #  if defined(USE_HOSTENT_BUFFER) || defined(USE_GRENT_BUFFER) || defined(USE_NETENT_BUFFER) || defined(USE_PWENT_BUFFER) || defined(USE_PROTOENT_BUFFER) || defined(USE_SERVENT_BUFFER)
865     void *p0;
866 #  endif
867 #  if defined(USE_SERVENT_BUFFER)
868     void *p1;
869 #  endif
870 #  if defined(USE_HOSTENT_BUFFER)
871     size_t asize;
872 #  endif
873 #  if defined(USE_HOSTENT_BUFFER) || defined(USE_NETENT_BUFFER) || defined(USE_PROTOENT_BUFFER) || defined(USE_SERVENT_BUFFER)
874     int anint;
875 #  endif
876
877     switch (PL_op->op_type) {
878 #ifdef USE_HOSTENT_BUFFER
879     case OP_GHBYADDR:
880     case OP_GHBYNAME:
881     case OP_GHOSTENT:
882         {
883 #ifdef PERL_REENTRANT_MAXSIZE
884             if (PL_reentrant_buffer->_hostent_size <=
885                 PERL_REENTRANT_MAXSIZE / 2)
886 #endif
887             {
888                 PL_reentrant_buffer->_hostent_size *= 2;
889                 Renew(PL_reentrant_buffer->_hostent_buffer,
890                       PL_reentrant_buffer->_hostent_size, char);
891                 switch (PL_op->op_type) {
892                 case OP_GHBYADDR:
893                     p0    = va_arg(ap, void *);
894                     asize = va_arg(ap, size_t);
895                     anint  = va_arg(ap, int);
896                     retptr = gethostbyaddr(p0, asize, anint); break;
897                 case OP_GHBYNAME:
898                     p0 = va_arg(ap, void *);
899                     retptr = gethostbyname((char *)p0); break;
900                 case OP_GHOSTENT:
901                     retptr = gethostent(); break;
902                 default:
903                     SETERRNO(ERANGE, LIB_INVARG);
904                     break;
905                 }
906             }
907         }
908         break;
909 #endif
910 #ifdef USE_GRENT_BUFFER
911     case OP_GGRNAM:
912     case OP_GGRGID:
913     case OP_GGRENT:
914         {
915 #ifdef PERL_REENTRANT_MAXSIZE
916             if (PL_reentrant_buffer->_grent_size <=
917                 PERL_REENTRANT_MAXSIZE / 2)
918 #endif
919             {
920                 Gid_t gid;
921                 PL_reentrant_buffer->_grent_size *= 2;
922                 Renew(PL_reentrant_buffer->_grent_buffer,
923                       PL_reentrant_buffer->_grent_size, char);
924                 switch (PL_op->op_type) {
925                 case OP_GGRNAM:
926                     p0 = va_arg(ap, void *);
927                     retptr = getgrnam((char *)p0); break;
928                 case OP_GGRGID:
929 #if Gid_t_size < INTSIZE
930                     gid = (Gid_t)va_arg(ap, int);
931 #else
932                     gid = va_arg(ap, Gid_t);
933 #endif
934                     retptr = getgrgid(gid); break;
935                 case OP_GGRENT:
936                     retptr = getgrent(); break;
937                 default:
938                     SETERRNO(ERANGE, LIB_INVARG);
939                     break;
940                 }
941             }
942         }
943         break;
944 #endif
945 #ifdef USE_NETENT_BUFFER
946     case OP_GNBYADDR:
947     case OP_GNBYNAME:
948     case OP_GNETENT:
949         {
950 #ifdef PERL_REENTRANT_MAXSIZE
951             if (PL_reentrant_buffer->_netent_size <=
952                 PERL_REENTRANT_MAXSIZE / 2)
953 #endif
954             {
955                 Netdb_net_t net;
956                 PL_reentrant_buffer->_netent_size *= 2;
957                 Renew(PL_reentrant_buffer->_netent_buffer,
958                       PL_reentrant_buffer->_netent_size, char);
959                 switch (PL_op->op_type) {
960                 case OP_GNBYADDR:
961                     net = va_arg(ap, Netdb_net_t);
962                     anint = va_arg(ap, int);
963                     retptr = getnetbyaddr(net, anint); break;
964                 case OP_GNBYNAME:
965                     p0 = va_arg(ap, void *);
966                     retptr = getnetbyname((char *)p0); break;
967                 case OP_GNETENT:
968                     retptr = getnetent(); break;
969                 default:
970                     SETERRNO(ERANGE, LIB_INVARG);
971                     break;
972                 }
973             }
974         }
975         break;
976 #endif
977 #ifdef USE_PWENT_BUFFER
978     case OP_GPWNAM:
979     case OP_GPWUID:
980     case OP_GPWENT:
981         {
982 #ifdef PERL_REENTRANT_MAXSIZE
983             if (PL_reentrant_buffer->_pwent_size <=
984                 PERL_REENTRANT_MAXSIZE / 2)
985 #endif
986             {
987                 Uid_t uid;
988                 PL_reentrant_buffer->_pwent_size *= 2;
989                 Renew(PL_reentrant_buffer->_pwent_buffer,
990                       PL_reentrant_buffer->_pwent_size, char);
991                 switch (PL_op->op_type) {
992                 case OP_GPWNAM:
993                     p0 = va_arg(ap, void *);
994                     retptr = getpwnam((char *)p0); break;
995                 case OP_GPWUID:
996 #if Uid_t_size < INTSIZE
997                     uid = (Uid_t)va_arg(ap, int);
998 #else
999                     uid = va_arg(ap, Uid_t);
1000 #endif
1001                     retptr = getpwuid(uid); break;
1002                 case OP_GPWENT:
1003                     retptr = getpwent(); break;
1004                 default:
1005                     SETERRNO(ERANGE, LIB_INVARG);
1006                     break;
1007                 }
1008             }
1009         }
1010         break;
1011 #endif
1012 #ifdef USE_PROTOENT_BUFFER
1013     case OP_GPBYNAME:
1014     case OP_GPBYNUMBER:
1015     case OP_GPROTOENT:
1016         {
1017 #ifdef PERL_REENTRANT_MAXSIZE
1018             if (PL_reentrant_buffer->_protoent_size <=
1019                 PERL_REENTRANT_MAXSIZE / 2)
1020 #endif
1021             {
1022                 PL_reentrant_buffer->_protoent_size *= 2;
1023                 Renew(PL_reentrant_buffer->_protoent_buffer,
1024                       PL_reentrant_buffer->_protoent_size, char);
1025                 switch (PL_op->op_type) {
1026                 case OP_GPBYNAME:
1027                     p0 = va_arg(ap, void *);
1028                     retptr = getprotobyname((char *)p0); break;
1029                 case OP_GPBYNUMBER:
1030                     anint = va_arg(ap, int);
1031                     retptr = getprotobynumber(anint); break;
1032                 case OP_GPROTOENT:
1033                     retptr = getprotoent(); break;
1034                 default:
1035                     SETERRNO(ERANGE, LIB_INVARG);
1036                     break;
1037                 }
1038             }
1039         }
1040         break;
1041 #endif
1042 #ifdef USE_SERVENT_BUFFER
1043     case OP_GSBYNAME:
1044     case OP_GSBYPORT:
1045     case OP_GSERVENT:
1046         {
1047 #ifdef PERL_REENTRANT_MAXSIZE
1048             if (PL_reentrant_buffer->_servent_size <=
1049                 PERL_REENTRANT_MAXSIZE / 2)
1050 #endif
1051             {
1052                 PL_reentrant_buffer->_servent_size *= 2;
1053                 Renew(PL_reentrant_buffer->_servent_buffer,
1054                       PL_reentrant_buffer->_servent_size, char);
1055                 switch (PL_op->op_type) {
1056                 case OP_GSBYNAME:
1057                     p0 = va_arg(ap, void *);
1058                     p1 = va_arg(ap, void *);
1059                     retptr = getservbyname((char *)p0, (char *)p1); break;
1060                 case OP_GSBYPORT:
1061                     anint = va_arg(ap, int);
1062                     p0 = va_arg(ap, void *);
1063                     retptr = getservbyport(anint, (char *)p0); break;
1064                 case OP_GSERVENT:
1065                     retptr = getservent(); break;
1066                 default:
1067                     SETERRNO(ERANGE, LIB_INVARG);
1068                     break;
1069                 }
1070             }
1071         }
1072         break;
1073 #endif
1074     default:
1075         /* Not known how to retry, so just fail. */
1076         break;
1077     }
1078 #else
1079     PERL_UNUSED_ARG(f);
1080 #endif
1081     }
1082     va_end(ap);
1083     return retptr;
1084 }
1085
1086 /* ex: set ro: */
1087 EOF
1088
1089 safer_close($c);
1090 rename_if_different('reentr.c-new', 'reentr.c');
1091
1092 __DATA__
1093 asctime S       |time   |const struct tm|B_SB|B_SBI|I_SB|I_SBI
1094 crypt CC        |crypt  |struct crypt_data|B_CCS|B_CCD|D=CRYPTD*
1095 ctermid B       |stdio  |               |B_B
1096 ctime S         |time   |const time_t   |B_SB|B_SBI|I_SB|I_SBI
1097 drand48         |stdlib |struct drand48_data    |I_ST|T=double*
1098 endgrent        |grp    |               |I_H|V_H
1099 endhostent      |netdb  |               |I_D|V_D|D=struct hostent_data*
1100 endnetent       |netdb  |               |I_D|V_D|D=struct netent_data*
1101 endprotoent     |netdb  |               |I_D|V_D|D=struct protoent_data*
1102 endpwent        |pwd    |               |I_H|V_H
1103 endservent      |netdb  |               |I_D|V_D|D=struct servent_data*
1104 getgrent        |grp    |struct group   |I_SBWR|I_SBIR|S_SBW|S_SBI|I_SBI|I_SBIH
1105 getgrgid T      |grp    |struct group   |I_TSBWR|I_TSBIR|I_TSBI|S_TSBI|T=gid_t
1106 getgrnam C      |grp    |struct group   |I_CSBWR|I_CSBIR|S_CBI|I_CSBI|S_CSBI
1107 gethostbyaddr CWI       |netdb  |struct hostent |I_CWISBWRE|S_CWISBWIE|S_CWISBIE|S_TWISBIE|S_CIISBIE|S_CSBIE|S_TSBIE|I_CWISD|I_CIISD|I_CII|I_TsISBWRE|D=struct hostent_data*|T=const void*|s=socklen_t
1108 gethostbyname C |netdb  |struct hostent |I_CSBWRE|S_CSBIE|I_CSD|D=struct hostent_data*
1109 gethostent      |netdb  |struct hostent |I_SBWRE|I_SBIE|S_SBIE|S_SBI|I_SBI|I_SD|D=struct hostent_data*
1110 getlogin        |unistd |char           |I_BW|I_BI|B_BW|B_BI
1111 getnetbyaddr LI |netdb  |struct netent  |I_UISBWRE|I_LISBI|S_TISBI|S_LISBI|I_TISD|I_LISD|I_IISD|I_uISBWRE|D=struct netent_data*|T=in_addr_t|U=unsigned long|u=uint32_t
1112 getnetbyname C  |netdb  |struct netent  |I_CSBWRE|I_CSBI|S_CSBI|I_CSD|D=struct netent_data*
1113 getnetent       |netdb  |struct netent  |I_SBWRE|I_SBIE|S_SBIE|S_SBI|I_SBI|I_SD|D=struct netent_data*
1114 getprotobyname C|netdb  |struct protoent|I_CSBWR|S_CSBI|I_CSD|D=struct protoent_data*
1115 getprotobynumber I      |netdb  |struct protoent|I_ISBWR|S_ISBI|I_ISD|D=struct protoent_data*
1116 getprotoent     |netdb  |struct protoent|I_SBWR|I_SBI|S_SBI|I_SD|D=struct protoent_data*
1117 getpwent        |pwd    |struct passwd  |I_SBWR|I_SBIR|S_SBW|S_SBI|I_SBI|I_SBIH
1118 getpwnam C      |pwd    |struct passwd  |I_CSBWR|I_CSBIR|S_CSBI|I_CSBI
1119 getpwuid T      |pwd    |struct passwd  |I_TSBWR|I_TSBIR|I_TSBI|S_TSBI|T=uid_t
1120 getservbyname CC|netdb  |struct servent |I_CCSBWR|S_CCSBI|I_CCSD|D=struct servent_data*
1121 getservbyport IC|netdb  |struct servent |I_ICSBWR|S_ICSBI|I_ICSD|D=struct servent_data*
1122 getservent      |netdb  |struct servent |I_SBWR|I_SBI|S_SBI|I_SD|D=struct servent_data*
1123 getspnam C      |shadow |struct spwd    |I_CSBWR|S_CSBI
1124 random          |stdlib |struct random_data|I_iS|I_lS|I_St|i=int*|l=long*|t=int32_t*
1125 readdir T       |dirent |struct dirent  |I_TSR|I_TS|T=DIR*
1126 readdir64 T     |dirent |struct dirent64|I_TSR|I_TS|T=DIR*
1127 setgrent        |grp    |               |I_H|V_H
1128 sethostent I    |netdb  |               |I_ID|V_ID|D=struct hostent_data*
1129 setlocale IC    |locale |               |I_ICBI
1130 setnetent I     |netdb  |               |I_ID|V_ID|D=struct netent_data*
1131 setprotoent I   |netdb  |               |I_ID|V_ID|D=struct protoent_data*
1132 setpwent        |pwd    |               |I_H|V_H
1133 setservent I    |netdb  |               |I_ID|V_ID|D=struct servent_data*
1134 srand48 L       |stdlib |struct drand48_data    |I_LS
1135 srandom T       |stdlib |struct random_data|I_TS|T=unsigned int
1136 strerror I      |string |               |I_IBW|I_IBI|B_IBW
1137 tmpnam B        |stdio  |               |B_B
1138 ttyname I       |unistd |               |I_IBW|I_IBI|B_IBI