]> git.ipfire.org Git - people/ms/libloc.git/blob - src/network.c
database: Implement reading a network from the database
[people/ms/libloc.git] / src / network.c
1 /*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2017 IPFire Development Team <info@ipfire.org>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15 */
16
17 #include <arpa/inet.h>
18 #include <assert.h>
19 #include <endian.h>
20 #include <errno.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include <loc/libloc.h>
26 #include <loc/network.h>
27 #include <loc/private.h>
28
29 struct loc_network {
30 struct loc_ctx* ctx;
31 int refcount;
32
33 struct in6_addr start_address;
34 unsigned int prefix;
35
36 char country_code[3];
37 uint32_t asn;
38 };
39
40 static int valid_prefix(struct in6_addr* address, unsigned int prefix) {
41 // The prefix cannot be larger than 128 bits
42 if (prefix > 128)
43 return 1;
44
45 // And the prefix cannot be zero
46 if (prefix == 0)
47 return 1;
48
49 // For IPv4-mapped addresses the prefix has to be 96 or lager
50 if (IN6_IS_ADDR_V4MAPPED(address) && prefix <= 96)
51 return 1;
52
53 return 0;
54 }
55
56 static struct in6_addr prefix_to_bitmask(unsigned int prefix) {
57 struct in6_addr bitmask;
58
59 for (unsigned int i = 0; i < 16; i++)
60 bitmask.s6_addr[i] = 0;
61
62 for (unsigned int i = prefix, j = 0; i > 0; i -= 8, j++) {
63 if (i >= 8)
64 bitmask.s6_addr[j] = 0xff;
65 else
66 bitmask.s6_addr[j] = 0xff << (8 - i);
67 }
68
69 return bitmask;
70 }
71
72 static struct in6_addr make_start_address(struct in6_addr* address, unsigned int prefix) {
73 struct in6_addr a;
74 struct in6_addr bitmask = prefix_to_bitmask(prefix);
75
76 // Perform bitwise AND
77 for (unsigned int i = 0; i < 4; i++)
78 a.s6_addr32[i] = address->s6_addr32[i] & bitmask.s6_addr32[i];
79
80 return a;
81 }
82
83 LOC_EXPORT int loc_network_new(struct loc_ctx* ctx, struct loc_network** network,
84 struct in6_addr* address, unsigned int prefix) {
85 // Address cannot be unspecified
86 if (IN6_IS_ADDR_UNSPECIFIED(&address)) {
87 DEBUG(ctx, "Start address is unspecified\n");
88 return -EINVAL;
89 }
90
91 // Address cannot be loopback
92 if (IN6_IS_ADDR_LOOPBACK(&address)) {
93 DEBUG(ctx, "Start address is loopback address\n");
94 return -EINVAL;
95 }
96
97 // Address cannot be link-local
98 if (IN6_IS_ADDR_LINKLOCAL(&address)) {
99 DEBUG(ctx, "Start address cannot be link-local\n");
100 return -EINVAL;
101 }
102
103 // Address cannot be site-local
104 if (IN6_IS_ADDR_SITELOCAL(&address)) {
105 DEBUG(ctx, "Start address cannot be site-local\n");
106 return -EINVAL;
107 }
108
109 // Validate the prefix
110 if (valid_prefix(address, prefix) != 0) {
111 DEBUG(ctx, "Invalid prefix: %u\n", prefix);
112 return -EINVAL;
113 }
114
115 struct loc_network* n = calloc(1, sizeof(*n));
116 if (!n)
117 return -ENOMEM;
118
119 n->ctx = loc_ref(ctx);
120 n->refcount = 1;
121
122 // Store the first address in the network
123 n->start_address = make_start_address(address, prefix);
124 n->prefix = prefix;
125
126 DEBUG(n->ctx, "Network allocated at %p\n", n);
127 *network = n;
128 return 0;
129 }
130
131 static int loc_network_address_family(struct loc_network* network) {
132 if (IN6_IS_ADDR_V4MAPPED(&network->start_address))
133 return AF_INET;
134
135 return AF_INET6;
136 }
137
138 static int parse_address(struct loc_ctx* ctx, const char* string, struct in6_addr* address) {
139 DEBUG(ctx, "Paring IP address %s\n", string);
140
141 // Try parsing this as an IPv6 address
142 int r = inet_pton(AF_INET6, string, address);
143
144 // If inet_pton returns one it has been successful
145 if (r == 1) {
146 DEBUG(ctx, "%s is an IPv6 address\n", string);
147 return 0;
148 }
149
150 // Try parsing this as an IPv4 address
151 struct in_addr ipv4_address;
152 r = inet_pton(AF_INET, string, &ipv4_address);
153 if (r == 1) {
154 DEBUG(ctx, "%s is an IPv4 address\n", string);
155
156 // Convert to IPv6-mapped address
157 address->s6_addr32[0] = htonl(0x0000);
158 address->s6_addr32[1] = htonl(0x0000);
159 address->s6_addr32[2] = htonl(0xffff);
160 address->s6_addr32[3] = ipv4_address.s_addr;
161
162 return 0;
163 }
164
165 DEBUG(ctx, "%s is not an valid IP address\n", string);
166 return 1;
167 }
168
169 LOC_EXPORT int loc_network_new_from_string(struct loc_ctx* ctx, struct loc_network** network,
170 const char* address_string) {
171 struct in6_addr start_address;
172 unsigned int prefix = 0;
173 char* prefix_string;
174 int r = 1;
175
176 // Make a copy of the string to work on it
177 char* buffer = strdup(address_string);
178 address_string = prefix_string = buffer;
179
180 // Split address and prefix
181 address_string = strsep(&prefix_string, "/");
182
183 // Did we find a prefix?
184 if (prefix_string) {
185 // Convert prefix to integer
186 prefix = strtol(prefix_string, NULL, 10);
187
188 if (prefix) {
189 // Parse the address
190 r = parse_address(ctx, address_string, &start_address);
191
192 // Map the prefix to IPv6 if needed
193 if (IN6_IS_ADDR_V4MAPPED(&start_address))
194 prefix += 96;
195 }
196 }
197
198 // Free temporary buffer
199 free(buffer);
200
201 if (r == 0) {
202 r = loc_network_new(ctx, network, &start_address, prefix);
203 }
204
205 return r;
206 }
207
208 LOC_EXPORT struct loc_network* loc_network_ref(struct loc_network* network) {
209 network->refcount++;
210
211 return network;
212 }
213
214 static void loc_network_free(struct loc_network* network) {
215 DEBUG(network->ctx, "Releasing network at %p\n", network);
216
217 loc_unref(network->ctx);
218 free(network);
219 }
220
221 LOC_EXPORT struct loc_network* loc_network_unref(struct loc_network* network) {
222 if (--network->refcount > 0)
223 return network;
224
225 loc_network_free(network);
226 return NULL;
227 }
228
229 static int format_ipv6_address(struct loc_network* network, char* string, size_t length) {
230 const char* ret = inet_ntop(AF_INET6, &network->start_address, string, length);
231 if (!ret)
232 return -1;
233
234 return 0;
235 }
236
237 static int format_ipv4_address(struct loc_network* network, char* string, size_t length) {
238 struct in_addr ipv4_address;
239 ipv4_address.s_addr = network->start_address.s6_addr32[3];
240
241 const char* ret = inet_ntop(AF_INET, &ipv4_address, string, length);
242 if (!ret)
243 return -1;
244
245 return 0;
246 }
247
248 LOC_EXPORT char* loc_network_str(struct loc_network* network) {
249 int r;
250 const size_t length = INET6_ADDRSTRLEN + 4;
251
252 char* string = malloc(length);
253 if (!string)
254 return NULL;
255
256 unsigned int prefix = network->prefix;
257
258 int family = loc_network_address_family(network);
259 switch (family) {
260 case AF_INET6:
261 r = format_ipv6_address(network, string, length);
262 break;
263
264 case AF_INET:
265 r = format_ipv4_address(network, string, length);
266 prefix -= 96;
267 break;
268
269 default:
270 r = -1;
271 break;
272 }
273
274 if (r) {
275 ERROR(network->ctx, "Could not convert network to string: %s\n", strerror(errno));
276 free(string);
277
278 return NULL;
279 }
280
281 // Append prefix
282 sprintf(string + strlen(string), "/%u", prefix);
283
284 return string;
285 }
286
287 LOC_EXPORT const char* loc_network_get_country_code(struct loc_network* network) {
288 return network->country_code;
289 }
290
291 LOC_EXPORT int loc_network_set_country_code(struct loc_network* network, const char* country_code) {
292 // Country codes must be two characters
293 if (strlen(country_code) != 2)
294 return -EINVAL;
295
296 for (unsigned int i = 0; i < 3; i++) {
297 network->country_code[i] = country_code[i];
298 }
299
300 return 0;
301 }
302
303 LOC_EXPORT uint32_t loc_network_get_asn(struct loc_network* network) {
304 return network->asn;
305 }
306
307 LOC_EXPORT int loc_network_set_asn(struct loc_network* network, uint32_t asn) {
308 network->asn = asn;
309
310 return 0;
311 }
312
313 LOC_EXPORT int loc_network_to_database_v0(struct loc_network* network, struct loc_database_network_v0* dbobj) {
314 dbobj->prefix = network->prefix;
315
316 // Add country code
317 for (unsigned int i = 0; i < 2; i++) {
318 dbobj->country_code[i] = network->country_code ? network->country_code[i] : '\0';
319 }
320
321 // Add ASN
322 dbobj->asn = htobe32(network->asn);
323
324 return 0;
325 }
326
327 LOC_EXPORT int loc_network_new_from_database_v0(struct loc_ctx* ctx, struct loc_network** network,
328 struct in6_addr* address, const struct loc_database_network_v0* dbobj) {
329 int r = loc_network_new(ctx, network, address, dbobj->prefix);
330 if (r)
331 return r;
332
333 // Import country code
334 char country_code[3];
335 for (unsigned int i = 0; i < 2; i++) {
336 country_code[i] = dbobj->country_code[i];
337 }
338 country_code[2] = '\0';
339
340 r = loc_network_set_country_code(*network, country_code);
341 if (r)
342 return r;
343
344 // Import ASN
345 r = loc_network_set_asn(*network, be32toh(dbobj->asn));
346 if (r)
347 return r;
348
349 return 0;
350 }
351
352 struct loc_network_tree {
353 struct loc_ctx* ctx;
354 int refcount;
355
356 struct loc_network_tree_node* root;
357 };
358
359 struct loc_network_tree_node {
360 struct loc_ctx* ctx;
361 int refcount;
362
363 struct loc_network_tree_node* zero;
364 struct loc_network_tree_node* one;
365
366 struct loc_network* network;
367 };
368
369 LOC_EXPORT int loc_network_tree_new(struct loc_ctx* ctx, struct loc_network_tree** tree) {
370 struct loc_network_tree* t = calloc(1, sizeof(*t));
371 if (!t)
372 return -ENOMEM;
373
374 t->ctx = loc_ref(ctx);
375 t->refcount = 1;
376
377 // Create the root node
378 int r = loc_network_tree_node_new(ctx, &t->root);
379 if (r) {
380 loc_network_tree_unref(t);
381 return r;
382 }
383
384 DEBUG(t->ctx, "Network tree allocated at %p\n", t);
385 *tree = t;
386 return 0;
387 }
388
389 LOC_EXPORT struct loc_network_tree_node* loc_network_tree_get_root(struct loc_network_tree* tree) {
390 return loc_network_tree_node_ref(tree->root);
391 }
392
393 static struct loc_network_tree_node* loc_network_tree_get_node(struct loc_network_tree_node* node, int path) {
394 struct loc_network_tree_node** n;
395
396 if (path)
397 n = &node->zero;
398 else
399 n = &node->one;
400
401 // If the desired node doesn't exist, yet, we will create it
402 if (*n == NULL) {
403 int r = loc_network_tree_node_new(node->ctx, n);
404 if (r)
405 return NULL;
406 }
407
408 return *n;
409 }
410
411 static struct loc_network_tree_node* loc_network_tree_get_path(struct loc_network_tree* tree, const struct in6_addr* address) {
412 struct loc_network_tree_node* node = tree->root;
413
414 for (unsigned int i = 127; i > 0; i--) {
415 // Check if the ith bit is one or zero
416 node = loc_network_tree_get_node(node, ((address->s6_addr32[i / 32] & (1 << (i % 32))) == 0));
417 }
418
419 return node;
420 }
421
422 static int __loc_network_tree_walk(struct loc_ctx* ctx, struct loc_network_tree_node* node,
423 int(*filter_callback)(struct loc_network* network, void* data),
424 int(*callback)(struct loc_network* network, void* data), void* data) {
425 int r;
426
427 // Finding a network ends the walk here
428 if (node->network) {
429 if (filter_callback) {
430 int f = filter_callback(node->network, data);
431 if (f < 0)
432 return f;
433
434 // Skip network if filter function returns value greater than zero
435 if (f > 0)
436 return 0;
437 }
438
439 r = callback(node->network, data);
440 if (r)
441 return r;
442 }
443
444 // Walk down on the left side of the tree first
445 if (node->zero) {
446 r = __loc_network_tree_walk(ctx, node->zero, filter_callback, callback, data);
447 if (r)
448 return r;
449 }
450
451 // Then walk on the other side
452 if (node->one) {
453 r = __loc_network_tree_walk(ctx, node->one, filter_callback, callback, data);
454 if (r)
455 return r;
456 }
457
458 return 0;
459 }
460
461 LOC_EXPORT int loc_network_tree_walk(struct loc_network_tree* tree,
462 int(*filter_callback)(struct loc_network* network, void* data),
463 int(*callback)(struct loc_network* network, void* data), void* data) {
464 return __loc_network_tree_walk(tree->ctx, tree->root, filter_callback, callback, data);
465 }
466
467 static void loc_network_tree_free(struct loc_network_tree* tree) {
468 DEBUG(tree->ctx, "Releasing network tree at %p\n", tree);
469
470 loc_network_tree_node_unref(tree->root);
471
472 loc_unref(tree->ctx);
473 free(tree);
474 }
475
476 LOC_EXPORT struct loc_network_tree* loc_network_tree_unref(struct loc_network_tree* tree) {
477 if (--tree->refcount > 0)
478 return tree;
479
480 loc_network_tree_free(tree);
481 return NULL;
482 }
483
484 static int __loc_network_tree_dump(struct loc_network* network, void* data) {
485 DEBUG(network->ctx, "Dumping network at %p\n", network);
486
487 char* s = loc_network_str(network);
488 if (!s)
489 return 1;
490
491 INFO(network->ctx, "%s\n", s);
492 free(s);
493
494 return 0;
495 }
496
497 LOC_EXPORT int loc_network_tree_dump(struct loc_network_tree* tree) {
498 DEBUG(tree->ctx, "Dumping network tree at %p\n", tree);
499
500 return loc_network_tree_walk(tree, NULL, __loc_network_tree_dump, NULL);
501 }
502
503 LOC_EXPORT int loc_network_tree_add_network(struct loc_network_tree* tree, struct loc_network* network) {
504 DEBUG(tree->ctx, "Adding network %p to tree %p\n", network, tree);
505
506 struct loc_network_tree_node* node = loc_network_tree_get_path(tree, &network->start_address);
507 if (!node) {
508 ERROR(tree->ctx, "Could not find a node\n");
509 return -ENOMEM;
510 }
511
512 // Check if node has not been set before
513 if (node->network) {
514 DEBUG(tree->ctx, "There is already a network at this path\n");
515 return 1;
516 }
517
518 // Point node to the network
519 node->network = loc_network_ref(network);
520
521 return 0;
522 }
523
524 static int __loc_network_tree_count(struct loc_network* network, void* data) {
525 size_t* counter = (size_t*)data;
526
527 // Increase the counter for each network
528 counter++;
529
530 return 0;
531 }
532
533 LOC_EXPORT size_t loc_network_tree_count_networks(struct loc_network_tree* tree) {
534 size_t counter = 0;
535
536 int r = loc_network_tree_walk(tree, NULL, __loc_network_tree_count, &counter);
537 if (r)
538 return r;
539
540 return counter;
541 }
542
543 static size_t __loc_network_tree_count_nodes(struct loc_network_tree_node* node) {
544 size_t counter = 1;
545
546 if (node->zero)
547 counter += __loc_network_tree_count_nodes(node->zero);
548
549 if (node->one)
550 counter += __loc_network_tree_count_nodes(node->one);
551
552 return counter;
553 }
554
555 LOC_EXPORT size_t loc_network_tree_count_nodes(struct loc_network_tree* tree) {
556 return __loc_network_tree_count_nodes(tree->root);
557 }
558
559 LOC_EXPORT int loc_network_tree_node_new(struct loc_ctx* ctx, struct loc_network_tree_node** node) {
560 struct loc_network_tree_node* n = calloc(1, sizeof(*n));
561 if (!n)
562 return -ENOMEM;
563
564 n->ctx = loc_ref(ctx);
565 n->refcount = 1;
566
567 n->zero = n->one = NULL;
568
569 DEBUG(n->ctx, "Network node allocated at %p\n", n);
570 *node = n;
571 return 0;
572 }
573
574 LOC_EXPORT struct loc_network_tree_node* loc_network_tree_node_ref(struct loc_network_tree_node* node) {
575 if (node)
576 node->refcount++;
577
578 return node;
579 }
580
581 static void loc_network_tree_node_free(struct loc_network_tree_node* node) {
582 DEBUG(node->ctx, "Releasing network node at %p\n", node);
583
584 if (node->network)
585 loc_network_unref(node->network);
586
587 if (node->zero)
588 loc_network_tree_node_unref(node->zero);
589
590 if (node->one)
591 loc_network_tree_node_unref(node->one);
592
593 loc_unref(node->ctx);
594 free(node);
595 }
596
597 LOC_EXPORT struct loc_network_tree_node* loc_network_tree_node_unref(struct loc_network_tree_node* node) {
598 if (!node)
599 return NULL;
600
601 if (--node->refcount > 0)
602 return node;
603
604 loc_network_tree_node_free(node);
605 return NULL;
606 }
607
608 LOC_EXPORT struct loc_network_tree_node* loc_network_tree_node_get(struct loc_network_tree_node* node, unsigned int index) {
609 if (index == 0)
610 node = node->zero;
611 else
612 node = node->one;
613
614 if (!node)
615 return NULL;
616
617 return loc_network_tree_node_ref(node);
618 }
619
620 LOC_EXPORT int loc_network_tree_node_is_leaf(struct loc_network_tree_node* node) {
621 return (!!node->network);
622 }
623
624 LOC_EXPORT struct loc_network* loc_network_tree_node_get_network(struct loc_network_tree_node* node) {
625 return loc_network_ref(node->network);
626 }