mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
85e3c271ab
Signed-off-by: Tad <tad@spotco.us>
44 lines
2.2 KiB
Diff
44 lines
2.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Marzia Favaro <marziana@google.com>
|
|
Date: Mon, 31 Jul 2023 15:10:34 +0000
|
|
Subject: [PATCH] BACKPORT: Require permission to unlock keyguard
|
|
|
|
Bug: 288896339
|
|
Test: Manual, verify that the app which can be found on the bug can no longer call
|
|
keyguardGoingAway successfully
|
|
|
|
Require permission to unlock keyguard
|
|
|
|
Bug: 288896339
|
|
Test: Manual, verify that the app which can be found on the bug can no longer call
|
|
keyguardGoingAway successfully
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:bd2aa5d309c5bf8e73161975bd5aba7945b25e84)
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:ef1345d278bd2a8944c6362bf65cff7305ca6fc5)
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:ad8e7e3b1db22684988a179e23639567a4096ca6)
|
|
Merged-In: I7ba7e56f954c8e6f1f734311f735215918975bc6
|
|
Change-Id: I7ba7e56f954c8e6f1f734311f735215918975bc6
|
|
---
|
|
.../core/java/com/android/server/am/ActivityManagerService.java | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/services/core/java/com/android/server/am/ActivityManagerService.java b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
index c682ba2f7572..406e08009cb7 100644
|
|
--- a/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
+++ b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
@@ -254,6 +254,7 @@ import cyanogenmod.power.PerformanceManagerInternal;
|
|
import libcore.io.IoUtils;
|
|
import libcore.util.EmptyArray;
|
|
|
|
+import static android.Manifest.permission.CONTROL_KEYGUARD;
|
|
import static android.Manifest.permission.INTERACT_ACROSS_USERS;
|
|
import static android.Manifest.permission.INTERACT_ACROSS_USERS_FULL;
|
|
import static android.Manifest.permission.MANAGE_ACTIVITY_STACKS;
|
|
@@ -7026,6 +7027,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
|
|
|
@Override
|
|
public void keyguardGoingAway(int flags) {
|
|
+ enforceCallingPermission(CONTROL_KEYGUARD, "keyguardGoingAway()");
|
|
enforceNotIsolatedCaller("keyguardGoingAway");
|
|
final long token = Binder.clearCallingIdentity();
|
|
try {
|