Blame SOURCES/0001-P2P-Fix-a-corner-case-in-peer-addition-based-on-PD-R.patch

919688
From 8460e3230988ef2ec13ce6b69b687e941f6cdb32 Mon Sep 17 00:00:00 2001
919688
From: Jouni Malinen <jouni@codeaurora.org>
919688
Date: Tue, 8 Dec 2020 23:52:50 +0200
919688
Subject: [PATCH] P2P: Fix a corner case in peer addition based on PD Request
919688
919688
p2p_add_device() may remove the oldest entry if there is no room in the
919688
peer table for a new peer. This would result in any pointer to that
919688
removed entry becoming stale. A corner case with an invalid PD Request
919688
frame could result in such a case ending up using (read+write) freed
919688
memory. This could only by triggered when the peer table has reached its
919688
maximum size and the PD Request frame is received from the P2P Device
919688
Address of the oldest remaining entry and the frame has incorrect P2P
919688
Device Address in the payload.
919688
919688
Fix this by fetching the dev pointer again after having called
919688
p2p_add_device() so that the stale pointer cannot be used.
919688
919688
Fixes: 17bef1e97a50 ("P2P: Add peer entry based on Provision Discovery Request")
919688
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
919688
---
919688
 src/p2p/p2p_pd.c | 12 +++++-------
919688
 1 file changed, 5 insertions(+), 7 deletions(-)
919688
919688
diff --git a/src/p2p/p2p_pd.c b/src/p2p/p2p_pd.c
919688
index 3994ec03f86b..05fd593494ef 100644
919688
--- a/src/p2p/p2p_pd.c
919688
+++ b/src/p2p/p2p_pd.c
919688
@@ -595,14 +595,12 @@ void p2p_process_prov_disc_req(struct p2p_data *p2p, const u8 *sa,
919688
 			goto out;
919688
 		}
919688
 
919688
+		dev = p2p_get_device(p2p, sa);
919688
 		if (!dev) {
919688
-			dev = p2p_get_device(p2p, sa);
919688
-			if (!dev) {
919688
-				p2p_dbg(p2p,
919688
-					"Provision Discovery device not found "
919688
-					MACSTR, MAC2STR(sa));
919688
-				goto out;
919688
-			}
919688
+			p2p_dbg(p2p,
919688
+				"Provision Discovery device not found "
919688
+				MACSTR, MAC2STR(sa));
919688
+			goto out;
919688
 		}
919688
 	} else if (msg.wfd_subelems) {
919688
 		wpabuf_free(dev->info.wfd_subelems);
919688
-- 
919688
2.25.1
919688