2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 11 Jul 2020 03:54:28 -0400
|
|
|
|
Subject: [PATCH] Thread Safe Vanilla Command permission checking
|
|
|
|
|
|
|
|
Datapacks check this on load and are built concurrently. This was breaking them badly due
|
|
|
|
to race conditions.
|
|
|
|
|
|
|
|
Plus, .canUse we want to be safe for async anyways.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/mojang/brigadier/tree/CommandNode.java b/src/main/java/com/mojang/brigadier/tree/CommandNode.java
|
2024-01-21 19:37:09 +01:00
|
|
|
index d8142624f9f3a5909e7cc5665f1629a1a67dd302..b02fb15c98ab873fa78635d7a23706ddff8cc94d 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/mojang/brigadier/tree/CommandNode.java
|
|
|
|
+++ b/src/main/java/com/mojang/brigadier/tree/CommandNode.java
|
2022-08-07 01:22:51 +02:00
|
|
|
@@ -75,10 +75,10 @@ public abstract class CommandNode<S> implements Comparable<CommandNode<S>> {
|
2021-06-11 14:02:28 +02:00
|
|
|
public synchronized boolean canUse(final S source) {
|
|
|
|
if (source instanceof CommandSourceStack) {
|
|
|
|
try {
|
|
|
|
- ((CommandSourceStack) source).currentCommand = this;
|
2024-01-20 23:13:41 +01:00
|
|
|
+ ((CommandSourceStack) source).currentCommand.put(Thread.currentThread(), this); // Paper - Thread Safe Vanilla Command permission checking
|
2021-06-14 11:46:59 +02:00
|
|
|
return this.requirement.test(source);
|
2021-06-11 14:02:28 +02:00
|
|
|
} finally {
|
|
|
|
- ((CommandSourceStack) source).currentCommand = null;
|
2024-01-20 23:13:41 +01:00
|
|
|
+ ((CommandSourceStack) source).currentCommand.remove(Thread.currentThread()); // Paper - Thread Safe Vanilla Command permission checking
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
diff --git a/src/main/java/net/minecraft/commands/CommandSourceStack.java b/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
2024-01-23 12:06:27 +01:00
|
|
|
index 0f98345f8adc6e9bf7fb2dc9ce4eba59a33ded61..907bc9d84dbc98427384cf529bfde4b09d8ce8ca 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
|
|
|
+++ b/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -64,7 +64,7 @@ public class CommandSourceStack implements ExecutionCommandSource<CommandSourceS
|
|
|
|
private final Vec2 rotation;
|
2022-06-08 07:46:52 +02:00
|
|
|
private final CommandSigningContext signingContext;
|
2022-07-27 22:46:05 +02:00
|
|
|
private final TaskChainer chatMessageChainer;
|
2021-06-11 14:02:28 +02:00
|
|
|
- public volatile CommandNode currentCommand; // CraftBukkit
|
2024-01-20 23:13:41 +01:00
|
|
|
+ public java.util.Map<Thread, CommandNode> currentCommand = new java.util.concurrent.ConcurrentHashMap<>(); // CraftBukkit // Paper - Thread Safe Vanilla Command permission checking
|
2024-01-13 21:31:02 +01:00
|
|
|
public boolean bypassSelectorPermissions = false; // Paper - add bypass for selector permissions
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-07-07 08:52:40 +02:00
|
|
|
public CommandSourceStack(CommandSource output, Vec3 pos, Vec2 rot, ServerLevel world, int level, String name, Component displayName, MinecraftServer server, @Nullable Entity entity) {
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -193,9 +193,11 @@ public class CommandSourceStack implements ExecutionCommandSource<CommandSourceS
|
2021-06-11 14:02:28 +02:00
|
|
|
@Override
|
|
|
|
public boolean hasPermission(int level) {
|
|
|
|
// CraftBukkit start
|
|
|
|
- CommandNode currentCommand = this.currentCommand;
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper start - Thread Safe Vanilla Command permission checking
|
2021-08-22 05:45:40 +02:00
|
|
|
+ CommandNode currentCommand = this.currentCommand.get(Thread.currentThread());
|
2021-06-11 14:02:28 +02:00
|
|
|
if (currentCommand != null) {
|
2021-06-14 11:46:59 +02:00
|
|
|
return this.hasPermission(level, org.bukkit.craftbukkit.command.VanillaCommandWrapper.getPermission(currentCommand));
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper end - Thread Safe Vanilla Command permission checking
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|