blob: b89b688e9d01a2d14071563bb3e823b62dceeb17 [file] [log] [blame]
Jan Engelhardt09e410d2008-01-31 04:48:13 -08001/*
2 * xt_hashlimit - Netfilter module to limit the number of packets per time
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08003 * separately for each hashbucket (sourceip/sourceport/dstip/dstport)
Patrick McHardy39b46fc2006-11-29 02:35:36 +01004 *
Jan Engelhardt09e410d2008-01-31 04:48:13 -08005 * (C) 2003-2004 by Harald Welte <laforge@netfilter.org>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02006 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Jan Engelhardt09e410d2008-01-31 04:48:13 -08007 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
Patrick McHardy39b46fc2006-11-29 02:35:36 +01008 *
9 * Development of this code was funded by Astaro AG, http://www.astaro.com/
10 */
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Patrick McHardy39b46fc2006-11-29 02:35:36 +010012#include <linux/module.h>
13#include <linux/spinlock.h>
14#include <linux/random.h>
15#include <linux/jhash.h>
16#include <linux/slab.h>
17#include <linux/vmalloc.h>
18#include <linux/proc_fs.h>
19#include <linux/seq_file.h>
20#include <linux/list.h>
21#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050022#include <linux/mm.h>
Patrick McHardy39b46fc2006-11-29 02:35:36 +010023#include <linux/in.h>
24#include <linux/ip.h>
Igor Maravićc0cd1152011-12-12 02:58:24 +000025#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardy39b46fc2006-11-29 02:35:36 +010026#include <linux/ipv6.h>
Patrick McHardy193b23c2007-12-04 23:51:48 -080027#include <net/ipv6.h>
Eric Dumazet7b21e092007-12-17 22:45:28 -080028#endif
29
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020030#include <net/net_namespace.h>
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +010031#include <net/netns/generic.h>
Patrick McHardy39b46fc2006-11-29 02:35:36 +010032
33#include <linux/netfilter/x_tables.h>
34#include <linux/netfilter_ipv4/ip_tables.h>
35#include <linux/netfilter_ipv6/ip6_tables.h>
36#include <linux/netfilter/xt_hashlimit.h>
37#include <linux/mutex.h>
38
39MODULE_LICENSE("GPL");
40MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt408ffaa2010-02-28 23:19:52 +010041MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080042MODULE_DESCRIPTION("Xtables: per hash-bucket rate-limit match");
Patrick McHardy39b46fc2006-11-29 02:35:36 +010043MODULE_ALIAS("ipt_hashlimit");
44MODULE_ALIAS("ip6t_hashlimit");
45
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +010046struct hashlimit_net {
47 struct hlist_head htables;
48 struct proc_dir_entry *ipt_hashlimit;
49 struct proc_dir_entry *ip6t_hashlimit;
50};
51
52static int hashlimit_net_id;
53static inline struct hashlimit_net *hashlimit_pernet(struct net *net)
54{
55 return net_generic(net, hashlimit_net_id);
56}
57
Patrick McHardy39b46fc2006-11-29 02:35:36 +010058/* need to declare this at the top */
Vishwanath Pai0dc60a42016-09-22 12:42:46 -040059static const struct file_operations dl_file_ops_v1;
Vishwanath Pai11d5f152016-09-22 12:43:44 -040060static const struct file_operations dl_file_ops;
Patrick McHardy39b46fc2006-11-29 02:35:36 +010061
62/* hash table crap */
63struct dsthash_dst {
64 union {
65 struct {
66 __be32 src;
67 __be32 dst;
68 } ip;
Igor Maravićc0cd1152011-12-12 02:58:24 +000069#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardy39b46fc2006-11-29 02:35:36 +010070 struct {
71 __be32 src[4];
72 __be32 dst[4];
73 } ip6;
Eric Dumazet7b21e092007-12-17 22:45:28 -080074#endif
Jan Engelhardt09e410d2008-01-31 04:48:13 -080075 };
Patrick McHardy39b46fc2006-11-29 02:35:36 +010076 __be16 src_port;
77 __be16 dst_port;
78};
79
80struct dsthash_ent {
81 /* static / read-only parts in the beginning */
82 struct hlist_node node;
83 struct dsthash_dst dst;
84
85 /* modified structure members in the end */
Eric Dumazet02e4eb72010-04-01 14:35:56 +020086 spinlock_t lock;
Patrick McHardy39b46fc2006-11-29 02:35:36 +010087 unsigned long expires; /* precalculated expiry time */
88 struct {
89 unsigned long prev; /* last modification */
Vishwanath Pai11d5f152016-09-22 12:43:44 -040090 u_int64_t credit;
91 u_int64_t credit_cap, cost;
Patrick McHardy39b46fc2006-11-29 02:35:36 +010092 } rateinfo;
Eric Dumazet02e4eb72010-04-01 14:35:56 +020093 struct rcu_head rcu;
Patrick McHardy39b46fc2006-11-29 02:35:36 +010094};
95
96struct xt_hashlimit_htable {
97 struct hlist_node node; /* global list of all htables */
Patrick McHardy2eff25c2010-02-03 13:24:54 +010098 int use;
Jan Engelhardt76108ce2008-10-08 11:35:00 +020099 u_int8_t family;
Jan Engelhardt89bc7a02010-01-04 16:26:03 +0100100 bool rnd_initialized;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100101
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400102 struct hashlimit_cfg2 cfg; /* config */
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100103
104 /* used internally */
105 spinlock_t lock; /* lock for list_head */
106 u_int32_t rnd; /* random seed for hash */
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100107 unsigned int count; /* number entries in table */
Eric Dumazet7bd84902014-07-24 06:36:50 +0200108 struct delayed_work gc_work;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100109
110 /* seq_file stuff */
111 struct proc_dir_entry *pde;
Al Viro14b872f2013-04-19 06:43:33 -0400112 const char *name;
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100113 struct net *net;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100114
115 struct hlist_head hash[0]; /* hashtable itself */
116};
117
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400118static int
119cfg_copy(struct hashlimit_cfg2 *to, void *from, int revision)
120{
121 if (revision == 1) {
122 struct hashlimit_cfg1 *cfg = (struct hashlimit_cfg1 *)from;
123
124 to->mode = cfg->mode;
125 to->avg = cfg->avg;
126 to->burst = cfg->burst;
127 to->size = cfg->size;
128 to->max = cfg->max;
129 to->gc_interval = cfg->gc_interval;
130 to->expire = cfg->expire;
131 to->srcmask = cfg->srcmask;
132 to->dstmask = cfg->dstmask;
133 } else if (revision == 2) {
134 memcpy(to, from, sizeof(struct hashlimit_cfg2));
135 } else {
136 return -EINVAL;
137 }
138
139 return 0;
140}
141
Patrick McHardy2eff25c2010-02-03 13:24:54 +0100142static DEFINE_MUTEX(hashlimit_mutex); /* protects htables list */
Christoph Lametere18b8902006-12-06 20:33:20 -0800143static struct kmem_cache *hashlimit_cachep __read_mostly;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100144
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700145static inline bool dst_cmp(const struct dsthash_ent *ent,
Jan Engelhardta47362a2007-07-07 22:16:55 -0700146 const struct dsthash_dst *b)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100147{
148 return !memcmp(&ent->dst, b, sizeof(ent->dst));
149}
150
151static u_int32_t
152hash_dst(const struct xt_hashlimit_htable *ht, const struct dsthash_dst *dst)
153{
Eric Dumazete2f82ac2007-12-17 22:45:13 -0800154 u_int32_t hash = jhash2((const u32 *)dst,
155 sizeof(*dst)/sizeof(u32),
156 ht->rnd);
157 /*
158 * Instead of returning hash % ht->cfg.size (implying a divide)
159 * we return the high 32 bits of the (hash * ht->cfg.size) that will
160 * give results between [0 and cfg.size-1] and same hash distribution,
161 * but using a multiply, less expensive than a divide
162 */
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200163 return reciprocal_scale(hash, ht->cfg.size);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100164}
165
166static struct dsthash_ent *
Jan Engelhardta47362a2007-07-07 22:16:55 -0700167dsthash_find(const struct xt_hashlimit_htable *ht,
168 const struct dsthash_dst *dst)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100169{
170 struct dsthash_ent *ent;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100171 u_int32_t hash = hash_dst(ht, dst);
172
173 if (!hlist_empty(&ht->hash[hash])) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800174 hlist_for_each_entry_rcu(ent, &ht->hash[hash], node)
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200175 if (dst_cmp(ent, dst)) {
176 spin_lock(&ent->lock);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100177 return ent;
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200178 }
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100179 }
180 return NULL;
181}
182
183/* allocate dsthash_ent, initialize dst, put in htable and lock it */
184static struct dsthash_ent *
Jan Engelhardta47362a2007-07-07 22:16:55 -0700185dsthash_alloc_init(struct xt_hashlimit_htable *ht,
Pablo Neira Ayuso09181842012-12-24 13:09:25 +0100186 const struct dsthash_dst *dst, bool *race)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100187{
188 struct dsthash_ent *ent;
189
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200190 spin_lock(&ht->lock);
Pablo Neira Ayuso09181842012-12-24 13:09:25 +0100191
192 /* Two or more packets may race to create the same entry in the
193 * hashtable, double check if this packet lost race.
194 */
195 ent = dsthash_find(ht, dst);
196 if (ent != NULL) {
197 spin_unlock(&ht->lock);
198 *race = true;
199 return ent;
200 }
201
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100202 /* initialize hash with random val at the time we allocate
203 * the first hashtable entry */
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200204 if (unlikely(!ht->rnd_initialized)) {
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +0100205 get_random_bytes(&ht->rnd, sizeof(ht->rnd));
Jan Engelhardt89bc7a02010-01-04 16:26:03 +0100206 ht->rnd_initialized = true;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100207 }
208
209 if (ht->cfg.max && ht->count >= ht->cfg.max) {
210 /* FIXME: do something. question is what.. */
Joe Perchese87cc472012-05-13 21:56:26 +0000211 net_err_ratelimited("max count of %u reached\n", ht->cfg.max);
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200212 ent = NULL;
213 } else
214 ent = kmem_cache_alloc(hashlimit_cachep, GFP_ATOMIC);
Joe Perches0a9ee812011-08-29 14:17:25 -0700215 if (ent) {
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200216 memcpy(&ent->dst, dst, sizeof(ent->dst));
217 spin_lock_init(&ent->lock);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100218
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200219 spin_lock(&ent->lock);
220 hlist_add_head_rcu(&ent->node, &ht->hash[hash_dst(ht, dst)]);
221 ht->count++;
222 }
223 spin_unlock(&ht->lock);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100224 return ent;
225}
226
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200227static void dsthash_free_rcu(struct rcu_head *head)
228{
229 struct dsthash_ent *ent = container_of(head, struct dsthash_ent, rcu);
230
231 kmem_cache_free(hashlimit_cachep, ent);
232}
233
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100234static inline void
235dsthash_free(struct xt_hashlimit_htable *ht, struct dsthash_ent *ent)
236{
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200237 hlist_del_rcu(&ent->node);
238 call_rcu_bh(&ent->rcu, dsthash_free_rcu);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100239 ht->count--;
240}
Eric Dumazet7bd84902014-07-24 06:36:50 +0200241static void htable_gc(struct work_struct *work);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100242
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400243static int htable_create(struct net *net, struct hashlimit_cfg2 *cfg,
244 const char *name, u_int8_t family,
245 struct xt_hashlimit_htable **out_hinfo,
246 int revision)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800247{
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100248 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800249 struct xt_hashlimit_htable *hinfo;
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400250 unsigned int size, i;
251 int ret;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800252
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400253 if (cfg->size) {
254 size = cfg->size;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800255 } else {
Jan Beulich44813742009-09-21 17:03:05 -0700256 size = (totalram_pages << PAGE_SHIFT) / 16384 /
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800257 sizeof(struct list_head);
Jan Beulich44813742009-09-21 17:03:05 -0700258 if (totalram_pages > 1024 * 1024 * 1024 / PAGE_SIZE)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800259 size = 8192;
260 if (size < 16)
261 size = 16;
262 }
263 /* FIXME: don't use vmalloc() here or anywhere else -HW */
264 hinfo = vmalloc(sizeof(struct xt_hashlimit_htable) +
265 sizeof(struct list_head) * size);
Jan Engelhardt85bc3f32010-03-18 00:27:03 +0100266 if (hinfo == NULL)
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100267 return -ENOMEM;
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400268 *out_hinfo = hinfo;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800269
270 /* copy match config into hashtable config */
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400271 ret = cfg_copy(&hinfo->cfg, (void *)cfg, 2);
272
273 if (ret)
274 return ret;
275
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800276 hinfo->cfg.size = size;
277 if (hinfo->cfg.max == 0)
278 hinfo->cfg.max = 8 * hinfo->cfg.size;
279 else if (hinfo->cfg.max < hinfo->cfg.size)
280 hinfo->cfg.max = hinfo->cfg.size;
281
282 for (i = 0; i < hinfo->cfg.size; i++)
283 INIT_HLIST_HEAD(&hinfo->hash[i]);
284
Patrick McHardy2eff25c2010-02-03 13:24:54 +0100285 hinfo->use = 1;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800286 hinfo->count = 0;
287 hinfo->family = family;
Jan Engelhardt89bc7a02010-01-04 16:26:03 +0100288 hinfo->rnd_initialized = false;
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400289 hinfo->name = kstrdup(name, GFP_KERNEL);
Al Viro14b872f2013-04-19 06:43:33 -0400290 if (!hinfo->name) {
291 vfree(hinfo);
292 return -ENOMEM;
293 }
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800294 spin_lock_init(&hinfo->lock);
295
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400296 hinfo->pde = proc_create_data(name, 0,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200297 (family == NFPROTO_IPV4) ?
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100298 hashlimit_net->ipt_hashlimit : hashlimit_net->ip6t_hashlimit,
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400299 (revision == 1) ? &dl_file_ops_v1 : &dl_file_ops,
300 hinfo);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800301 if (hinfo->pde == NULL) {
Al Viro14b872f2013-04-19 06:43:33 -0400302 kfree(hinfo->name);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800303 vfree(hinfo);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100304 return -ENOMEM;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800305 }
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100306 hinfo->net = net;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800307
Eric Dumazet7bd84902014-07-24 06:36:50 +0200308 INIT_DEFERRABLE_WORK(&hinfo->gc_work, htable_gc);
309 queue_delayed_work(system_power_efficient_wq, &hinfo->gc_work,
310 msecs_to_jiffies(hinfo->cfg.gc_interval));
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800311
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100312 hlist_add_head(&hinfo->node, &hashlimit_net->htables);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800313
314 return 0;
315}
316
Jan Engelhardta47362a2007-07-07 22:16:55 -0700317static bool select_all(const struct xt_hashlimit_htable *ht,
318 const struct dsthash_ent *he)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100319{
320 return 1;
321}
322
Jan Engelhardta47362a2007-07-07 22:16:55 -0700323static bool select_gc(const struct xt_hashlimit_htable *ht,
324 const struct dsthash_ent *he)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100325{
Eric Dumazetcbebc512007-12-12 11:11:28 -0800326 return time_after_eq(jiffies, he->expires);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100327}
328
329static void htable_selective_cleanup(struct xt_hashlimit_htable *ht,
Jan Engelhardta47362a2007-07-07 22:16:55 -0700330 bool (*select)(const struct xt_hashlimit_htable *ht,
331 const struct dsthash_ent *he))
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100332{
333 unsigned int i;
334
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100335 for (i = 0; i < ht->cfg.size; i++) {
336 struct dsthash_ent *dh;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800337 struct hlist_node *n;
Eric Dumazet7bd84902014-07-24 06:36:50 +0200338
339 spin_lock_bh(&ht->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800340 hlist_for_each_entry_safe(dh, n, &ht->hash[i], node) {
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100341 if ((*select)(ht, dh))
342 dsthash_free(ht, dh);
343 }
Eric Dumazet7bd84902014-07-24 06:36:50 +0200344 spin_unlock_bh(&ht->lock);
345 cond_resched();
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100346 }
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100347}
348
Eric Dumazet7bd84902014-07-24 06:36:50 +0200349static void htable_gc(struct work_struct *work)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100350{
Eric Dumazet7bd84902014-07-24 06:36:50 +0200351 struct xt_hashlimit_htable *ht;
352
353 ht = container_of(work, struct xt_hashlimit_htable, gc_work.work);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100354
355 htable_selective_cleanup(ht, select_gc);
356
Eric Dumazet7bd84902014-07-24 06:36:50 +0200357 queue_delayed_work(system_power_efficient_wq,
358 &ht->gc_work, msecs_to_jiffies(ht->cfg.gc_interval));
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100359}
360
Sergey Popovichb4ef4ce2013-12-06 10:57:19 +0200361static void htable_remove_proc_entry(struct xt_hashlimit_htable *hinfo)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100362{
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100363 struct hashlimit_net *hashlimit_net = hashlimit_pernet(hinfo->net);
364 struct proc_dir_entry *parent;
365
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100366 if (hinfo->family == NFPROTO_IPV4)
367 parent = hashlimit_net->ipt_hashlimit;
368 else
369 parent = hashlimit_net->ip6t_hashlimit;
Vitaly E. Lavrov32263dd2012-12-24 14:42:17 +0100370
Sergey Popovichb4ef4ce2013-12-06 10:57:19 +0200371 if (parent != NULL)
Al Viro14b872f2013-04-19 06:43:33 -0400372 remove_proc_entry(hinfo->name, parent);
Sergey Popovichb4ef4ce2013-12-06 10:57:19 +0200373}
Vitaly E. Lavrov32263dd2012-12-24 14:42:17 +0100374
Sergey Popovichb4ef4ce2013-12-06 10:57:19 +0200375static void htable_destroy(struct xt_hashlimit_htable *hinfo)
376{
Eric Dumazet7bd84902014-07-24 06:36:50 +0200377 cancel_delayed_work_sync(&hinfo->gc_work);
Sergey Popovichb4ef4ce2013-12-06 10:57:19 +0200378 htable_remove_proc_entry(hinfo);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100379 htable_selective_cleanup(hinfo, select_all);
Al Viro14b872f2013-04-19 06:43:33 -0400380 kfree(hinfo->name);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100381 vfree(hinfo);
382}
383
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100384static struct xt_hashlimit_htable *htable_find_get(struct net *net,
385 const char *name,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200386 u_int8_t family)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100387{
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +0100388 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100389 struct xt_hashlimit_htable *hinfo;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100390
Sasha Levinb67bfe02013-02-27 17:06:00 -0800391 hlist_for_each_entry(hinfo, &hashlimit_net->htables, node) {
Al Viro14b872f2013-04-19 06:43:33 -0400392 if (!strcmp(name, hinfo->name) &&
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100393 hinfo->family == family) {
Patrick McHardy2eff25c2010-02-03 13:24:54 +0100394 hinfo->use++;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100395 return hinfo;
396 }
397 }
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100398 return NULL;
399}
400
401static void htable_put(struct xt_hashlimit_htable *hinfo)
402{
Patrick McHardy2eff25c2010-02-03 13:24:54 +0100403 mutex_lock(&hashlimit_mutex);
404 if (--hinfo->use == 0) {
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100405 hlist_del(&hinfo->node);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100406 htable_destroy(hinfo);
407 }
Patrick McHardy2eff25c2010-02-03 13:24:54 +0100408 mutex_unlock(&hashlimit_mutex);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100409}
410
411/* The algorithm used is the Simple Token Bucket Filter (TBF)
412 * see net/sched/sch_tbf.c in the linux source tree
413 */
414
415/* Rusty: This is my (non-mathematically-inclined) understanding of
416 this algorithm. The `average rate' in jiffies becomes your initial
417 amount of credit `credit' and the most credit you can ever have
418 `credit_cap'. The `peak rate' becomes the cost of passing the
419 test, `cost'.
420
421 `prev' tracks the last packet hit: you gain one credit per jiffy.
422 If you get credit balance more than this, the extra credit is
423 discarded. Every time the match passes, you lose `cost' credits;
424 if you don't have that many, the test fails.
425
426 See Alexey's formal explanation in net/sched/sch_tbf.c.
427
428 To get the maximum range, we multiply by this factor (ie. you get N
429 credits per jiffy). We want to allow a rate as low as 1 per day
430 (slowest userspace tool allows), which means
431 CREDITS_PER_JIFFY*HZ*60*60*24 < 2^32 ie.
432*/
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400433#define MAX_CPJ_v1 (0xFFFFFFFF / (HZ*60*60*24))
Geert Uytterhoeven1b203c12016-10-06 15:40:14 +0200434#define MAX_CPJ (0xFFFFFFFFFFFFFFFFULL / (HZ*60*60*24))
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100435
436/* Repeated shift and or gives us all 1s, final shift and add 1 gives
437 * us the power of 2 below the theoretical max, so GCC simply does a
438 * shift. */
439#define _POW2_BELOW2(x) ((x)|((x)>>1))
440#define _POW2_BELOW4(x) (_POW2_BELOW2(x)|_POW2_BELOW2((x)>>2))
441#define _POW2_BELOW8(x) (_POW2_BELOW4(x)|_POW2_BELOW4((x)>>4))
442#define _POW2_BELOW16(x) (_POW2_BELOW8(x)|_POW2_BELOW8((x)>>8))
443#define _POW2_BELOW32(x) (_POW2_BELOW16(x)|_POW2_BELOW16((x)>>16))
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400444#define _POW2_BELOW64(x) (_POW2_BELOW32(x)|_POW2_BELOW32((x)>>32))
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100445#define POW2_BELOW32(x) ((_POW2_BELOW32(x)>>1) + 1)
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400446#define POW2_BELOW64(x) ((_POW2_BELOW64(x)>>1) + 1)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100447
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400448#define CREDITS_PER_JIFFY POW2_BELOW64(MAX_CPJ)
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400449#define CREDITS_PER_JIFFY_v1 POW2_BELOW32(MAX_CPJ_v1)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100450
Florian Westphal0197dee2012-05-07 10:51:45 +0000451/* in byte mode, the lowest possible rate is one packet/second.
452 * credit_cap is used as a counter that tells us how many times we can
453 * refill the "credits available" counter when it becomes empty.
454 */
455#define MAX_CPJ_BYTES (0xFFFFFFFF / HZ)
456#define CREDITS_PER_JIFFY_BYTES POW2_BELOW32(MAX_CPJ_BYTES)
457
458static u32 xt_hashlimit_len_to_chunks(u32 len)
459{
460 return (len >> XT_HASHLIMIT_BYTE_SHIFT) + 1;
461}
462
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100463/* Precision saver. */
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400464static u64 user2credits(u64 user, int revision)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100465{
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400466 if (revision == 1) {
467 /* If multiplying would overflow... */
468 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY_v1))
469 /* Divide first. */
Vishwanath Pai1f827f52016-09-29 13:39:50 -0400470 return div64_u64(user, XT_HASHLIMIT_SCALE)
471 * HZ * CREDITS_PER_JIFFY_v1;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100472
Vishwanath Pai1f827f52016-09-29 13:39:50 -0400473 return div64_u64(user * HZ * CREDITS_PER_JIFFY_v1,
474 XT_HASHLIMIT_SCALE);
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400475 } else {
Geert Uytterhoeven1b203c12016-10-06 15:40:14 +0200476 if (user > 0xFFFFFFFFFFFFFFFFULL / (HZ*CREDITS_PER_JIFFY))
Vishwanath Pai1f827f52016-09-29 13:39:50 -0400477 return div64_u64(user, XT_HASHLIMIT_SCALE_v2)
478 * HZ * CREDITS_PER_JIFFY;
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400479
Vishwanath Pai1f827f52016-09-29 13:39:50 -0400480 return div64_u64(user * HZ * CREDITS_PER_JIFFY,
481 XT_HASHLIMIT_SCALE_v2);
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400482 }
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100483}
484
Florian Westphal0197dee2012-05-07 10:51:45 +0000485static u32 user2credits_byte(u32 user)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100486{
Florian Westphal0197dee2012-05-07 10:51:45 +0000487 u64 us = user;
488 us *= HZ * CREDITS_PER_JIFFY_BYTES;
489 return (u32) (us >> 32);
490}
491
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400492static void rateinfo_recalc(struct dsthash_ent *dh, unsigned long now,
493 u32 mode, int revision)
Florian Westphal0197dee2012-05-07 10:51:45 +0000494{
495 unsigned long delta = now - dh->rateinfo.prev;
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400496 u64 cap, cpj;
Florian Westphal0197dee2012-05-07 10:51:45 +0000497
498 if (delta == 0)
499 return;
500
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100501 dh->rateinfo.prev = now;
Florian Westphal0197dee2012-05-07 10:51:45 +0000502
503 if (mode & XT_HASHLIMIT_BYTES) {
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400504 u64 tmp = dh->rateinfo.credit;
Florian Westphal0197dee2012-05-07 10:51:45 +0000505 dh->rateinfo.credit += CREDITS_PER_JIFFY_BYTES * delta;
506 cap = CREDITS_PER_JIFFY_BYTES * HZ;
507 if (tmp >= dh->rateinfo.credit) {/* overflow */
508 dh->rateinfo.credit = cap;
509 return;
510 }
511 } else {
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400512 cpj = (revision == 1) ?
513 CREDITS_PER_JIFFY_v1 : CREDITS_PER_JIFFY;
514 dh->rateinfo.credit += delta * cpj;
Florian Westphal0197dee2012-05-07 10:51:45 +0000515 cap = dh->rateinfo.credit_cap;
516 }
517 if (dh->rateinfo.credit > cap)
518 dh->rateinfo.credit = cap;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100519}
520
Florian Westphal817e0762012-05-07 10:51:44 +0000521static void rateinfo_init(struct dsthash_ent *dh,
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400522 struct xt_hashlimit_htable *hinfo, int revision)
Florian Westphal817e0762012-05-07 10:51:44 +0000523{
524 dh->rateinfo.prev = jiffies;
Florian Westphal0197dee2012-05-07 10:51:45 +0000525 if (hinfo->cfg.mode & XT_HASHLIMIT_BYTES) {
526 dh->rateinfo.credit = CREDITS_PER_JIFFY_BYTES * HZ;
527 dh->rateinfo.cost = user2credits_byte(hinfo->cfg.avg);
528 dh->rateinfo.credit_cap = hinfo->cfg.burst;
529 } else {
530 dh->rateinfo.credit = user2credits(hinfo->cfg.avg *
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400531 hinfo->cfg.burst, revision);
532 dh->rateinfo.cost = user2credits(hinfo->cfg.avg, revision);
Florian Westphal0197dee2012-05-07 10:51:45 +0000533 dh->rateinfo.credit_cap = dh->rateinfo.credit;
534 }
Florian Westphal817e0762012-05-07 10:51:44 +0000535}
536
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800537static inline __be32 maskl(__be32 a, unsigned int l)
538{
Patrick McHardy1b9b70e2008-04-09 15:14:18 -0700539 return l ? htonl(ntohl(a) & ~0 << (32 - l)) : 0;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800540}
541
Igor Maravićc0cd1152011-12-12 02:58:24 +0000542#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800543static void hashlimit_ipv6_mask(__be32 *i, unsigned int p)
544{
545 switch (p) {
Patrick McHardy1b9b70e2008-04-09 15:14:18 -0700546 case 0 ... 31:
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800547 i[0] = maskl(i[0], p);
548 i[1] = i[2] = i[3] = 0;
549 break;
Patrick McHardy1b9b70e2008-04-09 15:14:18 -0700550 case 32 ... 63:
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800551 i[1] = maskl(i[1], p - 32);
552 i[2] = i[3] = 0;
553 break;
Patrick McHardy1b9b70e2008-04-09 15:14:18 -0700554 case 64 ... 95:
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800555 i[2] = maskl(i[2], p - 64);
556 i[3] = 0;
Eric Dumazet8f599222010-03-25 17:25:11 +0100557 break;
Patrick McHardy1b9b70e2008-04-09 15:14:18 -0700558 case 96 ... 127:
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800559 i[3] = maskl(i[3], p - 96);
560 break;
561 case 128:
562 break;
563 }
564}
Pavel Emelyanov3ed5df42008-01-31 18:42:26 -0800565#endif
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800566
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100567static int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700568hashlimit_init_dst(const struct xt_hashlimit_htable *hinfo,
569 struct dsthash_dst *dst,
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100570 const struct sk_buff *skb, unsigned int protoff)
571{
572 __be16 _ports[2], *ports;
Patrick McHardy193b23c2007-12-04 23:51:48 -0800573 u8 nexthdr;
Changli Gaoaca071c2010-08-17 19:06:39 +0000574 int poff;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100575
576 memset(dst, 0, sizeof(*dst));
577
578 switch (hinfo->family) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200579 case NFPROTO_IPV4:
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100580 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DIP)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800581 dst->ip.dst = maskl(ip_hdr(skb)->daddr,
582 hinfo->cfg.dstmask);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100583 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SIP)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800584 dst->ip.src = maskl(ip_hdr(skb)->saddr,
585 hinfo->cfg.srcmask);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100586
587 if (!(hinfo->cfg.mode &
588 (XT_HASHLIMIT_HASH_DPT | XT_HASHLIMIT_HASH_SPT)))
589 return 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700590 nexthdr = ip_hdr(skb)->protocol;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100591 break;
Igor Maravićc0cd1152011-12-12 02:58:24 +0000592#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200593 case NFPROTO_IPV6:
Stephen Rothwell412662d2012-01-11 11:52:17 +1100594 {
595 __be16 frag_off;
596
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800597 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DIP) {
598 memcpy(&dst->ip6.dst, &ipv6_hdr(skb)->daddr,
599 sizeof(dst->ip6.dst));
600 hashlimit_ipv6_mask(dst->ip6.dst, hinfo->cfg.dstmask);
601 }
602 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SIP) {
603 memcpy(&dst->ip6.src, &ipv6_hdr(skb)->saddr,
604 sizeof(dst->ip6.src));
605 hashlimit_ipv6_mask(dst->ip6.src, hinfo->cfg.srcmask);
606 }
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100607
608 if (!(hinfo->cfg.mode &
609 (XT_HASHLIMIT_HASH_DPT | XT_HASHLIMIT_HASH_SPT)))
610 return 0;
Patrick McHardy193b23c2007-12-04 23:51:48 -0800611 nexthdr = ipv6_hdr(skb)->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800612 protoff = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &nexthdr, &frag_off);
Patrick McHardy193b23c2007-12-04 23:51:48 -0800613 if ((int)protoff < 0)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100614 return -1;
615 break;
Stephen Rothwell412662d2012-01-11 11:52:17 +1100616 }
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100617#endif
618 default:
619 BUG();
620 return 0;
621 }
622
Changli Gaoaca071c2010-08-17 19:06:39 +0000623 poff = proto_ports_offset(nexthdr);
624 if (poff >= 0) {
625 ports = skb_header_pointer(skb, protoff + poff, sizeof(_ports),
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100626 &_ports);
Changli Gaoaca071c2010-08-17 19:06:39 +0000627 } else {
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100628 _ports[0] = _ports[1] = 0;
629 ports = _ports;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100630 }
631 if (!ports)
632 return -1;
633 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_SPT)
634 dst->src_port = ports[0];
635 if (hinfo->cfg.mode & XT_HASHLIMIT_HASH_DPT)
636 dst->dst_port = ports[1];
637 return 0;
638}
639
Florian Westphal0197dee2012-05-07 10:51:45 +0000640static u32 hashlimit_byte_cost(unsigned int len, struct dsthash_ent *dh)
641{
642 u64 tmp = xt_hashlimit_len_to_chunks(len);
643 tmp = tmp * dh->rateinfo.cost;
644
645 if (unlikely(tmp > CREDITS_PER_JIFFY_BYTES * HZ))
646 tmp = CREDITS_PER_JIFFY_BYTES * HZ;
647
648 if (dh->rateinfo.credit < tmp && dh->rateinfo.credit_cap) {
649 dh->rateinfo.credit_cap--;
650 dh->rateinfo.credit = CREDITS_PER_JIFFY_BYTES * HZ;
651 }
652 return (u32) tmp;
653}
654
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700655static bool
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400656hashlimit_mt_common(const struct sk_buff *skb, struct xt_action_param *par,
657 struct xt_hashlimit_htable *hinfo,
658 const struct hashlimit_cfg2 *cfg, int revision)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800659{
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800660 unsigned long now = jiffies;
661 struct dsthash_ent *dh;
662 struct dsthash_dst dst;
Pablo Neira Ayuso09181842012-12-24 13:09:25 +0100663 bool race = false;
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400664 u64 cost;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800665
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200666 if (hashlimit_init_dst(hinfo, &dst, skb, par->thoff) < 0)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800667 goto hotdrop;
668
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200669 rcu_read_lock_bh();
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800670 dh = dsthash_find(hinfo, &dst);
671 if (dh == NULL) {
Pablo Neira Ayuso09181842012-12-24 13:09:25 +0100672 dh = dsthash_alloc_init(hinfo, &dst, &race);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800673 if (dh == NULL) {
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200674 rcu_read_unlock_bh();
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800675 goto hotdrop;
Pablo Neira Ayuso09181842012-12-24 13:09:25 +0100676 } else if (race) {
677 /* Already got an entry, update expiration timeout */
678 dh->expires = now + msecs_to_jiffies(hinfo->cfg.expire);
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400679 rateinfo_recalc(dh, now, hinfo->cfg.mode, revision);
Pablo Neira Ayuso09181842012-12-24 13:09:25 +0100680 } else {
681 dh->expires = jiffies + msecs_to_jiffies(hinfo->cfg.expire);
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400682 rateinfo_init(dh, hinfo, revision);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800683 }
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800684 } else {
685 /* update expiration timeout */
686 dh->expires = now + msecs_to_jiffies(hinfo->cfg.expire);
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400687 rateinfo_recalc(dh, now, hinfo->cfg.mode, revision);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800688 }
689
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400690 if (cfg->mode & XT_HASHLIMIT_BYTES)
Florian Westphal0197dee2012-05-07 10:51:45 +0000691 cost = hashlimit_byte_cost(skb->len, dh);
692 else
693 cost = dh->rateinfo.cost;
694
695 if (dh->rateinfo.credit >= cost) {
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800696 /* below the limit */
Florian Westphal0197dee2012-05-07 10:51:45 +0000697 dh->rateinfo.credit -= cost;
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200698 spin_unlock(&dh->lock);
699 rcu_read_unlock_bh();
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400700 return !(cfg->mode & XT_HASHLIMIT_INVERT);
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800701 }
702
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200703 spin_unlock(&dh->lock);
704 rcu_read_unlock_bh();
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800705 /* default match is underlimit - so over the limit, we need to invert */
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400706 return cfg->mode & XT_HASHLIMIT_INVERT;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800707
708 hotdrop:
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200709 par->hotdrop = true;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800710 return false;
711}
712
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400713static bool
714hashlimit_mt_v1(const struct sk_buff *skb, struct xt_action_param *par)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800715{
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400716 const struct xt_hashlimit_mtinfo1 *info = par->matchinfo;
717 struct xt_hashlimit_htable *hinfo = info->hinfo;
718 struct hashlimit_cfg2 cfg = {};
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100719 int ret;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800720
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400721 ret = cfg_copy(&cfg, (void *)&info->cfg, 1);
722
723 if (ret)
724 return ret;
725
726 return hashlimit_mt_common(skb, par, hinfo, &cfg, 1);
727}
728
729static bool
730hashlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
731{
732 const struct xt_hashlimit_mtinfo2 *info = par->matchinfo;
733 struct xt_hashlimit_htable *hinfo = info->hinfo;
734
735 return hashlimit_mt_common(skb, par, hinfo, &info->cfg, 2);
736}
737
738static int hashlimit_mt_check_common(const struct xt_mtchk_param *par,
739 struct xt_hashlimit_htable **hinfo,
740 struct hashlimit_cfg2 *cfg,
741 const char *name, int revision)
742{
743 struct net *net = par->net;
744 int ret;
745
746 if (cfg->gc_interval == 0 || cfg->expire == 0)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100747 return -EINVAL;
Jan Engelhardtaa5fa312010-03-18 00:44:52 +0100748 if (par->family == NFPROTO_IPV4) {
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400749 if (cfg->srcmask > 32 || cfg->dstmask > 32)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100750 return -EINVAL;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800751 } else {
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400752 if (cfg->srcmask > 128 || cfg->dstmask > 128)
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100753 return -EINVAL;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800754 }
755
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400756 if (cfg->mode & ~XT_HASHLIMIT_ALL) {
Florian Westphal0197dee2012-05-07 10:51:45 +0000757 pr_info("Unknown mode mask %X, kernel too old?\n",
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400758 cfg->mode);
Florian Westphal0197dee2012-05-07 10:51:45 +0000759 return -EINVAL;
760 }
761
762 /* Check for overflow. */
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400763 if (cfg->mode & XT_HASHLIMIT_BYTES) {
764 if (user2credits_byte(cfg->avg) == 0) {
765 pr_info("overflow, rate too high: %llu\n", cfg->avg);
Florian Westphal0197dee2012-05-07 10:51:45 +0000766 return -EINVAL;
767 }
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400768 } else if (cfg->burst == 0 ||
769 user2credits(cfg->avg * cfg->burst, revision) <
770 user2credits(cfg->avg, revision)) {
771 pr_info("overflow, try lower: %llu/%llu\n",
772 cfg->avg, cfg->burst);
Florian Westphal0197dee2012-05-07 10:51:45 +0000773 return -ERANGE;
774 }
775
Patrick McHardy2eff25c2010-02-03 13:24:54 +0100776 mutex_lock(&hashlimit_mutex);
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400777 *hinfo = htable_find_get(net, name, par->family);
778 if (*hinfo == NULL) {
779 ret = htable_create(net, cfg, name, par->family,
780 hinfo, revision);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100781 if (ret < 0) {
782 mutex_unlock(&hashlimit_mutex);
783 return ret;
784 }
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800785 }
Patrick McHardy2eff25c2010-02-03 13:24:54 +0100786 mutex_unlock(&hashlimit_mutex);
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400787
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100788 return 0;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800789}
790
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400791static int hashlimit_mt_check_v1(const struct xt_mtchk_param *par)
792{
793 struct xt_hashlimit_mtinfo1 *info = par->matchinfo;
794 struct hashlimit_cfg2 cfg = {};
795 int ret;
796
797 if (info->name[sizeof(info->name) - 1] != '\0')
798 return -EINVAL;
799
800 ret = cfg_copy(&cfg, (void *)&info->cfg, 1);
801
802 if (ret)
803 return ret;
804
805 return hashlimit_mt_check_common(par, &info->hinfo,
806 &cfg, info->name, 1);
807}
808
809static int hashlimit_mt_check(const struct xt_mtchk_param *par)
810{
811 struct xt_hashlimit_mtinfo2 *info = par->matchinfo;
812
813 if (info->name[sizeof(info->name) - 1] != '\0')
814 return -EINVAL;
815
816 return hashlimit_mt_check_common(par, &info->hinfo, &info->cfg,
817 info->name, 2);
818}
819
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400820static void hashlimit_mt_destroy_v1(const struct xt_mtdtor_param *par)
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800821{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200822 const struct xt_hashlimit_mtinfo1 *info = par->matchinfo;
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800823
824 htable_put(info->hinfo);
825}
826
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400827static void hashlimit_mt_destroy(const struct xt_mtdtor_param *par)
828{
829 const struct xt_hashlimit_mtinfo2 *info = par->matchinfo;
830
831 htable_put(info->hinfo);
832}
833
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800834static struct xt_match hashlimit_mt_reg[] __read_mostly = {
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100835 {
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800836 .name = "hashlimit",
837 .revision = 1,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200838 .family = NFPROTO_IPV4,
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400839 .match = hashlimit_mt_v1,
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800840 .matchsize = sizeof(struct xt_hashlimit_mtinfo1),
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400841 .checkentry = hashlimit_mt_check_v1,
842 .destroy = hashlimit_mt_destroy_v1,
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800843 .me = THIS_MODULE,
844 },
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400845 {
846 .name = "hashlimit",
847 .revision = 2,
848 .family = NFPROTO_IPV4,
849 .match = hashlimit_mt,
850 .matchsize = sizeof(struct xt_hashlimit_mtinfo2),
851 .checkentry = hashlimit_mt_check,
852 .destroy = hashlimit_mt_destroy,
853 .me = THIS_MODULE,
854 },
Igor Maravićc0cd1152011-12-12 02:58:24 +0000855#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100856 {
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800857 .name = "hashlimit",
858 .revision = 1,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200859 .family = NFPROTO_IPV6,
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400860 .match = hashlimit_mt_v1,
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800861 .matchsize = sizeof(struct xt_hashlimit_mtinfo1),
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400862 .checkentry = hashlimit_mt_check_v1,
863 .destroy = hashlimit_mt_destroy_v1,
Jan Engelhardt09e410d2008-01-31 04:48:13 -0800864 .me = THIS_MODULE,
865 },
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400866 {
867 .name = "hashlimit",
868 .revision = 2,
869 .family = NFPROTO_IPV6,
870 .match = hashlimit_mt,
871 .matchsize = sizeof(struct xt_hashlimit_mtinfo2),
872 .checkentry = hashlimit_mt_check,
873 .destroy = hashlimit_mt_destroy,
874 .me = THIS_MODULE,
875 },
Eric Dumazet7b21e092007-12-17 22:45:28 -0800876#endif
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100877};
878
879/* PROC stuff */
880static void *dl_seq_start(struct seq_file *s, loff_t *pos)
Stephen Hemmingerf4f6fb72008-01-31 04:08:39 -0800881 __acquires(htable->lock)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100882{
Alexey Dobriyana1004d82010-01-18 08:14:50 +0100883 struct xt_hashlimit_htable *htable = s->private;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100884 unsigned int *bucket;
885
886 spin_lock_bh(&htable->lock);
887 if (*pos >= htable->cfg.size)
888 return NULL;
889
890 bucket = kmalloc(sizeof(unsigned int), GFP_ATOMIC);
891 if (!bucket)
892 return ERR_PTR(-ENOMEM);
893
894 *bucket = *pos;
895 return bucket;
896}
897
898static void *dl_seq_next(struct seq_file *s, void *v, loff_t *pos)
899{
Alexey Dobriyana1004d82010-01-18 08:14:50 +0100900 struct xt_hashlimit_htable *htable = s->private;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100901 unsigned int *bucket = (unsigned int *)v;
902
903 *pos = ++(*bucket);
904 if (*pos >= htable->cfg.size) {
905 kfree(v);
906 return NULL;
907 }
908 return bucket;
909}
910
911static void dl_seq_stop(struct seq_file *s, void *v)
Stephen Hemmingerf4f6fb72008-01-31 04:08:39 -0800912 __releases(htable->lock)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100913{
Alexey Dobriyana1004d82010-01-18 08:14:50 +0100914 struct xt_hashlimit_htable *htable = s->private;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100915 unsigned int *bucket = (unsigned int *)v;
916
Eric Dumazet55e0d7c2010-03-25 11:00:22 +0100917 if (!IS_ERR(bucket))
918 kfree(bucket);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100919 spin_unlock_bh(&htable->lock);
920}
921
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400922static void dl_seq_print(struct dsthash_ent *ent, u_int8_t family,
923 struct seq_file *s)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100924{
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100925 switch (family) {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200926 case NFPROTO_IPV4:
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400927 seq_printf(s, "%ld %pI4:%u->%pI4:%u %llu %llu %llu\n",
Steven Rostedt (Red Hat)e71456a2014-10-27 17:43:45 -0400928 (long)(ent->expires - jiffies)/HZ,
929 &ent->dst.ip.src,
930 ntohs(ent->dst.src_port),
931 &ent->dst.ip.dst,
932 ntohs(ent->dst.dst_port),
933 ent->rateinfo.credit, ent->rateinfo.credit_cap,
934 ent->rateinfo.cost);
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200935 break;
Igor Maravićc0cd1152011-12-12 02:58:24 +0000936#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200937 case NFPROTO_IPV6:
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400938 seq_printf(s, "%ld %pI6:%u->%pI6:%u %llu %llu %llu\n",
Steven Rostedt (Red Hat)e71456a2014-10-27 17:43:45 -0400939 (long)(ent->expires - jiffies)/HZ,
940 &ent->dst.ip6.src,
941 ntohs(ent->dst.src_port),
942 &ent->dst.ip6.dst,
943 ntohs(ent->dst.dst_port),
944 ent->rateinfo.credit, ent->rateinfo.credit_cap,
945 ent->rateinfo.cost);
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200946 break;
Eric Dumazet7b21e092007-12-17 22:45:28 -0800947#endif
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100948 default:
949 BUG();
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100950 }
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400951}
952
953static int dl_seq_real_show_v1(struct dsthash_ent *ent, u_int8_t family,
954 struct seq_file *s)
955{
956 const struct xt_hashlimit_htable *ht = s->private;
957
958 spin_lock(&ent->lock);
959 /* recalculate to show accurate numbers */
960 rateinfo_recalc(ent, jiffies, ht->cfg.mode, 1);
961
962 dl_seq_print(ent, family, s);
963
964 spin_unlock(&ent->lock);
965 return seq_has_overflowed(s);
966}
967
968static int dl_seq_real_show(struct dsthash_ent *ent, u_int8_t family,
969 struct seq_file *s)
970{
971 const struct xt_hashlimit_htable *ht = s->private;
972
973 spin_lock(&ent->lock);
974 /* recalculate to show accurate numbers */
975 rateinfo_recalc(ent, jiffies, ht->cfg.mode, 2);
976
977 dl_seq_print(ent, family, s);
978
Eric Dumazet02e4eb72010-04-01 14:35:56 +0200979 spin_unlock(&ent->lock);
Steven Rostedt (Red Hat)e71456a2014-10-27 17:43:45 -0400980 return seq_has_overflowed(s);
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100981}
982
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400983static int dl_seq_show_v1(struct seq_file *s, void *v)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100984{
Alexey Dobriyana1004d82010-01-18 08:14:50 +0100985 struct xt_hashlimit_htable *htable = s->private;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100986 unsigned int *bucket = (unsigned int *)v;
987 struct dsthash_ent *ent;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100988
989 if (!hlist_empty(&htable->hash[*bucket])) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800990 hlist_for_each_entry(ent, &htable->hash[*bucket], node)
Vishwanath Pai0dc60a42016-09-22 12:42:46 -0400991 if (dl_seq_real_show_v1(ent, htable->family, s))
Jesper Dangaard Brouer683a04c2009-05-27 15:45:34 +0200992 return -1;
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100993 }
994 return 0;
995}
996
Vishwanath Pai11d5f152016-09-22 12:43:44 -0400997static int dl_seq_show(struct seq_file *s, void *v)
998{
999 struct xt_hashlimit_htable *htable = s->private;
1000 unsigned int *bucket = (unsigned int *)v;
1001 struct dsthash_ent *ent;
1002
1003 if (!hlist_empty(&htable->hash[*bucket])) {
1004 hlist_for_each_entry(ent, &htable->hash[*bucket], node)
1005 if (dl_seq_real_show(ent, htable->family, s))
1006 return -1;
1007 }
1008 return 0;
1009}
1010
Vishwanath Pai0dc60a42016-09-22 12:42:46 -04001011static const struct seq_operations dl_seq_ops_v1 = {
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001012 .start = dl_seq_start,
1013 .next = dl_seq_next,
1014 .stop = dl_seq_stop,
Vishwanath Pai0dc60a42016-09-22 12:42:46 -04001015 .show = dl_seq_show_v1
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001016};
1017
Vishwanath Pai11d5f152016-09-22 12:43:44 -04001018static const struct seq_operations dl_seq_ops = {
1019 .start = dl_seq_start,
1020 .next = dl_seq_next,
1021 .stop = dl_seq_stop,
1022 .show = dl_seq_show
1023};
1024
Vishwanath Pai0dc60a42016-09-22 12:42:46 -04001025static int dl_proc_open_v1(struct inode *inode, struct file *file)
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001026{
Vishwanath Pai0dc60a42016-09-22 12:42:46 -04001027 int ret = seq_open(file, &dl_seq_ops_v1);
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001028
1029 if (!ret) {
1030 struct seq_file *sf = file->private_data;
Al Virod9dda782013-03-31 18:16:14 -04001031 sf->private = PDE_DATA(inode);
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001032 }
1033 return ret;
1034}
1035
Vishwanath Pai11d5f152016-09-22 12:43:44 -04001036static int dl_proc_open(struct inode *inode, struct file *file)
1037{
1038 int ret = seq_open(file, &dl_seq_ops);
1039
1040 if (!ret) {
1041 struct seq_file *sf = file->private_data;
1042
1043 sf->private = PDE_DATA(inode);
1044 }
1045 return ret;
1046}
1047
Vishwanath Pai0dc60a42016-09-22 12:42:46 -04001048static const struct file_operations dl_file_ops_v1 = {
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001049 .owner = THIS_MODULE,
Vishwanath Pai0dc60a42016-09-22 12:42:46 -04001050 .open = dl_proc_open_v1,
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001051 .read = seq_read,
1052 .llseek = seq_lseek,
1053 .release = seq_release
1054};
1055
Vishwanath Pai11d5f152016-09-22 12:43:44 -04001056static const struct file_operations dl_file_ops = {
1057 .owner = THIS_MODULE,
1058 .open = dl_proc_open,
1059 .read = seq_read,
1060 .llseek = seq_lseek,
1061 .release = seq_release
1062};
1063
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001064static int __net_init hashlimit_proc_net_init(struct net *net)
1065{
1066 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
1067
1068 hashlimit_net->ipt_hashlimit = proc_mkdir("ipt_hashlimit", net->proc_net);
1069 if (!hashlimit_net->ipt_hashlimit)
1070 return -ENOMEM;
Igor Maravićc0cd1152011-12-12 02:58:24 +00001071#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001072 hashlimit_net->ip6t_hashlimit = proc_mkdir("ip6t_hashlimit", net->proc_net);
1073 if (!hashlimit_net->ip6t_hashlimit) {
Gao fengece31ff2013-02-18 01:34:56 +00001074 remove_proc_entry("ipt_hashlimit", net->proc_net);
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001075 return -ENOMEM;
1076 }
1077#endif
1078 return 0;
1079}
1080
1081static void __net_exit hashlimit_proc_net_exit(struct net *net)
1082{
Vitaly E. Lavrov32263dd2012-12-24 14:42:17 +01001083 struct xt_hashlimit_htable *hinfo;
Vitaly E. Lavrov32263dd2012-12-24 14:42:17 +01001084 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
1085
Sergey Popovichb4ef4ce2013-12-06 10:57:19 +02001086 /* hashlimit_net_exit() is called before hashlimit_mt_destroy().
1087 * Make sure that the parent ipt_hashlimit and ip6t_hashlimit proc
1088 * entries is empty before trying to remove it.
Vitaly E. Lavrov32263dd2012-12-24 14:42:17 +01001089 */
1090 mutex_lock(&hashlimit_mutex);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001091 hlist_for_each_entry(hinfo, &hashlimit_net->htables, node)
Sergey Popovichb4ef4ce2013-12-06 10:57:19 +02001092 htable_remove_proc_entry(hinfo);
Vitaly E. Lavrov32263dd2012-12-24 14:42:17 +01001093 hashlimit_net->ipt_hashlimit = NULL;
1094 hashlimit_net->ip6t_hashlimit = NULL;
1095 mutex_unlock(&hashlimit_mutex);
1096
Gao fengece31ff2013-02-18 01:34:56 +00001097 remove_proc_entry("ipt_hashlimit", net->proc_net);
Igor Maravićc0cd1152011-12-12 02:58:24 +00001098#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Gao fengece31ff2013-02-18 01:34:56 +00001099 remove_proc_entry("ip6t_hashlimit", net->proc_net);
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001100#endif
1101}
1102
1103static int __net_init hashlimit_net_init(struct net *net)
1104{
1105 struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
1106
1107 INIT_HLIST_HEAD(&hashlimit_net->htables);
1108 return hashlimit_proc_net_init(net);
1109}
1110
1111static void __net_exit hashlimit_net_exit(struct net *net)
1112{
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001113 hashlimit_proc_net_exit(net);
1114}
1115
1116static struct pernet_operations hashlimit_net_ops = {
1117 .init = hashlimit_net_init,
1118 .exit = hashlimit_net_exit,
1119 .id = &hashlimit_net_id,
1120 .size = sizeof(struct hashlimit_net),
1121};
1122
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -08001123static int __init hashlimit_mt_init(void)
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001124{
1125 int err;
1126
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001127 err = register_pernet_subsys(&hashlimit_net_ops);
1128 if (err < 0)
1129 return err;
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -08001130 err = xt_register_matches(hashlimit_mt_reg,
1131 ARRAY_SIZE(hashlimit_mt_reg));
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001132 if (err < 0)
1133 goto err1;
1134
1135 err = -ENOMEM;
1136 hashlimit_cachep = kmem_cache_create("xt_hashlimit",
1137 sizeof(struct dsthash_ent), 0, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001138 NULL);
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001139 if (!hashlimit_cachep) {
Joe Perchesb167a372014-09-09 21:17:32 -07001140 pr_warn("unable to create slab cache\n");
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001141 goto err2;
1142 }
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001143 return 0;
1144
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001145err2:
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -08001146 xt_unregister_matches(hashlimit_mt_reg, ARRAY_SIZE(hashlimit_mt_reg));
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001147err1:
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001148 unregister_pernet_subsys(&hashlimit_net_ops);
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001149 return err;
1150
1151}
1152
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -08001153static void __exit hashlimit_mt_exit(void)
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001154{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -08001155 xt_unregister_matches(hashlimit_mt_reg, ARRAY_SIZE(hashlimit_mt_reg));
Alexey Dobriyane89fc3f2010-01-18 08:33:28 +01001156 unregister_pernet_subsys(&hashlimit_net_ops);
Eric Dumazet02e4eb72010-04-01 14:35:56 +02001157
1158 rcu_barrier_bh();
1159 kmem_cache_destroy(hashlimit_cachep);
Patrick McHardy39b46fc2006-11-29 02:35:36 +01001160}
1161
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -08001162module_init(hashlimit_mt_init);
1163module_exit(hashlimit_mt_exit);