]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/netfilter/xt_limit.c
x86/msr-index: Cleanup bit defines
[mirror_ubuntu-bionic-kernel.git] / net / netfilter / xt_limit.c
CommitLineData
db955170
MG
1/* (C) 1999 Jérôme de Vivie <devivie@info.enserb.u-bordeaux.fr>
2 * (C) 1999 Hervé Eychenne <eychenne@info.enserb.u-bordeaux.fr>
f229f6ce 3 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
1da177e4
LT
4 *
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 */
8bee4bad 9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4 10
5a0e3ad6 11#include <linux/slab.h>
1da177e4
LT
12#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <linux/spinlock.h>
15#include <linux/interrupt.h>
16
2e4e6a17
HW
17#include <linux/netfilter/x_tables.h>
18#include <linux/netfilter/xt_limit.h>
1da177e4 19
acc738fe 20struct xt_limit_priv {
2cb4bbd7 21 spinlock_t lock;
acc738fe
JE
22 unsigned long prev;
23 uint32_t credit;
24};
25
1da177e4
LT
26MODULE_LICENSE("GPL");
27MODULE_AUTHOR("Herve Eychenne <rv@wallfire.org>");
2ae15b64 28MODULE_DESCRIPTION("Xtables: rate-limit match");
2e4e6a17
HW
29MODULE_ALIAS("ipt_limit");
30MODULE_ALIAS("ip6t_limit");
1da177e4
LT
31
32/* The algorithm used is the Simple Token Bucket Filter (TBF)
33 * see net/sched/sch_tbf.c in the linux source tree
34 */
35
1da177e4
LT
36/* Rusty: This is my (non-mathematically-inclined) understanding of
37 this algorithm. The `average rate' in jiffies becomes your initial
38 amount of credit `credit' and the most credit you can ever have
39 `credit_cap'. The `peak rate' becomes the cost of passing the
40 test, `cost'.
41
42 `prev' tracks the last packet hit: you gain one credit per jiffy.
43 If you get credit balance more than this, the extra credit is
44 discarded. Every time the match passes, you lose `cost' credits;
45 if you don't have that many, the test fails.
46
47 See Alexey's formal explanation in net/sched/sch_tbf.c.
48
49 To get the maxmum range, we multiply by this factor (ie. you get N
50 credits per jiffy). We want to allow a rate as low as 1 per day
51 (slowest userspace tool allows), which means
52 CREDITS_PER_JIFFY*HZ*60*60*24 < 2^32. ie. */
53#define MAX_CPJ (0xFFFFFFFF / (HZ*60*60*24))
54
55/* Repeated shift and or gives us all 1s, final shift and add 1 gives
56 * us the power of 2 below the theoretical max, so GCC simply does a
57 * shift. */
58#define _POW2_BELOW2(x) ((x)|((x)>>1))
59#define _POW2_BELOW4(x) (_POW2_BELOW2(x)|_POW2_BELOW2((x)>>2))
60#define _POW2_BELOW8(x) (_POW2_BELOW4(x)|_POW2_BELOW4((x)>>4))
61#define _POW2_BELOW16(x) (_POW2_BELOW8(x)|_POW2_BELOW8((x)>>8))
62#define _POW2_BELOW32(x) (_POW2_BELOW16(x)|_POW2_BELOW16((x)>>16))
63#define POW2_BELOW32(x) ((_POW2_BELOW32(x)>>1) + 1)
64
65#define CREDITS_PER_JIFFY POW2_BELOW32(MAX_CPJ)
66
1d93a9cb 67static bool
62fc8051 68limit_mt(const struct sk_buff *skb, struct xt_action_param *par)
1da177e4 69{
acc738fe
JE
70 const struct xt_rateinfo *r = par->matchinfo;
71 struct xt_limit_priv *priv = r->master;
1da177e4
LT
72 unsigned long now = jiffies;
73
2cb4bbd7 74 spin_lock_bh(&priv->lock);
acc738fe
JE
75 priv->credit += (now - xchg(&priv->prev, now)) * CREDITS_PER_JIFFY;
76 if (priv->credit > r->credit_cap)
77 priv->credit = r->credit_cap;
1da177e4 78
acc738fe 79 if (priv->credit >= r->cost) {
1da177e4 80 /* We're not limited. */
acc738fe 81 priv->credit -= r->cost;
2cb4bbd7 82 spin_unlock_bh(&priv->lock);
1d93a9cb 83 return true;
1da177e4
LT
84 }
85
2cb4bbd7 86 spin_unlock_bh(&priv->lock);
1d93a9cb 87 return false;
1da177e4
LT
88}
89
90/* Precision saver. */
7a909ac7 91static u32 user2credits(u32 user)
1da177e4
LT
92{
93 /* If multiplying would overflow... */
94 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY))
95 /* Divide first. */
2e4e6a17 96 return (user / XT_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY;
1da177e4 97
2e4e6a17 98 return (user * HZ * CREDITS_PER_JIFFY) / XT_LIMIT_SCALE;
1da177e4
LT
99}
100
b0f38452 101static int limit_mt_check(const struct xt_mtchk_param *par)
1da177e4 102{
9b4fce7a 103 struct xt_rateinfo *r = par->matchinfo;
acc738fe 104 struct xt_limit_priv *priv;
1da177e4 105
1da177e4
LT
106 /* Check for overflow. */
107 if (r->burst == 0
108 || user2credits(r->avg * r->burst) < user2credits(r->avg)) {
8bee4bad
JE
109 pr_info("Overflow, try lower: %u/%u\n",
110 r->avg, r->burst);
4a5a5c73 111 return -ERANGE;
1da177e4
LT
112 }
113
acc738fe
JE
114 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
115 if (priv == NULL)
4a5a5c73 116 return -ENOMEM;
acc738fe
JE
117
118 /* For SMP, we only want to use one set of state. */
119 r->master = priv;
82e6bfe2
JE
120 /* User avg in seconds * XT_LIMIT_SCALE: convert to jiffies *
121 128. */
122 priv->prev = jiffies;
123 priv->credit = user2credits(r->avg * r->burst); /* Credits full. */
57dab5d0 124 if (r->cost == 0) {
7a909ac7 125 r->credit_cap = priv->credit; /* Credits full. */
57dab5d0
PM
126 r->cost = user2credits(r->avg);
127 }
2cb4bbd7
LZ
128 spin_lock_init(&priv->lock);
129
bd414ee6 130 return 0;
1da177e4
LT
131}
132
acc738fe
JE
133static void limit_mt_destroy(const struct xt_mtdtor_param *par)
134{
135 const struct xt_rateinfo *info = par->matchinfo;
136
137 kfree(info->master);
138}
139
02c63cf7
PM
140#ifdef CONFIG_COMPAT
141struct compat_xt_rateinfo {
142 u_int32_t avg;
143 u_int32_t burst;
144
145 compat_ulong_t prev;
146 u_int32_t credit;
147 u_int32_t credit_cap, cost;
148
149 u_int32_t master;
150};
151
152/* To keep the full "prev" timestamp, the upper 32 bits are stored in the
153 * master pointer, which does not need to be preserved. */
739674fb 154static void limit_mt_compat_from_user(void *dst, const void *src)
02c63cf7 155{
a47362a2 156 const struct compat_xt_rateinfo *cm = src;
02c63cf7
PM
157 struct xt_rateinfo m = {
158 .avg = cm->avg,
159 .burst = cm->burst,
160 .prev = cm->prev | (unsigned long)cm->master << 32,
161 .credit = cm->credit,
162 .credit_cap = cm->credit_cap,
163 .cost = cm->cost,
164 };
165 memcpy(dst, &m, sizeof(m));
166}
167
739674fb 168static int limit_mt_compat_to_user(void __user *dst, const void *src)
02c63cf7 169{
a47362a2 170 const struct xt_rateinfo *m = src;
02c63cf7
PM
171 struct compat_xt_rateinfo cm = {
172 .avg = m->avg,
173 .burst = m->burst,
174 .prev = m->prev,
175 .credit = m->credit,
176 .credit_cap = m->credit_cap,
177 .cost = m->cost,
178 .master = m->prev >> 32,
179 };
180 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
181}
182#endif /* CONFIG_COMPAT */
183
55b69e91
JE
184static struct xt_match limit_mt_reg __read_mostly = {
185 .name = "limit",
186 .revision = 0,
187 .family = NFPROTO_UNSPEC,
188 .match = limit_mt,
189 .checkentry = limit_mt_check,
acc738fe 190 .destroy = limit_mt_destroy,
55b69e91 191 .matchsize = sizeof(struct xt_rateinfo),
02c63cf7 192#ifdef CONFIG_COMPAT
55b69e91
JE
193 .compatsize = sizeof(struct compat_xt_rateinfo),
194 .compat_from_user = limit_mt_compat_from_user,
195 .compat_to_user = limit_mt_compat_to_user,
02c63cf7 196#endif
9a0e1295 197 .usersize = offsetof(struct xt_rateinfo, prev),
55b69e91 198 .me = THIS_MODULE,
1da177e4
LT
199};
200
d3c5ee6d 201static int __init limit_mt_init(void)
1da177e4 202{
55b69e91 203 return xt_register_match(&limit_mt_reg);
1da177e4
LT
204}
205
d3c5ee6d 206static void __exit limit_mt_exit(void)
1da177e4 207{
55b69e91 208 xt_unregister_match(&limit_mt_reg);
1da177e4
LT
209}
210
d3c5ee6d
JE
211module_init(limit_mt_init);
212module_exit(limit_mt_exit);