summaryrefslogtreecommitdiffstats
path: root/rtrlib/spki
diff options
context:
space:
mode:
Diffstat (limited to 'rtrlib/spki')
-rw-r--r--rtrlib/spki/hashtable/ht-spkitable.c368
-rw-r--r--rtrlib/spki/hashtable/ht-spkitable_private.h35
-rw-r--r--rtrlib/spki/spkitable.h54
-rw-r--r--rtrlib/spki/spkitable_private.h143
4 files changed, 600 insertions, 0 deletions
diff --git a/rtrlib/spki/hashtable/ht-spkitable.c b/rtrlib/spki/hashtable/ht-spkitable.c
new file mode 100644
index 0000000..047ab3a
--- /dev/null
+++ b/rtrlib/spki/hashtable/ht-spkitable.c
@@ -0,0 +1,368 @@
+/*
+ * This file is part of RTRlib.
+ *
+ * This file is subject to the terms and conditions of the MIT license.
+ * See the file LICENSE in the top level directory for more details.
+ *
+ * Website: http://rtrlib.realmv6.org/
+ */
+
+#include "ht-spkitable_private.h"
+
+#include "rtrlib/lib/alloc_utils_private.h"
+
+#include <pthread.h>
+#include <stdio.h>
+#include <string.h>
+
+struct key_entry {
+ uint8_t ski[SKI_SIZE];
+ uint32_t asn;
+ uint8_t spki[SPKI_SIZE];
+ const struct rtr_socket *socket;
+ tommy_node hash_node;
+ tommy_node list_node;
+};
+
+/**
+ * @brief Compares two key_entries by comparing ASN, SKI and SPKI
+ * @param[in] arg Pointer to first key_entry
+ * @param[in] obj Pointer to second key_entry
+ * @return 1 if not equal
+ * @return 0 if equal
+ */
+static int key_entry_cmp(const void *arg, const void *obj)
+{
+ const struct key_entry *param = arg;
+ const struct key_entry *entry = obj;
+
+ if (param->asn != entry->asn)
+ return 1;
+ if (memcmp(param->ski, entry->ski, sizeof(entry->ski)))
+ return 1;
+ if (memcmp(param->spki, entry->spki, sizeof(entry->spki)))
+ return 1;
+ if (param->socket != entry->socket)
+ return 1;
+
+ return 0;
+}
+
+/* Copying the content, target struct must already be allocated */
+static void key_entry_to_spki_record(struct key_entry *key_e, struct spki_record *spki_r)
+{
+ spki_r->asn = key_e->asn;
+ spki_r->socket = key_e->socket;
+ memcpy(spki_r->ski, key_e->ski, sizeof(key_e->ski));
+ memcpy(spki_r->spki, key_e->spki, sizeof(key_e->spki));
+}
+
+/* Copying the content, target struct must already be allocated */
+static void spki_record_to_key_entry(struct spki_record *spki_r, struct key_entry *key_e)
+{
+ key_e->asn = spki_r->asn;
+ key_e->socket = spki_r->socket;
+ memcpy(key_e->ski, spki_r->ski, sizeof(spki_r->ski));
+ memcpy(key_e->spki, spki_r->spki, sizeof(spki_r->spki));
+}
+
+/**
+ * @brief Calls the spki_table update function.
+ * @param[in] spki_table spki_table to use.
+ * @param[in] record spki_record that was added/removed.
+ * @param[in] added True means record was added, False means removed
+ */
+static void spki_table_notify_clients(struct spki_table *spki_table, const struct spki_record *record, const bool added)
+{
+ if (spki_table->update_fp)
+ spki_table->update_fp(spki_table, *record, added);
+}
+
+void spki_table_init(struct spki_table *spki_table, spki_update_fp update_fp)
+{
+ tommy_hashlin_init(&spki_table->hashtable);
+ tommy_list_init(&spki_table->list);
+ pthread_rwlock_init(&spki_table->lock, NULL);
+ spki_table->cmp_fp = key_entry_cmp;
+ spki_table->update_fp = update_fp;
+}
+
+void spki_table_free(struct spki_table *spki_table)
+{
+ pthread_rwlock_wrlock(&spki_table->lock);
+
+ tommy_list_foreach(&spki_table->list, free);
+ tommy_hashlin_done(&spki_table->hashtable);
+
+ pthread_rwlock_unlock(&spki_table->lock);
+ pthread_rwlock_destroy(&spki_table->lock);
+}
+
+void spki_table_free_without_notify(struct spki_table *spki_table)
+{
+ pthread_rwlock_wrlock(&spki_table->lock);
+
+ spki_table->update_fp = NULL;
+ tommy_list_foreach(&spki_table->list, free);
+ tommy_hashlin_done(&spki_table->hashtable);
+
+ pthread_rwlock_unlock(&spki_table->lock);
+ pthread_rwlock_destroy(&spki_table->lock);
+}
+
+int spki_table_add_entry(struct spki_table *spki_table, struct spki_record *spki_record)
+{
+ uint32_t hash;
+ struct key_entry *entry;
+
+ entry = lrtr_malloc(sizeof(*entry));
+ if (!entry)
+ return SPKI_ERROR;
+
+ spki_record_to_key_entry(spki_record, entry);
+ hash = tommy_inthash_u32(spki_record->asn);
+
+ pthread_rwlock_wrlock(&spki_table->lock);
+ if (tommy_hashlin_search(&spki_table->hashtable, spki_table->cmp_fp, entry, hash)) {
+ lrtr_free(entry);
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_DUPLICATE_RECORD;
+ }
+
+ /* Insert into hashtable and list */
+ tommy_hashlin_insert(&spki_table->hashtable, &entry->hash_node, entry, hash);
+ tommy_list_insert_tail(&spki_table->list, &entry->list_node, entry);
+ pthread_rwlock_unlock(&spki_table->lock);
+ spki_table_notify_clients(spki_table, spki_record, true);
+ return SPKI_SUCCESS;
+}
+
+int spki_table_get_all(struct spki_table *spki_table, uint32_t asn, uint8_t *ski, struct spki_record **result,
+ unsigned int *result_size)
+{
+ uint32_t hash = tommy_inthash_u32(asn);
+ tommy_node *result_bucket;
+ void *tmp;
+
+ *result = NULL;
+ *result_size = 0;
+
+ pthread_rwlock_rdlock(&spki_table->lock);
+
+ /**
+ * A tommy node contains its storing key_entry (->data) as well as
+ * next and prev pointer to accommodate multiple results.
+ * The bucket is guaranteed to contain ALL the elements
+ * with the specified hash, but it can contain also others.
+ */
+ result_bucket = tommy_hashlin_bucket(&spki_table->hashtable, hash);
+
+ if (!result_bucket) {
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_SUCCESS;
+ }
+
+ /* Build the result array */
+ while (result_bucket) {
+ struct key_entry *element;
+
+ element = result_bucket->data;
+ if (element->asn == asn && memcmp(element->ski, ski, sizeof(element->ski)) == 0) {
+ (*result_size)++;
+ tmp = lrtr_realloc(*result, *result_size * sizeof(**result));
+ if (!tmp) {
+ lrtr_free(*result);
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_ERROR;
+ }
+ *result = tmp;
+ key_entry_to_spki_record(element, *result + *result_size - 1);
+ }
+ result_bucket = result_bucket->next;
+ }
+
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_SUCCESS;
+}
+
+// cppcheck-suppress unusedFunction
+int spki_table_search_by_ski(struct spki_table *spki_table, uint8_t *ski, struct spki_record **result,
+ unsigned int *result_size)
+{
+ tommy_node *current_node;
+ void *tmp;
+ *result = NULL;
+ *result_size = 0;
+
+ pthread_rwlock_rdlock(&spki_table->lock);
+
+ current_node = tommy_list_head(&spki_table->list);
+ while (current_node) {
+ struct key_entry *current_entry;
+
+ current_entry = (struct key_entry *)current_node->data;
+
+ if (memcmp(current_entry->ski, ski, sizeof(current_entry->ski)) == 0) {
+ (*result_size)++;
+ tmp = lrtr_realloc(*result, sizeof(**result) * (*result_size));
+ if (!tmp) {
+ lrtr_free(*result);
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_ERROR;
+ }
+ *result = tmp;
+ key_entry_to_spki_record(current_entry, *result + (*result_size - 1));
+ }
+ current_node = current_node->next;
+ }
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_SUCCESS;
+}
+
+int spki_table_remove_entry(struct spki_table *spki_table, struct spki_record *spki_record)
+{
+ uint32_t hash;
+ struct key_entry entry;
+ struct key_entry *rmv_elem;
+ int rtval = SPKI_ERROR;
+
+ spki_record_to_key_entry(spki_record, &entry);
+ hash = tommy_inthash_u32(spki_record->asn);
+
+ pthread_rwlock_wrlock(&spki_table->lock);
+
+ if (!tommy_hashlin_search(&spki_table->hashtable, spki_table->cmp_fp, &entry, hash)) {
+ rtval = SPKI_RECORD_NOT_FOUND;
+ } else {
+ /* Remove from hashtable and list */
+ rmv_elem = tommy_hashlin_remove(&spki_table->hashtable, spki_table->cmp_fp, &entry, hash);
+ if (rmv_elem && tommy_list_remove_existing(&spki_table->list, &rmv_elem->list_node)) {
+ lrtr_free(rmv_elem);
+ spki_table_notify_clients(spki_table, spki_record, false);
+ rtval = SPKI_SUCCESS;
+ }
+ }
+ pthread_rwlock_unlock(&spki_table->lock);
+ return rtval;
+}
+
+int spki_table_src_remove(struct spki_table *spki_table, const struct rtr_socket *socket)
+{
+ struct key_entry *entry;
+ tommy_node *current_node;
+
+ pthread_rwlock_wrlock(&spki_table->lock);
+
+ current_node = tommy_list_head(&spki_table->list);
+ while (current_node) {
+ entry = current_node->data;
+ if (entry->socket == socket) {
+ current_node = current_node->next;
+ if (!tommy_list_remove_existing(&spki_table->list, &entry->list_node)) {
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_ERROR;
+ }
+ if (!tommy_hashlin_remove_existing(&spki_table->hashtable, &entry->hash_node)) {
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_ERROR;
+ }
+ lrtr_free(entry);
+ } else {
+ current_node = current_node->next;
+ }
+ }
+ pthread_rwlock_unlock(&spki_table->lock);
+ return SPKI_SUCCESS;
+}
+
+int spki_table_copy_except_socket(struct spki_table *src, struct spki_table *dst, struct rtr_socket *socket)
+{
+ tommy_node *current_node;
+ int ret = SPKI_SUCCESS;
+
+ pthread_rwlock_rdlock(&src->lock);
+ current_node = tommy_list_head(&src->list);
+ while (current_node) {
+ struct key_entry *entry;
+ struct spki_record record;
+
+ entry = (struct key_entry *)current_node->data;
+ key_entry_to_spki_record(entry, &record);
+
+ if (entry->socket != socket) {
+ if (spki_table_add_entry(dst, &record) != SPKI_SUCCESS) {
+ ret = SPKI_ERROR;
+ break;
+ }
+ }
+ current_node = current_node->next;
+ }
+
+ pthread_rwlock_unlock(&src->lock);
+
+ return ret;
+}
+
+void spki_table_notify_diff(struct spki_table *new_table, struct spki_table *old_table, const struct rtr_socket *socket)
+{
+ spki_update_fp old_table_fp;
+
+ // Disable update callback for old_table
+ old_table_fp = old_table->update_fp;
+ old_table->update_fp = NULL;
+
+ // Iterate new_table and try to delete every entry from the given socket
+ // in old_table If the prefix could not be removed it was added in
+ // new_table and the update cb must be called
+ for (tommy_node *current_node = tommy_list_head(&new_table->list); current_node;
+ current_node = current_node->next) {
+ struct key_entry *entry = (struct key_entry *)current_node->data;
+
+ if (entry->socket == socket) {
+ struct spki_record record;
+
+ key_entry_to_spki_record(entry, &record);
+
+ if (spki_table_remove_entry(old_table, &record) == SPKI_RECORD_NOT_FOUND)
+ spki_table_notify_clients(new_table, &record, true);
+ }
+ }
+
+ // Iterate old_table and call cb for every remianing entry from the
+ // given socket with added false because it is not present in new_table
+ for (tommy_node *current_node = tommy_list_head(&old_table->list); current_node;
+ current_node = current_node->next) {
+ struct key_entry *entry = (struct key_entry *)current_node->data;
+
+ if (entry->socket == socket) {
+ struct spki_record record;
+
+ key_entry_to_spki_record(entry, &record);
+ spki_table_notify_clients(new_table, &record, false);
+ }
+ }
+
+ // Restore original state of old_tables update_fp
+ old_table->update_fp = old_table_fp;
+}
+
+void spki_table_swap(struct spki_table *a, struct spki_table *b)
+{
+ tommy_hashlin tmp_hashtable;
+ tommy_list tmp_list;
+
+ pthread_rwlock_wrlock(&a->lock);
+ pthread_rwlock_wrlock(&b->lock);
+
+ memcpy(&tmp_hashtable, &a->hashtable, sizeof(tmp_hashtable));
+ memcpy(&tmp_list, &a->list, sizeof(tmp_list));
+
+ memcpy(&a->hashtable, &b->hashtable, sizeof(tmp_hashtable));
+ memcpy(&a->list, &b->list, sizeof(tmp_list));
+
+ memcpy(&b->hashtable, &tmp_hashtable, sizeof(tmp_hashtable));
+ memcpy(&b->list, &tmp_list, sizeof(tmp_list));
+
+ pthread_rwlock_unlock(&a->lock);
+ pthread_rwlock_unlock(&b->lock);
+}
diff --git a/rtrlib/spki/hashtable/ht-spkitable_private.h b/rtrlib/spki/hashtable/ht-spkitable_private.h
new file mode 100644
index 0000000..05b0a48
--- /dev/null
+++ b/rtrlib/spki/hashtable/ht-spkitable_private.h
@@ -0,0 +1,35 @@
+/*
+ * This file is part of RTRlib.
+ *
+ * This file is subject to the terms and conditions of the MIT license.
+ * See the file LICENSE in the top level directory for more details.
+ *
+ * Website: http://rtrlib.realmv6.org/
+ */
+#ifndef RTR_HT_SPKITABLE_PRIVATE_H
+#define RTR_HT_SPKITABLE_PRIVATE_H
+
+#include "rtrlib/spki/spkitable_private.h"
+
+#include "third-party/tommyds/tommyhashlin.h"
+#include "third-party/tommyds/tommylist.h"
+
+typedef int (*hash_cmp_fp)(const void *arg, const void *obj);
+
+/**
+ * @brief spki_table.
+ * @param hashtable Linear hashtable
+ * @param list List that holds the same entries as hashtable, used to iterate.
+ * @param cmp_fp Compare function used to find entries in the hashtable
+ * @param update_fp Update function, called when the hashtable changes
+ * @param lock Read-Write lock to prevent data races
+ */
+struct spki_table {
+ tommy_hashlin hashtable;
+ tommy_list list;
+ hash_cmp_fp cmp_fp;
+ spki_update_fp update_fp;
+ pthread_rwlock_t lock;
+};
+
+#endif
diff --git a/rtrlib/spki/spkitable.h b/rtrlib/spki/spkitable.h
new file mode 100644
index 0000000..4158c58
--- /dev/null
+++ b/rtrlib/spki/spkitable.h
@@ -0,0 +1,54 @@
+/*
+ * This file is part of RTRlib.
+ *
+ * This file is subject to the terms and conditions of the MIT license.
+ * See the file LICENSE in the top level directory for more details.
+ *
+ * Website: http://rtrlib.realmv6.org/
+ */
+
+/**
+ * @defgroup mod_spki_h Subject Public Key Info table
+ * @brief The spki_table is an abstract data structure to organize the received Router Key PDUs
+ * from a RPKI-RTR cache server.
+ *
+ * @{
+ */
+
+#ifndef RTR_SPKI_H
+#define RTR_SPKI_H
+
+#include "rtrlib/rtr/rtr.h"
+
+#include <stdbool.h>
+#include <stdint.h>
+
+#define SKI_SIZE 20
+#define SPKI_SIZE 91
+
+struct spki_table;
+
+/**
+ * @brief spki_record.
+ * @param ski Subject Key Identifier
+ * @param asn Origin AS number
+ * @param spki Subject public key info
+ * @param socket Pointer to the rtr_socket this spki_record was received in
+ */
+struct spki_record {
+ uint8_t ski[SKI_SIZE];
+ uint32_t asn;
+ uint8_t spki[SPKI_SIZE];
+ const struct rtr_socket *socket;
+};
+
+/**
+ * @brief A function pointer that is called if an record was added
+ * to the spki_table or was removed from the spki_table.
+ * @param spki_table which was updated.
+ * @param record spki_record that was modified.
+ * @param added True if the record was added, false if the record was removed.
+ */
+typedef void (*spki_update_fp)(struct spki_table *spki_table, const struct spki_record record, const bool added);
+#endif
+/** @} */
diff --git a/rtrlib/spki/spkitable_private.h b/rtrlib/spki/spkitable_private.h
new file mode 100644
index 0000000..65c3481
--- /dev/null
+++ b/rtrlib/spki/spkitable_private.h
@@ -0,0 +1,143 @@
+/*
+ * This file is part of RTRlib.
+ *
+ * This file is subject to the terms and conditions of the MIT license.
+ * See the file LICENSE in the top level directory for more details.
+ *
+ * Website: http://rtrlib.realmv6.org/
+ */
+
+/**
+ * @defgroup mod_spki_h Subject Public Key Info table
+ * @brief The spki_table is an abstract data structure to organize the received Router Key PDUs
+ * from a RPKI-RTR cache server.
+ *
+ * @{
+ */
+
+#ifndef RTR_SPKI_PRIVATE_H
+#define RTR_SPKI_PRIVATE_H
+
+#include "rtrlib/spki/spkitable.h"
+
+#include <stdint.h>
+
+/**
+ * @brief Possible return values for some spki_table_ functions.
+ */
+enum spki_rtvals {
+ /** Operation was successful. */
+ SPKI_SUCCESS = 0,
+
+ /** Error occurred. */
+ SPKI_ERROR = -1,
+
+ /** The supplied spki_record already exists in the spki_table. */
+ SPKI_DUPLICATE_RECORD = -2,
+
+ /** spki_record wasn't found in the spki_table. */
+ SPKI_RECORD_NOT_FOUND = -3
+};
+
+/**
+ * @brief Initializes the spki_table struct.
+ * @param[in] spki_table spki_table that will be initialized.
+ * @param[in] update_fp Pointer to update function
+ */
+void spki_table_init(struct spki_table *spki_table, spki_update_fp update_fp);
+
+/**
+ * @brief Frees the memory associated with the spki_table.
+ * @param[in] spki_table spki_table that will be initialized.
+ */
+void spki_table_free(struct spki_table *spki_table);
+
+/**
+ * @brief Frees the memory associated with the spki_table without calling the update callback.
+ * @param[in] spki_table spki_table that will be initialized.
+ */
+void spki_table_free_without_notify(struct spki_table *spki_table);
+
+/**
+ * @brief Adds a spki_record to a spki_table.
+ * @param[in] spki_table spki_table to use.
+ * @param[in] spki_record spki_record that will be added.
+ * @return SPKI_SUCCESS On success.
+ * @return SPKI_ERROR On error.
+ * @return SPKI_DUPLICATE_RECORD If an identical spki_record already exists
+ */
+int spki_table_add_entry(struct spki_table *spki_table, struct spki_record *spki_record);
+
+/**
+ * @brief Returns all spki_record whose ASN and SKI matches.
+ * @param[in] spki_table spki_table to use
+ * @param[in] asn the AS number
+ * @param[in] ski the 20 byte field which contains the SKI to search for
+ * @param[out] result the result array. NULL if no records could be found
+ * @param[out] result_size elment count of the result array
+ * @return SPKI_SUCCESS On success
+ * @return SPKI_ERROR On error
+ */
+int spki_table_get_all(struct spki_table *spki_table, uint32_t asn, uint8_t *ski, struct spki_record **result,
+ unsigned int *result_size);
+
+/**
+ * @brief Returns all spki_record whose SKI number matches the given one.
+ * @param[in] spki_table spki_table to use
+ * @param[in] ski the 20 byte field which contains the SKI to search for
+ * @param[out] result the result array. NULL if no records could be found
+ * @param[out] result_size elment count of the result array
+ * @return SPKI_SUCCESS On success
+ * @return SPKI_ERROR On error
+ */
+int spki_table_search_by_ski(struct spki_table *spki_table, uint8_t *ski, struct spki_record **result,
+ unsigned int *result_size);
+
+/**
+ * @brief Removes spki_record from spki_table
+ * @param spki_table spki_table to use
+ * @param spki_record spki_record to remove;
+ * @return SPKI_SUCCESS On success
+ * @return SPKI_ERROR On error
+ * @return SPKI_RECORD_NOT_FOUND On record not found
+ */
+int spki_table_remove_entry(struct spki_table *spki_table, struct spki_record *spki_record);
+
+/**
+ * @brief Removes all entries in the spki_table that match the passed socket_id.
+ * @param[in] spki_table spki_table to use.
+ * @param[in] socket origin socket of the record
+ * @return SPKI_SUCCESS On success.
+ * @return SPKI_ERROR On error.
+ */
+int spki_table_src_remove(struct spki_table *spki_table, const struct rtr_socket *socket);
+
+/**
+ * @brief Copy spki table except entries from the given socket
+ * @param[in] src source table
+ * @param[in] dest target table
+ * @param[in] socket socket which entries should not be copied
+ * @return SPKI_SUCCESS On success.
+ * @return SPKI_ERROR On error.
+ */
+int spki_table_copy_except_socket(struct spki_table *src, struct spki_table *dest, struct rtr_socket *socket);
+
+/**
+ * @brief Notify client about changes between two spki tables regarding one specific socket
+ * @details old_table will be modified and should probebly be freed after calling this function
+ * @param[in] new_table
+ * @param[in] old_table
+ * @param[in] socket socket which entries should be diffed
+ */
+void spki_table_notify_diff(struct spki_table *new_table, struct spki_table *old_table,
+ const struct rtr_socket *socket);
+
+/**
+ * @brief tommy_hashlin and tommy_list of the argument tables
+ * @param[in] a
+ * @param[in] b
+ */
+void spki_table_swap(struct spki_table *a, struct spki_table *b);
+
+#endif
+/** @} */