4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Development of this code funded by Astaro AG (http://www.astaro.com/)
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/list.h>
15 #include <linux/log2.h>
16 #include <linux/jhash.h>
17 #include <linux/netlink.h>
18 #include <linux/workqueue.h>
19 #include <linux/rhashtable.h>
20 #include <linux/netfilter.h>
21 #include <linux/netfilter/nf_tables.h>
22 #include <net/netfilter/nf_tables.h>
24 /* We target a hash table size of 4, element hint is 75% of final size */
25 #define NFT_HASH_ELEMENT_HINT 3
29 struct delayed_work gc_work;
32 struct nft_hash_elem {
33 struct rhash_head node;
34 struct nft_set_ext ext;
37 struct nft_hash_cmp_arg {
38 const struct nft_set *set;
43 static const struct rhashtable_params nft_hash_params;
45 static inline u32 nft_hash_key(const void *data, u32 len, u32 seed)
47 const struct nft_hash_cmp_arg *arg = data;
49 return jhash(arg->key, len, seed);
52 static inline u32 nft_hash_obj(const void *data, u32 len, u32 seed)
54 const struct nft_hash_elem *he = data;
56 return jhash(nft_set_ext_key(&he->ext), len, seed);
59 static inline int nft_hash_cmp(struct rhashtable_compare_arg *arg,
62 const struct nft_hash_cmp_arg *x = arg->key;
63 const struct nft_hash_elem *he = ptr;
65 if (memcmp(nft_set_ext_key(&he->ext), x->key, x->set->klen))
67 if (nft_set_elem_expired(&he->ext))
69 if (!nft_set_elem_active(&he->ext, x->genmask))
74 static bool nft_hash_lookup(const struct net *net, const struct nft_set *set,
75 const u32 *key, const struct nft_set_ext **ext)
77 struct nft_hash *priv = nft_set_priv(set);
78 const struct nft_hash_elem *he;
79 struct nft_hash_cmp_arg arg = {
80 .genmask = nft_genmask_cur(net),
85 he = rhashtable_lookup_fast(&priv->ht, &arg, nft_hash_params);
92 static bool nft_hash_update(struct nft_set *set, const u32 *key,
93 void *(*new)(struct nft_set *,
94 const struct nft_expr *,
95 struct nft_regs *regs),
96 const struct nft_expr *expr,
97 struct nft_regs *regs,
98 const struct nft_set_ext **ext)
100 struct nft_hash *priv = nft_set_priv(set);
101 struct nft_hash_elem *he, *prev;
102 struct nft_hash_cmp_arg arg = {
103 .genmask = NFT_GENMASK_ANY,
108 he = rhashtable_lookup_fast(&priv->ht, &arg, nft_hash_params);
112 he = new(set, expr, regs);
116 prev = rhashtable_lookup_get_insert_key(&priv->ht, &arg, &he->node,
121 /* Another cpu may race to insert the element with the same key */
123 nft_set_elem_destroy(set, he, true);
132 nft_set_elem_destroy(set, he, true);
137 static int nft_hash_insert(const struct net *net, const struct nft_set *set,
138 const struct nft_set_elem *elem,
139 struct nft_set_ext **ext)
141 struct nft_hash *priv = nft_set_priv(set);
142 struct nft_hash_elem *he = elem->priv;
143 struct nft_hash_cmp_arg arg = {
144 .genmask = nft_genmask_next(net),
146 .key = elem->key.val.data,
148 struct nft_hash_elem *prev;
150 prev = rhashtable_lookup_get_insert_key(&priv->ht, &arg, &he->node,
153 return PTR_ERR(prev);
161 static void nft_hash_activate(const struct net *net, const struct nft_set *set,
162 const struct nft_set_elem *elem)
164 struct nft_hash_elem *he = elem->priv;
166 nft_set_elem_change_active(net, set, &he->ext);
167 nft_set_elem_clear_busy(&he->ext);
170 static bool nft_hash_flush(const struct net *net,
171 const struct nft_set *set, void *priv)
173 struct nft_hash_elem *he = priv;
175 if (!nft_set_elem_mark_busy(&he->ext) ||
176 !nft_is_active(net, &he->ext)) {
177 nft_set_elem_change_active(net, set, &he->ext);
183 static void *nft_hash_deactivate(const struct net *net,
184 const struct nft_set *set,
185 const struct nft_set_elem *elem)
187 struct nft_hash *priv = nft_set_priv(set);
188 struct nft_hash_elem *he;
189 struct nft_hash_cmp_arg arg = {
190 .genmask = nft_genmask_next(net),
192 .key = elem->key.val.data,
196 he = rhashtable_lookup_fast(&priv->ht, &arg, nft_hash_params);
198 !nft_hash_flush(net, set, he))
206 static void nft_hash_remove(const struct net *net,
207 const struct nft_set *set,
208 const struct nft_set_elem *elem)
210 struct nft_hash *priv = nft_set_priv(set);
211 struct nft_hash_elem *he = elem->priv;
213 rhashtable_remove_fast(&priv->ht, &he->node, nft_hash_params);
216 static void nft_hash_walk(const struct nft_ctx *ctx, struct nft_set *set,
217 struct nft_set_iter *iter)
219 struct nft_hash *priv = nft_set_priv(set);
220 struct nft_hash_elem *he;
221 struct rhashtable_iter hti;
222 struct nft_set_elem elem;
225 err = rhashtable_walk_init(&priv->ht, &hti, GFP_KERNEL);
230 err = rhashtable_walk_start(&hti);
231 if (err && err != -EAGAIN) {
236 while ((he = rhashtable_walk_next(&hti))) {
239 if (err != -EAGAIN) {
247 if (iter->count < iter->skip)
249 if (nft_set_elem_expired(&he->ext))
251 if (!nft_set_elem_active(&he->ext, iter->genmask))
256 iter->err = iter->fn(ctx, set, iter, &elem);
265 rhashtable_walk_stop(&hti);
266 rhashtable_walk_exit(&hti);
269 static void nft_hash_gc(struct work_struct *work)
272 struct nft_hash_elem *he;
273 struct nft_hash *priv;
274 struct nft_set_gc_batch *gcb = NULL;
275 struct rhashtable_iter hti;
278 priv = container_of(work, struct nft_hash, gc_work.work);
279 set = nft_set_container_of(priv);
281 err = rhashtable_walk_init(&priv->ht, &hti, GFP_KERNEL);
285 err = rhashtable_walk_start(&hti);
286 if (err && err != -EAGAIN)
289 while ((he = rhashtable_walk_next(&hti))) {
291 if (PTR_ERR(he) != -EAGAIN)
296 if (!nft_set_elem_expired(&he->ext))
298 if (nft_set_elem_mark_busy(&he->ext))
301 gcb = nft_set_gc_batch_check(set, gcb, GFP_ATOMIC);
304 rhashtable_remove_fast(&priv->ht, &he->node, nft_hash_params);
305 atomic_dec(&set->nelems);
306 nft_set_gc_batch_add(gcb, he);
309 rhashtable_walk_stop(&hti);
310 rhashtable_walk_exit(&hti);
312 nft_set_gc_batch_complete(gcb);
314 queue_delayed_work(system_power_efficient_wq, &priv->gc_work,
315 nft_set_gc_interval(set));
318 static unsigned int nft_hash_privsize(const struct nlattr * const nla[])
320 return sizeof(struct nft_hash);
323 static const struct rhashtable_params nft_hash_params = {
324 .head_offset = offsetof(struct nft_hash_elem, node),
325 .hashfn = nft_hash_key,
326 .obj_hashfn = nft_hash_obj,
327 .obj_cmpfn = nft_hash_cmp,
328 .automatic_shrinking = true,
331 static int nft_hash_init(const struct nft_set *set,
332 const struct nft_set_desc *desc,
333 const struct nlattr * const tb[])
335 struct nft_hash *priv = nft_set_priv(set);
336 struct rhashtable_params params = nft_hash_params;
339 params.nelem_hint = desc->size ?: NFT_HASH_ELEMENT_HINT;
340 params.key_len = set->klen;
342 err = rhashtable_init(&priv->ht, ¶ms);
346 INIT_DEFERRABLE_WORK(&priv->gc_work, nft_hash_gc);
347 if (set->flags & NFT_SET_TIMEOUT)
348 queue_delayed_work(system_power_efficient_wq, &priv->gc_work,
349 nft_set_gc_interval(set));
353 static void nft_hash_elem_destroy(void *ptr, void *arg)
355 nft_set_elem_destroy((const struct nft_set *)arg, ptr, true);
358 static void nft_hash_destroy(const struct nft_set *set)
360 struct nft_hash *priv = nft_set_priv(set);
362 cancel_delayed_work_sync(&priv->gc_work);
363 rhashtable_free_and_destroy(&priv->ht, nft_hash_elem_destroy,
367 static bool nft_hash_estimate(const struct nft_set_desc *desc, u32 features,
368 struct nft_set_estimate *est)
372 esize = sizeof(struct nft_hash_elem);
374 est->size = sizeof(struct nft_hash) +
375 roundup_pow_of_two(desc->size * 4 / 3) *
376 sizeof(struct nft_hash_elem *) +
379 /* Resizing happens when the load drops below 30% or goes
380 * above 75%. The average of 52.5% load (approximated by 50%)
381 * is used for the size estimation of the hash buckets,
382 * meaning we calculate two buckets per element.
384 est->size = esize + 2 * sizeof(struct nft_hash_elem *);
387 est->lookup = NFT_SET_CLASS_O_1;
388 est->space = NFT_SET_CLASS_O_N;
393 static struct nft_set_ops nft_hash_ops __read_mostly = {
394 .privsize = nft_hash_privsize,
395 .elemsize = offsetof(struct nft_hash_elem, ext),
396 .estimate = nft_hash_estimate,
397 .init = nft_hash_init,
398 .destroy = nft_hash_destroy,
399 .insert = nft_hash_insert,
400 .activate = nft_hash_activate,
401 .deactivate = nft_hash_deactivate,
402 .flush = nft_hash_flush,
403 .remove = nft_hash_remove,
404 .lookup = nft_hash_lookup,
405 .update = nft_hash_update,
406 .walk = nft_hash_walk,
407 .features = NFT_SET_MAP | NFT_SET_OBJECT | NFT_SET_TIMEOUT,
408 .owner = THIS_MODULE,
411 static int __init nft_hash_module_init(void)
413 return nft_register_set(&nft_hash_ops);
416 static void __exit nft_hash_module_exit(void)
418 nft_unregister_set(&nft_hash_ops);
421 module_init(nft_hash_module_init);
422 module_exit(nft_hash_module_exit);
424 MODULE_LICENSE("GPL");
426 MODULE_ALIAS_NFT_SET();