blob: bef85059655892982da73cc694183afc7399782c [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>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02003 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +01009#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <linux/spinlock.h>
15#include <linux/interrupt.h>
16
Harald Welte2e4e6a12006-01-12 13:30:04 -080017#include <linux/netfilter/x_tables.h>
18#include <linux/netfilter/xt_limit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Jan Engelhardtacc738f2009-03-16 15:35:29 +010020struct xt_limit_priv {
21 unsigned long prev;
22 uint32_t credit;
23};
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025MODULE_LICENSE("GPL");
26MODULE_AUTHOR("Herve Eychenne <rv@wallfire.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080027MODULE_DESCRIPTION("Xtables: rate-limit match");
Harald Welte2e4e6a12006-01-12 13:30:04 -080028MODULE_ALIAS("ipt_limit");
29MODULE_ALIAS("ip6t_limit");
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/* The algorithm used is the Simple Token Bucket Filter (TBF)
32 * see net/sched/sch_tbf.c in the linux source tree
33 */
34
35static DEFINE_SPINLOCK(limit_lock);
36
37/* Rusty: This is my (non-mathematically-inclined) understanding of
38 this algorithm. The `average rate' in jiffies becomes your initial
39 amount of credit `credit' and the most credit you can ever have
40 `credit_cap'. The `peak rate' becomes the cost of passing the
41 test, `cost'.
42
43 `prev' tracks the last packet hit: you gain one credit per jiffy.
44 If you get credit balance more than this, the extra credit is
45 discarded. Every time the match passes, you lose `cost' credits;
46 if you don't have that many, the test fails.
47
48 See Alexey's formal explanation in net/sched/sch_tbf.c.
49
50 To get the maxmum range, we multiply by this factor (ie. you get N
51 credits per jiffy). We want to allow a rate as low as 1 per day
52 (slowest userspace tool allows), which means
53 CREDITS_PER_JIFFY*HZ*60*60*24 < 2^32. ie. */
54#define MAX_CPJ (0xFFFFFFFF / (HZ*60*60*24))
55
56/* Repeated shift and or gives us all 1s, final shift and add 1 gives
57 * us the power of 2 below the theoretical max, so GCC simply does a
58 * shift. */
59#define _POW2_BELOW2(x) ((x)|((x)>>1))
60#define _POW2_BELOW4(x) (_POW2_BELOW2(x)|_POW2_BELOW2((x)>>2))
61#define _POW2_BELOW8(x) (_POW2_BELOW4(x)|_POW2_BELOW4((x)>>4))
62#define _POW2_BELOW16(x) (_POW2_BELOW8(x)|_POW2_BELOW8((x)>>8))
63#define _POW2_BELOW32(x) (_POW2_BELOW16(x)|_POW2_BELOW16((x)>>16))
64#define POW2_BELOW32(x) ((_POW2_BELOW32(x)>>1) + 1)
65
66#define CREDITS_PER_JIFFY POW2_BELOW32(MAX_CPJ)
67
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070068static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +020069limit_mt(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Jan Engelhardtacc738f2009-03-16 15:35:29 +010071 const struct xt_rateinfo *r = par->matchinfo;
72 struct xt_limit_priv *priv = r->master;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned long now = jiffies;
74
75 spin_lock_bh(&limit_lock);
Jan Engelhardtacc738f2009-03-16 15:35:29 +010076 priv->credit += (now - xchg(&priv->prev, now)) * CREDITS_PER_JIFFY;
77 if (priv->credit > r->credit_cap)
78 priv->credit = r->credit_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Jan Engelhardtacc738f2009-03-16 15:35:29 +010080 if (priv->credit >= r->cost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* We're not limited. */
Jan Engelhardtacc738f2009-03-16 15:35:29 +010082 priv->credit -= r->cost;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 spin_unlock_bh(&limit_lock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070084 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080087 spin_unlock_bh(&limit_lock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070088 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91/* Precision saver. */
Florian Westphal7a909ac2012-05-07 10:51:43 +000092static u32 user2credits(u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 /* If multiplying would overflow... */
95 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY))
96 /* Divide first. */
Harald Welte2e4e6a12006-01-12 13:30:04 -080097 return (user / XT_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Harald Welte2e4e6a12006-01-12 13:30:04 -080099 return (user * HZ * CREDITS_PER_JIFFY) / XT_LIMIT_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Jan Engelhardtb0f38452010-03-19 17:16:42 +0100102static int limit_mt_check(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200104 struct xt_rateinfo *r = par->matchinfo;
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100105 struct xt_limit_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /* Check for overflow. */
108 if (r->burst == 0
109 || user2credits(r->avg * r->burst) < user2credits(r->avg)) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100110 pr_info("Overflow, try lower: %u/%u\n",
111 r->avg, r->burst);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100112 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100115 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
116 if (priv == NULL)
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100117 return -ENOMEM;
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100118
119 /* For SMP, we only want to use one set of state. */
120 r->master = priv;
Jan Engelhardt82e6bfe2012-09-21 22:26:52 +0000121 /* User avg in seconds * XT_LIMIT_SCALE: convert to jiffies *
122 128. */
123 priv->prev = jiffies;
124 priv->credit = user2credits(r->avg * r->burst); /* Credits full. */
Patrick McHardy57dab5d2006-09-20 11:59:25 -0700125 if (r->cost == 0) {
Florian Westphal7a909ac2012-05-07 10:51:43 +0000126 r->credit_cap = priv->credit; /* Credits full. */
Patrick McHardy57dab5d2006-09-20 11:59:25 -0700127 r->cost = user2credits(r->avg);
128 }
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100132static void limit_mt_destroy(const struct xt_mtdtor_param *par)
133{
134 const struct xt_rateinfo *info = par->matchinfo;
135
136 kfree(info->master);
137}
138
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700139#ifdef CONFIG_COMPAT
140struct compat_xt_rateinfo {
141 u_int32_t avg;
142 u_int32_t burst;
143
144 compat_ulong_t prev;
145 u_int32_t credit;
146 u_int32_t credit_cap, cost;
147
148 u_int32_t master;
149};
150
151/* To keep the full "prev" timestamp, the upper 32 bits are stored in the
152 * master pointer, which does not need to be preserved. */
Jan Engelhardt739674f2009-06-26 08:23:19 +0200153static void limit_mt_compat_from_user(void *dst, const void *src)
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700154{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700155 const struct compat_xt_rateinfo *cm = src;
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700156 struct xt_rateinfo m = {
157 .avg = cm->avg,
158 .burst = cm->burst,
159 .prev = cm->prev | (unsigned long)cm->master << 32,
160 .credit = cm->credit,
161 .credit_cap = cm->credit_cap,
162 .cost = cm->cost,
163 };
164 memcpy(dst, &m, sizeof(m));
165}
166
Jan Engelhardt739674f2009-06-26 08:23:19 +0200167static int limit_mt_compat_to_user(void __user *dst, const void *src)
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700168{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700169 const struct xt_rateinfo *m = src;
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700170 struct compat_xt_rateinfo cm = {
171 .avg = m->avg,
172 .burst = m->burst,
173 .prev = m->prev,
174 .credit = m->credit,
175 .credit_cap = m->credit_cap,
176 .cost = m->cost,
177 .master = m->prev >> 32,
178 };
179 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
180}
181#endif /* CONFIG_COMPAT */
182
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200183static struct xt_match limit_mt_reg __read_mostly = {
184 .name = "limit",
185 .revision = 0,
186 .family = NFPROTO_UNSPEC,
187 .match = limit_mt,
188 .checkentry = limit_mt_check,
Jan Engelhardtacc738f2009-03-16 15:35:29 +0100189 .destroy = limit_mt_destroy,
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200190 .matchsize = sizeof(struct xt_rateinfo),
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700191#ifdef CONFIG_COMPAT
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200192 .compatsize = sizeof(struct compat_xt_rateinfo),
193 .compat_from_user = limit_mt_compat_from_user,
194 .compat_to_user = limit_mt_compat_to_user,
Patrick McHardy02c63cf2006-09-20 12:07:06 -0700195#endif
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200196 .me = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
198
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800199static int __init limit_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200201 return xt_register_match(&limit_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800204static void __exit limit_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200206 xt_unregister_match(&limit_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800209module_init(limit_mt_init);
210module_exit(limit_mt_exit);