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