Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 15 | #include <net/gen_stats.h> |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 16 | #include <net/netlink.h> |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 17 | |
| 18 | #include <linux/netfilter/x_tables.h> |
| 19 | #include <linux/netfilter/xt_RATEEST.h> |
| 20 | #include <net/netfilter/xt_rateest.h> |
| 21 | |
| 22 | static DEFINE_MUTEX(xt_rateest_mutex); |
| 23 | |
| 24 | #define RATEEST_HSIZE 16 |
| 25 | static struct hlist_head rateest_hash[RATEEST_HSIZE] __read_mostly; |
| 26 | static unsigned int jhash_rnd __read_mostly; |
Jan Engelhardt | 5191d50 | 2010-01-04 16:27:25 +0100 | [diff] [blame] | 27 | static bool rnd_inited __read_mostly; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 28 | |
| 29 | static unsigned int xt_rateest_hash(const char *name) |
| 30 | { |
| 31 | return jhash(name, FIELD_SIZEOF(struct xt_rateest, name), jhash_rnd) & |
| 32 | (RATEEST_HSIZE - 1); |
| 33 | } |
| 34 | |
| 35 | static void xt_rateest_hash_insert(struct xt_rateest *est) |
| 36 | { |
| 37 | unsigned int h; |
| 38 | |
| 39 | h = xt_rateest_hash(est->name); |
| 40 | hlist_add_head(&est->list, &rateest_hash[h]); |
| 41 | } |
| 42 | |
| 43 | struct xt_rateest *xt_rateest_lookup(const char *name) |
| 44 | { |
| 45 | struct xt_rateest *est; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 46 | unsigned int h; |
| 47 | |
| 48 | h = xt_rateest_hash(name); |
| 49 | mutex_lock(&xt_rateest_mutex); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 50 | hlist_for_each_entry(est, &rateest_hash[h], list) { |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 51 | if (strcmp(est->name, name) == 0) { |
| 52 | est->refcnt++; |
| 53 | mutex_unlock(&xt_rateest_mutex); |
| 54 | return est; |
| 55 | } |
| 56 | } |
| 57 | mutex_unlock(&xt_rateest_mutex); |
| 58 | return NULL; |
| 59 | } |
| 60 | EXPORT_SYMBOL_GPL(xt_rateest_lookup); |
| 61 | |
| 62 | void xt_rateest_put(struct xt_rateest *est) |
| 63 | { |
| 64 | mutex_lock(&xt_rateest_mutex); |
| 65 | if (--est->refcnt == 0) { |
| 66 | hlist_del(&est->list); |
| 67 | gen_kill_estimator(&est->bstats, &est->rstats); |
Eric Dumazet | c7de2cf | 2010-06-09 02:09:23 +0000 | [diff] [blame] | 68 | /* |
| 69 | * gen_estimator est_timer() might access est->lock or bstats, |
| 70 | * wait a RCU grace period before freeing 'est' |
| 71 | */ |
Paul E. McKenney | cefcb60 | 2011-05-02 01:00:18 -0700 | [diff] [blame] | 72 | kfree_rcu(est, rcu); |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 73 | } |
| 74 | mutex_unlock(&xt_rateest_mutex); |
| 75 | } |
| 76 | EXPORT_SYMBOL_GPL(xt_rateest_put); |
| 77 | |
| 78 | static unsigned int |
Jan Engelhardt | 4b560b4 | 2009-07-05 19:43:26 +0200 | [diff] [blame] | 79 | xt_rateest_tg(struct sk_buff *skb, const struct xt_action_param *par) |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 80 | { |
Jan Engelhardt | 7eb3558 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 81 | const struct xt_rateest_target_info *info = par->targinfo; |
Eric Dumazet | c1a8f1f | 2009-08-16 09:36:49 +0000 | [diff] [blame] | 82 | struct gnet_stats_basic_packed *stats = &info->est->bstats; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 83 | |
| 84 | spin_lock_bh(&info->est->lock); |
| 85 | stats->bytes += skb->len; |
| 86 | stats->packets++; |
| 87 | spin_unlock_bh(&info->est->lock); |
| 88 | |
| 89 | return XT_CONTINUE; |
| 90 | } |
| 91 | |
Jan Engelhardt | 135367b | 2010-03-19 17:16:42 +0100 | [diff] [blame] | 92 | static int xt_rateest_tg_checkentry(const struct xt_tgchk_param *par) |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 93 | { |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 94 | struct xt_rateest_target_info *info = par->targinfo; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 95 | struct xt_rateest *est; |
| 96 | struct { |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 97 | struct nlattr opt; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 98 | struct gnet_estimator est; |
| 99 | } cfg; |
Jan Engelhardt | 4a5a5c7 | 2010-03-19 17:32:59 +0100 | [diff] [blame] | 100 | int ret; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 101 | |
Jan Engelhardt | 5191d50 | 2010-01-04 16:27:25 +0100 | [diff] [blame] | 102 | if (unlikely(!rnd_inited)) { |
| 103 | get_random_bytes(&jhash_rnd, sizeof(jhash_rnd)); |
| 104 | rnd_inited = true; |
| 105 | } |
| 106 | |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 107 | est = xt_rateest_lookup(info->name); |
| 108 | if (est) { |
| 109 | /* |
| 110 | * If estimator parameters are specified, they must match the |
| 111 | * existing estimator. |
| 112 | */ |
| 113 | if ((!info->interval && !info->ewma_log) || |
| 114 | (info->interval != est->params.interval || |
| 115 | info->ewma_log != est->params.ewma_log)) { |
| 116 | xt_rateest_put(est); |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 117 | return -EINVAL; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 118 | } |
| 119 | info->est = est; |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 120 | return 0; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 121 | } |
| 122 | |
Jan Engelhardt | 4a5a5c7 | 2010-03-19 17:32:59 +0100 | [diff] [blame] | 123 | ret = -ENOMEM; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 124 | est = kzalloc(sizeof(*est), GFP_KERNEL); |
| 125 | if (!est) |
| 126 | goto err1; |
| 127 | |
| 128 | strlcpy(est->name, info->name, sizeof(est->name)); |
| 129 | spin_lock_init(&est->lock); |
| 130 | est->refcnt = 1; |
| 131 | est->params.interval = info->interval; |
| 132 | est->params.ewma_log = info->ewma_log; |
| 133 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 134 | cfg.opt.nla_len = nla_attr_size(sizeof(cfg.est)); |
| 135 | cfg.opt.nla_type = TCA_STATS_RATE_EST; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 136 | cfg.est.interval = info->interval; |
| 137 | cfg.est.ewma_log = info->ewma_log; |
| 138 | |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 139 | ret = gen_new_estimator(&est->bstats, NULL, &est->rstats, |
Jan Engelhardt | 4a5a5c7 | 2010-03-19 17:32:59 +0100 | [diff] [blame] | 140 | &est->lock, &cfg.opt); |
| 141 | if (ret < 0) |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 142 | goto err2; |
| 143 | |
| 144 | info->est = est; |
| 145 | xt_rateest_hash_insert(est); |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 146 | return 0; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 147 | |
| 148 | err2: |
| 149 | kfree(est); |
| 150 | err1: |
Jan Engelhardt | 4a5a5c7 | 2010-03-19 17:32:59 +0100 | [diff] [blame] | 151 | return ret; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 152 | } |
| 153 | |
Jan Engelhardt | a2df164 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 154 | static void xt_rateest_tg_destroy(const struct xt_tgdtor_param *par) |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 155 | { |
Jan Engelhardt | a2df164 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 156 | struct xt_rateest_target_info *info = par->targinfo; |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 157 | |
| 158 | xt_rateest_put(info->est); |
| 159 | } |
| 160 | |
Jan Engelhardt | 55b69e9 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 161 | static struct xt_target xt_rateest_tg_reg __read_mostly = { |
| 162 | .name = "RATEEST", |
| 163 | .revision = 0, |
| 164 | .family = NFPROTO_UNSPEC, |
| 165 | .target = xt_rateest_tg, |
| 166 | .checkentry = xt_rateest_tg_checkentry, |
| 167 | .destroy = xt_rateest_tg_destroy, |
| 168 | .targetsize = sizeof(struct xt_rateest_target_info), |
| 169 | .me = THIS_MODULE, |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | static int __init xt_rateest_tg_init(void) |
| 173 | { |
| 174 | unsigned int i; |
| 175 | |
| 176 | for (i = 0; i < ARRAY_SIZE(rateest_hash); i++) |
| 177 | INIT_HLIST_HEAD(&rateest_hash[i]); |
| 178 | |
Jan Engelhardt | 55b69e9 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 179 | return xt_register_target(&xt_rateest_tg_reg); |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | static void __exit xt_rateest_tg_fini(void) |
| 183 | { |
Jan Engelhardt | 55b69e9 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 184 | xt_unregister_target(&xt_rateest_tg_reg); |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | |
| 188 | MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>"); |
| 189 | MODULE_LICENSE("GPL"); |
Jan Engelhardt | 2ae15b6 | 2008-01-14 23:42:28 -0800 | [diff] [blame] | 190 | MODULE_DESCRIPTION("Xtables: packet rate estimator"); |
Patrick McHardy | 5859034 | 2007-12-04 23:40:05 -0800 | [diff] [blame] | 191 | MODULE_ALIAS("ipt_RATEEST"); |
| 192 | MODULE_ALIAS("ip6t_RATEEST"); |
| 193 | module_init(xt_rateest_tg_init); |
| 194 | module_exit(xt_rateest_tg_fini); |