linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection
@ 2019-05-09  3:20 Jason Wang
  2019-05-09  3:20 ` [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues Jason Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jason Wang @ 2019-05-09  3:20 UTC (permalink / raw)
  To: netdev, linux-kernel
  Cc: yuehaibing, xiyou.wangcong, weiyongjun1, eric.dumazet, Jason Wang

We need check if tun->numqueues is zero (e.g for the persist device)
before trying to use it for modular arithmetic.

Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
Fixes: 96f84061620c6("tun: add eBPF based queue selection method")
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
 drivers/net/tun.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index e9ca1c0..dc62fc3 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -596,13 +596,18 @@ static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
 static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
 {
 	struct tun_prog *prog;
+	u32 numqueues;
 	u16 ret = 0;
 
+	numqueues = READ_ONCE(tun->numqueues);
+	if (!numqueues)
+		return 0;
+
 	prog = rcu_dereference(tun->steering_prog);
 	if (prog)
 		ret = bpf_prog_run_clear_cb(prog->prog, skb);
 
-	return ret % tun->numqueues;
+	return ret % numqueues;
 }
 
 static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues
  2019-05-09  3:20 [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection Jason Wang
@ 2019-05-09  3:20 ` Jason Wang
  2019-05-09 11:42   ` weiyongjun (A)
  2019-05-09 16:22   ` David Miller
  2019-05-09 11:35 ` [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection Eric Dumazet
  2019-05-09 16:22 ` David Miller
  2 siblings, 2 replies; 6+ messages in thread
From: Jason Wang @ 2019-05-09  3:20 UTC (permalink / raw)
  To: netdev, linux-kernel
  Cc: yuehaibing, xiyou.wangcong, weiyongjun1, eric.dumazet, Jason Wang

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: c8d68e6be1c3b ("tuntap: multiqueue support")
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
Changes from V2:
- resample during detach in tun_xdp_xmit()
Changes from V1:
- keep the check in tun_xdp_xmit()
---
 drivers/net/tun.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index dc62fc3..f4c933a 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -705,6 +705,8 @@ static void __tun_detach(struct tun_file *tfile, bool clean)
 				   tun->tfiles[tun->numqueues - 1]);
 		ntfile = rtnl_dereference(tun->tfiles[index]);
 		ntfile->queue_index = index;
