2017-10-23 20:53:51 +02:00
|
|
|
From 55d79ca12bc3bbab71449754efcb268d8d7f9781 Mon Sep 17 00:00:00 2001
|
2016-05-28 18:34:39 +02:00
|
|
|
From: Techcable <Techcable@techcable.net>
|
|
|
|
Date: Tue, 3 May 2016 20:31:52 -0700
|
2016-12-04 18:31:55 +01:00
|
|
|
Subject: [PATCH] Don't access a ByteBuf's underlying array
|
2016-08-30 19:30:38 +02:00
|
|
|
|
2016-12-04 18:31:55 +01:00
|
|
|
It returns the underlying array storage, and does *not* return a view of the buffer as an array
|
2016-05-28 18:34:39 +02:00
|
|
|
|
|
|
|
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/packet/PluginMessage.java b/protocol/src/main/java/net/md_5/bungee/protocol/packet/PluginMessage.java
|
2017-08-04 15:57:11 +02:00
|
|
|
index 6dcdece5..e67773d9 100644
|
2016-05-28 18:34:39 +02:00
|
|
|
--- a/protocol/src/main/java/net/md_5/bungee/protocol/packet/PluginMessage.java
|
|
|
|
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/packet/PluginMessage.java
|
2016-08-26 11:05:00 +02:00
|
|
|
@@ -2,6 +2,7 @@ package net.md_5.bungee.protocol.packet;
|
2016-08-20 22:12:37 +02:00
|
|
|
|
|
|
|
import com.google.common.base.Preconditions;
|
2016-08-26 11:05:00 +02:00
|
|
|
import com.google.common.base.Predicate;
|
2016-08-20 22:12:37 +02:00
|
|
|
+import io.netty.buffer.ByteBufUtil;
|
2016-08-20 22:34:49 +02:00
|
|
|
import net.md_5.bungee.protocol.DefinedPacket;
|
|
|
|
import io.netty.buffer.ByteBuf;
|
|
|
|
import java.io.ByteArrayInputStream;
|
2016-08-26 11:05:00 +02:00
|
|
|
@@ -29,10 +30,23 @@ public class PluginMessage extends DefinedPacket
|
|
|
|
return input.getTag().equals( "REGISTER" ) || input.getTag().equals( "MC|Brand" );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
- //
|
|
|
|
+
|
2016-05-28 18:34:39 +02:00
|
|
|
+ public PluginMessage(String tag, ByteBuf data, boolean allowExtendedPacket) {
|
|
|
|
+ this(tag, ByteBufUtil.getBytes(data), allowExtendedPacket);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
private String tag;
|
|
|
|
private byte[] data;
|
|
|
|
|
|
|
|
+ public void setData(byte[] data) {
|
|
|
|
+ this.data = Preconditions.checkNotNull(data, "Null data");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setData(ByteBuf buf) {
|
|
|
|
+ Preconditions.checkNotNull(buf, "Null buffer");
|
|
|
|
+ setData(ByteBufUtil.getBytes(buf));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Allow this packet to be sent as an "extended" packet.
|
|
|
|
*/
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
|
2017-09-05 19:17:15 +02:00
|
|
|
index 6c31f15f..4a96a601 100644
|
2016-05-28 18:34:39 +02:00
|
|
|
--- a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
|
|
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
|
2017-09-05 19:17:15 +02:00
|
|
|
@@ -200,7 +200,7 @@ public class ServerConnector extends PacketHandler
|
2016-05-28 18:34:39 +02:00
|
|
|
|
|
|
|
ByteBuf brand = ByteBufAllocator.DEFAULT.heapBuffer();
|
|
|
|
DefinedPacket.writeString( bungee.getName() + " (" + bungee.getVersion() + ")", brand );
|
2016-08-20 22:12:37 +02:00
|
|
|
- user.unsafe().sendPacket( new PluginMessage( "MC|Brand", DefinedPacket.toArray( brand ), handshakeHandler.isServerForge() ) );
|
2016-05-28 18:34:39 +02:00
|
|
|
+ user.unsafe().sendPacket( new PluginMessage( "MC|Brand", brand, handshakeHandler.isServerForge() ) );
|
|
|
|
brand.release();
|
2016-10-30 15:46:05 +01:00
|
|
|
|
|
|
|
user.setDimension( login.getDimension() );
|
2016-05-28 18:34:39 +02:00
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
2017-10-23 20:53:51 +02:00
|
|
|
index 6b8ae245..a92b806c 100644
|
2016-05-28 18:34:39 +02:00
|
|
|
--- a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
|
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
2017-08-09 02:20:45 +02:00
|
|
|
@@ -240,7 +240,7 @@ public class DownstreamBridge extends PacketHandler
|
2016-08-20 22:12:37 +02:00
|
|
|
|
2016-05-28 18:34:39 +02:00
|
|
|
brand = ByteBufAllocator.DEFAULT.heapBuffer();
|
|
|
|
DefinedPacket.writeString( bungee.getName() + " (" + bungee.getVersion() + ")" + " <- " + serverBrand, brand );
|
2016-08-20 22:12:37 +02:00
|
|
|
- pluginMessage.setData( DefinedPacket.toArray( brand ) );
|
2016-05-28 18:34:39 +02:00
|
|
|
+ pluginMessage.setData( brand );
|
|
|
|
brand.release();
|
|
|
|
// changes in the packet are ignored so we need to send it manually
|
|
|
|
con.unsafe().sendPacket( pluginMessage );
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java b/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java
|
2017-09-05 19:17:15 +02:00
|
|
|
index 551ae1e1..be9685b9 100644
|
2016-05-28 18:34:39 +02:00
|
|
|
--- a/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java
|
|
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java
|
2017-08-18 11:36:42 +02:00
|
|
|
@@ -42,9 +42,9 @@ import net.md_5.bungee.protocol.Varint21LengthFieldPrepender;
|
2016-05-28 18:34:39 +02:00
|
|
|
public class PipelineUtils
|
|
|
|
{
|
|
|
|
|
2016-08-30 19:30:38 +02:00
|
|
|
- public static final AttributeKey<ListenerInfo> LISTENER = AttributeKey.valueOf( "ListerInfo" );
|
|
|
|
- public static final AttributeKey<UserConnection> USER = AttributeKey.valueOf( "User" );
|
|
|
|
- public static final AttributeKey<BungeeServerInfo> TARGET = AttributeKey.valueOf( "Target" );
|
2016-05-28 18:34:39 +02:00
|
|
|
+ public static final AttributeKey<ListenerInfo> LISTENER = AttributeKey.newInstance("ListerInfo");
|
|
|
|
+ public static final AttributeKey<UserConnection> USER = AttributeKey.newInstance("User");
|
|
|
|
+ public static final AttributeKey<BungeeServerInfo> TARGET = AttributeKey.newInstance("Target");
|
|
|
|
public static final ChannelInitializer<Channel> SERVER_CHILD = new ChannelInitializer<Channel>()
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
--
|
2017-08-18 11:36:42 +02:00
|
|
|
2.14.1
|
2016-05-28 18:34:39 +02:00
|
|
|
|