forked from ZockerSK/FakeMCServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocket_server.py
120 lines (102 loc) · 4.71 KB
/
socket_server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import _thread
import json
import socket
import uuid
import byte_utils
class SocketServer:
ip = None
port = None
motd = None
version_text = None
kick_message = None
samples = None
server_icon = None
sock = None
def __init__(self, ip, port, motd, version_text, kick_message, samples, server_icon, logger):
self.ip = ip
self.port = port
self.motd = motd
self.version_text = version_text
self.kick_message = kick_message
self.samples = samples
self.server_icon = server_icon
self.logger = logger
def on_new_client(self, client_socket, addr):
data = client_socket.recv(1024)
try:
(length, i) = byte_utils.read_varint(data, 0)
(packetID, i) = byte_utils.read_varint(data, i)
if packetID == 0:
(version, i) = byte_utils.read_varint(data, i)
(ip, i) = byte_utils.read_utf(data, i)
ip = ip.replace('\x00', '')
is_using_fml = False
if ip.endswith("FML"):
is_using_fml = True
ip = ip[:-3]
(port, i) = byte_utils.read_ushort(data, i)
(state, i) = byte_utils.read_varint(data, i)
if state == 1:
self.logger.info(("[%s:%s] Received client " + ("(using ForgeModLoader) " if is_using_fml else "") +
"ping packet (%s:%s).") % (addr[0], addr[1], ip, port))
motd = {}
motd["version"] = {}
motd["version"]["name"] = self.version_text
motd["version"]["protocol"] = 2
motd["players"] = {}
motd["players"]["max"] = 0
motd["players"]["online"] = 0
motd["players"]["sample"] = []
for sample in self.samples:
motd["players"]["sample"].append({"name": sample, "id": str(uuid.uuid4())})
motd["description"] = {"text": self.motd}
if self.server_icon and len(self.server_icon) > 0:
motd["favicon"] = self.server_icon
self.write_response(client_socket, json.dumps(motd))
elif state == 2:
name = ""
if len(data) != i:
(some_int, i) = byte_utils.read_varint(data, i)
(some_int, i) = byte_utils.read_varint(data, i)
(name, i) = byte_utils.read_utf(data, i)
self.logger.info(
("[%s:%s] " + (name + " t" if len(name) > 0 else "T") + "ries to connect to the server " +
("(using ForgeModLoader) " if is_using_fml else "") + "(%s:%s).")
% (addr[0], addr[1], ip, port))
self.write_response(client_socket, json.dumps({"text": self.kick_message}))
else:
self.logger.info(
"[%s:%d] Tried to request a login/ping with an unknown state: %d" % (addr[0], addr[1], state))
elif packetID == 1:
(long, i) = byte_utils.read_long(data, i)
response = bytearray()
byte_utils.write_varint(response, 9)
byte_utils.write_varint(response, 1)
bytearray.append(long)
client_socket.sendall(bytearray)
self.logger.info("[%s:%d] Responded with pong packet." % (addr[0], addr[1]))
else:
self.logger.warning("[%s:%d] Sent an unexpected packet: %d" % (addr[0], addr[1], packetID))
except TypeError:
self.logger.warning("An invalid data was sent (%s)" % data)
return
def write_response(self, client_socket, response):
response_array = bytearray()
byte_utils.write_varint(response_array, 0)
byte_utils.write_utf(response_array, response)
length = bytearray()
byte_utils.write_varint(length, len(response_array))
client_socket.sendall(length)
client_socket.sendall(response_array)
def start(self):
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
self.sock.bind((self.ip, self.port))
self.sock.settimeout(5000)
self.sock.listen(30)
self.logger.info("Server started on %s:%s! Waiting for incoming connections..." % (self.ip, self.port))
while 1:
(client, address) = self.sock.accept()
_thread.start_new_thread(self.on_new_client, (client, address,))
def close(self):
self.sock.close()