blob: e5d7e1ffb1a46be8b7a0a21897f4da1a3e1df6cd [file] [log] [blame]
Marcin Garskidb9551702007-10-19 23:22:11 +02001/* (C) 1999 Jérôme de Vivie <devivie@info.enserb.u-bordeaux.fr>
2 * (C) 1999 Hervé Eychenne <eychenne@info.enserb.u-bordeaux.fr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/skbuff.h>
12#include <linux/spinlock.h>
13#include <linux/interrupt.h>
14
Harald Welte2e4e6a12006-01-12 13:30:04 -080015#include <linux/netfilter/x_tables.h>
16#include <linux/netfilter/xt_limit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Jan Engelhardtacc738f2009-03-16 15:35:29 +010018struct xt_limit_priv {
19 unsigned long prev;
20 uint32_t credit;
21};
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023MODULE_LICENSE("GPL");
24MODULE_AUTHOR("Herve Eychenne <rv@wallfire.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080025MODULE_DESCRIPTION("Xtables: rate-limit match");
Harald Welte2e4e6a12006-01-12 13:30:04 -080026MODULE_ALIAS("ipt_limit");
27MODULE_ALIAS("ip6t_limit");
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/* The algorithm used is the Simple Token Bucket Filter (TBF)
30 * see net/sched/sch_tbf.c in the linux source tree
31 */
32
33static DEFINE_SPINLOCK(limit_lock);
34
35/* Rusty: This is my (non-mathematically-inclined) understanding of
36 this algorithm. The `average rate' in jiffies becomes your initial
37 amount of credit `credit' and the most credit you can ever have
38 `credit_cap'. The `peak rate' becomes the cost of passing the
39 test, `cost'.
40
41 `prev' tracks the last packet hit: you gain one credit per jiffy.
42 If you get credit balance more than this, the extra credit is
43 discarded. Every time the match passes, you lose `cost' credits;
44 if you don't have that many, the test fails.
45
46 See Alexey's formal explanation in net/sched/sch_tbf.c.
47
48 To get the maxmum range, we multiply by this factor (ie. you get N
49 credits per jiffy). We want to allow a rate as low as 1 per day
50 (slowest userspace tool allows), which means
51 CREDITS_PER_JIFFY*HZ*60*60*24 < 2^32. ie. */
52#define MAX_CPJ (0xFFFFFFFF / (HZ*60*60*24))
53
54/* Repeated shift and or gives us all 1s, final shift and add 1 gives
55 * us the power of 2 below the theoretical max, so GCC simply does a
56 * shift. */
57#define _POW2_BELOW2(x) ((x)|((x)>>1))
58#define _POW2_BELOW4(x) (_POW2_BELOW2(x)|_POW2_BELOW2((x)>>2))
59#define _POW2_BELOW8(x) (_POW2_BELOW4(x)|_POW2_BELOW4((x)>>4))
60#define _POW2_BELOW16(x) (_POW2_BELOW8(x)|_POW2_BELOW8((x)>>8))
61#define _POW2_BELOW32(x) (_POW2_BELOW16(x)|_POW2_BELOW16((x)>>16))
62#define POW2_BELOW32(x) ((_POW2_BELOW32(x)>>1) + 1)
63
64#define CREDITS_PER_JIFFY POW2_BELOW32(MAX_CPJ)
65
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070066static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020067limit_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Jan Engelhardtacc738f2009-03-16 15:35:29 +010069 const struct xt_rateinfo *r = par->matchinfo;
70 struct xt_limit_priv *priv = r->master;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 unsigned long now = jiffies;
72
73 spin_lock_bh(&limit_lock);
Jan Engelhardtacc738f2009-03-16 15:35:29 +010074 priv->credit += (now - xchg(&priv->prev, now)) * CREDITS_PER_JIFFY;
75 if (priv->credit > r->credit_cap)
76 priv->credit = r->credit_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Jan Engelhardtacc738f2009-03-16 15:35:29 +010078 if (priv->credit >= r->cost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 /* We're not limited. */
Jan Engelhardtacc738f2009-03-16 15:35:29 +010080 priv->credit -= r->cost;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 spin_unlock_bh(&limit_lock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070082 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080085 spin_unlock_bh(&limit_lock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070086 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/* Precision saver. */
90static u_int32_t
91user2credits(u_int32_t user)
92{
93 /* If multiplying would overflow... */
94 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY))
95 /* Divide first. */
Harald Welte2e4e6a12006-01-12 13:30:04 -080096 return (user / XT_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Harald Welte2e4e6a12006-01-12 13:30:04 -080098 return (user * HZ * CREDITS_PER_JIFFY) / XT_LIMIT_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200101static bool limit_mt_check(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200103 struct xt_rateinfo *r = par->matchinfo;
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100104 struct xt_limit_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 /* Check for overflow. */
107 if (r->burst == 0
108 || user2credits(r->avg * r->burst) < user2credits(r->avg)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800109 printk("Overflow in xt_limit, try lower: %u/%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 r->avg, r->burst);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700111 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100114 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
115 if (priv == NULL)
Patrick McHardy8fa539b2009-11-23 13:37:23 +0100116 return false;
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100117
118 /* For SMP, we only want to use one set of state. */
119 r->master = priv;
Patrick McHardy57dab5d2006-09-20 11:59:25 -0700120 if (r->cost == 0) {
121 /* User avg in seconds * XT_LIMIT_SCALE: convert to jiffies *
122 128. */
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100123 priv->prev = jiffies;
124 priv->credit = user2credits(r->avg * r->burst); /* Credits full. */
Patrick McHardy57dab5d2006-09-20 11:59:25 -0700125 r->credit_cap = user2credits(r->avg * r->burst); /* Credits full. */
126 r->cost = user2credits(r->avg);
127 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700128 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100131static void limit_mt_destroy(const struct xt_mtdtor_param *par)
132{
133 const struct xt_rateinfo *info = par->matchinfo;
134
135 kfree(info->master);
136}
137
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700138#ifdef CONFIG_COMPAT
139struct compat_xt_rateinfo {
140 u_int32_t avg;
141 u_int32_t burst;
142
143 compat_ulong_t prev;
144 u_int32_t credit;
145 u_int32_t credit_cap, cost;
146
147 u_int32_t master;
148};
149
150/* To keep the full "prev" timestamp, the upper 32 bits are stored in the
151 * master pointer, which does not need to be preserved. */
Jan Engelhardt739674f2009-06-26 08:23:19 +0200152static void limit_mt_compat_from_user(void *dst, const void *src)
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700153{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700154 const struct compat_xt_rateinfo *cm = src;
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700155 struct xt_rateinfo m = {
156 .avg = cm->avg,
157 .burst = cm->burst,
158 .prev = cm->prev | (unsigned long)cm->master << 32,
159 .credit = cm->credit,
160 .credit_cap = cm->credit_cap,
161 .cost = cm->cost,
162 };
163 memcpy(dst, &m, sizeof(m));
164}
165
Jan Engelhardt739674f2009-06-26 08:23:19 +0200166static int limit_mt_compat_to_user(void __user *dst, const void *src)
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700167{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700168 const struct xt_rateinfo *m = src;
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700169 struct compat_xt_rateinfo cm = {
170 .avg = m->avg,
171 .burst = m->burst,
172 .prev = m->prev,
173 .credit = m->credit,
174 .credit_cap = m->credit_cap,
175 .cost = m->cost,
176 .master = m->prev >> 32,
177 };
178 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
179}
180#endif /* CONFIG_COMPAT */
181
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200182static struct xt_match limit_mt_reg __read_mostly = {
183 .name = "limit",
184 .revision = 0,
185 .family = NFPROTO_UNSPEC,
186 .match = limit_mt,
187 .checkentry = limit_mt_check,
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100188 .destroy = limit_mt_destroy,
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200189 .matchsize = sizeof(struct xt_rateinfo),
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700190#ifdef CONFIG_COMPAT
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200191 .compatsize = sizeof(struct compat_xt_rateinfo),
192 .compat_from_user = limit_mt_compat_from_user,
193 .compat_to_user = limit_mt_compat_to_user,
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700194#endif
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200195 .me = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800198static int __init limit_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200200 return xt_register_match(&limit_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800203static void __exit limit_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200205 xt_unregister_match(&limit_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800208module_init(limit_mt_init);
209module_exit(limit_mt_exit);