Merge "Prevent system reset staged installer bypass flag unexpactly" into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-07-09 16:44:52 +00:00
committed by Android (Google) Code Review

View File

@@ -589,12 +589,12 @@ public class PackageInstallerService extends IPackageInstaller.Stub implements
} }
} }
if (mBypassNextStagedInstallerCheck) { if (params.isStaged && !isCalledBySystemOrShell(callingUid)) {
mBypassNextStagedInstallerCheck = false; if (mBypassNextStagedInstallerCheck) {
} else if (params.isStaged mBypassNextStagedInstallerCheck = false;
&& !isCalledBySystemOrShell(callingUid) } else if (!isStagedInstallerAllowed(requestedInstallerPackageName)) {
&& !isWhitelistedStagedInstaller(requestedInstallerPackageName)) { throw new SecurityException("Installer not allowed to commit staged install");
throw new SecurityException("Installer not allowed to commit staged install"); }
} }
if (!params.isMultiPackage) { if (!params.isMultiPackage) {
@@ -725,7 +725,7 @@ public class PackageInstallerService extends IPackageInstaller.Stub implements
|| callingUid == Process.SHELL_UID; || callingUid == Process.SHELL_UID;
} }
private boolean isWhitelistedStagedInstaller(String installerName) { private boolean isStagedInstallerAllowed(String installerName) {
return SystemConfig.getInstance().getWhitelistedStagedInstallers().contains(installerName); return SystemConfig.getInstance().getWhitelistedStagedInstallers().contains(installerName);
} }