mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-03 06:15:39 +00:00
Use scripts to setup sudb
This commit is contained in:
parent
c840a30c30
commit
74379150a1
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,7 +6,7 @@
|
|||||||
app/release
|
app/release
|
||||||
*.hprof
|
*.hprof
|
||||||
.externalNativeBuild/
|
.externalNativeBuild/
|
||||||
*.sh
|
src/main/assets/*.sh
|
||||||
public.certificate.x509.pem
|
public.certificate.x509.pem
|
||||||
private.key.pk8
|
private.key.pk8
|
||||||
*.apk
|
*.apk
|
||||||
|
@ -101,8 +101,10 @@ public class MagiskManager extends Shell.ContainerApp {
|
|||||||
Shell.setInitializer(new Shell.Initializer() {
|
Shell.setInitializer(new Shell.Initializer() {
|
||||||
@Override
|
@Override
|
||||||
public void onRootShellInit(@NonNull Shell shell) {
|
public void onRootShellInit(@NonNull Shell shell) {
|
||||||
try (InputStream in = MagiskManager.get().getAssets().open(Const.UTIL_FUNCTIONS)) {
|
try (InputStream utils = MagiskManager.get().getAssets().open(Const.UTIL_FUNCTIONS);
|
||||||
shell.loadInputStream(null, null, in);
|
InputStream sudb = getResources().openRawResource(R.raw.sudb)) {
|
||||||
|
shell.loadInputStream(null, null, utils);
|
||||||
|
shell.loadInputStream(null, null, sudb);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
@ -205,7 +207,8 @@ public class MagiskManager extends Shell.ContainerApp {
|
|||||||
try {
|
try {
|
||||||
magiskVersionString = Utils.cmd("magisk -v").split(":")[0];
|
magiskVersionString = Utils.cmd("magisk -v").split(":")[0];
|
||||||
magiskVersionCode = Integer.parseInt(Utils.cmd("magisk -V"));
|
magiskVersionCode = Integer.parseInt(Utils.cmd("magisk -V"));
|
||||||
String s = Utils.cmd((magiskVersionCode > 1435 ? "resetprop -p " : "getprop ") + Const.MAGISKHIDE_PROP);
|
String s = Utils.cmd((magiskVersionCode > 1435 ? "resetprop -p " : "getprop ")
|
||||||
|
+ Const.MAGISKHIDE_PROP);
|
||||||
magiskHide = s == null || Integer.parseInt(s) != 0;
|
magiskHide = s == null || Integer.parseInt(s) != 0;
|
||||||
} catch (Exception ignored) {}
|
} catch (Exception ignored) {}
|
||||||
|
|
||||||
|
@ -136,7 +136,6 @@ public class HideManager extends ParallelTask<Void, Void, Boolean> {
|
|||||||
repack.delete();
|
repack.delete();
|
||||||
|
|
||||||
mm.suDB.setStrings(Const.Key.SU_REQUESTER, pkg);
|
mm.suDB.setStrings(Const.Key.SU_REQUESTER, pkg);
|
||||||
mm.suDB.flush();
|
|
||||||
Utils.dumpPrefs();
|
Utils.dumpPrefs();
|
||||||
Utils.uninstallPkg(Const.ORIG_PKG_NAME);
|
Utils.uninstallPkg(Const.ORIG_PKG_NAME);
|
||||||
|
|
||||||
|
@ -42,22 +42,11 @@ public class SuDatabaseHelper {
|
|||||||
return new SuDatabaseHelper(mm);
|
return new SuDatabaseHelper(mm);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// Let's cleanup everything and try again
|
// Let's cleanup everything and try again
|
||||||
cleanup("*");
|
Shell.Sync.su("sudb_clean '*'");
|
||||||
return new SuDatabaseHelper(mm);
|
return new SuDatabaseHelper(mm);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void cleanup() {
|
|
||||||
cleanup(String.valueOf(Const.USER_ID));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void cleanup(String s) {
|
|
||||||
Shell.Sync.su(
|
|
||||||
"umount -l /data/user*/*/*/databases/su.db",
|
|
||||||
"umount -l /sbin/.core/db-" + s + "/magisk.db",
|
|
||||||
"rm -rf /sbin/.core/db-" + s);
|
|
||||||
}
|
|
||||||
|
|
||||||
private SuDatabaseHelper(MagiskManager mm) {
|
private SuDatabaseHelper(MagiskManager mm) {
|
||||||
pm = mm.getPackageManager();
|
pm = mm.getPackageManager();
|
||||||
mDb = openDatabase(mm);
|
mDb = openDatabase(mm);
|
||||||
@ -76,7 +65,7 @@ public class SuDatabaseHelper {
|
|||||||
DB_FILE = new File(Utils.fmt("/sbin/.core/db-%d/magisk.db", Const.USER_ID));
|
DB_FILE = new File(Utils.fmt("/sbin/.core/db-%d/magisk.db", Const.USER_ID));
|
||||||
Context de = Build.VERSION.SDK_INT >= Build.VERSION_CODES.N
|
Context de = Build.VERSION.SDK_INT >= Build.VERSION_CODES.N
|
||||||
? mm.createDeviceProtectedStorageContext() : mm;
|
? mm.createDeviceProtectedStorageContext() : mm;
|
||||||
if (!DB_FILE.exists()) {
|
if (!DB_FILE.canWrite()) {
|
||||||
if (!Shell.rootAccess()) {
|
if (!Shell.rootAccess()) {
|
||||||
// We don't want the app to crash, create a db and return
|
// We don't want the app to crash, create a db and return
|
||||||
DB_FILE = mm.getDatabasePath("su.db");
|
DB_FILE = mm.getDatabasePath("su.db");
|
||||||
@ -84,7 +73,7 @@ public class SuDatabaseHelper {
|
|||||||
}
|
}
|
||||||
mm.loadMagiskInfo();
|
mm.loadMagiskInfo();
|
||||||
// Cleanup
|
// Cleanup
|
||||||
cleanup();
|
Shell.Sync.su("sudb_clean " + Const.USER_ID);
|
||||||
if (mm.magiskVersionCode < 1410) {
|
if (mm.magiskVersionCode < 1410) {
|
||||||
// Super old legacy mode
|
// Super old legacy mode
|
||||||
DB_FILE = mm.getDatabasePath("su.db");
|
DB_FILE = mm.getDatabasePath("su.db");
|
||||||
@ -103,19 +92,13 @@ public class SuDatabaseHelper {
|
|||||||
// v14.5 global DB location
|
// v14.5 global DB location
|
||||||
GLOBAL_DB = new File(de.getFilesDir().getParentFile().getParentFile(),
|
GLOBAL_DB = new File(de.getFilesDir().getParentFile().getParentFile(),
|
||||||
"magisk.db").getPath();
|
"magisk.db").getPath();
|
||||||
// We need some additional policies on old versions
|
|
||||||
Shell.Sync.su("magiskpolicy --live 'create su_file' 'allow * su_file file *'");
|
|
||||||
}
|
}
|
||||||
// Touch global DB and setup db in tmpfs
|
if (mm.magiskVersionCode < 1550) {
|
||||||
Shell.Sync.su(Utils.fmt("touch %s; mkdir -p %s; touch %s; touch %s-journal;" +
|
// We need some additional policies on old versions
|
||||||
"mount -o bind %s %s;" +
|
Shell.Sync.su("magiskpolicy --live " +
|
||||||
"chcon u:object_r:su_file:s0 %s/*; chown %d.%d %s;" +
|
"'create su_file' 'allow * su_file file *' 'allow * su_file dir *'");
|
||||||
"chmod 666 %s/*; chmod 700 %s;",
|
}
|
||||||
GLOBAL_DB, DB_FILE.getParent(), DB_FILE, DB_FILE,
|
Shell.Sync.su("sudb_setup " + Process.myUid() + " " + GLOBAL_DB);
|
||||||
GLOBAL_DB, DB_FILE,
|
|
||||||
DB_FILE.getParent(), Process.myUid(), Process.myUid(), DB_FILE.getParent(),
|
|
||||||
DB_FILE.getParent(), DB_FILE.getParent()
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Not using legacy mode, open the mounted global DB
|
// Not using legacy mode, open the mounted global DB
|
||||||
@ -320,9 +303,4 @@ public class SuDatabaseHelper {
|
|||||||
}
|
}
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void flush() {
|
|
||||||
mDb.close();
|
|
||||||
mDb = SQLiteDatabase.openOrCreateDatabase(DB_FILE, null);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -50,8 +50,7 @@ public class Utils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void uninstallPkg(String pkg) {
|
public static void uninstallPkg(String pkg) {
|
||||||
SuDatabaseHelper.cleanup();
|
Shell.Sync.su("sudb_clean " + Const.USER_ID, "pm uninstall " + pkg);
|
||||||
Shell.Sync.su("pm uninstall " + pkg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void dlAndReceive(Context context, DownloadReceiver receiver, String link, String filename) {
|
public static void dlAndReceive(Context context, DownloadReceiver receiver, String link, String filename) {
|
||||||
|
21
src/main/res/raw/sudb.sh
Normal file
21
src/main/res/raw/sudb.sh
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
sudb_clean() {
|
||||||
|
local USERID=$1
|
||||||
|
local DIR="/sbin/.core/db-${USERID}"
|
||||||
|
umount -l /data/user*/*/*/databases/su.db $DIR $DIR/*
|
||||||
|
rm -rf $DIR
|
||||||
|
}
|
||||||
|
|
||||||
|
sudb_setup() {
|
||||||
|
local USER=$1
|
||||||
|
local GLOBAL_DB=$2
|
||||||
|
local USERID=$(($USER / 100000))
|
||||||
|
local DIR=/sbin/.core/db-${USERID}
|
||||||
|
touch $GLOBAL_DB
|
||||||
|
mkdir -p $DIR
|
||||||
|
touch $DIR/magisk.db
|
||||||
|
mount -o bind $GLOBAL_DB $DIR/magisk.db
|
||||||
|
chcon u:object_r:su_file:s0 $DIR $DIR/*
|
||||||
|
chmod 700 $DIR
|
||||||
|
chown $USER.$USER $DIR
|
||||||
|
chmod 666 $DIR/*
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user