2018-09-17 10:07:32 +03:00
|
|
|
package ru.gravit.launchserver.binary;
|
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
import javassist.CannotCompileException;
|
|
|
|
import javassist.NotFoundException;
|
|
|
|
import proguard.Configuration;
|
|
|
|
import proguard.ConfigurationParser;
|
|
|
|
import proguard.ParseException;
|
|
|
|
import proguard.ProGuard;
|
|
|
|
import ru.gravit.launcher.AutogenConfig;
|
|
|
|
import ru.gravit.launcher.Launcher;
|
|
|
|
import ru.gravit.launcher.LauncherConfig;
|
|
|
|
import ru.gravit.launcher.serialize.HOutput;
|
|
|
|
import ru.gravit.launchserver.LaunchServer;
|
|
|
|
import ru.gravit.launchserver.asm.ClassMetadataReader;
|
|
|
|
import ru.gravit.launchserver.manangers.BuildHookManager.ZipBuildHook;
|
|
|
|
import ru.gravit.utils.helper.*;
|
|
|
|
import ru.gravit.utils.helper.SecurityHelper.DigestAlgorithm;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
|
|
import java.io.ByteArrayOutputStream;
|
|
|
|
import java.io.IOException;
|
2018-12-06 05:29:34 +03:00
|
|
|
import java.nio.file.FileVisitResult;
|
|
|
|
import java.nio.file.Path;
|
|
|
|
import java.nio.file.SimpleFileVisitor;
|
2018-09-17 10:07:32 +03:00
|
|
|
import java.nio.file.attribute.BasicFileAttributes;
|
2018-12-02 15:21:27 +03:00
|
|
|
import java.util.ArrayList;
|
2018-09-17 10:07:32 +03:00
|
|
|
import java.util.HashMap;
|
2018-12-02 15:21:27 +03:00
|
|
|
import java.util.List;
|
2018-09-17 10:07:32 +03:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Map.Entry;
|
2018-12-06 05:29:34 +03:00
|
|
|
import java.util.jar.JarFile;
|
2018-09-17 10:07:32 +03:00
|
|
|
import java.util.zip.ZipEntry;
|
|
|
|
import java.util.zip.ZipException;
|
|
|
|
import java.util.zip.ZipInputStream;
|
|
|
|
import java.util.zip.ZipOutputStream;
|
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
import static ru.gravit.utils.helper.IOHelper.newZipEntry;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
public final class JARLauncherBinary extends LauncherBinary {
|
2018-10-13 07:59:50 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
private final class RuntimeDirVisitor extends SimpleFileVisitor<Path> {
|
|
|
|
private final ZipOutputStream output;
|
|
|
|
private final Map<String, byte[]> runtime;
|
2018-10-13 07:59:50 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
private RuntimeDirVisitor(ZipOutputStream output, Map<String, byte[]> runtime) {
|
|
|
|
this.output = output;
|
|
|
|
this.runtime = runtime;
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
@Override
|
|
|
|
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
|
|
|
|
String dirName = IOHelper.toString(runtimeDir.relativize(dir));
|
|
|
|
output.putNextEntry(newEntry(dirName + '/'));
|
|
|
|
return super.preVisitDirectory(dir, attrs);
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
@Override
|
|
|
|
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
|
|
|
String fileName = IOHelper.toString(runtimeDir.relativize(file));
|
|
|
|
runtime.put(fileName, SecurityHelper.digest(DigestAlgorithm.MD5, file));
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// Create zip entry and transfer contents
|
|
|
|
output.putNextEntry(newEntry(fileName));
|
|
|
|
IOHelper.transfer(file, output);
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// Return result
|
|
|
|
return super.visitFile(file, attrs);
|
|
|
|
}
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// TODO: new native security wrapper and library...
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
private final class GuardDirVisitor extends SimpleFileVisitor<Path> {
|
|
|
|
private final ZipOutputStream output;
|
|
|
|
private final Map<String, byte[]> guard;
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
private GuardDirVisitor(ZipOutputStream output, Map<String, byte[]> guard) {
|
|
|
|
this.output = output;
|
|
|
|
this.guard = guard;
|
|
|
|
}
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
@Override
|
|
|
|
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
|
|
|
|
String dirName = IOHelper.toString(guardDir.relativize(dir));
|
|
|
|
output.putNextEntry(newGuardEntry(dirName + '/'));
|
|
|
|
return super.preVisitDirectory(dir, attrs);
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
@Override
|
|
|
|
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
|
|
|
String fileName = IOHelper.toString(guardDir.relativize(file));
|
|
|
|
guard.put(fileName, SecurityHelper.digest(DigestAlgorithm.MD5, file));
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// Create zip entry and transfer contents
|
|
|
|
output.putNextEntry(newGuardEntry(fileName));
|
|
|
|
IOHelper.transfer(file, output);
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// Return result
|
|
|
|
return super.visitFile(file, attrs);
|
|
|
|
}
|
|
|
|
}
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
private static ZipEntry newEntry(String fileName) {
|
|
|
|
return newZipEntry(Launcher.RUNTIME_DIR + IOHelper.CROSS_SEPARATOR + fileName);
|
|
|
|
}
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
private static ZipEntry newGuardEntry(String fileName) {
|
|
|
|
return newZipEntry(Launcher.GUARD_DIR + IOHelper.CROSS_SEPARATOR + fileName);
|
|
|
|
}
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
public final Path cleanJar;
|
|
|
|
public final Path runtimeDir;
|
|
|
|
public final Path guardDir;
|
|
|
|
public final Path initScriptFile;
|
|
|
|
public final Path obfJar;
|
|
|
|
public final Path obfOutJar;
|
|
|
|
public ClassMetadataReader reader;
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
public JARLauncherBinary(LaunchServer server) throws IOException {
|
|
|
|
super(server, server.dir.resolve(server.config.binaryName + "-nonObf.jar"),
|
|
|
|
server.dir.resolve(server.config.binaryName + ".jar"));
|
|
|
|
runtimeDir = server.dir.resolve(Launcher.RUNTIME_DIR);
|
|
|
|
guardDir = server.dir.resolve(Launcher.GUARD_DIR);
|
|
|
|
initScriptFile = runtimeDir.resolve(Launcher.INIT_SCRIPT_FILE);
|
|
|
|
obfJar = server.dir.resolve(server.config.binaryName + "-obfed.jar");
|
|
|
|
obfOutJar = server.config.buildPostTransform.enabled ? server.dir.resolve(server.config.binaryName + "-obf.jar")
|
|
|
|
: syncBinaryFile;
|
|
|
|
cleanJar = server.dir.resolve(server.config.binaryName + "-clean.jar");
|
|
|
|
reader = new ClassMetadataReader();
|
|
|
|
UnpackHelper.unpack(IOHelper.getResourceURL("Launcher.jar"), cleanJar);
|
|
|
|
reader.getCp().add(new JarFile(cleanJar.toFile()));
|
|
|
|
tryUnpack();
|
|
|
|
}
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
@Override
|
|
|
|
public void build() throws IOException {
|
|
|
|
tryUnpack();
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// Build launcher binary
|
|
|
|
LogHelper.info("Building launcher binary file");
|
|
|
|
stdBuild();
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// ProGuard
|
|
|
|
Configuration proguard_cfg = new Configuration();
|
|
|
|
ConfigurationParser parser = new ConfigurationParser(server.proguardConf.confStrs.toArray(new String[0]),
|
|
|
|
server.proguardConf.proguard.toFile(), System.getProperties());
|
|
|
|
try {
|
|
|
|
parser.parse(proguard_cfg);
|
|
|
|
ProGuard proGuard = new ProGuard(proguard_cfg);
|
|
|
|
proGuard.execute();
|
|
|
|
} catch (ParseException e1) {
|
|
|
|
e1.printStackTrace();
|
|
|
|
}
|
|
|
|
for (Runnable r : server.buildHookManager.getPostProguardRunHooks())
|
|
|
|
r.run();
|
|
|
|
try (ZipInputStream input = new ZipInputStream(IOHelper.newInput(obfJar));
|
|
|
|
ZipOutputStream output = new ZipOutputStream(IOHelper.newOutput(obfOutJar))) {
|
|
|
|
ZipEntry e = input.getNextEntry();
|
|
|
|
while (e != null) {
|
|
|
|
String filename = e.getName();
|
|
|
|
output.putNextEntry(IOHelper.newZipEntry(e.getName()));
|
|
|
|
if (filename.endsWith(".class")) {
|
|
|
|
String classname = filename.replace('/', '.').substring(0, filename.length() - ".class".length());
|
|
|
|
byte[] bytes;
|
|
|
|
try (ByteArrayOutputStream outputStream = new ByteArrayOutputStream(2048)) {
|
|
|
|
IOHelper.transfer(input, outputStream);
|
|
|
|
bytes = outputStream.toByteArray();
|
|
|
|
}
|
|
|
|
bytes = server.buildHookManager.proGuardClassTransform(bytes, classname, this);
|
|
|
|
try (ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes)) {
|
|
|
|
IOHelper.transfer(inputStream, output);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
IOHelper.transfer(input, output);
|
|
|
|
e = input.getNextEntry();
|
|
|
|
}
|
|
|
|
for (ZipBuildHook h : server.buildHookManager.getProguardBuildHooks())
|
|
|
|
h.build(output);
|
|
|
|
}
|
|
|
|
if (server.config.buildPostTransform.enabled)
|
|
|
|
transformedBuild();
|
|
|
|
}
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
private void transformedBuild() throws IOException {
|
|
|
|
List<String> cmd = new ArrayList<>(1);
|
|
|
|
for (String v : server.config.buildPostTransform.script)
|
|
|
|
cmd.add(CommonHelper.replace(v, "launcher-output", IOHelper.toAbsPathString(syncBinaryFile), "launcher-obf",
|
|
|
|
IOHelper.toAbsPathString(obfJar), "launcher-nonObf", IOHelper.toAbsPathString(binaryFile)));
|
|
|
|
ProcessBuilder builder = new ProcessBuilder();
|
|
|
|
builder.directory(IOHelper.toAbsPath(server.dir).toFile());
|
|
|
|
builder.inheritIO();
|
|
|
|
builder.command(cmd);
|
|
|
|
Process proc = builder.start();
|
|
|
|
try {
|
|
|
|
LogHelper.debug("Transformer process return code: " + proc.waitFor());
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
LogHelper.error(e);
|
|
|
|
}
|
|
|
|
}
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
private void stdBuild() throws IOException {
|
|
|
|
try (ZipOutputStream output = new ZipOutputStream(IOHelper.newOutput(binaryFile));
|
|
|
|
JAConfigurator jaConfigurator = new JAConfigurator(AutogenConfig.class.getName(), this)) {
|
|
|
|
jaConfigurator.pool.insertClassPath(cleanJar.toFile().getAbsolutePath());
|
|
|
|
BuildContext context = new BuildContext(output, jaConfigurator, this);
|
|
|
|
server.buildHookManager.preHook(context);
|
|
|
|
jaConfigurator.setAddress(server.config.getAddress());
|
|
|
|
jaConfigurator.setPort(server.config.port);
|
|
|
|
jaConfigurator.setProjectName(server.config.projectName);
|
|
|
|
jaConfigurator.setSecretKey(SecurityHelper.randomStringAESKey());
|
|
|
|
jaConfigurator.setClientPort(32148 + SecurityHelper.newRandom().nextInt(512));
|
|
|
|
jaConfigurator.setUsingWrapper(server.config.isUsingWrapper);
|
|
|
|
jaConfigurator.setDownloadJava(server.config.isDownloadJava);
|
|
|
|
jaConfigurator.setEnv(server.config.env);
|
|
|
|
server.buildHookManager.registerAllClientModuleClass(jaConfigurator);
|
|
|
|
try (ZipInputStream input = new ZipInputStream(IOHelper.newInput(cleanJar))) {
|
|
|
|
ZipEntry e = input.getNextEntry();
|
|
|
|
while (e != null) {
|
|
|
|
String filename = e.getName();
|
|
|
|
if (server.buildHookManager.isContainsBlacklist(filename)) {
|
|
|
|
e = input.getNextEntry();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
output.putNextEntry(IOHelper.newZipEntry(e.getName()));
|
|
|
|
} catch (ZipException ex) {
|
|
|
|
LogHelper.error(ex);
|
|
|
|
e = input.getNextEntry();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".class")) {
|
|
|
|
String classname = filename.replace('/', '.').substring(0,
|
|
|
|
filename.length() - ".class".length());
|
|
|
|
byte[] bytes;
|
|
|
|
try (ByteArrayOutputStream outputStream = new ByteArrayOutputStream(2048)) {
|
|
|
|
IOHelper.transfer(input, outputStream);
|
|
|
|
bytes = outputStream.toByteArray();
|
|
|
|
}
|
|
|
|
bytes = server.buildHookManager.classTransform(bytes, classname, this);
|
|
|
|
try (ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes)) {
|
|
|
|
IOHelper.transfer(inputStream, output);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
IOHelper.transfer(input, output);
|
2018-12-26 12:34:18 +03:00
|
|
|
context.fileList.add(filename);
|
2018-12-20 18:45:01 +03:00
|
|
|
e = input.getNextEntry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// write additional classes
|
|
|
|
for (Entry<String, byte[]> ent : server.buildHookManager.getIncludeClass().entrySet()) {
|
|
|
|
output.putNextEntry(newZipEntry(ent.getKey().replace('.', '/').concat(".class")));
|
|
|
|
output.write(server.buildHookManager.classTransform(ent.getValue(), ent.getKey(), this));
|
|
|
|
}
|
|
|
|
// map for guard
|
|
|
|
Map<String, byte[]> runtime = new HashMap<>(256);
|
|
|
|
if (server.buildHookManager.buildRuntime()) {
|
|
|
|
// Verify has init script file
|
|
|
|
if (!IOHelper.isFile(initScriptFile))
|
|
|
|
throw new IOException(String.format("Missing init script file ('%s')", Launcher.INIT_SCRIPT_FILE));
|
|
|
|
// Write launcher guard dir
|
|
|
|
IOHelper.walk(runtimeDir, new RuntimeDirVisitor(output, runtime), false);
|
|
|
|
// IOHelper.walk(guardDir, new GuardDirVisitor(output, runtime), false);
|
|
|
|
}
|
|
|
|
// Create launcher config file
|
|
|
|
byte[] launcherConfigBytes;
|
|
|
|
try (ByteArrayOutputStream configArray = IOHelper.newByteArrayOutput()) {
|
|
|
|
try (HOutput configOutput = new HOutput(configArray)) {
|
|
|
|
new LauncherConfig(server.config.getAddress(), server.config.port, server.publicKey, runtime)
|
|
|
|
.write(configOutput);
|
|
|
|
}
|
|
|
|
launcherConfigBytes = configArray.toByteArray();
|
|
|
|
}
|
2018-12-06 05:29:34 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
// Write launcher config file
|
|
|
|
output.putNextEntry(newZipEntry(Launcher.CONFIG_FILE));
|
|
|
|
output.write(launcherConfigBytes);
|
|
|
|
ZipEntry e = newZipEntry(jaConfigurator.getZipEntryPath());
|
|
|
|
output.putNextEntry(e);
|
|
|
|
jaConfigurator.compile();
|
|
|
|
output.write(jaConfigurator.getBytecode());
|
|
|
|
server.buildHookManager.postHook(context);
|
|
|
|
} catch (CannotCompileException | NotFoundException e) {
|
|
|
|
LogHelper.error(e);
|
|
|
|
}
|
|
|
|
}
|
2018-10-13 07:59:50 +03:00
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
public void tryUnpack() throws IOException {
|
|
|
|
LogHelper.info("Unpacking launcher native guard files and runtime");
|
|
|
|
UnpackHelper.unpackZipNoCheck("guard.zip", guardDir);
|
|
|
|
UnpackHelper.unpackZipNoCheck("runtime.zip", runtimeDir);
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|