1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22#ifndef _NET_BATMAN_ADV_HASH_H_
23#define _NET_BATMAN_ADV_HASH_H_
24
25#include <linux/list.h>
26
27
28
29
30
31typedef int (*hashdata_compare_cb)(const struct hlist_node *, const void *);
32
33
34
35
36typedef uint32_t (*hashdata_choose_cb)(const void *, uint32_t);
37typedef void (*hashdata_free_cb)(struct hlist_node *, void *);
38
39struct hashtable_t {
40 struct hlist_head *table;
41 spinlock_t *list_locks;
42 uint32_t size;
43};
44
45
46struct hashtable_t *hash_new(uint32_t size);
47
48
49void hash_destroy(struct hashtable_t *hash);
50
51
52
53
54static inline void hash_delete(struct hashtable_t *hash,
55 hashdata_free_cb free_cb, void *arg)
56{
57 struct hlist_head *head;
58 struct hlist_node *node, *node_tmp;
59 spinlock_t *list_lock;
60 uint32_t i;
61
62 for (i = 0; i < hash->size; i++) {
63 head = &hash->table[i];
64 list_lock = &hash->list_locks[i];
65
66 spin_lock_bh(list_lock);
67 hlist_for_each_safe(node, node_tmp, head) {
68 hlist_del_rcu(node);
69
70 if (free_cb)
71 free_cb(node, arg);
72 }
73 spin_unlock_bh(list_lock);
74 }
75
76 hash_destroy(hash);
77}
78
79
80
81
82
83
84
85
86
87
88
89
90
91static inline int hash_add(struct hashtable_t *hash,
92 hashdata_compare_cb compare,
93 hashdata_choose_cb choose,
94 const void *data, struct hlist_node *data_node)
95{
96 uint32_t index;
97 int ret = -1;
98 struct hlist_head *head;
99 struct hlist_node *node;
100 spinlock_t *list_lock;
101
102 if (!hash)
103 goto out;
104
105 index = choose(data, hash->size);
106 head = &hash->table[index];
107 list_lock = &hash->list_locks[index];
108
109 rcu_read_lock();
110 __hlist_for_each_rcu(node, head) {
111 if (!compare(node, data))
112 continue;
113
114 ret = 1;
115 goto err_unlock;
116 }
117 rcu_read_unlock();
118
119
120 spin_lock_bh(list_lock);
121 hlist_add_head_rcu(data_node, head);
122 spin_unlock_bh(list_lock);
123
124 ret = 0;
125 goto out;
126
127err_unlock:
128 rcu_read_unlock();
129out:
130 return ret;
131}
132
133
134
135
136
137static inline void *hash_remove(struct hashtable_t *hash,
138 hashdata_compare_cb compare,
139 hashdata_choose_cb choose, void *data)
140{
141 uint32_t index;
142 struct hlist_node *node;
143 struct hlist_head *head;
144 void *data_save = NULL;
145
146 index = choose(data, hash->size);
147 head = &hash->table[index];
148
149 spin_lock_bh(&hash->list_locks[index]);
150 hlist_for_each(node, head) {
151 if (!compare(node, data))
152 continue;
153
154 data_save = node;
155 hlist_del_rcu(node);
156 break;
157 }
158 spin_unlock_bh(&hash->list_locks[index]);
159
160 return data_save;
161}
162
163#endif
164