2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Joseph Hirschfeld <joe@ibj.io>
|
|
|
|
Date: Thu, 3 Mar 2016 03:15:41 -0600
|
|
|
|
Subject: [PATCH] Add exception reporting event
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/ServerSchedulerReportingWrapper.java b/src/main/java/com/destroystokyo/paper/ServerSchedulerReportingWrapper.java
|
|
|
|
new file mode 100644
|
|
|
|
index 0000000000000000000000000000000000000000..f699ce18ca044f813e194ef2786b7ea853ea86e7
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/ServerSchedulerReportingWrapper.java
|
|
|
|
@@ -0,0 +1,38 @@
|
|
|
|
+package com.destroystokyo.paper;
|
|
|
|
+
|
|
|
|
+import com.google.common.base.Preconditions;
|
|
|
|
+import org.bukkit.craftbukkit.scheduler.CraftTask;
|
|
|
|
+import com.destroystokyo.paper.event.server.ServerExceptionEvent;
|
|
|
|
+import com.destroystokyo.paper.exception.ServerSchedulerException;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Reporting wrapper to catch exceptions not natively
|
|
|
|
+ */
|
|
|
|
+public class ServerSchedulerReportingWrapper implements Runnable {
|
|
|
|
+
|
|
|
|
+ private final CraftTask internalTask;
|
|
|
|
+
|
|
|
|
+ public ServerSchedulerReportingWrapper(CraftTask internalTask) {
|
|
|
|
+ this.internalTask = Preconditions.checkNotNull(internalTask, "internalTask");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void run() {
|
|
|
|
+ try {
|
|
|
|
+ internalTask.run();
|
|
|
|
+ } catch (RuntimeException e) {
|
|
|
|
+ internalTask.getOwner().getServer().getPluginManager().callEvent(
|
|
|
|
+ new ServerExceptionEvent(new ServerSchedulerException(e, internalTask))
|
|
|
|
+ );
|
|
|
|
+ throw e;
|
|
|
|
+ } catch (Throwable t) {
|
|
|
|
+ internalTask.getOwner().getServer().getPluginManager().callEvent(
|
|
|
|
+ new ServerExceptionEvent(new ServerSchedulerException(t, internalTask))
|
|
|
|
+ ); //Do not rethrow, since it is not permitted with Runnable#run
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public CraftTask getInternalTask() {
|
|
|
|
+ return internalTask;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/OldUsersConverter.java b/src/main/java/net/minecraft/server/players/OldUsersConverter.java
|
2023-12-05 20:54:55 +01:00
|
|
|
index 8d06e8d286da2573e40794adab695ff77e5afd86..78b11d6fd74fb0714a8013fdc78d096643c4f83c 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/OldUsersConverter.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/OldUsersConverter.java
|
|
|
|
@@ -1,5 +1,6 @@
|
|
|
|
package net.minecraft.server.players;
|
|
|
|
|
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
import com.google.common.io.Files;
|
2023-12-05 20:54:55 +01:00
|
|
|
@@ -357,6 +358,7 @@ public class OldUsersConverter {
|
|
|
|
root = NbtIo.readCompressed(new java.io.FileInputStream(file5), NbtAccounter.unlimitedHeap());
|
2021-06-11 14:02:28 +02:00
|
|
|
} catch (Exception exception) {
|
|
|
|
exception.printStackTrace();
|
|
|
|
+ ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root != null) {
|
2023-12-05 20:54:55 +01:00
|
|
|
@@ -370,6 +372,7 @@ public class OldUsersConverter {
|
2021-06-11 14:02:28 +02:00
|
|
|
NbtIo.writeCompressed(root, new java.io.FileOutputStream(file2));
|
|
|
|
} catch (Exception exception) {
|
|
|
|
exception.printStackTrace();
|
|
|
|
+ ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/village/VillageSiege.java b/src/main/java/net/minecraft/world/entity/ai/village/VillageSiege.java
|
2022-06-07 21:15:06 +02:00
|
|
|
index c6fb4c33d7ea52b88d8fc0d90748cbab7387c565..fed09b886f4fa0006d160e5f2abb00dfee45434d 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/village/VillageSiege.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/village/VillageSiege.java
|
2022-03-01 06:43:03 +01:00
|
|
|
@@ -118,6 +118,7 @@ public class VillageSiege implements CustomSpawner {
|
2021-06-11 14:02:28 +02:00
|
|
|
entityzombie.finalizeSpawn(world, world.getCurrentDifficultyAt(entityzombie.blockPosition()), MobSpawnType.EVENT, (SpawnGroupData) null, (CompoundTag) null);
|
|
|
|
} catch (Exception exception) {
|
|
|
|
VillageSiege.LOGGER.warn("Failed to create zombie for village siege at {}", vec3d, exception);
|
2022-03-01 06:43:03 +01:00
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(exception); // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/Level.java b/src/main/java/net/minecraft/world/level/Level.java
|
2023-12-25 23:51:56 +01:00
|
|
|
index 8be40065d6f0d53d5a264464fc4be208c7bad3a9..9a39bf50668340a77bbfd45218c03d9c00a6ce1e 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/Level.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/Level.java
|
|
|
|
@@ -1,5 +1,10 @@
|
|
|
|
package net.minecraft.world.level;
|
|
|
|
|
|
|
|
+import co.aikar.timings.Timing;
|
|
|
|
+import co.aikar.timings.Timings;
|
|
|
|
+import com.destroystokyo.paper.event.server.ServerExceptionEvent;
|
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
|
|
|
+import com.google.common.base.MoreObjects;
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
import com.mojang.serialization.Codec;
|
|
|
|
import java.io.IOException;
|
2023-12-25 23:51:56 +01:00
|
|
|
@@ -734,6 +739,7 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
|
2021-06-11 14:02:28 +02:00
|
|
|
// Paper start - Prevent tile entity and entity crashes
|
2023-06-07 23:46:56 +02:00
|
|
|
final String msg = String.format("Entity threw exception at %s:%s,%s,%s", entity.level().getWorld().getName(), entity.getX(), entity.getY(), entity.getZ());
|
2021-06-21 10:09:18 +02:00
|
|
|
MinecraftServer.LOGGER.error(msg, throwable);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ getCraftServer().getPluginManager().callEvent(new ServerExceptionEvent(new ServerInternalException(msg, throwable)));
|
2021-06-12 02:57:04 +02:00
|
|
|
entity.discard();
|
2021-06-11 14:02:28 +02:00
|
|
|
// Paper end
|
2021-06-12 02:57:04 +02:00
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/NaturalSpawner.java b/src/main/java/net/minecraft/world/level/NaturalSpawner.java
|
2023-09-21 22:14:58 +02:00
|
|
|
index 5d65baba605dd83e5f74d526aeda36d8ede8c014..92e76dd39dc3575e9466031dd799080a98ad8b8d 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/NaturalSpawner.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/NaturalSpawner.java
|
2022-12-07 19:32:25 +01:00
|
|
|
@@ -291,6 +291,7 @@ public final class NaturalSpawner {
|
|
|
|
NaturalSpawner.LOGGER.warn("Can't spawn entity of type: {}", BuiltInRegistries.ENTITY_TYPE.getKey(type));
|
2021-06-11 14:02:28 +02:00
|
|
|
} catch (Exception exception) {
|
|
|
|
NaturalSpawner.LOGGER.warn("Failed to create mob", exception);
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
}
|
2022-12-07 19:32:25 +01:00
|
|
|
|
|
|
|
return null;
|
|
|
|
@@ -404,6 +405,7 @@ public final class NaturalSpawner {
|
2021-11-23 13:15:10 +01:00
|
|
|
entity = biomesettingsmobs_c.type.create(world.getLevel());
|
2021-06-12 02:57:04 +02:00
|
|
|
} catch (Exception exception) {
|
|
|
|
NaturalSpawner.LOGGER.warn("Failed to create mob", exception);
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
continue;
|
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java b/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
|
2024-01-12 21:58:54 +01:00
|
|
|
index db3ee1f1d8429d3d646623877adc9f6920b7764f..b589b67471367f37e6d1f4737122914a649c01b3 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
|
2021-06-12 02:57:04 +02:00
|
|
|
@@ -1,6 +1,7 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
package net.minecraft.world.level.chunk;
|
|
|
|
|
2021-06-12 02:57:04 +02:00
|
|
|
import com.google.common.collect.ImmutableList;
|
2021-06-11 14:02:28 +02:00
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
|
|
|
import com.google.common.collect.Maps;
|
2021-06-12 02:57:04 +02:00
|
|
|
import com.google.common.collect.UnmodifiableIterator;
|
2022-03-01 06:43:03 +01:00
|
|
|
import com.mojang.logging.LogUtils;
|
2024-01-12 21:58:54 +01:00
|
|
|
@@ -564,10 +565,16 @@ public class LevelChunk extends ChunkAccess {
|
2022-03-11 21:13:46 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2021-06-11 14:02:28 +02:00
|
|
|
} else {
|
|
|
|
- System.out.println("Attempted to place a tile entity (" + blockEntity + ") at " + blockEntity.getBlockPos().getX() + "," + blockEntity.getBlockPos().getY() + "," + blockEntity.getBlockPos().getZ()
|
2021-06-12 02:57:04 +02:00
|
|
|
- + " (" + this.getBlockState(blockposition) + ") where there was no entity tile!");
|
2021-06-11 14:02:28 +02:00
|
|
|
- System.out.println("Chunk coordinates: " + (this.chunkPos.x * 16) + "," + (this.chunkPos.z * 16));
|
|
|
|
- new Exception().printStackTrace();
|
|
|
|
+ // Paper start
|
|
|
|
+ ServerInternalException e = new ServerInternalException(
|
2021-06-12 02:57:04 +02:00
|
|
|
+ "Attempted to place a tile entity (" + blockEntity + ") at " + blockEntity.getBlockPos().getX() + ","
|
|
|
|
+ + blockEntity.getBlockPos().getY() + "," + blockEntity.getBlockPos().getZ()
|
|
|
|
+ + " (" + getBlockState(blockposition) + ") where there was no entity tile!\n" +
|
2022-05-16 12:38:14 +02:00
|
|
|
+ "Chunk coordinates: " + (this.chunkPos.x * 16) + "," + (this.chunkPos.z * 16) +
|
|
|
|
+ "\nWorld: " + level.getLevel().dimension().location());
|
2021-06-11 14:02:28 +02:00
|
|
|
+ e.printStackTrace();
|
|
|
|
+ ServerInternalException.reportInternalException(e);
|
|
|
|
+ // Paper end
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
2024-01-12 21:58:54 +01:00
|
|
|
@@ -1145,6 +1152,7 @@ public class LevelChunk extends ChunkAccess {
|
2021-06-12 02:57:04 +02:00
|
|
|
// Paper start - Prevent tile entity and entity crashes
|
2021-06-21 10:09:18 +02:00
|
|
|
final String msg = String.format("BlockEntity threw exception at %s:%s,%s,%s", LevelChunk.this.getLevel().getWorld().getName(), this.getPos().getX(), this.getPos().getY(), this.getPos().getZ());
|
|
|
|
net.minecraft.server.MinecraftServer.LOGGER.error(msg, throwable);
|
2021-06-12 02:57:04 +02:00
|
|
|
+ net.minecraft.world.level.chunk.LevelChunk.this.level.getCraftServer().getPluginManager().callEvent(new com.destroystokyo.paper.event.server.ServerExceptionEvent(new ServerInternalException(msg, throwable)));
|
|
|
|
LevelChunk.this.removeBlockEntity(this.getPos());
|
|
|
|
// Paper end
|
|
|
|
// Spigot start
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java b/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java
|
2023-09-23 00:33:14 +02:00
|
|
|
index 5103081e8469dd5a393595eae00c6f6c9d0a5028..ab9681ba3a86212e0e23a9af8788eec1dbee36ab 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java
|
2023-09-22 22:13:57 +02:00
|
|
|
@@ -275,6 +275,7 @@ public class RegionFile implements AutoCloseable {
|
2021-06-11 14:02:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} catch (IOException ioexception) {
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(ioexception); // Paper
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2023-09-22 22:13:57 +02:00
|
|
|
@@ -356,6 +357,7 @@ public class RegionFile implements AutoCloseable {
|
2022-11-12 21:57:41 +01:00
|
|
|
((java.nio.Buffer) buf).position(5); // CraftBukkit - decompile error
|
|
|
|
filechannel.write(buf);
|
2021-06-12 02:57:04 +02:00
|
|
|
} catch (Throwable throwable) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(throwable); // Paper
|
|
|
|
if (filechannel != null) {
|
2021-06-12 02:57:04 +02:00
|
|
|
try {
|
|
|
|
filechannel.close();
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
|
2023-12-05 18:20:55 +01:00
|
|
|
index bd1057681d0c7470c497b873ff18abf03a0a6a66..f39c836970572fe2e29e794a6af35332af8f7424 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
|
2023-06-13 01:51:45 +02:00
|
|
|
@@ -434,6 +434,8 @@ public class CraftScheduler implements BukkitScheduler {
|
2021-06-11 14:02:28 +02:00
|
|
|
msg,
|
|
|
|
throwable);
|
|
|
|
}
|
|
|
|
+ org.bukkit.Bukkit.getServer().getPluginManager().callEvent(
|
2023-06-13 01:51:45 +02:00
|
|
|
+ new com.destroystokyo.paper.event.server.ServerExceptionEvent(new com.destroystokyo.paper.exception.ServerSchedulerException(msg, throwable, task)));
|
2021-06-11 14:02:28 +02:00
|
|
|
// Paper end
|
|
|
|
} finally {
|
2021-06-12 02:57:04 +02:00
|
|
|
this.currentTask = null;
|
2023-06-13 01:51:45 +02:00
|
|
|
@@ -441,7 +443,7 @@ public class CraftScheduler implements BukkitScheduler {
|
2021-06-12 02:57:04 +02:00
|
|
|
this.parsePending();
|
2021-06-11 14:02:28 +02:00
|
|
|
} else {
|
2021-06-12 02:57:04 +02:00
|
|
|
this.debugTail = this.debugTail.setNext(new CraftAsyncDebugger(currentTick + CraftScheduler.RECENT_TICKS, task.getOwner(), task.getTaskClass()));
|
|
|
|
- this.executor.execute(task);
|
2023-06-13 01:51:45 +02:00
|
|
|
+ this.executor.execute(new com.destroystokyo.paper.ServerSchedulerReportingWrapper(task)); // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
// We don't need to parse pending
|
|
|
|
// (async tasks must live with race-conditions if they attempt to cancel between these few lines of code)
|
|
|
|
}
|