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.40 2008/07/04 05:52:31 each Exp */
24 #include <sys/types.h>
26 #if defined(HAVE_SYS_SYSCTL_H)
27 #if defined(HAVE_SYS_PARAM_H)
28 #include <sys/param.h>
30 #include <sys/sysctl.h>
40 #include <isc/strerror.h>
41 #include <isc/string.h>
45 * Definitions about UDP port range specification. This is a total mess of
46 * portability variants: some use sysctl (but the sysctl names vary), some use
47 * system-specific interfaces, some have the same interface for IPv4 and IPv6,
48 * some separate them, etc...
52 * The last resort defaults: use all non well known port space
54 #ifndef ISC_NET_PORTRANGELOW
55 #define ISC_NET_PORTRANGELOW 1024
56 #endif /* ISC_NET_PORTRANGELOW */
57 #ifndef ISC_NET_PORTRANGEHIGH
58 #define ISC_NET_PORTRANGEHIGH 65535
59 #endif /* ISC_NET_PORTRANGEHIGH */
61 #ifdef HAVE_SYSCTLBYNAME
66 #if defined(__FreeBSD__) || defined(__APPLE__) || defined(__DragonFly__)
67 #define USE_SYSCTL_PORTRANGE
68 #define SYSCTL_V4PORTRANGE_LOW "net.inet.ip.portrange.hifirst"
69 #define SYSCTL_V4PORTRANGE_HIGH "net.inet.ip.portrange.hilast"
70 #define SYSCTL_V6PORTRANGE_LOW "net.inet.ip.portrange.hifirst"
71 #define SYSCTL_V6PORTRANGE_HIGH "net.inet.ip.portrange.hilast"
75 #define USE_SYSCTL_PORTRANGE
76 #define SYSCTL_V4PORTRANGE_LOW "net.inet.ip.anonportmin"
77 #define SYSCTL_V4PORTRANGE_HIGH "net.inet.ip.anonportmax"
78 #define SYSCTL_V6PORTRANGE_LOW "net.inet6.ip6.anonportmin"
79 #define SYSCTL_V6PORTRANGE_HIGH "net.inet6.ip6.anonportmax"
82 #else /* !HAVE_SYSCTLBYNAME */
85 #define USE_SYSCTL_PORTRANGE
86 #define SYSCTL_V4PORTRANGE_LOW { CTL_NET, PF_INET, IPPROTO_IP, \
87 IPCTL_IPPORT_HIFIRSTAUTO }
88 #define SYSCTL_V4PORTRANGE_HIGH { CTL_NET, PF_INET, IPPROTO_IP, \
89 IPCTL_IPPORT_HILASTAUTO }
91 #define SYSCTL_V6PORTRANGE_LOW SYSCTL_V4PORTRANGE_LOW
92 #define SYSCTL_V6PORTRANGE_HIGH SYSCTL_V4PORTRANGE_HIGH
95 #endif /* HAVE_SYSCTLBYNAME */
97 #if defined(ISC_PLATFORM_NEEDIN6ADDRANY)
98 const struct in6_addr isc_net_in6addrany
= IN6ADDR_ANY_INIT
;
101 #if defined(ISC_PLATFORM_HAVEIPV6)
103 # if defined(ISC_PLATFORM_NEEDIN6ADDRLOOPBACK)
104 const struct in6_addr isc_net_in6addrloop
= IN6ADDR_LOOPBACK_INIT
;
107 # if defined(WANT_IPV6)
108 static isc_once_t once_ipv6only
= ISC_ONCE_INIT
;
111 # if defined(ISC_PLATFORM_HAVEIN6PKTINFO)
112 static isc_once_t once_ipv6pktinfo
= ISC_ONCE_INIT
;
114 #endif /* ISC_PLATFORM_HAVEIPV6 */
116 static isc_once_t once
= ISC_ONCE_INIT
;
118 static isc_result_t ipv4_result
= ISC_R_NOTFOUND
;
119 static isc_result_t ipv6_result
= ISC_R_NOTFOUND
;
120 static isc_result_t unix_result
= ISC_R_NOTFOUND
;
121 static isc_result_t ipv6only_result
= ISC_R_NOTFOUND
;
122 static isc_result_t ipv6pktinfo_result
= ISC_R_NOTFOUND
;
125 try_proto(int domain
) {
127 isc_result_t result
= ISC_R_SUCCESS
;
128 char strbuf
[ISC_STRERRORSIZE
];
130 s
= socket(domain
, SOCK_STREAM
, 0);
136 #ifdef EPROTONOSUPPORT
137 case EPROTONOSUPPORT
:
142 return (ISC_R_NOTFOUND
);
144 isc__strerror(errno
, strbuf
, sizeof(strbuf
));
145 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
147 isc_msgcat_get(isc_msgcat
,
152 return (ISC_R_UNEXPECTED
);
156 #ifdef ISC_PLATFORM_HAVEIPV6
158 #ifdef ISC_PLATFORM_HAVEIN6PKTINFO
159 if (domain
== PF_INET6
) {
160 struct sockaddr_in6 sin6
;
161 GETSOCKNAME_SOCKLEN_TYPE len
; /* NTP local change */
164 * Check to see if IPv6 is broken, as is common on Linux.
167 if (getsockname(s
, (struct sockaddr
*)&sin6
, &len
) < 0)
169 isc_log_write(isc_lctx
, ISC_LOGCATEGORY_GENERAL
,
170 ISC_LOGMODULE_SOCKET
, ISC_LOG_ERROR
,
171 "retrieving the address of an IPv6 "
172 "socket from the kernel failed.");
173 isc_log_write(isc_lctx
, ISC_LOGCATEGORY_GENERAL
,
174 ISC_LOGMODULE_SOCKET
, ISC_LOG_ERROR
,
175 "IPv6 is not supported.");
176 result
= ISC_R_NOTFOUND
;
178 if (len
== sizeof(struct sockaddr_in6
))
179 result
= ISC_R_SUCCESS
;
181 isc_log_write(isc_lctx
,
182 ISC_LOGCATEGORY_GENERAL
,
183 ISC_LOGMODULE_SOCKET
,
185 "IPv6 structures in kernel and "
186 "user space do not match.");
187 isc_log_write(isc_lctx
,
188 ISC_LOGCATEGORY_GENERAL
,
189 ISC_LOGMODULE_SOCKET
,
191 "IPv6 is not supported.");
192 result
= ISC_R_NOTFOUND
;
206 initialize_action(void) {
207 ipv4_result
= try_proto(PF_INET
);
208 #ifdef ISC_PLATFORM_HAVEIPV6
210 #ifdef ISC_PLATFORM_HAVEIN6PKTINFO
211 ipv6_result
= try_proto(PF_INET6
);
215 #ifdef ISC_PLATFORM_HAVESYSUNH
216 unix_result
= try_proto(PF_UNIX
);
222 RUNTIME_CHECK(isc_once_do(&once
, initialize_action
) == ISC_R_SUCCESS
);
226 isc_net_probeipv4(void) {
228 return (ipv4_result
);
232 isc_net_probeipv6(void) {
234 return (ipv6_result
);
238 isc_net_probeunix(void) {
240 return (unix_result
);
243 #ifdef ISC_PLATFORM_HAVEIPV6
249 char strbuf
[ISC_STRERRORSIZE
];
253 result
= isc_net_probeipv6();
254 if (result
!= ISC_R_SUCCESS
) {
255 ipv6only_result
= result
;
260 ipv6only_result
= ISC_R_NOTFOUND
;
263 /* check for TCP sockets */
264 s
= socket(PF_INET6
, SOCK_STREAM
, 0);
266 isc__strerror(errno
, strbuf
, sizeof(strbuf
));
267 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
269 isc_msgcat_get(isc_msgcat
,
274 ipv6only_result
= ISC_R_UNEXPECTED
;
279 if (setsockopt(s
, IPPROTO_IPV6
, IPV6_V6ONLY
, &on
, sizeof(on
)) < 0) {
280 ipv6only_result
= ISC_R_NOTFOUND
;
286 /* check for UDP sockets */
287 s
= socket(PF_INET6
, SOCK_DGRAM
, 0);
289 isc__strerror(errno
, strbuf
, sizeof(strbuf
));
290 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
292 isc_msgcat_get(isc_msgcat
,
297 ipv6only_result
= ISC_R_UNEXPECTED
;
302 if (setsockopt(s
, IPPROTO_IPV6
, IPV6_V6ONLY
, &on
, sizeof(on
)) < 0) {
303 ipv6only_result
= ISC_R_NOTFOUND
;
309 ipv6only_result
= ISC_R_SUCCESS
;
314 #endif /* IPV6_V6ONLY */
318 initialize_ipv6only(void) {
319 RUNTIME_CHECK(isc_once_do(&once_ipv6only
,
320 try_ipv6only
) == ISC_R_SUCCESS
);
322 #endif /* WANT_IPV6 */
324 #ifdef ISC_PLATFORM_HAVEIN6PKTINFO
326 try_ipv6pktinfo(void) {
328 char strbuf
[ISC_STRERRORSIZE
];
332 result
= isc_net_probeipv6();
333 if (result
!= ISC_R_SUCCESS
) {
334 ipv6pktinfo_result
= result
;
338 /* we only use this for UDP sockets */
339 s
= socket(PF_INET6
, SOCK_DGRAM
, IPPROTO_UDP
);
341 isc__strerror(errno
, strbuf
, sizeof(strbuf
));
342 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
344 isc_msgcat_get(isc_msgcat
,
349 ipv6pktinfo_result
= ISC_R_UNEXPECTED
;
353 #ifdef IPV6_RECVPKTINFO
354 optname
= IPV6_RECVPKTINFO
;
356 optname
= IPV6_PKTINFO
;
359 if (setsockopt(s
, IPPROTO_IPV6
, optname
, &on
, sizeof(on
)) < 0) {
360 ipv6pktinfo_result
= ISC_R_NOTFOUND
;
365 ipv6pktinfo_result
= ISC_R_SUCCESS
;
373 initialize_ipv6pktinfo(void) {
374 RUNTIME_CHECK(isc_once_do(&once_ipv6pktinfo
,
375 try_ipv6pktinfo
) == ISC_R_SUCCESS
);
377 #endif /* ISC_PLATFORM_HAVEIN6PKTINFO */
378 #endif /* ISC_PLATFORM_HAVEIPV6 */
381 isc_net_probe_ipv6only(void) {
382 #ifdef ISC_PLATFORM_HAVEIPV6
384 initialize_ipv6only();
386 ipv6only_result
= ISC_R_NOTFOUND
;
389 return (ipv6only_result
);
393 isc_net_probe_ipv6pktinfo(void) {
394 #ifdef ISC_PLATFORM_HAVEIPV6
395 #ifdef ISC_PLATFORM_HAVEIN6PKTINFO
397 initialize_ipv6pktinfo();
399 ipv6pktinfo_result
= ISC_R_NOTFOUND
;
403 return (ipv6pktinfo_result
);
406 #if defined(USE_SYSCTL_PORTRANGE)
407 #if defined(HAVE_SYSCTLBYNAME)
409 getudpportrange_sysctl(int af
, in_port_t
*low
, in_port_t
*high
) {
410 int port_low
, port_high
;
412 const char *sysctlname_lowport
, *sysctlname_hiport
;
415 sysctlname_lowport
= SYSCTL_V4PORTRANGE_LOW
;
416 sysctlname_hiport
= SYSCTL_V4PORTRANGE_HIGH
;
418 sysctlname_lowport
= SYSCTL_V6PORTRANGE_LOW
;
419 sysctlname_hiport
= SYSCTL_V6PORTRANGE_HIGH
;
421 portlen
= sizeof(portlen
);
422 if (sysctlbyname(sysctlname_lowport
, &port_low
, &portlen
,
424 return (ISC_R_FAILURE
);
426 portlen
= sizeof(portlen
);
427 if (sysctlbyname(sysctlname_hiport
, &port_high
, &portlen
,
429 return (ISC_R_FAILURE
);
431 if ((port_low
& ~0xffff) != 0 || (port_high
& ~0xffff) != 0)
432 return (ISC_R_RANGE
);
434 *low
= (in_port_t
)port_low
;
435 *high
= (in_port_t
)port_high
;
437 return (ISC_R_SUCCESS
);
439 #else /* !HAVE_SYSCTLBYNAME */
441 getudpportrange_sysctl(int af
, in_port_t
*low
, in_port_t
*high
) {
442 int mib_lo4
[4] = SYSCTL_V4PORTRANGE_LOW
;
443 int mib_hi4
[4] = SYSCTL_V4PORTRANGE_HIGH
;
444 int mib_lo6
[4] = SYSCTL_V6PORTRANGE_LOW
;
445 int mib_hi6
[4] = SYSCTL_V6PORTRANGE_HIGH
;
446 int *mib_lo
, *mib_hi
, miblen
;
447 int port_low
, port_high
;
453 miblen
= sizeof(mib_lo4
) / sizeof(mib_lo4
[0]);
457 miblen
= sizeof(mib_lo6
) / sizeof(mib_lo6
[0]);
460 portlen
= sizeof(portlen
);
461 if (sysctl(mib_lo
, miblen
, &port_low
, &portlen
, NULL
, 0) < 0) {
462 return (ISC_R_FAILURE
);
465 portlen
= sizeof(portlen
);
466 if (sysctl(mib_hi
, miblen
, &port_high
, &portlen
, NULL
, 0) < 0) {
467 return (ISC_R_FAILURE
);
470 if ((port_low
& ~0xffff) != 0 || (port_high
& ~0xffff) != 0)
471 return (ISC_R_RANGE
);
473 *low
= (in_port_t
) port_low
;
474 *high
= (in_port_t
) port_high
;
476 return (ISC_R_SUCCESS
);
478 #endif /* HAVE_SYSCTLBYNAME */
479 #endif /* USE_SYSCTL_PORTRANGE */
482 isc_net_getudpportrange(int af
, in_port_t
*low
, in_port_t
*high
) {
483 int result
= ISC_R_FAILURE
;
485 REQUIRE(low
!= NULL
&& high
!= NULL
);
487 #if defined(USE_SYSCTL_PORTRANGE)
488 result
= getudpportrange_sysctl(af
, low
, high
);
493 if (result
!= ISC_R_SUCCESS
) {
494 *low
= ISC_NET_PORTRANGELOW
;
495 *high
= ISC_NET_PORTRANGEHIGH
;
498 return (ISC_R_SUCCESS
); /* we currently never fail in this function */
502 isc_net_disableipv4(void) {
504 if (ipv4_result
== ISC_R_SUCCESS
)
505 ipv4_result
= ISC_R_DISABLED
;
509 isc_net_disableipv6(void) {
511 if (ipv6_result
== ISC_R_SUCCESS
)
512 ipv6_result
= ISC_R_DISABLED
;
516 isc_net_enableipv4(void) {
518 if (ipv4_result
== ISC_R_DISABLED
)
519 ipv4_result
= ISC_R_SUCCESS
;
523 isc_net_enableipv6(void) {
525 if (ipv6_result
== ISC_R_DISABLED
)
526 ipv6_result
= ISC_R_SUCCESS
;