2024-01-09 08:07:04 +00:00
|
|
|
from starlette.requests import Request
|
|
|
|
from starlette.routing import Route
|
|
|
|
from starlette.responses import Response
|
2023-02-17 06:02:21 +00:00
|
|
|
import json
|
|
|
|
import inflection
|
|
|
|
import yaml
|
|
|
|
import string
|
2023-03-15 20:03:22 +00:00
|
|
|
import logging
|
|
|
|
import coloredlogs
|
2023-02-17 06:02:21 +00:00
|
|
|
import zlib
|
|
|
|
from logging.handlers import TimedRotatingFileHandler
|
2023-09-09 16:03:42 +00:00
|
|
|
from Crypto.Cipher import AES
|
|
|
|
from Crypto.Util.Padding import pad
|
|
|
|
from Crypto.Protocol.KDF import PBKDF2
|
|
|
|
from Crypto.Hash import SHA1
|
2023-03-05 02:39:38 +00:00
|
|
|
from os import path
|
2023-11-09 02:17:48 +00:00
|
|
|
from typing import Tuple, Dict, List
|
2023-02-17 06:02:21 +00:00
|
|
|
|
|
|
|
from core.config import CoreConfig
|
2023-07-12 09:25:46 +00:00
|
|
|
from core.utils import Utils
|
2023-11-09 02:17:48 +00:00
|
|
|
from core.title import BaseServlet
|
|
|
|
from .config import OngekiConfig
|
|
|
|
from .const import OngekiConstants
|
|
|
|
from .base import OngekiBase
|
|
|
|
from .plus import OngekiPlus
|
|
|
|
from .summer import OngekiSummer
|
|
|
|
from .summerplus import OngekiSummerPlus
|
|
|
|
from .red import OngekiRed
|
|
|
|
from .redplus import OngekiRedPlus
|
|
|
|
from .bright import OngekiBright
|
|
|
|
from .brightmemory import OngekiBrightMemory
|
|
|
|
|
|
|
|
|
|
|
|
class OngekiServlet(BaseServlet):
|
2023-02-17 06:02:21 +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-02-17 06:02:21 +00:00
|
|
|
self.game_cfg = OngekiConfig()
|
2023-09-09 16:03:42 +00:00
|
|
|
self.hash_table: Dict[Dict[str, str]] = {}
|
2023-03-05 02:58:51 +00:00
|
|
|
if path.exists(f"{cfg_dir}/{OngekiConstants.CONFIG_NAME}"):
|
2023-03-09 16:38:58 +00:00
|
|
|
self.game_cfg.update(
|
|
|
|
yaml.safe_load(open(f"{cfg_dir}/{OngekiConstants.CONFIG_NAME}"))
|
|
|
|
)
|
2023-02-17 06:02:21 +00:00
|
|
|
|
|
|
|
self.versions = [
|
|
|
|
OngekiBase(core_cfg, self.game_cfg),
|
|
|
|
OngekiPlus(core_cfg, self.game_cfg),
|
|
|
|
OngekiSummer(core_cfg, self.game_cfg),
|
|
|
|
OngekiSummerPlus(core_cfg, self.game_cfg),
|
|
|
|
OngekiRed(core_cfg, self.game_cfg),
|
|
|
|
OngekiRedPlus(core_cfg, self.game_cfg),
|
|
|
|
OngekiBright(core_cfg, self.game_cfg),
|
2023-03-03 05:00:22 +00:00
|
|
|
OngekiBrightMemory(core_cfg, self.game_cfg),
|
2023-02-17 06:02:21 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
self.logger = logging.getLogger("ongeki")
|
|
|
|
|
2023-09-09 16:03:42 +00:00
|
|
|
if not hasattr(self.logger, "inited"):
|
|
|
|
log_fmt_str = "[%(asctime)s] Ongeki | %(levelname)s | %(message)s"
|
|
|
|
log_fmt = logging.Formatter(log_fmt_str)
|
|
|
|
fileHandler = TimedRotatingFileHandler(
|
|
|
|
"{0}/{1}.log".format(self.core_cfg.server.log_dir, "ongeki"),
|
|
|
|
encoding="utf8",
|
|
|
|
when="d",
|
|
|
|
backupCount=10,
|
|
|
|
)
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-09-09 16:03:42 +00:00
|
|
|
fileHandler.setFormatter(log_fmt)
|
2023-02-17 06:02:21 +00:00
|
|
|
|
2023-09-09 16:03:42 +00:00
|
|
|
consoleHandler = logging.StreamHandler()
|
|
|
|
consoleHandler.setFormatter(log_fmt)
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-09-09 16:03:42 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
for version, keys in self.game_cfg.crypto.keys.items():
|
|
|
|
if len(keys) < 3:
|
|
|
|
continue
|
|
|
|
|
|
|
|
self.hash_table[version] = {}
|
|
|
|
|
|
|
|
method_list = [
|
|
|
|
method
|
|
|
|
for method in dir(self.versions[version])
|
|
|
|
if not method.startswith("__")
|
|
|
|
]
|
|
|
|
for method in method_list:
|
|
|
|
method_fixed = inflection.camelize(method)[6:-7]
|
|
|
|
# number of iterations is 64 on Bright Memory
|
|
|
|
iter_count = 64
|
|
|
|
hash = PBKDF2(
|
|
|
|
method_fixed,
|
|
|
|
bytes.fromhex(keys[2]),
|
|
|
|
128,
|
|
|
|
count=iter_count,
|
|
|
|
hmac_hash_module=SHA1,
|
|
|
|
)
|
|
|
|
|
|
|
|
hashed_name = hash.hex()[:32] # truncate unused bytes like the game does
|
|
|
|
self.hash_table[version][hashed_name] = method_fixed
|
|
|
|
|
|
|
|
self.logger.debug(
|
|
|
|
f"Hashed v{version} method {method_fixed} with {bytes.fromhex(keys[2])} to get {hash.hex()[:32]}"
|
|
|
|
)
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-03-05 02:39:38 +00:00
|
|
|
@classmethod
|
2023-11-09 02:17:48 +00:00
|
|
|
def is_game_enabled(cls, game_code: str, core_cfg: CoreConfig, cfg_dir: str) -> bool:
|
2023-03-05 02:39:38 +00:00
|
|
|
game_cfg = OngekiConfig()
|
2023-03-05 02:58:51 +00:00
|
|
|
|
|
|
|
if path.exists(f"{cfg_dir}/{OngekiConstants.CONFIG_NAME}"):
|
2023-03-09 16:38:58 +00:00
|
|
|
game_cfg.update(
|
|
|
|
yaml.safe_load(open(f"{cfg_dir}/{OngekiConstants.CONFIG_NAME}"))
|
|
|
|
)
|
2023-03-05 02:39:38 +00:00
|
|
|
|
|
|
|
if not game_cfg.server.enable:
|
2023-11-09 02:17:48 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2024-01-09 08:07:04 +00:00
|
|
|
def get_routes(self) -> List[Route]:
|
|
|
|
return [
|
|
|
|
Route("/SDDT/{version:int}/{endpoint:str}", self.render_POST, methods=['POST'])
|
|
|
|
]
|
2023-11-09 02:17:48 +00:00
|
|
|
|
|
|
|
def get_allnet_info(self, game_code: str, game_ver: int, keychip: str) -> Tuple[str, str]:
|
2023-11-09 02:42:53 +00:00
|
|
|
title_port_int = Utils.get_title_port(self.core_cfg)
|
2024-01-09 22:49:18 +00:00
|
|
|
title_port_ssl_int = Utils.get_title_port_ssl(self.core_cfg)
|
2023-11-09 02:42:53 +00:00
|
|
|
proto = "https" if self.game_cfg.server.use_https and game_ver >= 120 else "http"
|
2024-01-09 22:49:18 +00:00
|
|
|
|
|
|
|
if proto == "https":
|
|
|
|
t_port = f":{title_port_ssl_int}" if title_port_ssl_int != 443 else ""
|
|
|
|
|
|
|
|
else:
|
|
|
|
t_port = f":{title_port_int}" if title_port_int != 80 else ""
|
2023-03-09 16:38:58 +00:00
|
|
|
|
|
|
|
return (
|
2024-01-09 22:49:18 +00:00
|
|
|
f"{proto}://{self.core_cfg.title.hostname}{t_port}/{game_code}/{game_ver}/",
|
|
|
|
f"{self.core_cfg.title.hostname}{t_port}/",
|
2023-03-09 16:38:58 +00:00
|
|
|
)
|
2023-02-17 06:02:21 +00:00
|
|
|
|
2024-01-09 22:49:18 +00:00
|
|
|
|
2024-01-09 08:07:04 +00:00
|
|
|
async def render_POST(self, request: Request) -> bytes:
|
|
|
|
endpoint: str = request.path_params.get('endpoint', '')
|
|
|
|
version: int = request.path_params.get('version', 0)
|
2023-11-09 02:17:48 +00:00
|
|
|
if endpoint.lower() == "ping":
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"returnCode": 1}'))
|
2023-03-09 15:52:49 +00:00
|
|
|
|
2024-01-09 08:07:04 +00:00
|
|
|
req_raw = await request.body()
|
2023-09-09 16:03:42 +00:00
|
|
|
encrtped = False
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = 0
|
2023-07-12 09:25:46 +00:00
|
|
|
client_ip = Utils.get_ip_addr(request)
|
2023-02-17 06:02:21 +00:00
|
|
|
|
2023-03-09 16:38:58 +00:00
|
|
|
if version < 105: # 1.0
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI
|
2023-03-09 16:38:58 +00:00
|
|
|
elif version >= 105 and version < 110: # Plus
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI_PLUS
|
2023-03-09 16:38:58 +00:00
|
|
|
elif version >= 110 and version < 115: # Summer
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI_SUMMER
|
2023-03-09 16:38:58 +00:00
|
|
|
elif version >= 115 and version < 120: # Summer Plus
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI_SUMMER_PLUS
|
2023-03-09 16:38:58 +00:00
|
|
|
elif version >= 120 and version < 125: # Red
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI_RED
|
2023-03-09 16:38:58 +00:00
|
|
|
elif version >= 125 and version < 130: # Red Plus
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI_RED_PLUS
|
2023-03-09 16:38:58 +00:00
|
|
|
elif version >= 130 and version < 135: # Bright
|
2023-02-17 06:02:21 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI_BRIGHT
|
2023-03-09 16:38:58 +00:00
|
|
|
elif version >= 135 and version < 140: # Bright Memory
|
2023-03-03 05:00:22 +00:00
|
|
|
internal_ver = OngekiConstants.VER_ONGEKI_BRIGHT_MEMORY
|
2023-02-17 06:02:21 +00:00
|
|
|
|
|
|
|
if all(c in string.hexdigits for c in endpoint) and len(endpoint) == 32:
|
2023-03-09 16:38:58 +00:00
|
|
|
# If we get a 32 character long hex string, it's a hash and we're
|
|
|
|
# doing encrypted. The likelyhood of false positives is low but
|
2023-02-17 06:02:21 +00:00
|
|
|
# technically not 0
|
2023-09-09 16:03:42 +00:00
|
|
|
if internal_ver not in self.hash_table:
|
|
|
|
self.logger.error(
|
|
|
|
f"v{version} does not support encryption or no keys entered"
|
|
|
|
)
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"stat": "0"}'))
|
2023-09-09 16:03:42 +00:00
|
|
|
|
|
|
|
elif endpoint.lower() not in self.hash_table[internal_ver]:
|
|
|
|
self.logger.error(
|
|
|
|
f"No hash found for v{version} endpoint {endpoint}"
|
|
|
|
)
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"stat": "0"}'))
|
2023-09-09 16:03:42 +00:00
|
|
|
|
|
|
|
endpoint = self.hash_table[internal_ver][endpoint.lower()]
|
|
|
|
|
|
|
|
try:
|
|
|
|
crypt = AES.new(
|
|
|
|
bytes.fromhex(self.game_cfg.crypto.keys[internal_ver][0]),
|
|
|
|
AES.MODE_CBC,
|
|
|
|
bytes.fromhex(self.game_cfg.crypto.keys[internal_ver][1]),
|
|
|
|
)
|
|
|
|
|
|
|
|
req_raw = crypt.decrypt(req_raw)
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
self.logger.error(
|
|
|
|
f"Failed to decrypt v{version} request to {endpoint} -> {e}"
|
|
|
|
)
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"stat": "0"}'))
|
2023-09-09 16:03:42 +00:00
|
|
|
|
|
|
|
encrtped = True
|
|
|
|
|
|
|
|
if (
|
|
|
|
not encrtped
|
|
|
|
and self.game_cfg.crypto.encrypted_only
|
2023-11-09 05:10:19 +00:00
|
|
|
and version >= 120
|
2023-09-09 16:03:42 +00:00
|
|
|
):
|
|
|
|
self.logger.error(
|
|
|
|
f"Unencrypted v{version} {endpoint} request, but config is set to encrypted only: {req_raw}"
|
|
|
|
)
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"stat": "0"}'))
|
2023-02-17 06:02:21 +00:00
|
|
|
|
2023-03-09 16:38:58 +00:00
|
|
|
try:
|
2023-02-17 06:02:21 +00:00
|
|
|
unzip = zlib.decompress(req_raw)
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-02-17 06:02:21 +00:00
|
|
|
except zlib.error as e:
|
2023-03-09 16:38:58 +00:00
|
|
|
self.logger.error(
|
|
|
|
f"Failed to decompress v{version} {endpoint} request -> {e}"
|
|
|
|
)
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"stat": "0"}'))
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-02-17 06:02:21 +00:00
|
|
|
req_data = json.loads(unzip)
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-07-12 09:25:46 +00:00
|
|
|
self.logger.info(
|
|
|
|
f"v{version} {endpoint} request from {client_ip}"
|
|
|
|
)
|
|
|
|
self.logger.debug(req_data)
|
2023-02-17 06:02:21 +00:00
|
|
|
|
|
|
|
func_to_find = "handle_" + inflection.underscore(endpoint) + "_request"
|
|
|
|
|
2023-03-09 16:29:36 +00:00
|
|
|
if not hasattr(self.versions[internal_ver], func_to_find):
|
|
|
|
self.logger.warning(f"Unhandled v{version} request {endpoint}")
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"returnCode": 1}'))
|
2023-03-09 16:29:36 +00:00
|
|
|
|
2023-02-17 06:02:21 +00:00
|
|
|
try:
|
|
|
|
handler = getattr(self.versions[internal_ver], func_to_find)
|
2024-01-09 08:07:04 +00:00
|
|
|
resp = await handler(req_data)
|
2023-02-17 06:02:21 +00:00
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
self.logger.error(f"Error handling v{version} method {endpoint} - {e}")
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zlib.compress(b'{"stat": "0"}'))
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-02-17 06:02:21 +00:00
|
|
|
if resp == None:
|
2023-03-09 16:38:58 +00:00
|
|
|
resp = {"returnCode": 1}
|
2023-02-17 06:02:21 +00:00
|
|
|
|
2023-07-12 09:25:46 +00:00
|
|
|
self.logger.debug(f"Response {resp}")
|
2023-02-17 06:02:21 +00:00
|
|
|
|
2023-09-09 16:03:42 +00:00
|
|
|
zipped = zlib.compress(json.dumps(resp, ensure_ascii=False).encode("utf-8"))
|
|
|
|
|
2023-11-13 15:47:39 +00:00
|
|
|
if not encrtped or version < 120:
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(zipped)
|
2023-09-09 16:03:42 +00:00
|
|
|
|
|
|
|
padded = pad(zipped, 16)
|
|
|
|
|
|
|
|
crypt = AES.new(
|
|
|
|
bytes.fromhex(self.game_cfg.crypto.keys[internal_ver][0]),
|
|
|
|
AES.MODE_CBC,
|
|
|
|
bytes.fromhex(self.game_cfg.crypto.keys[internal_ver][1]),
|
|
|
|
)
|
|
|
|
|
2024-01-09 08:07:04 +00:00
|
|
|
return Response(crypt.encrypt(padded))
|