2 * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
5 #pragma ident "%Z%%M% %I% %E% SMI"
8 * Workarounds for known system software bugs. This module provides wrappers
9 * around library functions and system calls that are known to have problems
10 * on some systems. Most of these workarounds won't do any harm on regular
13 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
17 char sccsid
[] = "@(#) workarounds.c 1.6 96/03/19 16:22:25";
20 #include <sys/types.h>
21 #include <sys/param.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
36 * Some AIX versions advertise a too small MAXHOSTNAMELEN value (32).
37 * Result: long hostnames would be truncated, and connections would be
38 * dropped because of host name verification failures. Adrian van Bloois
39 * (A.vanBloois@info.nic.surfnet.nl) figured out what was the problem.
42 #if (MAXHOSTNAMELEN < 64)
46 /* In case not defined in <sys/param.h>. */
48 #ifndef MAXHOSTNAMELEN
49 #define MAXHOSTNAMELEN 256 /* storage for host name */
53 * Some DG/UX inet_addr() versions return a struct/union instead of a long.
54 * You have this problem when the compiler complains about illegal lvalues
55 * or something like that. The following code fixes this mutant behaviour.
56 * It should not be enabled on "normal" systems.
58 * Bug reported by ben@piglet.cr.usgs.gov (Rev. Ben A. Mesander).
65 long fix_inet_addr(string
)
68 return (inet_addr(string
).s_addr
);
71 #endif /* INET_ADDR_BUG */
74 * With some System-V versions, the fgets() library function does not
75 * account for partial reads from e.g. sockets. The result is that fgets()
76 * gives up too soon, causing username lookups to fail. Problem first
77 * reported for IRIX 4.0.5, by Steve Kotsopoulos <steve@ecf.toronto.edu>.
78 * The following code works around the problem. It does no harm on "normal"
86 char *fix_fgets(buf
, len
, fp
)
95 * Copy until the buffer fills up, until EOF, or until a newline is
98 while (len
> 1 && (c
= getc(fp
)) != EOF
) {
106 * Return 0 if nothing was read. This is correct even when a silly buffer
107 * length was specified.
117 #endif /* BROKEN_FGETS */
120 * With early SunOS 5 versions, recvfrom() does not completely fill in the
121 * source address structure when doing a non-destructive read. The following
122 * code works around the problem. It does no harm on "normal" systems.
129 int fix_recvfrom(sock
, buf
, buflen
, flags
, from
, fromlen
)
134 struct sockaddr
*from
;
139 /* Assume that both ends of a socket belong to the same address family. */
141 if ((ret
= recvfrom(sock
, buf
, buflen
, flags
, from
, fromlen
)) >= 0) {
142 if (from
->sa_family
== 0) {
143 struct sockaddr my_addr
;
144 int my_addr_len
= sizeof(my_addr
);
146 if (getsockname(0, &my_addr
, &my_addr_len
)) {
147 tcpd_warn("getsockname: %m");
149 from
->sa_family
= my_addr
.sa_family
;
156 #endif /* RECVFROM_BUG */
159 * The Apollo SR10.3 and some SYSV4 getpeername(2) versions do not return an
160 * error in case of a datagram-oriented socket. Instead, they claim that all
161 * UDP requests come from address 0.0.0.0. The following code works around
162 * the problem. It does no harm on "normal" systems.
165 #ifdef GETPEERNAME_BUG
169 int fix_getpeername(sock
, sa
, len
)
175 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
177 if ((ret
= getpeername(sock
, sa
, len
)) >= 0
178 && sa
->sa_family
== AF_INET
179 && sin
->sin_addr
.s_addr
== 0) {
187 #endif /* GETPEERNAME_BUG */
190 * According to Karl Vogel (vogelke@c-17igp.wpafb.af.mil) some Pyramid
191 * versions have no yp_default_domain() function. We use getdomainname()
197 int yp_get_default_domain(ptr
)
200 static char mydomain
[MAXHOSTNAMELEN
];
203 return (getdomainname(mydomain
, MAXHOSTNAMELEN
));
206 #endif /* USE_GETDOMAIN */
209 #define INADDR_NONE 0xffffffff
213 * Solaris 2.4 gethostbyname() has problems with multihomed hosts. When
214 * doing DNS through NIS, only one host address ends up in the address list.
215 * All other addresses end up in the hostname alias list, interspersed with
216 * copies of the official host name. This would wreak havoc with tcpd's
217 * hostname double checks. Below is a workaround that should do no harm when
218 * accidentally left in. A side effect of the workaround is that address
219 * list members are no longer properly aligned for structure access.
222 #ifdef SOLARIS_24_GETHOSTBYNAME_BUG
226 struct hostent
*fix_gethostbyname(name
)
234 int broken_gethostbyname
= 0;
236 if ((hp
= gethostbyname(name
)) && !hp
->h_addr_list
[1] && hp
->h_aliases
[1]) {
237 for (o_aliases
= n_addr_list
= hp
->h_aliases
; *o_aliases
; o_aliases
++) {
238 if ((addr
.s_addr
= inet_addr(*o_aliases
)) != INADDR_NONE
) {
239 memcpy(*n_addr_list
++, (char *) &addr
, hp
->h_length
);
240 broken_gethostbyname
= 1;
243 if (broken_gethostbyname
) {
244 o_addr_list
= hp
->h_addr_list
;
245 memcpy(*n_addr_list
++, *o_addr_list
, hp
->h_length
);
247 hp
->h_addr_list
= hp
->h_aliases
;
248 hp
->h_aliases
= o_addr_list
+ 1;
254 #endif /* SOLARIS_24_GETHOSTBYNAME_BUG */
257 * Horror! Some FreeBSD 2.0 libc routines call strtok(). Since tcpd depends
258 * heavily on strtok(), strange things may happen. Workaround: use our
259 * private strtok(). This has been fixed in the meantime.
264 char *fix_strtok(buf
, sep
)
273 while ((result
= strsep(&state
, sep
)) && result
[0] == 0)
278 #endif /* USE_STRSEP */
281 * IRIX 5.3 (and possibly earlier versions, too) library routines call the
282 * non-reentrant strtok() library routine, causing hosts to slip through
283 * allow/deny filters. Workaround: don't rely on the vendor and use our own
284 * strtok() function. FreeBSD 2.0 has a similar problem (fixed in 2.0.5).
287 #ifdef LIBC_CALLS_STRTOK
289 char *my_strtok(buf
, sep
)
300 * Skip over separator characters and detect end of string.
302 if (*(state
+= strspn(state
, sep
)) == 0)
306 * Skip over non-separator characters and terminate result.
309 if (*(state
+= strcspn(state
, sep
)) != 0)
314 #endif /* LIBC_CALLS_STRTOK */