Browse Source

Refactored packet reading.

pull/2/head
Richard Neumann 4 years ago
parent
commit
7608b85bfe
  1. 59
      rcon/proto.py

59
rcon/proto.py

@ -5,7 +5,7 @@ from enum import Enum
from logging import getLogger from logging import getLogger
from random import randint from random import randint
from socket import SOCK_STREAM, socket from socket import SOCK_STREAM, socket
from typing import NamedTuple, Optional from typing import IO, NamedTuple, Optional
from rcon.exceptions import RequestIdMismatch from rcon.exceptions import RequestIdMismatch
from rcon.exceptions import WrongPassword from rcon.exceptions import WrongPassword
@ -48,18 +48,18 @@ class LittleEndianSignedInt32(int):
return self.to_bytes(4, 'little', signed=True) return self.to_bytes(4, 'little', signed=True)
@classmethod @classmethod
def from_bytes(cls, bytes_: bytes) -> LittleEndianSignedInt32: def read(cls, file: IO) -> LittleEndianSignedInt32:
"""Creates the integer from the given bytes.""" """Creates the integer from the given bytes."""
return super().from_bytes(bytes_, 'little', signed=True) return super().from_bytes(file.read(4), 'little', signed=True)
class Type(Enum): class Type(Enum):
"""RCON packet types.""" """RCON packet types."""
SERVERDATA_AUTH = 3 SERVERDATA_AUTH = LittleEndianSignedInt32(3)
SERVERDATA_AUTH_RESPONSE = 2 SERVERDATA_AUTH_RESPONSE = LittleEndianSignedInt32(2)
SERVERDATA_EXECCOMMAND = 2 SERVERDATA_EXECCOMMAND = LittleEndianSignedInt32(2)
SERVERDATA_RESPONSE_VALUE = 0 SERVERDATA_RESPONSE_VALUE = LittleEndianSignedInt32(0)
def __int__(self): def __int__(self):
"""Returns the actual integer value.""" """Returns the actual integer value."""
@ -70,9 +70,9 @@ class Type(Enum):
return int(self).to_bytes(4, 'little', signed=True) return int(self).to_bytes(4, 'little', signed=True)
@classmethod @classmethod
def from_bytes(cls, bytes_: bytes) -> Type: def read(cls, file: IO) -> Type:
"""Creates a type from the given bytes.""" """Creates a type from the given bytes."""
return cls(int.from_bytes(bytes_, 'little', signed=True)) return cls(LittleEndianSignedInt32.read(file))
class Packet(NamedTuple): class Packet(NamedTuple):
@ -89,29 +89,30 @@ class Packet(NamedTuple):
payload += bytes(self.type) payload += bytes(self.type)
payload += self.payload.encode() payload += self.payload.encode()
payload += self.terminator.encode() payload += self.terminator.encode()
size = len(payload).to_bytes(4, 'little', signed=True) size = bytes(LittleEndianSignedInt32(len(payload)))
return size + payload return size + payload
@classmethod @classmethod
def from_bytes(cls, bytes_: bytes) -> Packet: def read(cls, file: IO) -> Packet:
"""Creates a packet from the respective bytes.""" """Reads a packet from a file-like object."""
id_ = LittleEndianSignedInt32.from_bytes(bytes_[:4]) size = LittleEndianSignedInt32.read(file)
type_ = Type.from_bytes(bytes_[4:8]) id_ = LittleEndianSignedInt32.read(file)
payload = bytes_[8:-2].decode() type_ = Type.read(file)
payload = file.read(size - 10).decode()
if (terminator := bytes_[-2:].decode()) != TERMINATOR:
if (terminator := file.read(2).decode()) != TERMINATOR:
LOGGER.warning('Unexpected terminator: %s', terminator) LOGGER.warning('Unexpected terminator: %s', terminator)
return cls(id_, type_, payload, terminator) return cls(id_, type_, payload, terminator)
@classmethod @classmethod
def from_args(cls, *args: str) -> Packet: def make_command(cls, *args: str) -> Packet:
"""Creates a command packet.""" """Creates a command packet."""
return cls(random_request_id(), Type.SERVERDATA_EXECCOMMAND, return cls(random_request_id(), Type.SERVERDATA_EXECCOMMAND,
' '.join(args)) ' '.join(args))
@classmethod @classmethod
def from_login(cls, passwd: str) -> Packet: def make_login(cls, passwd: str) -> Packet:
"""Creates a login packet.""" """Creates a login packet."""
return cls(random_request_id(), Type.SERVERDATA_AUTH, passwd) return cls(random_request_id(), Type.SERVERDATA_AUTH, passwd)
@ -119,17 +120,17 @@ class Packet(NamedTuple):
class Client: class Client:
"""An RCON client.""" """An RCON client."""
__slots__ = ('_socket', 'host', 'port', 'timeout', 'passwd') __slots__ = ('host', 'port', 'timeout', 'passwd', '_socket')
def __init__(self, host: str, port: int, *, def __init__(self, host: str, port: int, *,
timeout: Optional[float] = None, timeout: Optional[float] = None,
passwd: Optional[str] = None): passwd: Optional[str] = None):
"""Initializes the base client with the SOCK_STREAM socket type.""" """Initializes the base client with the SOCK_STREAM socket type."""
self._socket = socket(type=SOCK_STREAM)
self.host = host self.host = host
self.port = port self.port = port
self.timeout = timeout self.timeout = timeout
self.passwd = passwd self.passwd = passwd
self._socket = socket(type=SOCK_STREAM)
def __enter__(self): def __enter__(self):
"""Attempts an auto-login if a password is set.""" """Attempts an auto-login if a password is set."""
@ -152,34 +153,28 @@ class Client:
file.write(bytes(packet)) file.write(bytes(packet))
with self._socket.makefile('rb') as file: with self._socket.makefile('rb') as file:
header = file.read(4) response = Packet.read(file)
length = int.from_bytes(header, 'little')
payload = file.read(length)
response = Packet.from_bytes(payload)
if response.id == packet.id: if response.id == packet.id:
return response return response
raise RequestIdMismatch(packet.id, response.id) raise RequestIdMismatch(packet.id, response.id)
def login(self, passwd: str) -> bool: def login(self, passwd: str) -> Packet:
"""Performs a login.""" """Performs a login."""
packet = Packet.from_login(passwd) packet = Packet.make_login(passwd)
try: try:
self.communicate(packet) return self.communicate(packet)
except RequestIdMismatch as mismatch: except RequestIdMismatch as mismatch:
if mismatch.received == -1: if mismatch.received == -1:
raise WrongPassword() from None raise WrongPassword() from None
raise raise
return True
def run(self, command: str, *arguments: str, raw: bool = False) -> str: def run(self, command: str, *arguments: str, raw: bool = False) -> str:
"""Runs a command.""" """Runs a command."""
packet = Packet.from_args(command, *arguments) packet = Packet.make_command(command, *arguments)
try: try:
response = self.communicate(packet) response = self.communicate(packet)

Loading…
Cancel
Save