blob: 2773be6a71ddf49a2d8297a3183274472a0a7d61 [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
9#include <linux/module.h>
10#include <linux/skbuff.h>
11#include <linux/spinlock.h>
12#include <linux/interrupt.h>
13
Harald Welte2e4e6a12006-01-12 13:30:04 -080014#include <linux/netfilter/x_tables.h>
15#include <linux/netfilter/xt_limit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Jan Engelhardtacc738f2009-03-16 15:35:29 +010017struct xt_limit_priv {
18 unsigned long prev;
19 uint32_t credit;
20};
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022MODULE_LICENSE("GPL");
23MODULE_AUTHOR("Herve Eychenne <rv@wallfire.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080024MODULE_DESCRIPTION("Xtables: rate-limit match");
Harald Welte2e4e6a12006-01-12 13:30:04 -080025MODULE_ALIAS("ipt_limit");
26MODULE_ALIAS("ip6t_limit");
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/* The algorithm used is the Simple Token Bucket Filter (TBF)
29 * see net/sched/sch_tbf.c in the linux source tree
30 */
31
32static DEFINE_SPINLOCK(limit_lock);
33
34/* Rusty: This is my (non-mathematically-inclined) understanding of
35 this algorithm. The `average rate' in jiffies becomes your initial
36 amount of credit `credit' and the most credit you can ever have
37 `credit_cap'. The `peak rate' becomes the cost of passing the
38 test, `cost'.
39
40 `prev' tracks the last packet hit: you gain one credit per jiffy.
41 If you get credit balance more than this, the extra credit is
42 discarded. Every time the match passes, you lose `cost' credits;
43 if you don't have that many, the test fails.
44
45 See Alexey's formal explanation in net/sched/sch_tbf.c.
46
47 To get the maxmum range, we multiply by this factor (ie. you get N
48 credits per jiffy). We want to allow a rate as low as 1 per day
49 (slowest userspace tool allows), which means
50 CREDITS_PER_JIFFY*HZ*60*60*24 < 2^32. ie. */
51#define MAX_CPJ (0xFFFFFFFF / (HZ*60*60*24))
52
53/* Repeated shift and or gives us all 1s, final shift and add 1 gives
54 * us the power of 2 below the theoretical max, so GCC simply does a
55 * shift. */
56#define _POW2_BELOW2(x) ((x)|((x)>>1))
57#define _POW2_BELOW4(x) (_POW2_BELOW2(x)|_POW2_BELOW2((x)>>2))
58#define _POW2_BELOW8(x) (_POW2_BELOW4(x)|_POW2_BELOW4((x)>>4))
59#define _POW2_BELOW16(x) (_POW2_BELOW8(x)|_POW2_BELOW8((x)>>8))
60#define _POW2_BELOW32(x) (_POW2_BELOW16(x)|_POW2_BELOW16((x)>>16))
61#define POW2_BELOW32(x) ((_POW2_BELOW32(x)>>1) + 1)
62
63#define CREDITS_PER_JIFFY POW2_BELOW32(MAX_CPJ)
64
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070065static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020066limit_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Jan Engelhardtacc738f2009-03-16 15:35:29 +010068 const struct xt_rateinfo *r = par->matchinfo;
69 struct xt_limit_priv *priv = r->master;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 unsigned long now = jiffies;
71
72 spin_lock_bh(&limit_lock);
Jan Engelhardtacc738f2009-03-16 15:35:29 +010073 priv->credit += (now - xchg(&priv->prev, now)) * CREDITS_PER_JIFFY;
74 if (priv->credit > r->credit_cap)
75 priv->credit = r->credit_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jan Engelhardtacc738f2009-03-16 15:35:29 +010077 if (priv->credit >= r->cost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 /* We're not limited. */
Jan Engelhardtacc738f2009-03-16 15:35:29 +010079 priv->credit -= r->cost;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 spin_unlock_bh(&limit_lock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070081 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080084 spin_unlock_bh(&limit_lock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070085 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/* Precision saver. */
89static u_int32_t
90user2credits(u_int32_t user)
91{
92 /* If multiplying would overflow... */
93 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY))
94 /* Divide first. */
Harald Welte2e4e6a12006-01-12 13:30:04 -080095 return (user / XT_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Harald Welte2e4e6a12006-01-12 13:30:04 -080097 return (user * HZ * CREDITS_PER_JIFFY) / XT_LIMIT_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200100static bool limit_mt_check(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200102 struct xt_rateinfo *r = par->matchinfo;
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100103 struct xt_limit_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* Check for overflow. */
106 if (r->burst == 0
107 || user2credits(r->avg * r->burst) < user2credits(r->avg)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800108 printk("Overflow in xt_limit, try lower: %u/%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 r->avg, r->burst);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700110 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100113 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
114 if (priv == NULL)
Patrick McHardy8fa539b2009-11-23 13:37:23 +0100115 return false;
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100116
117 /* For SMP, we only want to use one set of state. */
118 r->master = priv;
Patrick McHardy57dab5d2006-09-20 11:59:25 -0700119 if (r->cost == 0) {
120 /* User avg in seconds * XT_LIMIT_SCALE: convert to jiffies *
121 128. */
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100122 priv->prev = jiffies;
123 priv->credit = user2credits(r->avg * r->burst); /* Credits full. */
Patrick McHardy57dab5d2006-09-20 11:59:25 -0700124 r->credit_cap = user2credits(r->avg * r->burst); /* Credits full. */
125 r->cost = user2credits(r->avg);
126 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700127 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100130static void limit_mt_destroy(const struct xt_mtdtor_param *par)
131{
132 const struct xt_rateinfo *info = par->matchinfo;
133
134 kfree(info->master);
135}
136
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700137#ifdef CONFIG_COMPAT
138struct compat_xt_rateinfo {
139 u_int32_t avg;
140 u_int32_t burst;
141
142 compat_ulong_t prev;
143 u_int32_t credit;
144 u_int32_t credit_cap, cost;
145
146 u_int32_t master;
147};
148
149/* To keep the full "prev" timestamp, the upper 32 bits are stored in the
150 * master pointer, which does not need to be preserved. */
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800151static void limit_mt_compat_from_user(void *dst, void *src)
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700152{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700153 const struct compat_xt_rateinfo *cm = src;
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700154 struct xt_rateinfo m = {
155 .avg = cm->avg,
156 .burst = cm->burst,
157 .prev = cm->prev | (unsigned long)cm->master << 32,
158 .credit = cm->credit,
159 .credit_cap = cm->credit_cap,
160 .cost = cm->cost,
161 };
162 memcpy(dst, &m, sizeof(m));
163}
164
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800165static int limit_mt_compat_to_user(void __user *dst, void *src)
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700166{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700167 const struct xt_rateinfo *m = src;
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700168 struct compat_xt_rateinfo cm = {
169 .avg = m->avg,
170 .burst = m->burst,
171 .prev = m->prev,
172 .credit = m->credit,
173 .credit_cap = m->credit_cap,
174 .cost = m->cost,
175 .master = m->prev >> 32,
176 };
177 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
178}
179#endif /* CONFIG_COMPAT */
180
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200181static struct xt_match limit_mt_reg __read_mostly = {
182 .name = "limit",
183 .revision = 0,
184 .family = NFPROTO_UNSPEC,
185 .match = limit_mt,
186 .checkentry = limit_mt_check,
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100187 .destroy = limit_mt_destroy,
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200188 .matchsize = sizeof(struct xt_rateinfo),
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700189#ifdef CONFIG_COMPAT
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200190 .compatsize = sizeof(struct compat_xt_rateinfo),
191 .compat_from_user = limit_mt_compat_from_user,
192 .compat_to_user = limit_mt_compat_to_user,
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700193#endif
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200194 .me = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800197static int __init limit_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200199 return xt_register_match(&limit_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800202static void __exit limit_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200204 xt_unregister_match(&limit_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800207module_init(limit_mt_init);
208module_exit(limit_mt_exit);