netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH bpf] xdp: add NULL pointer check in __xdp_return()
@ 2018-07-20 16:04 Taehee Yoo
  2018-07-20 17:18 ` Martin KaFai Lau
  0 siblings, 1 reply; 14+ messages in thread
From: Taehee Yoo @ 2018-07-20 16:04 UTC (permalink / raw)
  To: daniel, ast; +Cc: bjorn.topel, brouer, netdev, Taehee Yoo

rhashtable_lookup() can return NULL. so that NULL pointer
check routine should be added.

Fixes: 02b55e5657c3 ("xdp: add MEM_TYPE_ZERO_COPY")
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
---
 net/core/xdp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/core/xdp.c b/net/core/xdp.c
index 9d1f220..1c12bc7 100644
--- a/net/core/xdp.c
+++ b/net/core/xdp.c
@@ -345,7 +345,8 @@ static void __xdp_return(void *data, struct xdp_mem_info *mem, bool napi_direct,
 		rcu_read_lock();
 		/* mem->id is valid, checked in xdp_rxq_info_reg_mem_model() */
 		xa = rhashtable_lookup(mem_id_ht, &mem->id, mem_id_rht_params);
-		xa->zc_alloc->free(xa->zc_alloc, handle);
+		if (xa)
+			xa->zc_alloc->free(xa->zc_alloc, handle);
 		rcu_read_unlock();
 	default:
 		/* Not possible, checked in xdp_rxq_info_reg_mem_model() */
-- 
2.9.3

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

end of thread, other threads:[~2018-08-02 12:50 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-20 16:04 [PATCH bpf] xdp: add NULL pointer check in __xdp_return() Taehee Yoo
2018-07-20 17:18 ` Martin KaFai Lau
2018-07-20 20:05   ` Jakub Kicinski
2018-07-23  9:39     ` Björn Töpel
2018-07-23 19:58       ` Jakub Kicinski
2018-07-26 12:13         ` Björn Töpel
2018-07-26 18:47           ` Jakub Kicinski
2018-07-21 12:56   ` Taehee Yoo
2018-07-23  9:41     ` Björn Töpel
2018-07-23 13:21       ` Taehee Yoo
2018-08-01 14:14       ` Jesper Dangaard Brouer
2018-08-01 14:43         ` Björn Töpel
2018-08-01 20:25           ` Daniel Borkmann
2018-08-02 10:59             ` Björn Töpel

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).