4 * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1999-2003 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: net.c,v 1.18 2008/08/08 05:06:49 marka Exp */
31 #include <isc/strerror.h>
32 #include <isc/string.h>
36 * Definitions about UDP port range specification. This is a total mess of
37 * portability variants: some use sysctl (but the sysctl names vary), some use
38 * system-specific interfaces, some have the same interface for IPv4 and IPv6,
39 * some separate them, etc...
43 * The last resort defaults: use all non well known port space
45 #ifndef ISC_NET_PORTRANGELOW
46 #define ISC_NET_PORTRANGELOW 1024
47 #endif /* ISC_NET_PORTRANGELOW */
48 #ifndef ISC_NET_PORTRANGEHIGH
49 #define ISC_NET_PORTRANGEHIGH 65535
50 #endif /* ISC_NET_PORTRANGEHIGH */
52 #if defined(ISC_PLATFORM_HAVEIPV6) && defined(ISC_PLATFORM_NEEDIN6ADDRANY)
53 const struct in6_addr isc_net_in6addrany
= IN6ADDR_ANY_INIT
;
56 #if defined(ISC_PLATFORM_HAVEIPV6) && defined(ISC_PLATFORM_NEEDIN6ADDRLOOPBACK)
57 const struct in6_addr isc_net_in6addrloop
= IN6ADDR_LOOPBACK_INIT
;
61 static isc_once_t once
= ISC_ONCE_INIT
;
62 static isc_once_t once_ipv6only
= ISC_ONCE_INIT
;
63 static isc_once_t once_ipv6pktinfo
= ISC_ONCE_INIT
;
64 static isc_result_t ipv4_result
= ISC_R_NOTFOUND
;
65 static isc_result_t ipv6_result
= ISC_R_NOTFOUND
;
66 static isc_result_t ipv6only_result
= ISC_R_NOTFOUND
;
67 static isc_result_t ipv6pktinfo_result
= ISC_R_NOTFOUND
;
69 void InitSockets(void);
72 try_proto(int domain
) {
74 isc_result_t result
= ISC_R_SUCCESS
;
75 char strbuf
[ISC_STRERRORSIZE
];
78 s
= socket(domain
, SOCK_STREAM
, IPPROTO_TCP
);
79 if (s
== INVALID_SOCKET
) {
80 errval
= WSAGetLastError();
83 case WSAEPROTONOSUPPORT
:
85 return (ISC_R_NOTFOUND
);
87 isc__strerror(errval
, strbuf
, sizeof(strbuf
));
88 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
90 isc_msgcat_get(isc_msgcat
,
95 return (ISC_R_UNEXPECTED
);
101 return (ISC_R_SUCCESS
);
105 initialize_action(void) {
107 ipv4_result
= try_proto(PF_INET
);
108 #ifdef ISC_PLATFORM_HAVEIPV6
110 #ifdef ISC_PLATFORM_HAVEIN6PKTINFO
111 ipv6_result
= try_proto(PF_INET6
);
119 RUNTIME_CHECK(isc_once_do(&once
, initialize_action
) == ISC_R_SUCCESS
);
123 isc_net_probeipv4(void) {
125 return (ipv4_result
);
129 isc_net_probeipv6(void) {
131 return (ipv6_result
);
135 isc_net_probeunix(void) {
136 return (ISC_R_NOTFOUND
);
139 #ifdef ISC_PLATFORM_HAVEIPV6
146 char strbuf
[ISC_STRERRORSIZE
];
150 result
= isc_net_probeipv6();
151 if (result
!= ISC_R_SUCCESS
) {
152 ipv6only_result
= result
;
157 ipv6only_result
= ISC_R_NOTFOUND
;
160 /* check for TCP sockets */
161 s
= socket(PF_INET6
, SOCK_STREAM
, 0);
162 if (s
== INVALID_SOCKET
) {
163 isc__strerror(errno
, strbuf
, sizeof(strbuf
));
164 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
166 isc_msgcat_get(isc_msgcat
,
171 ipv6only_result
= ISC_R_UNEXPECTED
;
176 if (setsockopt(s
, IPPROTO_IPV6
, IPV6_V6ONLY
, (char *)&on
, sizeof(on
)) < 0) {
177 ipv6only_result
= ISC_R_NOTFOUND
;
183 /* check for UDP sockets */
184 s
= socket(PF_INET6
, SOCK_DGRAM
, 0);
185 if (s
== INVALID_SOCKET
) {
186 isc__strerror(errno
, strbuf
, sizeof(strbuf
));
187 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
189 isc_msgcat_get(isc_msgcat
,
194 ipv6only_result
= ISC_R_UNEXPECTED
;
199 if (setsockopt(s
, IPPROTO_IPV6
, IPV6_V6ONLY
, (char *)&on
, sizeof(on
)) < 0) {
200 ipv6only_result
= ISC_R_NOTFOUND
;
204 ipv6only_result
= ISC_R_SUCCESS
;
209 #endif /* IPV6_V6ONLY */
213 initialize_ipv6only(void) {
214 RUNTIME_CHECK(isc_once_do(&once_ipv6only
,
215 try_ipv6only
) == ISC_R_SUCCESS
);
219 try_ipv6pktinfo(void) {
221 char strbuf
[ISC_STRERRORSIZE
];
225 result
= isc_net_probeipv6();
226 if (result
!= ISC_R_SUCCESS
) {
227 ipv6pktinfo_result
= result
;
231 /* we only use this for UDP sockets */
232 s
= socket(PF_INET6
, SOCK_DGRAM
, IPPROTO_UDP
);
233 if (s
== INVALID_SOCKET
) {
234 isc__strerror(errno
, strbuf
, sizeof(strbuf
));
235 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
237 isc_msgcat_get(isc_msgcat
,
242 ipv6pktinfo_result
= ISC_R_UNEXPECTED
;
246 #ifdef IPV6_RECVPKTINFO
247 optname
= IPV6_RECVPKTINFO
;
249 optname
= IPV6_PKTINFO
;
252 if (setsockopt(s
, IPPROTO_IPV6
, optname
, (const char *) &on
,
254 ipv6pktinfo_result
= ISC_R_NOTFOUND
;
258 ipv6pktinfo_result
= ISC_R_SUCCESS
;
266 initialize_ipv6pktinfo(void) {
267 RUNTIME_CHECK(isc_once_do(&once_ipv6pktinfo
,
268 try_ipv6pktinfo
) == ISC_R_SUCCESS
);
270 #endif /* WANT_IPV6 */
271 #endif /* ISC_PLATFORM_HAVEIPV6 */
274 isc_net_probe_ipv6only(void) {
275 #ifdef ISC_PLATFORM_HAVEIPV6
277 initialize_ipv6only();
279 ipv6only_result
= ISC_R_NOTFOUND
;
282 return (ipv6only_result
);
286 isc_net_probe_ipv6pktinfo(void) {
287 #ifdef ISC_PLATFORM_HAVEIPV6
289 initialize_ipv6pktinfo();
291 ipv6pktinfo_result
= ISC_R_NOTFOUND
;
294 return (ipv6pktinfo_result
);
298 isc_net_getudpportrange(int af
, in_port_t
*low
, in_port_t
*high
) {
299 int result
= ISC_R_FAILURE
;
301 REQUIRE(low
!= NULL
&& high
!= NULL
);
305 if (result
!= ISC_R_SUCCESS
) {
306 *low
= ISC_NET_PORTRANGELOW
;
307 *high
= ISC_NET_PORTRANGEHIGH
;
310 return (ISC_R_SUCCESS
); /* we currently never fail in this function */
314 isc_net_disableipv4(void) {
316 if (ipv4_result
== ISC_R_SUCCESS
)
317 ipv4_result
= ISC_R_DISABLED
;
321 isc_net_disableipv6(void) {
323 if (ipv6_result
== ISC_R_SUCCESS
)
324 ipv6_result
= ISC_R_DISABLED
;
328 isc_net_enableipv4(void) {
330 if (ipv4_result
== ISC_R_DISABLED
)
331 ipv4_result
= ISC_R_SUCCESS
;
335 isc_net_enableipv6(void) {
337 if (ipv6_result
== ISC_R_DISABLED
)
338 ipv6_result
= ISC_R_SUCCESS
;