SU policy DB bug fix
This commit is contained in:
parent
961e02be0d
commit
28649c07e3
@ -159,11 +159,25 @@ public class SuDatabaseHelper extends SQLiteOpenHelper {
|
|||||||
new String[] { String.valueOf(System.currentTimeMillis()) });
|
new String[] { String.valueOf(System.currentTimeMillis()) });
|
||||||
try (Cursor c = db.query(POLICY_TABLE, null, null, null, null, null, null)) {
|
try (Cursor c = db.query(POLICY_TABLE, null, null, null, null, null, null)) {
|
||||||
while (c.moveToNext()) {
|
while (c.moveToNext()) {
|
||||||
|
try {
|
||||||
policy = new Policy(c, pm);
|
policy = new Policy(c, pm);
|
||||||
ret.add(policy);
|
// The application changed UID for some reason, check user config
|
||||||
|
if (policy.info.uid != policy.uid) {
|
||||||
|
if (magiskManager.suReauth) {
|
||||||
|
// Reauth required, remove from DB
|
||||||
|
deletePolicy(policy.uid);
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
|
// No reauth, we use the new UID
|
||||||
|
policy.uid = policy.info.uid;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
ret.add(policy);
|
||||||
} catch (PackageManager.NameNotFoundException e) {
|
} catch (PackageManager.NameNotFoundException e) {
|
||||||
e.printStackTrace();
|
// The app no longer exist, remove from DB
|
||||||
|
deletePolicy(c.getString(c.getColumnIndex("package_name")));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
db.close();
|
db.close();
|
||||||
Collections.sort(ret);
|
Collections.sort(ret);
|
||||||
|
Loading…
Reference in New Issue
Block a user