mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
c47797d6b9
Signed-off-by: Tad <tad@spotco.us>
51 lines
1.9 KiB
Diff
51 lines
1.9 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Hui Peng <phui@google.com>
|
|
Date: Wed, 13 Sep 2023 00:00:44 +0000
|
|
Subject: [PATCH] Enforce authentication if encryption is required
|
|
|
|
Original bug
|
|
Bug: 294854926
|
|
|
|
regressions:
|
|
Bug: 299570702
|
|
Bug: 299561281
|
|
|
|
Test: Test: m com.android.btservices
|
|
Test: QA validation
|
|
Ignore-AOSP-First: security
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:778d3fb3fb520e54425ecefe9a28453002053553)
|
|
Merged-In: I0370ed2e3166d56f708e1981c2126526e1db9eaa
|
|
Change-Id: I0370ed2e3166d56f708e1981c2126526e1db9eaa
|
|
---
|
|
stack/btm/btm_sec.c | 10 ++++++----
|
|
1 file changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/stack/btm/btm_sec.c b/stack/btm/btm_sec.c
|
|
index fa85bc28c..1a21bce09 100644
|
|
--- a/stack/btm/btm_sec.c
|
|
+++ b/stack/btm/btm_sec.c
|
|
@@ -5510,17 +5510,19 @@ extern tBTM_STATUS btm_sec_execute_procedure (tBTM_SEC_DEV_REC *p_dev_rec)
|
|
{
|
|
if (p_dev_rec->is_originator)
|
|
{
|
|
- if (p_dev_rec->security_required & BTM_SEC_OUT_AUTHENTICATE)
|
|
+ if (p_dev_rec->security_required &
|
|
+ (BTM_SEC_OUT_AUTHENTICATE | BTM_SEC_OUT_ENCRYPT))
|
|
{
|
|
- LOG_DEBUG(LOG_TAG, "Outgoing authentication Required");
|
|
+ LOG_DEBUG(LOG_TAG, "Outgoing authentication/encryption Required");
|
|
start_auth = true;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
- if (p_dev_rec->security_required & BTM_SEC_IN_AUTHENTICATE)
|
|
+ if (p_dev_rec->security_required &
|
|
+ (BTM_SEC_IN_AUTHENTICATE | BTM_SEC_IN_ENCRYPT))
|
|
{
|
|
- LOG_DEBUG(LOG_TAG, "Incoming authentication Required");
|
|
+ LOG_DEBUG(LOG_TAG, "Incoming authentication/encryption Required");
|
|
start_auth = true;
|
|
}
|
|
}
|