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
|
/* $NetBSD: getaddrinfo.c,v 1.82 2006/03/25 12:09:40 rpaulo Exp $ */
/* $KAME: getaddrinfo.c,v 1.29 2000/08/31 17:26:57 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the project nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
/*
* This is an adaptation of Android's implementation of RFC 6724
* (in Android's getaddrinfo.c). It has some cosmetic differences
* from Android's getaddrinfo.c, but Android's getaddrinfo.c was
* used as a guide or example of a way to implement the RFC 6724 spec when
* this was written.
*/
#include "address_sorting_internal.h"
#include <errno.h>
#include <inttypes.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
// Scope values increase with increase in scope.
static const int kIPv6AddrScopeLinkLocal = 1;
static const int kIPv6AddrScopeSiteLocal = 2;
static const int kIPv6AddrScopeGlobal = 3;
static address_sorting_source_addr_factory* g_current_source_addr_factory =
NULL;
static bool address_sorting_get_source_addr(const address_sorting_address* dest,
address_sorting_address* source) {
return g_current_source_addr_factory->vtable->get_source_addr(
g_current_source_addr_factory, dest, source);
}
bool address_sorting_get_source_addr_for_testing(
const address_sorting_address* dest, address_sorting_address* source) {
return address_sorting_get_source_addr(dest, source);
}
static int ipv6_prefix_match_length(const struct sockaddr_in6* sa,
const struct sockaddr_in6* sb) {
unsigned char* a = (unsigned char*)&sa->sin6_addr;
unsigned char* b = (unsigned char*)&sb->sin6_addr;
int cur_bit = 0;
while (cur_bit < 128) {
int high_bit = 1 << (CHAR_BIT - 1);
int a_val = a[cur_bit / CHAR_BIT] & (high_bit >> (cur_bit % CHAR_BIT));
int b_val = b[cur_bit / CHAR_BIT] & (high_bit >> (cur_bit % CHAR_BIT));
if (a_val == b_val) {
cur_bit++;
} else {
break;
}
}
return cur_bit;
}
static int in6_is_addr_loopback(const struct in6_addr* ipv6_address) {
uint32_t* bits32 = (uint32_t*)ipv6_address;
return bits32[0] == 0 && bits32[1] == 0 && bits32[2] == 0 &&
bits32[3] == htonl(1);
}
static int in6_is_addr_v4mapped(const struct in6_addr* ipv6_address) {
uint32_t* bits32 = (uint32_t*)ipv6_address;
return bits32[0] == 0 && bits32[1] == 0 && bits32[2] == htonl(0x0000ffff);
}
static int in6_is_addr_v4compat(const struct in6_addr* ipv6_address) {
uint32_t* bits32 = (uint32_t*)ipv6_address;
return bits32[0] == 0 && bits32[1] == 0 && bits32[2] == 0 && bits32[3] != 0 &&
bits32[3] != htonl(1);
}
static int in6_is_addr_sitelocal(const struct in6_addr* ipv6_address) {
uint8_t* bytes = (uint8_t*)ipv6_address;
return bytes[0] == 0xfe && (bytes[1] & 0xc0) == 0xc0;
}
static int in6_is_addr_linklocal(const struct in6_addr* ipv6_address) {
uint8_t* bytes = (uint8_t*)ipv6_address;
return bytes[0] == 0xfe && (bytes[1] & 0xc0) == 0x80;
}
static int in6_is_addr_6to4(const struct in6_addr* ipv6_address) {
uint8_t* bytes = (uint8_t*)ipv6_address;
return bytes[0] == 0x20 && bytes[1] == 0x02;
}
static int in6_is_addr_ula(const struct in6_addr* ipv6_address) {
uint8_t* bytes = (uint8_t*)ipv6_address;
return (bytes[0] & 0xfe) == 0xfc;
}
static int in6_is_addr_teredo(const struct in6_addr* ipv6_address) {
uint8_t* bytes = (uint8_t*)ipv6_address;
return bytes[0] == 0x20 && bytes[1] == 0x01 && bytes[2] == 0x00 &&
bytes[3] == 0x00;
}
static int in6_is_addr_6bone(const struct in6_addr* ipv6_address) {
uint8_t* bytes = (uint8_t*)ipv6_address;
return bytes[0] == 0x3f && bytes[1] == 0xfe;
}
address_sorting_family address_sorting_abstract_get_family(
const address_sorting_address* address) {
switch (((struct sockaddr*)address)->sa_family) {
case AF_INET:
return ADDRESS_SORTING_AF_INET;
case AF_INET6:
return ADDRESS_SORTING_AF_INET6;
default:
return ADDRESS_SORTING_UNKNOWN_FAMILY;
}
}
static int get_label_value(const address_sorting_address* resolved_addr) {
if (address_sorting_abstract_get_family(resolved_addr) ==
ADDRESS_SORTING_AF_INET) {
return 4;
} else if (address_sorting_abstract_get_family(resolved_addr) !=
ADDRESS_SORTING_AF_INET6) {
return 1;
}
struct sockaddr_in6* ipv6_addr = (struct sockaddr_in6*)&resolved_addr->addr;
if (in6_is_addr_loopback(&ipv6_addr->sin6_addr)) {
return 0;
} else if (in6_is_addr_v4mapped(&ipv6_addr->sin6_addr)) {
return 4;
} else if (in6_is_addr_6to4(&ipv6_addr->sin6_addr)) {
return 2;
} else if (in6_is_addr_teredo(&ipv6_addr->sin6_addr)) {
return 5;
} else if (in6_is_addr_ula(&ipv6_addr->sin6_addr)) {
return 13;
} else if (in6_is_addr_v4compat(&ipv6_addr->sin6_addr)) {
return 3;
} else if (in6_is_addr_sitelocal(&ipv6_addr->sin6_addr)) {
return 11;
} else if (in6_is_addr_6bone(&ipv6_addr->sin6_addr)) {
return 12;
}
return 1;
}
static int get_precedence_value(const address_sorting_address* resolved_addr) {
if (address_sorting_abstract_get_family(resolved_addr) ==
ADDRESS_SORTING_AF_INET) {
return 35;
} else if (address_sorting_abstract_get_family(resolved_addr) !=
ADDRESS_SORTING_AF_INET6) {
return 1;
}
struct sockaddr_in6* ipv6_addr = (struct sockaddr_in6*)&resolved_addr->addr;
if (in6_is_addr_loopback(&ipv6_addr->sin6_addr)) {
return 50;
} else if (in6_is_addr_v4mapped(&ipv6_addr->sin6_addr)) {
return 35;
} else if (in6_is_addr_6to4(&ipv6_addr->sin6_addr)) {
return 30;
} else if (in6_is_addr_teredo(&ipv6_addr->sin6_addr)) {
return 5;
} else if (in6_is_addr_ula(&ipv6_addr->sin6_addr)) {
return 3;
} else if (in6_is_addr_v4compat(&ipv6_addr->sin6_addr) ||
in6_is_addr_sitelocal(&ipv6_addr->sin6_addr) ||
in6_is_addr_6bone(&ipv6_addr->sin6_addr)) {
return 1;
}
return 40;
}
static int sockaddr_get_scope(const address_sorting_address* resolved_addr) {
if (address_sorting_abstract_get_family(resolved_addr) ==
ADDRESS_SORTING_AF_INET) {
return kIPv6AddrScopeGlobal;
} else if (address_sorting_abstract_get_family(resolved_addr) ==
ADDRESS_SORTING_AF_INET6) {
struct sockaddr_in6* ipv6_addr = (struct sockaddr_in6*)&resolved_addr->addr;
if (in6_is_addr_loopback(&ipv6_addr->sin6_addr) ||
in6_is_addr_linklocal(&ipv6_addr->sin6_addr)) {
return kIPv6AddrScopeLinkLocal;
}
if (in6_is_addr_sitelocal(&ipv6_addr->sin6_addr)) {
return kIPv6AddrScopeSiteLocal;
}
return kIPv6AddrScopeGlobal;
}
return 0;
}
static int compare_source_addr_exists(const address_sorting_sortable* first,
const address_sorting_sortable* second) {
if (first->source_addr_exists != second->source_addr_exists) {
return first->source_addr_exists ? -1 : 1;
}
return 0;
}
static int compare_source_dest_scope_matches(
const address_sorting_sortable* first,
const address_sorting_sortable* second) {
bool first_src_dst_scope_matches = false;
if (sockaddr_get_scope(&first->dest_addr) ==
sockaddr_get_scope(&first->source_addr)) {
first_src_dst_scope_matches = true;
}
bool second_src_dst_scope_matches = false;
if (sockaddr_get_scope(&second->dest_addr) ==
sockaddr_get_scope(&second->source_addr)) {
second_src_dst_scope_matches = true;
}
if (first_src_dst_scope_matches != second_src_dst_scope_matches) {
return first_src_dst_scope_matches ? -1 : 1;
}
return 0;
}
static int compare_source_dest_labels_match(
const address_sorting_sortable* first,
const address_sorting_sortable* second) {
bool first_label_matches = false;
if (get_label_value(&first->dest_addr) ==
get_label_value(&first->source_addr)) {
first_label_matches = true;
}
bool second_label_matches = false;
if (get_label_value(&second->dest_addr) ==
get_label_value(&second->source_addr)) {
second_label_matches = true;
}
if (first_label_matches != second_label_matches) {
return first_label_matches ? -1 : 1;
}
return 0;
}
static int compare_dest_precedence(const address_sorting_sortable* first,
const address_sorting_sortable* second) {
return get_precedence_value(&second->dest_addr) -
get_precedence_value(&first->dest_addr);
}
static int compare_dest_scope(const address_sorting_sortable* first,
const address_sorting_sortable* second) {
return sockaddr_get_scope(&first->dest_addr) -
sockaddr_get_scope(&second->dest_addr);
}
static int compare_source_dest_prefix_match_lengths(
const address_sorting_sortable* first,
const address_sorting_sortable* second) {
if (first->source_addr_exists &&
address_sorting_abstract_get_family(&first->source_addr) ==
ADDRESS_SORTING_AF_INET6 &&
second->source_addr_exists &&
address_sorting_abstract_get_family(&second->source_addr) ==
ADDRESS_SORTING_AF_INET6) {
int first_match_length =
ipv6_prefix_match_length((struct sockaddr_in6*)&first->source_addr.addr,
(struct sockaddr_in6*)&first->dest_addr.addr);
int second_match_length = ipv6_prefix_match_length(
(struct sockaddr_in6*)&second->source_addr.addr,
(struct sockaddr_in6*)&second->dest_addr.addr);
return second_match_length - first_match_length;
}
return 0;
}
static int rfc_6724_compare(const void* a, const void* b) {
const address_sorting_sortable* first = (address_sorting_sortable*)a;
const address_sorting_sortable* second = (address_sorting_sortable*)b;
int out = 0;
if ((out = compare_source_addr_exists(first, second))) {
return out;
}
if ((out = compare_source_dest_scope_matches(first, second))) {
return out;
}
if ((out = compare_source_dest_labels_match(first, second))) {
return out;
}
// TODO: Implement rule 3; avoid deprecated addresses.
// TODO: Implement rule 4; avoid temporary addresses.
if ((out = compare_dest_precedence(first, second))) {
return out;
}
// TODO: Implement rule 7; prefer native transports.
if ((out = compare_dest_scope(first, second))) {
return out;
}
if ((out = compare_source_dest_prefix_match_lengths(first, second))) {
return out;
}
// Prefer that the sort be stable otherwise
return (int)(first->original_index - second->original_index);
}
void address_sorting_override_source_addr_factory_for_testing(
address_sorting_source_addr_factory* factory) {
if (g_current_source_addr_factory == NULL) {
abort();
}
g_current_source_addr_factory->vtable->destroy(g_current_source_addr_factory);
g_current_source_addr_factory = factory;
}
static void sanity_check_private_fields_are_unused(
const address_sorting_sortable* sortable) {
address_sorting_address expected_source_addr;
memset(&expected_source_addr, 0, sizeof(expected_source_addr));
if (memcmp(&expected_source_addr, &sortable->source_addr,
sizeof(address_sorting_address)) ||
sortable->original_index || sortable->source_addr_exists) {
abort();
}
}
void address_sorting_rfc_6724_sort(address_sorting_sortable* sortables,
size_t sortables_len) {
for (size_t i = 0; i < sortables_len; i++) {
sanity_check_private_fields_are_unused(&sortables[i]);
sortables[i].original_index = i;
sortables[i].source_addr_exists = address_sorting_get_source_addr(
&sortables[i].dest_addr, &sortables[i].source_addr);
}
qsort(sortables, sortables_len, sizeof(address_sorting_sortable),
rfc_6724_compare);
}
void address_sorting_init() {
if (g_current_source_addr_factory != NULL) {
abort();
}
g_current_source_addr_factory =
address_sorting_create_source_addr_factory_for_current_platform();
}
void address_sorting_shutdown() {
if (g_current_source_addr_factory == NULL) {
abort();
}
g_current_source_addr_factory->vtable->destroy(g_current_source_addr_factory);
g_current_source_addr_factory = NULL;
}
|