mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 04:06:22 +00:00
netfilter: netns: ip6table_raw in netns for real
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
parent
48dc7865aa
commit
1339dd9171
1 changed files with 16 additions and 4 deletions
|
@ -45,25 +45,37 @@ static struct xt_table packet_raw = {
|
||||||
|
|
||||||
/* The work comes in here from netfilter.c. */
|
/* The work comes in here from netfilter.c. */
|
||||||
static unsigned int
|
static unsigned int
|
||||||
ip6t_hook(unsigned int hook,
|
ip6t_pre_routing_hook(unsigned int hook,
|
||||||
struct sk_buff *skb,
|
struct sk_buff *skb,
|
||||||
const struct net_device *in,
|
const struct net_device *in,
|
||||||
const struct net_device *out,
|
const struct net_device *out,
|
||||||
int (*okfn)(struct sk_buff *))
|
int (*okfn)(struct sk_buff *))
|
||||||
{
|
{
|
||||||
return ip6t_do_table(skb, hook, in, out, init_net.ipv6.ip6table_raw);
|
return ip6t_do_table(skb, hook, in, out,
|
||||||
|
dev_net(in)->ipv6.ip6table_raw);
|
||||||
|
}
|
||||||
|
|
||||||
|
static unsigned int
|
||||||
|
ip6t_local_out_hook(unsigned int hook,
|
||||||
|
struct sk_buff *skb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
int (*okfn)(struct sk_buff *))
|
||||||
|
{
|
||||||
|
return ip6t_do_table(skb, hook, in, out,
|
||||||
|
dev_net(out)->ipv6.ip6table_raw);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct nf_hook_ops ip6t_ops[] __read_mostly = {
|
static struct nf_hook_ops ip6t_ops[] __read_mostly = {
|
||||||
{
|
{
|
||||||
.hook = ip6t_hook,
|
.hook = ip6t_pre_routing_hook,
|
||||||
.pf = PF_INET6,
|
.pf = PF_INET6,
|
||||||
.hooknum = NF_INET_PRE_ROUTING,
|
.hooknum = NF_INET_PRE_ROUTING,
|
||||||
.priority = NF_IP6_PRI_FIRST,
|
.priority = NF_IP6_PRI_FIRST,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.hook = ip6t_hook,
|
.hook = ip6t_local_out_hook,
|
||||||
.pf = PF_INET6,
|
.pf = PF_INET6,
|
||||||
.hooknum = NF_INET_LOCAL_OUT,
|
.hooknum = NF_INET_LOCAL_OUT,
|
||||||
.priority = NF_IP6_PRI_FIRST,
|
.priority = NF_IP6_PRI_FIRST,
|
||||||
|
|
Loading…
Reference in a new issue