netlink: implement nla_get_in_addr and nla_get_in6_addr
[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
795aa6ef 95static unsigned int ipv4_helper(const struct nf_hook_ops *ops,
12f7a505
PNA
96 struct sk_buff *skb,
97 const struct net_device *in,
98 const struct net_device *out,
99 int (*okfn)(struct sk_buff *))
9fb9cbb1
YK
100{
101 struct nf_conn *ct;
102 enum ip_conntrack_info ctinfo;
32948588
JE
103 const struct nf_conn_help *help;
104 const struct nf_conntrack_helper *helper;
9fb9cbb1
YK
105
106 /* This is where we call the helper: as the packet goes out. */
3db05fea 107 ct = nf_ct_get(skb, &ctinfo);
fb048833 108 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
12f7a505 109 return NF_ACCEPT;
dc808fe2
HW
110
111 help = nfct_help(ct);
3c158f7f 112 if (!help)
12f7a505 113 return NF_ACCEPT;
dd13b010 114
3c158f7f
PM
115 /* rcu_read_lock()ed by nf_hook_slow */
116 helper = rcu_dereference(help->helper);
117 if (!helper)
12f7a505 118 return NF_ACCEPT;
dd13b010 119
b20ab9cc
PNA
120 return helper->help(skb, skb_network_offset(skb) + ip_hdrlen(skb),
121 ct, ctinfo);
12f7a505
PNA
122}
123
795aa6ef 124static unsigned int ipv4_confirm(const struct nf_hook_ops *ops,
12f7a505
PNA
125 struct sk_buff *skb,
126 const struct net_device *in,
127 const struct net_device *out,
128 int (*okfn)(struct sk_buff *))
129{
130 struct nf_conn *ct;
131 enum ip_conntrack_info ctinfo;
132
133 ct = nf_ct_get(skb, &ctinfo);
134 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
135 goto out;
dd13b010 136
42c1edd3
JA
137 /* adjust seqs for loopback traffic only in outgoing direction */
138 if (test_bit(IPS_SEQ_ADJUST_BIT, &ct->status) &&
139 !nf_is_loopback_packet(skb)) {
41d73ec0 140 if (!nf_ct_seq_adjust(skb, ct, ctinfo, ip_hdrlen(skb))) {
1db7a748 141 NF_CT_STAT_INC_ATOMIC(nf_ct_net(ct), drop);
dd13b010 142 return NF_DROP;
1db7a748 143 }
dd13b010
PM
144 }
145out:
146 /* We've seen it coming out the other side: confirm it */
147 return nf_conntrack_confirm(skb);
9fb9cbb1
YK
148}
149
795aa6ef 150static unsigned int ipv4_conntrack_in(const struct nf_hook_ops *ops,
3db05fea 151 struct sk_buff *skb,
9fb9cbb1
YK
152 const struct net_device *in,
153 const struct net_device *out,
154 int (*okfn)(struct sk_buff *))
155{
795aa6ef 156 return nf_conntrack_in(dev_net(in), PF_INET, ops->hooknum, skb);
9fb9cbb1
YK
157}
158
795aa6ef 159static unsigned int ipv4_conntrack_local(const struct nf_hook_ops *ops,
3db05fea 160 struct sk_buff *skb,
e905a9ed
YH
161 const struct net_device *in,
162 const struct net_device *out,
163 int (*okfn)(struct sk_buff *))
9fb9cbb1
YK
164{
165 /* root is playing with raw sockets. */
3db05fea 166 if (skb->len < sizeof(struct iphdr) ||
88843104 167 ip_hdrlen(skb) < sizeof(struct iphdr))
9fb9cbb1 168 return NF_ACCEPT;
795aa6ef 169 return nf_conntrack_in(dev_net(out), PF_INET, ops->hooknum, skb);
9fb9cbb1
YK
170}
171
172/* Connection tracking may drop packets, but never alters them, so
173 make it the first hook. */
1999414a 174static struct nf_hook_ops ipv4_conntrack_ops[] __read_mostly = {
964ddaa1
PM
175 {
176 .hook = ipv4_conntrack_in,
177 .owner = THIS_MODULE,
57750a22 178 .pf = NFPROTO_IPV4,
6e23ae2a 179 .hooknum = NF_INET_PRE_ROUTING,
964ddaa1
PM
180 .priority = NF_IP_PRI_CONNTRACK,
181 },
964ddaa1
PM
182 {
183 .hook = ipv4_conntrack_local,
184 .owner = THIS_MODULE,
57750a22 185 .pf = NFPROTO_IPV4,
6e23ae2a 186 .hooknum = NF_INET_LOCAL_OUT,
964ddaa1
PM
187 .priority = NF_IP_PRI_CONNTRACK,
188 },
12f7a505
PNA
189 {
190 .hook = ipv4_helper,
191 .owner = THIS_MODULE,
192 .pf = NFPROTO_IPV4,
193 .hooknum = NF_INET_POST_ROUTING,
194 .priority = NF_IP_PRI_CONNTRACK_HELPER,
195 },
964ddaa1
PM
196 {
197 .hook = ipv4_confirm,
198 .owner = THIS_MODULE,
57750a22 199 .pf = NFPROTO_IPV4,
6e23ae2a 200 .hooknum = NF_INET_POST_ROUTING,
964ddaa1
PM
201 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
202 },
12f7a505
PNA
203 {
204 .hook = ipv4_helper,
205 .owner = THIS_MODULE,
206 .pf = NFPROTO_IPV4,
207 .hooknum = NF_INET_LOCAL_IN,
208 .priority = NF_IP_PRI_CONNTRACK_HELPER,
209 },
964ddaa1
PM
210 {
211 .hook = ipv4_confirm,
212 .owner = THIS_MODULE,
57750a22 213 .pf = NFPROTO_IPV4,
6e23ae2a 214 .hooknum = NF_INET_LOCAL_IN,
964ddaa1
PM
215 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
216 },
9fb9cbb1
YK
217};
218
a999e683
PM
219#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
220static int log_invalid_proto_min = 0;
221static int log_invalid_proto_max = 255;
222
fe2c6338 223static struct ctl_table ip_ct_sysctl_table[] = {
a999e683 224 {
a999e683 225 .procname = "ip_conntrack_max",
a999e683
PM
226 .maxlen = sizeof(int),
227 .mode = 0644,
6d9f239a 228 .proc_handler = proc_dointvec,
a999e683
PM
229 },
230 {
a999e683 231 .procname = "ip_conntrack_count",
a999e683
PM
232 .maxlen = sizeof(int),
233 .mode = 0444,
6d9f239a 234 .proc_handler = proc_dointvec,
a999e683
PM
235 },
236 {
a999e683 237 .procname = "ip_conntrack_buckets",
a999e683
PM
238 .maxlen = sizeof(unsigned int),
239 .mode = 0444,
6d9f239a 240 .proc_handler = proc_dointvec,
a999e683
PM
241 },
242 {
a999e683 243 .procname = "ip_conntrack_checksum",
a999e683
PM
244 .maxlen = sizeof(int),
245 .mode = 0644,
6d9f239a 246 .proc_handler = proc_dointvec,
a999e683
PM
247 },
248 {
a999e683 249 .procname = "ip_conntrack_log_invalid",
a999e683
PM
250 .maxlen = sizeof(unsigned int),
251 .mode = 0644,
6d9f239a 252 .proc_handler = proc_dointvec_minmax,
a999e683
PM
253 .extra1 = &log_invalid_proto_min,
254 .extra2 = &log_invalid_proto_max,
255 },
f8572d8f 256 { }
a999e683
PM
257};
258#endif /* CONFIG_SYSCTL && CONFIG_NF_CONNTRACK_PROC_COMPAT */
259
9fb9cbb1
YK
260/* Fast function for those who don't want to parse /proc (and I don't
261 blame them). */
262/* Reversing the socket's dst/src point of view gives us the reply
263 mapping. */
264static int
265getorigdst(struct sock *sk, int optval, void __user *user, int *len)
266{
32948588
JE
267 const struct inet_sock *inet = inet_sk(sk);
268 const struct nf_conntrack_tuple_hash *h;
9fb9cbb1 269 struct nf_conntrack_tuple tuple;
e905a9ed 270
443a70d5 271 memset(&tuple, 0, sizeof(tuple));
c720c7e8
ED
272 tuple.src.u3.ip = inet->inet_rcv_saddr;
273 tuple.src.u.tcp.port = inet->inet_sport;
274 tuple.dst.u3.ip = inet->inet_daddr;
275 tuple.dst.u.tcp.port = inet->inet_dport;
9fb9cbb1 276 tuple.src.l3num = PF_INET;
54981279 277 tuple.dst.protonum = sk->sk_protocol;
9fb9cbb1 278
54981279
RL
279 /* We only do TCP and SCTP at the moment: is there a better way? */
280 if (sk->sk_protocol != IPPROTO_TCP && sk->sk_protocol != IPPROTO_SCTP) {
281 pr_debug("SO_ORIGINAL_DST: Not a TCP/SCTP socket\n");
9fb9cbb1
YK
282 return -ENOPROTOOPT;
283 }
284
285 if ((unsigned int) *len < sizeof(struct sockaddr_in)) {
0d53778e
PM
286 pr_debug("SO_ORIGINAL_DST: len %d not %Zu\n",
287 *len, sizeof(struct sockaddr_in));
9fb9cbb1
YK
288 return -EINVAL;
289 }
290
5d0aa2cc 291 h = nf_conntrack_find_get(sock_net(sk), NF_CT_DEFAULT_ZONE, &tuple);
9fb9cbb1
YK
292 if (h) {
293 struct sockaddr_in sin;
294 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
295
296 sin.sin_family = AF_INET;
297 sin.sin_port = ct->tuplehash[IP_CT_DIR_ORIGINAL]
298 .tuple.dst.u.tcp.port;
299 sin.sin_addr.s_addr = ct->tuplehash[IP_CT_DIR_ORIGINAL]
300 .tuple.dst.u3.ip;
6c813c3f 301 memset(sin.sin_zero, 0, sizeof(sin.sin_zero));
9fb9cbb1 302
cffee385
HH
303 pr_debug("SO_ORIGINAL_DST: %pI4 %u\n",
304 &sin.sin_addr.s_addr, ntohs(sin.sin_port));
9fb9cbb1
YK
305 nf_ct_put(ct);
306 if (copy_to_user(user, &sin, sizeof(sin)) != 0)
307 return -EFAULT;
308 else
309 return 0;
310 }
cffee385
HH
311 pr_debug("SO_ORIGINAL_DST: Can't find %pI4/%u-%pI4/%u.\n",
312 &tuple.src.u3.ip, ntohs(tuple.src.u.tcp.port),
313 &tuple.dst.u3.ip, ntohs(tuple.dst.u.tcp.port));
9fb9cbb1
YK
314 return -ENOENT;
315}
316
24de3d37 317#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
c1d10adb
PNA
318
319#include <linux/netfilter/nfnetlink.h>
320#include <linux/netfilter/nfnetlink_conntrack.h>
321
fdf70832 322static int ipv4_tuple_to_nlattr(struct sk_buff *skb,
c1d10adb
PNA
323 const struct nf_conntrack_tuple *tuple)
324{
930345ea
JB
325 if (nla_put_in_addr(skb, CTA_IP_V4_SRC, tuple->src.u3.ip) ||
326 nla_put_in_addr(skb, CTA_IP_V4_DST, tuple->dst.u3.ip))
d317e4f6 327 goto nla_put_failure;
c1d10adb
PNA
328 return 0;
329
df6fb868 330nla_put_failure:
c1d10adb
PNA
331 return -1;
332}
333
f73e924c
PM
334static const struct nla_policy ipv4_nla_policy[CTA_IP_MAX+1] = {
335 [CTA_IP_V4_SRC] = { .type = NLA_U32 },
336 [CTA_IP_V4_DST] = { .type = NLA_U32 },
c1d10adb
PNA
337};
338
fdf70832 339static int ipv4_nlattr_to_tuple(struct nlattr *tb[],
c1d10adb
PNA
340 struct nf_conntrack_tuple *t)
341{
df6fb868 342 if (!tb[CTA_IP_V4_SRC] || !tb[CTA_IP_V4_DST])
c1d10adb
PNA
343 return -EINVAL;
344
67b61f6c
JB
345 t->src.u3.ip = nla_get_in_addr(tb[CTA_IP_V4_SRC]);
346 t->dst.u3.ip = nla_get_in_addr(tb[CTA_IP_V4_DST]);
c1d10adb
PNA
347
348 return 0;
349}
a400c30e
HE
350
351static int ipv4_nlattr_tuple_size(void)
352{
353 return nla_policy_len(ipv4_nla_policy, CTA_IP_MAX + 1);
354}
c1d10adb
PNA
355#endif
356
9fb9cbb1
YK
357static struct nf_sockopt_ops so_getorigdst = {
358 .pf = PF_INET,
359 .get_optmin = SO_ORIGINAL_DST,
360 .get_optmax = SO_ORIGINAL_DST+1,
5bd3a76f 361 .get = getorigdst,
16fcec35 362 .owner = THIS_MODULE,
9fb9cbb1
YK
363};
364
3ea04dd3
G
365static int ipv4_init_net(struct net *net)
366{
367#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
368 struct nf_ip_net *in = &net->ct.nf_ct_proto;
369 in->ctl_table = kmemdup(ip_ct_sysctl_table,
370 sizeof(ip_ct_sysctl_table),
371 GFP_KERNEL);
372 if (!in->ctl_table)
373 return -ENOMEM;
374
375 in->ctl_table[0].data = &nf_conntrack_max;
376 in->ctl_table[1].data = &net->ct.count;
377 in->ctl_table[2].data = &net->ct.htable_size;
378 in->ctl_table[3].data = &net->ct.sysctl_checksum;
379 in->ctl_table[4].data = &net->ct.sysctl_log_invalid;
380#endif
381 return 0;
382}
383
61075af5 384struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv4 __read_mostly = {
9fb9cbb1
YK
385 .l3proto = PF_INET,
386 .name = "ipv4",
387 .pkt_to_tuple = ipv4_pkt_to_tuple,
388 .invert_tuple = ipv4_invert_tuple,
389 .print_tuple = ipv4_print_tuple,
ffc30690 390 .get_l4proto = ipv4_get_l4proto,
24de3d37 391#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
fdf70832 392 .tuple_to_nlattr = ipv4_tuple_to_nlattr,
a400c30e 393 .nlattr_tuple_size = ipv4_nlattr_tuple_size,
fdf70832 394 .nlattr_to_tuple = ipv4_nlattr_to_tuple,
f73e924c 395 .nla_policy = ipv4_nla_policy,
a999e683
PM
396#endif
397#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
f99e8f71 398 .ctl_table_path = "net/ipv4/netfilter",
c1d10adb 399#endif
3ea04dd3 400 .init_net = ipv4_init_net,
9fb9cbb1
YK
401 .me = THIS_MODULE,
402};
403
fae718dd
PM
404module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
405 &nf_conntrack_htable_size, 0600);
406
32292a7f 407MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET));
d2483dde 408MODULE_ALIAS("ip_conntrack");
32292a7f
PM
409MODULE_LICENSE("GPL");
410
3ea04dd3
G
411static int ipv4_net_init(struct net *net)
412{
413 int ret = 0;
414
c296bb4d 415 ret = nf_ct_l4proto_pernet_register(net, &nf_conntrack_l4proto_tcp4);
3ea04dd3 416 if (ret < 0) {
c296bb4d 417 pr_err("nf_conntrack_tcp4: pernet registration failed\n");
3ea04dd3
G
418 goto out_tcp;
419 }
c296bb4d 420 ret = nf_ct_l4proto_pernet_register(net, &nf_conntrack_l4proto_udp4);
3ea04dd3 421 if (ret < 0) {
c296bb4d 422 pr_err("nf_conntrack_udp4: pernet registration failed\n");
3ea04dd3
G
423 goto out_udp;
424 }
c296bb4d 425 ret = nf_ct_l4proto_pernet_register(net, &nf_conntrack_l4proto_icmp);
3ea04dd3 426 if (ret < 0) {
c296bb4d 427 pr_err("nf_conntrack_icmp4: pernet registration failed\n");
3ea04dd3
G
428 goto out_icmp;
429 }
6330750d 430 ret = nf_ct_l3proto_pernet_register(net, &nf_conntrack_l3proto_ipv4);
3ea04dd3 431 if (ret < 0) {
6330750d 432 pr_err("nf_conntrack_ipv4: pernet registration failed\n");
3ea04dd3
G
433 goto out_ipv4;
434 }
435 return 0;
436out_ipv4:
c296bb4d 437 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_icmp);
3ea04dd3 438out_icmp:
c296bb4d 439 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_udp4);
3ea04dd3 440out_udp:
c296bb4d 441 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_tcp4);
3ea04dd3
G
442out_tcp:
443 return ret;
444}
445
446static void ipv4_net_exit(struct net *net)
447{
6330750d 448 nf_ct_l3proto_pernet_unregister(net, &nf_conntrack_l3proto_ipv4);
c296bb4d
G
449 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_icmp);
450 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_udp4);
451 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_tcp4);
3ea04dd3
G
452}
453
454static struct pernet_operations ipv4_net_ops = {
455 .init = ipv4_net_init,
456 .exit = ipv4_net_exit,
457};
458
32292a7f 459static int __init nf_conntrack_l3proto_ipv4_init(void)
9fb9cbb1
YK
460{
461 int ret = 0;
462
32292a7f 463 need_conntrack();
73e4022f 464 nf_defrag_ipv4_enable();
9fb9cbb1
YK
465
466 ret = nf_register_sockopt(&so_getorigdst);
467 if (ret < 0) {
468 printk(KERN_ERR "Unable to register netfilter socket option\n");
32292a7f 469 return ret;
9fb9cbb1
YK
470 }
471
3ea04dd3 472 ret = register_pernet_subsys(&ipv4_net_ops);
9fb9cbb1 473 if (ret < 0) {
3ea04dd3 474 pr_err("nf_conntrack_ipv4: can't register pernet ops\n");
9fb9cbb1
YK
475 goto cleanup_sockopt;
476 }
477
964ddaa1
PM
478 ret = nf_register_hooks(ipv4_conntrack_ops,
479 ARRAY_SIZE(ipv4_conntrack_ops));
9fb9cbb1 480 if (ret < 0) {
654d0fbd 481 pr_err("nf_conntrack_ipv4: can't register hooks.\n");
3ea04dd3 482 goto cleanup_pernet;
9fb9cbb1 483 }
6330750d 484
c296bb4d
G
485 ret = nf_ct_l4proto_register(&nf_conntrack_l4proto_tcp4);
486 if (ret < 0) {
487 pr_err("nf_conntrack_ipv4: can't register tcp4 proto.\n");
488 goto cleanup_hooks;
489 }
490
491 ret = nf_ct_l4proto_register(&nf_conntrack_l4proto_udp4);
492 if (ret < 0) {
493 pr_err("nf_conntrack_ipv4: can't register udp4 proto.\n");
494 goto cleanup_tcp4;
495 }
496
497 ret = nf_ct_l4proto_register(&nf_conntrack_l4proto_icmp);
498 if (ret < 0) {
499 pr_err("nf_conntrack_ipv4: can't register icmpv4 proto.\n");
500 goto cleanup_udp4;
501 }
502
6330750d
G
503 ret = nf_ct_l3proto_register(&nf_conntrack_l3proto_ipv4);
504 if (ret < 0) {
505 pr_err("nf_conntrack_ipv4: can't register ipv4 proto.\n");
c296bb4d 506 goto cleanup_icmpv4;
6330750d
G
507 }
508
e4bd8bce
PM
509#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
510 ret = nf_conntrack_ipv4_compat_init();
511 if (ret < 0)
6330750d 512 goto cleanup_proto;
e4bd8bce 513#endif
9fb9cbb1 514 return ret;
e4bd8bce 515#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
6330750d
G
516 cleanup_proto:
517 nf_ct_l3proto_unregister(&nf_conntrack_l3proto_ipv4);
518#endif
c296bb4d
G
519 cleanup_icmpv4:
520 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_icmp);
521 cleanup_udp4:
522 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_udp4);
523 cleanup_tcp4:
524 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_tcp4);
e4bd8bce 525 cleanup_hooks:
e905a9ed 526 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
3ea04dd3
G
527 cleanup_pernet:
528 unregister_pernet_subsys(&ipv4_net_ops);
9fb9cbb1
YK
529 cleanup_sockopt:
530 nf_unregister_sockopt(&so_getorigdst);
9fb9cbb1
YK
531 return ret;
532}
533
65b4b4e8 534static void __exit nf_conntrack_l3proto_ipv4_fini(void)
9fb9cbb1 535{
32292a7f 536 synchronize_net();
e4bd8bce
PM
537#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
538 nf_conntrack_ipv4_compat_fini();
539#endif
6330750d 540 nf_ct_l3proto_unregister(&nf_conntrack_l3proto_ipv4);
c296bb4d
G
541 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_icmp);
542 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_udp4);
543 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_tcp4);
32292a7f 544 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
3ea04dd3 545 unregister_pernet_subsys(&ipv4_net_ops);
32292a7f 546 nf_unregister_sockopt(&so_getorigdst);
9fb9cbb1
YK
547}
548
65b4b4e8
AM
549module_init(nf_conntrack_l3proto_ipv4_init);
550module_exit(nf_conntrack_l3proto_ipv4_fini);
This page took 1.091045 seconds and 5 git commands to generate.