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