]> git.baikalelectronics.ru Git - kernel.git/commit
tuntap: synchronize through tfiles array instead of tun->numqueues
authorJason Wang <jasowang@redhat.com>
Thu, 9 May 2019 03:20:18 +0000 (23:20 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 9 May 2019 16:21:42 +0000 (09:21 -0700)
commita500444180ca9c59d45a36b35240d75cab8f4d10
tree06772218a11b4c05b06d31ed92c649cac61b6a8b
parent63e4b6ed51c0d9b65a452d9ade681fb10b00aa1f
tuntap: synchronize through tfiles array instead of tun->numqueues

When a queue(tfile) is detached through __tun_detach(), we move the
last enabled tfile to the position where detached one sit but don't
NULL out last position. We expect to synchronize the datapath through
tun->numqueues. Unfortunately, this won't work since we're lacking
sufficient mechanism to order or synchronize the access to
tun->numqueues.

To fix this, NULL out the last position during detaching and check
RCU protected tfile against NULL instead of checking tun->numqueues in
datapath.

Cc: YueHaibing <yuehaibing@huawei.com>
Cc: Cong Wang <xiyou.wangcong@gmail.com>
Cc: weiyongjun (A) <weiyongjun1@huawei.com>
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Fixes: ca420e6eb688e ("tuntap: multiqueue support")
Signed-off-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tun.c