Magisk/app/src/main/java/com/topjohnwu/magisk/MagiskManager.java

360 lines
14 KiB
Java
Raw Normal View History

2017-02-07 02:01:32 +08:00
package com.topjohnwu.magisk;
2017-10-20 00:41:44 +08:00
import android.annotation.SuppressLint;
2017-02-07 02:01:32 +08:00
import android.app.Application;
2017-07-14 02:27:02 +08:00
import android.app.NotificationChannel;
import android.app.NotificationManager;
2017-08-30 02:28:24 +08:00
import android.app.job.JobInfo;
import android.app.job.JobScheduler;
import android.content.ComponentName;
2017-07-14 02:27:02 +08:00
import android.content.Context;
2017-02-07 02:01:32 +08:00
import android.content.SharedPreferences;
2017-10-21 22:54:47 +08:00
import android.content.pm.PackageManager;
2017-07-22 22:14:02 +08:00
import android.content.res.Configuration;
import android.content.res.Resources;
2017-07-14 02:27:02 +08:00
import android.os.Build;
2017-02-07 06:02:06 +08:00
import android.os.Handler;
2017-02-07 02:01:32 +08:00
import android.preference.PreferenceManager;
2017-02-07 06:02:06 +08:00
import android.widget.Toast;
2017-02-07 02:01:32 +08:00
2017-08-29 01:34:42 +08:00
import com.topjohnwu.magisk.asyncs.CheckUpdates;
import com.topjohnwu.magisk.asyncs.DownloadBusybox;
2017-08-30 02:28:24 +08:00
import com.topjohnwu.magisk.asyncs.LoadModules;
2017-07-22 22:14:02 +08:00
import com.topjohnwu.magisk.asyncs.ParallelTask;
2017-08-30 02:28:24 +08:00
import com.topjohnwu.magisk.asyncs.UpdateRepos;
2017-10-07 17:12:36 +08:00
import com.topjohnwu.magisk.container.Module;
2017-07-21 00:46:13 +08:00
import com.topjohnwu.magisk.database.RepoDatabaseHelper;
2017-06-01 00:19:52 +08:00
import com.topjohnwu.magisk.database.SuDatabaseHelper;
2017-08-30 02:28:24 +08:00
import com.topjohnwu.magisk.services.UpdateCheckService;
2017-08-29 01:34:42 +08:00
import com.topjohnwu.magisk.superuser.SuReceiver;
import com.topjohnwu.magisk.superuser.SuRequestActivity;
2017-02-07 02:01:32 +08:00
import com.topjohnwu.magisk.utils.Shell;
import com.topjohnwu.magisk.utils.Topic;
2017-02-07 02:01:32 +08:00
import com.topjohnwu.magisk.utils.Utils;
2017-09-13 16:16:27 +08:00
import java.io.IOException;
import java.io.InputStream;
2017-10-16 00:54:48 +08:00
import java.lang.ref.WeakReference;
2017-02-07 02:01:32 +08:00
import java.util.List;
2017-07-22 22:14:02 +08:00
import java.util.Locale;
import java.util.Map;
2017-09-03 03:26:01 +08:00
import java.util.concurrent.ExecutionException;
2017-02-07 02:01:32 +08:00
public class MagiskManager extends Application {
2017-10-16 00:54:48 +08:00
// Global weak reference to self
private static WeakReference<MagiskManager> weakSelf;
2017-10-21 22:54:47 +08:00
public static final String ORIG_PKG_NAME = "com.topjohnwu.magisk";
2017-02-07 02:01:32 +08:00
public static final String MAGISK_DISABLE_FILE = "/cache/.disable_magisk";
2017-09-25 17:55:40 +08:00
public static final String MAGISK_HOST_FILE = "/magisk/.core/hosts";
2017-02-12 19:49:46 +08:00
public static final String TMP_FOLDER_PATH = "/dev/tmp";
2017-02-12 20:53:41 +08:00
public static final String MAGISK_PATH = "/magisk";
public static final String INTENT_SECTION = "section";
2017-07-20 01:44:32 +08:00
public static final String INTENT_VERSION = "version";
public static final String INTENT_LINK = "link";
2017-05-27 02:41:24 +08:00
public static final String MAGISKHIDE_PROP = "persist.magisk.hide";
public static final String DISABLE_INDICATION_PROP = "ro.magisk.disable";
2017-07-14 02:27:02 +08:00
public static final String NOTIFICATION_CHANNEL = "magisk_update_notice";
2017-09-03 03:26:01 +08:00
public static final String BUSYBOXPATH = "/dev/magisk/bin";
2017-08-30 02:28:24 +08:00
public static final int UPDATE_SERVICE_ID = 1;
2017-10-20 00:41:44 +08:00
public static final int UPDATE_SERVICE_VER = 1;
2017-02-07 02:01:32 +08:00
// Topics
public final Topic magiskHideDone = new Topic();
public final Topic reloadActivity = new Topic();
public final Topic moduleLoadDone = new Topic();
public final Topic repoLoadDone = new Topic();
public final Topic updateCheckDone = new Topic();
public final Topic safetyNetDone = new Topic();
public final Topic localeDone = new Topic();
2017-02-07 02:01:32 +08:00
// Info
2017-10-21 22:54:47 +08:00
public int userId;
public String magiskVersionString;
2017-05-12 02:25:07 +08:00
public int magiskVersionCode = -1;
public String remoteMagiskVersionString;
public int remoteMagiskVersionCode = -1;
2017-02-07 02:01:32 +08:00
public String magiskLink;
public String releaseNoteLink;
2017-06-07 02:19:23 +08:00
public String remoteManagerVersionString;
public int remoteManagerVersionCode = -1;
public String managerLink;
2017-02-07 02:01:32 +08:00
public String bootBlock = null;
public boolean isSuClient = false;
public String suVersion = null;
public boolean disabled;
2017-10-20 00:41:44 +08:00
public int snet_version;
public int updateServiceVersion;
2017-02-07 02:01:32 +08:00
// Data
public Map<String, Module> moduleMap;
2017-02-07 02:01:32 +08:00
public List<String> blockList;
2017-07-22 22:14:02 +08:00
public List<Locale> locales;
2017-02-07 02:01:32 +08:00
// Configurations
2017-07-22 22:14:02 +08:00
public static Locale locale;
public static Locale defaultLocale;
2017-02-07 02:01:32 +08:00
2017-02-07 07:32:40 +08:00
public boolean magiskHide;
2017-02-07 02:01:32 +08:00
public boolean isDarkTheme;
2017-02-22 04:58:03 +08:00
public boolean updateNotification;
2017-05-31 16:31:33 +08:00
public boolean suReauth;
2017-02-07 02:01:32 +08:00
public int suRequestTimeout;
public int suLogTimeout = 14;
public int suAccessState;
2017-05-27 02:41:24 +08:00
public int multiuserMode;
2017-02-07 02:01:32 +08:00
public int suResponseType;
public int suNotificationType;
2017-06-08 22:27:24 +08:00
public int suNamespaceMode;
2017-08-27 01:38:05 +08:00
public String localeConfig;
2017-08-29 01:34:42 +08:00
public int updateChannel;
2017-09-03 17:24:05 +08:00
public String bootFormat;
2017-02-07 02:01:32 +08:00
2017-06-01 00:19:52 +08:00
// Global resources
2017-02-07 02:01:32 +08:00
public SharedPreferences prefs;
2017-06-01 00:19:52 +08:00
public SuDatabaseHelper suDB;
2017-07-21 00:46:13 +08:00
public RepoDatabaseHelper repoDB;
2017-07-18 03:34:06 +08:00
public Shell shell;
2017-02-07 02:01:32 +08:00
2017-02-07 06:02:06 +08:00
private static Handler mHandler = new Handler();
2017-09-03 03:26:01 +08:00
private boolean started = false;
2017-02-07 06:02:06 +08:00
2017-10-16 11:51:34 +08:00
public MagiskManager() {
weakSelf = new WeakReference<>(this);
}
2017-08-12 01:31:34 +08:00
@Override
public void onCreate() {
super.onCreate();
prefs = PreferenceManager.getDefaultSharedPreferences(this);
2017-10-21 22:54:47 +08:00
userId = getApplicationInfo().uid / 100000;
2017-09-15 18:03:25 +08:00
2017-10-20 00:41:44 +08:00
if (Utils.getDatabasePath(this, SuDatabaseHelper.DB_NAME).exists()) {
2017-09-15 18:03:25 +08:00
// Don't migrate yet, wait and check Magisk version
suDB = new SuDatabaseHelper(this);
} else {
2017-10-20 00:41:44 +08:00
suDB = new SuDatabaseHelper();
2017-09-15 18:03:25 +08:00
}
2017-10-21 22:54:47 +08:00
// If detect original package, self destruct!
if (!getPackageName().equals(ORIG_PKG_NAME)) {
try {
getPackageManager().getApplicationInfo(ORIG_PKG_NAME, 0);
Shell.su(String.format(Locale.US, "pm uninstall --user %d %s", userId, getPackageName()));
return;
} catch (PackageManager.NameNotFoundException ignored) { /* Expected*/ }
}
2017-08-12 01:31:34 +08:00
repoDB = new RepoDatabaseHelper(this);
2017-09-03 21:12:09 +08:00
defaultLocale = Locale.getDefault();
setLocale();
2017-08-12 01:31:34 +08:00
loadConfig();
}
2017-10-16 00:54:48 +08:00
public static MagiskManager get() {
return weakSelf.get();
}
2017-07-22 22:14:02 +08:00
public void setLocale() {
2017-08-27 01:38:05 +08:00
localeConfig = prefs.getString("locale", "");
if (localeConfig.isEmpty()) {
2017-07-22 22:14:02 +08:00
locale = defaultLocale;
} else {
2017-08-27 01:38:05 +08:00
locale = Locale.forLanguageTag(localeConfig);
2017-07-22 22:14:02 +08:00
}
Resources res = getBaseContext().getResources();
Configuration config = new Configuration(res.getConfiguration());
config.setLocale(locale);
res.updateConfiguration(config, res.getDisplayMetrics());
}
2017-09-03 15:35:14 +08:00
public void loadConfig() {
2017-08-12 01:31:34 +08:00
isDarkTheme = prefs.getBoolean("dark_theme", false);
// su
suRequestTimeout = Utils.getPrefsInt(prefs, "su_request_timeout", 10);
2017-08-29 01:34:42 +08:00
suResponseType = Utils.getPrefsInt(prefs, "su_auto_response", SuRequestActivity.PROMPT);
suNotificationType = Utils.getPrefsInt(prefs, "su_notification", SuReceiver.TOAST);
2017-08-12 01:31:34 +08:00
suReauth = prefs.getBoolean("su_reauth", false);
2017-08-29 01:34:42 +08:00
suAccessState = suDB.getSettings(SuDatabaseHelper.ROOT_ACCESS, SuDatabaseHelper.ROOT_ACCESS_APPS_AND_ADB);
multiuserMode = suDB.getSettings(SuDatabaseHelper.MULTIUSER_MODE, SuDatabaseHelper.MULTIUSER_MODE_OWNER_ONLY);
suNamespaceMode = suDB.getSettings(SuDatabaseHelper.MNT_NS, SuDatabaseHelper.NAMESPACE_MODE_REQUESTER);
2017-08-12 01:31:34 +08:00
updateNotification = prefs.getBoolean("notification", true);
2017-08-29 01:34:42 +08:00
updateChannel = Utils.getPrefsInt(prefs, "update_channel", CheckUpdates.STABLE_CHANNEL);
2017-09-03 17:24:05 +08:00
bootFormat = prefs.getString("boot_format", ".img");
2017-10-07 17:12:36 +08:00
snet_version = prefs.getInt("snet_version", -1);
2017-10-20 00:41:44 +08:00
updateServiceVersion = prefs.getInt("update_service_version", -1);
2017-02-07 02:01:32 +08:00
}
2017-10-16 00:54:48 +08:00
public static void toast(String msg, int duration) {
mHandler.post(() -> Toast.makeText(weakSelf.get(), msg, duration).show());
2017-02-07 06:02:06 +08:00
}
2017-10-16 00:54:48 +08:00
public static void toast(int resId, int duration) {
mHandler.post(() -> Toast.makeText(weakSelf.get(), resId, duration).show());
2017-02-07 06:02:06 +08:00
}
2017-10-20 00:41:44 +08:00
@SuppressLint("StaticFieldLeak")
2017-08-30 02:28:24 +08:00
public void startup() {
2017-09-03 03:26:01 +08:00
if (started)
2017-08-30 02:28:24 +08:00
return;
2017-09-03 03:26:01 +08:00
started = true;
2017-10-20 00:41:44 +08:00
// Dynamic detect all locales
new ParallelTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
locales = Utils.getAvailableLocale();
return null;
}
2017-10-20 00:41:44 +08:00
@Override
protected void onPostExecute(Void aVoid) {
localeDone.publish();
}
}.exec();
2017-09-15 18:03:25 +08:00
2017-10-20 00:41:44 +08:00
// Create notification channel on Android O
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(NOTIFICATION_CHANNEL,
getString(R.string.magisk_updates), NotificationManager.IMPORTANCE_DEFAULT);
getSystemService(NotificationManager.class).createNotificationChannel(channel);
}
2017-09-03 03:26:01 +08:00
2017-10-20 00:41:44 +08:00
getMagiskInfo();
2017-09-13 16:16:27 +08:00
2017-10-20 00:41:44 +08:00
// Magisk working as expected
if (Shell.rootAccess() && magiskVersionCode > 0) {
// Load utility shell scripts
2017-09-28 03:33:56 +08:00
try (InputStream in = getAssets().open(Utils.UTIL_FUNCTIONS)) {
shell.loadInputStream(in);
2017-09-13 16:16:27 +08:00
} catch (IOException e) {
2017-09-03 03:26:01 +08:00
e.printStackTrace();
}
2017-10-20 00:41:44 +08:00
LoadModules loadModuleTask = new LoadModules();
if (Utils.checkNetworkStatus()) {
// Make sure we have busybox
if (!Utils.itemExist(BUSYBOXPATH + "/busybox")) {
try {
// Force synchronous, make sure we have busybox to use
new DownloadBusybox().exec().get();
} catch (InterruptedException | ExecutionException e) {
e.printStackTrace();
}
}
// Fire update check
new CheckUpdates().exec();
// Add repo update check
loadModuleTask.setCallBack(() -> new UpdateRepos(false).exec());
}
// Root shell initialization
2017-10-15 23:02:44 +08:00
Shell.su_raw(
2017-09-13 16:16:27 +08:00
"export PATH=" + BUSYBOXPATH + ":$PATH",
"mount_partitions",
2017-09-15 13:03:10 +08:00
"BOOTIMAGE=",
2017-09-13 16:16:27 +08:00
"find_boot_image",
"migrate_boot_backup"
);
2017-10-20 00:41:44 +08:00
List<String> ret = Shell.su("echo \"$BOOTIMAGE\"");
if (Utils.isValidShellResponse(ret)) {
bootBlock = ret.get(0);
2017-09-13 16:16:27 +08:00
} else {
2017-10-15 23:02:44 +08:00
blockList = Shell.su("find /dev/block -type b | grep -vE 'dm|ram|loop'");
2017-09-13 16:16:27 +08:00
}
2017-10-20 00:41:44 +08:00
// Setup suDB
SuDatabaseHelper.setupSuDB();
2017-10-21 22:54:47 +08:00
// Check alternative Magisk Manager
String pkg;
if (getPackageName().equals(ORIG_PKG_NAME) &&
(pkg = suDB.getStrings(SuDatabaseHelper.REQUESTER, null)) != null) {
Shell.su_raw("pm uninstall " + pkg);
suDB.setStrings(SuDatabaseHelper.REQUESTER, null);
}
2017-10-20 00:41:44 +08:00
// Add update checking service
if (UPDATE_SERVICE_VER > updateServiceVersion) {
ComponentName service = new ComponentName(this, UpdateCheckService.class);
JobInfo info = new JobInfo.Builder(UPDATE_SERVICE_ID, service)
.setRequiredNetworkType(JobInfo.NETWORK_TYPE_ANY)
.setPersisted(true)
.setPeriodic(8 * 60 * 60 * 1000)
.build();
((JobScheduler) getSystemService(Context.JOB_SCHEDULER_SERVICE)).schedule(info);
updateServiceVersion = UPDATE_SERVICE_VER;
}
// Fire asynctasks
loadModuleTask.exec();
2017-09-13 16:16:27 +08:00
}
2017-08-12 01:31:34 +08:00
// Write back default values
2017-02-07 02:01:32 +08:00
prefs.edit()
.putBoolean("dark_theme", isDarkTheme)
.putBoolean("magiskhide", magiskHide)
2017-02-22 04:58:03 +08:00
.putBoolean("notification", updateNotification)
2017-10-15 23:02:44 +08:00
.putBoolean("hosts", Utils.itemExist(MAGISK_HOST_FILE))
.putBoolean("disable", Utils.itemExist(MAGISK_DISABLE_FILE))
2017-05-31 16:31:33 +08:00
.putBoolean("su_reauth", suReauth)
2017-02-07 02:01:32 +08:00
.putString("su_request_timeout", String.valueOf(suRequestTimeout))
.putString("su_auto_response", String.valueOf(suResponseType))
.putString("su_notification", String.valueOf(suNotificationType))
.putString("su_access", String.valueOf(suAccessState))
2017-05-27 02:41:24 +08:00
.putString("multiuser_mode", String.valueOf(multiuserMode))
2017-06-08 22:27:24 +08:00
.putString("mnt_ns", String.valueOf(suNamespaceMode))
2017-08-29 01:34:42 +08:00
.putString("update_channel", String.valueOf(updateChannel))
2017-08-27 01:38:05 +08:00
.putString("locale", localeConfig)
2017-09-03 17:24:05 +08:00
.putString("boot_format", bootFormat)
2017-10-20 00:41:44 +08:00
.putInt("update_service_version", updateServiceVersion)
2017-02-07 02:01:32 +08:00
.apply();
}
2017-08-12 01:31:34 +08:00
public void getMagiskInfo() {
List<String> ret;
2017-10-15 23:02:44 +08:00
ret = Shell.sh("su -v");
2017-02-07 02:01:32 +08:00
if (Utils.isValidShellResponse(ret)) {
suVersion = ret.get(0);
isSuClient = suVersion.toUpperCase().contains("MAGISK");
}
2017-10-15 23:02:44 +08:00
ret = Shell.sh("magisk -v");
2017-02-07 02:01:32 +08:00
if (!Utils.isValidShellResponse(ret)) {
2017-10-15 23:02:44 +08:00
ret = Shell.sh("getprop magisk.version");
2017-05-12 02:25:07 +08:00
if (Utils.isValidShellResponse(ret)) {
try {
magiskVersionString = ret.get(0);
magiskVersionCode = (int) Double.parseDouble(ret.get(0)) * 10;
} catch (NumberFormatException ignored) {}
}
2017-02-07 02:01:32 +08:00
} else {
2017-05-12 02:25:07 +08:00
magiskVersionString = ret.get(0).split(":")[0];
2017-10-15 23:02:44 +08:00
ret = Shell.sh("magisk -V");
2017-02-07 02:01:32 +08:00
try {
2017-05-12 02:25:07 +08:00
magiskVersionCode = Integer.parseInt(ret.get(0));
} catch (NumberFormatException ignored) {}
2017-02-07 02:01:32 +08:00
}
2017-10-15 23:02:44 +08:00
ret = Shell.sh("getprop " + DISABLE_INDICATION_PROP);
2017-02-07 02:01:32 +08:00
try {
disabled = Utils.isValidShellResponse(ret) && Integer.parseInt(ret.get(0)) != 0;
} catch (NumberFormatException e) {
disabled = false;
}
2017-10-15 03:12:13 +08:00
if (magiskVersionCode > 1435) {
2017-10-15 23:02:44 +08:00
ret = Shell.su("resetprop -p " + MAGISKHIDE_PROP);
2017-10-15 03:12:13 +08:00
} else {
2017-10-15 23:02:44 +08:00
ret = Shell.sh("getprop " + MAGISKHIDE_PROP);
2017-10-15 03:12:13 +08:00
}
try {
2017-07-01 17:38:33 +08:00
magiskHide = !Utils.isValidShellResponse(ret) || Integer.parseInt(ret.get(0)) != 0;
} catch (NumberFormatException e) {
2017-07-01 17:38:33 +08:00
magiskHide = true;
}
2017-07-18 03:34:06 +08:00
}
2017-02-07 02:01:32 +08:00
}