mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
1e8e187ede
+ a bonus February patch for 15.1 Signed-off-by: Tavi <tavi@divested.dev>
58 lines
2.4 KiB
Diff
58 lines
2.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Dmitry Dementyev <dementyev@google.com>
|
|
Date: Wed, 3 Jan 2024 09:26:56 -0800
|
|
Subject: [PATCH] Close AccountManagerService.session after timeout.
|
|
|
|
Bug: 303905130
|
|
Bug: 316893159
|
|
Test: manual
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:bb53f192e0ceaa026a083da156ef0cb0140f0c09)
|
|
Merged-In: Ib4cebf1750fc6324dc1c8853e0d716ea5e8ec073
|
|
Change-Id: Ib4cebf1750fc6324dc1c8853e0d716ea5e8ec073
|
|
---
|
|
.../android/server/accounts/AccountManagerService.java | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/services/core/java/com/android/server/accounts/AccountManagerService.java b/services/core/java/com/android/server/accounts/AccountManagerService.java
|
|
index 715b32687054..326acdfe3a3f 100644
|
|
--- a/services/core/java/com/android/server/accounts/AccountManagerService.java
|
|
+++ b/services/core/java/com/android/server/accounts/AccountManagerService.java
|
|
@@ -182,6 +182,7 @@ public class AccountManagerService
|
|
|
|
final MessageHandler mHandler;
|
|
|
|
+ private static final int TIMEOUT_DELAY_MS = 1000 * 60 * 15;
|
|
// Messages that can be sent on mHandler
|
|
private static final int MESSAGE_TIMED_OUT = 3;
|
|
private static final int MESSAGE_COPY_SHARED_ACCOUNT = 4;
|
|
@@ -4766,6 +4767,7 @@ public class AccountManagerService
|
|
synchronized (mSessions) {
|
|
mSessions.put(toString(), this);
|
|
}
|
|
+ scheduleTimeout();
|
|
if (response != null) {
|
|
try {
|
|
response.asBinder().linkToDeath(this, 0 /* flags */);
|
|
@@ -4932,6 +4934,11 @@ public class AccountManagerService
|
|
}
|
|
}
|
|
|
|
+ private void scheduleTimeout() {
|
|
+ mHandler.sendMessageDelayed(
|
|
+ mHandler.obtainMessage(MESSAGE_TIMED_OUT, this), TIMEOUT_DELAY_MS);
|
|
+ }
|
|
+
|
|
public void cancelTimeout() {
|
|
mHandler.removeMessages(MESSAGE_TIMED_OUT, this);
|
|
}
|
|
@@ -4968,6 +4975,9 @@ public class AccountManagerService
|
|
|
|
public void onTimedOut() {
|
|
IAccountManagerResponse response = getResponseAndClose();
|
|
+ if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
|
+ Log.v(TAG, "Session.onTimedOut");
|
|
+ }
|
|
if (response != null) {
|
|
try {
|
|
response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
|