netfilter: nf_ct_ipv4: handle invalid IPv4 and IPv6 packets consistently
[deliverable/linux.git] / net / ipv4 / netfilter / nf_conntrack_l3proto_ipv4.c
CommitLineData
73e4022f 1
9fb9cbb1
YK
2/* (C) 1999-2001 Paul `Rusty' Russell
3 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9fb9cbb1
YK
8 */
9
9fb9cbb1
YK
10#include <linux/types.h>
11#include <linux/ip.h>
12#include <linux/netfilter.h>
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/icmp.h>
16#include <linux/sysctl.h>
0ae2cfe7 17#include <net/route.h>
9fb9cbb1
YK
18#include <net/ip.h>
19
20#include <linux/netfilter_ipv4.h>
21#include <net/netfilter/nf_conntrack.h>
22#include <net/netfilter/nf_conntrack_helper.h>
605dcad6 23#include <net/netfilter/nf_conntrack_l4proto.h>
9fb9cbb1 24#include <net/netfilter/nf_conntrack_l3proto.h>
5d0aa2cc 25#include <net/netfilter/nf_conntrack_zones.h>
9fb9cbb1
YK
26#include <net/netfilter/nf_conntrack_core.h>
27#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
dd13b010 28#include <net/netfilter/nf_nat_helper.h>
73e4022f 29#include <net/netfilter/ipv4/nf_defrag_ipv4.h>
74f7a655 30#include <net/netfilter/nf_log.h>
dd13b010
PM
31
32int (*nf_nat_seq_adjust_hook)(struct sk_buff *skb,
33 struct nf_conn *ct,
34 enum ip_conntrack_info ctinfo);
35EXPORT_SYMBOL_GPL(nf_nat_seq_adjust_hook);
9fb9cbb1 36
8ce8439a
JE
37static bool ipv4_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
38 struct nf_conntrack_tuple *tuple)
9fb9cbb1 39{
32948588
JE
40 const __be32 *ap;
41 __be32 _addrs[2];
9fb9cbb1
YK
42 ap = skb_header_pointer(skb, nhoff + offsetof(struct iphdr, saddr),
43 sizeof(u_int32_t) * 2, _addrs);
44 if (ap == NULL)
8ce8439a 45 return false;
9fb9cbb1
YK
46
47 tuple->src.u3.ip = ap[0];
48 tuple->dst.u3.ip = ap[1];
49
8ce8439a 50 return true;
9fb9cbb1
YK
51}
52
8ce8439a
JE
53static bool ipv4_invert_tuple(struct nf_conntrack_tuple *tuple,
54 const struct nf_conntrack_tuple *orig)
9fb9cbb1
YK
55{
56 tuple->src.u3.ip = orig->dst.u3.ip;
57 tuple->dst.u3.ip = orig->src.u3.ip;
58
8ce8439a 59 return true;
9fb9cbb1
YK
60}
61
62static int ipv4_print_tuple(struct seq_file *s,
63 const struct nf_conntrack_tuple *tuple)
64{
cffee385
HH
65 return seq_printf(s, "src=%pI4 dst=%pI4 ",
66 &tuple->src.u3.ip, &tuple->dst.u3.ip);
9fb9cbb1
YK
67}
68
ffc30690
YK
69static int ipv4_get_l4proto(const struct sk_buff *skb, unsigned int nhoff,
70 unsigned int *dataoff, u_int8_t *protonum)
9fb9cbb1 71{
32948588
JE
72 const struct iphdr *iph;
73 struct iphdr _iph;
ffc30690
YK
74
75 iph = skb_header_pointer(skb, nhoff, sizeof(_iph), &_iph);
76 if (iph == NULL)
8430eac2 77 return -NF_ACCEPT;
ffc30690 78
0fb96701
PM
79 /* Conntrack defragments packets, we might still see fragments
80 * inside ICMP packets though. */
81 if (iph->frag_off & htons(IP_OFFSET))
8430eac2 82 return -NF_ACCEPT;
9fb9cbb1 83
ffc30690
YK
84 *dataoff = nhoff + (iph->ihl << 2);
85 *protonum = iph->protocol;
9fb9cbb1
YK
86
87 return NF_ACCEPT;
88}
89
9fb9cbb1 90static unsigned int ipv4_confirm(unsigned int hooknum,
3db05fea 91 struct sk_buff *skb,
9fb9cbb1
YK
92 const struct net_device *in,
93 const struct net_device *out,
94 int (*okfn)(struct sk_buff *))
9fb9cbb1
YK
95{
96 struct nf_conn *ct;
97 enum ip_conntrack_info ctinfo;
32948588
JE
98 const struct nf_conn_help *help;
99 const struct nf_conntrack_helper *helper;
dd13b010 100 unsigned int ret;
9fb9cbb1
YK
101
102 /* This is where we call the helper: as the packet goes out. */
3db05fea 103 ct = nf_ct_get(skb, &ctinfo);
fb048833 104 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
dd13b010 105 goto out;
dc808fe2
HW
106
107 help = nfct_help(ct);
3c158f7f 108 if (!help)
dd13b010
PM
109 goto out;
110
3c158f7f
PM
111 /* rcu_read_lock()ed by nf_hook_slow */
112 helper = rcu_dereference(help->helper);
113 if (!helper)
dd13b010
PM
114 goto out;
115
116 ret = helper->help(skb, skb_network_offset(skb) + ip_hdrlen(skb),
117 ct, ctinfo);
74f7a655
PM
118 if (ret != NF_ACCEPT) {
119 nf_log_packet(NFPROTO_IPV4, hooknum, skb, in, out, NULL,
120 "nf_ct_%s: dropping packet", helper->name);
dd13b010 121 return ret;
74f7a655 122 }
dd13b010 123
42c1edd3
JA
124 /* adjust seqs for loopback traffic only in outgoing direction */
125 if (test_bit(IPS_SEQ_ADJUST_BIT, &ct->status) &&
126 !nf_is_loopback_packet(skb)) {
dd13b010
PM
127 typeof(nf_nat_seq_adjust_hook) seq_adjust;
128
129 seq_adjust = rcu_dereference(nf_nat_seq_adjust_hook);
1db7a748
PNA
130 if (!seq_adjust || !seq_adjust(skb, ct, ctinfo)) {
131 NF_CT_STAT_INC_ATOMIC(nf_ct_net(ct), drop);
dd13b010 132 return NF_DROP;
1db7a748 133 }
dd13b010
PM
134 }
135out:
136 /* We've seen it coming out the other side: confirm it */
137 return nf_conntrack_confirm(skb);
9fb9cbb1
YK
138}
139
9fb9cbb1 140static unsigned int ipv4_conntrack_in(unsigned int hooknum,
3db05fea 141 struct sk_buff *skb,
9fb9cbb1
YK
142 const struct net_device *in,
143 const struct net_device *out,
144 int (*okfn)(struct sk_buff *))
145{
a702a65f 146 return nf_conntrack_in(dev_net(in), PF_INET, hooknum, skb);
9fb9cbb1
YK
147}
148
149static unsigned int ipv4_conntrack_local(unsigned int hooknum,
3db05fea 150 struct sk_buff *skb,
e905a9ed
YH
151 const struct net_device *in,
152 const struct net_device *out,
153 int (*okfn)(struct sk_buff *))
9fb9cbb1
YK
154{
155 /* root is playing with raw sockets. */
3db05fea 156 if (skb->len < sizeof(struct iphdr) ||
88843104 157 ip_hdrlen(skb) < sizeof(struct iphdr))
9fb9cbb1 158 return NF_ACCEPT;
a702a65f 159 return nf_conntrack_in(dev_net(out), PF_INET, hooknum, skb);
9fb9cbb1
YK
160}
161
162/* Connection tracking may drop packets, but never alters them, so
163 make it the first hook. */
1999414a 164static struct nf_hook_ops ipv4_conntrack_ops[] __read_mostly = {
964ddaa1
PM
165 {
166 .hook = ipv4_conntrack_in,
167 .owner = THIS_MODULE,
57750a22 168 .pf = NFPROTO_IPV4,
6e23ae2a 169 .hooknum = NF_INET_PRE_ROUTING,
964ddaa1
PM
170 .priority = NF_IP_PRI_CONNTRACK,
171 },
964ddaa1
PM
172 {
173 .hook = ipv4_conntrack_local,
174 .owner = THIS_MODULE,
57750a22 175 .pf = NFPROTO_IPV4,
6e23ae2a 176 .hooknum = NF_INET_LOCAL_OUT,
964ddaa1
PM
177 .priority = NF_IP_PRI_CONNTRACK,
178 },
964ddaa1
PM
179 {
180 .hook = ipv4_confirm,
181 .owner = THIS_MODULE,
57750a22 182 .pf = NFPROTO_IPV4,
6e23ae2a 183 .hooknum = NF_INET_POST_ROUTING,
964ddaa1
PM
184 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
185 },
186 {
187 .hook = ipv4_confirm,
188 .owner = THIS_MODULE,
57750a22 189 .pf = NFPROTO_IPV4,
6e23ae2a 190 .hooknum = NF_INET_LOCAL_IN,
964ddaa1
PM
191 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
192 },
9fb9cbb1
YK
193};
194
a999e683
PM
195#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
196static int log_invalid_proto_min = 0;
197static int log_invalid_proto_max = 255;
198
199static ctl_table ip_ct_sysctl_table[] = {
200 {
a999e683
PM
201 .procname = "ip_conntrack_max",
202 .data = &nf_conntrack_max,
203 .maxlen = sizeof(int),
204 .mode = 0644,
6d9f239a 205 .proc_handler = proc_dointvec,
a999e683
PM
206 },
207 {
a999e683 208 .procname = "ip_conntrack_count",
49ac8713 209 .data = &init_net.ct.count,
a999e683
PM
210 .maxlen = sizeof(int),
211 .mode = 0444,
6d9f239a 212 .proc_handler = proc_dointvec,
a999e683
PM
213 },
214 {
a999e683 215 .procname = "ip_conntrack_buckets",
d696c7bd 216 .data = &init_net.ct.htable_size,
a999e683
PM
217 .maxlen = sizeof(unsigned int),
218 .mode = 0444,
6d9f239a 219 .proc_handler = proc_dointvec,
a999e683
PM
220 },
221 {
a999e683 222 .procname = "ip_conntrack_checksum",
c04d0552 223 .data = &init_net.ct.sysctl_checksum,
a999e683
PM
224 .maxlen = sizeof(int),
225 .mode = 0644,
6d9f239a 226 .proc_handler = proc_dointvec,
a999e683
PM
227 },
228 {
a999e683 229 .procname = "ip_conntrack_log_invalid",
c2a2c7e0 230 .data = &init_net.ct.sysctl_log_invalid,
a999e683
PM
231 .maxlen = sizeof(unsigned int),
232 .mode = 0644,
6d9f239a 233 .proc_handler = proc_dointvec_minmax,
a999e683
PM
234 .extra1 = &log_invalid_proto_min,
235 .extra2 = &log_invalid_proto_max,
236 },
f8572d8f 237 { }
a999e683
PM
238};
239#endif /* CONFIG_SYSCTL && CONFIG_NF_CONNTRACK_PROC_COMPAT */
240
9fb9cbb1
YK
241/* Fast function for those who don't want to parse /proc (and I don't
242 blame them). */
243/* Reversing the socket's dst/src point of view gives us the reply
244 mapping. */
245static int
246getorigdst(struct sock *sk, int optval, void __user *user, int *len)
247{
32948588
JE
248 const struct inet_sock *inet = inet_sk(sk);
249 const struct nf_conntrack_tuple_hash *h;
9fb9cbb1 250 struct nf_conntrack_tuple tuple;
e905a9ed 251
443a70d5 252 memset(&tuple, 0, sizeof(tuple));
c720c7e8
ED
253 tuple.src.u3.ip = inet->inet_rcv_saddr;
254 tuple.src.u.tcp.port = inet->inet_sport;
255 tuple.dst.u3.ip = inet->inet_daddr;
256 tuple.dst.u.tcp.port = inet->inet_dport;
9fb9cbb1 257 tuple.src.l3num = PF_INET;
54981279 258 tuple.dst.protonum = sk->sk_protocol;
9fb9cbb1 259
54981279
RL
260 /* We only do TCP and SCTP at the moment: is there a better way? */
261 if (sk->sk_protocol != IPPROTO_TCP && sk->sk_protocol != IPPROTO_SCTP) {
262 pr_debug("SO_ORIGINAL_DST: Not a TCP/SCTP socket\n");
9fb9cbb1
YK
263 return -ENOPROTOOPT;
264 }
265
266 if ((unsigned int) *len < sizeof(struct sockaddr_in)) {
0d53778e
PM
267 pr_debug("SO_ORIGINAL_DST: len %d not %Zu\n",
268 *len, sizeof(struct sockaddr_in));
9fb9cbb1
YK
269 return -EINVAL;
270 }
271
5d0aa2cc 272 h = nf_conntrack_find_get(sock_net(sk), NF_CT_DEFAULT_ZONE, &tuple);
9fb9cbb1
YK
273 if (h) {
274 struct sockaddr_in sin;
275 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
276
277 sin.sin_family = AF_INET;
278 sin.sin_port = ct->tuplehash[IP_CT_DIR_ORIGINAL]
279 .tuple.dst.u.tcp.port;
280 sin.sin_addr.s_addr = ct->tuplehash[IP_CT_DIR_ORIGINAL]
281 .tuple.dst.u3.ip;
6c813c3f 282 memset(sin.sin_zero, 0, sizeof(sin.sin_zero));
9fb9cbb1 283
cffee385
HH
284 pr_debug("SO_ORIGINAL_DST: %pI4 %u\n",
285 &sin.sin_addr.s_addr, ntohs(sin.sin_port));
9fb9cbb1
YK
286 nf_ct_put(ct);
287 if (copy_to_user(user, &sin, sizeof(sin)) != 0)
288 return -EFAULT;
289 else
290 return 0;
291 }
cffee385
HH
292 pr_debug("SO_ORIGINAL_DST: Can't find %pI4/%u-%pI4/%u.\n",
293 &tuple.src.u3.ip, ntohs(tuple.src.u.tcp.port),
294 &tuple.dst.u3.ip, ntohs(tuple.dst.u.tcp.port));
9fb9cbb1
YK
295 return -ENOENT;
296}
297
e281db5c 298#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
c1d10adb
PNA
299
300#include <linux/netfilter/nfnetlink.h>
301#include <linux/netfilter/nfnetlink_conntrack.h>
302
fdf70832 303static int ipv4_tuple_to_nlattr(struct sk_buff *skb,
c1d10adb
PNA
304 const struct nf_conntrack_tuple *tuple)
305{
77236b6e
PM
306 NLA_PUT_BE32(skb, CTA_IP_V4_SRC, tuple->src.u3.ip);
307 NLA_PUT_BE32(skb, CTA_IP_V4_DST, tuple->dst.u3.ip);
c1d10adb
PNA
308 return 0;
309
df6fb868 310nla_put_failure:
c1d10adb
PNA
311 return -1;
312}
313
f73e924c
PM
314static const struct nla_policy ipv4_nla_policy[CTA_IP_MAX+1] = {
315 [CTA_IP_V4_SRC] = { .type = NLA_U32 },
316 [CTA_IP_V4_DST] = { .type = NLA_U32 },
c1d10adb
PNA
317};
318
fdf70832 319static int ipv4_nlattr_to_tuple(struct nlattr *tb[],
c1d10adb
PNA
320 struct nf_conntrack_tuple *t)
321{
df6fb868 322 if (!tb[CTA_IP_V4_SRC] || !tb[CTA_IP_V4_DST])
c1d10adb
PNA
323 return -EINVAL;
324
77236b6e
PM
325 t->src.u3.ip = nla_get_be32(tb[CTA_IP_V4_SRC]);
326 t->dst.u3.ip = nla_get_be32(tb[CTA_IP_V4_DST]);
c1d10adb
PNA
327
328 return 0;
329}
a400c30e
HE
330
331static int ipv4_nlattr_tuple_size(void)
332{
333 return nla_policy_len(ipv4_nla_policy, CTA_IP_MAX + 1);
334}
c1d10adb
PNA
335#endif
336
9fb9cbb1
YK
337static struct nf_sockopt_ops so_getorigdst = {
338 .pf = PF_INET,
339 .get_optmin = SO_ORIGINAL_DST,
340 .get_optmax = SO_ORIGINAL_DST+1,
341 .get = &getorigdst,
16fcec35 342 .owner = THIS_MODULE,
9fb9cbb1
YK
343};
344
61075af5 345struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv4 __read_mostly = {
9fb9cbb1
YK
346 .l3proto = PF_INET,
347 .name = "ipv4",
348 .pkt_to_tuple = ipv4_pkt_to_tuple,
349 .invert_tuple = ipv4_invert_tuple,
350 .print_tuple = ipv4_print_tuple,
ffc30690 351 .get_l4proto = ipv4_get_l4proto,
e281db5c 352#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
fdf70832 353 .tuple_to_nlattr = ipv4_tuple_to_nlattr,
a400c30e 354 .nlattr_tuple_size = ipv4_nlattr_tuple_size,
fdf70832 355 .nlattr_to_tuple = ipv4_nlattr_to_tuple,
f73e924c 356 .nla_policy = ipv4_nla_policy,
a999e683
PM
357#endif
358#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
359 .ctl_table_path = nf_net_ipv4_netfilter_sysctl_path,
360 .ctl_table = ip_ct_sysctl_table,
c1d10adb 361#endif
9fb9cbb1
YK
362 .me = THIS_MODULE,
363};
364
fae718dd
PM
365module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
366 &nf_conntrack_htable_size, 0600);
367
32292a7f 368MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET));
d2483dde 369MODULE_ALIAS("ip_conntrack");
32292a7f
PM
370MODULE_LICENSE("GPL");
371
372static int __init nf_conntrack_l3proto_ipv4_init(void)
9fb9cbb1
YK
373{
374 int ret = 0;
375
32292a7f 376 need_conntrack();
73e4022f 377 nf_defrag_ipv4_enable();
9fb9cbb1
YK
378
379 ret = nf_register_sockopt(&so_getorigdst);
380 if (ret < 0) {
381 printk(KERN_ERR "Unable to register netfilter socket option\n");
32292a7f 382 return ret;
9fb9cbb1
YK
383 }
384
605dcad6 385 ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_tcp4);
9fb9cbb1 386 if (ret < 0) {
654d0fbd 387 pr_err("nf_conntrack_ipv4: can't register tcp.\n");
9fb9cbb1
YK
388 goto cleanup_sockopt;
389 }
390
605dcad6 391 ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_udp4);
9fb9cbb1 392 if (ret < 0) {
654d0fbd 393 pr_err("nf_conntrack_ipv4: can't register udp.\n");
9fb9cbb1
YK
394 goto cleanup_tcp;
395 }
396
605dcad6 397 ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_icmp);
9fb9cbb1 398 if (ret < 0) {
654d0fbd 399 pr_err("nf_conntrack_ipv4: can't register icmp.\n");
9fb9cbb1
YK
400 goto cleanup_udp;
401 }
402
403 ret = nf_conntrack_l3proto_register(&nf_conntrack_l3proto_ipv4);
404 if (ret < 0) {
654d0fbd 405 pr_err("nf_conntrack_ipv4: can't register ipv4\n");
9fb9cbb1
YK
406 goto cleanup_icmp;
407 }
408
964ddaa1
PM
409 ret = nf_register_hooks(ipv4_conntrack_ops,
410 ARRAY_SIZE(ipv4_conntrack_ops));
9fb9cbb1 411 if (ret < 0) {
654d0fbd 412 pr_err("nf_conntrack_ipv4: can't register hooks.\n");
9fb9cbb1
YK
413 goto cleanup_ipv4;
414 }
e4bd8bce
PM
415#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
416 ret = nf_conntrack_ipv4_compat_init();
417 if (ret < 0)
418 goto cleanup_hooks;
419#endif
9fb9cbb1 420 return ret;
e4bd8bce
PM
421#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
422 cleanup_hooks:
e905a9ed 423 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
e4bd8bce 424#endif
9fb9cbb1
YK
425 cleanup_ipv4:
426 nf_conntrack_l3proto_unregister(&nf_conntrack_l3proto_ipv4);
427 cleanup_icmp:
605dcad6 428 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_icmp);
9fb9cbb1 429 cleanup_udp:
605dcad6 430 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udp4);
9fb9cbb1 431 cleanup_tcp:
605dcad6 432 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_tcp4);
9fb9cbb1
YK
433 cleanup_sockopt:
434 nf_unregister_sockopt(&so_getorigdst);
9fb9cbb1
YK
435 return ret;
436}
437
65b4b4e8 438static void __exit nf_conntrack_l3proto_ipv4_fini(void)
9fb9cbb1 439{
32292a7f 440 synchronize_net();
e4bd8bce
PM
441#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
442 nf_conntrack_ipv4_compat_fini();
443#endif
32292a7f
PM
444 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
445 nf_conntrack_l3proto_unregister(&nf_conntrack_l3proto_ipv4);
605dcad6
MJ
446 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_icmp);
447 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udp4);
448 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_tcp4);
32292a7f 449 nf_unregister_sockopt(&so_getorigdst);
9fb9cbb1
YK
450}
451
65b4b4e8
AM
452module_init(nf_conntrack_l3proto_ipv4_init);
453module_exit(nf_conntrack_l3proto_ipv4_fini);
591e6206
PM
454
455void need_ipv4_conntrack(void)
456{
457 return;
458}
459EXPORT_SYMBOL_GPL(need_ipv4_conntrack);
This page took 0.597859 seconds and 5 git commands to generate.