mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
59bf3b75c7
https://review.lineageos.org/c/LineageOS/android_frameworks_base/+/353117 https://review.lineageos.org/q/topic:Q_asb_2023-03 https://review.lineageos.org/q/topic:Q_asb_2023-04 https://review.lineageos.org/q/topic:Q_asb_2023-05 https://review.lineageos.org/q/topic:Q_asb_2023-06 https://review.lineageos.org/q/topic:Q_asb_2023-07 https://review.lineageos.org/q/topic:Q_asb_2023-08 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376560 https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376561 https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376562 https://review.lineageos.org/q/topic:Q_asb_2023-09 https://review.lineageos.org/q/topic:Q_asb_2023-10 https://review.lineageos.org/q/topic:Q_asb_2023-11 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376563 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_webp/+/376568 https://review.lineageos.org/q/topic:Q_asb_2023-12 https://review.lineageos.org/q/topic:Q_asb_2024-01 https://review.lineageos.org/q/topic:Q_asb_2024-02 https://review.lineageos.org/q/topic:Q_asb_2024-03 Signed-off-by: Tavi <tavi@divested.dev>
41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Brian Delwiche <delwiche@google.com>
|
|
Date: Thu, 27 Apr 2023 20:43:58 +0000
|
|
Subject: [PATCH] Fix potential abort in btu_av_act.cc
|
|
|
|
Partner analysis shows that bta_av_rc_msg does not respect handling
|
|
established for a null browse packet, instead dispatching the null
|
|
pointer to bta_av_rc_free_browse_msg. Strictly speaking this does
|
|
not cause a UAF, as osi_free_and_reset will find the null and abort,
|
|
but it will lead to improper program termination.
|
|
|
|
Handle the case instead.
|
|
|
|
Bug: 269253349
|
|
Test: atest bluetooth_test_gd_unit
|
|
Tag: #security
|
|
Ignore-AOSP-First: Security
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:91f6d6215c101acc99a7397c5fb5a12fe6d7b8e9)
|
|
Merged-In: I4df7045798b663fbefd7434288dc9383216171a7
|
|
Change-Id: I4df7045798b663fbefd7434288dc9383216171a7
|
|
---
|
|
bta/av/bta_av_act.cc | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/bta/av/bta_av_act.cc b/bta/av/bta_av_act.cc
|
|
index 8809abed3..9f97b453a 100644
|
|
--- a/bta/av/bta_av_act.cc
|
|
+++ b/bta/av/bta_av_act.cc
|
|
@@ -1005,7 +1005,10 @@ void bta_av_rc_msg(tBTA_AV_CB* p_cb, tBTA_AV_DATA* p_data) {
|
|
av.remote_cmd.rc_handle = p_data->rc_msg.handle;
|
|
(*p_cb->p_cback)(evt, &av);
|
|
/* If browsing message, then free the browse message buffer */
|
|
- bta_av_rc_free_browse_msg(p_cb, p_data);
|
|
+ if (p_data->rc_msg.opcode == AVRC_OP_BROWSE &&
|
|
+ p_data->rc_msg.msg.browse.p_browse_pkt != NULL) {
|
|
+ bta_av_rc_free_browse_msg(p_cb, p_data);
|
|
+ }
|
|
}
|
|
}
|
|
|