57 lines
2.1 KiB
Java
Raw Normal View History

2017-10-30 03:45:22 +08:00
package com.topjohnwu.magisk.utils;
2017-10-31 02:55:50 +08:00
import android.support.annotation.Keep;
2017-10-30 03:45:22 +08:00
import com.topjohnwu.crypto.SignBoot;
import java.io.FileInputStream;
import java.io.InputStream;
2017-10-31 02:55:50 +08:00
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
2017-10-30 03:45:22 +08:00
public class BootSigner {
2017-10-31 02:55:50 +08:00
@Keep
2017-10-30 03:45:22 +08:00
public static void main(String[] args) throws Exception {
2017-10-31 02:55:50 +08:00
if (args.length > 0 && "-verify".equals(args[0])) {
2017-10-30 03:45:22 +08:00
String certPath = "";
2017-10-31 02:55:50 +08:00
if (args.length >= 3 && "-certificate".equals(args[1])) {
/* args[2] is the path to a public key certificate */
certPath = args[2];
2017-10-30 03:45:22 +08:00
}
/* args[1] is the path to a signed boot image */
2017-10-31 02:55:50 +08:00
boolean signed = SignBoot.verifySignature(System.in,
2017-10-30 03:45:22 +08:00
certPath.isEmpty() ? null : new FileInputStream(certPath));
System.exit(signed ? 0 : 1);
2017-10-31 02:55:50 +08:00
} else if (args.length > 0 && "-sign".equals(args[0])) {
InputStream keyIn, certIn;
if (args.length >= 3) {
keyIn = new FileInputStream(args[1]);
certIn = new FileInputStream(args[2]);
2017-10-30 03:45:22 +08:00
} else {
/* Use internal test keys */
2017-10-31 02:55:50 +08:00
JarFile apk = new JarFile(System.getProperty("java.class.path"));
2017-11-06 04:41:23 +08:00
JarEntry keyEntry = apk.getJarEntry("assets/" + Const.PRIVATE_KEY_NAME);
JarEntry sigEntry = apk.getJarEntry("assets/" + Const.PUBLIC_KEY_NAME);
2017-10-31 02:55:50 +08:00
keyIn = apk.getInputStream(keyEntry);
certIn = apk.getInputStream(sigEntry);
2017-10-30 03:45:22 +08:00
}
2017-10-31 02:55:50 +08:00
boolean success = SignBoot.doSignature("/boot", System.in, System.out, keyIn, certIn);
System.exit(success ? 0 : 1);
} else {
System.err.println(
"BootSigner <actions> [args]\n" +
"Input from stdin, outputs to stdout\n" +
"\n" +
"Actions:\n" +
" -verify [x509.pem]\n" +
" verify image, cert is optional\n" +
" -sign [pk8] [x509.pem]\n" +
" sign image, key and cert are optional\n"
);
2017-10-30 03:45:22 +08:00
}
}
}