/src/main/java/net/minecraft/server/PendingConnection.java

https://bitbucket.org/thecityservers/craftbukkit · Java · 218 lines · 172 code · 36 blank · 10 comment · 38 complexity · 630197a192b563a3b6069e327e9ddd28 MD5 · raw file

  1. package net.minecraft.server;
  2. import java.io.Serializable;
  3. import java.net.InetAddress;
  4. import java.net.Socket;
  5. import java.security.PrivateKey;
  6. import java.security.PublicKey;
  7. import java.util.Arrays;
  8. import java.util.Iterator;
  9. import java.util.List;
  10. import java.util.Random;
  11. import java.util.logging.Logger;
  12. import javax.crypto.SecretKey;
  13. public class PendingConnection extends Connection {
  14. private byte[] d;
  15. public static Logger logger = Logger.getLogger("Minecraft");
  16. private static Random random = new Random();
  17. public NetworkManager networkManager;
  18. public boolean c = false;
  19. private MinecraftServer server;
  20. private int g = 0;
  21. private String h = null;
  22. private volatile boolean i = false;
  23. private String loginKey = Long.toString(random.nextLong(), 16); // CraftBukkit - Security fix
  24. private boolean k = false;
  25. private SecretKey l = null;
  26. public String hostname = ""; // CraftBukkit - add field
  27. public PendingConnection(MinecraftServer minecraftserver, Socket socket, String s) throws java.io.IOException { // CraftBukkit - throws IOException
  28. this.server = minecraftserver;
  29. this.networkManager = new NetworkManager(socket, s, this, minecraftserver.F().getPrivate());
  30. this.networkManager.e = 0;
  31. }
  32. // CraftBukkit start
  33. public Socket getSocket() {
  34. return this.networkManager.getSocket();
  35. }
  36. // CraftBukkit end
  37. public void c() {
  38. if (this.i) {
  39. this.d();
  40. }
  41. if (this.g++ == 600) {
  42. this.disconnect("Took too long to log in");
  43. } else {
  44. this.networkManager.b();
  45. }
  46. }
  47. public void disconnect(String s) {
  48. try {
  49. logger.info("Disconnecting " + this.getName() + ": " + s);
  50. this.networkManager.queue(new Packet255KickDisconnect(s));
  51. this.networkManager.d();
  52. this.c = true;
  53. } catch (Exception exception) {
  54. exception.printStackTrace();
  55. }
  56. }
  57. public void a(Packet2Handshake packet2handshake) {
  58. // CraftBukkit start
  59. this.hostname = packet2handshake.c == null ? "" : packet2handshake.c + ':' + packet2handshake.d;
  60. // CraftBukkit end
  61. this.h = packet2handshake.f();
  62. if (!this.h.equals(StripColor.a(this.h))) {
  63. this.disconnect("Invalid username!");
  64. } else {
  65. PublicKey publickey = this.server.F().getPublic();
  66. if (packet2handshake.d() != 51) {
  67. if (packet2handshake.d() > 51) {
  68. this.disconnect("Outdated server!");
  69. } else {
  70. this.disconnect("Outdated client!");
  71. }
  72. } else {
  73. this.loginKey = this.server.getOnlineMode() ? Long.toString(random.nextLong(), 16) : "-";
  74. this.d = new byte[4];
  75. random.nextBytes(this.d);
  76. this.networkManager.queue(new Packet253KeyRequest(this.loginKey, publickey, this.d));
  77. }
  78. }
  79. }
  80. public void a(Packet252KeyResponse packet252keyresponse) {
  81. PrivateKey privatekey = this.server.F().getPrivate();
  82. this.l = packet252keyresponse.a(privatekey);
  83. if (!Arrays.equals(this.d, packet252keyresponse.b(privatekey))) {
  84. this.disconnect("Invalid client reply");
  85. }
  86. this.networkManager.queue(new Packet252KeyResponse());
  87. }
  88. public void a(Packet205ClientCommand packet205clientcommand) {
  89. if (packet205clientcommand.a == 0) {
  90. if (this.server.getOnlineMode()) {
  91. if (this.k) {
  92. this.disconnect("Duplicate login");
  93. return;
  94. }
  95. this.k = true;
  96. (new ThreadLoginVerifier(this, server.server)).start(); // CraftBukkit - add CraftServer
  97. } else {
  98. this.i = true;
  99. }
  100. }
  101. }
  102. public void a(Packet1Login packet1login) {}
  103. public void d() {
  104. // CraftBukkit start
  105. EntityPlayer s = this.server.getPlayerList().attemptLogin(this, this.h, this.hostname);
  106. if (s == null) {
  107. return;
  108. // CraftBukkit end
  109. } else {
  110. EntityPlayer entityplayer = this.server.getPlayerList().processLogin(s); // CraftBukkit - this.h -> s
  111. if (entityplayer != null) {
  112. this.server.getPlayerList().a((INetworkManager) this.networkManager, entityplayer);
  113. }
  114. }
  115. this.c = true;
  116. }
  117. public void a(String s, Object[] aobject) {
  118. logger.info(this.getName() + " lost connection");
  119. this.c = true;
  120. }
  121. public void a(Packet254GetInfo packet254getinfo) {
  122. if (this.networkManager.getSocket() == null) return; // CraftBukkit - fix NPE when a client queries a server that is unable to handle it.
  123. try {
  124. PlayerList playerlist = this.server.getPlayerList();
  125. String s = null;
  126. // CraftBukkit
  127. org.bukkit.event.server.ServerListPingEvent pingEvent = org.bukkit.craftbukkit.event.CraftEventFactory.callServerListPingEvent(this.server.server, getSocket().getInetAddress(), this.server.getMotd(), playerlist.getPlayerCount(), playerlist.getMaxPlayers());
  128. if (packet254getinfo.a == 1) {
  129. // CraftBukkit start - fix decompile issues, don't create a list from an array
  130. Object[] list = new Object[] { 1, 51, this.server.getVersion(), pingEvent.getMotd(), playerlist.getPlayerCount(), pingEvent.getMaxPlayers() };
  131. for (Object object : list) {
  132. if (s == null) {
  133. s = "\u00A7";
  134. } else {
  135. s = s + "\0";
  136. }
  137. s += org.apache.commons.lang.StringUtils.replace(object.toString(), "\0", "");
  138. }
  139. // CraftBukkit end
  140. } else {
  141. // CraftBukkit
  142. s = pingEvent.getMotd() + "\u00A7" + playerlist.getPlayerCount() + "\u00A7" + pingEvent.getMaxPlayers();
  143. }
  144. InetAddress inetaddress = null;
  145. if (this.networkManager.getSocket() != null) {
  146. inetaddress = this.networkManager.getSocket().getInetAddress();
  147. }
  148. this.networkManager.queue(new Packet255KickDisconnect(s));
  149. this.networkManager.d();
  150. if (inetaddress != null && this.server.ae() instanceof DedicatedServerConnection) {
  151. ((DedicatedServerConnection) this.server.ae()).a(inetaddress);
  152. }
  153. this.c = true;
  154. } catch (Exception exception) {
  155. exception.printStackTrace();
  156. }
  157. }
  158. public void onUnhandledPacket(Packet packet) {
  159. this.disconnect("Protocol error");
  160. }
  161. public String getName() {
  162. return this.h != null ? this.h + " [" + this.networkManager.getSocketAddress().toString() + "]" : this.networkManager.getSocketAddress().toString();
  163. }
  164. public boolean a() {
  165. return true;
  166. }
  167. static String a(PendingConnection pendingconnection) {
  168. return pendingconnection.loginKey;
  169. }
  170. static MinecraftServer b(PendingConnection pendingconnection) {
  171. return pendingconnection.server;
  172. }
  173. static SecretKey c(PendingConnection pendingconnection) {
  174. return pendingconnection.l;
  175. }
  176. static String d(PendingConnection pendingconnection) {
  177. return pendingconnection.h;
  178. }
  179. static boolean a(PendingConnection pendingconnection, boolean flag) {
  180. return pendingconnection.i = flag;
  181. }
  182. }