openvswitch: Fix push/pop ethernet validation
[linux-2.6-block.git] / net / netfilter / xt_RATEEST.c
CommitLineData
5859034d
PM
1/*
2 * (C) 2007 Patrick McHardy <kaber@trash.net>
3 *
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.
7 */
8#include <linux/module.h>
9#include <linux/skbuff.h>
10#include <linux/gen_stats.h>
11#include <linux/jhash.h>
12#include <linux/rtnetlink.h>
13#include <linux/random.h>
5a0e3ad6 14#include <linux/slab.h>
5859034d 15#include <net/gen_stats.h>
1e90474c 16#include <net/netlink.h>
3427b2ab 17#include <net/netns/generic.h>
5859034d
PM
18
19#include <linux/netfilter/x_tables.h>
20#include <linux/netfilter/xt_RATEEST.h>
21#include <net/netfilter/xt_rateest.h>
22
5859034d 23#define RATEEST_HSIZE 16
3427b2ab
CW
24
25struct xt_rateest_net {
26 struct mutex hash_lock;
27 struct hlist_head hash[RATEEST_HSIZE];
28};
29
30static unsigned int xt_rateest_id;
31
5859034d
PM
32static unsigned int jhash_rnd __read_mostly;
33
34static unsigned int xt_rateest_hash(const char *name)
35{
36 return jhash(name, FIELD_SIZEOF(struct xt_rateest, name), jhash_rnd) &
37 (RATEEST_HSIZE - 1);
38}
39
3427b2ab
CW
40static void xt_rateest_hash_insert(struct xt_rateest_net *xn,
41 struct xt_rateest *est)
5859034d
PM
42{
43 unsigned int h;
44
45 h = xt_rateest_hash(est->name);
3427b2ab 46 hlist_add_head(&est->list, &xn->hash[h]);
5859034d
PM
47}
48
3427b2ab
CW
49static struct xt_rateest *__xt_rateest_lookup(struct xt_rateest_net *xn,
50 const char *name)
5859034d
PM
51{
52 struct xt_rateest *est;
5859034d
PM
53 unsigned int h;
54
55 h = xt_rateest_hash(name);
3427b2ab 56 hlist_for_each_entry(est, &xn->hash[h], list) {
5859034d
PM
57 if (strcmp(est->name, name) == 0) {
58 est->refcnt++;
5859034d
PM
59 return est;
60 }
61 }
7dc68e98 62
5859034d
PM
63 return NULL;
64}
7dc68e98 65
3427b2ab 66struct xt_rateest *xt_rateest_lookup(struct net *net, const char *name)
7dc68e98 67{
3427b2ab 68 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id);
7dc68e98
CW
69 struct xt_rateest *est;
70
3427b2ab
CW
71 mutex_lock(&xn->hash_lock);
72 est = __xt_rateest_lookup(xn, name);
73 mutex_unlock(&xn->hash_lock);
7dc68e98
CW
74 return est;
75}
5859034d
PM
76EXPORT_SYMBOL_GPL(xt_rateest_lookup);
77
3427b2ab 78void xt_rateest_put(struct net *net, struct xt_rateest *est)
5859034d 79{
3427b2ab
CW
80 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id);
81
82 mutex_lock(&xn->hash_lock);
5859034d
PM
83 if (--est->refcnt == 0) {
84 hlist_del(&est->list);
1c0d32fd 85 gen_kill_estimator(&est->rate_est);
c7de2cf0
ED
86 /*
87 * gen_estimator est_timer() might access est->lock or bstats,
88 * wait a RCU grace period before freeing 'est'
89 */
cefcb602 90 kfree_rcu(est, rcu);
5859034d 91 }
3427b2ab 92 mutex_unlock(&xn->hash_lock);
5859034d
PM
93}
94EXPORT_SYMBOL_GPL(xt_rateest_put);
95
96static unsigned int
4b560b44 97xt_rateest_tg(struct sk_buff *skb, const struct xt_action_param *par)
5859034d 98{
7eb35586 99 const struct xt_rateest_target_info *info = par->targinfo;
c1a8f1f1 100 struct gnet_stats_basic_packed *stats = &info->est->bstats;
5859034d
PM
101
102 spin_lock_bh(&info->est->lock);
103 stats->bytes += skb->len;
104 stats->packets++;
105 spin_unlock_bh(&info->est->lock);
106
107 return XT_CONTINUE;
108}
109
135367b8 110static int xt_rateest_tg_checkentry(const struct xt_tgchk_param *par)
5859034d 111{
3427b2ab 112 struct xt_rateest_net *xn = net_generic(par->net, xt_rateest_id);
af5d6dc2 113 struct xt_rateest_target_info *info = par->targinfo;
5859034d
PM
114 struct xt_rateest *est;
115 struct {
1e90474c 116 struct nlattr opt;
5859034d
PM
117 struct gnet_estimator est;
118 } cfg;
4a5a5c73 119 int ret;
5859034d 120
7bdc6624 121 net_get_random_once(&jhash_rnd, sizeof(jhash_rnd));
5191d501 122
3427b2ab
CW
123 mutex_lock(&xn->hash_lock);
124 est = __xt_rateest_lookup(xn, info->name);
5859034d 125 if (est) {
3427b2ab 126 mutex_unlock(&xn->hash_lock);
5859034d
PM
127 /*
128 * If estimator parameters are specified, they must match the
129 * existing estimator.
130 */
131 if ((!info->interval && !info->ewma_log) ||
132 (info->interval != est->params.interval ||
133 info->ewma_log != est->params.ewma_log)) {
3427b2ab 134 xt_rateest_put(par->net, est);
d6b00a53 135 return -EINVAL;
5859034d
PM
136 }
137 info->est = est;
d6b00a53 138 return 0;
5859034d
PM
139 }
140
4a5a5c73 141 ret = -ENOMEM;
5859034d
PM
142 est = kzalloc(sizeof(*est), GFP_KERNEL);
143 if (!est)
144 goto err1;
145
146 strlcpy(est->name, info->name, sizeof(est->name));
147 spin_lock_init(&est->lock);
148 est->refcnt = 1;
149 est->params.interval = info->interval;
150 est->params.ewma_log = info->ewma_log;
151
1e90474c
PM
152 cfg.opt.nla_len = nla_attr_size(sizeof(cfg.est));
153 cfg.opt.nla_type = TCA_STATS_RATE_EST;
5859034d
PM
154 cfg.est.interval = info->interval;
155 cfg.est.ewma_log = info->ewma_log;
156
1c0d32fd 157 ret = gen_new_estimator(&est->bstats, NULL, &est->rate_est,
edb09eb1 158 &est->lock, NULL, &cfg.opt);
4a5a5c73 159 if (ret < 0)
5859034d
PM
160 goto err2;
161
162 info->est = est;
3427b2ab
CW
163 xt_rateest_hash_insert(xn, est);
164 mutex_unlock(&xn->hash_lock);
d6b00a53 165 return 0;
5859034d
PM
166
167err2:
168 kfree(est);
169err1:
3427b2ab 170 mutex_unlock(&xn->hash_lock);
4a5a5c73 171 return ret;
5859034d
PM
172}
173
a2df1648 174static void xt_rateest_tg_destroy(const struct xt_tgdtor_param *par)
5859034d 175{
a2df1648 176 struct xt_rateest_target_info *info = par->targinfo;
5859034d 177
3427b2ab 178 xt_rateest_put(par->net, info->est);
5859034d
PM
179}
180
55b69e91
JE
181static struct xt_target xt_rateest_tg_reg __read_mostly = {
182 .name = "RATEEST",
183 .revision = 0,
184 .family = NFPROTO_UNSPEC,
185 .target = xt_rateest_tg,
186 .checkentry = xt_rateest_tg_checkentry,
187 .destroy = xt_rateest_tg_destroy,
188 .targetsize = sizeof(struct xt_rateest_target_info),
ec231890 189 .usersize = offsetof(struct xt_rateest_target_info, est),
55b69e91 190 .me = THIS_MODULE,
5859034d
PM
191};
192
3427b2ab
CW
193static __net_init int xt_rateest_net_init(struct net *net)
194{
195 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id);
196 int i;
197
198 mutex_init(&xn->hash_lock);
199 for (i = 0; i < ARRAY_SIZE(xn->hash); i++)
200 INIT_HLIST_HEAD(&xn->hash[i]);
201 return 0;
202}
203
204static void __net_exit xt_rateest_net_exit(struct net *net)
5859034d 205{
3427b2ab
CW
206 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id);
207 int i;
208
209 for (i = 0; i < ARRAY_SIZE(xn->hash); i++)
210 WARN_ON_ONCE(!hlist_empty(&xn->hash[i]));
211}
5859034d 212
3427b2ab
CW
213static struct pernet_operations xt_rateest_net_ops = {
214 .init = xt_rateest_net_init,
215 .exit = xt_rateest_net_exit,
216 .id = &xt_rateest_id,
217 .size = sizeof(struct xt_rateest_net),
218};
219
220static int __init xt_rateest_tg_init(void)
221{
222 int err = register_pernet_subsys(&xt_rateest_net_ops);
5859034d 223
3427b2ab
CW
224 if (err)
225 return err;
55b69e91 226 return xt_register_target(&xt_rateest_tg_reg);
5859034d
PM
227}
228
229static void __exit xt_rateest_tg_fini(void)
230{
55b69e91 231 xt_unregister_target(&xt_rateest_tg_reg);
3427b2ab 232 unregister_pernet_subsys(&xt_rateest_net_ops);
5859034d
PM
233}
234
235
236MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
237MODULE_LICENSE("GPL");
2ae15b64 238MODULE_DESCRIPTION("Xtables: packet rate estimator");
5859034d
PM
239MODULE_ALIAS("ipt_RATEEST");
240MODULE_ALIAS("ip6t_RATEEST");
241module_init(xt_rateest_tg_init);
242module_exit(xt_rateest_tg_fini);