]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/xt_connlimit.c
netfilter: xt_connlimit: fix regression caused by zero family value
[net-next-2.6.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
JE
7 * (C) CC Computer Consultants GmbH, 2007
8 * Contact: <jengelh@computergmbh.de>
370786f9
JE
9 *
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
43static u_int32_t connlimit_rnd;
44static bool connlimit_rnd_inited;
45
a34c4589 46static inline unsigned int connlimit_iphash(__be32 addr)
370786f9
JE
47{
48 if (unlikely(!connlimit_rnd_inited)) {
49 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
50 connlimit_rnd_inited = true;
51 }
a34c4589 52 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
370786f9
JE
53}
54
55static inline unsigned int
643a2c15
JE
56connlimit_iphash6(const union nf_inet_addr *addr,
57 const union nf_inet_addr *mask)
370786f9 58{
643a2c15 59 union nf_inet_addr res;
370786f9
JE
60 unsigned int i;
61
62 if (unlikely(!connlimit_rnd_inited)) {
63 get_random_bytes(&connlimit_rnd, sizeof(connlimit_rnd));
64 connlimit_rnd_inited = true;
65 }
66
67 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
68 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
69
a34c4589 70 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
370786f9
JE
71}
72
73static inline bool already_closed(const struct nf_conn *conn)
74{
5e8fbe2a 75 if (nf_ct_protonum(conn) == IPPROTO_TCP)
d2ee3f2c
DW
76 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
77 conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
370786f9
JE
78 else
79 return 0;
80}
81
82static inline unsigned int
643a2c15
JE
83same_source_net(const union nf_inet_addr *addr,
84 const union nf_inet_addr *mask,
76108cea 85 const union nf_inet_addr *u3, u_int8_t family)
370786f9 86{
ee999d8b 87 if (family == NFPROTO_IPV4) {
370786f9
JE
88 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
89 } else {
643a2c15 90 union nf_inet_addr lh, rh;
370786f9
JE
91 unsigned int i;
92
93 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i) {
94 lh.ip6[i] = addr->ip6[i] & mask->ip6[i];
95 rh.ip6[i] = u3->ip6[i] & mask->ip6[i];
96 }
97
98 return memcmp(&lh.ip6, &rh.ip6, sizeof(lh.ip6)) == 0;
99 }
100}
101
102static int count_them(struct xt_connlimit_data *data,
103 const struct nf_conntrack_tuple *tuple,
643a2c15
JE
104 const union nf_inet_addr *addr,
105 const union nf_inet_addr *mask,
539054a8 106 u_int8_t family)
370786f9 107{
3cf93c96 108 const struct nf_conntrack_tuple_hash *found;
370786f9
JE
109 struct xt_connlimit_conn *conn;
110 struct xt_connlimit_conn *tmp;
ea781f19 111 struct nf_conn *found_ct;
370786f9
JE
112 struct list_head *hash;
113 bool addit = true;
114 int matches = 0;
115
539054a8 116 if (family == NFPROTO_IPV6)
370786f9
JE
117 hash = &data->iphash[connlimit_iphash6(addr, mask)];
118 else
119 hash = &data->iphash[connlimit_iphash(addr->ip & mask->ip)];
120
76507f69 121 rcu_read_lock();
370786f9
JE
122
123 /* check the saved connections */
124 list_for_each_entry_safe(conn, tmp, hash, list) {
ea781f19 125 found = nf_conntrack_find_get(&init_net, &conn->tuple);
370786f9
JE
126 found_ct = NULL;
127
128 if (found != NULL)
129 found_ct = nf_ct_tuplehash_to_ctrack(found);
130
131 if (found_ct != NULL &&
132 nf_ct_tuple_equal(&conn->tuple, tuple) &&
133 !already_closed(found_ct))
134 /*
135 * Just to be sure we have it only once in the list.
136 * We should not see tuples twice unless someone hooks
137 * this into a table without "-p tcp --syn".
138 */
139 addit = false;
140
141 if (found == NULL) {
142 /* this one is gone */
143 list_del(&conn->list);
144 kfree(conn);
145 continue;
146 }
147
148 if (already_closed(found_ct)) {
149 /*
150 * we do not care about connections which are
151 * closed already -> ditch it
152 */
ea781f19 153 nf_ct_put(found_ct);
370786f9
JE
154 list_del(&conn->list);
155 kfree(conn);
156 continue;
157 }
158
539054a8 159 if (same_source_net(addr, mask, &conn->tuple.src.u3, family))
370786f9
JE
160 /* same source network -> be counted! */
161 ++matches;
ea781f19 162 nf_ct_put(found_ct);
370786f9
JE
163 }
164
76507f69 165 rcu_read_unlock();
370786f9
JE
166
167 if (addit) {
168 /* save the new connection in our list */
169 conn = kzalloc(sizeof(*conn), GFP_ATOMIC);
170 if (conn == NULL)
171 return -ENOMEM;
172 conn->tuple = *tuple;
173 list_add(&conn->list, hash);
174 ++matches;
175 }
176
177 return matches;
178}
179
d3c5ee6d 180static bool
f7108a20 181connlimit_mt(const struct sk_buff *skb, const struct xt_match_param *par)
370786f9 182{
f7108a20 183 const struct xt_connlimit_info *info = par->matchinfo;
22c2d8bc 184 union nf_inet_addr addr;
370786f9
JE
185 struct nf_conntrack_tuple tuple;
186 const struct nf_conntrack_tuple *tuple_ptr = &tuple;
187 enum ip_conntrack_info ctinfo;
188 const struct nf_conn *ct;
189 int connections;
190
191 ct = nf_ct_get(skb, &ctinfo);
192 if (ct != NULL)
193 tuple_ptr = &ct->tuplehash[0].tuple;
194 else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
92f3b2b1 195 par->family, &tuple))
370786f9
JE
196 goto hotdrop;
197
92f3b2b1 198 if (par->family == NFPROTO_IPV6) {
370786f9
JE
199 const struct ipv6hdr *iph = ipv6_hdr(skb);
200 memcpy(&addr.ip6, &iph->saddr, sizeof(iph->saddr));
370786f9
JE
201 } else {
202 const struct iphdr *iph = ip_hdr(skb);
203 addr.ip = iph->saddr;
370786f9
JE
204 }
205
206 spin_lock_bh(&info->data->lock);
22c2d8bc 207 connections = count_them(info->data, tuple_ptr, &addr,
539054a8 208 &info->mask, par->family);
370786f9
JE
209 spin_unlock_bh(&info->data->lock);
210
211 if (connections < 0) {
212 /* kmalloc failed, drop it entirely */
f7108a20 213 *par->hotdrop = true;
370786f9
JE
214 return false;
215 }
216
217 return (connections > info->limit) ^ info->inverse;
218
219 hotdrop:
f7108a20 220 *par->hotdrop = true;
370786f9
JE
221 return false;
222}
223
9b4fce7a 224static bool connlimit_mt_check(const struct xt_mtchk_param *par)
370786f9 225{
9b4fce7a 226 struct xt_connlimit_info *info = par->matchinfo;
370786f9
JE
227 unsigned int i;
228
92f3b2b1 229 if (nf_ct_l3proto_try_module_get(par->family) < 0) {
370786f9 230 printk(KERN_WARNING "cannot load conntrack support for "
92f3b2b1 231 "address family %u\n", par->family);
370786f9
JE
232 return false;
233 }
234
235 /* init private data */
236 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
237 if (info->data == NULL) {
92f3b2b1 238 nf_ct_l3proto_module_put(par->family);
370786f9
JE
239 return false;
240 }
241
242 spin_lock_init(&info->data->lock);
243 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
244 INIT_LIST_HEAD(&info->data->iphash[i]);
245
246 return true;
247}
248
6be3d859 249static void connlimit_mt_destroy(const struct xt_mtdtor_param *par)
370786f9 250{
6be3d859 251 const struct xt_connlimit_info *info = par->matchinfo;
370786f9
JE
252 struct xt_connlimit_conn *conn;
253 struct xt_connlimit_conn *tmp;
254 struct list_head *hash = info->data->iphash;
255 unsigned int i;
256
92f3b2b1 257 nf_ct_l3proto_module_put(par->family);
370786f9
JE
258
259 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
260 list_for_each_entry_safe(conn, tmp, &hash[i], list) {
261 list_del(&conn->list);
262 kfree(conn);
263 }
264 }
265
266 kfree(info->data);
267}
268
92f3b2b1
JE
269static struct xt_match connlimit_mt_reg __read_mostly = {
270 .name = "connlimit",
271 .revision = 0,
272 .family = NFPROTO_UNSPEC,
273 .checkentry = connlimit_mt_check,
274 .match = connlimit_mt,
275 .matchsize = sizeof(struct xt_connlimit_info),
276 .destroy = connlimit_mt_destroy,
277 .me = THIS_MODULE,
370786f9
JE
278};
279
d3c5ee6d 280static int __init connlimit_mt_init(void)
370786f9 281{
92f3b2b1 282 return xt_register_match(&connlimit_mt_reg);
370786f9
JE
283}
284
d3c5ee6d 285static void __exit connlimit_mt_exit(void)
370786f9 286{
92f3b2b1 287 xt_unregister_match(&connlimit_mt_reg);
370786f9
JE
288}
289
d3c5ee6d
JE
290module_init(connlimit_mt_init);
291module_exit(connlimit_mt_exit);
92f3b2b1 292MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
2ae15b64 293MODULE_DESCRIPTION("Xtables: Number of connections matching");
370786f9
JE
294MODULE_LICENSE("GPL");
295MODULE_ALIAS("ipt_connlimit");
296MODULE_ALIAS("ip6t_connlimit");