blob: ade2a806a48ecf688254169f7fbd09def9948e99 [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
Jan Engelhardt370786f2007-07-14 20:47:26 -07008 *
9 * based on ...
10 *
11 * Kernel module to match connection tracking information.
12 * GPL (C) 1999 Rusty Russell (rusty@rustcorp.com.au).
13 */
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Jan Engelhardt370786f2007-07-14 20:47:26 -070015#include <linux/in.h>
16#include <linux/in6.h>
17#include <linux/ip.h>
18#include <linux/ipv6.h>
19#include <linux/jhash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Jan Engelhardt370786f2007-07-14 20:47:26 -070021#include <linux/list.h>
22#include <linux/module.h>
23#include <linux/random.h>
24#include <linux/skbuff.h>
25#include <linux/spinlock.h>
26#include <linux/netfilter/nf_conntrack_tcp.h>
27#include <linux/netfilter/x_tables.h>
28#include <linux/netfilter/xt_connlimit.h>
29#include <net/netfilter/nf_conntrack.h>
30#include <net/netfilter/nf_conntrack_core.h>
31#include <net/netfilter/nf_conntrack_tuple.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010032#include <net/netfilter/nf_conntrack_zones.h>
Jan Engelhardt370786f2007-07-14 20:47:26 -070033
34/* we will save the tuples of all connections we care about */
35struct xt_connlimit_conn {
Changli Gao8183e3a2011-03-15 13:23:28 +010036 struct list_head list;
37 struct nf_conntrack_tuple tuple;
38 union nf_inet_addr addr;
Jan Engelhardt370786f2007-07-14 20:47:26 -070039};
40
41struct xt_connlimit_data {
42 struct list_head iphash[256];
43 spinlock_t lock;
44};
45
Jan Engelhardt294188a2010-01-04 16:28:38 +010046static u_int32_t connlimit_rnd __read_mostly;
47static bool connlimit_rnd_inited __read_mostly;
Jan Engelhardt370786f2007-07-14 20:47:26 -070048
Al Viroa34c4582007-07-26 17:33:19 +010049static inline unsigned int connlimit_iphash(__be32 addr)
Jan Engelhardt370786f2007-07-14 20:47:26 -070050{
Al Viroa34c4582007-07-26 17:33:19 +010051 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070052}
53
54static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080055connlimit_iphash6(const union nf_inet_addr *addr,
56 const union nf_inet_addr *mask)
Jan Engelhardt370786f2007-07-14 20:47:26 -070057{
Jan Engelhardt643a2c12007-12-17 22:43:50 -080058 union nf_inet_addr res;
Jan Engelhardt370786f2007-07-14 20:47:26 -070059 unsigned int i;
60
Jan Engelhardt370786f2007-07-14 20:47:26 -070061 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
62 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
63
Al Viroa34c4582007-07-26 17:33:19 +010064 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070065}
66
67static inline bool already_closed(const struct nf_conn *conn)
68{
Patrick McHardy5e8fbe22008-04-14 11:15:52 +020069 if (nf_ct_protonum(conn) == IPPROTO_TCP)
Dong Weid2ee3f22008-06-04 09:57:51 -070070 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
71 conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
Jan Engelhardt370786f2007-07-14 20:47:26 -070072 else
73 return 0;
74}
75
76static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080077same_source_net(const union nf_inet_addr *addr,
78 const union nf_inet_addr *mask,
Jan Engelhardt76108ce2008-10-08 11:35:00 +020079 const union nf_inet_addr *u3, u_int8_t family)
Jan Engelhardt370786f2007-07-14 20:47:26 -070080{
Jan Engelhardtee999d82008-10-08 11:35:01 +020081 if (family == NFPROTO_IPV4) {
Jan Engelhardt370786f2007-07-14 20:47:26 -070082 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
83 } else {
Jan Engelhardt643a2c12007-12-17 22:43:50 -080084 union nf_inet_addr lh, rh;
Jan Engelhardt370786f2007-07-14 20:47:26 -070085 unsigned int i;
86
87 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i) {
88 lh.ip6[i] = addr->ip6[i] & mask->ip6[i];
89 rh.ip6[i] = u3->ip6[i] & mask->ip6[i];
90 }
91
92 return memcmp(&lh.ip6, &rh.ip6, sizeof(lh.ip6)) == 0;
93 }
94}
95
Alexey Dobriyan83fc8102010-01-18 08:07:50 +010096static int count_them(struct net *net,
97 struct xt_connlimit_data *data,
Jan Engelhardt370786f2007-07-14 20:47:26 -070098 const struct nf_conntrack_tuple *tuple,
Jan Engelhardt643a2c12007-12-17 22:43:50 -080099 const union nf_inet_addr *addr,
100 const union nf_inet_addr *mask,
Stefan Berger20b79752011-02-14 16:54:33 +0100101 u_int8_t family)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700102{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200103 const struct nf_conntrack_tuple_hash *found;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700104 struct xt_connlimit_conn *conn;
105 struct xt_connlimit_conn *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100106 struct nf_conn *found_ct;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700107 struct list_head *hash;
108 bool addit = true;
109 int matches = 0;
110
Jan Engelhardt539054a2009-11-06 18:08:32 -0800111 if (family == NFPROTO_IPV6)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700112 hash = &data->iphash[connlimit_iphash6(addr, mask)];
113 else
114 hash = &data->iphash[connlimit_iphash(addr->ip & mask->ip)];
115
Patrick McHardy76507f62008-01-31 04:38:38 -0800116 rcu_read_lock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700117
118 /* check the saved connections */
119 list_for_each_entry_safe(conn, tmp, hash, list) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100120 found = nf_conntrack_find_get(net, NF_CT_DEFAULT_ZONE,
121 &conn->tuple);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700122 found_ct = NULL;
123
124 if (found != NULL)
125 found_ct = nf_ct_tuplehash_to_ctrack(found);
126
127 if (found_ct != NULL &&
128 nf_ct_tuple_equal(&conn->tuple, tuple) &&
129 !already_closed(found_ct))
130 /*
131 * Just to be sure we have it only once in the list.
132 * We should not see tuples twice unless someone hooks
133 * this into a table without "-p tcp --syn".
134 */
135 addit = false;
136
137 if (found == NULL) {
138 /* this one is gone */
139 list_del(&conn->list);
140 kfree(conn);
141 continue;
142 }
143
144 if (already_closed(found_ct)) {
145 /*
146 * we do not care about connections which are
147 * closed already -> ditch it
148 */
Eric Dumazetea781f12009-03-25 21:05:46 +0100149 nf_ct_put(found_ct);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700150 list_del(&conn->list);
151 kfree(conn);
152 continue;
153 }
154
Changli Gao8183e3a2011-03-15 13:23:28 +0100155 if (same_source_net(addr, mask, &conn->addr, family))
Jan Engelhardt370786f2007-07-14 20:47:26 -0700156 /* same source network -> be counted! */
157 ++matches;
Eric Dumazetea781f12009-03-25 21:05:46 +0100158 nf_ct_put(found_ct);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700159 }
160
Patrick McHardy76507f62008-01-31 04:38:38 -0800161 rcu_read_unlock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700162
163 if (addit) {
164 /* save the new connection in our list */
Changli Gao0e23ca12011-03-15 13:24:56 +0100165 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700166 if (conn == NULL)
167 return -ENOMEM;
168 conn->tuple = *tuple;
Changli Gao8183e3a2011-03-15 13:23:28 +0100169 conn->addr = *addr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700170 list_add(&conn->list, hash);
171 ++matches;
172 }
173
174 return matches;
175}
176
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800177static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +0200178connlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700179{
Alexey Dobriyan83fc8102010-01-18 08:07:50 +0100180 struct net *net = dev_net(par->in ? par->in : par->out);
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200181 const struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt22c2d8b2007-12-17 22:44:47 -0800182 union nf_inet_addr addr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700183 struct nf_conntrack_tuple tuple;
184 const struct nf_conntrack_tuple *tuple_ptr = &tuple;
185 enum ip_conntrack_info ctinfo;
186 const struct nf_conn *ct;
187 int connections;
188
189 ct = nf_ct_get(skb, &ctinfo);
Changli Gao8183e3a2011-03-15 13:23:28 +0100190 if (ct != NULL)
191 tuple_ptr = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
192 else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
193 par->family, &tuple))
Jan Engelhardt370786f2007-07-14 20:47:26 -0700194 goto hotdrop;
195
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200196 if (par->family == NFPROTO_IPV6) {
Jan Engelhardt370786f2007-07-14 20:47:26 -0700197 const struct ipv6hdr *iph = ipv6_hdr(skb);
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100198 memcpy(&addr.ip6, (info->flags & XT_CONNLIMIT_DADDR) ?
199 &iph->daddr : &iph->saddr, sizeof(addr.ip6));
Jan Engelhardt370786f2007-07-14 20:47:26 -0700200 } else {
201 const struct iphdr *iph = ip_hdr(skb);
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100202 addr.ip = (info->flags & XT_CONNLIMIT_DADDR) ?
203 iph->daddr : iph->saddr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700204 }
205
206 spin_lock_bh(&info->data->lock);
Alexey Dobriyan83fc8102010-01-18 08:07:50 +0100207 connections = count_them(net, info->data, tuple_ptr, &addr,
Stefan Berger20b79752011-02-14 16:54:33 +0100208 &info->mask, par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700209 spin_unlock_bh(&info->data->lock);
210
Richard Weinberger1cc34c32011-01-18 01:36:57 +0100211 if (connections < 0)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700212 /* kmalloc failed, drop it entirely */
Richard Weinberger1cc34c32011-01-18 01:36:57 +0100213 goto hotdrop;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700214
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100215 return (connections > info->limit) ^
216 !!(info->flags & XT_CONNLIMIT_INVERT);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700217
218 hotdrop:
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200219 par->hotdrop = true;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700220 return false;
221}
222
Jan Engelhardtb0f38452010-03-19 17:16:42 +0100223static int connlimit_mt_check(const struct xt_mtchk_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700224{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200225 struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700226 unsigned int i;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100227 int ret;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700228
Jan Engelhardt294188a2010-01-04 16:28:38 +0100229 if (unlikely(!connlimit_rnd_inited)) {
230 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
231 connlimit_rnd_inited = true;
232 }
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100233 ret = nf_ct_l3proto_try_module_get(par->family);
234 if (ret < 0) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100235 pr_info("cannot load conntrack support for "
236 "address family %u\n", par->family);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100237 return ret;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700238 }
239
240 /* init private data */
241 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
242 if (info->data == NULL) {
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200243 nf_ct_l3proto_module_put(par->family);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100244 return -ENOMEM;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700245 }
246
247 spin_lock_init(&info->data->lock);
248 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
249 INIT_LIST_HEAD(&info->data->iphash[i]);
250
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100251 return 0;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700252}
253
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200254static void connlimit_mt_destroy(const struct xt_mtdtor_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700255{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200256 const struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700257 struct xt_connlimit_conn *conn;
258 struct xt_connlimit_conn *tmp;
259 struct list_head *hash = info->data->iphash;
260 unsigned int i;
261
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200262 nf_ct_l3proto_module_put(par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700263
264 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
265 list_for_each_entry_safe(conn, tmp, &hash[i], list) {
266 list_del(&conn->list);
267 kfree(conn);
268 }
269 }
270
271 kfree(info->data);
272}
273
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100274static struct xt_match connlimit_mt_reg[] __read_mostly = {
275 {
276 .name = "connlimit",
277 .revision = 0,
278 .family = NFPROTO_UNSPEC,
279 .checkentry = connlimit_mt_check,
280 .match = connlimit_mt,
281 .matchsize = sizeof(struct xt_connlimit_info),
282 .destroy = connlimit_mt_destroy,
283 .me = THIS_MODULE,
284 },
285 {
286 .name = "connlimit",
287 .revision = 1,
288 .family = NFPROTO_UNSPEC,
289 .checkentry = connlimit_mt_check,
290 .match = connlimit_mt,
291 .matchsize = sizeof(struct xt_connlimit_info),
292 .destroy = connlimit_mt_destroy,
293 .me = THIS_MODULE,
294 },
Jan Engelhardt370786f2007-07-14 20:47:26 -0700295};
296
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800297static int __init connlimit_mt_init(void)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700298{
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100299 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 Engelhardtcc4fc022011-01-18 17:32:40 +0100305 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 Engelhardt92f3b2b2008-10-08 11:35:20 +0200310MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.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");