]> git.baikalelectronics.ru Git - kernel.git/commit
netns: don't allocate an id for dead netns
authorNicolas Dichtel <nicolas.dichtel@6wind.com>
Fri, 3 Apr 2015 10:02:37 +0000 (12:02 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 3 Apr 2015 16:36:31 +0000 (12:36 -0400)
commitd41a9cc1e70cce5417f21bbbc8bc17f30553c5ef
treefe04eb71bfe9bd1fdafbe64586f379b989146f6c
parentd1b1dcb1619abb297fcb2973d01b9f1a5fcd8fff
netns: don't allocate an id for dead netns

First, let's explain the problem.
Suppose you have an ipip interface that stands in the netns foo and its link
part in the netns bar (so the netns bar has an nsid into the netns foo).
Now, you remove the netns bar:
 - the bar nsid into the netns foo is removed
 - the netns exit method of ipip is called, thus our ipip iface is removed:
   => a netlink message is built in the netns foo to advertise this deletion
   => this netlink message requests an nsid for bar, thus a new nsid is
      allocated for bar and never removed.

This patch adds a check in peernet2id() so that an id cannot be allocated for
a netns which is currently destroyed.

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/net_namespace.c