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

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