2021-10-01 20:19:42 +00:00
|
|
|
package com.fox2code.mmm.installer;
|
|
|
|
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.pm.PackageManager;
|
2022-01-23 18:17:08 +00:00
|
|
|
import android.content.res.Resources;
|
2021-10-12 20:06:17 +00:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.drawable.ColorDrawable;
|
2022-02-11 14:25:41 +00:00
|
|
|
import android.os.Build;
|
2021-10-01 20:19:42 +00:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.KeyEvent;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.WindowManager;
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
2022-01-26 19:34:36 +00:00
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
|
2021-10-01 20:19:42 +00:00
|
|
|
import com.fox2code.mmm.ActionButtonType;
|
2022-03-02 21:20:41 +00:00
|
|
|
import com.fox2code.mmm.AppUpdateManager;
|
2022-01-23 18:17:08 +00:00
|
|
|
import com.fox2code.mmm.BuildConfig;
|
2021-10-01 20:19:42 +00:00
|
|
|
import com.fox2code.mmm.Constants;
|
|
|
|
import com.fox2code.mmm.MainApplication;
|
|
|
|
import com.fox2code.mmm.R;
|
2022-03-26 19:39:47 +00:00
|
|
|
import com.fox2code.mmm.XHooks;
|
2021-10-01 20:19:42 +00:00
|
|
|
import com.fox2code.mmm.compat.CompatActivity;
|
2022-01-23 18:17:08 +00:00
|
|
|
import com.fox2code.mmm.utils.FastException;
|
2021-10-01 20:19:42 +00:00
|
|
|
import com.fox2code.mmm.utils.Files;
|
2022-01-29 17:06:28 +00:00
|
|
|
import com.fox2code.mmm.utils.Hashes;
|
2021-10-01 20:19:42 +00:00
|
|
|
import com.fox2code.mmm.utils.Http;
|
|
|
|
import com.fox2code.mmm.utils.IntentHelper;
|
2022-03-02 21:20:41 +00:00
|
|
|
import com.fox2code.mmm.utils.PropUtils;
|
2021-10-01 20:19:42 +00:00
|
|
|
import com.google.android.material.progressindicator.LinearProgressIndicator;
|
|
|
|
import com.topjohnwu.superuser.CallbackList;
|
|
|
|
import com.topjohnwu.superuser.Shell;
|
2021-10-04 12:47:13 +00:00
|
|
|
import com.topjohnwu.superuser.internal.UiThreadHandler;
|
2021-10-01 20:19:42 +00:00
|
|
|
import com.topjohnwu.superuser.io.SuFile;
|
|
|
|
|
2022-02-05 15:11:32 +00:00
|
|
|
import java.io.ByteArrayInputStream;
|
2021-10-01 20:19:42 +00:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.OutputStream;
|
2022-02-05 15:11:32 +00:00
|
|
|
import java.util.zip.ZipEntry;
|
2022-02-11 14:25:41 +00:00
|
|
|
import java.util.zip.ZipFile;
|
2022-02-05 15:11:32 +00:00
|
|
|
import java.util.zip.ZipInputStream;
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
public class InstallerActivity extends CompatActivity {
|
|
|
|
private static final String TAG = "InstallerActivity";
|
|
|
|
public LinearProgressIndicator progressIndicator;
|
|
|
|
public InstallerTerminal installerTerminal;
|
|
|
|
private File moduleCache;
|
|
|
|
private File toDelete;
|
2022-01-26 19:34:36 +00:00
|
|
|
private boolean textWrap;
|
2022-01-31 22:12:33 +00:00
|
|
|
private boolean canceled;
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
this.moduleCache = new File(this.getCacheDir(), "installer");
|
|
|
|
if (!this.moduleCache.exists() && !this.moduleCache.mkdirs())
|
|
|
|
Log.e(TAG, "Failed to mkdir module cache dir!");
|
2021-10-12 20:06:17 +00:00
|
|
|
super.onCreate(savedInstanceState);
|
2022-01-31 22:12:33 +00:00
|
|
|
this.setDisplayHomeAsUpEnabled(true);
|
2022-02-23 20:30:51 +00:00
|
|
|
setActionBarBackground(null);
|
2022-01-31 22:12:33 +00:00
|
|
|
this.setOnBackPressedCallback(a -> {
|
|
|
|
this.canceled = true; return false;
|
|
|
|
});
|
2021-10-01 20:19:42 +00:00
|
|
|
final Intent intent = this.getIntent();
|
|
|
|
final String target;
|
|
|
|
final String name;
|
2022-01-29 17:06:28 +00:00
|
|
|
final String checksum;
|
2022-01-23 18:17:08 +00:00
|
|
|
final boolean noExtensions;
|
2022-01-26 19:34:36 +00:00
|
|
|
final boolean rootless;
|
2021-10-01 20:19:42 +00:00
|
|
|
// Should we allow 3rd part app to install modules?
|
|
|
|
if (Constants.INTENT_INSTALL_INTERNAL.equals(intent.getAction())) {
|
|
|
|
if (!MainApplication.checkSecret(intent)) {
|
|
|
|
Log.e(TAG, "Security check failed!");
|
|
|
|
this.forceBackPressed();
|
|
|
|
return;
|
|
|
|
}
|
2022-01-23 18:17:08 +00:00
|
|
|
target = intent.getStringExtra(Constants.EXTRA_INSTALL_PATH);
|
|
|
|
name = intent.getStringExtra(Constants.EXTRA_INSTALL_NAME);
|
2022-01-29 17:06:28 +00:00
|
|
|
checksum = intent.getStringExtra(Constants.EXTRA_INSTALL_CHECKSUM);
|
2022-01-23 18:17:08 +00:00
|
|
|
noExtensions = intent.getBooleanExtra(// Allow intent to disable extensions
|
|
|
|
Constants.EXTRA_INSTALL_NO_EXTENSIONS, false);
|
2022-01-26 19:34:36 +00:00
|
|
|
rootless = intent.getBooleanExtra(// For debug only
|
|
|
|
Constants.EXTRA_INSTALL_TEST_ROOTLESS, false);
|
2021-10-01 20:19:42 +00:00
|
|
|
} else {
|
|
|
|
Toast.makeText(this, "Unknown intent!", Toast.LENGTH_SHORT).show();
|
|
|
|
this.forceBackPressed();
|
|
|
|
return;
|
|
|
|
}
|
2022-01-23 18:17:08 +00:00
|
|
|
Log.i(TAG, "Install link: " + target);
|
2021-10-01 20:19:42 +00:00
|
|
|
boolean urlMode = target.startsWith("http://") || target.startsWith("https://");
|
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
|
|
|
setTitle(name);
|
2022-02-11 14:25:41 +00:00
|
|
|
this.textWrap = MainApplication.isTextWrapEnabled();
|
|
|
|
setContentView(this.textWrap ?
|
2022-01-26 19:34:36 +00:00
|
|
|
R.layout.installer_wrap :R.layout.installer);
|
2021-10-12 20:06:17 +00:00
|
|
|
int background;
|
|
|
|
int foreground;
|
|
|
|
if (MainApplication.getINSTANCE().isLightTheme() &&
|
|
|
|
!MainApplication.isForceDarkTerminal()) {
|
|
|
|
background = Color.WHITE;
|
|
|
|
foreground = Color.BLACK;
|
|
|
|
} else {
|
|
|
|
background = Color.BLACK;
|
|
|
|
foreground = Color.WHITE;
|
|
|
|
}
|
2022-01-26 19:34:36 +00:00
|
|
|
View horizontalScroller = findViewById(R.id.install_horizontal_scroller);
|
|
|
|
RecyclerView installTerminal;
|
2021-10-01 20:19:42 +00:00
|
|
|
this.progressIndicator = findViewById(R.id.progress_bar);
|
2021-10-12 20:06:17 +00:00
|
|
|
this.installerTerminal = new InstallerTerminal(
|
2022-01-26 19:34:36 +00:00
|
|
|
installTerminal = findViewById(R.id.install_terminal), foreground);
|
|
|
|
(horizontalScroller != null ? horizontalScroller : installTerminal)
|
|
|
|
.setBackground(new ColorDrawable(background));
|
2021-10-01 20:19:42 +00:00
|
|
|
this.progressIndicator.setVisibility(View.GONE);
|
|
|
|
this.progressIndicator.setIndeterminate(true);
|
2022-02-24 19:27:10 +00:00
|
|
|
this.getWindow().setFlags( // Note: Doesn't require WAKELOCK permission
|
|
|
|
WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON,
|
|
|
|
WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
2021-10-01 20:19:42 +00:00
|
|
|
if (urlMode) {
|
|
|
|
this.progressIndicator.setVisibility(View.VISIBLE);
|
|
|
|
this.installerTerminal.addLine("- Downloading " + name);
|
|
|
|
new Thread(() -> {
|
|
|
|
File moduleCache = this.toDelete =
|
|
|
|
new File(this.moduleCache, "module.zip");
|
|
|
|
if (moduleCache.exists() && !moduleCache.delete() &&
|
|
|
|
!new SuFile(moduleCache.getAbsolutePath()).delete())
|
|
|
|
Log.e(TAG, "Failed to delete module cache");
|
2022-02-03 16:14:40 +00:00
|
|
|
String errMessage = "Failed to download module zip";
|
2021-10-01 20:19:42 +00:00
|
|
|
try {
|
|
|
|
Log.i(TAG, "Downloading: " + target);
|
|
|
|
byte[] rawModule = Http.doHttpGet(target,(progress, max, done) -> {
|
|
|
|
if (max <= 0 && this.progressIndicator.isIndeterminate())
|
|
|
|
return;
|
|
|
|
this.runOnUiThread(() -> {
|
|
|
|
this.progressIndicator.setIndeterminate(false);
|
|
|
|
this.progressIndicator.setMax(max);
|
|
|
|
this.progressIndicator.setProgressCompat(progress, true);
|
|
|
|
});
|
|
|
|
});
|
2022-02-22 00:45:56 +00:00
|
|
|
this.runOnUiThread(() -> {
|
|
|
|
this.progressIndicator.setVisibility(View.GONE);
|
|
|
|
this.progressIndicator.setIndeterminate(true);
|
|
|
|
});
|
2022-01-31 22:12:33 +00:00
|
|
|
if (this.canceled) return;
|
2022-01-29 17:06:28 +00:00
|
|
|
if (checksum != null && !checksum.isEmpty()) {
|
|
|
|
Log.d(TAG, "Checking for checksum: " + checksum);
|
2022-02-06 12:13:53 +00:00
|
|
|
this.runOnUiThread(() -> {
|
|
|
|
this.installerTerminal.addLine("- Checking file integrity");
|
|
|
|
});
|
2022-01-29 17:06:28 +00:00
|
|
|
if (!Hashes.checkSumMatch(rawModule, checksum)) {
|
|
|
|
this.setInstallStateFinished(false,
|
|
|
|
"! File integrity check failed", "");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2022-01-31 22:12:33 +00:00
|
|
|
if (this.canceled) return;
|
2022-02-05 15:11:32 +00:00
|
|
|
Files.fixJavaZipHax(rawModule);
|
|
|
|
boolean noPatch = false;
|
|
|
|
boolean isModule = false;
|
2022-04-27 19:50:25 +00:00
|
|
|
boolean isAnyKernel = false;
|
2022-02-05 15:11:32 +00:00
|
|
|
errMessage = "File is not a valid zip file";
|
|
|
|
try (ZipInputStream zipInputStream = new ZipInputStream(
|
|
|
|
new ByteArrayInputStream(rawModule))) {
|
|
|
|
ZipEntry zipEntry;
|
|
|
|
while ((zipEntry = zipInputStream.getNextEntry()) != null) {
|
|
|
|
String entryName = zipEntry.getName();
|
2022-04-27 19:50:25 +00:00
|
|
|
if (entryName.equals("anykernel.sh")) {
|
|
|
|
isAnyKernel = true;
|
|
|
|
break;
|
|
|
|
} else if (entryName.equals("module.prop")) {
|
2022-02-05 15:11:32 +00:00
|
|
|
noPatch = true;
|
|
|
|
isModule = true;
|
|
|
|
break;
|
|
|
|
} else if (entryName.endsWith("/module.prop")) {
|
|
|
|
isModule = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!isModule) {
|
2022-04-27 19:50:25 +00:00
|
|
|
this.setInstallStateFinished(false, isAnyKernel ?
|
|
|
|
"! AnyKernel modules can only be installed on recovery" :
|
2022-02-05 15:11:32 +00:00
|
|
|
"! File is not a valid magisk module", "");
|
|
|
|
return;
|
|
|
|
}
|
2022-01-23 18:17:08 +00:00
|
|
|
if (noPatch) {
|
2022-02-05 15:11:32 +00:00
|
|
|
errMessage = "Failed to save module zip";
|
2022-01-23 18:17:08 +00:00
|
|
|
try (OutputStream outputStream = new FileOutputStream(moduleCache)) {
|
|
|
|
outputStream.write(rawModule);
|
|
|
|
outputStream.flush();
|
|
|
|
}
|
|
|
|
} else {
|
2022-02-03 16:14:40 +00:00
|
|
|
errMessage = "Failed to patch module zip";
|
2022-01-23 18:17:08 +00:00
|
|
|
this.runOnUiThread(() -> {
|
|
|
|
this.installerTerminal.addLine("- Patching " + name);
|
|
|
|
});
|
|
|
|
Log.i(TAG, "Patching: " + moduleCache.getName());
|
|
|
|
try (OutputStream outputStream = new FileOutputStream(moduleCache)) {
|
|
|
|
Files.patchModuleSimple(rawModule, outputStream);
|
|
|
|
outputStream.flush();
|
|
|
|
}
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
2022-01-31 22:12:33 +00:00
|
|
|
if (this.canceled) return;
|
2022-01-23 18:17:08 +00:00
|
|
|
//noinspection UnusedAssignment (Important to avoid OutOfMemoryError)
|
2022-01-31 22:12:33 +00:00
|
|
|
rawModule = null; // Because reference is kept when calling doInstall
|
2021-10-01 20:19:42 +00:00
|
|
|
this.runOnUiThread(() -> {
|
|
|
|
this.installerTerminal.addLine("- Installing " + name);
|
|
|
|
});
|
2022-02-03 16:14:40 +00:00
|
|
|
errMessage = "Failed to install module zip";
|
2022-01-26 19:34:36 +00:00
|
|
|
this.doInstall(moduleCache, noExtensions, rootless);
|
2021-10-01 20:19:42 +00:00
|
|
|
} catch (IOException e) {
|
2022-02-03 16:14:40 +00:00
|
|
|
Log.e(TAG, errMessage, e);
|
2021-10-01 20:19:42 +00:00
|
|
|
this.setInstallStateFinished(false,
|
2022-02-03 16:14:40 +00:00
|
|
|
"! " + errMessage, "");
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
}, "Module download Thread").start();
|
|
|
|
} else {
|
2022-01-29 17:06:28 +00:00
|
|
|
final File moduleFile = new File(target);
|
|
|
|
if (checksum != null && !checksum.isEmpty()) {
|
|
|
|
Log.d(TAG, "Checking for checksum: " + checksum);
|
|
|
|
this.installerTerminal.addLine("- Checking file integrity");
|
|
|
|
try {
|
|
|
|
if (!Hashes.checkSumMatch(Files.readSU(moduleFile), checksum)) {
|
|
|
|
this.setInstallStateFinished(false,
|
|
|
|
"! File integrity check failed", "");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.e(TAG, "Failed to read file for checksum check", e);
|
|
|
|
this.setInstallStateFinished(false,
|
|
|
|
"! File integrity check failed", "");
|
|
|
|
return;
|
|
|
|
}
|
2022-01-31 22:12:33 +00:00
|
|
|
if (this.canceled) return;
|
2022-01-29 17:06:28 +00:00
|
|
|
}
|
2021-10-01 20:19:42 +00:00
|
|
|
this.installerTerminal.addLine("- Installing " + name);
|
|
|
|
new Thread(() -> this.doInstall(
|
2022-01-29 17:06:28 +00:00
|
|
|
this.toDelete = moduleFile, noExtensions, rootless),
|
2021-10-01 20:19:42 +00:00
|
|
|
"Install Thread").start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-29 17:06:28 +00:00
|
|
|
|
2022-01-26 19:34:36 +00:00
|
|
|
private void doInstall(File file,boolean noExtensions,boolean rootless) {
|
2022-01-31 22:12:33 +00:00
|
|
|
if (this.canceled) return;
|
2022-02-02 14:53:28 +00:00
|
|
|
UiThreadHandler.runAndWait(() -> {
|
|
|
|
this.setOnBackPressedCallback(DISABLE_BACK_BUTTON);
|
|
|
|
this.setDisplayHomeAsUpEnabled(false);
|
|
|
|
});
|
2021-10-01 20:19:42 +00:00
|
|
|
Log.i(TAG, "Installing: " + moduleCache.getName());
|
|
|
|
InstallerController installerController = new InstallerController(
|
2022-01-23 18:17:08 +00:00
|
|
|
this.progressIndicator, this.installerTerminal,
|
|
|
|
file.getAbsoluteFile(), noExtensions);
|
2021-10-23 16:14:40 +00:00
|
|
|
InstallerMonitor installerMonitor;
|
|
|
|
Shell.Job installJob;
|
2022-01-26 19:34:36 +00:00
|
|
|
if (rootless) { // rootless is only used for debugging
|
|
|
|
File installScript = this.extractInstallScript("module_installer_test.sh");
|
|
|
|
if (installScript == null) {
|
|
|
|
this.setInstallStateFinished(false,
|
|
|
|
"! Failed to extract test install script", "");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
installerMonitor = new InstallerMonitor(installScript);
|
2022-03-10 20:16:53 +00:00
|
|
|
installJob = Shell.cmd("export MMM_EXT_SUPPORT=1",
|
2022-01-26 19:34:36 +00:00
|
|
|
"cd \"" + this.moduleCache.getAbsolutePath() + "\"",
|
|
|
|
"sh \"" + installScript.getAbsolutePath() + "\"" +
|
|
|
|
" /dev/null 1 \"" + file.getAbsolutePath() + "\"")
|
|
|
|
.to(installerController, installerMonitor);
|
2022-01-31 15:05:03 +00:00
|
|
|
} else {
|
2022-02-11 14:25:41 +00:00
|
|
|
String arch32 = "true"; // Do nothing by default
|
2022-03-02 21:20:41 +00:00
|
|
|
boolean needs32bit = false;
|
|
|
|
String moduleId = null;
|
|
|
|
try (ZipFile zipFile = new ZipFile(file)) {
|
|
|
|
if (zipFile.getEntry( // Check if module hard require 32bit support
|
|
|
|
"common/addon/Volume-Key-Selector/tools/arm64/keycheck") == null &&
|
|
|
|
zipFile.getEntry(
|
|
|
|
"common/addon/Volume-Key-Selector/install.sh") != null) {
|
|
|
|
needs32bit = true;
|
|
|
|
}
|
|
|
|
moduleId = PropUtils.readModuleId(zipFile
|
|
|
|
.getInputStream(zipFile.getEntry("module.prop")));
|
|
|
|
} catch (IOException ignored) {}
|
|
|
|
int compatFlags = AppUpdateManager.getFlagsForModule(moduleId);
|
|
|
|
if ((compatFlags & AppUpdateManager.FLAG_COMPAT_NEED_32BIT) != 0)
|
|
|
|
needs32bit = true;
|
|
|
|
if ((compatFlags & AppUpdateManager.FLAG_COMPAT_NO_EXT) != 0)
|
|
|
|
noExtensions = true;
|
|
|
|
if (moduleId != null && (moduleId.isEmpty() ||
|
|
|
|
moduleId.contains("/") || moduleId.contains("\0") ||
|
|
|
|
(moduleId.startsWith(".") && moduleId.endsWith(".")))) {
|
|
|
|
this.setInstallStateFinished(false,
|
|
|
|
"! This module contain a dangerous moduleId",
|
|
|
|
null);
|
|
|
|
return;
|
|
|
|
}
|
2022-02-11 14:25:41 +00:00
|
|
|
if (Build.SUPPORTED_32_BIT_ABIS.length == 0) {
|
|
|
|
if (needs32bit) {
|
|
|
|
this.setInstallStateFinished(false,
|
|
|
|
"! This module can't be installed on a 64bit only system",
|
|
|
|
null);
|
|
|
|
return;
|
|
|
|
}
|
2022-03-02 21:20:41 +00:00
|
|
|
} else if (needs32bit || (compatFlags & AppUpdateManager.FLAG_COMPAT_NO_EXT) == 0) {
|
2022-02-11 14:25:41 +00:00
|
|
|
// Restore Magisk legacy stuff for retro compatibility
|
|
|
|
if (Build.SUPPORTED_32_BIT_ABIS[0].contains("arm"))
|
|
|
|
arch32 = "export ARCH32=arm";
|
|
|
|
if (Build.SUPPORTED_32_BIT_ABIS[0].contains("x86"))
|
|
|
|
arch32 = "export ARCH32=x86";
|
|
|
|
}
|
2022-01-31 15:05:03 +00:00
|
|
|
String installCommand;
|
|
|
|
File installExecutable;
|
|
|
|
if (InstallerInitializer.peekMagiskVersion() >=
|
|
|
|
Constants.MAGISK_VER_CODE_INSTALL_COMMAND &&
|
2022-03-02 21:20:41 +00:00
|
|
|
((compatFlags & AppUpdateManager.FLAG_COMPAT_MAGISK_CMD) != 0 ||
|
|
|
|
noExtensions || MainApplication.isUsingMagiskCommand())) {
|
2022-01-31 15:05:03 +00:00
|
|
|
installCommand = "magisk --install-module \"" + file.getAbsolutePath() + "\"";
|
|
|
|
installExecutable = new File(InstallerInitializer.peekMagiskPath()
|
|
|
|
.equals("/sbin") ? "/sbin/magisk" : "/system/bin/magisk");
|
|
|
|
} else {
|
|
|
|
installExecutable = this.extractInstallScript("module_installer_compat.sh");
|
|
|
|
if (installExecutable == null) {
|
|
|
|
this.setInstallStateFinished(false,
|
2022-03-02 21:20:41 +00:00
|
|
|
"! Failed to extract module install script", null);
|
2022-01-31 15:05:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
installCommand = "sh \"" + installExecutable.getAbsolutePath() + "\"" +
|
|
|
|
" /dev/null 1 \"" + file.getAbsolutePath() + "\"";
|
|
|
|
}
|
|
|
|
installerMonitor = new InstallerMonitor(installExecutable);
|
2022-03-02 21:20:41 +00:00
|
|
|
if (moduleId != null) installerMonitor.setForCleanUp(moduleId);
|
2022-01-23 18:17:08 +00:00
|
|
|
if (noExtensions) {
|
2022-03-10 20:16:53 +00:00
|
|
|
installJob = Shell.cmd(arch32, // No Extensions
|
2022-01-23 18:17:08 +00:00
|
|
|
"cd \"" + this.moduleCache.getAbsolutePath() + "\"",
|
2022-01-31 15:05:03 +00:00
|
|
|
installCommand).to(installerController, installerMonitor);
|
2022-01-23 18:17:08 +00:00
|
|
|
} else {
|
2022-03-10 20:16:53 +00:00
|
|
|
installJob = Shell.cmd(arch32, "export MMM_EXT_SUPPORT=1",
|
2022-01-23 18:17:08 +00:00
|
|
|
"export MMM_USER_LANGUAGE=" + (MainApplication.isForceEnglish() ?
|
|
|
|
"en-US" : Resources.getSystem()
|
|
|
|
.getConfiguration().locale.toLanguageTag()),
|
|
|
|
"export MMM_APP_VERSION=" + BuildConfig.VERSION_NAME,
|
2022-01-26 19:34:36 +00:00
|
|
|
"export MMM_TEXT_WRAP=" + (this.textWrap ? "1" : "0"),
|
2022-01-23 18:17:08 +00:00
|
|
|
"cd \"" + this.moduleCache.getAbsolutePath() + "\"",
|
2022-01-31 15:05:03 +00:00
|
|
|
installCommand).to(installerController, installerMonitor);
|
2021-10-23 16:14:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
boolean success = installJob.exec().isSuccess();
|
2021-10-04 12:47:13 +00:00
|
|
|
// Wait one UI cycle before disabling controller or processing results
|
|
|
|
UiThreadHandler.runAndWait(() -> {}); // to avoid race conditions
|
2021-10-01 20:19:42 +00:00
|
|
|
installerController.disable();
|
|
|
|
String message = "- Install successful";
|
|
|
|
if (!success) {
|
2021-10-04 12:47:13 +00:00
|
|
|
// Workaround busybox-ndk install recognized as failed when successful
|
|
|
|
if (this.installerTerminal.getLastLine().trim().equals("Done!")) {
|
|
|
|
success = true;
|
|
|
|
} else {
|
|
|
|
message = installerMonitor.doCleanUp();
|
|
|
|
}
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
this.setInstallStateFinished(success, message,
|
|
|
|
installerController.getSupportLink());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class InstallerController extends CallbackList<String> {
|
|
|
|
private final LinearProgressIndicator progressIndicator;
|
|
|
|
private final InstallerTerminal terminal;
|
2021-10-04 12:47:13 +00:00
|
|
|
private final File moduleFile;
|
2022-01-23 18:17:08 +00:00
|
|
|
private final boolean noExtension;
|
2021-10-01 20:19:42 +00:00
|
|
|
private boolean enabled, useExt;
|
|
|
|
private String supportLink = "";
|
|
|
|
|
2021-10-04 12:47:13 +00:00
|
|
|
private InstallerController(LinearProgressIndicator progressIndicator,
|
2022-01-23 18:17:08 +00:00
|
|
|
InstallerTerminal terminal,File moduleFile,
|
|
|
|
boolean noExtension) {
|
2021-10-01 20:19:42 +00:00
|
|
|
this.progressIndicator = progressIndicator;
|
|
|
|
this.terminal = terminal;
|
2021-10-04 12:47:13 +00:00
|
|
|
this.moduleFile = moduleFile;
|
2022-01-23 18:17:08 +00:00
|
|
|
this.noExtension = noExtension;
|
2021-10-01 20:19:42 +00:00
|
|
|
this.enabled = true;
|
|
|
|
this.useExt = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAddElement(String s) {
|
|
|
|
if (!this.enabled) return;
|
|
|
|
Log.d(TAG, "MSG: " + s);
|
2022-01-23 18:17:08 +00:00
|
|
|
if ("#!useExt".equals(s.trim()) && !this.noExtension) {
|
2021-10-01 20:19:42 +00:00
|
|
|
this.useExt = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (this.useExt && s.startsWith("#!")) {
|
|
|
|
this.processCommand(s);
|
|
|
|
} else {
|
2021-10-04 12:47:13 +00:00
|
|
|
this.terminal.addLine(s.replace(
|
|
|
|
this.moduleFile.getAbsolutePath(),
|
|
|
|
this.moduleFile.getName()));
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processCommand(String rawCommand) {
|
|
|
|
final String arg;
|
|
|
|
final String command;
|
|
|
|
int i = rawCommand.indexOf(' ');
|
|
|
|
if (i != -1) {
|
2022-01-23 18:17:08 +00:00
|
|
|
arg = rawCommand.substring(i + 1).trim();
|
2021-10-01 20:19:42 +00:00
|
|
|
command = rawCommand.substring(2, i);
|
|
|
|
} else {
|
|
|
|
arg = "";
|
|
|
|
command = rawCommand.substring(2);
|
|
|
|
}
|
|
|
|
switch (command) {
|
|
|
|
case "addLine":
|
|
|
|
this.terminal.addLine(arg);
|
|
|
|
break;
|
|
|
|
case "setLastLine":
|
|
|
|
this.terminal.setLastLine(arg);
|
|
|
|
break;
|
|
|
|
case "clearTerminal":
|
|
|
|
this.terminal.clearTerminal();
|
|
|
|
break;
|
|
|
|
case "scrollUp":
|
|
|
|
this.terminal.scrollUp();
|
|
|
|
break;
|
|
|
|
case "scrollDown":
|
|
|
|
this.terminal.scrollDown();
|
|
|
|
break;
|
|
|
|
case "showLoading":
|
2022-01-23 18:17:08 +00:00
|
|
|
if (!arg.isEmpty()) {
|
|
|
|
try {
|
|
|
|
short s = Short.parseShort(arg);
|
|
|
|
if (s <= 0) throw FastException.INSTANCE;
|
|
|
|
this.progressIndicator.setMax(s);
|
|
|
|
this.progressIndicator.setIndeterminate(false);
|
|
|
|
} catch (Exception ignored) {
|
|
|
|
this.progressIndicator.setProgressCompat(0, true);
|
|
|
|
this.progressIndicator.setMax(100);
|
|
|
|
if (this.progressIndicator.getVisibility() == View.VISIBLE) {
|
|
|
|
this.progressIndicator.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
this.progressIndicator.setIndeterminate(true);
|
|
|
|
}
|
|
|
|
} else if (!rawCommand.trim().equals("#!showLoading")) {
|
|
|
|
this.progressIndicator.setProgressCompat(0, true);
|
|
|
|
this.progressIndicator.setMax(100);
|
|
|
|
if (this.progressIndicator.getVisibility() == View.VISIBLE) {
|
|
|
|
this.progressIndicator.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
this.progressIndicator.setIndeterminate(true);
|
|
|
|
}
|
2021-10-01 20:19:42 +00:00
|
|
|
this.progressIndicator.setVisibility(View.VISIBLE);
|
|
|
|
break;
|
2022-01-23 18:17:08 +00:00
|
|
|
case "setLoading":
|
|
|
|
try {
|
|
|
|
this.progressIndicator.setProgressCompat(
|
|
|
|
Short.parseShort(arg), true);
|
|
|
|
} catch (Exception ignored) {}
|
|
|
|
break;
|
2021-10-01 20:19:42 +00:00
|
|
|
case "hideLoading":
|
|
|
|
this.progressIndicator.setVisibility(View.GONE);
|
|
|
|
break;
|
|
|
|
case "setSupportLink":
|
|
|
|
// Only set link if valid
|
|
|
|
if (arg.isEmpty() || (arg.startsWith("https://") &&
|
|
|
|
arg.indexOf('/', 8) > 8))
|
|
|
|
this.supportLink = arg;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void disable() {
|
|
|
|
this.enabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSupportLink() {
|
|
|
|
return supportLink;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean dispatchKeyEvent(KeyEvent event) {
|
|
|
|
int keyCode = event.getKeyCode();
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_VOLUME_UP ||
|
|
|
|
keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) return true;
|
|
|
|
return super.dispatchKeyEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class InstallerMonitor extends CallbackList<String> {
|
|
|
|
private static final String DEFAULT_ERR = "! Install failed";
|
2022-02-11 14:25:41 +00:00
|
|
|
private final String installScriptErr;
|
2021-10-23 16:14:40 +00:00
|
|
|
public String lastCommand = "";
|
2022-03-02 21:20:41 +00:00
|
|
|
public String forCleanUp;
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
public InstallerMonitor(File installScript) {
|
|
|
|
super(Runnable::run);
|
2022-02-11 14:25:41 +00:00
|
|
|
this.installScriptErr =
|
|
|
|
installScript.getAbsolutePath() +
|
|
|
|
": /data/adb/modules_update/";
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAddElement(String s) {
|
|
|
|
Log.d(TAG, "Monitor: " + s);
|
|
|
|
this.lastCommand = s;
|
|
|
|
}
|
|
|
|
|
2022-03-02 21:20:41 +00:00
|
|
|
public void setForCleanUp(String forCleanUp) {
|
|
|
|
this.forCleanUp = forCleanUp;
|
|
|
|
}
|
|
|
|
|
2021-10-01 20:19:42 +00:00
|
|
|
private String doCleanUp() {
|
2022-02-11 14:25:41 +00:00
|
|
|
String installScriptErr = this.installScriptErr;
|
2021-10-01 20:19:42 +00:00
|
|
|
// This block is mainly to help fixing customize.sh syntax errors
|
|
|
|
if (this.lastCommand.startsWith(installScriptErr)) {
|
|
|
|
installScriptErr = this.lastCommand.substring(installScriptErr.length());
|
|
|
|
int i = installScriptErr.indexOf('/');
|
|
|
|
if (i == -1) return DEFAULT_ERR;
|
|
|
|
String module = installScriptErr.substring(0, i);
|
|
|
|
SuFile moduleUpdate = new SuFile("/data/adb/modules_update/" + module);
|
|
|
|
if (moduleUpdate.exists()) {
|
|
|
|
if (!moduleUpdate.deleteRecursive())
|
|
|
|
Log.e(TAG, "Failed to delete failed update");
|
|
|
|
return "Error: " + installScriptErr.substring(i + 1);
|
|
|
|
}
|
2022-03-02 21:20:41 +00:00
|
|
|
} else if (this.forCleanUp != null) {
|
|
|
|
SuFile moduleUpdate = new SuFile("/data/adb/modules_update/" + this.forCleanUp);
|
|
|
|
if (moduleUpdate.exists() && !moduleUpdate.deleteRecursive())
|
|
|
|
Log.e(TAG, "Failed to delete failed update");
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
return DEFAULT_ERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-26 19:34:36 +00:00
|
|
|
private File extractInstallScript(String script) {
|
|
|
|
File compatInstallScript = new File(this.moduleCache, script);
|
2022-01-31 22:12:33 +00:00
|
|
|
if (!compatInstallScript.exists() || compatInstallScript.length() == 0) {
|
2021-10-01 20:19:42 +00:00
|
|
|
try {
|
|
|
|
Files.write(compatInstallScript, Files.readAllBytes(
|
2022-01-26 19:34:36 +00:00
|
|
|
this.getAssets().open(script)));
|
2021-10-01 20:19:42 +00:00
|
|
|
} catch (IOException e) {
|
|
|
|
compatInstallScript.delete();
|
2022-01-26 19:34:36 +00:00
|
|
|
Log.e(TAG, "Failed to extract " + script, e);
|
2021-10-01 20:19:42 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return compatInstallScript;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("SameParameterValue")
|
|
|
|
private void setInstallStateFinished(boolean success, String message,String optionalLink) {
|
|
|
|
if (success && toDelete != null && !toDelete.delete()) {
|
|
|
|
SuFile suFile = new SuFile(toDelete.getAbsolutePath());
|
|
|
|
if (suFile.exists() && !suFile.delete())
|
|
|
|
Log.w(TAG, "Failed to delete zip file");
|
|
|
|
else toDelete = null;
|
|
|
|
} else toDelete = null;
|
|
|
|
this.runOnUiThread(() -> {
|
2022-02-24 19:27:10 +00:00
|
|
|
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON, 0);
|
2021-10-01 20:19:42 +00:00
|
|
|
this.setOnBackPressedCallback(null);
|
|
|
|
this.setDisplayHomeAsUpEnabled(true);
|
|
|
|
this.progressIndicator.setVisibility(View.GONE);
|
|
|
|
if (message != null && !message.isEmpty())
|
|
|
|
this.installerTerminal.addLine(message);
|
|
|
|
if (!optionalLink.isEmpty()) {
|
|
|
|
this.setActionBarExtraMenuButton(ActionButtonType.supportIconForUrl(optionalLink),
|
|
|
|
menu -> {
|
|
|
|
IntentHelper.openUrl(this, optionalLink);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
} else if (success) {
|
|
|
|
final Intent intent = this.getIntent();
|
|
|
|
final String config = MainApplication.checkSecret(intent) ?
|
|
|
|
intent.getStringExtra(Constants.EXTRA_INSTALL_CONFIG) : null;
|
|
|
|
if (config != null && !config.isEmpty()) {
|
|
|
|
String configPkg = IntentHelper.getPackageOfConfig(config);
|
|
|
|
try {
|
2022-03-26 19:39:47 +00:00
|
|
|
XHooks.checkConfigTargetExists(this, configPkg, config);
|
2021-10-01 20:19:42 +00:00
|
|
|
this.setActionBarExtraMenuButton(R.drawable.ic_baseline_app_settings_alt_24, menu -> {
|
|
|
|
IntentHelper.openConfig(this, config);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
} catch (PackageManager.NameNotFoundException e) {
|
|
|
|
Log.w(TAG, "Config package \"" +
|
|
|
|
configPkg + "\" missing for installer view");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|