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
|
/* Copyright © 2012 Brandon L Black <blblack@gmail.com>
*
* This file is part of gdnsd.
*
* gdnsd-plugin-geoip is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* gdnsd-plugin-geoip is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gdnsd. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <config.h>
#include "ntree.h"
#include <gdnsd/alloc.h>
#include <gdnsd/log.h>
// Initial node allocation count,
// must be power of two due to alloc code,
#define NT_SIZE_INIT 128U
ntree_t* ntree_new(void)
{
ntree_t* newtree = xmalloc(sizeof(*newtree));
newtree->store = xmalloc_n(NT_SIZE_INIT, sizeof(*newtree->store));
newtree->count = 0;
newtree->alloc = NT_SIZE_INIT; // set to zero on fixation
return newtree;
}
void ntree_destroy(ntree_t* tree)
{
free(tree->store);
free(tree);
}
unsigned ntree_add_node(ntree_t* tree)
{
gdnsd_assert(tree->alloc);
if (tree->count == tree->alloc) {
tree->alloc <<= 1;
tree->store = xrealloc_n(tree->store, tree->alloc, sizeof(*tree->store));
}
const unsigned rv = tree->count;
gdnsd_assert(rv < (1U << 24));
tree->count++;
return rv;
}
// returns either a node offset for the true ipv4 root
// node at exactly ::/96, or a terminal dclist
// for a wholly enclosing supernet. This is cached
// for the tree to make various ipv4-related lookups
// faster and simpler.
F_NONNULL
static unsigned ntree_find_v4root(const ntree_t* tree)
{
unsigned offset = 0;
unsigned mask_depth = 96;
do {
gdnsd_assert(offset < tree->count);
offset = tree->store[offset].zero;
} while (--mask_depth && !NN_IS_DCLIST(offset));
return offset;
}
void ntree_finish(ntree_t* tree)
{
tree->alloc = 0; // flag fixed, will fail asserts on add_node, etc now
tree->store = xrealloc_n(tree->store, tree->count, sizeof(*tree->store));
tree->ipv4 = ntree_find_v4root(tree);
}
#ifndef NDEBUG // debug dump code
F_NONNULL
static void ntree_dump_recurse(const ntree_t* tree, const unsigned bitdepth, const unsigned offset, struct in6_addr ipv6);
F_NONNULL
static void ntree_dump_rec_sub(const ntree_t* tree, const unsigned bitdepth, const unsigned val, struct in6_addr ipv6)
{
if (NN_IS_DCLIST(val)) {
gdnsd_anysin_t tempsin;
memset(&tempsin, 0, sizeof(tempsin));
tempsin.len = sizeof(struct sockaddr_in6);
tempsin.sa.sa_family = AF_INET6;
memcpy(&tempsin.sin6.sin6_addr, &ipv6, sizeof(tempsin.sin6.sin6_addr));
log_debug("%s/%u -> %u", logf_anysin_noport(&tempsin), 128U - bitdepth, NN_GET_DCLIST(val));
} else {
gdnsd_assert(bitdepth);
ntree_dump_recurse(tree, bitdepth - 1, val, ipv6);
}
}
static void ntree_dump_recurse(const ntree_t* tree, const unsigned bitdepth, const unsigned offset, struct in6_addr ipv6)
{
const nnode_t* this_node = &tree->store[offset];
ntree_dump_rec_sub(tree, bitdepth, this_node->zero, ipv6);
SETBIT_v6(ipv6.s6_addr, 127 - bitdepth);
ntree_dump_rec_sub(tree, bitdepth, this_node->one, ipv6);
}
void ntree_debug_dump(const ntree_t* tree)
{
ntree_dump_recurse(tree, 127, 0, ip6_zero);
}
// an ntree is optimal if it never has a terminal dclist value
// that's identical in the zero+one slots of a single node (which
// should have been merged up a layer to be optimal). Note that
// we don't ever alias ntree subtrees...
void ntree_assert_optimal(const ntree_t* tree)
{
// note that for tree->count == 1 and the whole space
// mapped to a single dclist, we can't optimize that to
// a full /0 mask, it has to be a pair of /1 results,
// so we don't check that case.
if (tree->count > 1) {
for (unsigned offs = 0; offs < tree->count; offs++) {
const nnode_t* current = &tree->store[offs];
gdnsd_assert(current->zero != current->one);
}
}
}
#endif
F_NONNULL
static bool CHKBIT_v6(const uint8_t* ipv6, const unsigned bit)
{
gdnsd_assert(bit < 128);
return ipv6[bit >> 3] & (1UL << (~bit & 7));
}
F_NONNULL
static unsigned ntree_lookup_v6(const ntree_t* tree, const uint8_t* ip, unsigned* mask_out)
{
unsigned chkbit = 0;
unsigned offset = 0;
do {
gdnsd_assert(offset < tree->count);
const nnode_t* current = &tree->store[offset];
gdnsd_assert(current->one && current->zero);
offset = CHKBIT_v6(ip, chkbit) ? current->one : current->zero;
chkbit++;
gdnsd_assert(chkbit < 129);
} while (!NN_IS_DCLIST(offset));
*mask_out = chkbit;
gdnsd_assert(offset != NN_UNDEF); // the special v4-like undefined areas
return NN_GET_DCLIST(offset);
}
static bool CHKBIT_v4(const uint32_t ip, const unsigned maskbit)
{
gdnsd_assert(maskbit < 32U);
return ip & (1U << (31U - maskbit));
}
// lookup_v4's "mask_out" is within the range /0 -> /32 and needs adjusting
// for the various v4-like v6 spaces. As a result we never return a supernet
// mask for these (e.g. /41 for a lookup on v4compat space, or /2 for a lookup
// on teredo, etc...), even if that would technically be more optimal. It's far
// more confusing and not worth optimizing for.
F_NONNULL
static unsigned ntree_lookup_v4(const ntree_t* tree, const uint32_t ip, unsigned* mask_out)
{
gdnsd_assert(tree->ipv4);
unsigned chkbit = 0;
unsigned offset = tree->ipv4;
while (!NN_IS_DCLIST(offset)) {
gdnsd_assert(offset < tree->count);
const nnode_t* current = &tree->store[offset];
gdnsd_assert(current->one && current->zero);
offset = CHKBIT_v4(ip, chkbit) ? current->one : current->zero;
chkbit++;
gdnsd_assert(chkbit < 33);
}
*mask_out = chkbit;
gdnsd_assert(offset != NN_UNDEF); // the special v4-like undefined areas
return NN_GET_DCLIST(offset);
}
// if "addr" is in any v4-compatible spaces other than
// v4compat (our canonical one), convert to v4compat,
// and return a mask_adj to v4_compat.
// else, leave addr as-is and return 0.
F_NONNULL
static uint32_t v6_v4fixup(const uint8_t* in, unsigned* mask_adj)
{
uint32_t ip_out = 0;
if (!memcmp(in, start_v4mapped, 12)
|| !memcmp(in, start_siit, 12)
|| !memcmp(in, start_wkp, 12)) {
ip_out = ntohl(gdnsd_get_una32(&in[12]));
*mask_adj = 96;
} else if (!memcmp(in, start_teredo, 4)) {
ip_out = ntohl(gdnsd_get_una32(&in[12]) ^ 0xFFFFFFFF);
*mask_adj = 96;
} else if (!memcmp(in, start_6to4, 2)) {
ip_out = ntohl(gdnsd_get_una32(&in[2]));
*mask_adj = 16;
}
return ip_out;
}
F_NONNULL
static unsigned ntree_lookup_inner(const ntree_t* tree, const gdnsd_anysin_t* client_addr, unsigned* scope_mask)
{
unsigned rv;
if (client_addr->sa.sa_family == AF_INET) {
rv = ntree_lookup_v4(tree, ntohl(client_addr->sin4.sin_addr.s_addr), scope_mask);
} else {
gdnsd_assert(client_addr->sa.sa_family == AF_INET6);
unsigned mask_adj = 0; // for v4-like conversions...
const uint32_t ipv4 = v6_v4fixup(client_addr->sin6.sin6_addr.s6_addr, &mask_adj);
if (mask_adj) {
unsigned temp_mask;
rv = ntree_lookup_v4(tree, ipv4, &temp_mask);
*scope_mask = temp_mask + mask_adj;
} else {
rv = ntree_lookup_v6(tree, client_addr->sin6.sin6_addr.s6_addr, scope_mask);
}
}
return rv;
}
unsigned ntree_lookup(const ntree_t* tree, const client_info_t* client, unsigned* scope_mask, const bool ignore_ecs)
{
gdnsd_assert(!tree->alloc); // ntree_finish() was called
gdnsd_assert(tree->ipv4); // must be a non-zero node offset or a dclist w/ high-bit set
unsigned rv;
if (client->edns_client_mask && !ignore_ecs) {
rv = ntree_lookup_inner(tree, &client->edns_client, scope_mask);
} else {
rv = ntree_lookup_inner(tree, &client->dns_source, scope_mask);
*scope_mask = 0;
}
return rv;
}
|