mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
082bc48c32
https://review.lineageos.org/q/topic:P_asb_2022-05 https://review.lineageos.org/q/topic:P_asb_2022-06 https://review.lineageos.org/q/topic:P_asb_2022-07 https://review.lineageos.org/q/topic:P_asb_2022-08 https://review.lineageos.org/q/topic:P_asb_2022-09 https://review.lineageos.org/q/topic:P_asb_2022-10 https://review.lineageos.org/q/topic:P_asb_2022-11 https://review.lineageos.org/q/topic:P_asb_2022-12 https://review.lineageos.org/q/topic:P_asb_2023-01 https://review.lineageos.org/q/topic:P_asb_2023-02 https://review.lineageos.org/q/topic:P_asb_2023-03 https://review.lineageos.org/q/topic:P_asb_2023-04 https://review.lineageos.org/q/topic:P_asb_2023-05 https://review.lineageos.org/q/topic:P_asb_2023-06 https://review.lineageos.org/q/topic:P_asb_2023-07 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/361250 https://review.lineageos.org/q/topic:P_asb_2023-08 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/364606 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/365328 https://review.lineageos.org/q/topic:P_asb_2023-09 https://review.lineageos.org/q/topic:P_asb_2023-10 https://review.lineageos.org/q/topic:P_asb_2023-11 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/374916 https://review.lineageos.org/q/topic:P_asb_2023-12 https://review.lineageos.org/q/topic:P_asb_2024-01 https://review.lineageos.org/q/topic:P_asb_2024-02 https://review.lineageos.org/q/topic:P_asb_2024-03 https://review.lineageos.org/q/topic:P_asb_2024-04 Signed-off-by: Tavi <tavi@divested.dev>
39 lines
2.0 KiB
Diff
39 lines
2.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Pinyao Ting <pinyaoting@google.com>
|
|
Date: Thu, 3 Mar 2022 18:24:37 +0000
|
|
Subject: [PATCH] Verify caller before auto granting slice permission
|
|
|
|
Currently SliceManagerService#checkSlicePermission does not verify the
|
|
caller's identity. This leads to a security vulnerability because
|
|
checkSlicePermission does more than checking the permission as opposed
|
|
to simply return a boolean value -- it additionally grants slice access
|
|
under a certain condition. A malicious app can spoof the calling package
|
|
to acquire slice access.
|
|
|
|
This CL verifies the caller before granting slice access.
|
|
|
|
Bug: 208232850, 179699767
|
|
Test: manual
|
|
Change-Id: I2539c9ff5ea977c91bb58185c95280b4d533a520
|
|
Merged-In: I2539c9ff5ea977c91bb58185c95280b4d533a520
|
|
(cherry picked from commit 5bd2196c537ae42a5c1626bdc23c3c6db41fb97f)
|
|
(cherry picked from commit 3c92d74d7d74e1d781ae1b071da97b3b2cbc6be9)
|
|
Merged-In: I2539c9ff5ea977c91bb58185c95280b4d533a520
|
|
---
|
|
.../core/java/com/android/server/slice/SliceManagerService.java | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/services/core/java/com/android/server/slice/SliceManagerService.java b/services/core/java/com/android/server/slice/SliceManagerService.java
|
|
index f5947ee35ea4..158e6a59ac48 100644
|
|
--- a/services/core/java/com/android/server/slice/SliceManagerService.java
|
|
+++ b/services/core/java/com/android/server/slice/SliceManagerService.java
|
|
@@ -239,6 +239,8 @@ public class SliceManagerService extends ISliceManager.Stub {
|
|
if (autoGrantPermissions != null) {
|
|
// Need to own the Uri to call in with permissions to grant.
|
|
enforceOwner(pkg, uri, userId);
|
|
+ // b/208232850: Needs to verify caller before granting slice access
|
|
+ verifyCaller(pkg);
|
|
for (String perm : autoGrantPermissions) {
|
|
if (mContext.checkPermission(perm, pid, uid) == PERMISSION_GRANTED) {
|
|
int providerUser = ContentProvider.getUserIdFromUri(uri, userId);
|