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.
16 char sccsid
[] = "@(#) workarounds.c 1.6 96/03/19 16:22:25";
18 #include <sys/types.h>
19 #include <sys/param.h>
20 #include <sys/socket.h>
21 #include <netinet/in.h>
22 #include <arpa/inet.h>
34 * Some AIX versions advertise a too small MAXHOSTNAMELEN value (32).
35 * Result: long hostnames would be truncated, and connections would be
36 * dropped because of host name verification failures. Adrian van Bloois
37 * (A.vanBloois@info.nic.surfnet.nl) figured out what was the problem.
40 #if (MAXHOSTNAMELEN < 64)
44 /* In case not defined in <sys/param.h>. */
46 #ifndef MAXHOSTNAMELEN
47 #define MAXHOSTNAMELEN 256 /* storage for host name */
51 * Some DG/UX inet_addr() versions return a struct/union instead of a long.
52 * You have this problem when the compiler complains about illegal lvalues
53 * or something like that. The following code fixes this mutant behaviour.
54 * It should not be enabled on "normal" systems.
56 * Bug reported by ben@piglet.cr.usgs.gov (Rev. Ben A. Mesander).
63 long fix_inet_addr(string
)
66 return (inet_addr(string
).s_addr
);
69 #endif /* INET_ADDR_BUG */
72 * With some System-V versions, the fgets() library function does not
73 * account for partial reads from e.g. sockets. The result is that fgets()
74 * gives up too soon, causing username lookups to fail. Problem first
75 * reported for IRIX 4.0.5, by Steve Kotsopoulos <steve@ecf.toronto.edu>.
76 * The following code works around the problem. It does no harm on "normal"
84 char *fix_fgets(buf
, len
, fp
)
93 * Copy until the buffer fills up, until EOF, or until a newline is
96 while (len
> 1 && (c
= getc(fp
)) != EOF
) {
104 * Return 0 if nothing was read. This is correct even when a silly buffer
105 * length was specified.
115 #endif /* BROKEN_FGETS */
118 * With early SunOS 5 versions, recvfrom() does not completely fill in the
119 * source address structure when doing a non-destructive read. The following
120 * code works around the problem. It does no harm on "normal" systems.
127 int fix_recvfrom(sock
, buf
, buflen
, flags
, from
, fromlen
)
132 struct sockaddr
*from
;
137 /* Assume that both ends of a socket belong to the same address family. */
139 if ((ret
= recvfrom(sock
, buf
, buflen
, flags
, from
, fromlen
)) >= 0) {
140 if (from
->sa_family
== 0) {
141 struct sockaddr my_addr
;
142 int my_addr_len
= sizeof(my_addr
);
144 if (getsockname(0, &my_addr
, &my_addr_len
)) {
145 tcpd_warn("getsockname: %m");
147 from
->sa_family
= my_addr
.sa_family
;
154 #endif /* RECVFROM_BUG */
157 * The Apollo SR10.3 and some SYSV4 getpeername(2) versions do not return an
158 * error in case of a datagram-oriented socket. Instead, they claim that all
159 * UDP requests come from address 0.0.0.0. The following code works around
160 * the problem. It does no harm on "normal" systems.
163 #ifdef GETPEERNAME_BUG
167 int fix_getpeername(sock
, sa
, len
)
173 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
175 if ((ret
= getpeername(sock
, sa
, len
)) >= 0
176 && sa
->sa_family
== AF_INET
177 && sin
->sin_addr
.s_addr
== 0) {
185 #endif /* GETPEERNAME_BUG */
188 * According to Karl Vogel (vogelke@c-17igp.wpafb.af.mil) some Pyramid
189 * versions have no yp_default_domain() function. We use getdomainname()
195 int yp_get_default_domain(ptr
)
198 static char mydomain
[MAXHOSTNAMELEN
];
201 return (getdomainname(mydomain
, MAXHOSTNAMELEN
));
204 #endif /* USE_GETDOMAIN */
207 #define INADDR_NONE 0xffffffff
211 * Solaris 2.4 gethostbyname() has problems with multihomed hosts. When
212 * doing DNS through NIS, only one host address ends up in the address list.
213 * All other addresses end up in the hostname alias list, interspersed with
214 * copies of the official host name. This would wreak havoc with tcpd's
215 * hostname double checks. Below is a workaround that should do no harm when
216 * accidentally left in. A side effect of the workaround is that address
217 * list members are no longer properly aligned for structure access.
220 #ifdef SOLARIS_24_GETHOSTBYNAME_BUG
224 struct hostent
*fix_gethostbyname(name
)
232 int broken_gethostbyname
= 0;
234 if ((hp
= gethostbyname(name
)) && !hp
->h_addr_list
[1] && hp
->h_aliases
[1]) {
235 for (o_aliases
= n_addr_list
= hp
->h_aliases
; *o_aliases
; o_aliases
++) {
236 if ((addr
.s_addr
= inet_addr(*o_aliases
)) != INADDR_NONE
) {
237 memcpy(*n_addr_list
++, (char *) &addr
, hp
->h_length
);
238 broken_gethostbyname
= 1;
241 if (broken_gethostbyname
) {
242 o_addr_list
= hp
->h_addr_list
;
243 memcpy(*n_addr_list
++, *o_addr_list
, hp
->h_length
);
245 hp
->h_addr_list
= hp
->h_aliases
;
246 hp
->h_aliases
= o_addr_list
+ 1;
252 #endif /* SOLARIS_24_GETHOSTBYNAME_BUG */
255 * Horror! Some FreeBSD 2.0 libc routines call strtok(). Since tcpd depends
256 * heavily on strtok(), strange things may happen. Workaround: use our
257 * private strtok(). This has been fixed in the meantime.
262 char *fix_strtok(buf
, sep
)
271 while ((result
= strsep(&state
, sep
)) && result
[0] == 0)
276 #endif /* USE_STRSEP */
279 * IRIX 5.3 (and possibly earlier versions, too) library routines call the
280 * non-reentrant strtok() library routine, causing hosts to slip through
281 * allow/deny filters. Workaround: don't rely on the vendor and use our own
282 * strtok() function. FreeBSD 2.0 has a similar problem (fixed in 2.0.5).
285 #ifdef LIBC_CALLS_STRTOK
287 char *my_strtok(buf
, sep
)
298 * Skip over separator characters and detect end of string.
300 if (*(state
+= strspn(state
, sep
)) == 0)
304 * Skip over non-separator characters and terminate result.
307 if (*(state
+= strcspn(state
, sep
)) != 0)
312 #endif /* LIBC_CALLS_STRTOK */