This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add "profile installman" to the TODO.
[perl5.git] / reentr.pl
CommitLineData
10bc17b6
JH
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
e06c4d37
NC
8BEGIN {
9 # Get function prototypes
10 require 'regen_lib.pl';
11}
12
10bc17b6
JH
13use strict;
14use Getopt::Std;
15my %opts;
b6b9a099 16getopts('Uv', \%opts);
10bc17b6
JH
17
18my %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
b6b9a099 43# safer_unlink 'reentr.h';
424a4936
NC
44my $h = safer_open("reentr.h-new");
45select $h;
10bc17b6 46print <<EOF;
37442d52
RGS
47/* -*- buffer-read-only: t -*-
48 *
10bc17b6
JH
49 * reentr.h
50 *
38f14693 51 * Copyright (C) 2002, 2003, 2005, 2006, 2007 by Larry Wall and others
10bc17b6
JH
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 !!!!!!!
61296642 57 * This file is built by reentr.pl from data in reentr.pl.
10bc17b6
JH
58 */
59
60#ifndef REENTR_H
37442d52 61#define REENTR_H
10bc17b6 62
832a833b
JH
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
10bc17b6
JH
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.
832a833b
JH
84 * If you know of more deprecations on some platforms, please add your own
85 * (by editing reentr.pl, mind!) */
10bc17b6
JH
86
87#ifdef __hpux
88# undef HAS_CRYPT_R
89# undef HAS_DRAND48_R
efa45b01
JH
90# undef HAS_ENDGRENT_R
91# undef HAS_ENDPWENT_R
10bc17b6
JH
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
23e2b7a9
SP
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__)
3fb2f3ac 112# define REENTR_MEMZERO(a,b) memzero(a,b)
23e2b7a9 113#else
3fb2f3ac 114# define REENTR_MEMZERO(a,b) 0
23e2b7a9
SP
115#endif
116
10bc17b6
JH
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
163EOF
164
aa418cf1
JH
165my %seenh; # the different prototypes signatures for this function
166my %seena; # the different prototypes signatures for this function in order
167my @seenf; # all the seen functions
168my %seenp; # the different prototype signatures for all functions
169my %seent; # the return type of this function
170my %seens; # the type of this function's "S"
171my %seend; # the type of this function's "D"
a845a0d4 172my %seenm; # all the types
aa418cf1
JH
173my %seenu; # the length of the argument list of this function
174
175while (<DATA>) { # Read in the protypes.
10bc17b6
JH
176 next if /^\s+$/;
177 chomp;
aa418cf1 178 my ($func, $hdr, $type, @p) = split(/\s*\|\s*/, $_, -1);
10bc17b6 179 my $u;
aa418cf1
JH
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;
10bc17b6 185 my %m = %map;
aa418cf1
JH
186 if ($type) {
187 $m{S} = "$type*";
188 $m{R} = "$type**";
10bc17b6 189 }
aa418cf1
JH
190
191 # Set any special mapping variables (like X=x_t)
10bc17b6
JH
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 }
aa418cf1
JH
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")) {
0eb6355a 202 binmode U;
10bc17b6
JH
203 select U;
204 }
aa418cf1 205
d63eadf0 206 if ($opts{U}) {
aa418cf1
JH
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 }
1fdb6f84
JH
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";
aa418cf1 219 if ($hdr eq 'time') {
1fdb6f84
JH
220 $hdrs .= " \$i_systime sys/time.h";
221 push @prereq, 'i_systime';
222 }
aa418cf1 223 # Output the metaconfig unit header.
d63eadf0 224 print <<EOF;
aa418cf1 225?RCS: \$Id: d_${func}_r.U,v $
10bc17b6 226?RCS:
a845a0d4 227?RCS: Copyright (c) 2002,2003 Jarkko Hietaniemi
10bc17b6
JH
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:
aa418cf1 234?MAKE:d_${func}_r ${func}_r_proto: @prereq
10bc17b6 235?MAKE: -pick add \$@ %<
aa418cf1
JH
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()
10bc17b6
JH
239?S: routine is available.
240?S:.
aa418cf1
JH
241?S:${func}_r_proto:
242?S: This variable encodes the prototype of ${func}_r.
39183afa
JH
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.
10bc17b6 246?S:.
aa418cf1
JH
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.
10bc17b6 250?C:.
aa418cf1
JH
251?C:${FUNC}_R_PROTO:
252?C: This symbol encodes the prototype of ${func}_r.
39183afa
JH
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.
10bc17b6 256?C:.
aa418cf1
JH
257?H:#\$d_${func}_r HAS_${FUNC}_R /**/
258?H:#define ${FUNC}_R_PROTO \$${func}_r_proto /**/
10bc17b6 259?H:.
aa418cf1
JH
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
264set ${func}_r d_${func}_r
10bc17b6 265eval \$inlibc
aa418cf1 266case "\$d_${func}_r" in
10bc17b6 267"\$define")
d63eadf0 268EOF
d63eadf0
JH
269 print <<EOF;
270 hdrs="$hdrs"
aa418cf1
JH
271 case "\$d_${func}_r_proto:\$usethreads" in
272 ":define") d_${func}_r_proto=define
273 set d_${func}_r_proto ${func}_r \$hdrs
a48ec845
JH
274 eval \$hasproto ;;
275 *) ;;
276 esac
aa418cf1 277 case "\$d_${func}_r_proto" in
a48ec845 278 define)
10bc17b6 279EOF
d63eadf0
JH
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 ;
aa418cf1
JH
286 case "\$${func}_r_proto" in
287 ''|0) try='$m{$r} ${func}_r($v);'
288 ./protochk "extern \$try" \$hdrs && ${func}_r_proto=$p ;;
10bc17b6
JH
289 esac
290EOF
d63eadf0 291 }
aa418cf1
JH
292 $seenh{$func}->{$p}++;
293 push @{$seena{$func}}, $p;
d63eadf0 294 $seenp{$p}++;
aa418cf1
JH
295 $seent{$func} = $type;
296 $seens{$func} = $m{S};
297 $seend{$func} = $m{D};
a845a0d4 298 $seenm{$func} = \%m;
d63eadf0
JH
299 }
300 if ($opts{U}) {
301 print <<EOF;
aa418cf1
JH
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
10bc17b6 307 REENTRANT_PROTO*) ;;
aa418cf1 308 *) ${func}_r_proto="REENTRANT_PROTO_\$${func}_r_proto" ;;
10bc17b6
JH
309 esac
310 echo "Prototype: \$try" ;;
311 esac
312 ;;
c18e646a 313 *) case "\$usethreads" in
aa418cf1 314 define) echo "${func}_r has no prototype, not using it." >&4 ;;
c18e646a 315 esac
aa418cf1
JH
316 d_${func}_r=undef
317 ${func}_r_proto=0
c18e646a 318 ;;
a48ec845
JH
319 esac
320 ;;
aa418cf1 321*) ${func}_r_proto=0
10bc17b6
JH
322 ;;
323esac
324
325EOF
326 close(U);
327 }
328}
329
330close DATA;
331
aa418cf1
JH
332# Prepare to continue writing the reentr.h.
333
424a4936 334select $h;
10bc17b6
JH
335
336{
aa418cf1 337 # Write out all the known prototype signatures.
10bc17b6
JH
338 my $i = 1;
339 for my $p (sort keys %seenp) {
340 print "#define REENTRANT_PROTO_${p} ${i}\n";
341 $i++;
342 }
343}
344
aa418cf1
JH
345my @struct; # REENTR struct members
346my @size; # struct member buffer size initialization code
347my @init; # struct member buffer initialization (malloc) code
348my @free; # struct member buffer release (free) code
349my @wrap; # the wrapper (foo(a) -> foo_r(a,...)) cpp code
350my @define; # defines for optional features
351
10bc17b6 352sub ifprotomatch {
aa418cf1
JH
353 my $FUNC = shift;
354 join " || ", map { "${FUNC}_R_PROTO == REENTRANT_PROTO_$_" } @_;
10bc17b6
JH
355}
356
10bc17b6
JH
357sub pushssif {
358 push @struct, @_;
359 push @size, @_;
360 push @init, @_;
361 push @free, @_;
362}
363
364sub pushinitfree {
aa418cf1 365 my $func = shift;
10bc17b6 366 push @init, <<EOF;
a02a5408 367 Newx(PL_reentrant_buffer->_${func}_buffer, PL_reentrant_buffer->_${func}_size, char);
10bc17b6
JH
368EOF
369 push @free, <<EOF;
aa418cf1 370 Safefree(PL_reentrant_buffer->_${func}_buffer);
10bc17b6
JH
371EOF
372}
373
374sub 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
381EOF
aa418cf1
JH
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//;
f7937171 391 }
10bc17b6 392 if (@h) {
aa418cf1 393 push @define, "#if defined(HAS_${FUNC}_R) && (" . join(" || ", map { "${FUNC}_R_PROTO == REENTRANT_PROTO_$_" } @h) . ")\n";
10bc17b6
JH
394
395 push @define, <<EOF;
aa418cf1 396# define $HAS
10bc17b6 397#else
aa418cf1 398# undef $HAS
10bc17b6
JH
399#endif
400EOF
401 }
402 }
0891a229 403 return if @F == 1;
10bc17b6
JH
404 push @define, <<EOF;
405
406/* Any of the @F using \L$n? */
407
408EOF
409 push @define, "#if (" . join(" || ", map { "defined($_)" } @H) . ")\n";
410 push @define, <<EOF;
aa418cf1 411# define USE_${GENFUNC}_$n
10bc17b6 412#else
aa418cf1 413# undef USE_${GENFUNC}_$n
10bc17b6
JH
414#endif
415
416EOF
417}
418
edd309b7
JH
419define('BUFFER', 'B',
420 qw(getgrent getgrgid getgrnam));
421
10bc17b6
JH
422define('PTR', 'R',
423 qw(getgrent getgrgid getgrnam));
424define('PTR', 'R',
425 qw(getpwent getpwnam getpwuid));
426define('PTR', 'R',
427 qw(getspent getspnam));
428
429define('FPTR', 'H',
f7937171 430 qw(getgrent getgrgid getgrnam setgrent endgrent));
10bc17b6 431define('FPTR', 'H',
f7937171 432 qw(getpwent getpwnam getpwuid setpwent endpwent));
10bc17b6 433
edd309b7
JH
434define('BUFFER', 'B',
435 qw(getpwent getpwgid getpwnam));
436
10bc17b6
JH
437define('PTR', 'R',
438 qw(gethostent gethostbyaddr gethostbyname));
439define('PTR', 'R',
440 qw(getnetent getnetbyaddr getnetbyname));
441define('PTR', 'R',
442 qw(getprotoent getprotobyname getprotobynumber));
443define('PTR', 'R',
444 qw(getservent getservbyname getservbyport));
445
edd309b7
JH
446define('BUFFER', 'B',
447 qw(gethostent gethostbyaddr gethostbyname));
448define('BUFFER', 'B',
449 qw(getnetent getnetbyaddr getnetbyname));
450define('BUFFER', 'B',
451 qw(getprotoent getprotobyname getprotobynumber));
452define('BUFFER', 'B',
453 qw(getservent getservbyname getservbyport));
454
10bc17b6
JH
455define('ERRNO', 'E',
456 qw(gethostent gethostbyaddr gethostbyname));
457define('ERRNO', 'E',
458 qw(getnetent getnetbyaddr getnetbyname));
459
aa418cf1
JH
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
468for 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)$/) {
10bc17b6
JH
475 pushssif $ifdef;
476 push @struct, <<EOF;
aa418cf1
JH
477 char* _${func}_buffer;
478 size_t _${func}_size;
10bc17b6
JH
479EOF
480 push @size, <<EOF;
aa418cf1 481 PL_reentrant_buffer->_${func}_size = REENTRANTSMALLSIZE;
10bc17b6 482EOF
aa418cf1 483 pushinitfree $func;
10bc17b6
JH
484 pushssif $endif;
485 }
aa418cf1 486 elsif ($func =~ /^(crypt)$/) {
10bc17b6
JH
487 pushssif $ifdef;
488 push @struct, <<EOF;
b430fd04 489#if CRYPT_R_PROTO == REENTRANT_PROTO_B_CCD
aa418cf1 490 $seend{$func} _${func}_data;
b430fd04 491#else
05404ffe 492 $seent{$func} *_${func}_struct_buffer;
b430fd04 493#endif
10bc17b6 494EOF
b430fd04 495 push @init, <<EOF;
05404ffe
JH
496#if CRYPT_R_PROTO != REENTRANT_PROTO_B_CCD
497 PL_reentrant_buffer->_${func}_struct_buffer = 0;
498#endif
499EOF
500 push @free, <<EOF;
501#if CRYPT_R_PROTO != REENTRANT_PROTO_B_CCD
502 Safefree(PL_reentrant_buffer->_${func}_struct_buffer);
10bc17b6
JH
503#endif
504EOF
b430fd04
JH
505 pushssif $endif;
506 }
5cb13b8d 507 elsif ($func =~ /^(drand48|gmtime|localtime|random|srandom)$/) {
b430fd04
JH
508 pushssif $ifdef;
509 push @struct, <<EOF;
aa418cf1 510 $seent{$func} _${func}_struct;
b430fd04 511EOF
10bc17b6
JH
512 if ($1 eq 'drand48') {
513 push @struct, <<EOF;
aa418cf1 514 double _${func}_double;
10bc17b6 515EOF
a845a0d4
JH
516 } elsif ($1 eq 'random') {
517 push @struct, <<EOF;
b3b3b51f 518# if RANDOM_R_PROTO == REENTRANT_PROTO_I_iS
a845a0d4
JH
519 int _${func}_retval;
520# endif
b3b3b51f 521# if RANDOM_R_PROTO == REENTRANT_PROTO_I_lS
a845a0d4
JH
522 long _${func}_retval;
523# endif
b3b3b51f 524# if RANDOM_R_PROTO == REENTRANT_PROTO_I_St
a845a0d4
JH
525 int32_t _${func}_retval;
526# endif
527EOF
10bc17b6
JH
528 }
529 pushssif $endif;
530 }
aa418cf1 531 elsif ($func =~ /^(getgrnam|getpwnam|getspnam)$/) {
10bc17b6 532 pushssif $ifdef;
aa418cf1
JH
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;
10bc17b6 539 push @struct, <<EOF;
aa418cf1
JH
540 $seent{$func} _${genfunc}_struct;
541 char* _${genfunc}_buffer;
542 size_t _${genfunc}_size;
10bc17b6
JH
543EOF
544 push @struct, <<EOF;
aa418cf1
JH
545# ifdef USE_${GENFUNC}_PTR
546 $seent{$func}* _${genfunc}_ptr;
10bc17b6
JH
547# endif
548EOF
0de8cad8 549 push @struct, <<EOF;
aa418cf1
JH
550# ifdef USE_${GENFUNC}_FPTR
551 FILE* _${genfunc}_fptr;
10bc17b6
JH
552# endif
553EOF
0de8cad8 554 push @init, <<EOF;
aa418cf1
JH
555# ifdef USE_${GENFUNC}_FPTR
556 PL_reentrant_buffer->_${genfunc}_fptr = NULL;
10bc17b6
JH
557# endif
558EOF
0de8cad8 559 my $sc = $genfunc eq 'grent' ?
10bc17b6 560 '_SC_GETGR_R_SIZE_MAX' : '_SC_GETPW_R_SIZE_MAX';
0de8cad8
RGS
561 my $sz = "_${genfunc}_size";
562 push @size, <<EOF;
10bc17b6 563# if defined(HAS_SYSCONF) && defined($sc) && !defined(__GLIBC__)
0de8cad8 564 PL_reentrant_buffer->$sz = sysconf($sc);
832a833b 565 if (PL_reentrant_buffer->$sz == (size_t) -1)
e3410746 566 PL_reentrant_buffer->$sz = REENTRANTUSUALSIZE;
10bc17b6
JH
567# else
568# if defined(__osf__) && defined(__alpha) && defined(SIABUFSIZ)
0de8cad8 569 PL_reentrant_buffer->$sz = SIABUFSIZ;
10bc17b6
JH
570# else
571# ifdef __sgi
0de8cad8 572 PL_reentrant_buffer->$sz = BUFSIZ;
10bc17b6 573# else
0de8cad8 574 PL_reentrant_buffer->$sz = REENTRANTUSUALSIZE;
10bc17b6
JH
575# endif
576# endif
577# endif
578EOF
aa418cf1 579 pushinitfree $genfunc;
10bc17b6
JH
580 pushssif $endif;
581 }
aa418cf1 582 elsif ($func =~ /^(gethostbyname|getnetbyname|getservbyname|getprotobyname)$/) {
10bc17b6 583 pushssif $ifdef;
aa418cf1
JH
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};
31ee0cb7 590 $d =~ s/\*$//; # snip: we need need the base type.
10bc17b6 591 push @struct, <<EOF;
aa418cf1 592 $seent{$func} _${genfunc}_struct;
10bc17b6 593# if $D
aa418cf1 594 $d _${genfunc}_data;
10bc17b6 595# else
aa418cf1
JH
596 char* _${genfunc}_buffer;
597 size_t _${genfunc}_size;
10bc17b6 598# endif
aa418cf1
JH
599# ifdef USE_${GENFUNC}_PTR
600 $seent{$func}* _${genfunc}_ptr;
10bc17b6
JH
601# endif
602EOF
603 push @struct, <<EOF;
aa418cf1
JH
604# ifdef USE_${GENFUNC}_ERRNO
605 int _${genfunc}_errno;
10bc17b6
JH
606# endif
607EOF
608 push @size, <<EOF;
609#if !($D)
aa418cf1 610 PL_reentrant_buffer->_${genfunc}_size = REENTRANTUSUALSIZE;
10bc17b6
JH
611#endif
612EOF
613 push @init, <<EOF;
614#if !($D)
a02a5408 615 Newx(PL_reentrant_buffer->_${genfunc}_buffer, PL_reentrant_buffer->_${genfunc}_size, char);
10bc17b6
JH
616#endif
617EOF
618 push @free, <<EOF;
619#if !($D)
aa418cf1 620 Safefree(PL_reentrant_buffer->_${genfunc}_buffer);
10bc17b6
JH
621#endif
622EOF
623 pushssif $endif;
624 }
aa418cf1 625 elsif ($func =~ /^(readdir|readdir64)$/) {
10bc17b6 626 pushssif $ifdef;
aa418cf1 627 my $R = ifprotomatch($FUNC, grep {/R/} @p);
10bc17b6 628 push @struct, <<EOF;
aa418cf1
JH
629 $seent{$func}* _${func}_struct;
630 size_t _${func}_size;
10bc17b6 631# if $R
aa418cf1 632 $seent{$func}* _${func}_ptr;
10bc17b6
JH
633# endif
634EOF
635 push @size, <<EOF;
636 /* This is the size Solaris recommends.
637 * (though we go static, should use pathconf() instead) */
aa418cf1 638 PL_reentrant_buffer->_${func}_size = sizeof($seent{$func}) + MAXPATHLEN + 1;
10bc17b6
JH
639EOF
640 push @init, <<EOF;
aa418cf1 641 PL_reentrant_buffer->_${func}_struct = ($seent{$func}*)safemalloc(PL_reentrant_buffer->_${func}_size);
10bc17b6
JH
642EOF
643 push @free, <<EOF;
aa418cf1 644 Safefree(PL_reentrant_buffer->_${func}_struct);
10bc17b6
JH
645EOF
646 pushssif $endif;
647 }
648
649 push @wrap, $ifdef;
650
10bc17b6 651 push @wrap, <<EOF;
d896b068 652# if defined(PERL_REENTR_API) && (PERL_REENTR_API+0 == 1)
aa418cf1 653# undef $func
10bc17b6 654EOF
aa418cf1
JH
655
656 # Write out what we have learned.
657
10bc17b6 658 my @v = 'a'..'z';
aa418cf1 659 my $v = join(", ", @v[0..$seenu{$func}-1]);
10bc17b6
JH
660 for my $p (@p) {
661 my ($r, $a) = split '_', $p;
662 my $test = $r eq 'I' ? ' == 0' : '';
663 my $true = 1;
aa418cf1
JH
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";
10bc17b6
JH
669 }
670 my $b = $a;
671 my $w = '';
aa418cf1 672 substr($b, 0, $seenu{$func}) = '';
a845a0d4
JH
673 if ($func =~ /^random$/) {
674 $true = "PL_reentrant_buffer->_random_retval";
675 } elsif ($b =~ /R/) {
aa418cf1
JH
676 $true = "PL_reentrant_buffer->_${genfunc}_ptr";
677 } elsif ($b =~ /T/ && $func eq 'drand48') {
678 $true = "PL_reentrant_buffer->_${genfunc}_double";
10bc17b6 679 } elsif ($b =~ /S/) {
aa418cf1
JH
680 if ($func =~ /^readdir/) {
681 $true = "PL_reentrant_buffer->_${genfunc}_struct";
10bc17b6 682 } else {
aa418cf1 683 $true = "&PL_reentrant_buffer->_${genfunc}_struct";
10bc17b6
JH
684 }
685 } elsif ($b =~ /B/) {
aa418cf1 686 $true = "PL_reentrant_buffer->_${genfunc}_buffer";
10bc17b6
JH
687 }
688 if (length $b) {
689 $w = join ", ",
690 map {
691 $_ eq 'R' ?
aa418cf1 692 "&PL_reentrant_buffer->_${genfunc}_ptr" :
10bc17b6 693 $_ eq 'E' ?
aa418cf1 694 "&PL_reentrant_buffer->_${genfunc}_errno" :
10bc17b6 695 $_ eq 'B' ?
aa418cf1 696 "PL_reentrant_buffer->_${genfunc}_buffer" :
10bc17b6 697 $_ =~ /^[WI]$/ ?
aa418cf1 698 "PL_reentrant_buffer->_${genfunc}_size" :
10bc17b6 699 $_ eq 'H' ?
aa418cf1 700 "&PL_reentrant_buffer->_${genfunc}_fptr" :
10bc17b6 701 $_ eq 'D' ?
aa418cf1 702 "&PL_reentrant_buffer->_${genfunc}_data" :
10bc17b6 703 $_ eq 'S' ?
05404ffe 704 ($func =~ /^readdir\d*$/ ?
aa418cf1 705 "PL_reentrant_buffer->_${genfunc}_struct" :
05404ffe
JH
706 $func =~ /^crypt$/ ?
707 "PL_reentrant_buffer->_${genfunc}_struct_buffer" :
708 "&PL_reentrant_buffer->_${genfunc}_struct") :
aa418cf1
JH
709 $_ eq 'T' && $func eq 'drand48' ?
710 "&PL_reentrant_buffer->_${genfunc}_double" :
a845a0d4
JH
711 $_ =~ /^[ilt]$/ && $func eq 'random' ?
712 "&PL_reentrant_buffer->_random_retval" :
10bc17b6
JH
713 $_
714 } split '', $b;
715 $w = ", $w" if length $v;
716 }
832a833b 717
aa418cf1 718 my $call = "${func}_r($v$w)";
64e28687
RGS
719 if ($func eq 'localtime') {
720 $call = "L_R_TZSET $call";
721 }
23e2b7a9
SP
722
723 # Must make OpenBSD happy
724 my $memzero = '';
725 if($p =~ /D$/ &&
726 ($genfunc eq 'protoent' || $genfunc eq 'servent')) {
3fb2f3ac 727 $memzero = 'REENTR_MEMZERO(&PL_reentrant_buffer->_' . $genfunc . '_data, sizeof(PL_reentrant_buffer->_' . $genfunc . '_data)),';
23e2b7a9 728 }
10bc17b6 729 push @wrap, <<EOF;
aa418cf1 730# if !defined($func) && ${FUNC}_R_PROTO == REENTRANT_PROTO_$p
10bc17b6
JH
731EOF
732 if ($r eq 'V' || $r eq 'B') {
733 push @wrap, <<EOF;
aa418cf1 734# define $func($v) $call
10bc17b6
JH
735EOF
736 } else {
aa418cf1 737 if ($func =~ /^get/) {
edd309b7 738 my $rv = $v ? ", $v" : "";
0891a229
JH
739 if ($r eq 'I') {
740 push @wrap, <<EOF;
b8dcbfa5 741# define $func($v) ($memzero(PL_reentrant_retint = $call)$test ? $true : ((PL_reentrant_retint == ERANGE) ? ($seent{$func} *) Perl_reentrant_retry("$func"$rv) : 0))
0891a229
JH
742EOF
743 } else {
744 push @wrap, <<EOF;
f6f0b69b 745# define $func($v) ($call$test ? $true : ((errno == ERANGE) ? ($seent{$func} *) Perl_reentrant_retry("$func"$rv) : 0))
10bc17b6 746EOF
0891a229 747 }
edd309b7
JH
748 } else {
749 push @wrap, <<EOF;
aa418cf1 750# define $func($v) ($call$test ? $true : 0)
edd309b7
JH
751EOF
752 }
10bc17b6
JH
753 }
754 push @wrap, <<EOF;
d896b068 755# endif /* if defined(PERL_REENTR_API) && (PERL_REENTR_API+0 == 1) */
10bc17b6
JH
756EOF
757 }
758
832a833b
JH
759 push @wrap, <<EOF;
760# endif /* HAS_\U$func */
761EOF
762
10bc17b6
JH
763 push @wrap, $endif, "\n";
764 }
765}
766
767local $" = '';
768
769print <<EOF;
770
771/* Defines for indicating which special features are supported. */
772
773@define
774typedef struct {
775@struct
aa418cf1 776 int dummy; /* cannot have empty structs */
10bc17b6
JH
777} REENTR;
778
779/* The wrappers. */
780
781@wrap
0891a229 782
10bc17b6
JH
783#endif /* USE_REENTRANT_API */
784
785#endif
786
37442d52 787/* ex: set ro: */
10bc17b6
JH
788EOF
789
08858ed2 790safer_close($h);
424a4936 791rename_if_different('reentr.h-new', 'reentr.h');
10bc17b6 792
aa418cf1
JH
793# Prepare to write the reentr.c.
794
b6b9a099 795# safer_unlink 'reentr.c';
424a4936
NC
796my $c = safer_open("reentr.c-new");
797select $c;
10bc17b6 798print <<EOF;
37442d52
RGS
799/* -*- buffer-read-only: t -*-
800 *
10bc17b6
JH
801 * reentr.c
802 *
38f14693 803 * Copyright (C) 2002, 2003, 2005, 2006, 2007 by Larry Wall and others
10bc17b6
JH
804 *
805 * You may distribute under the terms of either the GNU General Public
806 * License or the Artistic License, as specified in the README file.
807 *
808 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
61296642 809 * This file is built by reentr.pl from data in reentr.pl.
10bc17b6
JH
810 *
811 * "Saruman," I said, standing away from him, "only one hand at a time can
812 * wield the One, and you know that well, so do not trouble to say we!"
813 *
61296642
DM
814 * This file contains a collection of automatically created wrappers
815 * (created by running reentr.pl) for reentrant (thread-safe) versions of
816 * various library calls, such as getpwent_r. The wrapping is done so
817 * that other files like pp_sys.c calling those library functions need not
818 * care about the differences between various platforms' idiosyncrasies
819 * regarding these reentrant interfaces.
10bc17b6
JH
820 */
821
822#include "EXTERN.h"
823#define PERL_IN_REENTR_C
824#include "perl.h"
825#include "reentr.h"
826
827void
828Perl_reentrant_size(pTHX) {
829#ifdef USE_REENTRANT_API
8695fa85
SR
830#define REENTRANTSMALLSIZE 256 /* Make something up. */
831#define REENTRANTUSUALSIZE 4096 /* Make something up. */
10bc17b6
JH
832@size
833#endif /* USE_REENTRANT_API */
834}
835
836void
837Perl_reentrant_init(pTHX) {
838#ifdef USE_REENTRANT_API
a02a5408 839 Newx(PL_reentrant_buffer, 1, REENTR);
10bc17b6
JH
840 Perl_reentrant_size(aTHX);
841@init
842#endif /* USE_REENTRANT_API */
843}
844
845void
846Perl_reentrant_free(pTHX) {
847#ifdef USE_REENTRANT_API
848@free
849 Safefree(PL_reentrant_buffer);
850#endif /* USE_REENTRANT_API */
851}
852
edd309b7
JH
853void*
854Perl_reentrant_retry(const char *f, ...)
855{
abb2c242 856 dTHX;
edd309b7 857 void *retptr = NULL;
fe5bfecd 858 va_list ap;
7918f24d
NC
859#ifdef USE_REENTRANT_API
860 /* Easier to special case this here than in embed.pl. (Look at what it
861 generates for proto.h) */
862 PERL_ARGS_ASSERT_REENTRANT_RETRY;
863#endif
fe5bfecd 864 va_start(ap, f);
369ec4b2 865 {
edd309b7 866#ifdef USE_REENTRANT_API
0891a229 867# 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)
e3410746
SR
868 void *p0;
869# endif
f7937171 870# if defined(USE_SERVENT_BUFFER)
e3410746
SR
871 void *p1;
872# endif
f7937171 873# if defined(USE_HOSTENT_BUFFER)
edd309b7 874 size_t asize;
e3410746 875# endif
f7937171 876# if defined(USE_HOSTENT_BUFFER) || defined(USE_NETENT_BUFFER) || defined(USE_PROTOENT_BUFFER) || defined(USE_SERVENT_BUFFER)
edd309b7 877 int anint;
e3410746 878# endif
edd309b7 879
edd309b7 880 switch (PL_op->op_type) {
f7937171 881#ifdef USE_HOSTENT_BUFFER
edd309b7
JH
882 case OP_GHBYADDR:
883 case OP_GHBYNAME:
884 case OP_GHOSTENT:
885 {
af685957
JH
886#ifdef PERL_REENTRANT_MAXSIZE
887 if (PL_reentrant_buffer->_hostent_size <=
888 PERL_REENTRANT_MAXSIZE / 2)
889#endif
890 {
f7937171
JH
891 PL_reentrant_buffer->_hostent_size *= 2;
892 Renew(PL_reentrant_buffer->_hostent_buffer,
893 PL_reentrant_buffer->_hostent_size, char);
edd309b7
JH
894 switch (PL_op->op_type) {
895 case OP_GHBYADDR:
896 p0 = va_arg(ap, void *);
897 asize = va_arg(ap, size_t);
898 anint = va_arg(ap, int);
899 retptr = gethostbyaddr(p0, asize, anint); break;
900 case OP_GHBYNAME:
901 p0 = va_arg(ap, void *);
f6f0b69b 902 retptr = gethostbyname((char *)p0); break;
edd309b7
JH
903 case OP_GHOSTENT:
904 retptr = gethostent(); break;
905 default:
0de8cad8 906 SETERRNO(ERANGE, LIB_INVARG);
edd309b7
JH
907 break;
908 }
909 }
910 }
911 break;
912#endif
f7937171 913#ifdef USE_GRENT_BUFFER
edd309b7
JH
914 case OP_GGRNAM:
915 case OP_GGRGID:
916 case OP_GGRENT:
917 {
af685957
JH
918#ifdef PERL_REENTRANT_MAXSIZE
919 if (PL_reentrant_buffer->_grent_size <=
920 PERL_REENTRANT_MAXSIZE / 2)
921#endif
922 {
edd309b7 923 Gid_t gid;
f7937171
JH
924 PL_reentrant_buffer->_grent_size *= 2;
925 Renew(PL_reentrant_buffer->_grent_buffer,
926 PL_reentrant_buffer->_grent_size, char);
edd309b7
JH
927 switch (PL_op->op_type) {
928 case OP_GGRNAM:
929 p0 = va_arg(ap, void *);
f6f0b69b 930 retptr = getgrnam((char *)p0); break;
edd309b7 931 case OP_GGRGID:
ab2b559b
JH
932#if Gid_t_size < INTSIZE
933 gid = (Gid_t)va_arg(ap, int);
934#else
edd309b7 935 gid = va_arg(ap, Gid_t);
ab2b559b 936#endif
edd309b7
JH
937 retptr = getgrgid(gid); break;
938 case OP_GGRENT:
939 retptr = getgrent(); break;
940 default:
0de8cad8 941 SETERRNO(ERANGE, LIB_INVARG);
edd309b7
JH
942 break;
943 }
944 }
945 }
946 break;
947#endif
f7937171 948#ifdef USE_NETENT_BUFFER
edd309b7
JH
949 case OP_GNBYADDR:
950 case OP_GNBYNAME:
951 case OP_GNETENT:
952 {
af685957
JH
953#ifdef PERL_REENTRANT_MAXSIZE
954 if (PL_reentrant_buffer->_netent_size <=
955 PERL_REENTRANT_MAXSIZE / 2)
956#endif
957 {
edd309b7 958 Netdb_net_t net;
f7937171
JH
959 PL_reentrant_buffer->_netent_size *= 2;
960 Renew(PL_reentrant_buffer->_netent_buffer,
961 PL_reentrant_buffer->_netent_size, char);
edd309b7
JH
962 switch (PL_op->op_type) {
963 case OP_GNBYADDR:
964 net = va_arg(ap, Netdb_net_t);
965 anint = va_arg(ap, int);
966 retptr = getnetbyaddr(net, anint); break;
967 case OP_GNBYNAME:
968 p0 = va_arg(ap, void *);
f6f0b69b 969 retptr = getnetbyname((char *)p0); break;
edd309b7
JH
970 case OP_GNETENT:
971 retptr = getnetent(); break;
972 default:
0de8cad8 973 SETERRNO(ERANGE, LIB_INVARG);
edd309b7
JH
974 break;
975 }
976 }
977 }
978 break;
979#endif
f7937171 980#ifdef USE_PWENT_BUFFER
edd309b7
JH
981 case OP_GPWNAM:
982 case OP_GPWUID:
983 case OP_GPWENT:
984 {
af685957
JH
985#ifdef PERL_REENTRANT_MAXSIZE
986 if (PL_reentrant_buffer->_pwent_size <=
987 PERL_REENTRANT_MAXSIZE / 2)
988#endif
989 {
edd309b7 990 Uid_t uid;
f7937171
JH
991 PL_reentrant_buffer->_pwent_size *= 2;
992 Renew(PL_reentrant_buffer->_pwent_buffer,
993 PL_reentrant_buffer->_pwent_size, char);
edd309b7
JH
994 switch (PL_op->op_type) {
995 case OP_GPWNAM:
996 p0 = va_arg(ap, void *);
f6f0b69b 997 retptr = getpwnam((char *)p0); break;
edd309b7 998 case OP_GPWUID:
ab2b559b
JH
999#if Uid_t_size < INTSIZE
1000 uid = (Uid_t)va_arg(ap, int);
1001#else
edd309b7 1002 uid = va_arg(ap, Uid_t);
ab2b559b 1003#endif
edd309b7
JH
1004 retptr = getpwuid(uid); break;
1005 case OP_GPWENT:
1006 retptr = getpwent(); break;
1007 default:
0de8cad8 1008 SETERRNO(ERANGE, LIB_INVARG);
edd309b7
JH
1009 break;
1010 }
1011 }
1012 }
1013 break;
1014#endif
f7937171 1015#ifdef USE_PROTOENT_BUFFER
edd309b7
JH
1016 case OP_GPBYNAME:
1017 case OP_GPBYNUMBER:
1018 case OP_GPROTOENT:
1019 {
af685957
JH
1020#ifdef PERL_REENTRANT_MAXSIZE
1021 if (PL_reentrant_buffer->_protoent_size <=
1022 PERL_REENTRANT_MAXSIZE / 2)
1023#endif
1024 {
f7937171
JH
1025 PL_reentrant_buffer->_protoent_size *= 2;
1026 Renew(PL_reentrant_buffer->_protoent_buffer,
1027 PL_reentrant_buffer->_protoent_size, char);
edd309b7
JH
1028 switch (PL_op->op_type) {
1029 case OP_GPBYNAME:
1030 p0 = va_arg(ap, void *);
f6f0b69b 1031 retptr = getprotobyname((char *)p0); break;
edd309b7
JH
1032 case OP_GPBYNUMBER:
1033 anint = va_arg(ap, int);
1034 retptr = getprotobynumber(anint); break;
1035 case OP_GPROTOENT:
1036 retptr = getprotoent(); break;
1037 default:
0de8cad8 1038 SETERRNO(ERANGE, LIB_INVARG);
edd309b7
JH
1039 break;
1040 }
1041 }
1042 }
1043 break;
1044#endif
f7937171 1045#ifdef USE_SERVENT_BUFFER
edd309b7
JH
1046 case OP_GSBYNAME:
1047 case OP_GSBYPORT:
1048 case OP_GSERVENT:
1049 {
af685957
JH
1050#ifdef PERL_REENTRANT_MAXSIZE
1051 if (PL_reentrant_buffer->_servent_size <=
1052 PERL_REENTRANT_MAXSIZE / 2)
1053#endif
1054 {
f7937171
JH
1055 PL_reentrant_buffer->_servent_size *= 2;
1056 Renew(PL_reentrant_buffer->_servent_buffer,
1057 PL_reentrant_buffer->_servent_size, char);
edd309b7
JH
1058 switch (PL_op->op_type) {
1059 case OP_GSBYNAME:
1060 p0 = va_arg(ap, void *);
1061 p1 = va_arg(ap, void *);
f6f0b69b 1062 retptr = getservbyname((char *)p0, (char *)p1); break;
edd309b7
JH
1063 case OP_GSBYPORT:
1064 anint = va_arg(ap, int);
1065 p0 = va_arg(ap, void *);
f6f0b69b 1066 retptr = getservbyport(anint, (char *)p0); break;
edd309b7
JH
1067 case OP_GSERVENT:
1068 retptr = getservent(); break;
1069 default:
0de8cad8 1070 SETERRNO(ERANGE, LIB_INVARG);
edd309b7
JH
1071 break;
1072 }
1073 }
1074 }
1075 break;
1076#endif
1077 default:
1078 /* Not known how to retry, so just fail. */
1079 break;
1080 }
6148ee25
SP
1081#else
1082 PERL_UNUSED_ARG(f);
edd309b7 1083#endif
369ec4b2 1084 }
fe5bfecd 1085 va_end(ap);
edd309b7
JH
1086 return retptr;
1087}
1088
37442d52 1089/* ex: set ro: */
10bc17b6
JH
1090EOF
1091
08858ed2 1092safer_close($c);
424a4936 1093rename_if_different('reentr.c-new', 'reentr.c');
b6b9a099 1094
10bc17b6
JH
1095__DATA__
1096asctime S |time |const struct tm|B_SB|B_SBI|I_SB|I_SBI
b430fd04 1097crypt CC |crypt |struct crypt_data|B_CCS|B_CCD|D=CRYPTD*
10bc17b6
JH
1098ctermid B |stdio | |B_B
1099ctime S |time |const time_t |B_SB|B_SBI|I_SB|I_SBI
1100drand48 |stdlib |struct drand48_data |I_ST|T=double*
1101endgrent |grp | |I_H|V_H
31ee0cb7
JH
1102endhostent |netdb | |I_D|V_D|D=struct hostent_data*
1103endnetent |netdb | |I_D|V_D|D=struct netent_data*
1104endprotoent |netdb | |I_D|V_D|D=struct protoent_data*
10bc17b6 1105endpwent |pwd | |I_H|V_H
31ee0cb7 1106endservent |netdb | |I_D|V_D|D=struct servent_data*
10bc17b6
JH
1107getgrent |grp |struct group |I_SBWR|I_SBIR|S_SBW|S_SBI|I_SBI|I_SBIH
1108getgrgid T |grp |struct group |I_TSBWR|I_TSBIR|I_TSBI|S_TSBI|T=gid_t
1109getgrnam C |grp |struct group |I_CSBWR|I_CSBIR|S_CBI|I_CSBI|S_CSBI
a845a0d4 1110gethostbyaddr 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
10bc17b6
JH
1111gethostbyname C |netdb |struct hostent |I_CSBWRE|S_CSBIE|I_CSD|D=struct hostent_data*
1112gethostent |netdb |struct hostent |I_SBWRE|I_SBIE|S_SBIE|S_SBI|I_SBI|I_SD|D=struct hostent_data*
f6f0b69b 1113getlogin |unistd |char |I_BW|I_BI|B_BW|B_BI
a845a0d4 1114getnetbyaddr 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
10bc17b6
JH
1115getnetbyname C |netdb |struct netent |I_CSBWRE|I_CSBI|S_CSBI|I_CSD|D=struct netent_data*
1116getnetent |netdb |struct netent |I_SBWRE|I_SBIE|S_SBIE|S_SBI|I_SBI|I_SD|D=struct netent_data*
1117getprotobyname C|netdb |struct protoent|I_CSBWR|S_CSBI|I_CSD|D=struct protoent_data*
1118getprotobynumber I |netdb |struct protoent|I_ISBWR|S_ISBI|I_ISD|D=struct protoent_data*
1119getprotoent |netdb |struct protoent|I_SBWR|I_SBI|S_SBI|I_SD|D=struct protoent_data*
1120getpwent |pwd |struct passwd |I_SBWR|I_SBIR|S_SBW|S_SBI|I_SBI|I_SBIH
1121getpwnam C |pwd |struct passwd |I_CSBWR|I_CSBIR|S_CSBI|I_CSBI
1122getpwuid T |pwd |struct passwd |I_TSBWR|I_TSBIR|I_TSBI|S_TSBI|T=uid_t
1123getservbyname CC|netdb |struct servent |I_CCSBWR|S_CCSBI|I_CCSD|D=struct servent_data*
1124getservbyport IC|netdb |struct servent |I_ICSBWR|S_ICSBI|I_ICSD|D=struct servent_data*
1125getservent |netdb |struct servent |I_SBWR|I_SBI|S_SBI|I_SD|D=struct servent_data*
1126getspnam C |shadow |struct spwd |I_CSBWR|S_CSBI
1127gmtime T |time |struct tm |S_TS|I_TS|T=const time_t*
1128localtime T |time |struct tm |S_TS|I_TS|T=const time_t*
a845a0d4 1129random |stdlib |struct random_data|I_iS|I_lS|I_St|i=int*|l=long*|t=int32_t*
10bc17b6
JH
1130readdir T |dirent |struct dirent |I_TSR|I_TS|T=DIR*
1131readdir64 T |dirent |struct dirent64|I_TSR|I_TS|T=DIR*
1132setgrent |grp | |I_H|V_H
1133sethostent I |netdb | |I_ID|V_ID|D=struct hostent_data*
1134setlocale IC |locale | |I_ICBI
1135setnetent I |netdb | |I_ID|V_ID|D=struct netent_data*
1136setprotoent I |netdb | |I_ID|V_ID|D=struct protoent_data*
1137setpwent |pwd | |I_H|V_H
1138setservent I |netdb | |I_ID|V_ID|D=struct servent_data*
1139srand48 L |stdlib |struct drand48_data |I_LS
1140srandom T |stdlib |struct random_data|I_TS|T=unsigned int
1141strerror I |string | |I_IBW|I_IBI|B_IBW
1142tmpnam B |stdio | |B_B
1143ttyname I |unistd | |I_IBW|I_IBI|B_IBI