blob: 0d9d18ea2b09d64e1c173636b1806869dccb3b7e [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
Jan Engelhardt294188a2010-01-04 16:28:38 +010043static u_int32_t connlimit_rnd __read_mostly;
44static bool connlimit_rnd_inited __read_mostly;
Jan Engelhardt370786f2007-07-14 20:47:26 -070045
Al Viroa34c4582007-07-26 17:33:19 +010046static inline unsigned int connlimit_iphash(__be32 addr)
Jan Engelhardt370786f2007-07-14 20:47:26 -070047{
Al Viroa34c4582007-07-26 17:33:19 +010048 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070049}
50
51static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080052connlimit_iphash6(const union nf_inet_addr *addr,
53 const union nf_inet_addr *mask)
Jan Engelhardt370786f2007-07-14 20:47:26 -070054{
Jan Engelhardt643a2c12007-12-17 22:43:50 -080055 union nf_inet_addr res;
Jan Engelhardt370786f2007-07-14 20:47:26 -070056 unsigned int i;
57
Jan Engelhardt370786f2007-07-14 20:47:26 -070058 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
59 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
60
Al Viroa34c4582007-07-26 17:33:19 +010061 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070062}
63
64static inline bool already_closed(const struct nf_conn *conn)
65{
Patrick McHardy5e8fbe22008-04-14 11:15:52 +020066 if (nf_ct_protonum(conn) == IPPROTO_TCP)
Dong Weid2ee3f22008-06-04 09:57:51 -070067 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
68 conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
Jan Engelhardt370786f2007-07-14 20:47:26 -070069 else
70 return 0;
71}
72
73static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080074same_source_net(const union nf_inet_addr *addr,
75 const union nf_inet_addr *mask,
Jan Engelhardt76108ce2008-10-08 11:35:00 +020076 const union nf_inet_addr *u3, u_int8_t family)
Jan Engelhardt370786f2007-07-14 20:47:26 -070077{
Jan Engelhardtee999d82008-10-08 11:35:01 +020078 if (family == NFPROTO_IPV4) {
Jan Engelhardt370786f2007-07-14 20:47:26 -070079 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
80 } else {
Jan Engelhardt643a2c12007-12-17 22:43:50 -080081 union nf_inet_addr lh, rh;
Jan Engelhardt370786f2007-07-14 20:47:26 -070082 unsigned int i;
83
84 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i) {
85 lh.ip6[i] = addr->ip6[i] & mask->ip6[i];
86 rh.ip6[i] = u3->ip6[i] & mask->ip6[i];
87 }
88
89 return memcmp(&lh.ip6, &rh.ip6, sizeof(lh.ip6)) == 0;
90 }
91}
92
Alexey Dobriyan83fc8102010-01-18 08:07:50 +010093static int count_them(struct net *net,
94 struct xt_connlimit_data *data,
Jan Engelhardt370786f2007-07-14 20:47:26 -070095 const struct nf_conntrack_tuple *tuple,
Jan Engelhardt643a2c12007-12-17 22:43:50 -080096 const union nf_inet_addr *addr,
97 const union nf_inet_addr *mask,
Jan Engelhardt539054a2009-11-06 18:08:32 -080098 u_int8_t family)
Jan Engelhardt370786f2007-07-14 20:47:26 -070099{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200100 const struct nf_conntrack_tuple_hash *found;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700101 struct xt_connlimit_conn *conn;
102 struct xt_connlimit_conn *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100103 struct nf_conn *found_ct;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700104 struct list_head *hash;
105 bool addit = true;
106 int matches = 0;
107
Jan Engelhardt539054a2009-11-06 18:08:32 -0800108 if (family == NFPROTO_IPV6)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700109 hash = &data->iphash[connlimit_iphash6(addr, mask)];
110 else
111 hash = &data->iphash[connlimit_iphash(addr->ip & mask->ip)];
112
Patrick McHardy76507f62008-01-31 04:38:38 -0800113 rcu_read_lock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700114
115 /* check the saved connections */
116 list_for_each_entry_safe(conn, tmp, hash, list) {
Alexey Dobriyan83fc8102010-01-18 08:07:50 +0100117 found = nf_conntrack_find_get(net, &conn->tuple);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700118 found_ct = NULL;
119
120 if (found != NULL)
121 found_ct = nf_ct_tuplehash_to_ctrack(found);
122
123 if (found_ct != NULL &&
124 nf_ct_tuple_equal(&conn->tuple, tuple) &&
125 !already_closed(found_ct))
126 /*
127 * Just to be sure we have it only once in the list.
128 * We should not see tuples twice unless someone hooks
129 * this into a table without "-p tcp --syn".
130 */
131 addit = false;
132
133 if (found == NULL) {
134 /* this one is gone */
135 list_del(&conn->list);
136 kfree(conn);
137 continue;
138 }
139
140 if (already_closed(found_ct)) {
141 /*
142 * we do not care about connections which are
143 * closed already -> ditch it
144 */
Eric Dumazetea781f12009-03-25 21:05:46 +0100145 nf_ct_put(found_ct);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700146 list_del(&conn->list);
147 kfree(conn);
148 continue;
149 }
150
Jan Engelhardt539054a2009-11-06 18:08:32 -0800151 if (same_source_net(addr, mask, &conn->tuple.src.u3, family))
Jan Engelhardt370786f2007-07-14 20:47:26 -0700152 /* same source network -> be counted! */
153 ++matches;
Eric Dumazetea781f12009-03-25 21:05:46 +0100154 nf_ct_put(found_ct);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700155 }
156
Patrick McHardy76507f62008-01-31 04:38:38 -0800157 rcu_read_unlock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700158
159 if (addit) {
160 /* save the new connection in our list */
161 conn = kzalloc(sizeof(*conn), GFP_ATOMIC);
162 if (conn == NULL)
163 return -ENOMEM;
164 conn->tuple = *tuple;
165 list_add(&conn->list, hash);
166 ++matches;
167 }
168
169 return matches;
170}
171
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800172static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200173connlimit_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700174{
Alexey Dobriyan83fc8102010-01-18 08:07:50 +0100175 struct net *net = dev_net(par->in ? par->in : par->out);
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200176 const struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt22c2d8b2007-12-17 22:44:47 -0800177 union nf_inet_addr addr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700178 struct nf_conntrack_tuple tuple;
179 const struct nf_conntrack_tuple *tuple_ptr = &tuple;
180 enum ip_conntrack_info ctinfo;
181 const struct nf_conn *ct;
182 int connections;
183
184 ct = nf_ct_get(skb, &ctinfo);
185 if (ct != NULL)
186 tuple_ptr = &ct->tuplehash[0].tuple;
187 else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200188 par->family, &tuple))
Jan Engelhardt370786f2007-07-14 20:47:26 -0700189 goto hotdrop;
190
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200191 if (par->family == NFPROTO_IPV6) {
Jan Engelhardt370786f2007-07-14 20:47:26 -0700192 const struct ipv6hdr *iph = ipv6_hdr(skb);
193 memcpy(&addr.ip6, &iph->saddr, sizeof(iph->saddr));
Jan Engelhardt370786f2007-07-14 20:47:26 -0700194 } else {
195 const struct iphdr *iph = ip_hdr(skb);
196 addr.ip = iph->saddr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700197 }
198
199 spin_lock_bh(&info->data->lock);
Alexey Dobriyan83fc8102010-01-18 08:07:50 +0100200 connections = count_them(net, info->data, tuple_ptr, &addr,
Jan Engelhardt539054a2009-11-06 18:08:32 -0800201 &info->mask, par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700202 spin_unlock_bh(&info->data->lock);
203
204 if (connections < 0) {
205 /* kmalloc failed, drop it entirely */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200206 *par->hotdrop = true;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700207 return false;
208 }
209
210 return (connections > info->limit) ^ info->inverse;
211
212 hotdrop:
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200213 *par->hotdrop = true;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700214 return false;
215}
216
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200217static bool connlimit_mt_check(const struct xt_mtchk_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700218{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200219 struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700220 unsigned int i;
221
Jan Engelhardt294188a2010-01-04 16:28:38 +0100222 if (unlikely(!connlimit_rnd_inited)) {
223 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
224 connlimit_rnd_inited = true;
225 }
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200226 if (nf_ct_l3proto_try_module_get(par->family) < 0) {
Jan Engelhardt370786f2007-07-14 20:47:26 -0700227 printk(KERN_WARNING "cannot load conntrack support for "
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200228 "address family %u\n", par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700229 return false;
230 }
231
232 /* init private data */
233 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
234 if (info->data == NULL) {
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200235 nf_ct_l3proto_module_put(par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700236 return false;
237 }
238
239 spin_lock_init(&info->data->lock);
240 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
241 INIT_LIST_HEAD(&info->data->iphash[i]);
242
243 return true;
244}
245
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200246static void connlimit_mt_destroy(const struct xt_mtdtor_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700247{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200248 const struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700249 struct xt_connlimit_conn *conn;
250 struct xt_connlimit_conn *tmp;
251 struct list_head *hash = info->data->iphash;
252 unsigned int i;
253
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200254 nf_ct_l3proto_module_put(par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700255
256 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
257 list_for_each_entry_safe(conn, tmp, &hash[i], list) {
258 list_del(&conn->list);
259 kfree(conn);
260 }
261 }
262
263 kfree(info->data);
264}
265
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200266static struct xt_match connlimit_mt_reg __read_mostly = {
267 .name = "connlimit",
268 .revision = 0,
269 .family = NFPROTO_UNSPEC,
270 .checkentry = connlimit_mt_check,
271 .match = connlimit_mt,
272 .matchsize = sizeof(struct xt_connlimit_info),
273 .destroy = connlimit_mt_destroy,
274 .me = THIS_MODULE,
Jan Engelhardt370786f2007-07-14 20:47:26 -0700275};
276
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800277static int __init connlimit_mt_init(void)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700278{
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200279 return xt_register_match(&connlimit_mt_reg);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700280}
281
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800282static void __exit connlimit_mt_exit(void)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700283{
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200284 xt_unregister_match(&connlimit_mt_reg);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700285}
286
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800287module_init(connlimit_mt_init);
288module_exit(connlimit_mt_exit);
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200289MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -0800290MODULE_DESCRIPTION("Xtables: Number of connections matching");
Jan Engelhardt370786f2007-07-14 20:47:26 -0700291MODULE_LICENSE("GPL");
292MODULE_ALIAS("ipt_connlimit");
293MODULE_ALIAS("ip6t_connlimit");