blob: 3c48c6bb1acd5dd844a6c8819cea183ecf54f3fb [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2006-2011 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Simon Wunderlich, Marek Lindner
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
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/* callback to a compare function. should
28 * compare 2 element datas for their keys,
29 * return 0 if same and not 0 if not
30 * same */
31typedef int (*hashdata_compare_cb)(void *, void *);
32
33/* the hashfunction, should return an index
34 * based on the key in the data of the first
35 * argument and the size the second */
36typedef int (*hashdata_choose_cb)(void *, int);
37typedef void (*hashdata_free_cb)(void *, void *);
38
39struct element_t {
40 void *data; /* pointer to the data */
41 struct hlist_node hlist; /* bucket list pointer */
Marek Lindnerfb778ea2011-01-19 20:01:40 +000042 struct rcu_head rcu;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043};
44
45struct hashtable_t {
Marek Lindnerfb778ea2011-01-19 20:01:40 +000046 struct hlist_head *table; /* the hashtable itself with the buckets */
47 spinlock_t *list_locks; /* spinlock for each hash list entry */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048 int size; /* size of hashtable */
49};
50
51/* allocates and clears the hash */
52struct hashtable_t *hash_new(int size);
53
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054/* free only the hashtable and the hash itself. */
55void hash_destroy(struct hashtable_t *hash);
56
Marek Lindnerfb778ea2011-01-19 20:01:40 +000057void bucket_free_rcu(struct rcu_head *rcu);
58
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000059/* remove the hash structure. if hashdata_free_cb != NULL, this function will be
60 * called to remove the elements inside of the hash. if you don't remove the
61 * elements, memory might be leaked. */
62static inline void hash_delete(struct hashtable_t *hash,
63 hashdata_free_cb free_cb, void *arg)
64{
65 struct hlist_head *head;
66 struct hlist_node *walk, *safe;
67 struct element_t *bucket;
Marek Lindnerfb778ea2011-01-19 20:01:40 +000068 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069 int i;
70
71 for (i = 0; i < hash->size; i++) {
72 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +000073 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000074
Marek Lindnerfb778ea2011-01-19 20:01:40 +000075 spin_lock_bh(list_lock);
76 hlist_for_each_entry_safe(bucket, walk, safe, head, hlist) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000077 if (free_cb)
78 free_cb(bucket->data, arg);
79
Marek Lindnerfb778ea2011-01-19 20:01:40 +000080 hlist_del_rcu(walk);
81 call_rcu(&bucket->rcu, bucket_free_rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +000083 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084 }
85
86 hash_destroy(hash);
87}
88
89/* adds data to the hashtable. returns 0 on success, -1 on error */
90static inline int hash_add(struct hashtable_t *hash,
91 hashdata_compare_cb compare,
92 hashdata_choose_cb choose, void *data)
93{
94 int index;
95 struct hlist_head *head;
96 struct hlist_node *walk, *safe;
97 struct element_t *bucket;
Marek Lindnerfb778ea2011-01-19 20:01:40 +000098 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000099
100 if (!hash)
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000101 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000102
103 index = choose(data, hash->size);
104 head = &hash->table[index];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000105 list_lock = &hash->list_locks[index];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000106
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000107 rcu_read_lock();
108 hlist_for_each_entry_safe(bucket, walk, safe, head, hlist) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000109 if (compare(bucket->data, data))
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000110 goto err_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000112 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000113
114 /* no duplicate found in list, add new element */
115 bucket = kmalloc(sizeof(struct element_t), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116 if (!bucket)
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000117 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118
119 bucket->data = data;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000120
121 spin_lock_bh(list_lock);
122 hlist_add_head_rcu(&bucket->hlist, head);
123 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000124
125 return 0;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000126
127err_unlock:
128 rcu_read_unlock();
129err:
130 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131}
132
133/* removes data from hash, if found. returns pointer do data on success, so you
134 * can remove the used structure yourself, or NULL on error . data could be the
135 * structure you use with just the key filled, we just need the key for
136 * comparing. */
137static inline void *hash_remove(struct hashtable_t *hash,
138 hashdata_compare_cb compare,
139 hashdata_choose_cb choose, void *data)
140{
141 size_t index;
142 struct hlist_node *walk;
143 struct element_t *bucket;
144 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000145 void *data_save = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146
147 index = choose(data, hash->size);
148 head = &hash->table[index];
149
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000150 spin_lock_bh(&hash->list_locks[index]);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000151 hlist_for_each_entry(bucket, walk, head, hlist) {
152 if (compare(bucket->data, data)) {
153 data_save = bucket->data;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000154 hlist_del_rcu(walk);
155 call_rcu(&bucket->rcu, bucket_free_rcu);
156 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157 }
158 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000159 spin_unlock_bh(&hash->list_locks[index]);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000161 return data_save;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000162}
163
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000164/**
165 * finds data, based on the key in keydata. returns the found data on success,
166 * or NULL on error
167 *
168 * caller must lock with rcu_read_lock() / rcu_read_unlock()
169 **/
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000170static inline void *hash_find(struct hashtable_t *hash,
171 hashdata_compare_cb compare,
172 hashdata_choose_cb choose, void *keydata)
173{
174 int index;
175 struct hlist_head *head;
176 struct hlist_node *walk;
177 struct element_t *bucket;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000178 void *bucket_data = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000179
180 if (!hash)
181 return NULL;
182
183 index = choose(keydata , hash->size);
184 head = &hash->table[index];
185
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000186 hlist_for_each_entry(bucket, walk, head, hlist) {
187 if (compare(bucket->data, keydata)) {
188 bucket_data = bucket->data;
189 break;
190 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191 }
192
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000193 return bucket_data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194}
195
196#endif /* _NET_BATMAN_ADV_HASH_H_ */