1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741
|
/* $Id: network.c 8150 2008-10-27 07:04:27Z iulius $
**
** Utility functions for network connections.
**
** This is a collection of utility functions for network connections and
** socket creation, encapsulating some of the complexities of IPv4 and IPv6
** support and abstracting operations common to most network code.
**
** All of the portability difficulties with supporting IPv4 and IPv6 are
** encapsulated in the combination of this code and innbind. No other INN
** code should have to care whether IPv6 is supported or not.
*/
#include "config.h"
#include "clibrary.h"
#include "portable/socket.h"
#include "portable/wait.h"
#include <errno.h>
#ifdef HAVE_STREAMS_SENDFD
# include <stropts.h>
#endif
#include "inn/innconf.h"
#include "inn/messages.h"
#include "inn/network.h"
#include "inn/libinn.h"
/* Macros to set the len attribute of sockaddrs. */
#if HAVE_STRUCT_SOCKADDR_SA_LEN
# define sin_set_length(s) ((s)->sin_len = sizeof(struct sockaddr_in))
# define sin6_set_length(s) ((s)->sin6_len = sizeof(struct sockaddr_in6))
#else
# define sin_set_length(s) /* empty */
# define sin6_set_length(s) /* empty */
#endif
/* If SO_REUSEADDR isn't available, make calls to set_reuseaddr go away. */
#ifndef SO_REUSEADDR
# define network_set_reuseaddr(fd) /* empty */
#endif
/*
** Set SO_REUSEADDR on a socket if possible (so that something new can listen
** on the same port immediately if INN dies unexpectedly).
*/
#ifdef SO_REUSEADDR
static void
network_set_reuseaddr(int fd)
{
int flag = 1;
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &flag, sizeof(flag)) < 0)
syswarn("cannot mark bind address reusable");
}
#endif
/*
** Function used as a die handler in child processes to prevent any atexit
** functions from being run and any buffers from being flushed twice.
*/
static int
network_child_fatal(void)
{
_exit(1);
return 1;
}
/*
** Receive a file descriptor from a STREAMS pipe if supported and return the
** file descriptor. If not supported, return -1 for failure.
*/
#ifdef HAVE_STREAMS_SENDFD
static int
network_recvfd(int pipe)
{
struct strrecvfd fdrec;
if (ioctl(pipe, I_RECVFD, &fdrec) < 0) {
syswarn("cannot receive file descriptor from innbind");
return -1;
} else
return fdrec.fd;
}
#else /* !HAVE_STREAMS_SENDFD */
static int
network_recvfd(int pipe UNUSED)
{
return -1;
}
#endif
/*
** Call innbind to bind a socket to a privileged port. Takes the file
** descriptor, the family, the bind address (as a string), and the port
** number. Returns the bound file descriptor, which may be different than
** the provided file descriptor if the system didn't support binding in a
** subprocess, or -1 on error.
*/
static int
network_innbind(int fd, int family, const char *address, unsigned short port)
{
char *path;
char buff[128];
int pipefds[2];
pid_t child, result;
int status;
/* We need innconf in order to find innbind. */
if (innconf == NULL || innconf->pathbin == NULL)
return -1;
/* Open a pipe to innbind and run it to bind the socket. */
if (pipe(pipefds) < 0) {
syswarn("cannot create pipe");
return -1;
}
path = concatpath(innconf->pathbin, "innbind");
snprintf(buff, sizeof(buff), "%d,%d,%s,%hu", fd, family, address, port);
child = fork();
if (child < 0) {
syswarn("cannot fork innbind for %s,%hu", address, port);
return -1;
} else if (child == 0) {
message_fatal_cleanup = network_child_fatal;
close(1);
if (dup2(pipefds[1], 1) < 0)
sysdie("cannot dup pipe to stdout");
close(pipefds[0]);
if (execl(path, path, buff, (char *) 0) < 0)
sysdie("cannot exec innbind for %s,%hu", address, port);
}
close(pipefds[1]);
free(path);
/* Read the results from innbind. This will either be ok\n or no\n
followed by an attempt to pass a new file descriptor back. */
status = read(pipefds[0], buff, 3);
buff[3] = '\0';
if (status == 0) {
warn("innbind returned no output, assuming failure");
fd = -1;
} else if (status < 0) {
syswarn("cannot read from innbind");
fd = -1;
} else if (strcmp(buff, "no\n") == 0) {
fd = network_recvfd(pipefds[0]);
} else if (strcmp(buff, "ok\n") != 0) {
fd = -1;
}
/* Wait for the results of the child process. */
do {
result = waitpid(child, &status, 0);
} while (result == -1 && errno == EINTR);
if (result != child) {
syswarn("cannot wait for innbind for %s,%hu", address, port);
return -1;
}
if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
return fd;
else {
warn("innbind failed for %s,%hu", address, port);
return -1;
}
}
/*
** Create an IPv4 socket and bind it, returning the resulting file
** descriptor (or -1 on a failure).
*/
int
network_bind_ipv4(const char *address, unsigned short port)
{
int fd, bindfd;
struct sockaddr_in server;
struct in_addr addr;
/* Create the socket. */
fd = socket(PF_INET, SOCK_STREAM, IPPROTO_IP);
if (fd < 0) {
syswarn("cannot create IPv4 socket for %s,%hu", address, port);
return -1;
}
network_set_reuseaddr(fd);
/* Accept "any" or "all" in the bind address to mean 0.0.0.0. */
if (!strcmp(address, "any") || !strcmp(address, "all"))
address = "0.0.0.0";
/* Flesh out the socket and do the bind if we can. Otherwise, call
network_innbind to do the work. */
if (port < 1024 && geteuid() != 0) {
bindfd = network_innbind(fd, AF_INET, address, port);
if (bindfd != fd)
close(fd);
return bindfd;
} else {
server.sin_family = AF_INET;
server.sin_port = htons(port);
if (!inet_aton(address, &addr)) {
warn("invalid IPv4 address %s", address);
return -1;
}
server.sin_addr = addr;
sin_set_length(&server);
if (bind(fd, (struct sockaddr *) &server, sizeof(server)) < 0) {
syswarn("cannot bind socket for %s,%hu", address, port);
return -1;
}
return fd;
}
}
/*
** Create an IPv6 socket and bind it, returning the resulting file
** descriptor (or -1 on a failure). Note that we don't warn (but still
** return failure) if the reason for the socket creation failure is that IPv6
** isn't supported; this is to handle systems like many Linux hosts where
** IPv6 is available in userland but the kernel doesn't support it.
*/
#if HAVE_INET6
int
network_bind_ipv6(const char *address, unsigned short port)
{
int fd, bindfd;
struct sockaddr_in6 server;
struct in6_addr addr;
#ifdef IPV6_V6ONLY
int flag;
#endif
/* Create the socket. */
fd = socket(PF_INET6, SOCK_STREAM, IPPROTO_IP);
if (fd < 0) {
if (errno != EAFNOSUPPORT && errno != EPROTONOSUPPORT)
syswarn("cannot create IPv6 socket for %s,%hu", address, port);
return -1;
}
network_set_reuseaddr(fd);
#ifdef IPV6_V6ONLY
flag = 1;
if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &flag, sizeof(flag)) < 0)
syswarn("cannot set IPv6 socket to v6only");
#endif
/* Accept "any" or "all" in the bind address to mean 0.0.0.0. */
if (!strcmp(address, "any") || !strcmp(address, "all"))
address = "::";
/* Flesh out the socket and do the bind if we can. Otherwise, call
network_innbind to do the work. */
if (port < 1024 && geteuid() != 0) {
bindfd = network_innbind(fd, AF_INET6, address, port);
if (bindfd != fd)
close(fd);
return bindfd;
} else {
server.sin6_family = AF_INET6;
server.sin6_port = htons(port);
if (inet_pton(AF_INET6, address, &addr) < 1) {
warn("invalid IPv6 address %s", address);
close(fd);
return -1;
}
server.sin6_addr = addr;
sin6_set_length(&server);
if (bind(fd, (struct sockaddr *) &server, sizeof(server)) < 0) {
syswarn("cannot bind socket for %s,%hu", address, port);
close(fd);
return -1;
}
return fd;
}
}
#else /* HAVE_INET6 */
int
network_bind_ipv6(const char *address, unsigned short port)
{
warn("cannot bind %s,%hu: not built with IPv6 support", address, port);
return -1;
}
#endif /* HAVE_INET6 */
/*
** Create and bind sockets for every local address, as determined by
** getaddrinfo if IPv6 is enabled (otherwise, just uses the wildcard IPv4
** address). Takes the port number, and then a pointer to an array of
** integers and a pointer to a count of them. Allocates a new array to hold
** the file descriptors and stores the count in the third argument.
*/
#if HAVE_INET6
void
network_bind_all(unsigned short port, int **fds, int *count)
{
struct addrinfo hints, *addrs, *addr;
int error, fd, size;
char service[16], name[INET6_ADDRSTRLEN];
*count = 0;
/* Start the fds array at two entries, assuming
an IPv6 and IPv4 socket, and grow it by two when necessary. */
size = 2;
*fds = xmalloc(size * sizeof(int));
#ifdef IPV6_V6ONLY
/* Start with an IPv4 socket. */
fd = network_bind_ipv4("0.0.0.0", port);
if (fd >= 0) {
(*fds)[*count] = fd;
(*count)++;
}
#endif
/* Do the query to find all the available addresses. */
memset(&hints, 0, sizeof(hints));
hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
#ifdef IPV6_V6ONLY
hints.ai_family = AF_INET6;
#else
hints.ai_family = AF_UNSPEC;
#endif
hints.ai_socktype = SOCK_STREAM;
snprintf(service, sizeof(service), "%hu", port);
error = getaddrinfo(NULL, service, &hints, &addrs);
if (error < 0) {
#ifdef IPV6_V6ONLY
if (error != EAI_ADDRFAMILY && error != EAI_FAMILY)
#endif
warn("getaddrinfo failed: %s", gai_strerror(error));
return;
}
/* Now, try to bind each of them. */
for (addr = addrs; addr != NULL; addr = addr->ai_next) {
network_sockaddr_sprint(name, sizeof(name), addr->ai_addr);
if (addr->ai_family == AF_INET)
fd = network_bind_ipv4(name, port);
else if (addr->ai_family == AF_INET6)
fd = network_bind_ipv6(name, port);
else
continue;
if (fd >= 0) {
if (*count >= size) {
size += 2;
*fds = xrealloc(*fds, size * sizeof(int));
}
(*fds)[*count] = fd;
(*count)++;
}
}
freeaddrinfo(addrs);
}
#else /* HAVE_INET6 */
void
network_bind_all(unsigned short port, int **fds, int *count)
{
int fd;
fd = network_bind_ipv4("0.0.0.0", port);
if (fd >= 0) {
*fds = xmalloc(sizeof(int));
*fds[0] = fd;
*count = 1;
} else {
*fds = NULL;
*count = 0;
}
}
#endif /* HAVE_INET6 */
/*
** Binds the given socket to an appropriate source address for its family,
** using innconf information or the provided source address. Returns true on
** success and false on failure.
*/
static bool
network_source(int fd, int family, const char *source)
{
if (source == NULL && innconf == NULL)
return true;
if (family == AF_INET) {
struct sockaddr_in saddr;
if (source == NULL && innconf != NULL)
source = innconf->sourceaddress;
if (source == NULL ||
strcmp(source, "all") == 0 || strcmp(source, "any") == 0)
return true;
memset(&saddr, 0, sizeof(saddr));
saddr.sin_family = AF_INET;
if (!inet_aton(source, &saddr.sin_addr))
return false;
return bind(fd, (struct sockaddr *) &saddr, sizeof(saddr)) == 0;
}
#ifdef HAVE_INET6
else if (family == AF_INET6) {
struct sockaddr_in6 saddr;
if (source == NULL && innconf != NULL)
source = innconf->sourceaddress6;
if (source == NULL ||
strcmp(source, "all") == 0 || strcmp(source, "any") == 0)
return true;
memset(&saddr, 0, sizeof(saddr));
saddr.sin6_family = AF_INET6;
if (inet_pton(AF_INET6, source, &saddr.sin6_addr) < 1)
return false;
return bind(fd, (struct sockaddr *) &saddr, sizeof(saddr)) == 0;
}
#endif
else
return true;
}
/*
** Given a linked list of addrinfo structs representing the remote service,
** try to create a local socket and connect to that service. Takes an
** optional source address. Try each address in turn until one of them
** connects. Returns the file descriptor of the open socket on success, or
** -1 on failure. Tries to leave the reason for the failure in errno.
*/
int
network_connect(struct addrinfo *ai, const char *source)
{
int fd = -1;
int oerrno;
bool success;
for (success = false; ai != NULL; ai = ai->ai_next) {
if (fd >= 0)
close(fd);
fd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
if (fd < 0)
continue;
if (!network_source(fd, ai->ai_family, source))
continue;
if (connect(fd, ai->ai_addr, ai->ai_addrlen) == 0) {
success = true;
break;
}
}
if (success)
return fd;
else {
if (fd >= 0) {
oerrno = errno;
close(fd);
errno = oerrno;
}
return -1;
}
}
/*
** Like network_connect, but takes a host and a port instead of an addrinfo
** struct list. Returns the file descriptor of the open socket on success,
** or -1 on failure. If getaddrinfo fails, errno may not be set to anything
** useful.
*/
int
network_connect_host(const char *host, unsigned short port,
const char *source)
{
struct addrinfo hints, *ai;
char portbuf[16];
int fd, oerrno;
memset(&hints, 0, sizeof(hints));
hints.ai_family = NETWORK_AF_HINT;
hints.ai_socktype = SOCK_STREAM;
snprintf(portbuf, sizeof(portbuf), "%d", port);
if (getaddrinfo(host, portbuf, &hints, &ai) != 0)
return -1;
fd = network_connect(ai, source);
oerrno = errno;
freeaddrinfo(ai);
errno = oerrno;
return fd;
}
/*
** Create a new socket of the specified domain and type and do the binding as
** if we were a regular client socket, but then return before connecting.
** Returns the file descriptor of the open socket on success, or -1 on
** failure. Intended primarily for the use of clients that will then go on
** to do a non-blocking connect.
*/
int
network_client_create(int domain, int type, const char *source)
{
int fd, oerrno;
fd = socket(domain, type, 0);
if (fd < 0)
return -1;
if (!network_source(fd, domain, source)) {
oerrno = errno;
close(fd);
errno = oerrno;
return -1;
}
return fd;
}
/*
** Strip IP options if possible (source routing and similar sorts of things)
** just out of paranoia. This function currently only supports IPv4. If
** anyone knows for sure whether this is necessary for IPv6 as well and knows
** how to support it if it is necessary, please submit a patch. If any
** options are found, they're reported using notice.
**
** Based on 4.4BSD rlogind source by way of Wietse Venema (tcp_wrappers),
** adapted for INN by smd and reworked some by Russ Allbery.
*/
#ifdef IP_OPTIONS
bool
network_kill_options(int fd, struct sockaddr *remote)
{
int status;
char options[BUFSIZ / 3];
char addr[INET6_ADDRSTRLEN];
socklen_t optsize = sizeof(options);
if (remote->sa_family != AF_INET)
return true;
status = getsockopt(fd, IPPROTO_IP, IP_OPTIONS, options, &optsize);
if (status == 0 && optsize != 0) {
char hex[BUFSIZ];
char *opt, *output;
output = hex;
for (opt = options; optsize > 0; opt++, optsize--, output += 3)
snprintf(output, sizeof(hex) - (output - hex), " %2.2x", *opt);
network_sockaddr_sprint(addr, sizeof(addr), remote);
notice("connect from %s with IP options (ignored):%s", addr, hex);
if (setsockopt(fd, IPPROTO_IP, IP_OPTIONS, NULL, 0) != 0) {
syswarn("setsockopt IP_OPTIONS NULL failed");
return false;
}
}
return true;
}
#else /* !IP_OPTIONS */
bool
network_kill_options(int fd UNUSED, struct sockaddr *remote UNUSED)
{
return true;
}
#endif
/*
** Print an ASCII representation of the address of the given sockaddr into
** the provided buffer. This buffer must hold at least INET_ADDRSTRLEN
** characters for IPv4 addresses and INET6_ADDRSTRLEN characters for IPv6, so
** generally it should always be as large as the latter. Returns success or
** failure.
*/
bool
network_sockaddr_sprint(char *dst, size_t size, const struct sockaddr *addr)
{
const char *result;
#ifdef HAVE_INET6
if (addr->sa_family == AF_INET6) {
const struct sockaddr_in6 *sin6;
sin6 = (const struct sockaddr_in6 *) addr;
if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
struct in_addr in;
memcpy(&in, sin6->sin6_addr.s6_addr + 12, sizeof(in));
result = inet_ntop(AF_INET, &in, dst, size);
} else
result = inet_ntop(AF_INET6, &sin6->sin6_addr, dst, size);
return (result != NULL);
}
#endif
if (addr->sa_family == AF_INET) {
const struct sockaddr_in *sin;
sin = (const struct sockaddr_in *) addr;
result = inet_ntop(AF_INET, &sin->sin_addr, dst, size);
return (result != NULL);
} else {
errno = EAFNOSUPPORT;
return false;
}
}
/*
** Compare the addresses from two sockaddrs and see whether they're equal.
** IPv4 addresses that have been mapped to IPv6 addresses compare equal to
** the corresponding IPv4 address.
*/
bool
network_sockaddr_equal(const struct sockaddr *a, const struct sockaddr *b)
{
const struct sockaddr_in *a4 = (const struct sockaddr_in *) a;
const struct sockaddr_in *b4 = (const struct sockaddr_in *) b;
#ifdef HAVE_INET6
const struct sockaddr_in6 *a6 = (const struct sockaddr_in6 *) a;
const struct sockaddr_in6 *b6 = (const struct sockaddr_in6 *) b;
const struct sockaddr *tmp;
if (a->sa_family == AF_INET && b->sa_family == AF_INET6) {
tmp = a;
a = b;
b = tmp;
a6 = (const struct sockaddr_in6 *) a;
b4 = (const struct sockaddr_in *) b;
}
if (a->sa_family == AF_INET6) {
if (b->sa_family == AF_INET6)
return IN6_ARE_ADDR_EQUAL(&a6->sin6_addr, &b6->sin6_addr);
else if (b->sa_family != AF_INET)
return false;
else if (!IN6_IS_ADDR_V4MAPPED(&a6->sin6_addr))
return false;
else {
struct in_addr in;
memcpy(&in, a6->sin6_addr.s6_addr + 12, sizeof(in));
return (in.s_addr == b4->sin_addr.s_addr);
}
}
#endif
if (a->sa_family != AF_INET || b->sa_family != AF_INET)
return false;
return (a4->sin_addr.s_addr == b4->sin_addr.s_addr);
}
/*
** Returns the port of a sockaddr or 0 on error.
*/
unsigned short
network_sockaddr_port(const struct sockaddr *sa)
{
const struct sockaddr_in *sin;
#ifdef HAVE_INET6
const struct sockaddr_in6 *sin6;
if (sa->sa_family == AF_INET6) {
sin6 = (const struct sockaddr_in6 *) sa;
return htons(sin6->sin6_port);
}
#endif
if (sa->sa_family != AF_INET)
return 0;
else {
sin = (const struct sockaddr_in *) sa;
return htons(sin->sin_port);
}
}
/*
** Compare two addresses given as strings, applying an optional mask.
** Returns true if the addresses are equal modulo the mask and false
** otherwise, including on syntax errors in the addresses or mask
** specification.
*/
bool
network_addr_match(const char *a, const char *b, const char *mask)
{
struct in_addr a4, b4, tmp;
unsigned long cidr;
char *end;
unsigned int i;
unsigned long bits, addr_mask;
#ifdef HAVE_INET6
struct in6_addr a6, b6;
#endif
/* If the addresses are IPv4, the mask may be in one of two forms. It can
either be a traditional mask, like 255.255.0.0, or it can be a CIDR
subnet designation, like 16. (The caller should have already removed
the slash separating it from the address.) */
if (inet_aton(a, &a4) && inet_aton(b, &b4)) {
if (mask == NULL)
addr_mask = htonl(0xffffffffUL);
else if (strchr(mask, '.') == NULL) {
cidr = strtoul(mask, &end, 10);
if (cidr > 32 || *end != '\0')
return false;
for (bits = 0, i = 0; i < cidr; i++)
bits |= (1 << (31 - i));
addr_mask = htonl(bits);
} else if (inet_aton(mask, &tmp))
addr_mask = tmp.s_addr;
else
return false;
return (a4.s_addr & addr_mask) == (b4.s_addr & addr_mask);
}
#ifdef HAVE_INET6
/* Otherwise, if the address is IPv6, the mask is required to be a CIDR
subnet designation. */
if (!inet_pton(AF_INET6, a, &a6) || !inet_pton(AF_INET6, b, &b6))
return false;
if (mask == NULL)
cidr = 128;
else {
cidr = strtoul(mask, &end, 10);
if (cidr > 128 || *end != '\0')
return false;
}
for (i = 0; i * 8 < cidr; i++) {
if ((i + 1) * 8 <= cidr) {
if (a6.s6_addr[i] != b6.s6_addr[i])
return false;
} else {
for (addr_mask = 0, bits = 0; bits < cidr % 8; bits++)
addr_mask |= (1 << (7 - bits));
if ((a6.s6_addr[i] & addr_mask) != (b6.s6_addr[i] & addr_mask))
return false;
}
}
return true;
#else
return false;
#endif
}
|