Magisk/app/src/main/java/com/topjohnwu/magisk/utils/PatchAPK.java

153 lines
5.2 KiB
Java
Raw Normal View History

package com.topjohnwu.magisk.utils;
2018-08-01 16:41:10 +00:00
2019-03-22 06:32:21 +00:00
import android.content.ComponentName;
2018-08-01 16:41:10 +00:00
import android.widget.Toast;
2019-05-03 07:36:39 +00:00
import androidx.core.app.NotificationCompat;
2019-01-30 08:10:12 +00:00
import com.topjohnwu.magisk.App;
2018-12-02 20:28:18 +00:00
import com.topjohnwu.magisk.BuildConfig;
2019-03-22 06:32:21 +00:00
import com.topjohnwu.magisk.ClassMap;
2019-01-30 08:10:12 +00:00
import com.topjohnwu.magisk.Config;
import com.topjohnwu.magisk.Const;
2018-08-01 16:41:10 +00:00
import com.topjohnwu.magisk.R;
import com.topjohnwu.magisk.ui.SplashActivity;
import com.topjohnwu.magisk.view.Notifications;
2019-01-30 08:10:12 +00:00
import com.topjohnwu.signing.JarMap;
import com.topjohnwu.signing.SignAPK;
2019-02-03 10:16:29 +00:00
import com.topjohnwu.superuser.Shell;
2018-08-01 16:41:10 +00:00
2018-12-08 02:42:53 +00:00
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
2018-10-26 06:50:45 +00:00
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.CharBuffer;
2018-12-03 14:52:41 +00:00
import java.nio.IntBuffer;
2018-08-01 16:41:10 +00:00
import java.security.SecureRandom;
import java.util.ArrayList;
import java.util.List;
2018-08-01 16:41:10 +00:00
import java.util.jar.JarEntry;
public class PatchAPK {
2018-10-26 06:50:45 +00:00
public static final String LOWERALPHA = "abcdefghijklmnopqrstuvwxyz";
public static final String UPPERALPHA = LOWERALPHA.toUpperCase();
public static final String ALPHA = LOWERALPHA + UPPERALPHA;
public static final String DIGITS = "0123456789";
public static final String ALPHANUM = ALPHA + DIGITS;
public static final String ALPHANUMDOTS = ALPHANUM + "............";
2018-08-01 16:41:10 +00:00
private static String genPackageName(String prefix, int length) {
StringBuilder builder = new StringBuilder(length);
builder.append(prefix);
length -= prefix.length();
SecureRandom random = new SecureRandom();
char next, prev = prefix.charAt(prefix.length() - 1);
2018-08-01 16:41:10 +00:00
for (int i = 0; i < length; ++i) {
2018-10-26 06:50:45 +00:00
if (prev == '.' || i == length - 1) {
next = ALPHA.charAt(random.nextInt(ALPHA.length()));
2018-08-01 16:41:10 +00:00
} else {
2018-10-26 06:50:45 +00:00
next = ALPHANUMDOTS.charAt(random.nextInt(ALPHANUMDOTS.length()));
2018-08-01 16:41:10 +00:00
}
builder.append(next);
prev = next;
}
return builder.toString();
}
private static boolean findAndPatch(byte xml[], String from, String to) {
if (from.length() != to.length())
2018-10-26 06:50:45 +00:00
return false;
CharBuffer buf = ByteBuffer.wrap(xml).order(ByteOrder.LITTLE_ENDIAN).asCharBuffer();
List<Integer> offList = new ArrayList<>();
for (int i = 0; i < buf.length() - from.length(); ++i) {
2018-08-01 16:41:10 +00:00
boolean match = true;
for (int j = 0; j < from.length(); ++j) {
if (buf.get(i + j) != from.charAt(j)) {
2018-08-01 16:41:10 +00:00
match = false;
break;
}
}
if (match) {
offList.add(i);
i += from.length();
2018-08-01 16:41:10 +00:00
}
}
if (offList.isEmpty())
2018-08-01 16:41:10 +00:00
return false;
for (int off : offList) {
buf.position(off);
buf.put(to);
}
2018-08-01 16:41:10 +00:00
return true;
}
2018-12-03 14:52:41 +00:00
private static boolean findAndPatch(byte xml[], int a, int b) {
IntBuffer buf = ByteBuffer.wrap(xml).order(ByteOrder.LITTLE_ENDIAN).asIntBuffer();
int len = xml.length / 4;
for (int i = 0; i < len; ++i) {
if (buf.get(i) == a) {
buf.put(i, b);
return true;
}
}
return false;
}
2018-08-01 16:41:10 +00:00
private static boolean patchAndHide() {
App app = App.self;
2018-08-01 16:41:10 +00:00
// Generate a new app with random package name
File repack = new File(app.getFilesDir(), "patched.apk");
2018-12-02 20:28:18 +00:00
String pkg = genPackageName("com.", BuildConfig.APPLICATION_ID.length());
2018-08-01 16:41:10 +00:00
if (!patch(app.getPackageCodePath(), repack.getPath(), pkg))
2018-08-01 16:41:10 +00:00
return false;
// Install the application
2018-12-08 02:42:53 +00:00
repack.setReadable(true, false);
2019-02-03 10:16:29 +00:00
if (!Shell.su("pm install " + repack).exec().isSuccess())
return false;
2018-08-01 16:41:10 +00:00
2019-01-21 20:49:03 +00:00
Config.set(Config.Key.SU_MANAGER, pkg);
Config.export();
2019-05-03 07:36:39 +00:00
RootUtils.Companion.rmAndLaunch(BuildConfig.APPLICATION_ID,
2019-03-22 06:32:21 +00:00
new ComponentName(pkg, ClassMap.get(SplashActivity.class).getName()));
2018-08-01 16:41:10 +00:00
return true;
}
public static boolean patch(String in, String out, String pkg) {
2018-08-01 16:41:10 +00:00
try {
JarMap jar = new JarMap(in);
JarEntry je = jar.getJarEntry(Const.ANDROID_MANIFEST);
byte xml[] = jar.getRawData(je);
2018-08-01 16:41:10 +00:00
2018-12-08 02:42:53 +00:00
if (!findAndPatch(xml, BuildConfig.APPLICATION_ID, pkg) ||
2018-12-03 14:52:41 +00:00
!findAndPatch(xml, R.string.app_name, R.string.re_app_name))
return false;
2018-08-01 16:41:10 +00:00
// Write in changes
jar.getOutputStream(je).write(xml);
SignAPK.sign(jar, new BufferedOutputStream(new FileOutputStream(out)));
2018-08-01 16:41:10 +00:00
} catch (Exception e) {
e.printStackTrace();
return false;
2018-08-01 16:41:10 +00:00
}
return true;
2018-08-01 16:41:10 +00:00
}
2018-12-03 07:24:07 +00:00
public static void hideManager() {
App.THREAD_POOL.execute(() -> {
App app = App.self;
2018-12-03 07:24:07 +00:00
NotificationCompat.Builder progress =
Notifications.progress(app.getString(R.string.hide_manager_title));
Notifications.mgr.notify(Const.ID.HIDE_MANAGER_NOTIFICATION_ID, progress.build());
if(!patchAndHide())
Utils.toast(R.string.hide_manager_fail_toast, Toast.LENGTH_LONG);
Notifications.mgr.cancel(Const.ID.HIDE_MANAGER_NOTIFICATION_ID);
2018-08-01 16:41:10 +00:00
});
}
}