2018-09-01 00:56:57 +02:00
|
|
|
From 564fbb85dd3c175df607e688011c4a9dbf82c71f Mon Sep 17 00:00:00 2001
|
2018-03-30 19:00:01 +02:00
|
|
|
From: Minecrell <minecrell@minecrell.net>
|
|
|
|
Date: Wed, 11 Oct 2017 18:22:50 +0200
|
2018-07-13 09:43:56 +02:00
|
|
|
Subject: [PATCH] Make legacy ping handler more reliable
|
2018-03-30 19:00:01 +02:00
|
|
|
|
|
|
|
The Minecraft server often fails to respond to old ("legacy") pings
|
|
|
|
from old Minecraft versions using the protocol used before the switch
|
|
|
|
to Netty in Minecraft 1.7.
|
|
|
|
|
|
|
|
Due to packet fragmentation[1], we might not have all needed bytes
|
|
|
|
available when the LegacyPingHandler is called. In this case, it will
|
|
|
|
run into an error, remove the handler and continue using the modern
|
|
|
|
protocol.
|
|
|
|
|
|
|
|
This is unlikely to happen for the first two revisions of the legacy
|
|
|
|
ping protocol (used in Minecraft 1.5.x and older) since the request
|
|
|
|
consists of only one or two bytes, but happens frequently for the
|
|
|
|
last/third revision introduced in Minecraft 1.6.
|
|
|
|
|
|
|
|
It has much larger, variable packet sizes due to the inclusion of
|
|
|
|
the virtual host (the hostname/port used to connect to the server).
|
|
|
|
|
|
|
|
The solution[2] is simple: If we find more than two matching bytes,
|
|
|
|
we buffer the remaining bytes until we have enough to fully read and
|
|
|
|
respond to the request.
|
|
|
|
|
|
|
|
[1]: https://netty.io/wiki/user-guide-for-4.x.html#wiki-h3-11
|
|
|
|
[2]: https://netty.io/wiki/user-guide-for-4.x.html#wiki-h4-13
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/LegacyPingHandler.java b/src/main/java/net/minecraft/server/LegacyPingHandler.java
|
2018-09-01 00:56:57 +02:00
|
|
|
index 5691d0aeaf..aafca9c9c4 100644
|
2018-03-30 19:00:01 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/LegacyPingHandler.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/LegacyPingHandler.java
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -13,6 +13,7 @@ import org.apache.logging.log4j.Logger;
|
|
|
|
public class LegacyPingHandler extends ChannelInboundHandlerAdapter {
|
2018-03-30 19:00:01 +02:00
|
|
|
private static final Logger a = LogManager.getLogger();
|
|
|
|
private final ServerConnection b;
|
|
|
|
+ private ByteBuf buf; // Paper
|
|
|
|
|
|
|
|
public LegacyPingHandler(ServerConnection serverconnection) {
|
|
|
|
this.b = serverconnection;
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -20,6 +21,16 @@ public class LegacyPingHandler extends ChannelInboundHandlerAdapter {
|
2018-03-30 19:00:01 +02:00
|
|
|
|
|
|
|
public void channelRead(ChannelHandlerContext channelhandlercontext, Object object) throws Exception {
|
2018-09-01 00:56:57 +02:00
|
|
|
ByteBuf bytebuf = (ByteBuf)object;
|
2018-03-30 19:00:01 +02:00
|
|
|
+ // Paper start - Make legacy ping handler more reliable
|
|
|
|
+ if (this.buf != null) {
|
|
|
|
+ try {
|
|
|
|
+ readLegacy1_6(channelhandlercontext, bytebuf);
|
|
|
|
+ } finally {
|
|
|
|
+ bytebuf.release();
|
|
|
|
+ }
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
bytebuf.markReaderIndex();
|
|
|
|
boolean flag = true;
|
|
|
|
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -44,6 +55,10 @@ public class LegacyPingHandler extends ChannelInboundHandlerAdapter {
|
|
|
|
this.a(channelhandlercontext, this.a(s));
|
|
|
|
break;
|
|
|
|
default:
|
2018-03-30 19:00:01 +02:00
|
|
|
+ // Paper start - Replace with improved version below
|
|
|
|
+ if (bytebuf.readUnsignedByte() != 0x01 || bytebuf.readUnsignedByte() != 0xFA) return;
|
|
|
|
+ readLegacy1_6(channelhandlercontext, bytebuf);
|
|
|
|
+ /*
|
2018-09-01 00:56:57 +02:00
|
|
|
boolean flag1 = bytebuf.readUnsignedByte() == 1;
|
|
|
|
flag1 = flag1 & bytebuf.readUnsignedByte() == 250;
|
|
|
|
flag1 = flag1 & "MC|PingHost".equals(new String(bytebuf.readBytes(bytebuf.readShort() * 2).array(), StandardCharsets.UTF_16BE));
|
|
|
|
@@ -65,6 +80,7 @@ public class LegacyPingHandler extends ChannelInboundHandlerAdapter {
|
|
|
|
} finally {
|
|
|
|
bytebuf1.release();
|
|
|
|
}
|
|
|
|
+ */ // Paper end- end commenting out
|
2018-07-18 20:55:52 +02:00
|
|
|
}
|
2018-03-30 19:00:01 +02:00
|
|
|
|
2018-09-01 00:56:57 +02:00
|
|
|
bytebuf.release();
|
|
|
|
@@ -84,6 +100,90 @@ public class LegacyPingHandler extends ChannelInboundHandlerAdapter {
|
2018-03-30 19:00:01 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
2018-07-13 09:43:56 +02:00
|
|
|
+ private static String readLegacyString(ByteBuf buf) {
|
|
|
|
+ int size = buf.readShort() * Character.BYTES;
|
|
|
|
+ if (!buf.isReadable(size)) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ String result = buf.toString(buf.readerIndex(), size, StandardCharsets.UTF_16BE);
|
|
|
|
+ buf.skipBytes(size); // toString doesn't increase readerIndex automatically
|
|
|
|
+ return result;
|
|
|
|
+ }
|
|
|
|
+
|
2018-03-30 19:00:01 +02:00
|
|
|
+ private void readLegacy1_6(ChannelHandlerContext ctx, ByteBuf part) {
|
|
|
|
+ ByteBuf buf = this.buf;
|
|
|
|
+
|
|
|
|
+ if (buf == null) {
|
|
|
|
+ this.buf = buf = ctx.alloc().buffer();
|
|
|
|
+ buf.markReaderIndex();
|
|
|
|
+ } else {
|
|
|
|
+ buf.resetReaderIndex();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ buf.writeBytes(part);
|
|
|
|
+
|
2018-07-13 09:43:56 +02:00
|
|
|
+ if (!buf.isReadable(Short.BYTES + Short.BYTES + Byte.BYTES + Short.BYTES + Integer.BYTES)) {
|
2018-03-30 19:00:01 +02:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
2018-07-13 09:43:56 +02:00
|
|
|
+ String s = readLegacyString(buf);
|
|
|
|
+ if (s == null) {
|
2018-03-30 19:00:01 +02:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
2018-07-13 09:43:56 +02:00
|
|
|
+ if (!s.equals("MC|PingHost")) {
|
2018-03-30 19:00:01 +02:00
|
|
|
+ removeHandler(ctx);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
2018-07-13 09:43:56 +02:00
|
|
|
+ if (!buf.isReadable(Short.BYTES) || !buf.isReadable(buf.readShort())) {
|
2018-03-30 19:00:01 +02:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ MinecraftServer server = this.b.d();
|
|
|
|
+ int protocolVersion = buf.readByte();
|
2018-07-13 09:43:56 +02:00
|
|
|
+ String host = readLegacyString(buf);
|
|
|
|
+ if (host == null) {
|
|
|
|
+ removeHandler(ctx);
|
|
|
|
+ return;
|
|
|
|
+ }
|
2018-03-30 19:00:01 +02:00
|
|
|
+ int port = buf.readInt();
|
|
|
|
+
|
|
|
|
+ if (buf.isReadable()) {
|
|
|
|
+ removeHandler(ctx);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ buf.release();
|
|
|
|
+ this.buf = null;
|
|
|
|
+
|
|
|
|
+ a.debug("Ping: (1.6) from {}", ctx.channel().remoteAddress());
|
|
|
|
+
|
|
|
|
+ String response = String.format("\u00a71\u0000%d\u0000%s\u0000%s\u0000%d\u0000%d",
|
|
|
|
+ Byte.MAX_VALUE, server.getVersion(), server.getMotd(), server.getPlayerCount(), server.getMaxPlayers());
|
|
|
|
+ this.a(ctx, this.a(response));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void removeHandler(ChannelHandlerContext ctx) {
|
|
|
|
+ ByteBuf buf = this.buf;
|
|
|
|
+ this.buf = null;
|
|
|
|
+
|
|
|
|
+ buf.resetReaderIndex();
|
2018-07-13 09:43:56 +02:00
|
|
|
+ ctx.pipeline().remove(this);
|
2018-03-30 19:00:01 +02:00
|
|
|
+ ctx.fireChannelRead(buf);
|
|
|
|
+ }
|
2018-07-13 09:43:56 +02:00
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void handlerRemoved(ChannelHandlerContext ctx) {
|
|
|
|
+ if (this.buf != null) {
|
|
|
|
+ this.buf.release();
|
|
|
|
+ this.buf = null;
|
|
|
|
+ }
|
|
|
|
+ }
|
2018-03-30 19:00:01 +02:00
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
private void a(ChannelHandlerContext channelhandlercontext, ByteBuf bytebuf) {
|
|
|
|
channelhandlercontext.pipeline().firstContext().writeAndFlush(bytebuf).addListener(ChannelFutureListener.CLOSE);
|
|
|
|
}
|
|
|
|
--
|
2018-06-30 07:40:52 +02:00
|
|
|
2.18.0
|
2018-03-30 19:00:01 +02:00
|
|
|
|