netfilter: nf_log: account for size of NLMSG_DONE attribute
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / netfilter / xt_connlimit.c
CommitLineData
370786f9
JE
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
ba5dc275 7 * (C) CC Computer Consultants GmbH, 2007
370786f9
JE
8 *
9 * based on ...
10 *
11 * Kernel module to match connection tracking information.
12 * GPL (C) 1999 Rusty Russell (rusty@rustcorp.com.au).
13 */
8bee4bad 14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
370786f9
JE
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>
5a0e3ad6 20#include <linux/slab.h>
370786f9
JE
21#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>
5d0aa2cc 32#include <net/netfilter/nf_conntrack_zones.h>
370786f9
JE
33
34/* we will save the tuples of all connections we care about */
35struct xt_connlimit_conn {
3e0d5149 36 struct hlist_node node;
8183e3a8
CG
37 struct nf_conntrack_tuple tuple;
38 union nf_inet_addr addr;
370786f9
JE
39};
40
41struct xt_connlimit_data {
3e0d5149
CG
42 struct hlist_head iphash[256];
43 spinlock_t lock;
370786f9
JE
44};
45
294188ae 46static u_int32_t connlimit_rnd __read_mostly;
370786f9 47
a34c4589 48static inline unsigned int connlimit_iphash(__be32 addr)
370786f9 49{
a34c4589 50 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
370786f9
JE
51}
52
53static inline unsigned int
643a2c15
JE
54connlimit_iphash6(const union nf_inet_addr *addr,
55 const union nf_inet_addr *mask)
370786f9 56{
643a2c15 57 union nf_inet_addr res;
370786f9
JE
58 unsigned int i;
59
370786f9
JE
60 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
61 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
62
a34c4589 63 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
370786f9
JE
64}
65
66static inline bool already_closed(const struct nf_conn *conn)
67{
5e8fbe2a 68 if (nf_ct_protonum(conn) == IPPROTO_TCP)
d2ee3f2c
DW
69 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
70 conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
370786f9
JE
71 else
72 return 0;
73}
74
75static inline unsigned int
643a2c15
JE
76same_source_net(const union nf_inet_addr *addr,
77 const union nf_inet_addr *mask,
76108cea 78 const union nf_inet_addr *u3, u_int8_t family)
370786f9 79{
ee999d8b 80 if (family == NFPROTO_IPV4) {
370786f9
JE
81 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
82 } else {
643a2c15 83 union nf_inet_addr lh, rh;
370786f9
JE
84 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
83fc8102
AD
95static int count_them(struct net *net,
96 struct xt_connlimit_data *data,
370786f9 97 const struct nf_conntrack_tuple *tuple,
643a2c15
JE
98 const union nf_inet_addr *addr,
99 const union nf_inet_addr *mask,
20b7975e 100 u_int8_t family)
370786f9 101{
3cf93c96 102 const struct nf_conntrack_tuple_hash *found;
370786f9 103 struct xt_connlimit_conn *conn;
b67bfe0d 104 struct hlist_node *n;
ea781f19 105 struct nf_conn *found_ct;
3e0d5149 106 struct hlist_head *hash;
370786f9
JE
107 bool addit = true;
108 int matches = 0;
109
539054a8 110 if (family == NFPROTO_IPV6)
370786f9
JE
111 hash = &data->iphash[connlimit_iphash6(addr, mask)];
112 else
113 hash = &data->iphash[connlimit_iphash(addr->ip & mask->ip)];
114
76507f69 115 rcu_read_lock();
370786f9
JE
116
117 /* check the saved connections */
b67bfe0d 118 hlist_for_each_entry_safe(conn, n, hash, node) {
5d0aa2cc
PM
119 found = nf_conntrack_find_get(net, NF_CT_DEFAULT_ZONE,
120 &conn->tuple);
370786f9
JE
121 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 */
3e0d5149 138 hlist_del(&conn->node);
370786f9
JE
139 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 */
ea781f19 148 nf_ct_put(found_ct);
3e0d5149 149 hlist_del(&conn->node);
370786f9
JE
150 kfree(conn);
151 continue;
152 }
153
8183e3a8 154 if (same_source_net(addr, mask, &conn->addr, family))
370786f9
JE
155 /* same source network -> be counted! */
156 ++matches;
ea781f19 157 nf_ct_put(found_ct);
370786f9
JE
158 }
159
76507f69 160 rcu_read_unlock();
370786f9
JE
161
162 if (addit) {
163 /* save the new connection in our list */
0e23ca14 164 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
370786f9
JE
165 if (conn == NULL)
166 return -ENOMEM;
167 conn->tuple = *tuple;
8183e3a8 168 conn->addr = *addr;
3e0d5149 169 hlist_add_head(&conn->node, hash);
370786f9
JE
170 ++matches;
171 }
172
173 return matches;
174}
175
d3c5ee6d 176static bool
62fc8051 177connlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
370786f9 178{
83fc8102 179 struct net *net = dev_net(par->in ? par->in : par->out);
f7108a20 180 const struct xt_connlimit_info *info = par->matchinfo;
22c2d8bc 181 union nf_inet_addr addr;
370786f9
JE
182 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);
8183e3a8
CG
189 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))
370786f9
JE
193 goto hotdrop;
194
92f3b2b1 195 if (par->family == NFPROTO_IPV6) {
370786f9 196 const struct ipv6hdr *iph = ipv6_hdr(skb);
cc4fc022
JE
197 memcpy(&addr.ip6, (info->flags & XT_CONNLIMIT_DADDR) ?
198 &iph->daddr : &iph->saddr, sizeof(addr.ip6));
370786f9
JE
199 } else {
200 const struct iphdr *iph = ip_hdr(skb);
cc4fc022
JE
201 addr.ip = (info->flags & XT_CONNLIMIT_DADDR) ?
202 iph->daddr : iph->saddr;
370786f9
JE
203 }
204
205 spin_lock_bh(&info->data->lock);
83fc8102 206 connections = count_them(net, info->data, tuple_ptr, &addr,
20b7975e 207 &info->mask, par->family);
370786f9
JE
208 spin_unlock_bh(&info->data->lock);
209
1cc34c30 210 if (connections < 0)
370786f9 211 /* kmalloc failed, drop it entirely */
1cc34c30 212 goto hotdrop;
370786f9 213
cc4fc022
JE
214 return (connections > info->limit) ^
215 !!(info->flags & XT_CONNLIMIT_INVERT);
370786f9
JE
216
217 hotdrop:
b4ba2611 218 par->hotdrop = true;
370786f9
JE
219 return false;
220}
221
b0f38452 222static int connlimit_mt_check(const struct xt_mtchk_param *par)
370786f9 223{
9b4fce7a 224 struct xt_connlimit_info *info = par->matchinfo;
370786f9 225 unsigned int i;
4a5a5c73 226 int ret;
370786f9 227
4656c4d6
CG
228 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);
294188ae 235 }
4a5a5c73
JE
236 ret = nf_ct_l3proto_try_module_get(par->family);
237 if (ret < 0) {
8bee4bad
JE
238 pr_info("cannot load conntrack support for "
239 "address family %u\n", par->family);
4a5a5c73 240 return ret;
370786f9
JE
241 }
242
243 /* init private data */
244 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
245 if (info->data == NULL) {
92f3b2b1 246 nf_ct_l3proto_module_put(par->family);
4a5a5c73 247 return -ENOMEM;
370786f9
JE
248 }
249
250 spin_lock_init(&info->data->lock);
251 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
3e0d5149 252 INIT_HLIST_HEAD(&info->data->iphash[i]);
370786f9 253
bd414ee6 254 return 0;
370786f9
JE
255}
256
6be3d859 257static void connlimit_mt_destroy(const struct xt_mtdtor_param *par)
370786f9 258{
6be3d859 259 const struct xt_connlimit_info *info = par->matchinfo;
370786f9 260 struct xt_connlimit_conn *conn;
b67bfe0d 261 struct hlist_node *n;
3e0d5149 262 struct hlist_head *hash = info->data->iphash;
370786f9
JE
263 unsigned int i;
264
92f3b2b1 265 nf_ct_l3proto_module_put(par->family);
370786f9
JE
266
267 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
b67bfe0d 268 hlist_for_each_entry_safe(conn, n, &hash[i], node) {
3e0d5149 269 hlist_del(&conn->node);
370786f9
JE
270 kfree(conn);
271 }
272 }
273
274 kfree(info->data);
275}
276
68c07cb6
CW
277static 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,
370786f9
JE
286};
287
d3c5ee6d 288static int __init connlimit_mt_init(void)
370786f9 289{
68c07cb6 290 return xt_register_match(&connlimit_mt_reg);
370786f9
JE
291}
292
d3c5ee6d 293static void __exit connlimit_mt_exit(void)
370786f9 294{
68c07cb6 295 xt_unregister_match(&connlimit_mt_reg);
370786f9
JE
296}
297
d3c5ee6d
JE
298module_init(connlimit_mt_init);
299module_exit(connlimit_mt_exit);
92f3b2b1 300MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
2ae15b64 301MODULE_DESCRIPTION("Xtables: Number of connections matching");
370786f9
JE
302MODULE_LICENSE("GPL");
303MODULE_ALIAS("ipt_connlimit");
304MODULE_ALIAS("ip6t_connlimit");