aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches
diff options
context:
space:
mode:
authorHexedHero <[email protected]>2021-08-08 01:42:19 +0100
committerGitHub <[email protected]>2021-08-07 17:42:19 -0700
commitfadeabe9e3ae600af58a3cc70578f05d69b0caee (patch)
tree1f90603188e7a320a648e6df17328e67ea2f3df4 /Spigot-Server-Patches
parent0a2be0cbac730a90d5e601af799fb4d1cfc4e732 (diff)
downloadPaper-fadeabe9e3ae600af58a3cc70578f05d69b0caee.tar.gz
Paper-fadeabe9e3ae600af58a3cc70578f05d69b0caee.zip
Backport "Fix scheduler task ID overflow and duplication issues" (#6261)
Diffstat (limited to 'Spigot-Server-Patches')
-rw-r--r--Spigot-Server-Patches/0762-Backport-Spigot-891-PR.patch96
1 files changed, 96 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0762-Backport-Spigot-891-PR.patch b/Spigot-Server-Patches/0762-Backport-Spigot-891-PR.patch
new file mode 100644
index 0000000000..dd162f9ace
--- /dev/null
+++ b/Spigot-Server-Patches/0762-Backport-Spigot-891-PR.patch
@@ -0,0 +1,96 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Phoenix616 <[email protected]>
+Date: Fri, 23 Jul 2021 19:34:50 +0100
+Subject: [PATCH] Backport Spigot-891 PR
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
+index 0be39dac4b9dd69d7d73d86d64cf1e33e4086e81..3bfb0e2f18d86776d79576e657e0fecefb562ae8 100644
+--- a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
++++ b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
+@@ -15,6 +15,7 @@ import java.util.concurrent.Future;
+ import java.util.concurrent.atomic.AtomicInteger;
+ import java.util.concurrent.atomic.AtomicReference;
+ import java.util.function.Consumer;
++import java.util.function.IntUnaryOperator; // Paper - Backport Spigot-#891
+ import java.util.logging.Level;
+ import com.destroystokyo.paper.ServerSchedulerReportingWrapper;
+ import com.destroystokyo.paper.event.server.ServerExceptionEvent;
+@@ -48,10 +49,26 @@ import org.bukkit.scheduler.BukkitWorker;
+ public class CraftScheduler implements BukkitScheduler {
+
+ static Plugin MINECRAFT = new MinecraftInternalPlugin();
++ // Paper start - Backport Spigot-#891
++ /**
++ * The start ID for the counter.
++ */
++ private static final int START_ID = 1;
++ /**
++ * Increment the {@link #ids} field and reset it to the {@link #START_ID} if it reaches {@link Integer#MAX_VALUE}
++ */
++ private static final IntUnaryOperator INCREMENT_IDS = previous -> {
++ // We reached the end, go back to the start!
++ if (previous == Integer.MAX_VALUE) {
++ return START_ID;
++ }
++ return previous + 1;
++ };
++ // Paper end
+ /**
+ * Counter for IDs. Order doesn't matter, only uniqueness.
+ */
+- private final AtomicInteger ids = new AtomicInteger(1);
++ private final AtomicInteger ids = new AtomicInteger(START_ID); // Paper - Backport Spigot-#891
+ /**
+ * Current head of linked-list. This reference is always stale, {@link CraftTask#next} is the live reference.
+ */
+@@ -70,7 +87,7 @@ public class CraftScheduler implements BukkitScheduler {
+ int value = Long.compare(o1.getNextRun(), o2.getNextRun());
+
+ // If the tasks should run on the same tick they should be run FIFO
+- return value != 0 ? value : Integer.compare(o1.getTaskId(), o2.getTaskId());
++ return value != 0 ? value : Long.compare(o1.getCreatedAt(), o2.getCreatedAt()); // Paper - Backport Spigot-#891
+ }
+ });
+ /**
+@@ -539,7 +556,14 @@ public class CraftScheduler implements BukkitScheduler {
+ }
+
+ private int nextId() {
+- return ids.incrementAndGet();
++ // Paper start - Backport Spigot-#891
++ Validate.isTrue(runners.size() < Integer.MAX_VALUE, "There are already " + Integer.MAX_VALUE + " tasks scheduled! Cannot schedule more.");
++ int id;
++ do {
++ id = ids.updateAndGet(INCREMENT_IDS);
++ } while (runners.containsKey(id)); // Avoid generating duplicate IDs
++ return id;
++ // Paper end
+ }
+
+ void parsePending() { // Paper
+diff --git a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftTask.java b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftTask.java
+index 3c96807e97657502849093e4371e9fef3584a346..8b4c34282f14f17d4efbddfdc63c49110ba068fe 100644
+--- a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftTask.java
++++ b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftTask.java
+@@ -34,6 +34,7 @@ public class CraftTask implements BukkitTask, Runnable { // Spigot
+ public Timing timings; // Paper
+ private final Plugin plugin;
+ private final int id;
++ private final long createdAt = System.nanoTime(); // Paper - Backport Spigot-#891
+
+ CraftTask() {
+ this(null, null, CraftTask.NO_REPEATING, CraftTask.NO_REPEATING);
+@@ -104,6 +105,12 @@ public class CraftTask implements BukkitTask, Runnable { // Spigot
+ } // Paper
+ }
+
++ // Paper start - Backport Spigot-#891
++ long getCreatedAt() {
++ return createdAt;
++ }
++ // paper end
++
+ long getPeriod() {
+ return period;
+ }