mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
d2d0c48a25
no effective change: https://review.lineageos.org/q/topic:%22P_asb_2024-05%22 gains 8 patches: https://review.lineageos.org/q/topic:%22Q_asb_2024-06%22 https://review.lineageos.org/q/topic:%22Q_asb_2024-07%22 Signed-off-by: Tavi <tavi@divested.dev>
49 lines
2.1 KiB
Diff
49 lines
2.1 KiB
Diff
From a948eaf29141a1f176a9345fb9ec72502c2a8953 Mon Sep 17 00:00:00 2001
|
|
From: Jing Ji <jji@google.com>
|
|
Date: Thu, 19 Oct 2023 14:22:58 -0700
|
|
Subject: [PATCH] DO NOT MERGE: Fix ActivityManager#killBackgroundProcesses
|
|
permissions
|
|
|
|
In the pevious CL, we incorrectly added the permission check in the
|
|
killBackgroundProcessesExcept. Now fix this issue.
|
|
|
|
Bug: 239423414
|
|
Bug: 223376078
|
|
Test: atest CtsAppTestCases:ActivityManagerTest
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:140fce861944419a375c669010c6c47cd7ff5b37)
|
|
Merged-In: I9471a77188ee63ec32cd0c81569193e4ccad885b
|
|
AOSP-Change-Id: I9471a77188ee63ec32cd0c81569193e4ccad885b
|
|
|
|
Change-Id: I1b1e683b6a92b0fa2a844a99bedcccac8c980e58
|
|
---
|
|
.../server/am/ActivityManagerService.java | 16 ----------------
|
|
1 file changed, 16 deletions(-)
|
|
|
|
diff --git a/services/core/java/com/android/server/am/ActivityManagerService.java b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
index bcb7276b4014e..41b1ddaf887bb 100644
|
|
--- a/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
+++ b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
@@ -4268,22 +4268,6 @@ void killAllBackgroundProcessesExcept(int minTargetSdk, int maxProcState) {
|
|
throw new SecurityException(msg);
|
|
}
|
|
|
|
- final int callingUid = Binder.getCallingUid();
|
|
- final int callingPid = Binder.getCallingPid();
|
|
-
|
|
- ProcessRecord proc;
|
|
- synchronized (mPidsSelfLocked) {
|
|
- proc = mPidsSelfLocked.get(callingPid);
|
|
- }
|
|
- if (callingUid >= FIRST_APPLICATION_UID
|
|
- && (proc == null || !proc.info.isSystemApp())) {
|
|
- final String msg = "Permission Denial: killAllBackgroundProcesses() from pid="
|
|
- + callingPid + ", uid=" + callingUid + " is not allowed";
|
|
- Slog.w(TAG, msg);
|
|
- // Silently return to avoid existing apps from crashing.
|
|
- return;
|
|
- }
|
|
-
|
|
final long callingId = Binder.clearCallingIdentity();
|
|
try {
|
|
synchronized (this) {
|