2023-04-23 08:38:28 +00:00
|
|
|
from twisted.web.http import Request
|
|
|
|
import yaml
|
|
|
|
import logging
|
|
|
|
import coloredlogs
|
|
|
|
from logging.handlers import TimedRotatingFileHandler
|
|
|
|
from os import path
|
2023-11-09 02:17:48 +00:00
|
|
|
from typing import Tuple, List, Dict
|
2023-04-23 08:38:28 +00:00
|
|
|
from twisted.internet import reactor, endpoints
|
|
|
|
from twisted.web import server, resource
|
|
|
|
import importlib
|
|
|
|
|
|
|
|
from core.config import CoreConfig
|
2023-11-09 02:17:48 +00:00
|
|
|
from core.title import BaseServlet
|
2023-04-23 08:38:28 +00:00
|
|
|
from .config import IDZConfig
|
|
|
|
from .const import IDZConstants
|
2023-11-09 02:17:48 +00:00
|
|
|
from .userdb import IDZUserDBFactory, IDZKey
|
2023-04-23 08:38:28 +00:00
|
|
|
from .echo import IDZEcho
|
|
|
|
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-11-09 02:17:48 +00:00
|
|
|
class IDZServlet(BaseServlet):
|
2023-04-23 08:38:28 +00:00
|
|
|
def __init__(self, core_cfg: CoreConfig, cfg_dir: str) -> None:
|
2023-11-09 02:17:48 +00:00
|
|
|
super().__init__(core_cfg, cfg_dir)
|
2023-04-23 08:38:28 +00:00
|
|
|
self.game_cfg = IDZConfig()
|
|
|
|
if path.exists(f"{cfg_dir}/{IDZConstants.CONFIG_NAME}"):
|
|
|
|
self.game_cfg.update(
|
|
|
|
yaml.safe_load(open(f"{cfg_dir}/{IDZConstants.CONFIG_NAME}"))
|
|
|
|
)
|
|
|
|
|
|
|
|
self.logger = logging.getLogger("idz")
|
|
|
|
if not hasattr(self.logger, "inited"):
|
|
|
|
log_fmt_str = "[%(asctime)s] IDZ | %(levelname)s | %(message)s"
|
|
|
|
log_fmt = logging.Formatter(log_fmt_str)
|
|
|
|
fileHandler = TimedRotatingFileHandler(
|
|
|
|
"{0}/{1}.log".format(self.core_cfg.server.log_dir, "idz"),
|
|
|
|
encoding="utf8",
|
|
|
|
when="d",
|
|
|
|
backupCount=10,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.rsa_keys: List[IDZKey] = []
|
|
|
|
|
|
|
|
fileHandler.setFormatter(log_fmt)
|
|
|
|
|
|
|
|
consoleHandler = logging.StreamHandler()
|
|
|
|
consoleHandler.setFormatter(log_fmt)
|
|
|
|
|
|
|
|
self.logger.addHandler(fileHandler)
|
|
|
|
self.logger.addHandler(consoleHandler)
|
|
|
|
|
|
|
|
self.logger.setLevel(self.game_cfg.server.loglevel)
|
|
|
|
coloredlogs.install(
|
|
|
|
level=self.game_cfg.server.loglevel, logger=self.logger, fmt=log_fmt_str
|
|
|
|
)
|
|
|
|
self.logger.inited = True
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
@classmethod
|
|
|
|
def rsaHashKeyN(cls, data):
|
|
|
|
hash_ = 0
|
|
|
|
for i in data:
|
2023-04-24 01:04:52 +00:00
|
|
|
hash_ = (
|
|
|
|
hash_ * IDZConstants.HASH_MUL + (i ^ IDZConstants.HASH_XOR)
|
|
|
|
^ IDZConstants.HASH_LUT[i & 0xF]
|
|
|
|
)
|
|
|
|
hash_ &= 0xFFFFFFFF
|
2023-04-23 08:38:28 +00:00
|
|
|
return hash_
|
|
|
|
|
|
|
|
@classmethod
|
2023-11-09 02:17:48 +00:00
|
|
|
def is_game_enabled(
|
2023-04-23 08:38:28 +00:00
|
|
|
cls, game_code: str, core_cfg: CoreConfig, cfg_dir: str
|
2023-11-09 02:17:48 +00:00
|
|
|
) -> bool:
|
2023-04-23 08:38:28 +00:00
|
|
|
game_cfg = IDZConfig()
|
|
|
|
if path.exists(f"{cfg_dir}/{IDZConstants.CONFIG_NAME}"):
|
|
|
|
game_cfg.update(
|
|
|
|
yaml.safe_load(open(f"{cfg_dir}/{IDZConstants.CONFIG_NAME}"))
|
|
|
|
)
|
|
|
|
|
|
|
|
if not game_cfg.server.enable:
|
2023-11-09 02:17:48 +00:00
|
|
|
return False
|
2023-04-23 08:38:28 +00:00
|
|
|
|
|
|
|
if len(game_cfg.rsa_keys) <= 0 or not game_cfg.server.aes_key:
|
|
|
|
logging.getLogger("idz").error("IDZ: No RSA/AES keys! IDZ cannot start")
|
2023-11-09 02:17:48 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_endpoint_matchers(self) -> Tuple[List[Tuple[str, str, Dict]], List[Tuple[str, str, Dict]]]:
|
|
|
|
return[
|
|
|
|
[("render_GET", "/{game}/{version}/{endpoint:.*?}", {'game': R'S...'})], # TODO: Slim this down to only the news stuff
|
|
|
|
[]
|
|
|
|
]
|
|
|
|
|
|
|
|
def get_allnet_info(self, game_code: str, game_ver: int, keychip: str) -> Tuple[str, str]:
|
2023-04-24 01:04:52 +00:00
|
|
|
hostname = (
|
2023-11-09 02:17:48 +00:00
|
|
|
self.core_cfg.title.hostname
|
|
|
|
if not self.game_cfg.server.hostname
|
|
|
|
else self.game_cfg.server.hostname
|
2023-04-24 01:04:52 +00:00
|
|
|
)
|
2023-04-23 08:38:28 +00:00
|
|
|
return (
|
|
|
|
f"",
|
2023-11-09 02:17:48 +00:00
|
|
|
f"{hostname}:{self.game_cfg.ports.userdb}",
|
2023-04-23 08:38:28 +00:00
|
|
|
)
|
|
|
|
|
2023-04-24 01:04:52 +00:00
|
|
|
def setup(self):
|
2023-04-23 08:38:28 +00:00
|
|
|
for key in self.game_cfg.rsa_keys:
|
|
|
|
if "N" not in key or "d" not in key or "e" not in key:
|
|
|
|
self.logger.error(f"Invalid IDZ key {key}")
|
|
|
|
continue
|
|
|
|
|
|
|
|
hashN = self.rsaHashKeyN(str(key["N"]).encode())
|
|
|
|
self.rsa_keys.append(IDZKey(key["N"], key["d"], key["e"], hashN))
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
if len(self.rsa_keys) <= 0:
|
|
|
|
self.logger.error("No valid RSA keys provided! IDZ cannot start!")
|
|
|
|
return
|
|
|
|
|
|
|
|
handler_map = [{} for _ in range(IDZConstants.NUM_VERS)]
|
|
|
|
handler_mod = mod = importlib.import_module(f"titles.idz.handlers")
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
for cls_name in dir(handler_mod):
|
|
|
|
if cls_name.startswith("__"):
|
|
|
|
continue
|
|
|
|
|
|
|
|
try:
|
|
|
|
mod = getattr(handler_mod, cls_name)
|
|
|
|
mod_cmds: List = getattr(mod, "cmd_codes")
|
|
|
|
while len(mod_cmds) < IDZConstants.NUM_VERS:
|
|
|
|
mod_cmds.append(None)
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
for i in range(len(mod_cmds)):
|
|
|
|
if mod_cmds[i] is None:
|
|
|
|
mod_cmds[i] = mod_cmds[i - 1]
|
|
|
|
|
|
|
|
handler_map[i][mod_cmds[i]] = mod
|
|
|
|
|
|
|
|
except AttributeError as e:
|
|
|
|
continue
|
|
|
|
|
2023-04-24 01:04:52 +00:00
|
|
|
endpoints.serverFromString(
|
|
|
|
reactor,
|
|
|
|
f"tcp:{self.game_cfg.ports.userdb}:interface={self.core_cfg.server.listen_address}",
|
|
|
|
).listen(
|
|
|
|
IDZUserDBFactory(self.core_cfg, self.game_cfg, self.rsa_keys, handler_map)
|
|
|
|
)
|
|
|
|
|
|
|
|
reactor.listenUDP(
|
|
|
|
self.game_cfg.ports.echo, IDZEcho(self.core_cfg, self.game_cfg)
|
|
|
|
)
|
|
|
|
reactor.listenUDP(
|
|
|
|
self.game_cfg.ports.echo + 1, IDZEcho(self.core_cfg, self.game_cfg)
|
|
|
|
)
|
|
|
|
reactor.listenUDP(
|
|
|
|
self.game_cfg.ports.match, IDZEcho(self.core_cfg, self.game_cfg)
|
|
|
|
)
|
|
|
|
reactor.listenUDP(
|
|
|
|
self.game_cfg.ports.userdb + 1, IDZEcho(self.core_cfg, self.game_cfg)
|
|
|
|
)
|
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
self.logger.info(f"UserDB Listening on port {self.game_cfg.ports.userdb}")
|
|
|
|
|
2023-11-09 02:17:48 +00:00
|
|
|
def render_GET(self, request: Request, game_code: str, matchers: Dict) -> bytes:
|
|
|
|
url_path = matchers['endpoint']
|
2023-04-24 01:04:52 +00:00
|
|
|
self.logger.info(f"IDZ GET request: {url_path}")
|
|
|
|
request.responseHeaders.setRawHeaders(
|
|
|
|
"Content-Type", [b"text/plain; charset=utf-8"]
|
|
|
|
)
|
|
|
|
request.responseHeaders.setRawHeaders(
|
|
|
|
"Last-Modified", [b"Sun, 23 Apr 2023 05:33:20 GMT"]
|
|
|
|
)
|
|
|
|
|
|
|
|
news = (
|
|
|
|
self.game_cfg.server.news
|
|
|
|
if self.game_cfg.server.news
|
|
|
|
else f"Welcome to Initial D Arcade Stage Zero on {self.core_cfg.server.name}!"
|
|
|
|
)
|
2023-04-23 08:38:28 +00:00
|
|
|
news += "\r\n"
|
|
|
|
news = "1979/01/01 00:00:00 2099/12/31 23:59:59 " + news
|
|
|
|
|
|
|
|
return news.encode()
|