Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 909ff7dc authored by Jing Ji's avatar Jing Ji Committed by Android (Google) Code Review
Browse files

Merge "Prevent system uid component from running in an isolated app process" into oc-dev

parents 702d3947 0bfebadf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3562,7 +3562,8 @@ public class ActivityManagerService extends IActivityManager.Stub
            final int procCount = procs.size();
            for (int i = 0; i < procCount; i++) {
                final int procUid = procs.keyAt(i);
                if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)) {
                if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)
                        || UserHandle.isIsolated(procUid)) {
                    // Don't use an app process or different user process for system component.
                    continue;
                }