diff --git a/LaunchServer/src/main/java/ru/gravit/launchserver/LaunchServer.java b/LaunchServer/src/main/java/ru/gravit/launchserver/LaunchServer.java index 3ac18552..6963cb9c 100644 --- a/LaunchServer/src/main/java/ru/gravit/launchserver/LaunchServer.java +++ b/LaunchServer/src/main/java/ru/gravit/launchserver/LaunchServer.java @@ -282,7 +282,7 @@ public static void main(String... args) throws Throwable { public final RSAPrivateKey privateKey; // Launcher binary - public final LauncherBinary launcherBinary; + public final JARLauncherBinary launcherBinary; public final LauncherBinary launcherEXEBinary; // HWID ban + anti-brutforce diff --git a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java index e58137e4..ecae496b 100644 --- a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java +++ b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java @@ -5,6 +5,7 @@ import java.nio.file.Path; import java.util.ArrayList; +import ru.gravit.launcher.Launcher; import ru.gravit.launchserver.LaunchServer; import ru.gravit.launchserver.binary.tasks.LauncherBuildTask; import ru.gravit.launchserver.binary.tasks.MainBuildTask; @@ -16,6 +17,9 @@ public final class JARLauncherBinary extends LauncherBinary { public ArrayList tasks; + public final Path runtimeDir; + public final Path guardDir; + public JARLauncherBinary(LaunchServer server) throws IOException { super(server); tasks = new ArrayList<>(); @@ -24,6 +28,8 @@ public JARLauncherBinary(LaunchServer server) throws IOException { if(server.config.enabledProGuard) tasks.add(new ProGuardBuildTask(server)); if(server.config.stripLineNumbers) tasks.add(new StripLineNumbersTask(server)); syncBinaryFile = server.dir.resolve(server.config.binaryName + ".jar"); + runtimeDir = server.dir.resolve(Launcher.RUNTIME_DIR); + guardDir = server.dir.resolve(Launcher.GUARD_DIR); } @Override diff --git a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/MainBuildTask.java b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/MainBuildTask.java index 03e803b1..d89e4052 100644 --- a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/MainBuildTask.java +++ b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/MainBuildTask.java @@ -29,11 +29,8 @@ import ru.gravit.utils.helper.IOHelper; import ru.gravit.utils.helper.LogHelper; import ru.gravit.utils.helper.SecurityHelper; -import ru.gravit.utils.helper.UnpackHelper; public class MainBuildTask implements LauncherBuildTask { - public final Path runtimeDir; - public final Path guardDir; public final Path binaryFile; public Path cleanJar; private final LaunchServer server; @@ -49,14 +46,14 @@ private RuntimeDirVisitor(ZipOutputStream output, Map runtime) { @Override public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException { - String dirName = IOHelper.toString(runtimeDir.relativize(dir)); + String dirName = IOHelper.toString(server.launcherBinary.runtimeDir.relativize(dir)); output.putNextEntry(newEntry(dirName + '/')); return super.preVisitDirectory(dir, attrs); } @Override public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { - String fileName = IOHelper.toString(runtimeDir.relativize(file)); + String fileName = IOHelper.toString(server.launcherBinary.runtimeDir.relativize(file)); runtime.put(fileName, SecurityHelper.digest(SecurityHelper.DigestAlgorithm.MD5, file)); // Create zip entry and transfer contents @@ -68,7 +65,6 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IO } } - // TODO: new native security wrapper and library... private final class GuardDirVisitor extends SimpleFileVisitor { private final ZipOutputStream output; private final Map guard; @@ -80,14 +76,14 @@ private GuardDirVisitor(ZipOutputStream output, Map guard) { @Override public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException { - String dirName = IOHelper.toString(guardDir.relativize(dir)); + String dirName = IOHelper.toString(server.launcherBinary.guardDir.relativize(dir)); output.putNextEntry(newGuardEntry(dirName + '/')); return super.preVisitDirectory(dir, attrs); } @Override public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { - String fileName = IOHelper.toString(guardDir.relativize(file)); + String fileName = IOHelper.toString(server.launcherBinary.guardDir.relativize(file)); guard.put(fileName, SecurityHelper.digest(SecurityHelper.DigestAlgorithm.MD5, file)); // Create zip entry and transfer contents @@ -106,10 +102,9 @@ private static ZipEntry newEntry(String fileName) { private static ZipEntry newGuardEntry(String fileName) { return newZipEntry(Launcher.GUARD_DIR + IOHelper.CROSS_SEPARATOR + fileName); } + public MainBuildTask(LaunchServer srv) { server = srv; - runtimeDir = server.dir.resolve(Launcher.RUNTIME_DIR); - guardDir = server.dir.resolve(Launcher.GUARD_DIR); binaryFile = server.dir.resolve(server.config.binaryName + "-main.jar"); reader = new ClassMetadataReader(); } @@ -177,8 +172,8 @@ public Path process(Path cleanJar) throws IOException { Map runtime = new HashMap<>(256); if (server.buildHookManager.buildRuntime()) { // Write launcher guard dir - IOHelper.walk(runtimeDir, new RuntimeDirVisitor(output, runtime), false); - IOHelper.walk(guardDir, new GuardDirVisitor(output, runtime), false); + IOHelper.walk(server.launcherBinary.runtimeDir, new RuntimeDirVisitor(output, runtime), false); + IOHelper.walk(server.launcherBinary.guardDir, new GuardDirVisitor(output, runtime), false); } // Create launcher config file byte[] launcherConfigBytes; @@ -207,10 +202,4 @@ public Path process(Path cleanJar) throws IOException { public boolean allowDelete() { return true; } - - public void tryUnpack() throws IOException { - LogHelper.info("Unpacking launcher native guard files and runtime"); - UnpackHelper.unpackZipNoCheck("guard.zip", guardDir); - UnpackHelper.unpackZipNoCheck("runtime.zip", runtimeDir); - } } diff --git a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/UnpackBuildTask.java b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/UnpackBuildTask.java index a6ec622a..df46b778 100644 --- a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/UnpackBuildTask.java +++ b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/tasks/UnpackBuildTask.java @@ -1,13 +1,14 @@ package ru.gravit.launchserver.binary.tasks; +import ru.gravit.launchserver.LaunchServer; +import ru.gravit.utils.helper.IOHelper; +import ru.gravit.utils.helper.LogHelper; +import ru.gravit.utils.helper.UnpackHelper; + import java.io.IOException; import java.net.URL; import java.nio.file.Path; -import ru.gravit.launchserver.LaunchServer; -import ru.gravit.utils.helper.IOHelper; -import ru.gravit.utils.helper.UnpackHelper; - public class UnpackBuildTask implements LauncherBuildTask { private final LaunchServer server; @@ -15,7 +16,7 @@ public UnpackBuildTask(LaunchServer server) { this.server = server; } - @Override + @Override public String getName() { return "UnpackFromResources"; } @@ -32,4 +33,10 @@ public Path process(Path inputFile) throws IOException { public boolean allowDelete() { return false; } + + public void tryUnpack() throws IOException { + LogHelper.info("Unpacking launcher native guard files and runtime"); + UnpackHelper.unpackZipNoCheck("guard.zip", server.launcherBinary.guardDir); + UnpackHelper.unpackZipNoCheck("runtime.zip", server.launcherBinary.runtimeDir); + } } diff --git a/Launcher/runtime/config.js b/Launcher/runtime/config.js index 2acf6dba..9d8062d0 100644 --- a/Launcher/runtime/config.js +++ b/Launcher/runtime/config.js @@ -42,16 +42,3 @@ var serversConfig = { return serversConfig[profile][property]; } }; - -var optModNames = { - optAutoModName: true,//Попытатся автоматически создать представляемое имя модификации - modInfo: {//"Путь до опц. модификации" : "Отображаемый клиенту контент" - /*"mods/ModName-1.1.jar": { - name: "ModName", //Наименование модификации (Отображаемое в лаунчере) [Можно не указывать] - description:"Лучший в своём роде ModName.", //Описание модификации [Можно не указывать] - subTreeLevel: 1, //Уровень вложенности модификации (Ядро - 1, Мод - 2, Аддон - 3 и т.д...) (будет произведён отступ от левого края для выделения) [Можно не указывать, по умолчанию: 1] - onlyOne: true, //Для выбора только одной из группы модификаций [Можно не указывать] - onlyOneGroup: 1 //Используется в совокупности с onlyOne. Определяет ту самую группу, из которой производится выбор. - },*/ - } -} diff --git a/Launcher/src/main/java/ru/gravit/launcher/client/ClientLauncher.java b/Launcher/src/main/java/ru/gravit/launcher/client/ClientLauncher.java index dea50c57..f5126368 100644 --- a/Launcher/src/main/java/ru/gravit/launcher/client/ClientLauncher.java +++ b/Launcher/src/main/java/ru/gravit/launcher/client/ClientLauncher.java @@ -279,9 +279,6 @@ public static boolean isUsingWrapper() { } private static void launch(ClientProfile profile, Params params) throws Throwable { - // Add natives path - //JVMHelper.addNativePath(params.clientDir.resolve(NATIVES_DIR)); - // Add client args Collection args = new LinkedList<>(); if (profile.getVersion().compareTo(ClientProfile.Version.MC164) >= 0) diff --git a/compat/auth/asframework.php b/compat/auth/asframework.php new file mode 100644 index 00000000..829189fd --- /dev/null +++ b/compat/auth/asframework.php @@ -0,0 +1,56 @@ +auth($args['login'],$args['pass']); + echo 'OK:'.$acc->login.''; + app::stop(); + } catch (AccountException $e) { + $msg = $e->getMessage(); + if ($msg == AccountException::AuthError) { + echo 'Login or password is incorrect'; + app::stop(); + } + if ($msg == AccountException::NoLoginError) { + echo 'This account is not allowed to sign in'; + app::stop(); + } + if ($msg == AccountException::FatalBanError) { + echo 'You are permanently banned'; + app::stop(); + } + } + } +} diff --git a/libLauncher/src/main/java/ru/gravit/launcher/LauncherAgent.java b/libLauncher/src/main/java/ru/gravit/launcher/LauncherAgent.java index eb3925bd..19b6794e 100644 --- a/libLauncher/src/main/java/ru/gravit/launcher/LauncherAgent.java +++ b/libLauncher/src/main/java/ru/gravit/launcher/LauncherAgent.java @@ -7,7 +7,7 @@ import java.util.jar.JarFile; @LauncherAPI -public class LauncherAgent { +public final class LauncherAgent { private static boolean isAgentStarted = false; public static Instrumentation inst;