2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 6 May 2020 04:53:35 -0400
|
|
|
|
Subject: [PATCH] Optimize Network Manager and add advanced packet support
|
|
|
|
|
|
|
|
Adds ability for 1 packet to bundle other packets to follow it
|
|
|
|
Adds ability for a packet to delay sending more packets until a state is ready.
|
|
|
|
|
|
|
|
Removes synchronization from sending packets
|
|
|
|
Removes processing packet queue off of main thread
|
|
|
|
- for the few cases where it is allowed, order is not necessary nor
|
|
|
|
should it even be happening concurrently in first place (handshaking/login/status)
|
|
|
|
|
|
|
|
Ensures packets sent asynchronously are dispatched on main thread
|
|
|
|
|
|
|
|
This helps ensure safety for ProtocolLib as packet listeners
|
|
|
|
are commonly accessing world state. This will allow you to schedule
|
|
|
|
a packet to be sent async, but itll be dispatched sync for packet
|
|
|
|
listeners to process.
|
|
|
|
|
|
|
|
This should solve some deadlock risks
|
|
|
|
|
|
|
|
Also adds Netty Channel Flush Consolidation to reduce the amount of flushing
|
|
|
|
|
|
|
|
Also avoids spamming closed channel exception by rechecking closed state in dispatch
|
|
|
|
and then catch exceptions and close if they fire.
|
|
|
|
|
|
|
|
Part of this commit was authored by: Spottedleaf
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/network/Connection.java b/src/main/java/net/minecraft/network/Connection.java
|
2021-06-13 18:25:59 +02:00
|
|
|
index 9f0537799a3cae43fb120056b8fe805a4883cc4d..7607bf75968cc32d616e2b44e89901b3681b1131 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/network/Connection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/network/Connection.java
|
2021-06-13 11:41:07 +02:00
|
|
|
@@ -87,6 +87,10 @@ public class Connection extends SimpleChannelInboundHandler<Packet<?>> {
|
2021-06-11 14:02:28 +02:00
|
|
|
public int protocolVersion;
|
|
|
|
public java.net.InetSocketAddress virtualHost;
|
|
|
|
private static boolean enableExplicitFlush = Boolean.getBoolean("paper.explicit-flush");
|
|
|
|
+ // Optimize network
|
|
|
|
+ public boolean isPending = true;
|
|
|
|
+ public boolean queueImmunity = false;
|
|
|
|
+ public ConnectionProtocol protocol;
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
public Connection(PacketFlow side) {
|
2021-06-13 11:41:07 +02:00
|
|
|
@@ -110,6 +114,7 @@ public class Connection extends SimpleChannelInboundHandler<Packet<?>> {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setProtocol(ConnectionProtocol state) {
|
|
|
|
+ protocol = state; // Paper
|
|
|
|
this.channel.attr(Connection.ATTRIBUTE_PROTOCOL).set(state);
|
|
|
|
this.channel.config().setAutoRead(true);
|
|
|
|
Connection.LOGGER.debug("Enabled auto read");
|
2021-06-13 11:41:07 +02:00
|
|
|
@@ -186,19 +191,87 @@ public class Connection extends SimpleChannelInboundHandler<Packet<?>> {
|
2021-06-11 14:02:28 +02:00
|
|
|
Validate.notNull(listener, "packetListener", new Object[0]);
|
|
|
|
this.packetListener = listener;
|
|
|
|
}
|
|
|
|
+ // Paper start
|
2021-06-13 11:41:07 +02:00
|
|
|
+ public net.minecraft.server.level.ServerPlayer getPlayer() {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (packetListener instanceof ServerGamePacketListenerImpl) {
|
|
|
|
+ return ((ServerGamePacketListenerImpl) packetListener).player;
|
|
|
|
+ } else {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ private static class InnerUtil { // Attempt to hide these methods from ProtocolLib so it doesn't accidently pick them up.
|
|
|
|
+ private static java.util.List<Packet> buildExtraPackets(Packet packet) {
|
|
|
|
+ java.util.List<Packet> extra = packet.getExtraPackets();
|
|
|
|
+ if (extra == null || extra.isEmpty()) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+ java.util.List<Packet> ret = new java.util.ArrayList<>(1 + extra.size());
|
|
|
|
+ buildExtraPackets0(extra, ret);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void buildExtraPackets0(java.util.List<Packet> extraPackets, java.util.List<Packet> into) {
|
|
|
|
+ for (Packet extra : extraPackets) {
|
|
|
|
+ into.add(extra);
|
|
|
|
+ java.util.List<Packet> extraExtra = extra.getExtraPackets();
|
|
|
|
+ if (extraExtra != null && !extraExtra.isEmpty()) {
|
|
|
|
+ buildExtraPackets0(extraExtra, into);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper start
|
|
|
|
+ private static boolean canSendImmediate(Connection networkManager, Packet<?> packet) {
|
|
|
|
+ return networkManager.isPending || networkManager.protocol != ConnectionProtocol.PLAY ||
|
2021-06-13 11:41:07 +02:00
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundKeepAlivePacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundChatPacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundCommandSuggestionsPacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundSetTitleTextPacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundSetSubtitleTextPacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundSetActionBarTextPacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundSetTitlesAnimationPacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundClearTitlesPacket ||
|
|
|
|
+ packet instanceof net.minecraft.network.protocol.game.ClientboundBossEventPacket;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
public void send(Packet<?> packet) {
|
|
|
|
this.send(packet, (GenericFutureListener) null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void send(Packet<?> packet, @Nullable GenericFutureListener<? extends Future<? super Void>> callback) {
|
|
|
|
- if (this.isConnected()) {
|
|
|
|
- this.flushQueue();
|
|
|
|
+ // Paper start - handle oversized packets better
|
|
|
|
+ boolean connected = this.isConnected();
|
|
|
|
+ if (!connected && !preparing) {
|
|
|
|
+ return; // Do nothing
|
|
|
|
+ }
|
|
|
|
+ packet.onPacketDispatch(getPlayer());
|
|
|
|
+ if (connected && (InnerUtil.canSendImmediate(this, packet) || (
|
2021-06-13 11:41:07 +02:00
|
|
|
+ net.minecraft.server.MCUtil.isMainThread() && packet.isReady() && this.queue.isEmpty() &&
|
2021-06-11 14:02:28 +02:00
|
|
|
+ (packet.getExtraPackets() == null || packet.getExtraPackets().isEmpty())
|
|
|
|
+ ))) {
|
2021-06-13 18:25:59 +02:00
|
|
|
this.sendPacket(packet, callback);
|
|
|
|
- } else {
|
|
|
|
- this.queue.add(new Connection.PacketHolder(packet, callback));
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return;
|
|
|
|
}
|
|
|
|
+ // write the packets to the queue, then flush - antixray hooks there already
|
|
|
|
+ java.util.List<Packet> extraPackets = InnerUtil.buildExtraPackets(packet);
|
|
|
|
+ boolean hasExtraPackets = extraPackets != null && !extraPackets.isEmpty();
|
|
|
|
+ if (!hasExtraPackets) {
|
|
|
|
+ this.queue.add(new Connection.PacketHolder(packet, callback));
|
|
|
|
+ } else {
|
|
|
|
+ java.util.List<Connection.PacketHolder> packets = new java.util.ArrayList<>(1 + extraPackets.size());
|
|
|
|
+ packets.add(new Connection.PacketHolder(packet, null)); // delay the future listener until the end of the extra packets
|
2021-06-13 11:41:07 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
+ for (int i = 0, len = extraPackets.size(); i < len;) {
|
|
|
|
+ Packet extra = extraPackets.get(i);
|
|
|
|
+ boolean end = ++i == len;
|
|
|
|
+ packets.add(new Connection.PacketHolder(extra, end ? callback : null)); // append listener to the end
|
|
|
|
+ }
|
|
|
|
+ this.queue.addAll(packets); // atomic
|
|
|
|
+ }
|
2021-06-13 11:41:07 +02:00
|
|
|
+ this.flushQueue();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2021-06-13 11:41:07 +02:00
|
|
|
private void sendPacket(Packet<?> packet, @Nullable GenericFutureListener<? extends Future<? super Void>> callback) {
|
|
|
|
@@ -226,33 +299,79 @@ public class Connection extends SimpleChannelInboundHandler<Packet<?>> {
|
|
|
|
this.setProtocol(enumprotocol);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
2021-06-13 11:41:07 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ net.minecraft.server.level.ServerPlayer player = getPlayer();
|
|
|
|
+ if (!isConnected()) {
|
|
|
|
+ packet.onPacketDispatchFinish(player, null);
|
|
|
|
+ return;
|
|
|
|
+ }
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
2021-06-13 11:41:07 +02:00
|
|
|
+ try {
|
|
|
|
+ // Paper end
|
|
|
|
ChannelFuture channelfuture = this.channel.writeAndFlush(packet);
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-13 11:41:07 +02:00
|
|
|
if (genericfuturelistener != null) {
|
|
|
|
channelfuture.addListener(genericfuturelistener);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
2021-06-13 11:41:07 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ if (packet.hasFinishListener()) {
|
|
|
|
+ channelfuture.addListener((ChannelFutureListener) channelFuture -> packet.onPacketDispatchFinish(player, channelFuture));
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
channelfuture.addListener(ChannelFutureListener.FIRE_EXCEPTION_ON_FAILURE);
|
|
|
|
+ // Paper start
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ LOGGER.error("NetworkException: " + player, e);
|
|
|
|
+ disconnect(new net.minecraft.network.chat.TranslatableComponent("disconnect.genericReason", "Internal Exception: " + e.getMessage()));
|
|
|
|
+ packet.onPacketDispatchFinish(player, null);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-13 11:41:07 +02:00
|
|
|
private ConnectionProtocol getCurrentProtocol() {
|
|
|
|
return (ConnectionProtocol) this.channel.attr(Connection.ATTRIBUTE_PROTOCOL).get();
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- private void flushQueue() {
|
|
|
|
- if (this.channel != null && this.channel.isOpen()) {
|
|
|
|
- Queue queue = this.queue;
|
|
|
|
-
|
|
|
|
+ // Paper start - rewrite this to be safer if ran off main thread
|
2021-06-13 11:41:07 +02:00
|
|
|
+ private boolean flushQueue() { // void -> boolean
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (!isConnected()) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
2021-06-13 11:41:07 +02:00
|
|
|
+ if (net.minecraft.server.MCUtil.isMainThread()) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return processQueue();
|
|
|
|
+ } else if (isPending) {
|
|
|
|
+ // Should only happen during login/status stages
|
|
|
|
synchronized (this.queue) {
|
|
|
|
- Connection.PacketHolder networkmanager_queuedpacket;
|
|
|
|
-
|
|
|
|
- while ((networkmanager_queuedpacket = (Connection.PacketHolder) this.queue.poll()) != null) {
|
|
|
|
- this.sendPacket(networkmanager_queuedpacket.packet, networkmanager_queuedpacket.listener);
|
|
|
|
- }
|
|
|
|
+ return this.processQueue();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ private boolean processQueue() {
|
|
|
|
+ if (this.queue.isEmpty()) return true;
|
|
|
|
+ // If we are on main, we are safe here in that nothing else should be processing queue off main anymore
|
|
|
|
+ // But if we are not on main due to login/status, the parent is synchronized on packetQueue
|
|
|
|
+ java.util.Iterator<PacketHolder> iterator = this.queue.iterator();
|
|
|
|
+ while (iterator.hasNext()) {
|
2021-06-13 11:41:07 +02:00
|
|
|
+ PacketHolder queued = iterator.next(); // poll -> peek
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ // Fix NPE (Spigot bug caused by handleDisconnection())
|
|
|
|
+ if (queued == null) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
|
2021-06-13 11:41:07 +02:00
|
|
|
+ Packet<?> packet = queued.packet;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (!packet.isReady()) {
|
|
|
|
+ return false;
|
|
|
|
+ } else {
|
|
|
|
+ iterator.remove();
|
2021-06-13 11:41:07 +02:00
|
|
|
+ this.sendPacket(packet, queued.listener);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
+ return true;
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
public void tick() {
|
2021-06-13 11:41:07 +02:00
|
|
|
this.flushQueue();
|
|
|
|
@@ -289,9 +408,22 @@ public class Connection extends SimpleChannelInboundHandler<Packet<?>> {
|
2021-06-11 14:02:28 +02:00
|
|
|
return this.address;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ public void clearPacketQueue() {
|
2021-06-13 11:41:07 +02:00
|
|
|
+ net.minecraft.server.level.ServerPlayer player = getPlayer();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ queue.forEach(queuedPacket -> {
|
2021-06-13 11:41:07 +02:00
|
|
|
+ Packet<?> packet = queuedPacket.packet;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (packet.hasFinishListener()) {
|
|
|
|
+ packet.onPacketDispatchFinish(player, null);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ queue.clear();
|
2021-06-13 11:41:07 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2021-06-11 14:02:28 +02:00
|
|
|
public void disconnect(Component disconnectReason) {
|
|
|
|
// Spigot Start
|
|
|
|
this.preparing = false;
|
|
|
|
+ clearPacketQueue(); // Paper
|
|
|
|
// Spigot End
|
|
|
|
if (this.channel.isOpen()) {
|
|
|
|
this.channel.close(); // We can't wait as this may be called from an event loop.
|
2021-06-13 11:41:07 +02:00
|
|
|
@@ -409,7 +541,7 @@ public class Connection extends SimpleChannelInboundHandler<Packet<?>> {
|
2021-06-11 14:02:28 +02:00
|
|
|
public void handleDisconnection() {
|
|
|
|
if (this.channel != null && !this.channel.isOpen()) {
|
|
|
|
if (this.disconnectionHandled) {
|
|
|
|
- Connection.LOGGER.warn("handleDisconnection() called twice");
|
2021-06-13 11:41:07 +02:00
|
|
|
+ //Connection.LOGGER.warn("handleDisconnection() called twice"); // Paper - Do not log useless message
|
2021-06-11 14:02:28 +02:00
|
|
|
} else {
|
|
|
|
this.disconnectionHandled = true;
|
|
|
|
if (this.getDisconnectedReason() != null) {
|
2021-06-13 11:41:07 +02:00
|
|
|
@@ -417,7 +549,7 @@ public class Connection extends SimpleChannelInboundHandler<Packet<?>> {
|
2021-06-11 14:02:28 +02:00
|
|
|
} else if (this.getPacketListener() != null) {
|
2021-06-13 11:41:07 +02:00
|
|
|
this.getPacketListener().onDisconnect(new TranslatableComponent("multiplayer.disconnect.generic"));
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
- this.queue.clear(); // Free up packet queue.
|
|
|
|
+ clearPacketQueue(); // Paper
|
|
|
|
// Paper start - Add PlayerConnectionCloseEvent
|
|
|
|
final PacketListener packetListener = this.getPacketListener();
|
|
|
|
if (packetListener instanceof ServerGamePacketListenerImpl) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/network/protocol/Packet.java b/src/main/java/net/minecraft/network/protocol/Packet.java
|
2021-06-13 11:41:07 +02:00
|
|
|
index 74bfe0d3942259c45702b099efdc4e101a4e3022..e8fcd56906d26f6dc87959e32c4c7c78cfea9658 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/network/protocol/Packet.java
|
|
|
|
+++ b/src/main/java/net/minecraft/network/protocol/Packet.java
|
2021-06-13 11:41:07 +02:00
|
|
|
@@ -9,6 +9,19 @@ public interface Packet<T extends PacketListener> {
|
2021-06-11 14:02:28 +02:00
|
|
|
void handle(T listener);
|
|
|
|
|
|
|
|
// Paper start
|
|
|
|
+ /**
|
|
|
|
+ * @param player Null if not at PLAY stage yet
|
|
|
|
+ */
|
2021-06-13 11:41:07 +02:00
|
|
|
+ default void onPacketDispatch(@javax.annotation.Nullable net.minecraft.server.level.ServerPlayer player) {}
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @param player Null if not at PLAY stage yet
|
|
|
|
+ * @param future Can be null if packet was cancelled
|
|
|
|
+ */
|
2021-06-13 11:41:07 +02:00
|
|
|
+ default void onPacketDispatchFinish(@javax.annotation.Nullable net.minecraft.server.level.ServerPlayer player, @javax.annotation.Nullable io.netty.channel.ChannelFuture future) {}
|
2021-06-11 14:02:28 +02:00
|
|
|
+ default boolean hasFinishListener() { return false; }
|
|
|
|
+ default boolean isReady() { return true; }
|
|
|
|
+ default java.util.List<Packet> getExtraPackets() { return null; }
|
2021-06-13 11:41:07 +02:00
|
|
|
default boolean packetTooLarge(net.minecraft.network.Connection manager) {
|
2021-06-11 14:02:28 +02:00
|
|
|
return false;
|
|
|
|
}
|