blob: 1655e2cf25c455860f2509b8ecf782a549a5451e [file] [log] [blame]
Jan Engelhardt370786f2007-07-14 20:47:26 -07001/*
2 * netfilter module to limit the number of parallel tcp
3 * connections per IP address.
4 * (c) 2000 Gerd Knorr <kraxel@bytesex.org>
5 * Nov 2002: Martin Bene <martin.bene@icomedias.com>:
6 * only ignore TIME_WAIT or gone connections
Jan Engelhardtba5dc272007-11-05 20:35:56 -08007 * (C) CC Computer Consultants GmbH, 2007
8 * Contact: <jengelh@computergmbh.de>
Jan Engelhardt370786f2007-07-14 20:47:26 -07009 *
10 * based on ...
11 *
12 * Kernel module to match connection tracking information.
13 * GPL (C) 1999 Rusty Russell (rusty@rustcorp.com.au).
14 */
15#include <linux/in.h>
16#include <linux/in6.h>
17#include <linux/ip.h>
18#include <linux/ipv6.h>
19#include <linux/jhash.h>
20#include <linux/list.h>
21#include <linux/module.h>
22#include <linux/random.h>
23#include <linux/skbuff.h>
24#include <linux/spinlock.h>
25#include <linux/netfilter/nf_conntrack_tcp.h>
26#include <linux/netfilter/x_tables.h>
27#include <linux/netfilter/xt_connlimit.h>
28#include <net/netfilter/nf_conntrack.h>
29#include <net/netfilter/nf_conntrack_core.h>
30#include <net/netfilter/nf_conntrack_tuple.h>
31
32/* we will save the tuples of all connections we care about */
33struct xt_connlimit_conn {
34 struct list_head list;
35 struct nf_conntrack_tuple tuple;
36};
37
38struct xt_connlimit_data {
39 struct list_head iphash[256];
40 spinlock_t lock;
41};
42
43static u_int32_t connlimit_rnd;
44static bool connlimit_rnd_inited;
45
Al Viroa34c4582007-07-26 17:33:19 +010046static inline unsigned int connlimit_iphash(__be32 addr)
Jan Engelhardt370786f2007-07-14 20:47:26 -070047{
48 if (unlikely(!connlimit_rnd_inited)) {
49 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
50 connlimit_rnd_inited = true;
51 }
Al Viroa34c4582007-07-26 17:33:19 +010052 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070053}
54
55static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080056connlimit_iphash6(const union nf_inet_addr *addr,
57 const union nf_inet_addr *mask)
Jan Engelhardt370786f2007-07-14 20:47:26 -070058{
Jan Engelhardt643a2c12007-12-17 22:43:50 -080059 union nf_inet_addr res;
Jan Engelhardt370786f2007-07-14 20:47:26 -070060 unsigned int i;
61
62 if (unlikely(!connlimit_rnd_inited)) {
63 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
64 connlimit_rnd_inited = true;
65 }
66
67 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
68 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
69
Al Viroa34c4582007-07-26 17:33:19 +010070 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070071}
72
73static inline bool already_closed(const struct nf_conn *conn)
74{
Patrick McHardy5e8fbe22008-04-14 11:15:52 +020075 if (nf_ct_protonum(conn) == IPPROTO_TCP)
Dong Weid2ee3f22008-06-04 09:57:51 -070076 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
77 conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
Jan Engelhardt370786f2007-07-14 20:47:26 -070078 else
79 return 0;
80}
81
82static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080083same_source_net(const union nf_inet_addr *addr,
84 const union nf_inet_addr *mask,
Jan Engelhardt76108ce2008-10-08 11:35:00 +020085 const union nf_inet_addr *u3, u_int8_t family)
Jan Engelhardt370786f2007-07-14 20:47:26 -070086{
87 if (family == AF_INET) {
88 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
89 } else {
Jan Engelhardt643a2c12007-12-17 22:43:50 -080090 union nf_inet_addr lh, rh;
Jan Engelhardt370786f2007-07-14 20:47:26 -070091 unsigned int i;
92
93 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i) {
94 lh.ip6[i] = addr->ip6[i] & mask->ip6[i];
95 rh.ip6[i] = u3->ip6[i] & mask->ip6[i];
96 }
97
98 return memcmp(&lh.ip6, &rh.ip6, sizeof(lh.ip6)) == 0;
99 }
100}
101
102static int count_them(struct xt_connlimit_data *data,
103 const struct nf_conntrack_tuple *tuple,
Jan Engelhardt643a2c12007-12-17 22:43:50 -0800104 const union nf_inet_addr *addr,
105 const union nf_inet_addr *mask,
Jan Engelhardt370786f2007-07-14 20:47:26 -0700106 const struct xt_match *match)
107{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200108 const struct nf_conntrack_tuple_hash *found;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700109 struct xt_connlimit_conn *conn;
110 struct xt_connlimit_conn *tmp;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200111 const struct nf_conn *found_ct;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700112 struct list_head *hash;
113 bool addit = true;
114 int matches = 0;
115
116
117 if (match->family == AF_INET6)
118 hash = &data->iphash[connlimit_iphash6(addr, mask)];
119 else
120 hash = &data->iphash[connlimit_iphash(addr->ip & mask->ip)];
121
Patrick McHardy76507f62008-01-31 04:38:38 -0800122 rcu_read_lock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700123
124 /* check the saved connections */
125 list_for_each_entry_safe(conn, tmp, hash, list) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800126 found = __nf_conntrack_find(&conn->tuple);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700127 found_ct = NULL;
128
129 if (found != NULL)
130 found_ct = nf_ct_tuplehash_to_ctrack(found);
131
132 if (found_ct != NULL &&
133 nf_ct_tuple_equal(&conn->tuple, tuple) &&
134 !already_closed(found_ct))
135 /*
136 * Just to be sure we have it only once in the list.
137 * We should not see tuples twice unless someone hooks
138 * this into a table without "-p tcp --syn".
139 */
140 addit = false;
141
142 if (found == NULL) {
143 /* this one is gone */
144 list_del(&conn->list);
145 kfree(conn);
146 continue;
147 }
148
149 if (already_closed(found_ct)) {
150 /*
151 * we do not care about connections which are
152 * closed already -> ditch it
153 */
154 list_del(&conn->list);
155 kfree(conn);
156 continue;
157 }
158
159 if (same_source_net(addr, mask, &conn->tuple.src.u3,
160 match->family))
161 /* same source network -> be counted! */
162 ++matches;
163 }
164
Patrick McHardy76507f62008-01-31 04:38:38 -0800165 rcu_read_unlock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700166
167 if (addit) {
168 /* save the new connection in our list */
169 conn = kzalloc(sizeof(*conn), GFP_ATOMIC);
170 if (conn == NULL)
171 return -ENOMEM;
172 conn->tuple = *tuple;
173 list_add(&conn->list, hash);
174 ++matches;
175 }
176
177 return matches;
178}
179
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800180static bool
181connlimit_mt(const struct sk_buff *skb, const struct net_device *in,
182 const struct net_device *out, const struct xt_match *match,
183 const void *matchinfo, int offset, unsigned int protoff,
184 bool *hotdrop)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700185{
186 const struct xt_connlimit_info *info = matchinfo;
Jan Engelhardt22c2d8b2007-12-17 22:44:47 -0800187 union nf_inet_addr addr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700188 struct nf_conntrack_tuple tuple;
189 const struct nf_conntrack_tuple *tuple_ptr = &tuple;
190 enum ip_conntrack_info ctinfo;
191 const struct nf_conn *ct;
192 int connections;
193
194 ct = nf_ct_get(skb, &ctinfo);
195 if (ct != NULL)
196 tuple_ptr = &ct->tuplehash[0].tuple;
197 else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
198 match->family, &tuple))
199 goto hotdrop;
200
201 if (match->family == AF_INET6) {
202 const struct ipv6hdr *iph = ipv6_hdr(skb);
203 memcpy(&addr.ip6, &iph->saddr, sizeof(iph->saddr));
Jan Engelhardt370786f2007-07-14 20:47:26 -0700204 } else {
205 const struct iphdr *iph = ip_hdr(skb);
206 addr.ip = iph->saddr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700207 }
208
209 spin_lock_bh(&info->data->lock);
Jan Engelhardt22c2d8b2007-12-17 22:44:47 -0800210 connections = count_them(info->data, tuple_ptr, &addr,
211 &info->mask, match);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700212 spin_unlock_bh(&info->data->lock);
213
214 if (connections < 0) {
215 /* kmalloc failed, drop it entirely */
216 *hotdrop = true;
217 return false;
218 }
219
220 return (connections > info->limit) ^ info->inverse;
221
222 hotdrop:
223 *hotdrop = true;
224 return false;
225}
226
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800227static bool
228connlimit_mt_check(const char *tablename, const void *ip,
229 const struct xt_match *match, void *matchinfo,
230 unsigned int hook_mask)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700231{
232 struct xt_connlimit_info *info = matchinfo;
233 unsigned int i;
234
235 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
236 printk(KERN_WARNING "cannot load conntrack support for "
237 "address family %u\n", match->family);
238 return false;
239 }
240
241 /* init private data */
242 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
243 if (info->data == NULL) {
244 nf_ct_l3proto_module_put(match->family);
245 return false;
246 }
247
248 spin_lock_init(&info->data->lock);
249 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
250 INIT_LIST_HEAD(&info->data->iphash[i]);
251
252 return true;
253}
254
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800255static void
256connlimit_mt_destroy(const struct xt_match *match, void *matchinfo)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700257{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200258 const struct xt_connlimit_info *info = matchinfo;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700259 struct xt_connlimit_conn *conn;
260 struct xt_connlimit_conn *tmp;
261 struct list_head *hash = info->data->iphash;
262 unsigned int i;
263
264 nf_ct_l3proto_module_put(match->family);
265
266 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
267 list_for_each_entry_safe(conn, tmp, &hash[i], list) {
268 list_del(&conn->list);
269 kfree(conn);
270 }
271 }
272
273 kfree(info->data);
274}
275
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800276static struct xt_match connlimit_mt_reg[] __read_mostly = {
Jan Engelhardt370786f2007-07-14 20:47:26 -0700277 {
278 .name = "connlimit",
279 .family = AF_INET,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800280 .checkentry = connlimit_mt_check,
281 .match = connlimit_mt,
Jan Engelhardt370786f2007-07-14 20:47:26 -0700282 .matchsize = sizeof(struct xt_connlimit_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800283 .destroy = connlimit_mt_destroy,
Jan Engelhardt370786f2007-07-14 20:47:26 -0700284 .me = THIS_MODULE,
285 },
286 {
287 .name = "connlimit",
288 .family = AF_INET6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800289 .checkentry = connlimit_mt_check,
290 .match = connlimit_mt,
Jan Engelhardt370786f2007-07-14 20:47:26 -0700291 .matchsize = sizeof(struct xt_connlimit_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800292 .destroy = connlimit_mt_destroy,
Jan Engelhardt370786f2007-07-14 20:47:26 -0700293 .me = THIS_MODULE,
294 },
295};
296
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800297static int __init connlimit_mt_init(void)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700298{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800299 return xt_register_matches(connlimit_mt_reg,
300 ARRAY_SIZE(connlimit_mt_reg));
Jan Engelhardt370786f2007-07-14 20:47:26 -0700301}
302
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800303static void __exit connlimit_mt_exit(void)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700304{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800305 xt_unregister_matches(connlimit_mt_reg, ARRAY_SIZE(connlimit_mt_reg));
Jan Engelhardt370786f2007-07-14 20:47:26 -0700306}
307
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800308module_init(connlimit_mt_init);
309module_exit(connlimit_mt_exit);
Jan Engelhardtba5dc272007-11-05 20:35:56 -0800310MODULE_AUTHOR("Jan Engelhardt <jengelh@computergmbh.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -0800311MODULE_DESCRIPTION("Xtables: Number of connections matching");
Jan Engelhardt370786f2007-07-14 20:47:26 -0700312MODULE_LICENSE("GPL");
313MODULE_ALIAS("ipt_connlimit");
314MODULE_ALIAS("ip6t_connlimit");