1 // SPDX-License-Identifier: GPL-2.0-only
3 * (C) 2007 Patrick McHardy <kaber@trash.net>
5 #include <linux/module.h>
6 #include <linux/skbuff.h>
7 #include <linux/gen_stats.h>
8 #include <linux/jhash.h>
9 #include <linux/rtnetlink.h>
10 #include <linux/random.h>
11 #include <linux/slab.h>
12 #include <net/gen_stats.h>
13 #include <net/netlink.h>
14 #include <net/netns/generic.h>
16 #include <linux/netfilter/x_tables.h>
17 #include <linux/netfilter/xt_RATEEST.h>
18 #include <net/netfilter/xt_rateest.h>
20 #define RATEEST_HSIZE 16
22 struct xt_rateest_net
{
23 struct mutex hash_lock
;
24 struct hlist_head hash
[RATEEST_HSIZE
];
27 static unsigned int xt_rateest_id
;
29 static unsigned int jhash_rnd __read_mostly
;
31 static unsigned int xt_rateest_hash(const char *name
)
33 return jhash(name
, sizeof_field(struct xt_rateest
, name
), jhash_rnd
) &
37 static void xt_rateest_hash_insert(struct xt_rateest_net
*xn
,
38 struct xt_rateest
*est
)
42 h
= xt_rateest_hash(est
->name
);
43 hlist_add_head(&est
->list
, &xn
->hash
[h
]);
46 static struct xt_rateest
*__xt_rateest_lookup(struct xt_rateest_net
*xn
,
49 struct xt_rateest
*est
;
52 h
= xt_rateest_hash(name
);
53 hlist_for_each_entry(est
, &xn
->hash
[h
], list
) {
54 if (strcmp(est
->name
, name
) == 0) {
63 struct xt_rateest
*xt_rateest_lookup(struct net
*net
, const char *name
)
65 struct xt_rateest_net
*xn
= net_generic(net
, xt_rateest_id
);
66 struct xt_rateest
*est
;
68 mutex_lock(&xn
->hash_lock
);
69 est
= __xt_rateest_lookup(xn
, name
);
70 mutex_unlock(&xn
->hash_lock
);
73 EXPORT_SYMBOL_GPL(xt_rateest_lookup
);
75 void xt_rateest_put(struct net
*net
, struct xt_rateest
*est
)
77 struct xt_rateest_net
*xn
= net_generic(net
, xt_rateest_id
);
79 mutex_lock(&xn
->hash_lock
);
80 if (--est
->refcnt
== 0) {
81 hlist_del(&est
->list
);
82 gen_kill_estimator(&est
->rate_est
);
84 * gen_estimator est_timer() might access est->lock or bstats,
85 * wait a RCU grace period before freeing 'est'
89 mutex_unlock(&xn
->hash_lock
);
91 EXPORT_SYMBOL_GPL(xt_rateest_put
);
94 xt_rateest_tg(struct sk_buff
*skb
, const struct xt_action_param
*par
)
96 const struct xt_rateest_target_info
*info
= par
->targinfo
;
97 struct gnet_stats_basic_sync
*stats
= &info
->est
->bstats
;
99 spin_lock_bh(&info
->est
->lock
);
100 u64_stats_add(&stats
->bytes
, skb
->len
);
101 u64_stats_inc(&stats
->packets
);
102 spin_unlock_bh(&info
->est
->lock
);
107 static int xt_rateest_tg_checkentry(const struct xt_tgchk_param
*par
)
109 struct xt_rateest_net
*xn
= net_generic(par
->net
, xt_rateest_id
);
110 struct xt_rateest_target_info
*info
= par
->targinfo
;
111 struct xt_rateest
*est
;
114 struct gnet_estimator est
;
118 if (strnlen(info
->name
, sizeof(est
->name
)) >= sizeof(est
->name
))
119 return -ENAMETOOLONG
;
121 net_get_random_once(&jhash_rnd
, sizeof(jhash_rnd
));
123 mutex_lock(&xn
->hash_lock
);
124 est
= __xt_rateest_lookup(xn
, info
->name
);
126 mutex_unlock(&xn
->hash_lock
);
128 * If estimator parameters are specified, they must match the
129 * existing estimator.
131 if ((!info
->interval
&& !info
->ewma_log
) ||
132 (info
->interval
!= est
->params
.interval
||
133 info
->ewma_log
!= est
->params
.ewma_log
)) {
134 xt_rateest_put(par
->net
, est
);
142 est
= kzalloc(sizeof(*est
), GFP_KERNEL
);
146 gnet_stats_basic_sync_init(&est
->bstats
);
147 strscpy(est
->name
, info
->name
, sizeof(est
->name
));
148 spin_lock_init(&est
->lock
);
150 est
->params
.interval
= info
->interval
;
151 est
->params
.ewma_log
= info
->ewma_log
;
153 cfg
.opt
.nla_len
= nla_attr_size(sizeof(cfg
.est
));
154 cfg
.opt
.nla_type
= TCA_STATS_RATE_EST
;
155 cfg
.est
.interval
= info
->interval
;
156 cfg
.est
.ewma_log
= info
->ewma_log
;
158 ret
= gen_new_estimator(&est
->bstats
, NULL
, &est
->rate_est
,
159 &est
->lock
, NULL
, &cfg
.opt
);
164 xt_rateest_hash_insert(xn
, est
);
165 mutex_unlock(&xn
->hash_lock
);
171 mutex_unlock(&xn
->hash_lock
);
175 static void xt_rateest_tg_destroy(const struct xt_tgdtor_param
*par
)
177 struct xt_rateest_target_info
*info
= par
->targinfo
;
179 xt_rateest_put(par
->net
, info
->est
);
182 static struct xt_target xt_rateest_tg_reg
[] __read_mostly
= {
186 .family
= NFPROTO_IPV4
,
187 .target
= xt_rateest_tg
,
188 .checkentry
= xt_rateest_tg_checkentry
,
189 .destroy
= xt_rateest_tg_destroy
,
190 .targetsize
= sizeof(struct xt_rateest_target_info
),
191 .usersize
= offsetof(struct xt_rateest_target_info
, est
),
194 #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
198 .family
= NFPROTO_IPV6
,
199 .target
= xt_rateest_tg
,
200 .checkentry
= xt_rateest_tg_checkentry
,
201 .destroy
= xt_rateest_tg_destroy
,
202 .targetsize
= sizeof(struct xt_rateest_target_info
),
203 .usersize
= offsetof(struct xt_rateest_target_info
, est
),
209 static __net_init
int xt_rateest_net_init(struct net
*net
)
211 struct xt_rateest_net
*xn
= net_generic(net
, xt_rateest_id
);
214 mutex_init(&xn
->hash_lock
);
215 for (i
= 0; i
< ARRAY_SIZE(xn
->hash
); i
++)
216 INIT_HLIST_HEAD(&xn
->hash
[i
]);
220 static struct pernet_operations xt_rateest_net_ops
= {
221 .init
= xt_rateest_net_init
,
222 .id
= &xt_rateest_id
,
223 .size
= sizeof(struct xt_rateest_net
),
226 static int __init
xt_rateest_tg_init(void)
228 int err
= register_pernet_subsys(&xt_rateest_net_ops
);
232 return xt_register_targets(xt_rateest_tg_reg
, ARRAY_SIZE(xt_rateest_tg_reg
));
235 static void __exit
xt_rateest_tg_fini(void)
237 xt_unregister_targets(xt_rateest_tg_reg
, ARRAY_SIZE(xt_rateest_tg_reg
));
238 unregister_pernet_subsys(&xt_rateest_net_ops
);
242 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
243 MODULE_LICENSE("GPL");
244 MODULE_DESCRIPTION("Xtables: packet rate estimator");
245 MODULE_ALIAS("ipt_RATEEST");
246 MODULE_ALIAS("ip6t_RATEEST");
247 module_init(xt_rateest_tg_init
);
248 module_exit(xt_rateest_tg_fini
);