tcp-proxy.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. #!/usr/bin/env python3
  2. import sys
  3. import re
  4. from twisted.internet import defer
  5. from twisted.internet import protocol
  6. from twisted.internet import reactor
  7. from twisted.internet import task
  8. from twisted.python import log
  9. from twisted.python.logfile import DailyLogFile
  10. import pendulum
  11. from subprocess import check_output
  12. from colorama import Fore, Back, Style
  13. from pprint import pformat
  14. # This isn't the best configuration, but it's simple
  15. # and works. Mostly.
  16. try:
  17. from config_dev import *
  18. except ModuleNotFoundError:
  19. from config import *
  20. # Extract the version information from git.
  21. # The match gives us only tags starting with v[0-9]* Using anything else trips up on double digits.
  22. version = check_output(
  23. [
  24. "git",
  25. "describe",
  26. "--abbrev=8",
  27. "--long",
  28. "--tags",
  29. "--dirty",
  30. "--always",
  31. "--match",
  32. "v[0-9]*",
  33. ],
  34. universal_newlines=True,
  35. ).strip()
  36. def merge(color_string):
  37. """ Given a string of colorama ANSI, merge them if you can. """
  38. return color_string.replace("m\x1b[", ";")
  39. # https://en.wikipedia.org/wiki/ANSI_escape_code
  40. # Cleans all ANSI
  41. cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
  42. # Looks for ANSI (that should be considered to be a newline)
  43. # This needs to see what is send when something enters / leaves
  44. # the player's current sector. (That doesn't work/isn't
  45. # detected. NNY!) It is "\x1b[K" Erase in Line!
  46. makeNL = re.compile(r"\x1b\[[0-9;]*[JK]")
  47. def treatAsNL(line):
  48. """ Replace any ANSI codes that would be better understood as newlines. """
  49. global makeNL
  50. return makeNL.sub("\n", line)
  51. def cleanANSI(line):
  52. """ Remove all ANSI codes. """
  53. global cleaner
  54. return cleaner.sub("", line)
  55. # return re.sub(r'\x1b\[([0-9,A-Z]{1,2}(;[0-9]{1,2})?(;[0-9]{3})?)?[m|K]?', '', line)
  56. from observer import Observer
  57. from flexible import PlayerInput, ProxyMenu
  58. class Game(protocol.Protocol):
  59. def __init__(self):
  60. self.buffer = ""
  61. self.game = None
  62. self.usergame = (None, None)
  63. self.to_player = True
  64. def connectionMade(self):
  65. log.msg("Connected to Game Server")
  66. self.queue_player = self.factory.queue_player
  67. self.queue_game = self.factory.queue_game
  68. self.observer = self.factory.observer
  69. self.factory.game = self
  70. self.setPlayerReceived()
  71. self.observer.connect("user-game", self.show_game)
  72. def show_game(self, game):
  73. self.usergame = game
  74. log.msg("## User-Game:", game)
  75. if game[1] is None:
  76. if hasattr(self, "portdata"):
  77. log.msg("Clearing out old portdata.")
  78. self.portdata = {}
  79. if hasattr(self, "warpdata"):
  80. log.msg("Clearing out old warpdata.")
  81. self.warpdata = {}
  82. def setPlayerReceived(self):
  83. """ Get deferred from client queue, callback clientDataReceived. """
  84. self.queue_player.get().addCallback(self.playerDataReceived)
  85. def playerDataReceived(self, chunk):
  86. if chunk is False:
  87. self.queue_player = None
  88. log.msg("Player: disconnected, close connection to game")
  89. # I don't believe I need this if I'm using protocol.Factory
  90. self.factory.continueTrying = False
  91. self.transport.loseConnection()
  92. else:
  93. # Pass received data to the server
  94. if type(chunk) == str:
  95. self.transport.write(chunk.encode())
  96. log.msg(">> [{0}]".format(chunk))
  97. else:
  98. self.transport.write(chunk)
  99. log.msg(">> [{0}]".format(chunk.decode("utf-8", "ignore")))
  100. self.setPlayerReceived()
  101. def lineReceived(self, line):
  102. """ line received from the game. """
  103. if LOG_LINES:
  104. log.msg("<< [{0}]".format(line))
  105. # if "TWGS v2.20b" in line and "www.eisonline.com" in line:
  106. # I would still love to "inject" this into the stream
  107. # so it is consistent.
  108. # self.queue_game.put(
  109. # "TWGS Proxy build "
  110. # + version
  111. # + " is active. \x1b[1;34m~\x1b[0m to activate.\n\r\n\r",
  112. # )
  113. if "TradeWars Game Server" in line and "Copyright (C) EIS" in line:
  114. # We are not in a game
  115. if not self.game is None:
  116. # We were in a game.
  117. self.game = None
  118. self.observer.emit("user-game", (self.factory.player.user, self.game))
  119. if "Selection (? for menu): " in line:
  120. game = line[-1]
  121. if game >= "A" and game < "Q":
  122. self.game = game
  123. log.msg("Game: {0}".format(self.game))
  124. self.observer.emit("user-game", (self.factory.player.user, self.game))
  125. self.observer.emit("game-line", line)
  126. def getPrompt(self):
  127. """ Return the current prompt, stripped of ANSI. """
  128. return cleanANSI(self.buffer)
  129. def dataReceived(self, chunk):
  130. """ Data received from the Game.
  131. Remove backspaces.
  132. Treat some ANSI codes as NewLine.
  133. Remove ANSI.
  134. Break into lines.
  135. Trim out carriage returns.
  136. Call lineReceived().
  137. "Optionally" pass data to player.
  138. FUTURE: trigger on prompt. [cleanANSI(buffer)]
  139. """
  140. # Store the text into the buffer before we inject into it.
  141. self.buffer += chunk.decode("utf-8", "ignore")
  142. # log.msg("data: [{0}]".format(repr(chunk)))
  143. if b"TWGS v2.20b" in chunk and b"www.eisonline.com" in chunk:
  144. # Ok, we have a possible target.
  145. target = b"www.eisonline.com\n\r"
  146. pos = chunk.find(target)
  147. if pos != -1:
  148. # Found it! Inject!
  149. message = (
  150. "TWGS Proxy build " + version + ". ~ to activate in game.\n\r"
  151. )
  152. chunk = (
  153. chunk[0 : pos + len(target)]
  154. + message.encode()
  155. + chunk[pos + len(target) :]
  156. )
  157. # Sequence error:
  158. # If I don't put the chunk(I received) to the player.
  159. # anything I display -- lineReceive() put() ... would
  160. # be out of order. (I'd be responding -- before it
  161. # was displayed to the user.)
  162. if self.to_player:
  163. self.queue_game.put(chunk)
  164. # self.buffer += chunk.decode("utf-8", "ignore")
  165. #
  166. # Begin processing the buffer
  167. #
  168. # Process any backspaces
  169. while "\b" in self.buffer:
  170. part = self.buffer.partition("\b")
  171. self.buffer = part[0][:-1] + part[2]
  172. # Treat some ANSI codes as a newline
  173. self.buffer = treatAsNL(self.buffer)
  174. # Break into lines
  175. while "\n" in self.buffer:
  176. part = self.buffer.partition("\n")
  177. line = part[0].replace("\r", "")
  178. # Clean ANSI codes from line
  179. line = cleanANSI(line)
  180. self.lineReceived(line)
  181. self.buffer = part[2]
  182. self.observer.emit("prompt", self.getPrompt())
  183. def connectionLost(self, why):
  184. log.msg("Game connectionLost because: %s" % why)
  185. self.observer.emit("close", why)
  186. self.queue_game.put(False)
  187. self.transport.loseConnection()
  188. class GlueFactory(protocol.ClientFactory):
  189. # class GlueFactory(protocol.Factory):
  190. maxDelay = 10
  191. protocol = Game
  192. def __init__(self, player):
  193. self.player = player
  194. self.queue_player = player.queue_player
  195. self.queue_game = player.queue_game
  196. self.observer = player.observer
  197. self.game = None
  198. def closeIt(self):
  199. log.msg("closeIt")
  200. self.queue_game.put(False)
  201. def getUser(self, user):
  202. log.msg("getUser( %s )" % user)
  203. self.twgs.logUser(user)
  204. # This was needed when I replaced ClientFactory with Factory.
  205. # def clientConnectionLost(self, connector, why):
  206. # log.msg("clientconnectionlost: %s" % why)
  207. # self.queue_client.put(False)
  208. def clientConnectionFailed(self, connector, why):
  209. log.msg("connection to game failed: %s" % why)
  210. self.queue_game.put(b"Sorry! I'm Unable to connect to the game server.\r\n")
  211. # syncterm gets cranky/locks up if we close this here.
  212. # (Because it is still sending rlogin information?)
  213. reactor.callLater(2, self.closeIt)
  214. class Player(protocol.Protocol):
  215. def __init__(self):
  216. self.buffer = ""
  217. self.user = None
  218. self.observer = Observer()
  219. self.game = None
  220. self.glue = None
  221. def connectionMade(self):
  222. """ connected, setup queues.
  223. queue_player is data from player.
  224. queue_game is data to player. (possibly from game)
  225. """
  226. self.queue_player = defer.DeferredQueue()
  227. self.queue_game = defer.DeferredQueue()
  228. self.setGameReceived()
  229. # Connect GlueFactory to this Player object.
  230. factory = GlueFactory(self)
  231. self.glue = factory
  232. # Make connection to the game server
  233. reactor.connectTCP(HOST, PORT, factory, 5)
  234. def setGameReceived(self):
  235. """ Get deferred from client queue, callback clientDataReceived. """
  236. self.queue_game.get().addCallback(self.gameDataReceived)
  237. def gameDataReceived(self, chunk):
  238. """ Data received from the game. """
  239. # If we have received game data, it has to be connected.
  240. if self.game is None:
  241. self.game = self.glue.game
  242. if chunk is False:
  243. self.transport.loseConnection()
  244. else:
  245. if type(chunk) == bytes:
  246. self.transport.write(chunk)
  247. elif type(chunk) == str:
  248. self.transport.write(chunk.encode())
  249. else:
  250. log.err("gameDataReceived: type (%s) given!".format(type(chunk)))
  251. self.transport.write(chunk)
  252. self.setGameReceived()
  253. def dataReceived(self, chunk):
  254. if self.user is None:
  255. self.buffer += chunk.decode("utf-8", "ignore")
  256. parts = self.buffer.split("\x00")
  257. if len(parts) >= 5:
  258. # rlogin we have the username
  259. self.user = parts[1]
  260. log.msg("User: {0}".format(self.user))
  261. zpos = self.buffer.rindex("\x00")
  262. self.buffer = self.buffer[zpos + 1 :]
  263. # but I don't need the buffer anymore, so:
  264. self.buffer = ""
  265. # Pass user value on to whatever needs it.
  266. self.observer.emit("user", self.user)
  267. # Unfortunately, the ones interested in this don't exist yet.
  268. if not self.observer.emit("player", chunk):
  269. # Was not dispatched. Send to game.
  270. self.queue_player.put(chunk)
  271. else:
  272. # There's an observer. Don't continue.
  273. return
  274. if chunk == b"~":
  275. prompt = self.game.getPrompt()
  276. # Selection (? for menu): (the game server menu)
  277. # Enter your choice: (game menu)
  278. # Command [TL=00:00:00]:[1800] (?=Help)? : <- YES!
  279. # Computer command [TL=00:00:00]:[613] (?=Help)?
  280. # (and others I've yet to see...)
  281. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  282. menu = ProxyMenu(self.game)
  283. else:
  284. nl = "\n\r"
  285. r = Style.RESET_ALL
  286. log.msg("NNY!")
  287. prompt = self.game.buffer
  288. self.queue_game.put(
  289. r
  290. + nl
  291. + Style.BRIGHT
  292. + "Proxy:"
  293. + Style.RESET_ALL
  294. + " I can't activate at this time."
  295. + nl
  296. )
  297. self.queue_game.put(prompt)
  298. self.queue_player.put("\a")
  299. # self.observer.emit("notyet", prompt)
  300. def connectionLost(self, why):
  301. log.msg("lost connection %s" % why)
  302. self.observer.emit("close", why)
  303. self.queue_player.put(False)
  304. def connectionFailed(self, why):
  305. log.msg("connectionFailed: %s" % why)
  306. if __name__ == "__main__":
  307. if LOGFILE:
  308. log.startLogging(DailyLogFile("proxy.log", "."))
  309. else:
  310. log.startLogging(sys.stdout)
  311. log.msg("This is version: %s" % version)
  312. factory = protocol.Factory()
  313. factory.protocol = Player
  314. reactor.listenTCP(LISTEN_PORT, factory, interface=LISTEN_ON)
  315. reactor.run()