2 * (C) 2007 Patrick McHardy <kaber@trash.net>
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 #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 <net/gen_stats.h>
15 #include <net/netlink.h>
17 #include <linux/netfilter/x_tables.h>
18 #include <linux/netfilter/xt_RATEEST.h>
19 #include <net/netfilter/xt_rateest.h>
21 static DEFINE_MUTEX(xt_rateest_mutex
);
23 #define RATEEST_HSIZE 16
24 static struct hlist_head rateest_hash
[RATEEST_HSIZE
] __read_mostly
;
25 static unsigned int jhash_rnd __read_mostly
;
26 static bool rnd_inited __read_mostly
;
28 static unsigned int xt_rateest_hash(const char *name
)
30 return jhash(name
, FIELD_SIZEOF(struct xt_rateest
, name
), jhash_rnd
) &
34 static void xt_rateest_hash_insert(struct xt_rateest
*est
)
38 h
= xt_rateest_hash(est
->name
);
39 hlist_add_head(&est
->list
, &rateest_hash
[h
]);
42 struct xt_rateest
*xt_rateest_lookup(const char *name
)
44 struct xt_rateest
*est
;
48 h
= xt_rateest_hash(name
);
49 mutex_lock(&xt_rateest_mutex
);
50 hlist_for_each_entry(est
, n
, &rateest_hash
[h
], list
) {
51 if (strcmp(est
->name
, name
) == 0) {
53 mutex_unlock(&xt_rateest_mutex
);
57 mutex_unlock(&xt_rateest_mutex
);
60 EXPORT_SYMBOL_GPL(xt_rateest_lookup
);
62 void xt_rateest_put(struct xt_rateest
*est
)
64 mutex_lock(&xt_rateest_mutex
);
65 if (--est
->refcnt
== 0) {
66 hlist_del(&est
->list
);
67 gen_kill_estimator(&est
->bstats
, &est
->rstats
);
70 mutex_unlock(&xt_rateest_mutex
);
72 EXPORT_SYMBOL_GPL(xt_rateest_put
);
75 xt_rateest_tg(struct sk_buff
*skb
, const struct xt_target_param
*par
)
77 const struct xt_rateest_target_info
*info
= par
->targinfo
;
78 struct gnet_stats_basic_packed
*stats
= &info
->est
->bstats
;
80 spin_lock_bh(&info
->est
->lock
);
81 stats
->bytes
+= skb
->len
;
83 spin_unlock_bh(&info
->est
->lock
);
88 static bool xt_rateest_tg_checkentry(const struct xt_tgchk_param
*par
)
90 struct xt_rateest_target_info
*info
= par
->targinfo
;
91 struct xt_rateest
*est
;
94 struct gnet_estimator est
;
97 if (unlikely(!rnd_inited
)) {
98 get_random_bytes(&jhash_rnd
, sizeof(jhash_rnd
));
102 est
= xt_rateest_lookup(info
->name
);
105 * If estimator parameters are specified, they must match the
106 * existing estimator.
108 if ((!info
->interval
&& !info
->ewma_log
) ||
109 (info
->interval
!= est
->params
.interval
||
110 info
->ewma_log
!= est
->params
.ewma_log
)) {
118 est
= kzalloc(sizeof(*est
), GFP_KERNEL
);
122 strlcpy(est
->name
, info
->name
, sizeof(est
->name
));
123 spin_lock_init(&est
->lock
);
125 est
->params
.interval
= info
->interval
;
126 est
->params
.ewma_log
= info
->ewma_log
;
128 cfg
.opt
.nla_len
= nla_attr_size(sizeof(cfg
.est
));
129 cfg
.opt
.nla_type
= TCA_STATS_RATE_EST
;
130 cfg
.est
.interval
= info
->interval
;
131 cfg
.est
.ewma_log
= info
->ewma_log
;
133 if (gen_new_estimator(&est
->bstats
, &est
->rstats
, &est
->lock
,
138 xt_rateest_hash_insert(est
);
148 static void xt_rateest_tg_destroy(const struct xt_tgdtor_param
*par
)
150 struct xt_rateest_target_info
*info
= par
->targinfo
;
152 xt_rateest_put(info
->est
);
155 static struct xt_target xt_rateest_tg_reg __read_mostly
= {
158 .family
= NFPROTO_UNSPEC
,
159 .target
= xt_rateest_tg
,
160 .checkentry
= xt_rateest_tg_checkentry
,
161 .destroy
= xt_rateest_tg_destroy
,
162 .targetsize
= sizeof(struct xt_rateest_target_info
),
166 static int __init
xt_rateest_tg_init(void)
170 for (i
= 0; i
< ARRAY_SIZE(rateest_hash
); i
++)
171 INIT_HLIST_HEAD(&rateest_hash
[i
]);
173 return xt_register_target(&xt_rateest_tg_reg
);
176 static void __exit
xt_rateest_tg_fini(void)
178 xt_unregister_target(&xt_rateest_tg_reg
);
182 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
183 MODULE_LICENSE("GPL");
184 MODULE_DESCRIPTION("Xtables: packet rate estimator");
185 MODULE_ALIAS("ipt_RATEEST");
186 MODULE_ALIAS("ip6t_RATEEST");
187 module_init(xt_rateest_tg_init
);
188 module_exit(xt_rateest_tg_fini
);