+		rcu_assign_pointer(tun->tfiles[tun->numqueues - 1],
+				   NULL);
 
 		--tun->numqueues;
 		if (clean) {
@@ -1087,7 +1089,7 @@ static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
 	tfile = rcu_dereference(tun->tfiles[txq]);
 
 	/* Drop packet if interface is not attached */
-	if (txq >= tun->numqueues)
+	if (!tfile)
 		goto drop;
 
 	if (!rcu_dereference(tun->steering_prog))
@@ -1310,6 +1312,7 @@ static int tun_xdp_xmit(struct net_device *dev, int n,
 
 	rcu_read_lock();
 
+resample:
 	numqueues = READ_ONCE(tun->numqueues);
 	if (!numqueues) {
 		rcu_read_unlock();
@@ -1318,6 +1321,8 @@ static int tun_xdp_xmit(struct net_device *dev, int n,
 
 	tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
 					    numqueues]);
+	if (unlikely(!tfile))
+		goto resample;
 
 	spin_lock(&tfile->tx_ring.producer_lock);
 	for (i = 0; i < n; i++) {
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection
  2019-05-09  3:20 [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection Jason Wang
  2019-05-09  3:20 ` [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues Jason Wang
@ 2019-05-09 11:35 ` Eric Dumazet
  2019-05-09 16:22 ` David Miller
  2 siblings, 0 replies; 6+ messages in thread
From: Eric Dumazet @ 2019-05-09 11:35 UTC (permalink / raw)
  To: Jason Wang, netdev, linux-kernel
  Cc: yuehaibing, xiyou.wangcong, weiyongjun1, eric.dumazet



On 5/8/19 11:20 PM, Jason Wang wrote:
> We need check if tun->numqueues is zero (e.g for the persist device)
> before trying to use it for modular arithmetic.
> 
> Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
> Fixes: 96f84061620c6("tun: add eBPF based queue selection method")
> Signed-off-by: Jason Wang <jasowang@redhat.com>
> ---

Reviewed-by: Eric Dumazet <edumazet@google.com>

Thanks.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues
  2019-05-09  3:20 ` [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues Jason Wang
@ 2019-05-09 11:42   ` weiyongjun (A)
  2019-05-09 16:22   ` David Miller
  1 sibling, 0 replies; 6+ messages in thread
From: weiyongjun (A) @ 2019-05-09 11:42 UTC (permalink / raw)
  To: Jason Wang, netdev, linux-kernel; +Cc: yuehaibing, xiyou.wangcong, eric.dumazet

> -----Original Message-----
> From: Jason Wang [mailto:jasowang@redhat.com]
> Sent: Thursday, May 09, 2019 11:20 AM
> To: netdev@vger.kernel.org; linux-kernel@vger.kernel.org
> Cc: yuehaibing <yuehaibing@huawei.com>; xiyou.wangcong@gmail.com;
> weiyongjun (A) <weiyongjun1@huawei.com>; eric.dumazet@gmail.com;
> Jason Wang <jasowang@redhat.com>
> Subject: [PATCH net V3 2/2] 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: c8d68e6be1c3b ("tuntap: multiqueue support")
> Signed-off-by: Jason Wang <jasowang@redhat.com>
> ---
> Changes from V2:
> - resample during detach in tun_xdp_xmit()
> Changes from V1:
> - keep the check in tun_xdp_xmit()
> ---

Reviewed-by: Wei Yongjun <weiyongjun1@huawei.com>

Thanks

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection
  2019-05-09  3:20 [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection Jason Wang
  2019-05-09  3:20 ` [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues Jason Wang
  2019-05-09 11:35 ` [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection Eric Dumazet
@ 2019-05-09 16:22 ` David Miller
  2 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2019-05-09 16:22 UTC (permalink / raw)
  To: jasowang
  Cc: netdev, linux-kernel, yuehaibing, xiyou.wangcong, weiyongjun1,
	eric.dumazet

From: Jason Wang <jasowang@redhat.com>
Date: Wed,  8 May 2019 23:20:17 -0400

> We need check if tun->numqueues is zero (e.g for the persist device)
> before trying to use it for modular arithmetic.
> 
> Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
> Fixes: 96f84061620c6("tun: add eBPF based queue selection method")
> Signed-off-by: Jason Wang <jasowang@redhat.com>

Applied and queued up for -stable.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues
  2019-05-09  3:20 ` [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues Jason Wang
  2019-05-09 11:42   ` weiyongjun (A)
@ 2019-05-09 16:22   ` David Miller
  1 sibling, 0 replies; 6+ messages in thread
From: David Miller @ 2019-05-09 16:22 UTC (permalink / raw)
  To: jasowang
  Cc: netdev, linux-kernel, yuehaibing, xiyou.wangcong, weiyongjun1,
	eric.dumazet

From: Jason Wang <jasowang@redhat.com>
Date: Wed,  8 May 2019 23:20:18 -0400

> 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: c8d68e6be1c3b ("tuntap: multiqueue support")
> Signed-off-by: Jason Wang <jasowang@redhat.com>
> ---
> Changes from V2:
> - resample during detach in tun_xdp_xmit()
> Changes from V1:
> - keep the check in tun_xdp_xmit()

Applied and queued up for -stable.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-05-09 16:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-09  3:20 [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection Jason Wang
2019-05-09  3:20 ` [PATCH net V3 2/2] tuntap: synchronize through tfiles array instead of tun->numqueues Jason Wang
2019-05-09 11:42   ` weiyongjun (A)
2019-05-09 16:22   ` David Miller
2019-05-09 11:35 ` [PATCH net V3 1/2] tuntap: fix dividing by zero in ebpf queue selection Eric Dumazet
2019-05-09 16:22 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).