2022-07-28 03:57:50 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2024-02-13 21:52:00 +00:00
|
|
|
From: ayunami2000 <spwilliamsiam@gmail.com>
|
2024-01-26 05:52:22 +00:00
|
|
|
Date: Thu, 25 Jan 2024 23:48:51 -0600
|
2023-07-01 20:21:13 +00:00
|
|
|
Subject: [PATCH] Block server-side chunkbans
|
2022-07-28 03:57:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/network/PacketEncoder.java b/src/main/java/net/minecraft/network/PacketEncoder.java
|
2024-04-16 05:12:25 +00:00
|
|
|
index 96d5448019d53ac3575e209c1c5c223a62a2638d..d0cfc4fc00d45c91380d2d794ca816db74d40266 100644
|
2022-07-28 03:57:50 +00:00
|
|
|
--- a/src/main/java/net/minecraft/network/PacketEncoder.java
|
|
|
|
+++ b/src/main/java/net/minecraft/network/PacketEncoder.java
|
2024-01-26 05:52:22 +00:00
|
|
|
@@ -7,8 +7,17 @@ import io.netty.handler.codec.MessageToByteEncoder;
|
2023-10-15 22:45:13 +00:00
|
|
|
import io.netty.util.Attribute;
|
|
|
|
import io.netty.util.AttributeKey;
|
2022-07-28 03:57:50 +00:00
|
|
|
import java.io.IOException;
|
2024-01-26 05:52:22 +00:00
|
|
|
+import java.util.Collections;
|
|
|
|
+
|
|
|
|
+import net.minecraft.ChatFormatting;
|
|
|
|
+import net.minecraft.core.NonNullList;
|
|
|
|
+import net.minecraft.nbt.CompoundTag;
|
|
|
|
+import net.minecraft.network.chat.Component;
|
|
|
|
+import net.minecraft.network.chat.SignedMessageBody;
|
2022-07-28 03:57:50 +00:00
|
|
|
import net.minecraft.network.protocol.Packet;
|
2024-01-26 05:52:22 +00:00
|
|
|
+import net.minecraft.network.protocol.game.*;
|
2022-07-28 03:57:50 +00:00
|
|
|
import net.minecraft.util.profiling.jfr.JvmProfiler;
|
2024-01-26 05:52:22 +00:00
|
|
|
+import net.minecraft.world.item.ItemStack;
|
2022-07-28 03:57:50 +00:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
|
|
|
public class PacketEncoder extends MessageToByteEncoder<Packet<?>> {
|
2024-01-26 05:52:22 +00:00
|
|
|
@@ -19,6 +28,23 @@ public class PacketEncoder extends MessageToByteEncoder<Packet<?>> {
|
2023-10-15 22:45:13 +00:00
|
|
|
this.codecKey = protocolKey;
|
2023-04-08 19:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Scissors start
|
2023-10-15 22:45:13 +00:00
|
|
|
+ private int tryWrite(Packet packet, FriendlyByteBuf friendlyByteBuf, ChannelHandlerContext channelHandlerContext, int i) {
|
2023-04-08 19:10:07 +00:00
|
|
|
+ friendlyByteBuf.writeVarInt(i);
|
2023-10-15 22:45:13 +00:00
|
|
|
+ friendlyByteBuf.adventure$locale = channelHandlerContext.channel().attr(io.papermc.paper.adventure.PaperAdventure.LOCALE_ATTRIBUTE).get(); // Paper
|
2023-04-08 19:10:07 +00:00
|
|
|
+
|
|
|
|
+ int j = friendlyByteBuf.writerIndex();
|
|
|
|
+ packet.write(friendlyByteBuf);
|
|
|
|
+ int k = friendlyByteBuf.writerIndex() - j;
|
|
|
|
+ int packetLength = friendlyByteBuf.readableBytes();
|
2023-10-15 22:45:13 +00:00
|
|
|
+ if (packetLength > MAX_PACKET_SIZE) {
|
|
|
|
+ throw new PacketTooLargeException(packet, this.codecKey, packetLength);
|
2023-04-08 19:10:07 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return k;
|
|
|
|
+ }
|
|
|
|
+ // Scissors end
|
|
|
|
+
|
|
|
|
protected void encode(ChannelHandlerContext channelHandlerContext, Packet<?> packet, ByteBuf byteBuf) throws Exception {
|
2023-10-15 22:45:13 +00:00
|
|
|
Attribute<ConnectionProtocol.CodecData<?>> attribute = channelHandlerContext.channel().attr(this.codecKey);
|
|
|
|
ConnectionProtocol.CodecData<?> codecData = attribute.get();
|
2024-04-16 05:12:25 +00:00
|
|
|
@@ -34,45 +60,58 @@ public class PacketEncoder extends MessageToByteEncoder<Packet<?>> {
|
2024-01-26 05:52:22 +00:00
|
|
|
throw new IOException("Can't serialize unregistered packet");
|
|
|
|
} else {
|
|
|
|
FriendlyByteBuf friendlyByteBuf = new FriendlyByteBuf(byteBuf);
|
|
|
|
- friendlyByteBuf.writeVarInt(i);
|
|
|
|
- friendlyByteBuf.adventure$locale = channelHandlerContext.channel().attr(io.papermc.paper.adventure.PaperAdventure.LOCALE_ATTRIBUTE).get(); // Paper - adventure; set player's locale
|
2023-06-09 00:58:46 +00:00
|
|
|
|
2023-04-08 19:10:07 +00:00
|
|
|
+ // Scissors start
|
|
|
|
+ int k;
|
|
|
|
try {
|
|
|
|
- int j = friendlyByteBuf.writerIndex();
|
|
|
|
- packet.write(friendlyByteBuf);
|
|
|
|
- int k = friendlyByteBuf.writerIndex() - j;
|
2024-01-26 05:52:22 +00:00
|
|
|
- if (false && k > 8388608) { // Paper - Handle large packets disconnecting client; disable
|
2023-03-16 03:57:35 +00:00
|
|
|
- throw new IllegalArgumentException("Packet too big (is " + k + ", should be less than 8388608): " + packet);
|
2023-04-08 19:10:07 +00:00
|
|
|
- }
|
2023-10-15 22:45:13 +00:00
|
|
|
-
|
|
|
|
- JvmProfiler.INSTANCE.onPacketSent(codecData.protocol(), i, channelHandlerContext.channel().remoteAddress(), k);
|
|
|
|
+ k = this.tryWrite(packet, friendlyByteBuf, channelHandlerContext, i);
|
|
|
|
} catch (Throwable var13) {
|
2023-11-05 02:36:47 +00:00
|
|
|
- // Paper start - Give proper error message
|
|
|
|
- String packetName = io.papermc.paper.util.ObfHelper.INSTANCE.deobfClassName(packet.getClass().getName());
|
|
|
|
- if (packetName.contains(".")) {
|
|
|
|
- packetName = packetName.substring(packetName.lastIndexOf(".") + 1);
|
2024-04-16 05:12:25 +00:00
|
|
|
+ packet = capPacket(packet, i);
|
|
|
|
+ if (packet == null) {
|
|
|
|
+ throw new SkipPacketException(new IllegalArgumentException("Packet too big: " + packet));
|
|
|
|
}
|
2023-11-05 02:36:47 +00:00
|
|
|
-
|
|
|
|
- LOGGER.error("Packet encoding of packet {} (ID: {}) threw (skippable? {})", packetName, i, packet.isSkippable(), var13);
|
|
|
|
- // Paper end
|
2022-07-28 03:57:50 +00:00
|
|
|
- if (packet.isSkippable()) {
|
2023-10-15 22:45:13 +00:00
|
|
|
- throw new SkipPacketException(var13);
|
2023-11-05 02:36:47 +00:00
|
|
|
- }
|
2023-10-15 22:45:13 +00:00
|
|
|
-
|
|
|
|
- throw var13;
|
|
|
|
- } finally {
|
2024-01-26 05:52:22 +00:00
|
|
|
- // Paper start - Handle large packets disconnecting client
|
2023-10-15 22:45:13 +00:00
|
|
|
- int packetLength = friendlyByteBuf.readableBytes();
|
|
|
|
- if (packetLength > MAX_PACKET_SIZE) {
|
|
|
|
- throw new PacketTooLargeException(packet, this.codecKey, packetLength);
|
2024-04-16 05:12:25 +00:00
|
|
|
- }
|
2024-01-26 05:52:22 +00:00
|
|
|
- // Paper end - Handle large packets disconnecting client
|
2023-10-15 22:45:13 +00:00
|
|
|
- ProtocolSwapHandler.swapProtocolIfNeeded(attribute, packet);
|
2023-04-08 19:10:07 +00:00
|
|
|
+ friendlyByteBuf.clear();
|
2023-10-15 22:45:13 +00:00
|
|
|
+ k = this.tryWrite(packet, friendlyByteBuf, channelHandlerContext, i);
|
2022-07-28 03:57:50 +00:00
|
|
|
}
|
2023-10-15 22:45:13 +00:00
|
|
|
+ JvmProfiler.INSTANCE.onPacketSent(codecData.protocol(), i, channelHandlerContext.channel().remoteAddress(), k);
|
|
|
|
+ ProtocolSwapHandler.swapProtocolIfNeeded(attribute, packet);
|
2023-04-08 19:10:07 +00:00
|
|
|
+ // Scissors end
|
2022-07-28 03:57:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Scissors start
|
2023-06-09 00:58:46 +00:00
|
|
|
+ private static Packet capPacket(Packet packet, int i) {
|
|
|
|
+ if (packet instanceof ClientboundBlockEntityDataPacket blockEntityDataPacket) {
|
2022-07-28 03:57:50 +00:00
|
|
|
+ packet = new ClientboundBlockEntityDataPacket(blockEntityDataPacket.getPos(), blockEntityDataPacket.getType(), new CompoundTag());
|
2023-06-09 00:58:46 +00:00
|
|
|
+ } else if (packet instanceof ClientboundLevelChunkPacketData chunkPacket) {
|
2022-07-28 03:57:50 +00:00
|
|
|
+ chunkPacket.clearNBT();
|
2023-06-09 00:58:46 +00:00
|
|
|
+ } else if (packet instanceof ClientboundContainerSetContentPacket containerSetContentPacket) {
|
2023-04-08 19:10:07 +00:00
|
|
|
+ packet = new ClientboundContainerSetContentPacket(containerSetContentPacket.getContainerId(), containerSetContentPacket.getStateId(), NonNullList.create(), ItemStack.EMPTY);
|
2023-06-09 00:58:46 +00:00
|
|
|
+ } else if (packet instanceof ClientboundSetEquipmentPacket setEquipmentPacket) {
|
2023-04-08 19:10:07 +00:00
|
|
|
+ packet = new ClientboundSetEquipmentPacket(setEquipmentPacket.getEntity(), Collections.emptyList());
|
2023-06-09 00:58:46 +00:00
|
|
|
+ } else if (packet instanceof ClientboundContainerSetSlotPacket containerSetSlotPacket) {
|
2023-04-08 19:10:07 +00:00
|
|
|
+ packet = new ClientboundContainerSetSlotPacket(containerSetSlotPacket.getContainerId(), containerSetSlotPacket.getStateId(), containerSetSlotPacket.getSlot(), ItemStack.EMPTY);
|
2023-06-09 00:58:46 +00:00
|
|
|
+ } else if (packet instanceof ClientboundMapItemDataPacket mapItemDataPacket) {
|
2022-07-28 03:57:50 +00:00
|
|
|
+ packet = new ClientboundMapItemDataPacket(mapItemDataPacket.getMapId(), mapItemDataPacket.getScale(), mapItemDataPacket.isLocked(), null, null);
|
2023-06-09 00:58:46 +00:00
|
|
|
+ } else if (packet instanceof ClientboundPlayerChatPacket playerChatPacket) {
|
2023-04-08 19:10:07 +00:00
|
|
|
+ final SignedMessageBody.Packed body = playerChatPacket.body();
|
|
|
|
+ packet = new ClientboundPlayerChatPacket(playerChatPacket.sender(), // Not sending this packet results in a kick when someone says something.
|
|
|
|
+ playerChatPacket.index(),
|
|
|
|
+ playerChatPacket.signature(),
|
|
|
|
+ playerChatPacket.body(),
|
|
|
|
+ Component.empty().append("** Message too large **").withStyle(ChatFormatting.RED),
|
|
|
|
+ playerChatPacket.filterMask(),
|
|
|
|
+ playerChatPacket.chatType()
|
|
|
|
+ );
|
2023-06-09 00:58:46 +00:00
|
|
|
+ } else {
|
2023-04-08 19:10:07 +00:00
|
|
|
+ return null;
|
2022-07-28 03:57:50 +00:00
|
|
|
+ }
|
2023-04-08 19:10:07 +00:00
|
|
|
+
|
|
|
|
+ return packet;
|
2022-07-28 03:57:50 +00:00
|
|
|
+ }
|
|
|
|
+ // Scissors end
|
|
|
|
+
|
|
|
|
// Paper start
|
2023-04-29 02:43:33 +00:00
|
|
|
private static int MAX_PACKET_SIZE = 8388608;
|
2022-07-28 03:57:50 +00:00
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket.java b/src/main/java/net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket.java
|
2023-04-08 19:10:07 +00:00
|
|
|
index 3944852921335c78a04a9dc301882ab5b152b1ed..96ee53c7cc862e059328c5cdf5e07f309df6a79e 100644
|
2022-07-28 03:57:50 +00:00
|
|
|
--- a/src/main/java/net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket.java
|
|
|
|
+++ b/src/main/java/net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket.java
|
2023-04-08 19:10:07 +00:00
|
|
|
@@ -24,7 +24,7 @@ public class ClientboundBlockEntityDataPacket implements Packet<ClientGamePacket
|
2022-07-28 03:57:50 +00:00
|
|
|
return create(blockEntity, BlockEntity::getUpdateTag);
|
|
|
|
}
|
|
|
|
|
|
|
|
- private ClientboundBlockEntityDataPacket(BlockPos pos, BlockEntityType<?> blockEntityType, CompoundTag nbt) {
|
2023-04-08 19:10:07 +00:00
|
|
|
+ public ClientboundBlockEntityDataPacket(BlockPos pos, BlockEntityType<?> blockEntityType, CompoundTag nbt) { // Scissors - private -> public
|
2022-07-28 03:57:50 +00:00
|
|
|
this.pos = pos;
|
|
|
|
this.type = blockEntityType;
|
|
|
|
this.tag = nbt.isEmpty() ? null : nbt;
|
|
|
|
diff --git a/src/main/java/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData.java b/src/main/java/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData.java
|
2024-04-16 05:12:25 +00:00
|
|
|
index 76bde683d193b37e563a67c1c7b9bdcf17d64524..185aa88ff28e6f3e3314abe19dff88609a47334e 100644
|
2022-07-28 03:57:50 +00:00
|
|
|
--- a/src/main/java/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData.java
|
|
|
|
+++ b/src/main/java/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData.java
|
2023-06-09 00:58:46 +00:00
|
|
|
@@ -33,6 +33,13 @@ public class ClientboundLevelChunkPacketData {
|
2022-07-28 03:57:50 +00:00
|
|
|
}
|
2024-01-26 05:52:22 +00:00
|
|
|
// Paper end - Handle oversized block entities in chunks
|
2022-07-28 03:57:50 +00:00
|
|
|
|
|
|
|
+ // Scissors start
|
2023-06-09 00:58:46 +00:00
|
|
|
+ public void clearNBT() {
|
2022-07-28 03:57:50 +00:00
|
|
|
+ this.blockEntitiesData.clear();
|
|
|
|
+ this.extraPackets.clear();
|
|
|
|
+ }
|
|
|
|
+ // Scissors end
|
|
|
|
+
|
2023-06-09 06:24:06 +00:00
|
|
|
// Paper start - Anti-Xray - Add chunk packet info
|
|
|
|
@Deprecated @io.papermc.paper.annotation.DoNotUse public ClientboundLevelChunkPacketData(LevelChunk chunk) { this(chunk, null); }
|
|
|
|
public ClientboundLevelChunkPacketData(LevelChunk chunk, com.destroystokyo.paper.antixray.ChunkPacketInfo<net.minecraft.world.level.block.state.BlockState> chunkPacketInfo) {
|
2023-06-21 04:16:57 +00:00
|
|
|
@@ -58,6 +65,7 @@ public class ClientboundLevelChunkPacketData {
|
2024-01-26 05:52:22 +00:00
|
|
|
int totalTileEntities = 0; // Paper - Handle oversized block entities in chunks
|
2023-06-21 04:16:57 +00:00
|
|
|
|
2024-04-16 05:12:25 +00:00
|
|
|
for (Entry<BlockPos, BlockEntity> entry2 : chunk.getBlockEntities().entrySet()) {
|
2023-06-21 04:16:57 +00:00
|
|
|
+ if (this.extraPackets.size() > 50) break; // Scissors - Limit extraPackets size
|
2024-01-26 05:52:22 +00:00
|
|
|
// Paper start - Handle oversized block entities in chunks
|
2023-06-21 04:16:57 +00:00
|
|
|
if (++totalTileEntities > TE_LIMIT) {
|
|
|
|
var packet = entry2.getValue().getUpdatePacket();
|