diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2010-04-13 00:59:44 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-12 18:03:00 -0400 |
commit | 8ccd10349128212f41b131cd2772917c06c51406 (patch) | |
tree | 6fb3efade7d4440137a9f9b644202d715c7d2751 | |
parent | a8464342dfdfd918bcf7ceb98281210d80ee89b4 (diff) |
tun: orphan an skb on tx
[ Upstream commit 0110d6f22f392f976e84ab49da1b42f85b64a3c5 ]
The following situation was observed in the field:
tap1 sends packets, tap2 does not consume them, as a result
tap1 can not be closed. This happens because
tun/tap devices can hang on to skbs undefinitely.
As noted by Herbert, possible solutions include a timeout followed by a
copy/change of ownership of the skb, or always copying/changing
ownership if we're going into a hostile device.
This patch implements the second approach.
Note: one issue still remaining is that since skbs
keep reference to tun socket and tun socket has a
reference to tun device, we won't flush backlog,
instead simply waiting for all skbs to get transmitted.
At least this is not user-triggerable, and
this was not reported in practice, my assumption is
other devices besides tap complete an skb
within finite time after it has been queued.
A possible solution for the second issue
would not to have socket reference the device,
instead, implement dev->destructor for tun, and
wait for all skbs to complete there, but this
needs some thought, probably too risky for 2.6.34.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Tested-by: Yan Vugenfirer <yvugenfi@redhat.com>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/net/tun.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 2834a01bae24..909b73db4a99 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
@@ -380,6 +380,10 @@ static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev) | |||
380 | } | 380 | } |
381 | } | 381 | } |
382 | 382 | ||
383 | /* Orphan the skb - required as we might hang on to it | ||
384 | * for indefinite time. */ | ||
385 | skb_orphan(skb); | ||
386 | |||
383 | /* Enqueue packet */ | 387 | /* Enqueue packet */ |
384 | skb_queue_tail(&tun->socket.sk->sk_receive_queue, skb); | 388 | skb_queue_tail(&tun->socket.sk->sk_receive_queue, skb); |
385 | dev->trans_start = jiffies; | 389 | dev->trans_start = jiffies; |