Run autopep8 on verify-permissions.py

This commit is contained in:
LuK1337
2021-10-13 16:51:19 +02:00
parent 329e759213
commit b433294810

View File

@@ -33,7 +33,7 @@ os.chdir(sys.path[0])
# Definitions for privileged permissions # Definitions for privileged permissions
ANDROID_MANIFEST_XML = \ ANDROID_MANIFEST_XML = \
'https://raw.githubusercontent.com/LineageOS/android_frameworks_base/lineage-19.0/core/res/AndroidManifest.xml' 'https://raw.githubusercontent.com/LineageOS/android_frameworks_base/lineage-19.0/core/res/AndroidManifest.xml'
ANDROID_XML_NS = '{http://schemas.android.com/apk/res/android}' ANDROID_XML_NS = '{http://schemas.android.com/apk/res/android}'
privileged_permissions = set() privileged_permissions = set()
privileged_permission_mask = {'privileged', 'signature'} privileged_permission_mask = {'privileged', 'signature'}
@@ -47,7 +47,8 @@ for perm in root.findall('permission'):
# Get name of permission # Get name of permission
name = perm.get('{}name'.format(ANDROID_XML_NS)) name = perm.get('{}name'.format(ANDROID_XML_NS))
# Get the protection levels on the permission # Get the protection levels on the permission
levels = set(perm.get('{}protectionLevel'.format(ANDROID_XML_NS)).split('|')) levels = set(
perm.get('{}protectionLevel'.format(ANDROID_XML_NS)).split('|'))
# Check if the protections include signature and privileged # Check if the protections include signature and privileged
levels_masked = levels & privileged_permission_mask levels_masked = levels & privileged_permission_mask
if len(levels_masked) == len(privileged_permission_mask): if len(levels_masked) == len(privileged_permission_mask):
@@ -86,7 +87,7 @@ AAPT_CMD = ['aapt', 'd', 'permissions']
for apk in glob(GLOB_APK_STR): for apk in glob(GLOB_APK_STR):
# Run 'aapt d permissions' on APK # Run 'aapt d permissions' on APK
aapt_output = subprocess.check_output(AAPT_CMD + [apk], aapt_output = subprocess.check_output(AAPT_CMD + [apk],
stderr=subprocess.STDOUT).decode(encoding='UTF-8') stderr=subprocess.STDOUT).decode(encoding='UTF-8')
lines = aapt_output.split('\n') lines = aapt_output.split('\n')
# Extract package name from the output # Extract package name from the output
# Output looks like: # Output looks like:
@@ -123,7 +124,7 @@ for package in privapp_permissions_dict:
if len(perm_diff) > 0: if len(perm_diff) > 0:
rc = errno.EPERM rc = errno.EPERM
sys.stderr.write("Package {} is missing these permissions:\n" sys.stderr.write("Package {} is missing these permissions:\n"
.format(package)) .format(package))
for perm in perm_diff: for perm in perm_diff:
sys.stderr.write(" - {}\n".format(perm)) sys.stderr.write(" - {}\n".format(perm))