]> git.ipfire.org Git - people/ms/libloc.git/blobdiff - src/database.c
country: Fix comparison function
[people/ms/libloc.git] / src / database.c
index 37a44e5e37aa21a14db8e75ed1374c203078a951..862fe75dffdf65a1dedd6be990af1f755c5a85ca 100644 (file)
@@ -31,6 +31,7 @@
 
 #include <loc/libloc.h>
 #include <loc/as.h>
+#include <loc/country.h>
 #include <loc/database.h>
 #include <loc/format.h>
 #include <loc/network.h>
@@ -59,6 +60,10 @@ struct loc_database {
        struct loc_database_network_v0* networks_v0;
        size_t networks_count;
 
+       // Countries
+       struct loc_database_country_v0* countries_v0;
+       size_t countries_count;
+
        struct loc_stringpool* pool;
 };
 
@@ -73,11 +78,14 @@ struct loc_node_stack {
 struct loc_database_enumerator {
        struct loc_ctx* ctx;
        struct loc_database* db;
+       enum loc_database_enumerator_mode mode;
        int refcount;
 
        // Search string
        char* string;
        char country_code[3];
+       uint32_t asn;
+       enum loc_network_flags flags;
 
        // Index of the AS we are looking at
        unsigned int as_index;
@@ -187,6 +195,30 @@ static int loc_database_read_networks_section_v0(struct loc_database* db,
        return 0;
 }
 
+static int loc_database_read_countries_section_v0(struct loc_database* db,
+               FILE* f, const struct loc_database_header_v0* header) {
+       off_t countries_offset  = be32toh(header->countries_offset);
+       size_t countries_length = be32toh(header->countries_length);
+
+       DEBUG(db->ctx, "Reading countries section from %jd (%zu bytes)\n",
+               countries_offset, countries_length);
+
+       if (countries_length > 0) {
+               db->countries_v0 = mmap(NULL, countries_length, PROT_READ,
+                       MAP_SHARED, fileno(f), countries_offset);
+
+               if (db->countries_v0 == MAP_FAILED)
+                       return -errno;
+       }
+
+       db->countries_count = countries_length / sizeof(*db->countries_v0);
+
+       INFO(db->ctx, "Read %zu countries from the database\n",
+               db->countries_count);
+
+       return 0;
+}
+
 static int loc_database_read_header_v0(struct loc_database* db, FILE* f) {
        struct loc_database_header_v0 header;
 
@@ -228,6 +260,11 @@ static int loc_database_read_header_v0(struct loc_database* db, FILE* f) {
        if (r)
                return r;
 
+       // countries
+       r = loc_database_read_countries_section_v0(db, f, &header);
+       if (r)
+               return r;
+
        return 0;
 }
 
@@ -257,8 +294,8 @@ static int loc_database_read(struct loc_database* db, FILE* f) {
 
        clock_t end = clock();
 
-       INFO(db->ctx, "Opened database in %.8fs\n",
-               (double)(end - start) / CLOCKS_PER_SEC);
+       INFO(db->ctx, "Opened database in %.4fms\n",
+               (double)(end - start) / CLOCKS_PER_SEC * 1000);
 
        return 0;
 }
@@ -401,8 +438,8 @@ LOC_EXPORT int loc_database_get_as(struct loc_database* db, struct loc_as** as,
                        clock_t end = clock();
 
                        // Log how fast this has been
-                       DEBUG(db->ctx, "Found AS%u in %.8fs\n", as_number,
-                               (double)(end - start) / CLOCKS_PER_SEC);
+                       DEBUG(db->ctx, "Found AS%u in %.4fms\n", as_number,
+                               (double)(end - start) / CLOCKS_PER_SEC * 1000);
 
                        return 0;
                }
@@ -550,8 +587,8 @@ LOC_EXPORT int loc_database_lookup(struct loc_database* db,
        clock_t end = clock();
 
        // Log how fast this has been
-       DEBUG(db->ctx, "Executed network search in %.8fs\n",
-               (double)(end - start) / CLOCKS_PER_SEC);
+       DEBUG(db->ctx, "Executed network search in %.4fms\n",
+               (double)(end - start) / CLOCKS_PER_SEC * 1000);
 
        return r;
 }
@@ -567,9 +604,82 @@ LOC_EXPORT int loc_database_lookup_from_string(struct loc_database* db,
        return loc_database_lookup(db, &address, network);
 }
 
+// Returns the country at position pos
+static int loc_database_fetch_country(struct loc_database* db,
+               struct loc_country** country, off_t pos) {
+       if ((size_t)pos >= db->countries_count)
+               return -EINVAL;
+
+       DEBUG(db->ctx, "Fetching country at position %jd\n", pos);
+
+       int r;
+       switch (db->version) {
+               case 0:
+                       r = loc_country_new_from_database_v0(db->ctx, db->pool, country, db->countries_v0 + pos);
+                       break;
+
+               default:
+                       return -1;
+       }
+
+       if (r == 0) {
+               DEBUG(db->ctx, "Got country %s\n", loc_country_get_code(*country));
+       }
+
+       return r;
+}
+
+// Performs a binary search to find the country in the list
+LOC_EXPORT int loc_database_get_country(struct loc_database* db,
+               struct loc_country** country, const char* code) {
+       off_t lo = 0;
+       off_t hi = db->countries_count - 1;
+
+       // Save start time
+       clock_t start = clock();
+
+       while (lo <= hi) {
+               off_t i = (lo + hi) / 2;
+
+               // Fetch country in the middle between lo and hi
+               int r = loc_database_fetch_country(db, country, i);
+               if (r)
+                       return r;
+
+               // Check if this is a match
+               const char* cc = loc_country_get_code(*country);
+               int result = strcmp(code, cc);
+
+               if (result == 0) {
+                       clock_t end = clock();
+
+                       // Log how fast this has been
+                       DEBUG(db->ctx, "Found country %s in %.4fms\n", cc,
+                               (double)(end - start) / CLOCKS_PER_SEC * 1000);
+
+                       return 0;
+               }
+
+               // If it wasn't, we release the country and
+               // adjust our search pointers
+               loc_country_unref(*country);
+
+               if (result > 0) {
+                       lo = i + 1;
+               } else
+                       hi = i - 1;
+       }
+
+       // Nothing found
+       *country = NULL;
+
+       return 1;
+}
+
 // Enumerator
 
-LOC_EXPORT int loc_database_enumerator_new(struct loc_database_enumerator** enumerator, struct loc_database* db) {
+LOC_EXPORT int loc_database_enumerator_new(struct loc_database_enumerator** enumerator,
+               struct loc_database* db, enum loc_database_enumerator_mode mode) {
        struct loc_database_enumerator* e = calloc(1, sizeof(*e));
        if (!e)
                return -ENOMEM;
@@ -577,6 +687,7 @@ LOC_EXPORT int loc_database_enumerator_new(struct loc_database_enumerator** enum
        // Reference context
        e->ctx = loc_ref(db->ctx);
        e->db = loc_database_ref(db);
+       e->mode = mode;
        e->refcount = 1;
 
        // Initialise graph search
@@ -640,8 +751,21 @@ LOC_EXPORT int loc_database_enumerator_set_country_code(struct loc_database_enum
                return 0;
        }
 
+       // Treat A1, A2, A3 as special country codes,
+       // but perform search for flags instead
+       if (strcmp(country_code, "A1") == 0) {
+               return loc_database_enumerator_set_flag(enumerator,
+                       LOC_NETWORK_FLAG_ANONYMOUS_PROXY);
+       } else if (strcmp(country_code, "A2") == 0) {
+               return loc_database_enumerator_set_flag(enumerator,
+                       LOC_NETWORK_FLAG_SATELLITE_PROVIDER);
+       } else if (strcmp(country_code, "A3") == 0) {
+               return loc_database_enumerator_set_flag(enumerator,
+                       LOC_NETWORK_FLAG_ANYCAST);
+       }
+
        // Country codes must be two characters
-       if (strlen(country_code) != 2)
+       if (!loc_country_code_is_valid(country_code))
                return -EINVAL;
 
        for (unsigned int i = 0; i < 3; i++) {
@@ -651,33 +775,54 @@ LOC_EXPORT int loc_database_enumerator_set_country_code(struct loc_database_enum
        return 0;
 }
 
-LOC_EXPORT struct loc_as* loc_database_enumerator_next_as(struct loc_database_enumerator* enumerator) {
+LOC_EXPORT int loc_database_enumerator_set_asn(
+               struct loc_database_enumerator* enumerator, unsigned int asn) {
+       enumerator->asn = asn;
+
+       return 0;
+}
+
+LOC_EXPORT int loc_database_enumerator_set_flag(
+               struct loc_database_enumerator* enumerator, enum loc_network_flags flag) {
+       enumerator->flags |= flag;
+
+       return 0;
+}
+
+LOC_EXPORT int loc_database_enumerator_next_as(
+               struct loc_database_enumerator* enumerator, struct loc_as** as) {
+       *as = NULL;
+
+       // Do not do anything if not in AS mode
+       if (enumerator->mode != LOC_DB_ENUMERATE_ASES)
+               return 0;
+
        struct loc_database* db = enumerator->db;
-       struct loc_as* as;
 
        while (enumerator->as_index < db->as_count) {
                // Fetch the next AS
-               int r = loc_database_fetch_as(db, &as, enumerator->as_index++);
+               int r = loc_database_fetch_as(db, as, enumerator->as_index++);
                if (r)
-                       return NULL;
+                       return r;
 
-               r = loc_as_match_string(as, enumerator->string);
+               r = loc_as_match_string(*as, enumerator->string);
                if (r == 1) {
                        DEBUG(enumerator->ctx, "AS%d (%s) matches %s\n",
-                               loc_as_get_number(as), loc_as_get_name(as), enumerator->string);
+                               loc_as_get_number(*as), loc_as_get_name(*as), enumerator->string);
 
-                       return as;
+                       return 0;
                }
 
                // No match
-               loc_as_unref(as);
+               loc_as_unref(*as);
+               *as = NULL;
        }
 
        // Reset the index
        enumerator->as_index = 0;
 
        // We have searched through all of them
-       return NULL;
+       return 0;
 }
 
 static int loc_database_enumerator_stack_push_node(
@@ -704,48 +849,52 @@ static int loc_database_enumerator_stack_push_node(
        return 0;
 }
 
-static int loc_database_enumerator_network_depth_first_search(
-               struct loc_database_enumerator* e, struct loc_network** network) {
+LOC_EXPORT int loc_database_enumerator_next_network(
+               struct loc_database_enumerator* enumerator, struct loc_network** network) {
        // Reset network
        *network = NULL;
+
+       // Do not do anything if not in network mode
+       if (enumerator->mode != LOC_DB_ENUMERATE_NETWORKS)
+               return 0;
+
        int r;
 
-       DEBUG(e->ctx, "Called with a stack of %u nodes\n", e->network_stack_depth);
+       DEBUG(enumerator->ctx, "Called with a stack of %u nodes\n",
+               enumerator->network_stack_depth);
 
        // Perform DFS
-       while (e->network_stack_depth > 0) {
-               DEBUG(e->ctx, "Stack depth: %u\n", e->network_stack_depth);
+       while (enumerator->network_stack_depth > 0) {
+               DEBUG(enumerator->ctx, "Stack depth: %u\n", enumerator->network_stack_depth);
 
                // Get object from top of the stack
-               struct loc_node_stack* node = &e->network_stack[e->network_stack_depth];
+               struct loc_node_stack* node = &enumerator->network_stack[enumerator->network_stack_depth];
 
                // Remove the node from the stack if we have already visited it
-               if (e->networks_visited[node->offset]) {
-                       e->network_stack_depth--;
+               if (enumerator->networks_visited[node->offset]) {
+                       enumerator->network_stack_depth--;
                        continue;
                }
 
-               in6_addr_set_bit(&e->network_address,
+               // Mark the bits on the path correctly
+               in6_addr_set_bit(&enumerator->network_address,
                        (node->depth > 0) ? node->depth - 1 : 0, node->i);
 
-               //for (unsigned int i = stack->depth + 1; i < 128; i++)
-               //      in6_addr_set_bit(&e->network_address, i, 0);
-
-               DEBUG(e->ctx, "Looking at node %jd\n", node->offset);
-               e->networks_visited[node->offset]++;
+               DEBUG(enumerator->ctx, "Looking at node %jd\n", node->offset);
+               enumerator->networks_visited[node->offset]++;
 
                // Pop node from top of the stack
                struct loc_database_network_node_v0* n =
-                       e->db->network_nodes_v0 + node->offset;
+                       enumerator->db->network_nodes_v0 + node->offset;
 
                // Add edges to stack
-               r = loc_database_enumerator_stack_push_node(e,
+               r = loc_database_enumerator_stack_push_node(enumerator,
                        be32toh(n->one), 1, node->depth + 1);
 
                if (r)
                        return r;
 
-               r = loc_database_enumerator_stack_push_node(e,
+               r = loc_database_enumerator_stack_push_node(enumerator,
                        be32toh(n->zero), 0, node->depth + 1);
 
                if (r)
@@ -755,11 +904,11 @@ static int loc_database_enumerator_network_depth_first_search(
                if (__loc_database_node_is_leaf(n)) {
                        off_t network_index = be32toh(n->network);
 
-                       DEBUG(e->ctx, "Node has a network at %jd\n", network_index);
+                       DEBUG(enumerator->ctx, "Node has a network at %jd\n", network_index);
 
                        // Fetch the network object
-                       r = loc_database_fetch_network(e->db, network,
-                               &e->network_address, node->depth, network_index);
+                       r = loc_database_fetch_network(enumerator->db, network,
+                               &enumerator->network_address, node->depth, network_index);
 
                        // Break on any errors
                        if (r)
@@ -768,29 +917,39 @@ static int loc_database_enumerator_network_depth_first_search(
                        // Check if we are interested in this network
 
                        // Skip if the country code does not match
-                       if (e->country_code && !loc_network_match_country_code(*network, e->country_code)) {
+                       if (enumerator->country_code &&
+                                       !loc_network_match_country_code(*network, enumerator->country_code)) {
+                               loc_network_unref(*network);
+                               *network = NULL;
+
+                               continue;
+                       }
+
+                       // Skip if the ASN does not match
+                       if (enumerator->asn &&
+                                       !loc_network_match_asn(*network, enumerator->asn)) {
                                loc_network_unref(*network);
+                               *network = NULL;
+
                                continue;
                        }
 
+                       // Skip if flags do not match
+                       if (enumerator->flags &&
+                                       !loc_network_match_flag(*network, enumerator->flags)) {
+                               loc_network_unref(*network);
+                               *network = NULL;
+                       }
+
                        return 0;
                }
        }
 
        // Reached the end of the search
-       // TODO cleanup
 
-       return 0;
-}
+       // Mark all nodes as non-visited
+       for (unsigned int i = 0; i < enumerator->db->network_nodes_count; i++)
+               enumerator->networks_visited[i] = 0;
 
-LOC_EXPORT struct loc_network* loc_database_enumerator_next_network(
-               struct loc_database_enumerator* enumerator) {
-       struct loc_network* network = NULL;
-
-       int r = loc_database_enumerator_network_depth_first_search(enumerator, &network);
-       if (r) {
-               return NULL;
-       }
-
-       return network;
+       return 0;
 }