Allow non-empty namespaces in system uid to cancel all jobs

Bug: 273816163

Change-Id: I25ff81e231b420a2307cb768fe48d571b81d9bb1
This commit is contained in:
Ronish Kalia
2023-03-19 11:26:38 +00:00
parent 21f7408abe
commit 73f35cb9af

View File

@@ -1809,7 +1809,9 @@ public class JobSchedulerService extends com.android.server.SystemService
private boolean cancelJobsForUid(int uid, boolean includeSourceApp,
boolean namespaceOnly, @Nullable String namespace,
@JobParameters.StopReason int reason, int internalReasonCode, String debugReason) {
if (uid == Process.SYSTEM_UID) {
// Non-null system namespace means the cancelling is limited to the namespace
// and won't cause issues for the system at large.
if (uid == Process.SYSTEM_UID && (!namespaceOnly || namespace == null)) {
Slog.wtfStack(TAG, "Can't cancel all jobs for system uid");
return false;
}