Merge "Fix duplicate permission privilege escalation" into qt-dev am: b22a6d7372
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18078651 Change-Id: I0e25a20970648244c2a72581478f5a09ac6c10b4 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> Merged-In: I1910dca44104e35a57eba4acfa8188cd9b8626ac Merged-In: I34120fff2ec2a158dfa55779d2afd4bbd49487ff Merged-In: I9bc839836786a0876e67fd73c05f8944bb532249
This commit is contained in:
@@ -90,6 +90,7 @@ import android.util.AttributeSet;
|
||||
import android.util.Base64;
|
||||
import android.util.ByteStringUtils;
|
||||
import android.util.DisplayMetrics;
|
||||
import android.util.EventLog;
|
||||
import android.util.Log;
|
||||
import android.util.PackageUtils;
|
||||
import android.util.Pair;
|
||||
@@ -134,6 +135,7 @@ import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
@@ -2502,6 +2504,12 @@ public class PackageParser {
|
||||
}
|
||||
}
|
||||
|
||||
if (declareDuplicatePermission(pkg)) {
|
||||
outError[0] = "Found duplicate permission with a different attribute value.";
|
||||
mParseError = PackageManager.INSTALL_PARSE_FAILED_MANIFEST_MALFORMED;
|
||||
return null;
|
||||
}
|
||||
|
||||
if (supportsSmallScreens < 0 || (supportsSmallScreens > 0
|
||||
&& pkg.applicationInfo.targetSdkVersion
|
||||
>= android.os.Build.VERSION_CODES.DONUT)) {
|
||||
@@ -2558,6 +2566,51 @@ public class PackageParser {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {@code true} if the package declares malformed duplicate permissions.
|
||||
*/
|
||||
public static boolean declareDuplicatePermission(@NonNull Package pkg) {
|
||||
final List<Permission> permissions = pkg.permissions;
|
||||
final int size = permissions.size();
|
||||
if (size > 0) {
|
||||
final ArrayMap<String, Permission> checkDuplicatePerm = new ArrayMap<>(size);
|
||||
for (int i = 0; i < size; i++) {
|
||||
final Permission permissionDefinition = permissions.get(i);
|
||||
final String name = permissionDefinition.info.name;
|
||||
final Permission perm = checkDuplicatePerm.get(name);
|
||||
if (isMalformedDuplicate(permissionDefinition, perm)) {
|
||||
// Fix for b/213323615
|
||||
EventLog.writeEvent(0x534e4554, "213323615",
|
||||
"The package " + pkg.packageName + " seems malicious");
|
||||
return true;
|
||||
}
|
||||
checkDuplicatePerm.put(name, permissionDefinition);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines if a duplicate permission is malformed .i.e. defines different protection level
|
||||
* or group.
|
||||
*/
|
||||
private static boolean isMalformedDuplicate(Permission p1, Permission p2) {
|
||||
// Since a permission tree is also added as a permission with normal protection
|
||||
// level, we need to skip if the parsedPermission is a permission tree.
|
||||
if (p1 == null || p2 == null || p1.tree || p2.tree) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (p1.info.getProtection() != p2.info.getProtection()) {
|
||||
return true;
|
||||
}
|
||||
if (!Objects.equals(p1.info.group, p2.info.group)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
private boolean checkOverlayRequiredSystemProperty(String propName, String propValue) {
|
||||
|
||||
if (TextUtils.isEmpty(propName) || TextUtils.isEmpty(propValue)) {
|
||||
|
||||
Reference in New Issue
Block a user