netfilter: connlimit: improve packet-to-closed-connection logic
[deliverable/linux.git] / net / netfilter / xt_connlimit.c
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 *
9 * based on ...
10 *
11 * Kernel module to match connection tracking information.
12 * GPL (C) 1999 Rusty Russell (rusty@rustcorp.com.au).
13 */
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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/slab.h>
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>
32 #include <net/netfilter/nf_conntrack_zones.h>
33
34 /* we will save the tuples of all connections we care about */
35 struct xt_connlimit_conn {
36 struct hlist_node node;
37 struct nf_conntrack_tuple tuple;
38 union nf_inet_addr addr;
39 };
40
41 struct xt_connlimit_data {
42 struct hlist_head iphash[256];
43 spinlock_t lock;
44 };
45
46 static u_int32_t connlimit_rnd __read_mostly;
47
48 static inline unsigned int connlimit_iphash(__be32 addr)
49 {
50 return jhash_1word((__force __u32)addr, connlimit_rnd) & 0xFF;
51 }
52
53 static inline unsigned int
54 connlimit_iphash6(const union nf_inet_addr *addr,
55 const union nf_inet_addr *mask)
56 {
57 union nf_inet_addr res;
58 unsigned int i;
59
60 for (i = 0; i < ARRAY_SIZE(addr->ip6); ++i)
61 res.ip6[i] = addr->ip6[i] & mask->ip6[i];
62
63 return jhash2((u32 *)res.ip6, ARRAY_SIZE(res.ip6), connlimit_rnd) & 0xFF;
64 }
65
66 static inline bool already_closed(const struct nf_conn *conn)
67 {
68 if (nf_ct_protonum(conn) == IPPROTO_TCP)
69 return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
70 conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
71 else
72 return 0;
73 }
74
75 static inline unsigned int
76 same_source_net(const union nf_inet_addr *addr,
77 const union nf_inet_addr *mask,
78 const union nf_inet_addr *u3, u_int8_t family)
79 {
80 if (family == NFPROTO_IPV4) {
81 return (addr->ip & mask->ip) == (u3->ip & mask->ip);
82 } else {
83 union nf_inet_addr lh, rh;
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
95 static int count_hlist(struct net *net,
96 struct hlist_head *head,
97 const struct nf_conntrack_tuple *tuple,
98 const union nf_inet_addr *addr,
99 const union nf_inet_addr *mask,
100 u_int8_t family)
101 {
102 const struct nf_conntrack_tuple_hash *found;
103 struct xt_connlimit_conn *conn;
104 struct hlist_node *n;
105 struct nf_conn *found_ct;
106 bool addit = true;
107 int matches = 0;
108
109 rcu_read_lock();
110
111 /* check the saved connections */
112 hlist_for_each_entry_safe(conn, n, head, node) {
113 found = nf_conntrack_find_get(net, NF_CT_DEFAULT_ZONE,
114 &conn->tuple);
115 if (found == NULL) {
116 hlist_del(&conn->node);
117 kfree(conn);
118 continue;
119 }
120
121 found_ct = nf_ct_tuplehash_to_ctrack(found);
122
123 if (nf_ct_tuple_equal(&conn->tuple, tuple)) {
124 /*
125 * Just to be sure we have it only once in the list.
126 * We should not see tuples twice unless someone hooks
127 * this into a table without "-p tcp --syn".
128 */
129 addit = false;
130 } else if (already_closed(found_ct)) {
131 /*
132 * we do not care about connections which are
133 * closed already -> ditch it
134 */
135 nf_ct_put(found_ct);
136 hlist_del(&conn->node);
137 kfree(conn);
138 continue;
139 }
140
141 if (same_source_net(addr, mask, &conn->addr, family))
142 /* same source network -> be counted! */
143 ++matches;
144 nf_ct_put(found_ct);
145 }
146
147 rcu_read_unlock();
148
149 if (addit) {
150 /* save the new connection in our list */
151 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
152 if (conn == NULL)
153 return -ENOMEM;
154 conn->tuple = *tuple;
155 conn->addr = *addr;
156 hlist_add_head(&conn->node, head);
157 ++matches;
158 }
159
160 return matches;
161 }
162
163 static int count_them(struct net *net,
164 struct xt_connlimit_data *data,
165 const struct nf_conntrack_tuple *tuple,
166 const union nf_inet_addr *addr,
167 const union nf_inet_addr *mask,
168 u_int8_t family)
169 {
170 struct hlist_head *hhead;
171 int count;
172 u32 hash;
173
174 if (family == NFPROTO_IPV6)
175 hash = connlimit_iphash6(addr, mask);
176 else
177 hash = connlimit_iphash(addr->ip & mask->ip);
178
179 hhead = &data->iphash[hash];
180
181 spin_lock_bh(&data->lock);
182 count = count_hlist(net, hhead, tuple, addr, mask, family);
183 spin_unlock_bh(&data->lock);
184
185 return count;
186 }
187
188 static bool
189 connlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
190 {
191 struct net *net = dev_net(par->in ? par->in : par->out);
192 const struct xt_connlimit_info *info = par->matchinfo;
193 union nf_inet_addr addr;
194 struct nf_conntrack_tuple tuple;
195 const struct nf_conntrack_tuple *tuple_ptr = &tuple;
196 enum ip_conntrack_info ctinfo;
197 const struct nf_conn *ct;
198 int connections;
199
200 ct = nf_ct_get(skb, &ctinfo);
201 if (ct != NULL)
202 tuple_ptr = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
203 else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
204 par->family, &tuple))
205 goto hotdrop;
206
207 if (par->family == NFPROTO_IPV6) {
208 const struct ipv6hdr *iph = ipv6_hdr(skb);
209 memcpy(&addr.ip6, (info->flags & XT_CONNLIMIT_DADDR) ?
210 &iph->daddr : &iph->saddr, sizeof(addr.ip6));
211 } else {
212 const struct iphdr *iph = ip_hdr(skb);
213 addr.ip = (info->flags & XT_CONNLIMIT_DADDR) ?
214 iph->daddr : iph->saddr;
215 }
216
217 connections = count_them(net, info->data, tuple_ptr, &addr,
218 &info->mask, par->family);
219
220 if (connections < 0)
221 /* kmalloc failed, drop it entirely */
222 goto hotdrop;
223
224 return (connections > info->limit) ^
225 !!(info->flags & XT_CONNLIMIT_INVERT);
226
227 hotdrop:
228 par->hotdrop = true;
229 return false;
230 }
231
232 static int connlimit_mt_check(const struct xt_mtchk_param *par)
233 {
234 struct xt_connlimit_info *info = par->matchinfo;
235 unsigned int i;
236 int ret;
237
238 if (unlikely(!connlimit_rnd)) {
239 u_int32_t rand;
240
241 do {
242 get_random_bytes(&rand, sizeof(rand));
243 } while (!rand);
244 cmpxchg(&connlimit_rnd, 0, rand);
245 }
246 ret = nf_ct_l3proto_try_module_get(par->family);
247 if (ret < 0) {
248 pr_info("cannot load conntrack support for "
249 "address family %u\n", par->family);
250 return ret;
251 }
252
253 /* init private data */
254 info->data = kmalloc(sizeof(struct xt_connlimit_data), GFP_KERNEL);
255 if (info->data == NULL) {
256 nf_ct_l3proto_module_put(par->family);
257 return -ENOMEM;
258 }
259
260 spin_lock_init(&info->data->lock);
261 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i)
262 INIT_HLIST_HEAD(&info->data->iphash[i]);
263
264 return 0;
265 }
266
267 static void connlimit_mt_destroy(const struct xt_mtdtor_param *par)
268 {
269 const struct xt_connlimit_info *info = par->matchinfo;
270 struct xt_connlimit_conn *conn;
271 struct hlist_node *n;
272 struct hlist_head *hash = info->data->iphash;
273 unsigned int i;
274
275 nf_ct_l3proto_module_put(par->family);
276
277 for (i = 0; i < ARRAY_SIZE(info->data->iphash); ++i) {
278 hlist_for_each_entry_safe(conn, n, &hash[i], node) {
279 hlist_del(&conn->node);
280 kfree(conn);
281 }
282 }
283
284 kfree(info->data);
285 }
286
287 static struct xt_match connlimit_mt_reg __read_mostly = {
288 .name = "connlimit",
289 .revision = 1,
290 .family = NFPROTO_UNSPEC,
291 .checkentry = connlimit_mt_check,
292 .match = connlimit_mt,
293 .matchsize = sizeof(struct xt_connlimit_info),
294 .destroy = connlimit_mt_destroy,
295 .me = THIS_MODULE,
296 };
297
298 static int __init connlimit_mt_init(void)
299 {
300 return xt_register_match(&connlimit_mt_reg);
301 }
302
303 static void __exit connlimit_mt_exit(void)
304 {
305 xt_unregister_match(&connlimit_mt_reg);
306 }
307
308 module_init(connlimit_mt_init);
309 module_exit(connlimit_mt_exit);
310 MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
311 MODULE_DESCRIPTION("Xtables: Number of connections matching");
312 MODULE_LICENSE("GPL");
313 MODULE_ALIAS("ipt_connlimit");
314 MODULE_ALIAS("ip6t_connlimit");
This page took 0.042195 seconds and 5 git commands to generate.