From: Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> Since pernet hooks, we need to register the hook for each netnamespace space. Signed-off-by: Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> Signed-off-by: Eric W Biederman <ebiederm@xxxxxxxxxxxx> --- security/selinux/hooks.c | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 21a5e07b6834..f8db1d2ce9c2 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -6147,6 +6147,22 @@ static struct nf_hook_ops selinux_nf_ops[] = { #endif /* IPV6 */ }; +static int selinux_net_init(struct net *net) +{ + return nf_register_hooks(net, selinux_nf_ops, + ARRAY_SIZE(selinux_nf_ops)); +} + +static void selinux_net_exit(struct net *net) +{ + nf_unregister_hooks(net, selinux_nf_ops, ARRAY_SIZE(selinux_nf_ops)); +} + +static struct pernet_operations selinux_net_ops = { + .init = selinux_net_init, + .exit = selinux_net_exit, +}; + static int __init selinux_nf_ip_init(void) { int err; @@ -6156,8 +6172,7 @@ static int __init selinux_nf_ip_init(void) printk(KERN_DEBUG "SELinux: Registering netfilter hooks\n"); - err = nf_register_hooks(&init_net, selinux_nf_ops, - ARRAY_SIZE(selinux_nf_ops)); + err = register_pernet_subsys(&selinux_net_ops); if (err) panic("SELinux: nf_register_hooks: error %d\n", err); @@ -6171,7 +6186,7 @@ static void selinux_nf_ip_exit(void) { printk(KERN_DEBUG "SELinux: Unregistering netfilter hooks\n"); - nf_unregister_hooks(&init_net, selinux_nf_ops, ARRAY_SIZE(selinux_nf_ops)); + unregister_pernet_subsys(&selinux_net_ops); } #endif -- 2.2.1 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html