2018-09-17 10:07:32 +03:00
|
|
|
|
package ru.gravit.launchserver;
|
|
|
|
|
|
2018-12-24 13:10:53 +03:00
|
|
|
|
import com.google.gson.Gson;
|
2018-12-23 19:26:57 +03:00
|
|
|
|
import com.google.gson.GsonBuilder;
|
2018-09-22 17:22:39 +03:00
|
|
|
|
import ru.gravit.launcher.Launcher;
|
2018-12-19 14:24:50 +03:00
|
|
|
|
import ru.gravit.launcher.LauncherConfig;
|
2019-04-03 13:09:53 +03:00
|
|
|
|
import ru.gravit.launcher.NeedGarbageCollection;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
import ru.gravit.launcher.hasher.HashedDir;
|
2019-04-03 13:09:53 +03:00
|
|
|
|
import ru.gravit.launcher.managers.ConfigManager;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
import ru.gravit.launcher.managers.GarbageManager;
|
|
|
|
|
import ru.gravit.launcher.profiles.ClientProfile;
|
|
|
|
|
import ru.gravit.launcher.serialize.signed.SignedObjectHolder;
|
2019-03-22 09:14:29 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.AuthProviderPair;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.handler.AuthHandler;
|
2018-12-23 20:19:43 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.handler.MemoryAuthHandler;
|
|
|
|
|
import ru.gravit.launchserver.auth.hwid.AcceptHWIDHandler;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.hwid.HWIDHandler;
|
2019-04-07 10:53:39 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.permissions.DefaultPermissionsHandler;
|
2018-12-24 13:00:09 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.permissions.JsonFilePermissionsHandler;
|
2018-12-26 14:04:45 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.permissions.PermissionsHandler;
|
2019-04-03 16:27:40 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.protect.NoProtectHandler;
|
|
|
|
|
import ru.gravit.launchserver.auth.protect.ProtectHandler;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.provider.AuthProvider;
|
2018-12-23 20:19:43 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.provider.RejectAuthProvider;
|
2019-01-15 06:35:39 +03:00
|
|
|
|
import ru.gravit.launchserver.binary.*;
|
2019-04-03 16:27:40 +03:00
|
|
|
|
import ru.gravit.launchserver.components.AuthLimiterComponent;
|
2019-03-13 12:13:21 +03:00
|
|
|
|
import ru.gravit.launchserver.components.Component;
|
2019-04-03 13:09:53 +03:00
|
|
|
|
import ru.gravit.launchserver.config.adapter.*;
|
2019-01-15 06:35:39 +03:00
|
|
|
|
import ru.gravit.launchserver.manangers.*;
|
2018-12-31 10:53:07 +03:00
|
|
|
|
import ru.gravit.launchserver.manangers.hook.AuthHookManager;
|
|
|
|
|
import ru.gravit.launchserver.manangers.hook.BuildHookManager;
|
|
|
|
|
import ru.gravit.launchserver.manangers.hook.SocketHookManager;
|
2019-04-04 15:10:28 +03:00
|
|
|
|
import ru.gravit.launchserver.legacy.Response;
|
|
|
|
|
import ru.gravit.launchserver.websocket.NettyServerSocketHandler;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
import ru.gravit.launchserver.socket.ServerSocketHandler;
|
2019-04-04 15:10:28 +03:00
|
|
|
|
import ru.gravit.launchserver.auth.texture.RequestTextureProvider;
|
|
|
|
|
import ru.gravit.launchserver.auth.texture.TextureProvider;
|
2019-04-03 16:27:40 +03:00
|
|
|
|
import ru.gravit.utils.command.CommandHandler;
|
|
|
|
|
import ru.gravit.utils.command.JLineCommandHandler;
|
|
|
|
|
import ru.gravit.utils.command.StdCommandHandler;
|
|
|
|
|
import ru.gravit.utils.config.JsonConfigurable;
|
2019-01-15 06:35:39 +03:00
|
|
|
|
import ru.gravit.utils.helper.*;
|
|
|
|
|
|
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
|
import java.io.BufferedWriter;
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.lang.ProcessBuilder.Redirect;
|
2019-04-07 10:53:39 +03:00
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
2019-01-15 06:35:39 +03:00
|
|
|
|
import java.net.InetSocketAddress;
|
|
|
|
|
import java.net.SocketAddress;
|
|
|
|
|
import java.nio.file.*;
|
|
|
|
|
import java.nio.file.attribute.BasicFileAttributes;
|
|
|
|
|
import java.security.KeyPair;
|
|
|
|
|
import java.security.interfaces.RSAPrivateKey;
|
|
|
|
|
import java.security.interfaces.RSAPublicKey;
|
|
|
|
|
import java.security.spec.InvalidKeySpecException;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import java.util.Map.Entry;
|
|
|
|
|
import java.util.concurrent.atomic.AtomicBoolean;
|
|
|
|
|
import java.util.zip.CRC32;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
2019-03-10 15:28:22 +03:00
|
|
|
|
public final class LaunchServer implements Runnable, AutoCloseable, Reloadable {
|
|
|
|
|
@Override
|
|
|
|
|
public void reload() throws Exception {
|
|
|
|
|
config.close();
|
|
|
|
|
LogHelper.info("Reading LaunchServer config file");
|
|
|
|
|
try (BufferedReader reader = IOHelper.newReader(configFile)) {
|
|
|
|
|
config = Launcher.gson.fromJson(reader, Config.class);
|
|
|
|
|
}
|
|
|
|
|
config.verify();
|
|
|
|
|
Launcher.applyLauncherEnv(config.env);
|
2019-03-22 09:14:29 +03:00
|
|
|
|
for (AuthProviderPair auth : config.auth) {
|
|
|
|
|
auth.init();
|
2019-03-10 15:28:22 +03:00
|
|
|
|
}
|
2019-03-28 13:13:27 +03:00
|
|
|
|
config.permissionsHandler.init();
|
|
|
|
|
config.hwidHandler.init();
|
2019-03-10 15:28:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-23 18:50:31 +03:00
|
|
|
|
public static final class Config {
|
2019-04-06 14:41:38 +03:00
|
|
|
|
public int legacyPort;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
2019-04-06 14:41:38 +03:00
|
|
|
|
private String legacyAddress;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-04-06 14:41:38 +03:00
|
|
|
|
private String legacyBindAddress;
|
2018-12-26 14:21:08 +03:00
|
|
|
|
|
|
|
|
|
public String projectName;
|
|
|
|
|
|
|
|
|
|
public String[] mirrors;
|
2019-01-15 06:35:39 +03:00
|
|
|
|
|
2018-12-26 14:21:08 +03:00
|
|
|
|
public String binaryName;
|
|
|
|
|
|
|
|
|
|
public LauncherConfig.LauncherEnvironment env;
|
|
|
|
|
|
|
|
|
|
// Handlers & Providers
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-03-22 09:14:29 +03:00
|
|
|
|
public AuthProviderPair[] auth;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-03-22 09:14:29 +03:00
|
|
|
|
private transient AuthProviderPair authDefault;
|
2018-12-26 14:21:08 +03:00
|
|
|
|
|
2019-04-03 16:27:40 +03:00
|
|
|
|
public AuthProviderPair getAuthProviderPair(String name) {
|
|
|
|
|
for (AuthProviderPair pair : auth) {
|
|
|
|
|
if (pair.name.equals(name)) return pair;
|
2019-03-22 09:14:29 +03:00
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
|
2019-03-14 19:54:08 +03:00
|
|
|
|
public ProtectHandler protectHandler;
|
|
|
|
|
|
2018-12-26 14:04:45 +03:00
|
|
|
|
public PermissionsHandler permissionsHandler;
|
|
|
|
|
|
2019-04-03 16:27:40 +03:00
|
|
|
|
public AuthProviderPair getAuthProviderPair() {
|
|
|
|
|
if (authDefault != null) return authDefault;
|
|
|
|
|
for (AuthProviderPair pair : auth) {
|
|
|
|
|
if (pair.isDefault) {
|
2019-03-22 09:14:29 +03:00
|
|
|
|
authDefault = pair;
|
|
|
|
|
return pair;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-23 18:50:31 +03:00
|
|
|
|
public HWIDHandler hwidHandler;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
2019-03-23 06:30:05 +03:00
|
|
|
|
public Map<String, Component> components;
|
2019-03-13 12:24:28 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// Misc options
|
2018-12-23 18:50:31 +03:00
|
|
|
|
public int threadCount;
|
|
|
|
|
|
|
|
|
|
public int threadCoreCount;
|
|
|
|
|
|
|
|
|
|
public ExeConf launch4j;
|
2019-01-29 18:38:23 +03:00
|
|
|
|
public NettyConfig netty;
|
2019-02-06 11:46:58 +03:00
|
|
|
|
public GuardLicenseConf guardLicense;
|
2018-12-23 18:50:31 +03:00
|
|
|
|
|
|
|
|
|
public boolean compress;
|
|
|
|
|
|
|
|
|
|
public String whitelistRejectString;
|
|
|
|
|
|
|
|
|
|
public boolean genMappings;
|
|
|
|
|
public boolean isUsingWrapper;
|
|
|
|
|
public boolean isDownloadJava;
|
|
|
|
|
|
|
|
|
|
public boolean isWarningMissArchJava;
|
2019-01-05 18:43:05 +03:00
|
|
|
|
public boolean enabledProGuard;
|
2019-03-15 20:55:34 +03:00
|
|
|
|
public boolean enabledRadon;
|
2019-01-07 08:01:15 +03:00
|
|
|
|
public boolean stripLineNumbers;
|
2019-01-15 06:35:39 +03:00
|
|
|
|
public boolean deleteTempFiles;
|
|
|
|
|
public boolean enableRcon;
|
|
|
|
|
|
|
|
|
|
public String startScript;
|
2019-01-04 14:32:16 +03:00
|
|
|
|
|
2019-04-06 14:41:38 +03:00
|
|
|
|
public String getLegacyAddress() {
|
|
|
|
|
return legacyAddress;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-04-06 14:41:38 +03:00
|
|
|
|
public String getLegacyBindAddress() {
|
|
|
|
|
return legacyBindAddress;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-26 14:35:28 +03:00
|
|
|
|
public void setProjectName(String projectName) {
|
|
|
|
|
this.projectName = projectName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setBinaryName(String binaryName) {
|
|
|
|
|
this.binaryName = binaryName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setEnv(LauncherConfig.LauncherEnvironment env) {
|
|
|
|
|
this.env = env;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public SocketAddress getSocketAddress() {
|
2019-04-06 14:41:38 +03:00
|
|
|
|
return new InetSocketAddress(legacyBindAddress, legacyPort);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-04-06 14:41:38 +03:00
|
|
|
|
public void setLegacyAddress(String legacyAddress) {
|
|
|
|
|
this.legacyAddress = legacyAddress;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public void verify() {
|
2019-04-06 14:41:38 +03:00
|
|
|
|
VerifyHelper.verify(getLegacyAddress(), VerifyHelper.NOT_EMPTY, "LaunchServer address can't be empty");
|
2019-03-22 09:14:29 +03:00
|
|
|
|
if (auth == null || auth[0] == null) {
|
2018-12-24 08:51:47 +03:00
|
|
|
|
throw new NullPointerException("AuthHandler must not be null");
|
|
|
|
|
}
|
2019-03-22 09:14:29 +03:00
|
|
|
|
boolean isOneDefault = false;
|
2019-04-03 16:27:40 +03:00
|
|
|
|
for (AuthProviderPair pair : auth) {
|
2019-03-22 09:19:58 +03:00
|
|
|
|
if (pair.isDefault) {
|
2019-03-22 09:14:29 +03:00
|
|
|
|
isOneDefault = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-03-22 09:19:58 +03:00
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (protectHandler == null) {
|
2019-03-14 19:54:08 +03:00
|
|
|
|
throw new NullPointerException("ProtectHandler must not be null");
|
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (!isOneDefault) {
|
2019-03-22 09:14:29 +03:00
|
|
|
|
throw new IllegalStateException("No auth pairs declared by default.");
|
2018-12-24 08:51:47 +03:00
|
|
|
|
}
|
2019-01-15 06:35:39 +03:00
|
|
|
|
if (permissionsHandler == null) {
|
2019-01-12 03:13:24 +03:00
|
|
|
|
throw new NullPointerException("PermissionsHandler must not be null");
|
|
|
|
|
}
|
2019-01-15 06:35:39 +03:00
|
|
|
|
if (env == null) {
|
2019-01-12 03:13:24 +03:00
|
|
|
|
throw new NullPointerException("Env must not be null");
|
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (netty == null) {
|
2019-03-10 15:01:14 +03:00
|
|
|
|
throw new NullPointerException("Netty must not be null");
|
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
|
|
|
|
|
public void close() {
|
2019-03-10 15:28:22 +03:00
|
|
|
|
try {
|
2019-03-22 09:14:29 +03:00
|
|
|
|
for (AuthProviderPair p : auth) p.close();
|
2019-03-10 15:28:22 +03:00
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
LogHelper.error(e);
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
hwidHandler.close();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
LogHelper.error(e);
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
permissionsHandler.close();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
LogHelper.error(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-12-23 18:50:31 +03:00
|
|
|
|
public static class ExeConf {
|
|
|
|
|
public boolean enabled;
|
|
|
|
|
public String productName;
|
|
|
|
|
public String productVer;
|
|
|
|
|
public String fileDesc;
|
|
|
|
|
public String fileVer;
|
|
|
|
|
public String internalName;
|
|
|
|
|
public String copyright;
|
|
|
|
|
public String trademarks;
|
|
|
|
|
|
|
|
|
|
public String txtFileVersion;
|
|
|
|
|
public String txtProductVersion;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
|
|
|
|
|
public class NettyConfig {
|
2019-02-17 15:13:36 +03:00
|
|
|
|
public boolean clientEnabled;
|
2019-02-10 13:18:37 +03:00
|
|
|
|
public String launcherURL;
|
2019-04-03 16:40:19 +03:00
|
|
|
|
public String downloadURL;
|
2019-02-10 13:18:37 +03:00
|
|
|
|
public String launcherEXEURL;
|
2019-02-20 13:20:00 +03:00
|
|
|
|
public String address;
|
2019-04-06 14:41:38 +03:00
|
|
|
|
public NettyPerformanceConfig performance;
|
|
|
|
|
public NettyBindAddress[] binds;
|
|
|
|
|
}
|
|
|
|
|
public class NettyPerformanceConfig
|
|
|
|
|
{
|
|
|
|
|
public int bossThread;
|
|
|
|
|
public int workerThread;
|
|
|
|
|
}
|
|
|
|
|
public class NettyBindAddress
|
|
|
|
|
{
|
|
|
|
|
public String address;
|
|
|
|
|
public int port;
|
|
|
|
|
|
|
|
|
|
public NettyBindAddress(String address, int port) {
|
|
|
|
|
this.address = address;
|
|
|
|
|
this.port = port;
|
|
|
|
|
}
|
2019-01-29 18:38:23 +03:00
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
|
|
|
|
|
public class GuardLicenseConf {
|
2019-02-06 11:46:58 +03:00
|
|
|
|
public String name;
|
|
|
|
|
public String key;
|
|
|
|
|
public String encryptKey;
|
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
private final class ProfilesFileVisitor extends SimpleFileVisitor<Path> {
|
2018-12-23 18:57:40 +03:00
|
|
|
|
private final Collection<ClientProfile> result;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
2018-12-23 18:57:40 +03:00
|
|
|
|
private ProfilesFileVisitor(Collection<ClientProfile> result) {
|
2018-09-17 10:07:32 +03:00
|
|
|
|
this.result = result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
|
|
|
|
LogHelper.info("Syncing '%s' profile", IOHelper.getFileName(file));
|
|
|
|
|
|
|
|
|
|
// Read profile
|
|
|
|
|
ClientProfile profile;
|
|
|
|
|
try (BufferedReader reader = IOHelper.newReader(file)) {
|
2019-01-15 06:35:39 +03:00
|
|
|
|
profile = Launcher.gson.fromJson(reader, ClientProfile.class);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
profile.verify();
|
|
|
|
|
|
|
|
|
|
// Add SIGNED profile to result list
|
2018-12-23 18:57:40 +03:00
|
|
|
|
result.add(profile);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
return super.visitFile(file, attrs);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public static void main(String... args) throws Throwable {
|
2018-10-22 14:05:10 +03:00
|
|
|
|
JVMHelper.checkStackTrace(LaunchServer.class);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
JVMHelper.verifySystemProperties(LaunchServer.class, true);
|
|
|
|
|
LogHelper.addOutput(IOHelper.WORKING_DIR.resolve("LaunchServer.log"));
|
|
|
|
|
LogHelper.printVersion("LaunchServer");
|
2018-12-24 13:16:57 +03:00
|
|
|
|
LogHelper.printLicense("LaunchServer");
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Start LaunchServer
|
2019-03-13 11:52:50 +03:00
|
|
|
|
long startTime = System.currentTimeMillis();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
try {
|
2019-03-15 17:32:01 +03:00
|
|
|
|
@SuppressWarnings("resource")
|
2019-04-07 10:53:39 +03:00
|
|
|
|
LaunchServer launchserver = new LaunchServer(IOHelper.WORKING_DIR, false, args);
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (args.length == 0) launchserver.run();
|
2019-02-04 10:20:28 +03:00
|
|
|
|
else { //Обработка команды
|
2019-04-03 16:27:40 +03:00
|
|
|
|
launchserver.commandHandler.eval(args, false);
|
2019-02-04 10:20:28 +03:00
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
} catch (Throwable exc) {
|
|
|
|
|
LogHelper.error(exc);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-03-13 11:52:50 +03:00
|
|
|
|
long endTime = System.currentTimeMillis();
|
|
|
|
|
LogHelper.debug("LaunchServer started in %dms", endTime - startTime);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// Constant paths
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final Path dir;
|
|
|
|
|
|
2019-04-07 10:53:39 +03:00
|
|
|
|
public final boolean testEnv;
|
|
|
|
|
|
2019-01-15 06:35:39 +03:00
|
|
|
|
public final Path launcherLibraries;
|
|
|
|
|
|
2019-04-03 16:27:40 +03:00
|
|
|
|
public final Path launcherLibrariesCompile;
|
2019-03-15 17:32:01 +03:00
|
|
|
|
|
2019-01-15 06:35:39 +03:00
|
|
|
|
public final List<String> args;
|
2019-01-08 17:18:35 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final Path configFile;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final Path publicKeyFile;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final Path privateKeyFile;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final Path updatesDir;
|
2019-01-15 06:35:39 +03:00
|
|
|
|
|
2019-01-07 08:01:15 +03:00
|
|
|
|
public static LaunchServer server = null;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final Path profilesDir;
|
|
|
|
|
// Server config
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-03-10 15:28:22 +03:00
|
|
|
|
public Config config;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final RSAPublicKey publicKey;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final RSAPrivateKey privateKey;
|
|
|
|
|
// Launcher binary
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-01-07 08:01:15 +03:00
|
|
|
|
public final JARLauncherBinary launcherBinary;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2019-04-07 10:53:39 +03:00
|
|
|
|
public Class<? extends LauncherBinary> launcherEXEBinaryClass;
|
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final LauncherBinary launcherEXEBinary;
|
|
|
|
|
// HWID ban + anti-brutforce
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final SessionManager sessionManager;
|
2018-12-29 13:00:50 +03:00
|
|
|
|
|
|
|
|
|
public final SocketHookManager socketHookManager;
|
2018-12-31 10:51:49 +03:00
|
|
|
|
|
|
|
|
|
public final AuthHookManager authHookManager;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// Server
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final ModulesManager modulesManager;
|
|
|
|
|
|
2018-10-18 12:39:36 +03:00
|
|
|
|
public final MirrorManager mirrorManager;
|
|
|
|
|
|
2018-12-26 14:54:24 +03:00
|
|
|
|
public final ReloadManager reloadManager;
|
|
|
|
|
|
2018-12-26 15:40:53 +03:00
|
|
|
|
public final ReconfigurableManager reconfigurableManager;
|
|
|
|
|
|
2019-04-03 13:09:53 +03:00
|
|
|
|
public final ConfigManager configManager;
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final BuildHookManager buildHookManager;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final ProguardConf proguardConf;
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public final CommandHandler commandHandler;
|
|
|
|
|
|
|
|
|
|
public final ServerSocketHandler serverSocketHandler;
|
|
|
|
|
|
2019-01-29 18:42:31 +03:00
|
|
|
|
public final NettyServerSocketHandler nettyServerSocketHandler;
|
|
|
|
|
|
2018-09-22 17:33:00 +03:00
|
|
|
|
private final AtomicBoolean started = new AtomicBoolean(false);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Updates and profiles
|
2018-12-23 18:57:40 +03:00
|
|
|
|
private volatile List<ClientProfile> profilesList;
|
2018-10-02 16:25:07 +03:00
|
|
|
|
public volatile Map<String, SignedObjectHolder<HashedDir>> updatesDirMap;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
2019-04-03 16:27:40 +03:00
|
|
|
|
public final Timer taskPool;
|
2019-01-21 16:06:13 +03:00
|
|
|
|
|
2018-12-24 13:10:53 +03:00
|
|
|
|
public static Gson gson;
|
|
|
|
|
public static GsonBuilder gsonBuilder;
|
|
|
|
|
|
2019-04-07 10:53:39 +03:00
|
|
|
|
public static Class<? extends LauncherBinary> defaultLauncherEXEBinaryClass = null;
|
|
|
|
|
|
|
|
|
|
public LaunchServer(Path dir, boolean testEnv, String[] args) throws IOException, InvalidKeySpecException {
|
2018-09-17 10:07:32 +03:00
|
|
|
|
this.dir = dir;
|
2019-04-07 10:53:39 +03:00
|
|
|
|
this.testEnv = testEnv;
|
2019-02-03 14:15:30 +03:00
|
|
|
|
taskPool = new Timer("Timered task worker thread", true);
|
2019-01-08 17:18:35 +03:00
|
|
|
|
launcherLibraries = dir.resolve("launcher-libraries");
|
2019-03-15 17:32:01 +03:00
|
|
|
|
launcherLibrariesCompile = dir.resolve("launcher-libraries-compile");
|
2019-01-04 14:32:16 +03:00
|
|
|
|
this.args = Arrays.asList(args);
|
2018-12-24 13:16:57 +03:00
|
|
|
|
configFile = dir.resolve("LaunchServer.conf");
|
2018-09-17 10:07:32 +03:00
|
|
|
|
publicKeyFile = dir.resolve("public.key");
|
|
|
|
|
privateKeyFile = dir.resolve("private.key");
|
|
|
|
|
updatesDir = dir.resolve("updates");
|
|
|
|
|
profilesDir = dir.resolve("profiles");
|
|
|
|
|
|
|
|
|
|
//Registration handlers and providers
|
|
|
|
|
AuthHandler.registerHandlers();
|
|
|
|
|
AuthProvider.registerProviders();
|
|
|
|
|
TextureProvider.registerProviders();
|
|
|
|
|
HWIDHandler.registerHandlers();
|
2018-12-26 14:04:45 +03:00
|
|
|
|
PermissionsHandler.registerHandlers();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
Response.registerResponses();
|
2019-03-13 13:09:27 +03:00
|
|
|
|
Component.registerComponents();
|
2019-03-14 19:54:08 +03:00
|
|
|
|
ProtectHandler.registerHandlers();
|
2018-10-01 10:48:24 +03:00
|
|
|
|
LaunchServer.server = this;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Set command handler
|
|
|
|
|
CommandHandler localCommandHandler;
|
2019-04-07 10:53:39 +03:00
|
|
|
|
if (testEnv)
|
|
|
|
|
localCommandHandler = new StdCommandHandler(false);
|
|
|
|
|
else
|
|
|
|
|
try {
|
|
|
|
|
Class.forName("jline.Terminal");
|
|
|
|
|
|
|
|
|
|
// JLine2 available
|
|
|
|
|
localCommandHandler = new JLineCommandHandler();
|
|
|
|
|
LogHelper.info("JLine2 terminal enabled");
|
|
|
|
|
} catch (ClassNotFoundException ignored) {
|
|
|
|
|
localCommandHandler = new StdCommandHandler(true);
|
|
|
|
|
LogHelper.warning("JLine2 isn't in classpath, using std");
|
|
|
|
|
}
|
2019-03-08 14:58:18 +03:00
|
|
|
|
ru.gravit.launchserver.command.handler.CommandHandler.registerCommands(localCommandHandler);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
commandHandler = localCommandHandler;
|
|
|
|
|
|
|
|
|
|
// Set key pair
|
|
|
|
|
if (IOHelper.isFile(publicKeyFile) && IOHelper.isFile(privateKeyFile)) {
|
|
|
|
|
LogHelper.info("Reading RSA keypair");
|
|
|
|
|
publicKey = SecurityHelper.toPublicRSAKey(IOHelper.read(publicKeyFile));
|
|
|
|
|
privateKey = SecurityHelper.toPrivateRSAKey(IOHelper.read(privateKeyFile));
|
|
|
|
|
if (!publicKey.getModulus().equals(privateKey.getModulus()))
|
2018-09-22 17:33:00 +03:00
|
|
|
|
throw new IOException("Private and public key modulus mismatch");
|
2018-09-17 10:07:32 +03:00
|
|
|
|
} else {
|
|
|
|
|
LogHelper.info("Generating RSA keypair");
|
|
|
|
|
KeyPair pair = SecurityHelper.genRSAKeyPair();
|
|
|
|
|
publicKey = (RSAPublicKey) pair.getPublic();
|
|
|
|
|
privateKey = (RSAPrivateKey) pair.getPrivate();
|
|
|
|
|
|
2019-01-22 07:38:41 +03:00
|
|
|
|
// Write key pair list
|
|
|
|
|
LogHelper.info("Writing RSA keypair list");
|
2018-09-17 10:07:32 +03:00
|
|
|
|
IOHelper.write(publicKeyFile, publicKey.getEncoded());
|
|
|
|
|
IOHelper.write(privateKeyFile, privateKey.getEncoded());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Print keypair fingerprints
|
|
|
|
|
CRC32 crc = new CRC32();
|
2018-10-18 12:39:36 +03:00
|
|
|
|
crc.update(publicKey.getModulus().toByteArray()); // IDEA говорит, что это Java 9 API. WTF?
|
2018-09-17 10:07:32 +03:00
|
|
|
|
LogHelper.subInfo("Modulus CRC32: 0x%08x", crc.getValue());
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2019-04-07 10:53:39 +03:00
|
|
|
|
// Load class bindings.
|
|
|
|
|
launcherEXEBinaryClass = defaultLauncherEXEBinaryClass;
|
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// pre init modules
|
|
|
|
|
modulesManager = new ModulesManager(this);
|
2018-09-19 15:03:52 +03:00
|
|
|
|
modulesManager.autoload(dir.resolve("modules"));
|
2018-09-17 10:07:32 +03:00
|
|
|
|
modulesManager.preInitModules();
|
2018-12-23 19:26:57 +03:00
|
|
|
|
initGson();
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// Read LaunchServer config
|
2019-04-07 10:53:39 +03:00
|
|
|
|
generateConfigIfNotExists(testEnv);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
LogHelper.info("Reading LaunchServer config file");
|
|
|
|
|
try (BufferedReader reader = IOHelper.newReader(configFile)) {
|
2019-01-15 06:35:39 +03:00
|
|
|
|
config = Launcher.gson.fromJson(reader, Config.class);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
config.verify();
|
2019-01-15 06:48:20 +03:00
|
|
|
|
Launcher.applyLauncherEnv(config.env);
|
2019-03-22 09:14:29 +03:00
|
|
|
|
for (AuthProviderPair provider : config.auth) {
|
2018-12-26 15:24:38 +03:00
|
|
|
|
provider.init();
|
|
|
|
|
}
|
2019-03-28 13:13:27 +03:00
|
|
|
|
config.permissionsHandler.init();
|
|
|
|
|
config.hwidHandler.init();
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (config.protectHandler != null) {
|
2019-03-14 19:54:08 +03:00
|
|
|
|
config.protectHandler.checkLaunchServerLicense();
|
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (config.components != null) {
|
2019-03-13 12:24:28 +03:00
|
|
|
|
LogHelper.debug("PreInit components");
|
2019-04-03 16:27:40 +03:00
|
|
|
|
config.components.forEach((k, v) -> {
|
2019-03-13 12:24:28 +03:00
|
|
|
|
LogHelper.subDebug("PreInit component %s", k);
|
|
|
|
|
v.preInit(this);
|
|
|
|
|
});
|
|
|
|
|
LogHelper.debug("PreInit components successful");
|
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// build hooks, anti-brutforce and other
|
|
|
|
|
buildHookManager = new BuildHookManager();
|
|
|
|
|
proguardConf = new ProguardConf(this);
|
|
|
|
|
sessionManager = new SessionManager();
|
2018-10-18 12:39:36 +03:00
|
|
|
|
mirrorManager = new MirrorManager();
|
2018-12-26 14:54:24 +03:00
|
|
|
|
reloadManager = new ReloadManager();
|
2018-12-26 15:40:53 +03:00
|
|
|
|
reconfigurableManager = new ReconfigurableManager();
|
2018-12-29 13:00:50 +03:00
|
|
|
|
socketHookManager = new SocketHookManager();
|
2018-12-31 10:51:49 +03:00
|
|
|
|
authHookManager = new AuthHookManager();
|
2019-04-03 13:09:53 +03:00
|
|
|
|
configManager = new ConfigManager();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
GarbageManager.registerNeedGC(sessionManager);
|
2019-03-10 15:28:22 +03:00
|
|
|
|
reloadManager.registerReloadable("launchServer", this);
|
2019-04-03 13:09:53 +03:00
|
|
|
|
registerObject("permissionsHandler", config.permissionsHandler);
|
2019-03-22 09:14:29 +03:00
|
|
|
|
for (int i = 0; i < config.auth.length; ++i) {
|
|
|
|
|
AuthProviderPair pair = config.auth[i];
|
2019-04-03 13:09:53 +03:00
|
|
|
|
registerObject("auth.".concat(pair.name).concat(".provider"), pair.provider);
|
|
|
|
|
registerObject("auth.".concat(pair.name).concat(".handler"), pair.handler);
|
|
|
|
|
registerObject("auth.".concat(pair.name).concat(".texture"), pair.textureProvider);
|
2018-12-26 15:54:04 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-15 06:48:20 +03:00
|
|
|
|
Arrays.stream(config.mirrors).forEach(mirrorManager::addMirror);
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// init modules
|
|
|
|
|
modulesManager.initModules();
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (config.components != null) {
|
2019-03-13 12:24:28 +03:00
|
|
|
|
LogHelper.debug("Init components");
|
2019-04-03 16:27:40 +03:00
|
|
|
|
config.components.forEach((k, v) -> {
|
2019-03-13 12:24:28 +03:00
|
|
|
|
LogHelper.subDebug("Init component %s", k);
|
2019-04-03 16:27:40 +03:00
|
|
|
|
registerObject("component.".concat(k), v);
|
2019-03-13 12:24:28 +03:00
|
|
|
|
v.init(this);
|
|
|
|
|
});
|
|
|
|
|
LogHelper.debug("Init components successful");
|
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Set launcher EXE binary
|
|
|
|
|
launcherBinary = new JARLauncherBinary(this);
|
|
|
|
|
launcherEXEBinary = binary();
|
2019-01-15 06:35:39 +03:00
|
|
|
|
|
2019-01-08 16:57:01 +03:00
|
|
|
|
launcherBinary.init();
|
|
|
|
|
launcherEXEBinary.init();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
syncLauncherBinaries();
|
|
|
|
|
|
|
|
|
|
// Sync updates dir
|
|
|
|
|
if (!IOHelper.isDir(updatesDir))
|
2018-09-22 17:33:00 +03:00
|
|
|
|
Files.createDirectory(updatesDir);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
syncUpdatesDir(null);
|
|
|
|
|
|
|
|
|
|
// Sync profiles dir
|
|
|
|
|
if (!IOHelper.isDir(profilesDir))
|
2018-09-22 17:33:00 +03:00
|
|
|
|
Files.createDirectory(profilesDir);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
syncProfilesDir();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set server socket thread
|
|
|
|
|
serverSocketHandler = new ServerSocketHandler(this, sessionManager);
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// post init modules
|
|
|
|
|
modulesManager.postInitModules();
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (config.components != null) {
|
2019-03-13 12:24:28 +03:00
|
|
|
|
LogHelper.debug("PostInit components");
|
2019-04-03 16:27:40 +03:00
|
|
|
|
config.components.forEach((k, v) -> {
|
2019-03-13 12:24:28 +03:00
|
|
|
|
LogHelper.subDebug("PostInit component %s", k);
|
|
|
|
|
v.postInit(this);
|
|
|
|
|
});
|
|
|
|
|
LogHelper.debug("PostInit components successful");
|
|
|
|
|
}
|
2019-01-21 12:11:56 +03:00
|
|
|
|
// start updater
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (config.netty != null)
|
2019-01-29 18:42:31 +03:00
|
|
|
|
nettyServerSocketHandler = new NettyServerSocketHandler(this);
|
|
|
|
|
else
|
|
|
|
|
nettyServerSocketHandler = null;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-15 06:35:39 +03:00
|
|
|
|
public static void initGson() {
|
|
|
|
|
if (Launcher.gson != null) return;
|
2018-12-23 19:26:57 +03:00
|
|
|
|
Launcher.gsonBuilder = new GsonBuilder();
|
2018-12-23 20:19:43 +03:00
|
|
|
|
Launcher.gsonBuilder.registerTypeAdapter(AuthProvider.class, new AuthProviderAdapter());
|
|
|
|
|
Launcher.gsonBuilder.registerTypeAdapter(TextureProvider.class, new TextureProviderAdapter());
|
|
|
|
|
Launcher.gsonBuilder.registerTypeAdapter(AuthHandler.class, new AuthHandlerAdapter());
|
2018-12-26 14:04:45 +03:00
|
|
|
|
Launcher.gsonBuilder.registerTypeAdapter(PermissionsHandler.class, new PermissionsHandlerAdapter());
|
2018-12-23 20:19:43 +03:00
|
|
|
|
Launcher.gsonBuilder.registerTypeAdapter(HWIDHandler.class, new HWIDHandlerAdapter());
|
2019-03-13 12:13:21 +03:00
|
|
|
|
Launcher.gsonBuilder.registerTypeAdapter(Component.class, new ComponentAdapter());
|
2019-03-14 19:54:08 +03:00
|
|
|
|
Launcher.gsonBuilder.registerTypeAdapter(ProtectHandler.class, new ProtectHandlerAdapter());
|
2018-12-23 19:26:57 +03:00
|
|
|
|
Launcher.gson = Launcher.gsonBuilder.create();
|
2018-12-24 13:10:53 +03:00
|
|
|
|
|
|
|
|
|
//Human readable
|
|
|
|
|
LaunchServer.gsonBuilder = new GsonBuilder();
|
|
|
|
|
LaunchServer.gsonBuilder.setPrettyPrinting();
|
|
|
|
|
LaunchServer.gsonBuilder.registerTypeAdapter(AuthProvider.class, new AuthProviderAdapter());
|
|
|
|
|
LaunchServer.gsonBuilder.registerTypeAdapter(TextureProvider.class, new TextureProviderAdapter());
|
|
|
|
|
LaunchServer.gsonBuilder.registerTypeAdapter(AuthHandler.class, new AuthHandlerAdapter());
|
2018-12-26 14:04:45 +03:00
|
|
|
|
LaunchServer.gsonBuilder.registerTypeAdapter(PermissionsHandler.class, new PermissionsHandlerAdapter());
|
2018-12-24 13:10:53 +03:00
|
|
|
|
LaunchServer.gsonBuilder.registerTypeAdapter(HWIDHandler.class, new HWIDHandlerAdapter());
|
2019-03-13 12:13:21 +03:00
|
|
|
|
LaunchServer.gsonBuilder.registerTypeAdapter(Component.class, new ComponentAdapter());
|
2019-03-14 19:54:08 +03:00
|
|
|
|
LaunchServer.gsonBuilder.registerTypeAdapter(ProtectHandler.class, new ProtectHandlerAdapter());
|
2018-12-24 13:10:53 +03:00
|
|
|
|
LaunchServer.gson = LaunchServer.gsonBuilder.create();
|
2018-12-23 19:26:57 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
private LauncherBinary binary() {
|
2019-04-07 10:53:39 +03:00
|
|
|
|
if (launcherEXEBinaryClass != null) {
|
|
|
|
|
try {
|
|
|
|
|
return (LauncherBinary)launcherEXEBinaryClass.getConstructor(LaunchServer.class).newInstance(this);
|
|
|
|
|
} catch (InstantiationException | IllegalAccessException | IllegalArgumentException
|
|
|
|
|
| InvocationTargetException | NoSuchMethodException | SecurityException e) {
|
|
|
|
|
LogHelper.error(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-15 06:35:39 +03:00
|
|
|
|
try {
|
|
|
|
|
Class.forName("net.sf.launch4j.Builder");
|
2018-12-26 16:17:47 +03:00
|
|
|
|
if (config.launch4j.enabled) return new EXEL4JLauncherBinary(this);
|
2019-01-15 06:35:39 +03:00
|
|
|
|
} catch (ClassNotFoundException ignored) {
|
|
|
|
|
LogHelper.warning("Launch4J isn't in classpath.");
|
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
return new EXELauncherBinary(this);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public void buildLauncherBinaries() throws IOException {
|
|
|
|
|
launcherBinary.build();
|
|
|
|
|
launcherEXEBinary.build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void close() {
|
|
|
|
|
serverSocketHandler.close();
|
|
|
|
|
|
|
|
|
|
// Close handlers & providers
|
2019-03-10 15:28:22 +03:00
|
|
|
|
config.close();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
modulesManager.close();
|
|
|
|
|
// Print last message before death :(
|
|
|
|
|
LogHelper.info("LaunchServer stopped");
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 10:53:39 +03:00
|
|
|
|
private void generateConfigIfNotExists(boolean testEnv) throws IOException {
|
2018-09-17 10:07:32 +03:00
|
|
|
|
if (IOHelper.isFile(configFile))
|
2018-09-22 17:33:00 +03:00
|
|
|
|
return;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Create new config
|
|
|
|
|
LogHelper.info("Creating LaunchServer config");
|
2018-12-23 19:47:07 +03:00
|
|
|
|
Config newConfig = new Config();
|
2019-04-03 16:27:40 +03:00
|
|
|
|
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/", "https://mirror.gravit.pro/"};
|
2018-12-23 19:47:07 +03:00
|
|
|
|
newConfig.launch4j = new ExeConf();
|
2018-12-24 15:16:44 +03:00
|
|
|
|
newConfig.launch4j.copyright = "© GravitLauncher Team";
|
|
|
|
|
newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString());
|
2018-12-31 10:51:49 +03:00
|
|
|
|
newConfig.launch4j.fileVer = Launcher.getVersion().getVersionString().concat(".").concat(String.valueOf(Launcher.getVersion().patch));
|
2018-12-24 15:16:44 +03:00
|
|
|
|
newConfig.launch4j.internalName = "Launcher";
|
|
|
|
|
newConfig.launch4j.trademarks = "This product is licensed under GPLv3";
|
|
|
|
|
newConfig.launch4j.txtFileVersion = "%s, build %d";
|
|
|
|
|
newConfig.launch4j.txtProductVersion = "%s, build %d";
|
2018-12-31 10:51:49 +03:00
|
|
|
|
newConfig.launch4j.productName = "GravitLauncher";
|
|
|
|
|
newConfig.launch4j.productVer = newConfig.launch4j.fileVer;
|
2018-12-23 19:47:07 +03:00
|
|
|
|
newConfig.env = LauncherConfig.LauncherEnvironment.STD;
|
2019-01-09 18:03:14 +03:00
|
|
|
|
newConfig.startScript = JVMHelper.OS_TYPE.equals(JVMHelper.OS.MUSTDIE) ? "." + File.separator + "start.bat" : "." + File.separator + "start.sh";
|
2018-12-23 20:19:43 +03:00
|
|
|
|
newConfig.hwidHandler = new AcceptHWIDHandler();
|
2019-04-03 16:27:40 +03:00
|
|
|
|
newConfig.auth = new AuthProviderPair[]{new AuthProviderPair(new RejectAuthProvider("Настройте authProvider"),
|
2019-03-22 09:14:29 +03:00
|
|
|
|
new MemoryAuthHandler(),
|
|
|
|
|
new RequestTextureProvider("http://example.com/skins/%username%.png", "http://example.com/cloaks/%username%.png")
|
2019-04-03 16:27:40 +03:00
|
|
|
|
, "std")};
|
2019-03-14 19:54:08 +03:00
|
|
|
|
newConfig.protectHandler = new NoProtectHandler();
|
2019-04-07 10:53:39 +03:00
|
|
|
|
if (testEnv) newConfig.permissionsHandler = new DefaultPermissionsHandler();
|
|
|
|
|
else newConfig.permissionsHandler = new JsonFilePermissionsHandler();
|
2019-04-06 14:41:38 +03:00
|
|
|
|
newConfig.legacyPort = 7240;
|
|
|
|
|
newConfig.legacyBindAddress = "0.0.0.0";
|
2018-12-24 13:16:57 +03:00
|
|
|
|
newConfig.binaryName = "Launcher";
|
|
|
|
|
newConfig.whitelistRejectString = "Вас нет в белом списке";
|
2019-01-15 06:35:39 +03:00
|
|
|
|
|
2019-02-20 13:35:04 +03:00
|
|
|
|
newConfig.netty = new NettyConfig();
|
2019-02-20 14:55:16 +03:00
|
|
|
|
newConfig.netty.address = "ws://localhost:9274/api";
|
2019-04-06 14:41:38 +03:00
|
|
|
|
newConfig.netty.downloadURL = "http://localhost:9274/%dirname%/";
|
|
|
|
|
newConfig.netty.launcherURL = "http://localhost:9274/Launcher.jar";
|
|
|
|
|
newConfig.netty.launcherEXEURL = "http://localhost:9274/Launcher.exe";
|
2019-02-20 13:35:04 +03:00
|
|
|
|
newConfig.netty.clientEnabled = false;
|
2019-04-06 14:41:38 +03:00
|
|
|
|
newConfig.netty.binds = new NettyBindAddress[]{ new NettyBindAddress("0.0.0.0", 9274) };
|
|
|
|
|
newConfig.netty.performance = new NettyPerformanceConfig();
|
|
|
|
|
newConfig.netty.performance.bossThread = 2;
|
|
|
|
|
newConfig.netty.performance.workerThread = 8;
|
2019-02-20 13:35:04 +03:00
|
|
|
|
|
2019-01-04 16:04:45 +03:00
|
|
|
|
newConfig.threadCoreCount = 0; // on your own
|
2019-01-08 16:50:40 +03:00
|
|
|
|
newConfig.threadCount = JVMHelper.OPERATING_SYSTEM_MXBEAN.getAvailableProcessors() >= 4 ? JVMHelper.OPERATING_SYSTEM_MXBEAN.getAvailableProcessors() / 2 : JVMHelper.OPERATING_SYSTEM_MXBEAN.getAvailableProcessors();
|
2019-01-15 06:35:39 +03:00
|
|
|
|
|
2019-03-15 20:55:34 +03:00
|
|
|
|
newConfig.enabledRadon = true;
|
2019-01-05 18:43:05 +03:00
|
|
|
|
newConfig.enabledProGuard = true;
|
2019-01-09 12:20:31 +03:00
|
|
|
|
newConfig.stripLineNumbers = true;
|
|
|
|
|
newConfig.deleteTempFiles = true;
|
2019-01-13 18:51:39 +03:00
|
|
|
|
newConfig.isWarningMissArchJava = true;
|
|
|
|
|
|
2019-03-13 12:49:28 +03:00
|
|
|
|
newConfig.components = new HashMap<>();
|
|
|
|
|
AuthLimiterComponent authLimiterComponent = new AuthLimiterComponent();
|
|
|
|
|
authLimiterComponent.rateLimit = 3;
|
|
|
|
|
authLimiterComponent.rateLimitMilis = 8000;
|
|
|
|
|
authLimiterComponent.message = "Превышен лимит авторизаций";
|
|
|
|
|
newConfig.components.put("authLimiter", authLimiterComponent);
|
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
// Set server address
|
2019-04-07 10:53:39 +03:00
|
|
|
|
if (testEnv) {
|
|
|
|
|
newConfig.setLegacyAddress("localhost");
|
|
|
|
|
newConfig.setProjectName("test");
|
|
|
|
|
} else {
|
|
|
|
|
System.out.println("LaunchServer address: ");
|
|
|
|
|
newConfig.setLegacyAddress(commandHandler.readLine());
|
|
|
|
|
System.out.println("LaunchServer projectName: ");
|
|
|
|
|
newConfig.setProjectName(commandHandler.readLine());
|
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Write LaunchServer config
|
|
|
|
|
LogHelper.info("Writing LaunchServer config file");
|
|
|
|
|
try (BufferedWriter writer = IOHelper.newWriter(configFile)) {
|
2019-01-15 06:35:39 +03:00
|
|
|
|
LaunchServer.gson.toJson(newConfig, writer);
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 10:53:39 +03:00
|
|
|
|
public List<ClientProfile> getProfiles() {
|
2018-09-17 10:07:32 +03:00
|
|
|
|
return profilesList;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 10:53:39 +03:00
|
|
|
|
public void setProfiles(List<ClientProfile> profilesList) {
|
|
|
|
|
this.profilesList = Collections.unmodifiableList(profilesList);
|
|
|
|
|
}
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public SignedObjectHolder<HashedDir> getUpdateDir(String name) {
|
|
|
|
|
return updatesDirMap.get(name);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public Set<Entry<String, SignedObjectHolder<HashedDir>>> getUpdateDirs() {
|
|
|
|
|
return updatesDirMap.entrySet();
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public void rebindServerSocket() {
|
|
|
|
|
serverSocketHandler.close();
|
|
|
|
|
CommonHelper.newThread("Server Socket Thread", false, serverSocketHandler).start();
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-29 18:42:31 +03:00
|
|
|
|
public void rebindNettyServerSocket() {
|
|
|
|
|
nettyServerSocketHandler.close();
|
|
|
|
|
CommonHelper.newThread("Netty Server Socket Thread", false, nettyServerSocketHandler).start();
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
@Override
|
|
|
|
|
public void run() {
|
|
|
|
|
if (started.getAndSet(true))
|
2018-09-22 17:33:00 +03:00
|
|
|
|
throw new IllegalStateException("LaunchServer has been already started");
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Add shutdown hook, then start LaunchServer
|
2019-04-07 10:53:39 +03:00
|
|
|
|
if (!this.testEnv) {
|
|
|
|
|
JVMHelper.RUNTIME.addShutdownHook(CommonHelper.newThread(null, false, this::close));
|
|
|
|
|
CommonHelper.newThread("Command Thread", true, commandHandler).start();
|
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
rebindServerSocket();
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (config.netty != null)
|
2019-01-29 18:42:31 +03:00
|
|
|
|
rebindNettyServerSocket();
|
2019-01-18 01:30:55 +03:00
|
|
|
|
modulesManager.finishModules();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public void syncLauncherBinaries() throws IOException {
|
|
|
|
|
LogHelper.info("Syncing launcher binaries");
|
|
|
|
|
|
|
|
|
|
// Syncing launcher binary
|
|
|
|
|
LogHelper.info("Syncing launcher binary file");
|
|
|
|
|
if (!launcherBinary.sync()) LogHelper.warning("Missing launcher binary file");
|
|
|
|
|
|
|
|
|
|
// Syncing launcher EXE binary
|
|
|
|
|
LogHelper.info("Syncing launcher EXE binary file");
|
|
|
|
|
if (!launcherEXEBinary.sync() && config.launch4j.enabled)
|
|
|
|
|
LogHelper.warning("Missing launcher EXE binary file");
|
|
|
|
|
|
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public void syncProfilesDir() throws IOException {
|
|
|
|
|
LogHelper.info("Syncing profiles dir");
|
2018-12-23 18:57:40 +03:00
|
|
|
|
List<ClientProfile> newProfies = new LinkedList<>();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
IOHelper.walk(profilesDir, new ProfilesFileVisitor(newProfies), false);
|
|
|
|
|
|
|
|
|
|
// Sort and set new profiles
|
2018-12-23 18:57:40 +03:00
|
|
|
|
newProfies.sort(Comparator.comparing(a -> a));
|
2018-09-17 10:07:32 +03:00
|
|
|
|
profilesList = Collections.unmodifiableList(newProfies);
|
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
|
public void syncUpdatesDir(Collection<String> dirs) throws IOException {
|
|
|
|
|
LogHelper.info("Syncing updates dir");
|
|
|
|
|
Map<String, SignedObjectHolder<HashedDir>> newUpdatesDirMap = new HashMap<>(16);
|
|
|
|
|
try (DirectoryStream<Path> dirStream = Files.newDirectoryStream(updatesDir)) {
|
|
|
|
|
for (Path updateDir : dirStream) {
|
|
|
|
|
if (Files.isHidden(updateDir))
|
2018-09-22 17:33:00 +03:00
|
|
|
|
continue; // Skip hidden
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
// Resolve name and verify is dir
|
|
|
|
|
String name = IOHelper.getFileName(updateDir);
|
|
|
|
|
if (!IOHelper.isDir(updateDir)) {
|
|
|
|
|
LogHelper.warning("Not update dir: '%s'", name);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add from previous map (it's guaranteed to be non-null)
|
|
|
|
|
if (dirs != null && !dirs.contains(name)) {
|
|
|
|
|
SignedObjectHolder<HashedDir> hdir = updatesDirMap.get(name);
|
|
|
|
|
if (hdir != null) {
|
|
|
|
|
newUpdatesDirMap.put(name, hdir);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Sync and sign update dir
|
|
|
|
|
LogHelper.info("Syncing '%s' update dir", name);
|
|
|
|
|
HashedDir updateHDir = new HashedDir(updateDir, null, true, true);
|
|
|
|
|
newUpdatesDirMap.put(name, new SignedObjectHolder<>(updateHDir, privateKey));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
updatesDirMap = Collections.unmodifiableMap(newUpdatesDirMap);
|
|
|
|
|
}
|
2019-01-15 06:35:39 +03:00
|
|
|
|
|
2019-01-04 14:32:16 +03:00
|
|
|
|
public void restart() {
|
2019-01-15 06:35:39 +03:00
|
|
|
|
ProcessBuilder builder = new ProcessBuilder();
|
2019-01-16 11:52:47 +03:00
|
|
|
|
if (config.startScript != null) builder.command(Collections.singletonList(config.startScript));
|
2019-01-15 06:35:39 +03:00
|
|
|
|
else throw new IllegalArgumentException("Please create start script and link it as startScript in config.");
|
2019-01-04 14:32:16 +03:00
|
|
|
|
builder.directory(this.dir.toFile());
|
|
|
|
|
builder.inheritIO();
|
|
|
|
|
builder.redirectErrorStream(true);
|
|
|
|
|
builder.redirectOutput(Redirect.PIPE);
|
|
|
|
|
try {
|
2019-01-15 06:35:39 +03:00
|
|
|
|
builder.start();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
LogHelper.error(e);
|
|
|
|
|
}
|
2019-01-04 14:32:16 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-03 16:27:40 +03:00
|
|
|
|
public void registerObject(String name, Object object) {
|
|
|
|
|
if (object instanceof Reloadable) {
|
2019-04-03 13:09:53 +03:00
|
|
|
|
reloadManager.registerReloadable(name, (Reloadable) object);
|
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (object instanceof Reconfigurable) {
|
2019-04-03 13:09:53 +03:00
|
|
|
|
reconfigurableManager.registerReconfigurable(name, (Reconfigurable) object);
|
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (object instanceof NeedGarbageCollection) {
|
2019-04-03 13:09:53 +03:00
|
|
|
|
GarbageManager.registerNeedGC((NeedGarbageCollection) object);
|
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
if (object instanceof JsonConfigurable) {
|
2019-04-03 13:09:53 +03:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-15 06:35:39 +03:00
|
|
|
|
public void fullyRestart() {
|
|
|
|
|
restart();
|
2019-01-04 14:32:16 +03:00
|
|
|
|
JVMHelper.RUNTIME.exit(0);
|
2019-01-15 06:35:39 +03:00
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
}
|