blob: e75df6be4f224d942355caf3dc9a194c3363d29b [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann567db7b2012-01-01 00:41:38 +01002 * Copyright (C) 2006-2012 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 */
Sven Eckelmann747e4222011-05-14 23:14:50 +020031typedef int (*hashdata_compare_cb)(const struct hlist_node *, const void *);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032
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 */
Antonio Quartullic90681b2011-10-05 17:05:25 +020036typedef uint32_t (*hashdata_choose_cb)(const void *, uint32_t);
Marek Lindner7aadf882011-02-18 12:28:09 +000037typedef void (*hashdata_free_cb)(struct hlist_node *, void *);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000038
39struct hashtable_t {
Marek Lindnerfb778ea2011-01-19 20:01:40 +000040 struct hlist_head *table; /* the hashtable itself with the buckets */
41 spinlock_t *list_locks; /* spinlock for each hash list entry */
Antonio Quartullic90681b2011-10-05 17:05:25 +020042 uint32_t size; /* size of hashtable */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043};
44
45/* allocates and clears the hash */
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +020046struct hashtable_t *batadv_hash_new(uint32_t size);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047
Sven Eckelmann5d52dad2012-03-29 12:38:20 +020048/* set class key for all locks */
49void batadv_hash_set_lock_class(struct hashtable_t *hash,
50 struct lock_class_key *key);
51
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052/* free only the hashtable and the hash itself. */
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +020053void batadv_hash_destroy(struct hashtable_t *hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
55/* remove the hash structure. if hashdata_free_cb != NULL, this function will be
56 * called to remove the elements inside of the hash. if you don't remove the
57 * elements, memory might be leaked. */
58static inline void hash_delete(struct hashtable_t *hash,
59 hashdata_free_cb free_cb, void *arg)
60{
61 struct hlist_head *head;
Marek Lindner7aadf882011-02-18 12:28:09 +000062 struct hlist_node *node, *node_tmp;
Marek Lindnerfb778ea2011-01-19 20:01:40 +000063 spinlock_t *list_lock; /* spinlock to protect write access */
Antonio Quartullic90681b2011-10-05 17:05:25 +020064 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065
66 for (i = 0; i < hash->size; i++) {
67 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +000068 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069
Marek Lindnerfb778ea2011-01-19 20:01:40 +000070 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +000071 hlist_for_each_safe(node, node_tmp, head) {
72 hlist_del_rcu(node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073
Marek Lindner7aadf882011-02-18 12:28:09 +000074 if (free_cb)
75 free_cb(node, arg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000076 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +000077 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078 }
79
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +020080 batadv_hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000081}
82
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +020083/**
84 * hash_add - adds data to the hashtable
85 * @hash: storage hash table
86 * @compare: callback to determine if 2 hash elements are identical
87 * @choose: callback calculating the hash index
88 * @data: data passed to the aforementioned callbacks as argument
89 * @data_node: to be added element
90 *
91 * Returns 0 on success, 1 if the element already is in the hash
92 * and -1 on error.
93 */
94
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095static inline int hash_add(struct hashtable_t *hash,
96 hashdata_compare_cb compare,
Marek Lindner7aadf882011-02-18 12:28:09 +000097 hashdata_choose_cb choose,
Sven Eckelmann747e4222011-05-14 23:14:50 +020098 const void *data, struct hlist_node *data_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000099{
Antonio Quartullic90681b2011-10-05 17:05:25 +0200100 uint32_t index;
101 int ret = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000102 struct hlist_head *head;
Marek Lindner7aadf882011-02-18 12:28:09 +0000103 struct hlist_node *node;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000104 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000105
106 if (!hash)
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200107 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000108
109 index = choose(data, hash->size);
110 head = &hash->table[index];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000111 list_lock = &hash->list_locks[index];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000112
Matthias Schiffer75c5a2e2012-05-08 22:31:57 +0200113 spin_lock_bh(list_lock);
114
115 hlist_for_each(node, head) {
Marek Lindner7aadf882011-02-18 12:28:09 +0000116 if (!compare(node, data))
117 continue;
118
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200119 ret = 1;
Matthias Schiffer75c5a2e2012-05-08 22:31:57 +0200120 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000121 }
122
123 /* no duplicate found in list, add new element */
Marek Lindner7aadf882011-02-18 12:28:09 +0000124 hlist_add_head_rcu(data_node, head);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000125
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200126 ret = 0;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000127
Matthias Schiffer75c5a2e2012-05-08 22:31:57 +0200128unlock:
129 spin_unlock_bh(list_lock);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200130out:
131 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000132}
133
134/* removes data from hash, if found. returns pointer do data on success, so you
135 * can remove the used structure yourself, or NULL on error . data could be the
136 * structure you use with just the key filled, we just need the key for
137 * comparing. */
138static inline void *hash_remove(struct hashtable_t *hash,
139 hashdata_compare_cb compare,
140 hashdata_choose_cb choose, void *data)
141{
Antonio Quartullic90681b2011-10-05 17:05:25 +0200142 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +0000143 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000144 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]);
Marek Lindner7aadf882011-02-18 12:28:09 +0000151 hlist_for_each(node, head) {
152 if (!compare(node, data))
153 continue;
154
155 data_save = node;
156 hlist_del_rcu(node);
157 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158 }
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
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164#endif /* _NET_BATMAN_ADV_HASH_H_ */