59 lines
2.0 KiB
Java
Raw Normal View History

2018-06-02 22:00:52 +08:00
package com.topjohnwu.magisk.utils;
2018-07-27 04:48:32 +08:00
import android.content.Context;
import android.support.annotation.NonNull;
2018-07-31 17:42:35 +08:00
import com.topjohnwu.magisk.Const;
2018-07-31 17:41:54 +08:00
import com.topjohnwu.magisk.Data;
2018-07-27 04:48:32 +08:00
import com.topjohnwu.magisk.R;
import com.topjohnwu.superuser.BusyBox;
2018-06-02 22:00:52 +08:00
import com.topjohnwu.superuser.Shell;
import com.topjohnwu.superuser.ShellUtils;
2018-06-02 22:00:52 +08:00
import com.topjohnwu.superuser.io.SuFile;
2018-07-27 04:48:32 +08:00
import java.io.File;
import java.io.InputStream;
public class RootUtils extends Shell.Initializer {
static {
BusyBox.BB_PATH = new File(Const.BUSYBOX_PATH);
2018-06-02 22:00:52 +08:00
}
public static void uninstallPkg(String pkg) {
2018-07-27 04:48:32 +08:00
Shell.su("db_clean " + Const.USER_ID, "pm uninstall " + pkg).exec();
}
@Override
public boolean onInit(Context context, @NonNull Shell shell) {
Shell.Job job = shell.newJob();
2018-07-27 04:48:32 +08:00
if (shell.isRoot()) {
InputStream magiskUtils = context.getResources().openRawResource(R.raw.util_functions);
InputStream managerUtils = context.getResources().openRawResource(R.raw.utils);
job.add(magiskUtils).add(managerUtils);
Const.MAGISK_DISABLE_FILE = new SuFile("/cache/.disable_magisk");
SuFile file = new SuFile("/sbin/.core/img");
if (file.exists()) {
Const.MAGISK_PATH = file;
} else if ((file = new SuFile("/dev/magisk/img")).exists()) {
Const.MAGISK_PATH = file;
} else {
Const.MAGISK_PATH = new SuFile("/magisk");
}
Const.MAGISK_HOST_FILE = new SuFile(Const.MAGISK_PATH + "/.core/hosts");
2018-07-31 17:41:54 +08:00
Data.loadMagiskInfo();
} else {
InputStream nonroot = context.getResources().openRawResource(R.raw.nonroot_utils);
job.add(nonroot);
2018-07-27 04:48:32 +08:00
}
job.add("mount_partitions", "get_flags", "run_migrations").exec();
Data.keepVerity = Boolean.parseBoolean(ShellUtils.fastCmd("echo $KEEPVERITY"));
Data.keepEnc = Boolean.parseBoolean(ShellUtils.fastCmd("echo $KEEPFORCEENCRYPT"));
2018-07-27 04:48:32 +08:00
return true;
2018-06-02 22:00:52 +08:00
}
}