mirror of https://lore.kernel.org/lkml/
 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	[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

all inboxes | Powered by JetHome®