mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-16 07:15:14 +01:00
42619795e1
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing BungeeCord Changes: 0509303f #3519: Queue configuration phase packets from API methods f486a251 #3518: Bump io.netty:netty-bom from 4.1.97.Final to 4.1.98.Final
105 lines
5.6 KiB
Diff
105 lines
5.6 KiB
Diff
From 9862433d237c305eea0735ced32b5bac5a18a9b0 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Naylor <git@drnaylor.co.uk>
|
|
Date: Tue, 25 Oct 2016 12:23:07 -0400
|
|
Subject: [PATCH] Add support for FML with IP Forwarding enabled
|
|
|
|
FML adds a \00FML\00 marker to the host field, so Forge can determine whether or not to start a Forge handshake, making way to allow vanilla clients to connect to Forge servers that don't need a client modification. However, Bungee also uses the field, and the two implementations collide when using Spigot.
|
|
|
|
The original fix was to not send the FML information at the same time as the IP forwarding, you could have one or the other, but not both. This was OK, as no FML servers supported IP forwarding as of time of the patch. This was implemented in commit 4809f1f80ace9ae87b91453c8887c70f5e098bd0.
|
|
|
|
However, there is now at least one Forge coremod that intends to support IP forwarding. To be able to support Forge with IP forwarding, a way to be able to support the FML token (and any other host data) is needed. This adds a property to the user Game Profile to forward on whether the user is a FML client, along with whether there is any extra data.
|
|
|
|
No breaking changes occur due to this patch.
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
|
|
index 287a0545..7c3e9a29 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
|
|
@@ -7,6 +7,7 @@ import io.netty.buffer.ByteBufAllocator;
|
|
import java.net.InetSocketAddress;
|
|
import java.nio.charset.StandardCharsets;
|
|
import java.util.Locale;
|
|
+import java.util.Arrays; // Waterfall
|
|
import java.util.Queue;
|
|
import java.util.Set;
|
|
import java.util.UUID;
|
|
@@ -110,15 +111,39 @@ public class ServerConnector extends PacketHandler
|
|
String newHost = copiedHandshake.getHost() + "\00" + AddressUtil.sanitizeAddress( user.getAddress() ) + "\00" + user.getUUID();
|
|
|
|
LoginResult profile = user.getPendingConnection().getLoginProfile();
|
|
+
|
|
+ // Handle properties.
|
|
+ net.md_5.bungee.protocol.Property[] properties = new net.md_5.bungee.protocol.Property[0];
|
|
+
|
|
if ( profile != null && profile.getProperties() != null && profile.getProperties().length > 0 )
|
|
{
|
|
- newHost += "\00" + BungeeCord.getInstance().gson.toJson( profile.getProperties() );
|
|
+ properties = profile.getProperties();
|
|
}
|
|
+
|
|
+ if ( user.getForgeClientHandler().isFmlTokenInHandshake() )
|
|
+ {
|
|
+ // Get the current properties and copy them into a slightly bigger array.
|
|
+ net.md_5.bungee.protocol.Property[] newp = Arrays.copyOf( properties, properties.length + 2 );
|
|
+
|
|
+ // Add a new profile property that specifies that this user is a Forge user.
|
|
+ newp[newp.length - 2] = new net.md_5.bungee.protocol.Property( ForgeConstants.FML_LOGIN_PROFILE, "true", null );
|
|
+
|
|
+ // If we do not perform the replacement, then the IP Forwarding code in Spigot et. al. will try to split on this prematurely.
|
|
+ newp[newp.length - 1] = new net.md_5.bungee.protocol.Property( ForgeConstants.EXTRA_DATA, user.getExtraDataInHandshake().replaceAll( "\0", "\1"), "" );
|
|
+
|
|
+ // All done.
|
|
+ properties = newp;
|
|
+ }
|
|
+
|
|
+ // If we touched any properties, then append them
|
|
+ if (properties.length > 0) {
|
|
+ newHost += "\00" + BungeeCord.getInstance().gson.toJson(properties);
|
|
+ }
|
|
+
|
|
copiedHandshake.setHost( newHost );
|
|
} else if ( !user.getExtraDataInHandshake().isEmpty() )
|
|
{
|
|
- // Only restore the extra data if IP forwarding is off.
|
|
- // TODO: Add support for this data with IP forwarding.
|
|
+ // Restore the extra data
|
|
copiedHandshake.setHost( copiedHandshake.getHost() + user.getExtraDataInHandshake() );
|
|
}
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/UserConnection.java b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
|
index c1c73aba..00c88e4d 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
|
@@ -170,8 +170,12 @@ public final class UserConnection implements ProxiedPlayer
|
|
|
|
forgeClientHandler = new ForgeClientHandler( this );
|
|
|
|
+ // No-config FML handshake marker.
|
|
// Set whether the connection has a 1.8 FML marker in the handshake.
|
|
- forgeClientHandler.setFmlTokenInHandshake( this.getPendingConnection().getExtraDataInHandshake().contains( ForgeConstants.FML_HANDSHAKE_TOKEN ) );
|
|
+ if (this.getPendingConnection().getExtraDataInHandshake().contains( ForgeConstants.FML_HANDSHAKE_TOKEN ))
|
|
+ {
|
|
+ forgeClientHandler.setFmlTokenInHandshake( true );
|
|
+ }
|
|
}
|
|
|
|
public void sendPacket(PacketWrapper packet)
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/forge/ForgeConstants.java b/proxy/src/main/java/net/md_5/bungee/forge/ForgeConstants.java
|
|
index 6dca2048..f5253b89 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/forge/ForgeConstants.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/forge/ForgeConstants.java
|
|
@@ -14,6 +14,10 @@ public class ForgeConstants
|
|
public static final String FML_HANDSHAKE_TAG = "FML|HS";
|
|
public static final String FML_REGISTER = "REGISTER";
|
|
|
|
+ // Game profile key
|
|
+ public static final String FML_LOGIN_PROFILE = "forgeClient";
|
|
+ public static final String EXTRA_DATA = "extraData";
|
|
+
|
|
/**
|
|
* The FML 1.8 handshake token.
|
|
*/
|
|
--
|
|
2.42.0
|
|
|