Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / net / netfilter / xt_connlimit.c
blob3b0111933f601782887e4edc8f7500aff4a2116f
1 /*
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
7 * (C) CC Computer Consultants GmbH, 2007
8 * Contact: <jengelh@computergmbh.de>
10 * based on ...
12 * Kernel module to match connection tracking information.
13 * GPL (C) 1999 Rusty Russell (rusty@rustcorp.com.au).
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>
32 /* we will save the tuples of all connections we care about */
33 struct xt_connlimit_conn {
34 struct list_head list;
35 struct nf_conntrack_tuple tuple;
38 struct xt_connlimit_data {
39 struct list_head iphash[256];
40 spinlock_t lock;
43 static u_int32_t connlimit_rnd;
44 static bool connlimit_rnd_inited;
46 static inline unsigned int connlimit_iphash(__be32 addr)
48 if (unlikely(!connlimit_rnd_inited)) {
49 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
50 connlimit_rnd_inited = true;
52 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
55 static inline unsigned int
56 connlimit_iphash6(const union nf_inet_addr *addr,
57 const union nf_inet_addr *mask)
59 union nf_inet_addr res;
60 unsigned int i;
62 if (unlikely(!connlimit_rnd_inited)) {
63 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
64 connlimit_rnd_inited = true;
67 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
68 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
70 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
73 static inline bool already_closed(const struct nf_conn *conn)
75 u_int16_t proto = conn->tuplehash[0].tuple.dst.protonum;
77 if (proto == IPPROTO_TCP)
78 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT;
79 else
80 return 0;
83 static inline unsigned int
84 same_source_net(const union nf_inet_addr *addr,
85 const union nf_inet_addr *mask,
86 const union nf_inet_addr *u3, unsigned int family)
88 if (family == AF_INET) {
89 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
90 } else {
91 union nf_inet_addr lh, rh;
92 unsigned int i;
94 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i) {
95 lh.ip6[i] = addr->ip6[i] & mask->ip6[i];
96 rh.ip6[i] = u3->ip6[i] & mask->ip6[i];
99 return memcmp(&lh.ip6, &rh.ip6, sizeof(lh.ip6)) == 0;
103 static int count_them(struct xt_connlimit_data *data,
104 const struct nf_conntrack_tuple *tuple,
105 const union nf_inet_addr *addr,
106 const union nf_inet_addr *mask,
107 const struct xt_match *match)
109 struct nf_conntrack_tuple_hash *found;
110 struct xt_connlimit_conn *conn;
111 struct xt_connlimit_conn *tmp;
112 struct nf_conn *found_ct;
113 struct list_head *hash;
114 bool addit = true;
115 int matches = 0;
118 if (match->family == AF_INET6)
119 hash = &data->iphash[connlimit_iphash6(addr, mask)];
120 else
121 hash = &data->iphash[connlimit_iphash(addr->ip & mask->ip)];
123 rcu_read_lock();
125 /* check the saved connections */
126 list_for_each_entry_safe(conn, tmp, hash, list) {
127 found = __nf_conntrack_find(&conn->tuple);
128 found_ct = NULL;
130 if (found != NULL)
131 found_ct = nf_ct_tuplehash_to_ctrack(found);
133 if (found_ct != NULL &&
134 nf_ct_tuple_equal(&conn->tuple, tuple) &&
135 !already_closed(found_ct))
137 * Just to be sure we have it only once in the list.
138 * We should not see tuples twice unless someone hooks
139 * this into a table without "-p tcp --syn".
141 addit = false;
143 if (found == NULL) {
144 /* this one is gone */
145 list_del(&conn->list);
146 kfree(conn);
147 continue;
150 if (already_closed(found_ct)) {
152 * we do not care about connections which are
153 * closed already -> ditch it
155 list_del(&conn->list);
156 kfree(conn);
157 continue;
160 if (same_source_net(addr, mask, &conn->tuple.src.u3,
161 match->family))
162 /* same source network -> be counted! */
163 ++matches;
166 rcu_read_unlock();
168 if (addit) {
169 /* save the new connection in our list */
170 conn = kzalloc(sizeof(*conn), GFP_ATOMIC);
171 if (conn == NULL)
172 return -ENOMEM;
173 conn->tuple = *tuple;
174 list_add(&conn->list, hash);
175 ++matches;
178 return matches;
181 static bool
182 connlimit_mt(const struct sk_buff *skb, const struct net_device *in,
183 const struct net_device *out, const struct xt_match *match,
184 const void *matchinfo, int offset, unsigned int protoff,
185 bool *hotdrop)
187 const struct xt_connlimit_info *info = matchinfo;
188 union nf_inet_addr addr;
189 struct nf_conntrack_tuple tuple;
190 const struct nf_conntrack_tuple *tuple_ptr = &tuple;
191 enum ip_conntrack_info ctinfo;
192 const struct nf_conn *ct;
193 int connections;
195 ct = nf_ct_get(skb, &ctinfo);
196 if (ct != NULL)
197 tuple_ptr = &ct->tuplehash[0].tuple;
198 else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
199 match->family, &tuple))
200 goto hotdrop;
202 if (match->family == AF_INET6) {
203 const struct ipv6hdr *iph = ipv6_hdr(skb);
204 memcpy(&addr.ip6, &iph->saddr, sizeof(iph->saddr));
205 } else {
206 const struct iphdr *iph = ip_hdr(skb);
207 addr.ip = iph->saddr;
210 spin_lock_bh(&info->data->lock);
211 connections = count_them(info->data, tuple_ptr, &addr,
212 &info->mask, match);
213 spin_unlock_bh(&info->data->lock);
215 if (connections < 0) {
216 /* kmalloc failed, drop it entirely */
217 *hotdrop = true;
218 return false;
221 return (connections > info->limit) ^ info->inverse;
223 hotdrop:
224 *hotdrop = true;
225 return false;
228 static bool
229 connlimit_mt_check(const char *tablename, const void *ip,
230 const struct xt_match *match, void *matchinfo,
231 unsigned int hook_mask)
233 struct xt_connlimit_info *info = matchinfo;
234 unsigned int i;
236 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
237 printk(KERN_WARNING "cannot load conntrack support for "
238 "address family %u\n", match->family);
239 return false;
242 /* init private data */
243 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
244 if (info->data == NULL) {
245 nf_ct_l3proto_module_put(match->family);
246 return false;
249 spin_lock_init(&info->data->lock);
250 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
251 INIT_LIST_HEAD(&info->data->iphash[i]);
253 return true;
256 static void
257 connlimit_mt_destroy(const struct xt_match *match, void *matchinfo)
259 struct xt_connlimit_info *info = matchinfo;
260 struct xt_connlimit_conn *conn;
261 struct xt_connlimit_conn *tmp;
262 struct list_head *hash = info->data->iphash;
263 unsigned int i;
265 nf_ct_l3proto_module_put(match->family);
267 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
268 list_for_each_entry_safe(conn, tmp, &hash[i], list) {
269 list_del(&conn->list);
270 kfree(conn);
274 kfree(info->data);
277 static struct xt_match connlimit_mt_reg[] __read_mostly = {
279 .name = "connlimit",
280 .family = AF_INET,
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,
288 .name = "connlimit",
289 .family = AF_INET6,
290 .checkentry = connlimit_mt_check,
291 .match = connlimit_mt,
292 .matchsize = sizeof(struct xt_connlimit_info),
293 .destroy = connlimit_mt_destroy,
294 .me = THIS_MODULE,
298 static int __init connlimit_mt_init(void)
300 return xt_register_matches(connlimit_mt_reg,
301 ARRAY_SIZE(connlimit_mt_reg));
304 static void __exit connlimit_mt_exit(void)
306 xt_unregister_matches(connlimit_mt_reg, ARRAY_SIZE(connlimit_mt_reg));
309 module_init(connlimit_mt_init);
310 module_exit(connlimit_mt_exit);
311 MODULE_AUTHOR("Jan Engelhardt <jengelh@computergmbh.de>");
312 MODULE_DESCRIPTION("Xtables: Number of connections matching");
313 MODULE_LICENSE("GPL");
314 MODULE_ALIAS("ipt_connlimit");
315 MODULE_ALIAS("ip6t_connlimit");