]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
net: Don't leak packets when a netns is going down
authorEric W. Biederman <ebiederm@xmission.com>
Thu, 6 Nov 2008 00:00:24 +0000 (16:00 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 6 Nov 2008 00:00:24 +0000 (16:00 -0800)
I have been tracking for a while a case where when the
network namespace exits the cleanup gets stck in an
endless precessess of:

unregister_netdevice: waiting for lo to become free. Usage count = 3
unregister_netdevice: waiting for lo to become free. Usage count = 3
unregister_netdevice: waiting for lo to become free. Usage count = 3
unregister_netdevice: waiting for lo to become free. Usage count = 3
unregister_netdevice: waiting for lo to become free. Usage count = 3
unregister_netdevice: waiting for lo to become free. Usage count = 3
unregister_netdevice: waiting for lo to become free. Usage count = 3

It turns out that if you listen on a multicast address an unsubscribe
packet is sent when the network device goes down.   If you shutdown
the network namespace without carefully cleaning up this can trigger
the unsubscribe packet to be sent over the loopback interface while
the network namespace is going down.

All of which is fine except when we drop the packet and forget to
free it leaking the skb and the dst entry attached to.  As it
turns out the dst entry hold a reference to the idev which holds
the dev and keeps everything from being cleaned up.  Yuck!

By fixing my earlier thinko and add the needed kfree_skb and everything
cleans up beautifully.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c

index 811507c39805e166ad01bceb1695737913c083fc..a0c60607f1a71d21c3e2be68cfe6af845e3b10db 100644 (file)
@@ -2253,8 +2253,10 @@ int netif_receive_skb(struct sk_buff *skb)
        rcu_read_lock();
 
        /* Don't receive packets in an exiting network namespace */
-       if (!net_alive(dev_net(skb->dev)))
+       if (!net_alive(dev_net(skb->dev))) {
+               kfree_skb(skb);
                goto out;
+       }
 
 #ifdef CONFIG_NET_CLS_ACT
        if (skb->tc_verd & TC_NCLS) {