blob: c40b2695633b15960ac65eb84ebc2405b4aa2c1c [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 Gao3e0d5142011-03-15 13:25:42 +010036 struct hlist_node node;
Changli Gao8183e3a2011-03-15 13:23:28 +010037 struct nf_conntrack_tuple tuple;
38 union nf_inet_addr addr;
Jan Engelhardt370786f2007-07-14 20:47:26 -070039};
40
41struct xt_connlimit_data {
Changli Gao3e0d5142011-03-15 13:25:42 +010042 struct hlist_head iphash[256];
43 spinlock_t lock;
Jan Engelhardt370786f2007-07-14 20:47:26 -070044};
45
Jan Engelhardt294188a2010-01-04 16:28:38 +010046static u_int32_t connlimit_rnd __read_mostly;
Jan Engelhardt370786f2007-07-14 20:47:26 -070047
Al Viroa34c4582007-07-26 17:33:19 +010048static inline unsigned int connlimit_iphash(__be32 addr)
Jan Engelhardt370786f2007-07-14 20:47:26 -070049{
Al Viroa34c4582007-07-26 17:33:19 +010050 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070051}
52
53static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080054connlimit_iphash6(const union nf_inet_addr *addr,
55 const union nf_inet_addr *mask)
Jan Engelhardt370786f2007-07-14 20:47:26 -070056{
Jan Engelhardt643a2c12007-12-17 22:43:50 -080057 union nf_inet_addr res;
Jan Engelhardt370786f2007-07-14 20:47:26 -070058 unsigned int i;
59
Jan Engelhardt370786f2007-07-14 20:47:26 -070060 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
61 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
62
Al Viroa34c4582007-07-26 17:33:19 +010063 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
Jan Engelhardt370786f2007-07-14 20:47:26 -070064}
65
66static inline bool already_closed(const struct nf_conn *conn)
67{
Patrick McHardy5e8fbe22008-04-14 11:15:52 +020068 if (nf_ct_protonum(conn) == IPPROTO_TCP)
Dong Weid2ee3f22008-06-04 09:57:51 -070069 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
70 conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
Jan Engelhardt370786f2007-07-14 20:47:26 -070071 else
72 return 0;
73}
74
75static inline unsigned int
Jan Engelhardt643a2c12007-12-17 22:43:50 -080076same_source_net(const union nf_inet_addr *addr,
77 const union nf_inet_addr *mask,
Jan Engelhardt76108ce2008-10-08 11:35:00 +020078 const union nf_inet_addr *u3, u_int8_t family)
Jan Engelhardt370786f2007-07-14 20:47:26 -070079{
Jan Engelhardtee999d82008-10-08 11:35:01 +020080 if (family == NFPROTO_IPV4) {
Jan Engelhardt370786f2007-07-14 20:47:26 -070081 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
82 } else {
Jan Engelhardt643a2c12007-12-17 22:43:50 -080083 union nf_inet_addr lh, rh;
Jan Engelhardt370786f2007-07-14 20:47:26 -070084 unsigned int i;
85
86 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i) {
87 lh.ip6[i] = addr->ip6[i] & mask->ip6[i];
88 rh.ip6[i] = u3->ip6[i] & mask->ip6[i];
89 }
90
91 return memcmp(&lh.ip6, &rh.ip6, sizeof(lh.ip6)) == 0;
92 }
93}
94
Alexey Dobriyan83fc8102010-01-18 08:07:50 +010095static int count_them(struct net *net,
96 struct xt_connlimit_data *data,
Jan Engelhardt370786f2007-07-14 20:47:26 -070097 const struct nf_conntrack_tuple *tuple,
Jan Engelhardt643a2c12007-12-17 22:43:50 -080098 const union nf_inet_addr *addr,
99 const union nf_inet_addr *mask,
Stefan Berger20b79752011-02-14 16:54:33 +0100100 u_int8_t family)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700101{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200102 const struct nf_conntrack_tuple_hash *found;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700103 struct xt_connlimit_conn *conn;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800104 struct hlist_node *n;
Eric Dumazetea781f12009-03-25 21:05:46 +0100105 struct nf_conn *found_ct;
Changli Gao3e0d5142011-03-15 13:25:42 +0100106 struct hlist_head *hash;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700107 bool addit = true;
108 int matches = 0;
109
Jan Engelhardt539054a2009-11-06 18:08:32 -0800110 if (family == NFPROTO_IPV6)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700111 hash = &data->iphash[connlimit_iphash6(addr, mask)];
112 else
113 hash = &data->iphash[connlimit_iphash(addr->ip & mask->ip)];
114
Patrick McHardy76507f62008-01-31 04:38:38 -0800115 rcu_read_lock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700116
117 /* check the saved connections */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800118 hlist_for_each_entry_safe(conn, n, hash, node) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100119 found = nf_conntrack_find_get(net, NF_CT_DEFAULT_ZONE,
120 &conn->tuple);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700121 found_ct = NULL;
122
123 if (found != NULL)
124 found_ct = nf_ct_tuplehash_to_ctrack(found);
125
126 if (found_ct != NULL &&
127 nf_ct_tuple_equal(&conn->tuple, tuple) &&
128 !already_closed(found_ct))
129 /*
130 * Just to be sure we have it only once in the list.
131 * We should not see tuples twice unless someone hooks
132 * this into a table without "-p tcp --syn".
133 */
134 addit = false;
135
136 if (found == NULL) {
137 /* this one is gone */
Changli Gao3e0d5142011-03-15 13:25:42 +0100138 hlist_del(&conn->node);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700139 kfree(conn);
140 continue;
141 }
142
143 if (already_closed(found_ct)) {
144 /*
145 * we do not care about connections which are
146 * closed already -> ditch it
147 */
Eric Dumazetea781f12009-03-25 21:05:46 +0100148 nf_ct_put(found_ct);
Changli Gao3e0d5142011-03-15 13:25:42 +0100149 hlist_del(&conn->node);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700150 kfree(conn);
151 continue;
152 }
153
Changli Gao8183e3a2011-03-15 13:23:28 +0100154 if (same_source_net(addr, mask, &conn->addr, family))
Jan Engelhardt370786f2007-07-14 20:47:26 -0700155 /* same source network -> be counted! */
156 ++matches;
Eric Dumazetea781f12009-03-25 21:05:46 +0100157 nf_ct_put(found_ct);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700158 }
159
Patrick McHardy76507f62008-01-31 04:38:38 -0800160 rcu_read_unlock();
Jan Engelhardt370786f2007-07-14 20:47:26 -0700161
162 if (addit) {
163 /* save the new connection in our list */
Changli Gao0e23ca12011-03-15 13:24:56 +0100164 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700165 if (conn == NULL)
166 return -ENOMEM;
167 conn->tuple = *tuple;
Changli Gao8183e3a2011-03-15 13:23:28 +0100168 conn->addr = *addr;
Changli Gao3e0d5142011-03-15 13:25:42 +0100169 hlist_add_head(&conn->node, hash);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700170 ++matches;
171 }
172
173 return matches;
174}
175
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800176static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +0200177connlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700178{
Alexey Dobriyan83fc8102010-01-18 08:07:50 +0100179 struct net *net = dev_net(par->in ? par->in : par->out);
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200180 const struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt22c2d8b2007-12-17 22:44:47 -0800181 union nf_inet_addr addr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700182 struct nf_conntrack_tuple tuple;
183 const struct nf_conntrack_tuple *tuple_ptr = &tuple;
184 enum ip_conntrack_info ctinfo;
185 const struct nf_conn *ct;
186 int connections;
187
188 ct = nf_ct_get(skb, &ctinfo);
Changli Gao8183e3a2011-03-15 13:23:28 +0100189 if (ct != NULL)
190 tuple_ptr = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
191 else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
192 par->family, &tuple))
Jan Engelhardt370786f2007-07-14 20:47:26 -0700193 goto hotdrop;
194
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200195 if (par->family == NFPROTO_IPV6) {
Jan Engelhardt370786f2007-07-14 20:47:26 -0700196 const struct ipv6hdr *iph = ipv6_hdr(skb);
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100197 memcpy(&addr.ip6, (info->flags & XT_CONNLIMIT_DADDR) ?
198 &iph->daddr : &iph->saddr, sizeof(addr.ip6));
Jan Engelhardt370786f2007-07-14 20:47:26 -0700199 } else {
200 const struct iphdr *iph = ip_hdr(skb);
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100201 addr.ip = (info->flags & XT_CONNLIMIT_DADDR) ?
202 iph->daddr : iph->saddr;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700203 }
204
205 spin_lock_bh(&info->data->lock);
Alexey Dobriyan83fc8102010-01-18 08:07:50 +0100206 connections = count_them(net, info->data, tuple_ptr, &addr,
Stefan Berger20b79752011-02-14 16:54:33 +0100207 &info->mask, par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700208 spin_unlock_bh(&info->data->lock);
209
Richard Weinberger1cc34c32011-01-18 01:36:57 +0100210 if (connections < 0)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700211 /* kmalloc failed, drop it entirely */
Richard Weinberger1cc34c32011-01-18 01:36:57 +0100212 goto hotdrop;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700213
Jan Engelhardtcc4fc022011-01-18 17:32:40 +0100214 return (connections > info->limit) ^
215 !!(info->flags & XT_CONNLIMIT_INVERT);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700216
217 hotdrop:
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200218 par->hotdrop = true;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700219 return false;
220}
221
Jan Engelhardtb0f38452010-03-19 17:16:42 +0100222static int connlimit_mt_check(const struct xt_mtchk_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700223{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200224 struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700225 unsigned int i;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100226 int ret;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700227
Changli Gao4656c4d2011-03-15 13:26:32 +0100228 if (unlikely(!connlimit_rnd)) {
229 u_int32_t rand;
230
231 do {
232 get_random_bytes(&rand, sizeof(rand));
233 } while (!rand);
234 cmpxchg(&connlimit_rnd, 0, rand);
Jan Engelhardt294188a2010-01-04 16:28:38 +0100235 }
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100236 ret = nf_ct_l3proto_try_module_get(par->family);
237 if (ret < 0) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100238 pr_info("cannot load conntrack support for "
239 "address family %u\n", par->family);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100240 return ret;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700241 }
242
243 /* init private data */
244 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
245 if (info->data == NULL) {
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200246 nf_ct_l3proto_module_put(par->family);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100247 return -ENOMEM;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700248 }
249
250 spin_lock_init(&info->data->lock);
251 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
Changli Gao3e0d5142011-03-15 13:25:42 +0100252 INIT_HLIST_HEAD(&info->data->iphash[i]);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700253
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100254 return 0;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700255}
256
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200257static void connlimit_mt_destroy(const struct xt_mtdtor_param *par)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700258{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200259 const struct xt_connlimit_info *info = par->matchinfo;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700260 struct xt_connlimit_conn *conn;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800261 struct hlist_node *n;
Changli Gao3e0d5142011-03-15 13:25:42 +0100262 struct hlist_head *hash = info->data->iphash;
Jan Engelhardt370786f2007-07-14 20:47:26 -0700263 unsigned int i;
264
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200265 nf_ct_l3proto_module_put(par->family);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700266
267 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800268 hlist_for_each_entry_safe(conn, n, &hash[i], node) {
Changli Gao3e0d5142011-03-15 13:25:42 +0100269 hlist_del(&conn->node);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700270 kfree(conn);
271 }
272 }
273
274 kfree(info->data);
275}
276
Cong Wang68c07cb2012-05-19 04:39:01 +0000277static struct xt_match connlimit_mt_reg __read_mostly = {
278 .name = "connlimit",
279 .revision = 1,
280 .family = NFPROTO_UNSPEC,
281 .checkentry = connlimit_mt_check,
282 .match = connlimit_mt,
283 .matchsize = sizeof(struct xt_connlimit_info),
284 .destroy = connlimit_mt_destroy,
285 .me = THIS_MODULE,
Jan Engelhardt370786f2007-07-14 20:47:26 -0700286};
287
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800288static int __init connlimit_mt_init(void)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700289{
Cong Wang68c07cb2012-05-19 04:39:01 +0000290 return xt_register_match(&connlimit_mt_reg);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700291}
292
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800293static void __exit connlimit_mt_exit(void)
Jan Engelhardt370786f2007-07-14 20:47:26 -0700294{
Cong Wang68c07cb2012-05-19 04:39:01 +0000295 xt_unregister_match(&connlimit_mt_reg);
Jan Engelhardt370786f2007-07-14 20:47:26 -0700296}
297
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800298module_init(connlimit_mt_init);
299module_exit(connlimit_mt_exit);
Jan Engelhardt92f3b2b2008-10-08 11:35:20 +0200300MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -0800301MODULE_DESCRIPTION("Xtables: Number of connections matching");
Jan Engelhardt370786f2007-07-14 20:47:26 -0700302MODULE_LICENSE("GPL");
303MODULE_ALIAS("ipt_connlimit");
304MODULE_ALIAS("ip6t_connlimit");