blob: 1c4b75dd425b8e7fe421df37e215534a6eb19584 [file] [log] [blame]
Tomasz Bursztykaeb316282013-10-10 13:39:19 +02001/*
2 * Copyright (c) 2011 Patrick McHardy <kaber@trash.net>
3 * Copyright (c) 2012 Intel Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 */
10
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/list.h>
14#include <linux/skbuff.h>
15#include <linux/ip.h>
16#include <linux/netfilter.h>
17#include <linux/netfilter_ipv6.h>
18#include <linux/netfilter/nf_tables.h>
19#include <net/netfilter/nf_conntrack.h>
20#include <net/netfilter/nf_nat.h>
21#include <net/netfilter/nf_nat_core.h>
22#include <net/netfilter/nf_tables.h>
23#include <net/netfilter/nf_tables_ipv6.h>
24#include <net/netfilter/nf_nat_l3proto.h>
25#include <net/ipv6.h>
26
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020027static unsigned int nft_nat_do_chain(const struct nf_hook_ops *ops,
28 struct sk_buff *skb,
29 const struct net_device *in,
30 const struct net_device *out,
31 struct nf_conn *ct)
32{
33 struct nft_pktinfo pkt;
34
35 nft_set_pktinfo_ipv6(&pkt, ops, skb, in, out);
36
37 return nft_do_chain(&pkt, ops);
38}
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020039
Pablo Neira Ayuso2a5538e2014-08-25 12:05:27 +020040static unsigned int nft_nat_ipv6_fn(const struct nf_hook_ops *ops,
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020041 struct sk_buff *skb,
42 const struct net_device *in,
43 const struct net_device *out,
44 int (*okfn)(struct sk_buff *))
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020045{
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020046 return nf_nat_ipv6_fn(ops, skb, in, out, nft_nat_do_chain);
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020047}
48
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020049static unsigned int nft_nat_ipv6_in(const struct nf_hook_ops *ops,
50 struct sk_buff *skb,
51 const struct net_device *in,
52 const struct net_device *out,
53 int (*okfn)(struct sk_buff *))
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020054{
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020055 return nf_nat_ipv6_in(ops, skb, in, out, nft_nat_do_chain);
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020056}
57
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020058static unsigned int nft_nat_ipv6_out(const struct nf_hook_ops *ops,
59 struct sk_buff *skb,
60 const struct net_device *in,
61 const struct net_device *out,
62 int (*okfn)(struct sk_buff *))
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020063{
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020064 return nf_nat_ipv6_out(ops, skb, in, out, nft_nat_do_chain);
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020065}
66
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020067static unsigned int nft_nat_ipv6_local_fn(const struct nf_hook_ops *ops,
68 struct sk_buff *skb,
69 const struct net_device *in,
70 const struct net_device *out,
71 int (*okfn)(struct sk_buff *))
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020072{
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020073 return nf_nat_ipv6_local_fn(ops, skb, in, out, nft_nat_do_chain);
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020074}
75
Patrick McHardy2a37d752014-01-09 18:42:37 +000076static const struct nf_chain_type nft_chain_nat_ipv6 = {
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020077 .name = "nat",
78 .type = NFT_CHAIN_T_NAT,
Patrick McHardyfa2c1de2014-01-09 18:42:38 +000079 .family = NFPROTO_IPV6,
80 .owner = THIS_MODULE,
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020081 .hook_mask = (1 << NF_INET_PRE_ROUTING) |
82 (1 << NF_INET_POST_ROUTING) |
83 (1 << NF_INET_LOCAL_OUT) |
84 (1 << NF_INET_LOCAL_IN),
Patrick McHardyfa2c1de2014-01-09 18:42:38 +000085 .hooks = {
Pablo Neira Ayuso876665e2014-09-09 16:31:09 +020086 [NF_INET_PRE_ROUTING] = nft_nat_ipv6_in,
87 [NF_INET_POST_ROUTING] = nft_nat_ipv6_out,
88 [NF_INET_LOCAL_OUT] = nft_nat_ipv6_local_fn,
Pablo Neira Ayuso2a5538e2014-08-25 12:05:27 +020089 [NF_INET_LOCAL_IN] = nft_nat_ipv6_fn,
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020090 },
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020091};
92
93static int __init nft_chain_nat_ipv6_init(void)
94{
95 int err;
96
97 err = nft_register_chain_type(&nft_chain_nat_ipv6);
98 if (err < 0)
99 return err;
100
101 return 0;
102}
103
104static void __exit nft_chain_nat_ipv6_exit(void)
105{
106 nft_unregister_chain_type(&nft_chain_nat_ipv6);
107}
108
109module_init(nft_chain_nat_ipv6_init);
110module_exit(nft_chain_nat_ipv6_exit);
111
112MODULE_LICENSE("GPL");
113MODULE_AUTHOR("Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>");
114MODULE_ALIAS_NFT_CHAIN(AF_INET6, "nat");