Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78757
b: refs/heads/master
c: e0da5a4
h: refs/heads/master
i:
  78755: bb04a5c
v: v3
  • Loading branch information
Pavel Emelyanov authored and David S. Miller committed Jan 28, 2008
1 parent 436dfb9 commit 0e31e99
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bff16c2f991386883dc81ec969ba15eb270a0c7f
refs/heads/master: e0da5a480cafc7ca228d6b5a05dbd77344a6bd29
2 changes: 2 additions & 0 deletions trunk/include/net/netns/ipv6.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@ struct netns_sysctl_ipv6 {

struct netns_ipv6 {
struct netns_sysctl_ipv6 sysctl;
struct ipv6_devconf *devconf_all;
struct ipv6_devconf *devconf_dflt;
};
#endif
82 changes: 70 additions & 12 deletions trunk/net/ipv6/addrconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -4135,6 +4135,70 @@ static void addrconf_sysctl_unregister(struct inet6_dev *idev)

#endif

static int addrconf_init_net(struct net *net)
{
int err;
struct ipv6_devconf *all, *dflt;

err = -ENOMEM;
all = &ipv6_devconf;
dflt = &ipv6_devconf_dflt;

if (net != &init_net) {
all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
if (all == NULL)
goto err_alloc_all;

dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
if (dflt == NULL)
goto err_alloc_dflt;
}

net->ipv6.devconf_all = all;
net->ipv6.devconf_dflt = dflt;

#ifdef CONFIG_SYSCTL
err = __addrconf_sysctl_register(net, "all", NET_PROTO_CONF_ALL,
NULL, all);
if (err < 0)
goto err_reg_all;

err = __addrconf_sysctl_register(net, "default", NET_PROTO_CONF_DEFAULT,
NULL, dflt);
if (err < 0)
goto err_reg_dflt;
#endif
return 0;

#ifdef CONFIG_SYSCTL
err_reg_dflt:
__addrconf_sysctl_unregister(all);
err_reg_all:
kfree(dflt);
#endif
err_alloc_dflt:
kfree(all);
err_alloc_all:
return err;
}

static void addrconf_exit_net(struct net *net)
{
#ifdef CONFIG_SYSCTL
__addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
__addrconf_sysctl_unregister(net->ipv6.devconf_all);
#endif
if (net != &init_net) {
kfree(net->ipv6.devconf_dflt);
kfree(net->ipv6.devconf_all);
}
}

static struct pernet_operations addrconf_ops = {
.init = addrconf_init_net,
.exit = addrconf_exit_net,
};

/*
* Device notifier
*/
Expand Down Expand Up @@ -4167,6 +4231,8 @@ int __init addrconf_init(void)
return err;
}

register_pernet_subsys(&addrconf_ops);

/* The addrconf netdev notifier requires that loopback_dev
* has it's ipv6 private information allocated and setup
* before it can bring up and give link-local addresses
Expand All @@ -4190,7 +4256,7 @@ int __init addrconf_init(void)
err = -ENOMEM;
rtnl_unlock();
if (err)
return err;
goto errlo;

ip6_null_entry.u.dst.dev = init_net.loopback_dev;
ip6_null_entry.rt6i_idev = in6_dev_get(init_net.loopback_dev);
Expand Down Expand Up @@ -4218,16 +4284,11 @@ int __init addrconf_init(void)

ipv6_addr_label_rtnl_register();

#ifdef CONFIG_SYSCTL
__addrconf_sysctl_register(&init_net, "all", NET_PROTO_CONF_ALL,
NULL, &ipv6_devconf);
__addrconf_sysctl_register(&init_net, "default", NET_PROTO_CONF_DEFAULT,
NULL, &ipv6_devconf_dflt);
#endif

return 0;
errout:
unregister_netdevice_notifier(&ipv6_dev_notf);
errlo:
unregister_pernet_subsys(&addrconf_ops);

return err;
}
Expand All @@ -4240,10 +4301,7 @@ void addrconf_cleanup(void)

unregister_netdevice_notifier(&ipv6_dev_notf);

#ifdef CONFIG_SYSCTL
__addrconf_sysctl_unregister(&ipv6_devconf_dflt);
__addrconf_sysctl_unregister(&ipv6_devconf);
#endif
unregister_pernet_subsys(&addrconf_ops);

rtnl_lock();

Expand Down

0 comments on commit 0e31e99

Please sign in to comment.