aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0699-Buffer-OOB-setBlock-calls.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/server/0699-Buffer-OOB-setBlock-calls.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/server/0699-Buffer-OOB-setBlock-calls.patch')
-rw-r--r--patches/server/0699-Buffer-OOB-setBlock-calls.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/patches/server/0699-Buffer-OOB-setBlock-calls.patch b/patches/server/0699-Buffer-OOB-setBlock-calls.patch
new file mode 100644
index 0000000000..d0e56ca766
--- /dev/null
+++ b/patches/server/0699-Buffer-OOB-setBlock-calls.patch
@@ -0,0 +1,42 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Shane Freeder <[email protected]>
+Date: Sat, 19 Mar 2022 12:12:22 +0000
+Subject: [PATCH] Buffer OOB setBlock calls
+
+lets debug mode throw a trace in order to potentially see where
+such calls are cascading from easier, but, generally, if you see one setBlock
+call, you're gonna see more, and this just potentially causes a flood of logs
+which can cause issues for slower terminals, etc.
+
+We can limit the flood by just allowing one for a single gen region,
+we'll also only gen a trace for the first one, I see no real pressing need
+to generate more, given that that would *massively* negate this patch otherwise
+
+diff --git a/src/main/java/net/minecraft/server/level/WorldGenRegion.java b/src/main/java/net/minecraft/server/level/WorldGenRegion.java
+index 744efc6cdc99f653a1eb9d4f26af8a7c34627f5e..68a6572da2acf2ea2e6996e653a0ffe405846575 100644
+--- a/src/main/java/net/minecraft/server/level/WorldGenRegion.java
++++ b/src/main/java/net/minecraft/server/level/WorldGenRegion.java
+@@ -283,6 +283,7 @@ public class WorldGenRegion implements WorldGenLevel {
+ }
+ }
+
++ private boolean hasSetFarWarned = false; // Paper - Buffer OOB setBlock calls
+ @Override
+ public boolean ensureCanWrite(BlockPos pos) {
+ int i = SectionPos.blockToSectionCoord(pos.getX());
+@@ -302,7 +303,15 @@ public class WorldGenRegion implements WorldGenLevel {
+
+ return true;
+ } else {
++ // Paper start - Buffer OOB setBlock calls
++ if (!hasSetFarWarned) {
+ Util.logAndPauseIfInIde("Detected setBlock in a far chunk [" + i + ", " + j + "], pos: " + String.valueOf(pos) + ", status: " + String.valueOf(this.generatingStatus) + (this.currentlyGenerating == null ? "" : ", currently generating: " + (String) this.currentlyGenerating.get()));
++ hasSetFarWarned = true;
++ if (this.getServer() != null && this.getServer().isDebugging()) {
++ io.papermc.paper.util.TraceUtil.dumpTraceForThread("far setBlock call");
++ }
++ }
++ // Paper end - Buffer OOB setBlock calls
+ return false;
+ }
+ }