mirror of
https://github.com/ViaVersion/ViaForge.git
synced 2025-01-04 18:59:01 +01:00
Restructure connecting code and mixins
This commit is contained in:
parent
d325b0691d
commit
9f1a2e2baf
@ -29,7 +29,6 @@ import de.florianmichael.viaforge.common.protocoltranslator.ViaForgeVLLoader;
|
|||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.ViaForgeVLLegacyPipeline;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.ViaForgeVLLegacyPipeline;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.socket.SocketChannel;
|
|
||||||
import io.netty.util.AttributeKey;
|
import io.netty.util.AttributeKey;
|
||||||
import net.raphimc.vialoader.ViaLoader;
|
import net.raphimc.vialoader.ViaLoader;
|
||||||
import net.raphimc.vialoader.impl.platform.*;
|
import net.raphimc.vialoader.impl.platform.*;
|
||||||
@ -50,6 +49,7 @@ public class ViaForgeCommon {
|
|||||||
|
|
||||||
private final VFPlatform platform;
|
private final VFPlatform platform;
|
||||||
private ProtocolVersion targetVersion;
|
private ProtocolVersion targetVersion;
|
||||||
|
private ProtocolVersion previousVersion;
|
||||||
|
|
||||||
private ViaForgeConfig config;
|
private ViaForgeConfig config;
|
||||||
|
|
||||||
@ -89,8 +89,7 @@ public class ViaForgeCommon {
|
|||||||
* @param channel the channel to inject the pipeline into
|
* @param channel the channel to inject the pipeline into
|
||||||
*/
|
*/
|
||||||
public void inject(final Channel channel, final VFNetworkManager networkManager) {
|
public void inject(final Channel channel, final VFNetworkManager networkManager) {
|
||||||
if (channel instanceof SocketChannel) {
|
if (networkManager.viaForge$getTrackedVersion().equals(getNativeVersion())) {
|
||||||
if (targetVersion.equals(getNativeVersion())) {
|
|
||||||
return; // Don't inject ViaVersion into pipeline if there is nothing to translate anyway
|
return; // Don't inject ViaVersion into pipeline if there is nothing to translate anyway
|
||||||
}
|
}
|
||||||
channel.attr(VF_NETWORK_MANAGER).set(networkManager);
|
channel.attr(VF_NETWORK_MANAGER).set(networkManager);
|
||||||
@ -101,7 +100,11 @@ public class ViaForgeCommon {
|
|||||||
channel.attr(LOCAL_VIA_USER).set(user);
|
channel.attr(LOCAL_VIA_USER).set(user);
|
||||||
|
|
||||||
channel.pipeline().addLast(new ViaForgeVLLegacyPipeline(user, targetVersion));
|
channel.pipeline().addLast(new ViaForgeVLLegacyPipeline(user, targetVersion));
|
||||||
|
channel.closeFuture().addListener(future -> {
|
||||||
|
if (previousVersion != null) {
|
||||||
|
restoreVersion();
|
||||||
}
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -128,7 +131,11 @@ public class ViaForgeCommon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void setTargetVersionSilent(final ProtocolVersion targetVersion) {
|
public void setTargetVersionSilent(final ProtocolVersion targetVersion) {
|
||||||
|
final ProtocolVersion oldVersion = this.targetVersion;
|
||||||
this.targetVersion = targetVersion;
|
this.targetVersion = targetVersion;
|
||||||
|
if (oldVersion != targetVersion) {
|
||||||
|
previousVersion = oldVersion;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTargetVersion(final ProtocolVersion targetVersion) {
|
public void setTargetVersion(final ProtocolVersion targetVersion) {
|
||||||
|
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2024 FlorianMichael/EnZaXD <florian.michael07@gmail.com> and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package de.florianmichael.viaforge.common.platform;
|
||||||
|
|
||||||
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
|
||||||
|
import java.net.InetAddress;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dirty, but needed to store the server specific version until building the netty pipeline.
|
||||||
|
*/
|
||||||
|
public class VersionTracker {
|
||||||
|
|
||||||
|
public static final Map<InetAddress, ProtocolVersion> SERVER_PROTOCOL_VERSIONS = new HashMap<>();
|
||||||
|
|
||||||
|
public static void storeServerProtocolVersion(InetAddress address, ProtocolVersion version) {
|
||||||
|
SERVER_PROTOCOL_VERSIONS.put(address, version);
|
||||||
|
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ProtocolVersion getServerProtocolVersion(InetAddress address) {
|
||||||
|
return SERVER_PROTOCOL_VERSIONS.remove(address);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -16,39 +16,32 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl.connect;
|
||||||
|
|
||||||
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.network.NetworkManager;
|
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||||
|
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
|
import java.net.UnknownHostException;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.client.multiplayer.GuiConnecting$1")
|
@Mixin(targets = "net.minecraft.client.multiplayer.GuiConnecting$1")
|
||||||
public class MixinGuiConnecting_1 {
|
public class MixinGuiConnecting_1 {
|
||||||
|
|
||||||
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/NetworkManager;createNetworkManagerAndConnect(Ljava/net/InetAddress;IZ)Lnet/minecraft/network/NetworkManager;"))
|
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Ljava/net/InetAddress;getByName(Ljava/lang/String;)Ljava/net/InetAddress;"))
|
||||||
public NetworkManager trackVersion(InetAddress address, int i, boolean b) {
|
public InetAddress trackServerVersion(String s) throws UnknownHostException {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
final InetAddress address = InetAddress.getByName(s);
|
||||||
// use it to determine the protocol version to use.
|
ProtocolVersion version = ((ExtendedServerData) Minecraft.getMinecraft().getCurrentServerData()).viaForge$getVersion();
|
||||||
// We hope that the current server data is not null
|
if (version == null) {
|
||||||
if (Minecraft.getMinecraft().getCurrentServerData() instanceof ExtendedServerData) {
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
final ProtocolVersion version = ((ExtendedServerData) Minecraft.getMinecraft().getCurrentServerData()).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
}
|
VersionTracker.storeServerProtocolVersion(address, version);
|
||||||
|
return address;
|
||||||
return NetworkManager.createNetworkManagerAndConnect(address, i, b);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,18 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl.connect;
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import com.mojang.authlib.exceptions.AuthenticationException;
|
import com.mojang.authlib.exceptions.AuthenticationException;
|
||||||
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
||||||
import com.viaversion.viaversion.api.connection.UserConnection;
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import net.minecraft.client.network.NetHandlerLoginClient;
|
import net.minecraft.client.network.NetHandlerLoginClient;
|
||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|
||||||
import org.spongepowered.asm.mixin.Final;
|
import org.spongepowered.asm.mixin.Final;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.Shadow;
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
@ -42,7 +42,8 @@ public class MixinNetHandlerLoginClient {
|
|||||||
|
|
||||||
@Redirect(method = "handleEncryptionRequest", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
@Redirect(method = "handleEncryptionRequest", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
||||||
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
final VFNetworkManager mixinNetworkManager = (VFNetworkManager) networkManager;
|
||||||
|
if (mixinNetworkManager.viaForge$getTrackedVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
final UserConnection user = networkManager.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
final UserConnection user = networkManager.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
||||||
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
||||||
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
@ -16,9 +16,10 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import net.minecraft.network.NettyEncryptingDecoder;
|
import net.minecraft.network.NettyEncryptingDecoder;
|
||||||
@ -26,7 +27,6 @@ import net.minecraft.network.NettyEncryptingEncoder;
|
|||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
import net.minecraft.util.CryptManager;
|
import net.minecraft.util.CryptManager;
|
||||||
import net.minecraft.util.LazyLoadBase;
|
import net.minecraft.util.LazyLoadBase;
|
||||||
import net.minecraft.util.text.ITextComponent;
|
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
@ -48,46 +48,39 @@ public class MixinNetworkManager implements VFNetworkManager {
|
|||||||
|
|
||||||
@Shadow private Channel channel;
|
@Shadow private Channel channel;
|
||||||
|
|
||||||
|
@Shadow private boolean isEncrypted;
|
||||||
@Unique
|
@Unique
|
||||||
private Cipher viaForge$decryptionCipher;
|
private Cipher viaForge$decryptionCipher;
|
||||||
|
|
||||||
@Unique
|
@Unique
|
||||||
private ProtocolVersion viaForge$targetVersion;
|
private ProtocolVersion viaForge$targetVersion;
|
||||||
|
|
||||||
@Inject(method = "createNetworkManagerAndConnect", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
@Inject(method = "setCompressionThreshold", at = @At("RETURN"))
|
||||||
private static void trackSelfTarget(InetAddress address, int serverPort, boolean useNativeTransport, CallbackInfoReturnable<NetworkManager> cir, NetworkManager networkmanager, Class oclass, LazyLoadBase lazyloadbase) {
|
public void reorderPipeline(int p_setCompressionTreshold_1_, CallbackInfo ci) {
|
||||||
// The connecting screen and server pinger are setting the main target version when a specific version for a server is set,
|
ViaForgeCommon.getManager().reorderCompression(channel);
|
||||||
// This works for joining perfect since we can simply restore the version when the server doesn't have a specific one set,
|
|
||||||
// but for the server pinger we need to store the target version and force the pinging to use the target version.
|
|
||||||
// Due to the fact that the server pinger is being called multiple times.
|
|
||||||
((VFNetworkManager) networkmanager).viaForge$setTrackedVersion(ViaForgeCommon.getManager().getTargetVersion());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "enableEncryption", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "enableEncryption", at = @At("HEAD"), cancellable = true)
|
||||||
private void storeEncryptionCiphers(SecretKey key, CallbackInfo ci) {
|
private void storeEncryptionCiphers(SecretKey key, CallbackInfo ci) {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
if (viaForge$targetVersion != null && viaForge$targetVersion.olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
||||||
ci.cancel();
|
ci.cancel();
|
||||||
|
|
||||||
// Minecraft 1.6.4 supports tile encryption which means the server can only disable one side of the encryption
|
// Minecraft 1.6.4 supports tile encryption which means the server can only enable one side of the encryption
|
||||||
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
||||||
// tells us to do, therefore we need to store the cipher instance.
|
// tells us to do, therefore we need to store the cipher instance.
|
||||||
this.viaForge$decryptionCipher = CryptManager.createNetCipherInstance(2, key);
|
this.viaForge$decryptionCipher = CryptManager.createNetCipherInstance(2, key);
|
||||||
|
|
||||||
// Enabling the encryption side
|
// Enabling the encryption side
|
||||||
|
this.isEncrypted = true;
|
||||||
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new NettyEncryptingEncoder(CryptManager.createNetCipherInstance(1, key)));
|
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new NettyEncryptingEncoder(CryptManager.createNetCipherInstance(1, key)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "closeChannel", at = @At("HEAD"))
|
@Inject(method = "createNetworkManagerAndConnect", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
||||||
public void restoreTargetVersion(ITextComponent message, CallbackInfo ci) {
|
private static void setTargetVersion(InetAddress address, int serverPort, boolean useNativeTransport, CallbackInfoReturnable<NetworkManager> cir, NetworkManager networkmanager, Class oclass, LazyLoadBase lazyloadbase) {
|
||||||
// If the previous server forced a version, we need to restore the version to the default one.
|
final VFNetworkManager mixinNetworkManager = (VFNetworkManager) networkmanager;
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
mixinNetworkManager.viaForge$setTrackedVersion(VersionTracker.getServerProtocolVersion(address));
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "setCompressionThreshold", at = @At("RETURN"))
|
|
||||||
public void reorderPipeline(int p_setCompressionTreshold_1_, CallbackInfo ci) {
|
|
||||||
ViaForgeCommon.getManager().reorderCompression(channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
@ -16,7 +16,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
@ -35,7 +35,7 @@ public class MixinNetworkManager_5 {
|
|||||||
NetworkManager val$networkmanager;
|
NetworkManager val$networkmanager;
|
||||||
|
|
||||||
@Inject(method = "initChannel", at = @At(value = "TAIL"), remap = false)
|
@Inject(method = "initChannel", at = @At(value = "TAIL"), remap = false)
|
||||||
private void onInitChannel(Channel channel, CallbackInfo ci) {
|
private void hookViaPipeline(Channel channel, CallbackInfo ci) {
|
||||||
ViaForgeCommon.getManager().inject(channel, (VFNetworkManager) val$networkmanager);
|
ViaForgeCommon.getManager().inject(channel, (VFNetworkManager) val$networkmanager);
|
||||||
}
|
}
|
||||||
|
|
@ -16,11 +16,12 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl.connect;
|
||||||
|
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.multiplayer.ServerData;
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
import net.minecraft.client.network.ServerPinger;
|
import net.minecraft.client.network.ServerPinger;
|
||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
@ -46,22 +47,12 @@ public class MixinServerPinger {
|
|||||||
|
|
||||||
@Redirect(method = "ping", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/NetworkManager;createNetworkManagerAndConnect(Ljava/net/InetAddress;IZ)Lnet/minecraft/network/NetworkManager;"))
|
@Redirect(method = "ping", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/NetworkManager;createNetworkManagerAndConnect(Ljava/net/InetAddress;IZ)Lnet/minecraft/network/NetworkManager;"))
|
||||||
public NetworkManager trackVersion(InetAddress address, int i, boolean b) {
|
public NetworkManager trackVersion(InetAddress address, int i, boolean b) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
||||||
// use it to determine the protocol version to use.
|
if (version == null) {
|
||||||
// We hope that the current server data is not null
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
|
||||||
if (viaForge$serverData instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(address, version);
|
||||||
viaForge$serverData = null;
|
viaForge$serverData = null;
|
||||||
}
|
|
||||||
|
|
||||||
return NetworkManager.createNetworkManagerAndConnect(address, i, b);
|
return NetworkManager.createNetworkManagerAndConnect(address, i, b);
|
||||||
}
|
}
|
@ -40,6 +40,7 @@ public class MixinEntityPlayerSP extends AbstractClientPlayer {
|
|||||||
|
|
||||||
@Redirect(method = "onUpdateWalkingPlayer", at = @At(value = "FIELD", target = "Lnet/minecraft/client/entity/EntityPlayerSP;prevOnGround:Z", ordinal = 0))
|
@Redirect(method = "onUpdateWalkingPlayer", at = @At(value = "FIELD", target = "Lnet/minecraft/client/entity/EntityPlayerSP;prevOnGround:Z", ordinal = 0))
|
||||||
public boolean emulateIdlePacket(EntityPlayerSP instance) {
|
public boolean emulateIdlePacket(EntityPlayerSP instance) {
|
||||||
|
System.out.println(ViaForgeCommon.getManager().getTargetVersion());
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(ProtocolVersion.v1_8)) {
|
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(ProtocolVersion.v1_8)) {
|
||||||
// <= 1.8 spams the idle packet instead of only sending it when the ground state changes
|
// <= 1.8 spams the idle packet instead of only sending it when the ground state changes
|
||||||
// So we invert the original logic:
|
// So we invert the original logic:
|
||||||
|
@ -5,17 +5,17 @@
|
|||||||
"package": "de.florianmichael.viaforge.mixin.impl",
|
"package": "de.florianmichael.viaforge.mixin.impl",
|
||||||
"refmap": "mixins.viaforge-mc1122.refmap.json",
|
"refmap": "mixins.viaforge-mc1122.refmap.json",
|
||||||
"client": [
|
"client": [
|
||||||
"MixinGuiConnecting_1",
|
"connect.MixinGuiConnecting_1",
|
||||||
"MixinGuiMainMenu",
|
"MixinGuiMainMenu",
|
||||||
"MixinGuiMultiplayer",
|
"MixinGuiMultiplayer",
|
||||||
"MixinGuiOverlayDebug",
|
"MixinGuiOverlayDebug",
|
||||||
"MixinGuiScreenAddServer",
|
"MixinGuiScreenAddServer",
|
||||||
"MixinGuiScreenServerList",
|
"MixinGuiScreenServerList",
|
||||||
"MixinNetHandlerLoginClient",
|
"connect.MixinNetHandlerLoginClient",
|
||||||
"MixinNetworkManager",
|
"connect.MixinNetworkManager",
|
||||||
"MixinNetworkManager_5",
|
"connect.MixinNetworkManager_5",
|
||||||
"MixinServerData",
|
"MixinServerData",
|
||||||
"MixinServerPinger",
|
"connect.MixinServerPinger",
|
||||||
"fixes.MixinEntityPlayerSP"
|
"fixes.MixinEntityPlayerSP"
|
||||||
],
|
],
|
||||||
"verbose": true
|
"verbose": true
|
||||||
|
@ -16,18 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import com.mojang.authlib.exceptions.AuthenticationException;
|
import com.mojang.authlib.exceptions.AuthenticationException;
|
||||||
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
||||||
import com.viaversion.viaversion.api.connection.UserConnection;
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import net.minecraft.client.network.login.ClientLoginNetHandler;
|
import net.minecraft.client.network.login.ClientLoginNetHandler;
|
||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|
||||||
import org.spongepowered.asm.mixin.Final;
|
import org.spongepowered.asm.mixin.Final;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.Shadow;
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
@ -42,7 +42,8 @@ public class MixinClientLoginNetHandler {
|
|||||||
|
|
||||||
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
||||||
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
|
if (mixinConnection.viaForge$getTrackedVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
||||||
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
||||||
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
@ -16,10 +16,11 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
@ -28,27 +29,20 @@ import org.spongepowered.asm.mixin.injection.At;
|
|||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||||
|
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
|
import java.net.UnknownHostException;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.client.gui.screen.ConnectingScreen$1")
|
@Mixin(targets = "net.minecraft.client.gui.screen.ConnectingScreen$1")
|
||||||
public class MixinConnectingScreen_1 {
|
public class MixinConnectingScreen_1 {
|
||||||
|
|
||||||
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/NetworkManager;connectToServer(Ljava/net/InetAddress;IZ)Lnet/minecraft/network/NetworkManager;"))
|
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Ljava/net/InetAddress;getByName(Ljava/lang/String;)Ljava/net/InetAddress;"))
|
||||||
public NetworkManager trackVersion(InetAddress address, int i, boolean b) {
|
public InetAddress trackServerVersion(String s) throws UnknownHostException {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
final InetAddress address = InetAddress.getByName(s);
|
||||||
// use it to determine the protocol version to use.
|
ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
||||||
// We hope that the current server data is not null
|
if (version == null) {
|
||||||
if (Minecraft.getInstance().getCurrentServer() instanceof ExtendedServerData) {
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
final ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
}
|
VersionTracker.storeServerProtocolVersion(address, version);
|
||||||
|
return address;
|
||||||
return NetworkManager.connectToServer(address, i, b);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,16 +16,16 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import net.minecraft.network.NettyEncryptingDecoder;
|
import net.minecraft.network.NettyEncryptingDecoder;
|
||||||
import net.minecraft.network.NettyEncryptingEncoder;
|
import net.minecraft.network.NettyEncryptingEncoder;
|
||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
import net.minecraft.util.LazyValue;
|
import net.minecraft.util.LazyValue;
|
||||||
import net.minecraft.util.text.ITextComponent;
|
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
@ -46,46 +46,39 @@ public class MixinNetworkManager implements VFNetworkManager {
|
|||||||
|
|
||||||
@Shadow private Channel channel;
|
@Shadow private Channel channel;
|
||||||
|
|
||||||
|
@Shadow private boolean encrypted;
|
||||||
@Unique
|
@Unique
|
||||||
private Cipher viaForge$decryptionCipher;
|
private Cipher viaForge$decryptionCipher;
|
||||||
|
|
||||||
@Unique
|
@Unique
|
||||||
private ProtocolVersion viaForge$targetVersion;
|
private ProtocolVersion viaForge$targetVersion;
|
||||||
|
|
||||||
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
@Inject(method = "setupCompression", at = @At("RETURN"))
|
||||||
private static void trackSelfTarget(InetAddress p_181124_0_, int p_181124_1_, boolean p_181124_2_, CallbackInfoReturnable<NetworkManager> cir, NetworkManager networkmanager, Class oclass, LazyValue lazyvalue) {
|
public void reorderPipeline(int p_setCompressionTreshold_1_, CallbackInfo ci) {
|
||||||
// The connecting screen and server pinger are setting the main target version when a specific version for a server is set,
|
ViaForgeCommon.getManager().reorderCompression(channel);
|
||||||
// This works for joining perfect since we can simply restore the version when the server doesn't have a specific one set,
|
|
||||||
// but for the server pinger we need to store the target version and force the pinging to use the target version.
|
|
||||||
// Due to the fact that the server pinger is being called multiple times.
|
|
||||||
((VFNetworkManager) networkmanager).viaForge$setTrackedVersion(ViaForgeCommon.getManager().getTargetVersion());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
||||||
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
if (viaForge$targetVersion != null && viaForge$targetVersion.olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
||||||
ci.cancel();
|
ci.cancel();
|
||||||
|
|
||||||
// Minecraft 1.6.4 supports tile encryption which means the server can only disable one side of the encryption
|
// Minecraft 1.6.4 supports tile encryption which means the server can only enable one side of the encryption
|
||||||
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
||||||
// tells us to do, therefore we need to store the cipher instance.
|
// tells us to do, therefore we need to store the cipher instance.
|
||||||
this.viaForge$decryptionCipher = p_244777_1_;
|
this.viaForge$decryptionCipher = p_244777_1_;
|
||||||
|
|
||||||
// Enabling the encryption side
|
// Enabling the encryption side
|
||||||
|
this.encrypted = true;
|
||||||
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new NettyEncryptingEncoder(p_244777_2_));
|
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new NettyEncryptingEncoder(p_244777_2_));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "disconnect", at = @At("HEAD"))
|
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
||||||
public void restoreTargetVersion(ITextComponent p_150718_1_, CallbackInfo ci) {
|
private static void setTargetVersion(InetAddress address, int serverPort, boolean useNativeTransport, CallbackInfoReturnable<NetworkManager> cir, NetworkManager networkmanager, Class oclass, LazyValue lazyvalue) {
|
||||||
// If the previous server forced a version, we need to restore the version to the default one.
|
final VFNetworkManager mixinNetworkManager = (VFNetworkManager) networkmanager;
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
mixinNetworkManager.viaForge$setTrackedVersion(VersionTracker.getServerProtocolVersion(address));
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "setupCompression", at = @At("RETURN"))
|
|
||||||
public void reorderPipeline(int p_setCompressionTreshold_1_, CallbackInfo ci) {
|
|
||||||
ViaForgeCommon.getManager().reorderCompression(channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
@ -16,7 +16,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
@ -37,7 +37,7 @@ public class MixinNetworkManager_1 {
|
|||||||
NetworkManager val$networkmanager;
|
NetworkManager val$networkmanager;
|
||||||
|
|
||||||
@Inject(method = "initChannel", at = @At(value = "TAIL"), remap = false)
|
@Inject(method = "initChannel", at = @At(value = "TAIL"), remap = false)
|
||||||
private void onInitChannel(Channel channel, CallbackInfo ci) {
|
private void hookViaPipeline(Channel channel, CallbackInfo ci) {
|
||||||
ViaForgeCommon.getManager().inject(channel, (VFNetworkManager) val$networkmanager);
|
ViaForgeCommon.getManager().inject(channel, (VFNetworkManager) val$networkmanager);
|
||||||
}
|
}
|
||||||
|
|
@ -16,10 +16,11 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.multiplayer.ServerData;
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
import net.minecraft.client.network.ServerPinger;
|
import net.minecraft.client.network.ServerPinger;
|
||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
@ -46,22 +47,12 @@ public class MixinServerPinger {
|
|||||||
|
|
||||||
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/NetworkManager;connectToServer(Ljava/net/InetAddress;IZ)Lnet/minecraft/network/NetworkManager;"))
|
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/NetworkManager;connectToServer(Ljava/net/InetAddress;IZ)Lnet/minecraft/network/NetworkManager;"))
|
||||||
public NetworkManager trackVersion(InetAddress address, int i, boolean b) {
|
public NetworkManager trackVersion(InetAddress address, int i, boolean b) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
||||||
// use it to determine the protocol version to use.
|
if (version == null) {
|
||||||
// We hope that the current server data is not null
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
|
||||||
if (viaForge$serverData instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(address, version);
|
||||||
viaForge$serverData = null;
|
viaForge$serverData = null;
|
||||||
}
|
|
||||||
|
|
||||||
return NetworkManager.connectToServer(address, i, b);
|
return NetworkManager.connectToServer(address, i, b);
|
||||||
}
|
}
|
@ -5,16 +5,16 @@
|
|||||||
"package": "de.florianmichael.viaforge.mixin",
|
"package": "de.florianmichael.viaforge.mixin",
|
||||||
"client": [
|
"client": [
|
||||||
"MixinAddServerScreen",
|
"MixinAddServerScreen",
|
||||||
"MixinClientLoginNetHandler",
|
"connect.MixinClientLoginNetHandler",
|
||||||
"MixinConnectingScreen_1",
|
"connect.MixinConnectingScreen_1",
|
||||||
"MixinDebugOverlayGui",
|
"MixinDebugOverlayGui",
|
||||||
"MixinMainMenuScreen",
|
"MixinMainMenuScreen",
|
||||||
"MixinMultiplayerScreen",
|
"MixinMultiplayerScreen",
|
||||||
"MixinNetworkManager",
|
"connect.MixinNetworkManager",
|
||||||
"MixinNetworkManager_1",
|
"connect.MixinNetworkManager_1",
|
||||||
"MixinServerData",
|
"MixinServerData",
|
||||||
"MixinServerListScreen",
|
"MixinServerListScreen",
|
||||||
"MixinServerPinger",
|
"connect.MixinServerPinger",
|
||||||
"fixes.MixinClientPlayerEntity"
|
"fixes.MixinClientPlayerEntity"
|
||||||
],
|
],
|
||||||
"injectors": {
|
"injectors": {
|
||||||
|
@ -16,18 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import com.mojang.authlib.exceptions.AuthenticationException;
|
import com.mojang.authlib.exceptions.AuthenticationException;
|
||||||
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
||||||
import com.viaversion.viaversion.api.connection.UserConnection;
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|
||||||
import org.spongepowered.asm.mixin.Final;
|
import org.spongepowered.asm.mixin.Final;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.Shadow;
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
@ -42,7 +42,8 @@ public class MixinClientHandshakePacketListenerImpl {
|
|||||||
|
|
||||||
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
||||||
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
|
if (mixinConnection.viaForge$getTrackedVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
||||||
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
||||||
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
@ -16,39 +16,32 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.network.Connection;
|
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||||
|
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.client.gui.screens.ConnectScreen$1")
|
@Mixin(targets = "net.minecraft.client.gui.screens.ConnectScreen$1")
|
||||||
public class MixinConnectScreen_1 {
|
public class MixinConnectScreen_1 {
|
||||||
|
|
||||||
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Ljava/util/Optional;get()Ljava/lang/Object;"))
|
||||||
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
public Object trackServerVersion(Optional instance) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
final InetSocketAddress address = (InetSocketAddress) instance.get();
|
||||||
// use it to determine the protocol version to use.
|
ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
||||||
// We hope that the current server data is not null
|
if (version == null) {
|
||||||
if (Minecraft.getInstance().getCurrentServer() instanceof ExtendedServerData) {
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
final ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
}
|
VersionTracker.storeServerProtocolVersion(address.getAddress(), version);
|
||||||
|
return address;
|
||||||
return Connection.connectToServer(oclass, lazyloadedvalue);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,15 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
|
import io.netty.channel.EventLoopGroup;
|
||||||
|
import io.netty.channel.socket.SocketChannel;
|
||||||
import net.minecraft.network.CipherDecoder;
|
import net.minecraft.network.CipherDecoder;
|
||||||
import net.minecraft.network.CipherEncoder;
|
import net.minecraft.network.CipherEncoder;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.minecraft.network.chat.Component;
|
import net.minecraft.util.LazyLoadedValue;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
@ -45,46 +48,39 @@ public class MixinConnection implements VFNetworkManager {
|
|||||||
|
|
||||||
@Shadow private Channel channel;
|
@Shadow private Channel channel;
|
||||||
|
|
||||||
|
@Shadow private boolean encrypted;
|
||||||
@Unique
|
@Unique
|
||||||
private Cipher viaForge$decryptionCipher;
|
private Cipher viaForge$decryptionCipher;
|
||||||
|
|
||||||
@Unique
|
@Unique
|
||||||
private ProtocolVersion viaForge$targetVersion;
|
private ProtocolVersion viaForge$targetVersion;
|
||||||
|
|
||||||
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
@Inject(method = "setupCompression", at = @At("RETURN"))
|
||||||
private static void trackSelfTarget(InetSocketAddress p_178301_, boolean p_178302_, CallbackInfoReturnable<Connection> cir, final Connection connection) {
|
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
||||||
// The connecting screen and server pinger are setting the main target version when a specific version for a server is set,
|
ViaForgeCommon.getManager().reorderCompression(channel);
|
||||||
// This works for joining perfect since we can simply restore the version when the server doesn't have a specific one set,
|
|
||||||
// but for the server pinger we need to store the target version and force the pinging to use the target version.
|
|
||||||
// Due to the fact that the server pinger is being called multiple times.
|
|
||||||
((VFNetworkManager) connection).viaForge$setTrackedVersion(ViaForgeCommon.getManager().getTargetVersion());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
||||||
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
if (viaForge$targetVersion != null && viaForge$targetVersion.olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
||||||
ci.cancel();
|
ci.cancel();
|
||||||
|
|
||||||
// Minecraft 1.6.4 supports tile encryption which means the server can only disable one side of the encryption
|
// Minecraft 1.6.4 supports tile encryption which means the server can only enable one side of the encryption
|
||||||
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
||||||
// tells us to do, therefore we need to store the cipher instance.
|
// tells us to do, therefore we need to store the cipher instance.
|
||||||
this.viaForge$decryptionCipher = p_244777_1_;
|
this.viaForge$decryptionCipher = p_244777_1_;
|
||||||
|
|
||||||
// Enabling the encryption side
|
// Enabling the encryption side
|
||||||
|
this.encrypted = true;
|
||||||
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "disconnect", at = @At("HEAD"))
|
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
||||||
public void restoreTargetVersion(Component p_129508_, CallbackInfo ci) {
|
private static void setTargetVersion(InetSocketAddress p_178301_, boolean p_178302_, CallbackInfoReturnable<Connection> cir, Connection connection, Class<? extends SocketChannel> oclass, LazyLoadedValue<? extends EventLoopGroup> lazyloadedvalue) {
|
||||||
// If the previous server forced a version, we need to restore the version to the default one.
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
mixinConnection.viaForge$setTrackedVersion(VersionTracker.getServerProtocolVersion(p_178301_.getAddress()));
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "setupCompression", at = @At("RETURN"))
|
|
||||||
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
|
||||||
ViaForgeCommon.getManager().reorderCompression(channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
@ -16,7 +16,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
@ -16,10 +16,11 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.multiplayer.ServerData;
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
@ -46,22 +47,12 @@ public class MixinServerStatusPinger {
|
|||||||
|
|
||||||
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
||||||
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
||||||
// use it to determine the protocol version to use.
|
if (version == null) {
|
||||||
// We hope that the current server data is not null
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
|
||||||
if (viaForge$serverData instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(oclass.getAddress(), version);
|
||||||
viaForge$serverData = null;
|
viaForge$serverData = null;
|
||||||
}
|
|
||||||
|
|
||||||
return Connection.connectToServer(oclass, lazyloadedvalue);
|
return Connection.connectToServer(oclass, lazyloadedvalue);
|
||||||
}
|
}
|
@ -4,19 +4,19 @@
|
|||||||
"compatibilityLevel": "JAVA_8",
|
"compatibilityLevel": "JAVA_8",
|
||||||
"package": "de.florianmichael.viaforge.mixin",
|
"package": "de.florianmichael.viaforge.mixin",
|
||||||
"client": [
|
"client": [
|
||||||
"MixinClientHandshakePacketListenerImpl",
|
"connect.MixinClientHandshakePacketListenerImpl",
|
||||||
"MixinConnection",
|
"connect.MixinConnection",
|
||||||
"MixinConnection_1",
|
"connect.MixinConnection_1",
|
||||||
"MixinDebugScreenOverlay",
|
"MixinDebugScreenOverlay",
|
||||||
"MixinDirectJoinServerScreen",
|
"MixinDirectJoinServerScreen",
|
||||||
"MixinEditServerScreen",
|
"MixinEditServerScreen",
|
||||||
"MixinJoinMultiplayerScreen",
|
"MixinJoinMultiplayerScreen",
|
||||||
"MixinServerData",
|
"MixinServerData",
|
||||||
"MixinServerStatusPinger",
|
"connect.MixinServerStatusPinger",
|
||||||
"MixinTitleScreen",
|
"MixinTitleScreen",
|
||||||
"fixes.MixinLocalPlayer",
|
"fixes.MixinLocalPlayer",
|
||||||
"MixinConnection_1",
|
"connect.MixinConnection_1",
|
||||||
"MixinConnectScreen_1"
|
"connect.MixinConnectScreen_1"
|
||||||
],
|
],
|
||||||
"injectors": {
|
"injectors": {
|
||||||
"defaultRequire": 1
|
"defaultRequire": 1
|
||||||
|
@ -16,18 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import com.mojang.authlib.exceptions.AuthenticationException;
|
import com.mojang.authlib.exceptions.AuthenticationException;
|
||||||
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
||||||
import com.viaversion.viaversion.api.connection.UserConnection;
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|
||||||
import org.spongepowered.asm.mixin.Final;
|
import org.spongepowered.asm.mixin.Final;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.Shadow;
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
@ -42,7 +42,8 @@ public class MixinClientHandshakePacketListenerImpl {
|
|||||||
|
|
||||||
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
||||||
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
|
if (mixinConnection.viaForge$getTrackedVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
||||||
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
||||||
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
@ -16,39 +16,32 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.network.Connection;
|
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||||
|
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.client.gui.screens.ConnectScreen$1")
|
@Mixin(targets = "net.minecraft.client.gui.screens.ConnectScreen$1")
|
||||||
public class MixinConnectScreen_1 {
|
public class MixinConnectScreen_1 {
|
||||||
|
|
||||||
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Ljava/util/Optional;get()Ljava/lang/Object;"))
|
||||||
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
public Object trackServerVersion(Optional instance) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
final InetSocketAddress address = (InetSocketAddress) instance.get();
|
||||||
// use it to determine the protocol version to use.
|
ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
||||||
// We hope that the current server data is not null
|
if (version == null) {
|
||||||
if (Minecraft.getInstance().getCurrentServer() instanceof ExtendedServerData) {
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
final ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
}
|
VersionTracker.storeServerProtocolVersion(address.getAddress(), version);
|
||||||
|
return address;
|
||||||
return Connection.connectToServer(oclass, lazyloadedvalue);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,15 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
|
import io.netty.channel.EventLoopGroup;
|
||||||
|
import io.netty.channel.socket.SocketChannel;
|
||||||
import net.minecraft.network.CipherDecoder;
|
import net.minecraft.network.CipherDecoder;
|
||||||
import net.minecraft.network.CipherEncoder;
|
import net.minecraft.network.CipherEncoder;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.minecraft.network.chat.Component;
|
import net.minecraft.util.LazyLoadedValue;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
@ -45,46 +48,39 @@ public class MixinConnection implements VFNetworkManager {
|
|||||||
|
|
||||||
@Shadow private Channel channel;
|
@Shadow private Channel channel;
|
||||||
|
|
||||||
|
@Shadow private boolean encrypted;
|
||||||
@Unique
|
@Unique
|
||||||
private Cipher viaForge$decryptionCipher;
|
private Cipher viaForge$decryptionCipher;
|
||||||
|
|
||||||
@Unique
|
@Unique
|
||||||
private ProtocolVersion viaForge$targetVersion;
|
private ProtocolVersion viaForge$targetVersion;
|
||||||
|
|
||||||
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
@Inject(method = "setupCompression", at = @At("RETURN"))
|
||||||
private static void trackSelfTarget(InetSocketAddress p_178301_, boolean p_178302_, CallbackInfoReturnable<Connection> cir, final Connection connection) {
|
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
||||||
// The connecting screen and server pinger are setting the main target version when a specific version for a server is set,
|
ViaForgeCommon.getManager().reorderCompression(channel);
|
||||||
// This works for joining perfect since we can simply restore the version when the server doesn't have a specific one set,
|
|
||||||
// but for the server pinger we need to store the target version and force the pinging to use the target version.
|
|
||||||
// Due to the fact that the server pinger is being called multiple times.
|
|
||||||
((VFNetworkManager) connection).viaForge$setTrackedVersion(ViaForgeCommon.getManager().getTargetVersion());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
||||||
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
if (viaForge$targetVersion != null && viaForge$targetVersion.olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
||||||
ci.cancel();
|
ci.cancel();
|
||||||
|
|
||||||
// Minecraft 1.6.4 supports tile encryption which means the server can only disable one side of the encryption
|
// Minecraft 1.6.4 supports tile encryption which means the server can only enable one side of the encryption
|
||||||
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
||||||
// tells us to do, therefore we need to store the cipher instance.
|
// tells us to do, therefore we need to store the cipher instance.
|
||||||
this.viaForge$decryptionCipher = p_244777_1_;
|
this.viaForge$decryptionCipher = p_244777_1_;
|
||||||
|
|
||||||
// Enabling the encryption side
|
// Enabling the encryption side
|
||||||
|
this.encrypted = true;
|
||||||
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "disconnect", at = @At("HEAD"))
|
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
||||||
public void restoreTargetVersion(Component p_129508_, CallbackInfo ci) {
|
private static void setTargetVersion(InetSocketAddress p_178301_, boolean p_178302_, CallbackInfoReturnable<Connection> cir, Connection connection, Class<? extends SocketChannel> oclass, LazyLoadedValue<? extends EventLoopGroup> lazyloadedvalue) {
|
||||||
// If the previous server forced a version, we need to restore the version to the default one.
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
mixinConnection.viaForge$setTrackedVersion(VersionTracker.getServerProtocolVersion(p_178301_.getAddress()));
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "setupCompression", at = @At("RETURN"))
|
|
||||||
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
|
||||||
ViaForgeCommon.getManager().reorderCompression(channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
@ -16,26 +16,24 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.ChannelHandler;
|
import io.netty.channel.ChannelHandler;
|
||||||
import io.netty.channel.ChannelPipeline;
|
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.network.Connection$1")
|
@Mixin(targets = "net.minecraft.network.Connection$1")
|
||||||
public class MixinConnection_1 {
|
public class MixinConnection_1 {
|
||||||
|
|
||||||
@Redirect(method = "initChannel", at = @At(value = "INVOKE", target = "Lio/netty/channel/ChannelPipeline;addLast(Ljava/lang/String;Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;"))
|
@Inject(method = "initChannel", at = @At("TAIL"))
|
||||||
private ChannelPipeline hookViaPipeline(ChannelPipeline instance, String s, ChannelHandler channelHandler) {
|
private void hookViaPipeline(Channel p_129552_, CallbackInfo ci) {
|
||||||
final ChannelPipeline handler = instance.addLast(s, channelHandler);
|
final ChannelHandler connection = p_129552_.pipeline().get("packet_handler");
|
||||||
if (channelHandler instanceof VFNetworkManager mixinNetworkManager) {
|
ViaForgeCommon.getManager().inject(p_129552_, (VFNetworkManager) connection);
|
||||||
ViaForgeCommon.getManager().inject(instance.channel(), mixinNetworkManager);
|
|
||||||
}
|
|
||||||
return handler;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,10 +16,11 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.multiplayer.ServerData;
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
@ -46,22 +47,12 @@ public class MixinServerStatusPinger {
|
|||||||
|
|
||||||
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
||||||
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
||||||
// use it to determine the protocol version to use.
|
if (version == null) {
|
||||||
// We hope that the current server data is not null
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
|
||||||
if (viaForge$serverData instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(oclass.getAddress(), version);
|
||||||
viaForge$serverData = null;
|
viaForge$serverData = null;
|
||||||
}
|
|
||||||
|
|
||||||
return Connection.connectToServer(oclass, lazyloadedvalue);
|
return Connection.connectToServer(oclass, lazyloadedvalue);
|
||||||
}
|
}
|
@ -4,16 +4,16 @@
|
|||||||
"compatibilityLevel": "JAVA_8",
|
"compatibilityLevel": "JAVA_8",
|
||||||
"package": "de.florianmichael.viaforge.mixin",
|
"package": "de.florianmichael.viaforge.mixin",
|
||||||
"client": [
|
"client": [
|
||||||
"MixinClientHandshakePacketListenerImpl",
|
"connect.MixinClientHandshakePacketListenerImpl",
|
||||||
"MixinConnection",
|
"connect.MixinConnection",
|
||||||
"MixinConnection_1",
|
"connect.MixinConnection_1",
|
||||||
"MixinConnectScreen_1",
|
"connect.MixinConnectScreen_1",
|
||||||
"MixinDebugScreenOverlay",
|
"MixinDebugScreenOverlay",
|
||||||
"MixinDirectJoinServerScreen",
|
"MixinDirectJoinServerScreen",
|
||||||
"MixinEditServerScreen",
|
"MixinEditServerScreen",
|
||||||
"MixinJoinMultiplayerScreen",
|
"MixinJoinMultiplayerScreen",
|
||||||
"MixinServerData",
|
"MixinServerData",
|
||||||
"MixinServerStatusPinger",
|
"connect.MixinServerStatusPinger",
|
||||||
"MixinTitleScreen",
|
"MixinTitleScreen",
|
||||||
"fixes.MixinLocalPlayer"
|
"fixes.MixinLocalPlayer"
|
||||||
],
|
],
|
||||||
|
@ -16,18 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import com.mojang.authlib.exceptions.AuthenticationException;
|
import com.mojang.authlib.exceptions.AuthenticationException;
|
||||||
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
||||||
import com.viaversion.viaversion.api.connection.UserConnection;
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|
||||||
import org.spongepowered.asm.mixin.Final;
|
import org.spongepowered.asm.mixin.Final;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.Shadow;
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
@ -42,7 +42,8 @@ public class MixinClientHandshakePacketListenerImpl {
|
|||||||
|
|
||||||
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Ljava/lang/String;)V"))
|
||||||
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
public void onlyJoinServerIfPremium(MinecraftSessionService instance, GameProfile profile, String authenticationToken, String serverId) throws AuthenticationException {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
|
if (mixinConnection.viaForge$getTrackedVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
||||||
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
||||||
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
@ -16,39 +16,36 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
import net.minecraft.client.Minecraft;
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.network.Connection;
|
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
|
import org.spongepowered.asm.mixin.Final;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||||
|
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.client.gui.screens.ConnectScreen$1")
|
@Mixin(targets = "net.minecraft.client.gui.screens.ConnectScreen$1")
|
||||||
public class MixinConnectScreen_1 {
|
public class MixinConnectScreen_1 {
|
||||||
|
|
||||||
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
@Shadow @Final private ServerData val$p_252078_;
|
||||||
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
|
||||||
// use it to determine the protocol version to use.
|
|
||||||
// We hope that the current server data is not null
|
|
||||||
if (Minecraft.getInstance().getCurrentServer() instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Connection.connectToServer(oclass, lazyloadedvalue);
|
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Ljava/util/Optional;get()Ljava/lang/Object;"))
|
||||||
|
public Object trackServerVersion(Optional instance) {
|
||||||
|
final InetSocketAddress address = (InetSocketAddress) instance.get();
|
||||||
|
ProtocolVersion version = ((ExtendedServerData) val$p_252078_).viaForge$getVersion();
|
||||||
|
if (version == null) {
|
||||||
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(address.getAddress(), version);
|
||||||
|
return address;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,15 +16,18 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
|
import io.netty.channel.EventLoopGroup;
|
||||||
|
import io.netty.channel.socket.SocketChannel;
|
||||||
import net.minecraft.network.CipherDecoder;
|
import net.minecraft.network.CipherDecoder;
|
||||||
import net.minecraft.network.CipherEncoder;
|
import net.minecraft.network.CipherEncoder;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.minecraft.network.chat.Component;
|
import net.minecraft.util.LazyLoadedValue;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
@ -45,46 +48,39 @@ public class MixinConnection implements VFNetworkManager {
|
|||||||
|
|
||||||
@Shadow private Channel channel;
|
@Shadow private Channel channel;
|
||||||
|
|
||||||
|
@Shadow private boolean encrypted;
|
||||||
@Unique
|
@Unique
|
||||||
private Cipher viaForge$decryptionCipher;
|
private Cipher viaForge$decryptionCipher;
|
||||||
|
|
||||||
@Unique
|
@Unique
|
||||||
private ProtocolVersion viaForge$targetVersion;
|
private ProtocolVersion viaForge$targetVersion;
|
||||||
|
|
||||||
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
@Inject(method = "setupCompression", at = @At("RETURN"))
|
||||||
private static void trackSelfTarget(InetSocketAddress p_178301_, boolean p_178302_, CallbackInfoReturnable<Connection> cir, final Connection connection) {
|
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
||||||
// The connecting screen and server pinger are setting the main target version when a specific version for a server is set,
|
ViaForgeCommon.getManager().reorderCompression(channel);
|
||||||
// This works for joining perfect since we can simply restore the version when the server doesn't have a specific one set,
|
|
||||||
// but for the server pinger we need to store the target version and force the pinging to use the target version.
|
|
||||||
// Due to the fact that the server pinger is being called multiple times.
|
|
||||||
((VFNetworkManager) connection).viaForge$setTrackedVersion(ViaForgeCommon.getManager().getTargetVersion());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
||||||
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
if (viaForge$targetVersion != null && viaForge$targetVersion.olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
||||||
ci.cancel();
|
ci.cancel();
|
||||||
|
|
||||||
// Minecraft 1.6.4 supports tile encryption which means the server can only disable one side of the encryption
|
// Minecraft 1.6.4 supports tile encryption which means the server can only enable one side of the encryption
|
||||||
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
||||||
// tells us to do, therefore we need to store the cipher instance.
|
// tells us to do, therefore we need to store the cipher instance.
|
||||||
this.viaForge$decryptionCipher = p_244777_1_;
|
this.viaForge$decryptionCipher = p_244777_1_;
|
||||||
|
|
||||||
// Enabling the encryption side
|
// Enabling the encryption side
|
||||||
|
this.encrypted = true;
|
||||||
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "disconnect", at = @At("HEAD"))
|
@Inject(method = "connectToServer", at = @At(value = "INVOKE", target = "Lio/netty/bootstrap/Bootstrap;group(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;"), locals = LocalCapture.CAPTURE_FAILHARD)
|
||||||
public void restoreTargetVersion(Component p_129508_, CallbackInfo ci) {
|
private static void setTargetVersion(InetSocketAddress p_178301_, boolean p_178302_, CallbackInfoReturnable<Connection> cir, Connection connection, Class<? extends SocketChannel> oclass, LazyLoadedValue<? extends EventLoopGroup> lazyloadedvalue) {
|
||||||
// If the previous server forced a version, we need to restore the version to the default one.
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
mixinConnection.viaForge$setTrackedVersion(VersionTracker.getServerProtocolVersion(p_178301_.getAddress()));
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "setupCompression", at = @At("RETURN"))
|
|
||||||
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
|
||||||
ViaForgeCommon.getManager().reorderCompression(channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
@ -16,26 +16,24 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.ChannelHandler;
|
import io.netty.channel.ChannelHandler;
|
||||||
import io.netty.channel.ChannelPipeline;
|
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.network.Connection$1")
|
@Mixin(targets = "net.minecraft.network.Connection$1")
|
||||||
public class MixinConnection_1 {
|
public class MixinConnection_1 {
|
||||||
|
|
||||||
@Redirect(method = "initChannel", at = @At(value = "INVOKE", target = "Lio/netty/channel/ChannelPipeline;addLast(Ljava/lang/String;Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;"))
|
@Inject(method = "initChannel", at = @At("TAIL"))
|
||||||
private ChannelPipeline hookViaPipeline(ChannelPipeline instance, String s, ChannelHandler channelHandler) {
|
private void hookViaPipeline(Channel p_129552_, CallbackInfo ci) {
|
||||||
final ChannelPipeline handler = instance.addLast(s, channelHandler);
|
final ChannelHandler connection = p_129552_.pipeline().get("packet_handler");
|
||||||
if (channelHandler instanceof VFNetworkManager mixinNetworkManager) {
|
ViaForgeCommon.getManager().inject(p_129552_, (VFNetworkManager) connection);
|
||||||
ViaForgeCommon.getManager().inject(instance.channel(), mixinNetworkManager);
|
|
||||||
}
|
|
||||||
return handler;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,10 +16,11 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.multiplayer.ServerData;
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
@ -46,22 +47,12 @@ public class MixinServerStatusPinger {
|
|||||||
|
|
||||||
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection;"))
|
||||||
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
public Connection trackVersion(InetSocketAddress oclass, boolean lazyloadedvalue) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
||||||
// use it to determine the protocol version to use.
|
if (version == null) {
|
||||||
// We hope that the current server data is not null
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
|
||||||
if (viaForge$serverData instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(oclass.getAddress(), version);
|
||||||
viaForge$serverData = null;
|
viaForge$serverData = null;
|
||||||
}
|
|
||||||
|
|
||||||
return Connection.connectToServer(oclass, lazyloadedvalue);
|
return Connection.connectToServer(oclass, lazyloadedvalue);
|
||||||
}
|
}
|
@ -4,16 +4,16 @@
|
|||||||
"compatibilityLevel": "JAVA_8",
|
"compatibilityLevel": "JAVA_8",
|
||||||
"package": "de.florianmichael.viaforge.mixin",
|
"package": "de.florianmichael.viaforge.mixin",
|
||||||
"client": [
|
"client": [
|
||||||
"MixinClientHandshakePacketListenerImpl",
|
"connect.MixinClientHandshakePacketListenerImpl",
|
||||||
"MixinConnection",
|
"connect.MixinConnection",
|
||||||
"MixinConnection_1",
|
"connect.MixinConnection_1",
|
||||||
"MixinConnectScreen_1",
|
"connect.MixinConnectScreen_1",
|
||||||
"MixinDebugScreenOverlay",
|
"MixinDebugScreenOverlay",
|
||||||
"MixinDirectJoinServerScreen",
|
"MixinDirectJoinServerScreen",
|
||||||
"MixinEditServerScreen",
|
"MixinEditServerScreen",
|
||||||
"MixinJoinMultiplayerScreen",
|
"MixinJoinMultiplayerScreen",
|
||||||
"MixinServerData",
|
"MixinServerData",
|
||||||
"MixinServerStatusPinger",
|
"connect.MixinServerStatusPinger",
|
||||||
"MixinTitleScreen",
|
"MixinTitleScreen",
|
||||||
"fixes.MixinLocalPlayer"
|
"fixes.MixinLocalPlayer"
|
||||||
],
|
],
|
||||||
|
@ -16,17 +16,17 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import com.mojang.authlib.exceptions.AuthenticationException;
|
import com.mojang.authlib.exceptions.AuthenticationException;
|
||||||
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
import com.mojang.authlib.minecraft.MinecraftSessionService;
|
||||||
import com.viaversion.viaversion.api.connection.UserConnection;
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
import net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
import net.raphimc.vialegacy.protocols.release.protocol1_7_2_5to1_6_4.storage.ProtocolMetadataStorage;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|
||||||
import org.spongepowered.asm.mixin.Final;
|
import org.spongepowered.asm.mixin.Final;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.Shadow;
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
@ -43,7 +43,8 @@ public class MixinClientHandshakePacketListenerImpl {
|
|||||||
|
|
||||||
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Ljava/util/UUID;Ljava/lang/String;Ljava/lang/String;)V"))
|
@Redirect(method = "authenticateServer", at = @At(value = "INVOKE", target = "Lcom/mojang/authlib/minecraft/MinecraftSessionService;joinServer(Ljava/util/UUID;Ljava/lang/String;Ljava/lang/String;)V"))
|
||||||
public void onlyJoinServerIfPremium(MinecraftSessionService instance, UUID uuid, String authenticationToken, String serverId) throws AuthenticationException {
|
public void onlyJoinServerIfPremium(MinecraftSessionService instance, UUID uuid, String authenticationToken, String serverId) throws AuthenticationException {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
final VFNetworkManager mixinConnection = (VFNetworkManager) connection;
|
||||||
|
if (mixinConnection.viaForge$getTrackedVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
final UserConnection user = connection.channel().attr(ViaForgeCommon.LOCAL_VIA_USER).get();
|
||||||
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
if (user != null && user.has(ProtocolMetadataStorage.class) && !user.get(ProtocolMetadataStorage.class).authenticate) {
|
||||||
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
// We are in the 1.7 -> 1.6 protocol, so we need to skip the joinServer call
|
@ -0,0 +1,51 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2024 FlorianMichael/EnZaXD <florian.michael07@gmail.com> and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
|
import org.spongepowered.asm.mixin.Final;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Redirect;
|
||||||
|
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
@Mixin(targets = "net.minecraft.client.gui.screens.ConnectScreen$1")
|
||||||
|
public class MixinConnectScreen_1 {
|
||||||
|
|
||||||
|
@Shadow @Final private ServerData val$p_252078_;
|
||||||
|
|
||||||
|
@Redirect(method = "run", at = @At(value = "INVOKE", target = "Ljava/util/Optional;get()Ljava/lang/Object;"))
|
||||||
|
public Object trackServerVersion(Optional instance) {
|
||||||
|
final InetSocketAddress address = (InetSocketAddress) instance.get();
|
||||||
|
ProtocolVersion version = ((ExtendedServerData) val$p_252078_).viaForge$getVersion();
|
||||||
|
if (version == null) {
|
||||||
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(address.getAddress(), version);
|
||||||
|
return address;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -16,20 +16,16 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.ChannelFuture;
|
import io.netty.channel.ChannelFuture;
|
||||||
import net.minecraft.client.Minecraft;
|
|
||||||
import net.minecraft.network.CipherDecoder;
|
import net.minecraft.network.CipherDecoder;
|
||||||
import net.minecraft.network.CipherEncoder;
|
import net.minecraft.network.CipherEncoder;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
import net.minecraft.network.PacketListener;
|
|
||||||
import net.minecraft.network.chat.Component;
|
|
||||||
import net.minecraft.network.protocol.handshake.ClientIntent;
|
|
||||||
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
import net.raphimc.vialegacy.api.LegacyProtocolVersion;
|
||||||
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
import net.raphimc.vialoader.netty.VLLegacyPipeline;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
@ -49,60 +45,39 @@ public class MixinConnection implements VFNetworkManager {
|
|||||||
|
|
||||||
@Shadow private Channel channel;
|
@Shadow private Channel channel;
|
||||||
|
|
||||||
|
@Shadow private boolean encrypted;
|
||||||
@Unique
|
@Unique
|
||||||
private Cipher viaForge$decryptionCipher;
|
private Cipher viaForge$decryptionCipher;
|
||||||
|
|
||||||
@Unique
|
@Unique
|
||||||
private ProtocolVersion viaForge$targetVersion;
|
private ProtocolVersion viaForge$targetVersion;
|
||||||
|
|
||||||
@Inject(method = "connect", at = @At("HEAD"))
|
@Inject(method = "setupCompression", at = @At("RETURN"))
|
||||||
private static void trackSelfTarget(InetSocketAddress p_290034_, boolean p_290035_, Connection p_290031_, CallbackInfoReturnable<ChannelFuture> cir) {
|
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
||||||
// The connecting screen and server pinger are setting the main target version when a specific version for a server is set,
|
ViaForgeCommon.getManager().reorderCompression(channel);
|
||||||
// This works for joining perfect since we can simply restore the version when the server doesn't have a specific one set,
|
|
||||||
// but for the server pinger we need to store the target version and force the pinging to use the target version.
|
|
||||||
// Due to the fact that the server pinger is being called multiple times.
|
|
||||||
((VFNetworkManager) p_290031_).viaForge$setTrackedVersion(ViaForgeCommon.getManager().getTargetVersion());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "initiateServerboundConnection", at = @At("HEAD"))
|
|
||||||
public void resetTargetVersion(String p_300730_, int p_300598_, PacketListener p_298739_, ClientIntent p_297789_, CallbackInfo ci) {
|
|
||||||
if (Minecraft.getInstance().getCurrentServer() instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) Minecraft.getInstance().getCurrentServer()).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "setEncryptionKey", at = @At("HEAD"), cancellable = true)
|
||||||
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
private void storeEncryptionCiphers(Cipher p_244777_1_, Cipher p_244777_2_, CallbackInfo ci) {
|
||||||
if (ViaForgeCommon.getManager().getTargetVersion().olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
if (viaForge$targetVersion != null && viaForge$targetVersion.olderThanOrEqualTo(LegacyProtocolVersion.r1_6_4)) {
|
||||||
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
// Minecraft's encryption code is bad for us, we need to reorder the pipeline
|
||||||
ci.cancel();
|
ci.cancel();
|
||||||
|
|
||||||
// Minecraft 1.6.4 supports tile encryption which means the server can only disable one side of the encryption
|
// Minecraft 1.6.4 supports tile encryption which means the server can only enable one side of the encryption
|
||||||
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
// So we only enable the encryption side and later enable the decryption side if the 1.7 -> 1.6 protocol
|
||||||
// tells us to do, therefore we need to store the cipher instance.
|
// tells us to do, therefore we need to store the cipher instance.
|
||||||
this.viaForge$decryptionCipher = p_244777_1_;
|
this.viaForge$decryptionCipher = p_244777_1_;
|
||||||
|
|
||||||
// Enabling the encryption side
|
// Enabling the encryption side
|
||||||
|
this.encrypted = true;
|
||||||
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
this.channel.pipeline().addBefore(VLLegacyPipeline.VIALEGACY_PRE_NETTY_LENGTH_REMOVER_NAME, "encrypt", new CipherEncoder(p_244777_2_));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "disconnect", at = @At("HEAD"))
|
@Inject(method = "connect", at = @At("HEAD"))
|
||||||
public void restoreTargetVersion(Component p_129508_, CallbackInfo ci) {
|
private static void setTargetVersion(InetSocketAddress p_290034_, boolean p_290035_, Connection p_290031_, CallbackInfoReturnable<ChannelFuture> cir) {
|
||||||
// If the previous server forced a version, we need to restore the version to the default one.
|
final VFNetworkManager mixinConnection = (VFNetworkManager) p_290031_;
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
mixinConnection.viaForge$setTrackedVersion(VersionTracker.getServerProtocolVersion(p_290034_.getAddress()));
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "setupCompression", at = @At("RETURN"))
|
|
||||||
public void reorderPipeline(int p_129485_, boolean p_182682_, CallbackInfo ci) {
|
|
||||||
ViaForgeCommon.getManager().reorderCompression(channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
@ -16,26 +16,24 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
import de.florianmichael.viaforge.common.protocoltranslator.netty.VFNetworkManager;
|
||||||
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.ChannelHandler;
|
import io.netty.channel.ChannelHandler;
|
||||||
import io.netty.channel.ChannelPipeline;
|
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
import org.spongepowered.asm.mixin.injection.Redirect;
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
|
||||||
@Mixin(targets = "net.minecraft.network.Connection$1")
|
@Mixin(targets = "net.minecraft.network.Connection$1")
|
||||||
public class MixinConnection_1 {
|
public class MixinConnection_1 {
|
||||||
|
|
||||||
@Redirect(method = "initChannel", at = @At(value = "INVOKE", target = "Lio/netty/channel/ChannelPipeline;addLast(Ljava/lang/String;Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;"))
|
@Inject(method = "initChannel", at = @At("TAIL"))
|
||||||
private ChannelPipeline hookViaPipeline(ChannelPipeline instance, String s, ChannelHandler channelHandler) {
|
private void hookViaPipeline(Channel p_129552_, CallbackInfo ci) {
|
||||||
final ChannelPipeline handler = instance.addLast(s, channelHandler);
|
final ChannelHandler connection = p_129552_.pipeline().get("packet_handler");
|
||||||
if (channelHandler instanceof VFNetworkManager mixinNetworkManager) {
|
ViaForgeCommon.getManager().inject(p_129552_, (VFNetworkManager) connection);
|
||||||
ViaForgeCommon.getManager().inject(instance.channel(), mixinNetworkManager);
|
|
||||||
}
|
|
||||||
return handler;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -16,10 +16,11 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin.connect;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
import de.florianmichael.viaforge.common.ViaForgeCommon;
|
||||||
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
import de.florianmichael.viaforge.common.gui.ExtendedServerData;
|
||||||
|
import de.florianmichael.viaforge.common.platform.VersionTracker;
|
||||||
import net.minecraft.client.multiplayer.ServerData;
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
import net.minecraft.client.multiplayer.ServerStatusPinger;
|
||||||
import net.minecraft.network.Connection;
|
import net.minecraft.network.Connection;
|
||||||
@ -47,22 +48,12 @@ public class MixinServerStatusPinger {
|
|||||||
|
|
||||||
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;ZLnet/minecraft/util/SampleLogger;)Lnet/minecraft/network/Connection;"))
|
@Redirect(method = "pingServer", at = @At(value = "INVOKE", target = "Lnet/minecraft/network/Connection;connectToServer(Ljava/net/InetSocketAddress;ZLnet/minecraft/util/SampleLogger;)Lnet/minecraft/network/Connection;"))
|
||||||
public Connection trackVersion(InetSocketAddress address, boolean b, SampleLogger sampleLogger) {
|
public Connection trackVersion(InetSocketAddress address, boolean b, SampleLogger sampleLogger) {
|
||||||
// We need to track the version of the server we are connecting to, so we can later
|
ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
||||||
// use it to determine the protocol version to use.
|
if (version == null) {
|
||||||
// We hope that the current server data is not null
|
version = ViaForgeCommon.getManager().getTargetVersion();
|
||||||
|
|
||||||
if (viaForge$serverData instanceof ExtendedServerData) {
|
|
||||||
final ProtocolVersion version = ((ExtendedServerData) viaForge$serverData).viaForge$getVersion();
|
|
||||||
if (version != null) {
|
|
||||||
ViaForgeCommon.getManager().setTargetVersionSilent(version);
|
|
||||||
} else {
|
|
||||||
// If the server data does not contain a version, we need to restore the version
|
|
||||||
// we had before, so we don't use the wrong version.
|
|
||||||
ViaForgeCommon.getManager().restoreVersion();
|
|
||||||
}
|
}
|
||||||
|
VersionTracker.storeServerProtocolVersion(address.getAddress(), version);
|
||||||
viaForge$serverData = null;
|
viaForge$serverData = null;
|
||||||
}
|
|
||||||
|
|
||||||
return Connection.connectToServer(address, b, sampleLogger);
|
return Connection.connectToServer(address, b, sampleLogger);
|
||||||
}
|
}
|
@ -4,16 +4,17 @@
|
|||||||
"compatibilityLevel": "JAVA_8",
|
"compatibilityLevel": "JAVA_8",
|
||||||
"package": "de.florianmichael.viaforge.mixin",
|
"package": "de.florianmichael.viaforge.mixin",
|
||||||
"client": [
|
"client": [
|
||||||
"MixinClientHandshakePacketListenerImpl",
|
|
||||||
"MixinConnection",
|
|
||||||
"MixinConnection_1",
|
|
||||||
"MixinDebugScreenOverlay",
|
"MixinDebugScreenOverlay",
|
||||||
"MixinDirectJoinServerScreen",
|
"MixinDirectJoinServerScreen",
|
||||||
"MixinEditServerScreen",
|
"MixinEditServerScreen",
|
||||||
"MixinJoinMultiplayerScreen",
|
"MixinJoinMultiplayerScreen",
|
||||||
"MixinServerData",
|
"MixinServerData",
|
||||||
"MixinServerStatusPinger",
|
|
||||||
"MixinTitleScreen",
|
"MixinTitleScreen",
|
||||||
|
"connect.MixinClientHandshakePacketListenerImpl",
|
||||||
|
"connect.MixinConnection",
|
||||||
|
"connect.MixinConnection_1",
|
||||||
|
"connect.MixinConnectScreen_1",
|
||||||
|
"connect.MixinServerStatusPinger",
|
||||||
"fixes.MixinLocalPlayer"
|
"fixes.MixinLocalPlayer"
|
||||||
],
|
],
|
||||||
"injectors": {
|
"injectors": {
|
||||||
|
Loading…
Reference in New Issue
Block a user