summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/hashtables.c6
-rw-r--r--src/hashtables.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/hashtables.c b/src/hashtables.c
index 8911625..db7c23b 100644
--- a/src/hashtables.c
+++ b/src/hashtables.c
@@ -60,6 +60,8 @@ static inline struct hlist_head *index_bucket(struct index_hashtable *table, con
void index_hashtable_init(struct index_hashtable *table)
{
+ get_random_bytes(table->key, SIPHASH24_KEY_LEN);
+ atomic64_set(&table->counter, 0);
hash_init(table->hashtable);
spin_lock_init(&table->lock);
}
@@ -67,6 +69,7 @@ void index_hashtable_init(struct index_hashtable *table)
__le32 index_hashtable_insert(struct index_hashtable *table, struct index_hashtable_entry *entry)
{
struct index_hashtable_entry *existing_entry;
+ uint64_t counter;
spin_lock(&table->lock);
hlist_del_init_rcu(&entry->index_hash);
@@ -76,7 +79,8 @@ __le32 index_hashtable_insert(struct index_hashtable *table, struct index_hashta
search_unused_slot:
/* First we try to find an unused slot, randomly, while unlocked. */
- get_random_bytes(&entry->index, sizeof(entry->index));
+ counter = atomic64_inc_return(&table->counter);
+ entry->index = (__force __le32)siphash24((uint8_t *)&counter, sizeof(counter), table->key);
hlist_for_each_entry_rcu(existing_entry, index_bucket(table, entry->index), index_hash) {
if (existing_entry->index == entry->index)
goto search_unused_slot; /* If it's already in use, we continue searching. */
diff --git a/src/hashtables.h b/src/hashtables.h
index 495a6f0..ed9506b 100644
--- a/src/hashtables.h
+++ b/src/hashtables.h
@@ -20,6 +20,8 @@ struct wireguard_peer *pubkey_hashtable_lookup(struct pubkey_hashtable *table, c
struct index_hashtable {
DECLARE_HASHTABLE(hashtable, 10);
+ uint8_t key[SIPHASH24_KEY_LEN];
+ atomic64_t counter;
spinlock_t lock;
};
struct index_hashtable_entry;