session.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. #include <boost/bind.hpp>
  2. #include <iostream>
  3. #include <boost/format.hpp>
  4. // #include <boost/log/core.hpp>
  5. // #include <boost/log/trivial.hpp>
  6. #include <regex>
  7. #include "config.h"
  8. #include "logging.h"
  9. #include "session.h"
  10. #include <string>
  11. // #include <boost/log/attributes/named_scope.hpp>
  12. bool replace(std::string &str, const std::string &from, const std::string &to) {
  13. size_t start_pos = str.find(from);
  14. if (start_pos == std::string::npos)
  15. return false;
  16. do {
  17. str.replace(start_pos, from.length(), to);
  18. } while ((start_pos = str.find(from)) != std::string::npos);
  19. return true;
  20. }
  21. bool replace(std::string &str, const char *from, const char *to) {
  22. size_t start_pos = str.find(from);
  23. if (start_pos == std::string::npos)
  24. return false;
  25. do {
  26. str.replace(start_pos, strlen(from), to);
  27. } while ((start_pos = str.find(from)) != std::string::npos);
  28. return true;
  29. }
  30. void ansi_clean(std::string &str) {
  31. static std::regex ansi_cleaner("\x1b\[[0-9;]*[A-Zmh]",
  32. std::regex_constants::ECMAScript);
  33. str = std::regex_replace(str, ansi_cleaner, "");
  34. }
  35. void high_ascii(std::string &str) {
  36. static std::regex high_cleaner("[\x80-\xff]+",
  37. std::regex_constants::ECMAScript);
  38. str = std::regex_replace(str, high_cleaner, "#");
  39. }
  40. std::smatch ansi_newline(const std::string &str) {
  41. static std::regex ansi_nl("\x1b\[[0-9;]*[JK]",
  42. std::regex_constants::ECMAScript);
  43. std::smatch m;
  44. std::regex_search(str, m, ansi_nl);
  45. return m;
  46. }
  47. std::string clean_string(const std::string &source) {
  48. // BOOST_LOG_NAMED_SCOPE("clean_string");
  49. std::string clean = source;
  50. replace(clean, "\n", "\\n");
  51. replace(clean, "\r", "\\r");
  52. replace(clean, "\b", "\\b");
  53. // ANSI too
  54. ansi_clean(clean);
  55. // BUGZ_LOG(error) << "cleaned: " << clean;
  56. high_ascii(clean);
  57. replace(clean, "\x1b", "^");
  58. return clean;
  59. }
  60. Session::Session(boost::asio::ip::tcp::socket socket,
  61. boost::asio::io_service &io_service, std::string hostname,
  62. std::string port)
  63. : socket_(std::move(socket)), io_service_{io_service},
  64. resolver_{io_service}, server_{io_service}, prompt_timer_{io_service},
  65. keep_alive_{io_service}, host{hostname}, port{port} {
  66. // server_sent = 0;
  67. time_ms = stoi(from_config("prompt_timeout", "50"));
  68. keepalive_secs = stoi(from_config("keepalive", "45"));
  69. // director.push(new CoreDispatch((*this)));
  70. }
  71. void Session::start(void) {
  72. // BOOST_LOG_NAMED_SCOPE();
  73. // If I want the file and line number information, here's how to do it:
  74. // BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
  75. BUGZ_LOG(info) << "Session::start()";
  76. auto self(shared_from_this());
  77. // read_buffer.reserve(1024);
  78. // do_write("Welcome!\n");
  79. client_read();
  80. }
  81. Session::~Session() { BUGZ_LOG(info) << "~Session"; }
  82. /**
  83. * Returns the current server prompt.
  84. *
  85. * NOTE: This is the raw string from the server, so it can contain
  86. * color codes. Make sure you clean it before trying to test it for
  87. * any text.
  88. *
  89. * @return const std::string&
  90. */
  91. const std::string &Session::get_prompt(void) { return server_prompt; }
  92. void Session::parse_auth(void) {
  93. // how many nulls should I be seeing?
  94. // \0user\0pass\0terminal/SPEED\0
  95. // If I don't have a proper rlogin value here, it isn't going
  96. // to work when I try to connect to the rlogin server.
  97. if (rlogin_auth.size() > 10)
  98. rlogin_name = rlogin_auth.c_str() + 1;
  99. else
  100. rlogin_name = "?";
  101. }
  102. void Session::on_connect(const boost::system::error_code error) {
  103. // We've connected to the server! WOOT WOOT!
  104. // BOOST_LOG_NAMED_SCOPE("Session");
  105. if (!error) {
  106. BUGZ_LOG(info) << "Connected to " << host;
  107. to_client("Connected...\n\r");
  108. connected = true;
  109. if (rlogin_auth[0] != 0) {
  110. // Ok, the rlogin information was junk --
  111. to_client("Let me make up some fake rlogin data for you...\n\r");
  112. char temp[] = "\0test\0test\0terminal/9600\0";
  113. std::string tmp(temp, sizeof(temp));
  114. to_server(tmp);
  115. } else {
  116. to_server(rlogin_auth);
  117. }
  118. server_read();
  119. } else {
  120. // TODO:
  121. std::string output =
  122. str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
  123. to_client(output);
  124. BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
  125. BUGZ_LOG(warning) << "socket.shutdown()";
  126. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  127. }
  128. }
  129. /**
  130. * Called with the current line received from the server.
  131. *
  132. * This will do server parsing. Sector/Ports/Connecting Sectors.
  133. * Port status/inventory/%.
  134. *
  135. * See \ref split_lines()
  136. * @param line
  137. */
  138. void Session::on_server_line(const std::string &line) {
  139. BUGZ_LOG(info) << "SL: [" << line << "]";
  140. if (line.find("TradeWars Game Server ") != std::string::npos) {
  141. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  142. game = 0;
  143. // reset "active game" -- we're back at the menu
  144. }
  145. // additional analysis needed here
  146. // state : where are we, what is this line?
  147. // collect all data we can from the server. (P1)
  148. // "Selection (? for menu): ?"
  149. // This gives us the current game that we're in.
  150. // (excluding ?, #, ! and Q)
  151. if (line.find("Selection (? for menu): ") != std::string::npos) {
  152. char ch = line[line.length() - 1];
  153. if (ch >= 'A' && ch < 'Q') {
  154. game = ch;
  155. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  156. }
  157. // not needed (handled by above Game Server check).
  158. if (ch == 'Q')
  159. game = 0;
  160. }
  161. // should I have an internal emit_server_line for parsing sections?
  162. // rather then having a weird state machine to track where we are?
  163. if (emit_server_line)
  164. emit_server_line(line);
  165. }
  166. /**
  167. * Split server input into lines.
  168. *
  169. * @param line
  170. */
  171. void Session::split_lines(std::string line) {
  172. // Does this have \n\r still on it? I don't want them.
  173. // cleanup backspaces
  174. size_t pos;
  175. while ((pos = line.find('\b')) != std::string::npos) {
  176. // backspace? OK! (unless)
  177. if (pos == 0) {
  178. // first character, so there's nothing "extra" to erase.
  179. line = line.erase(pos, 1);
  180. } else
  181. line = line.erase(pos - 1, 2);
  182. }
  183. std::string temp = clean_string(line);
  184. on_server_line(temp);
  185. }
  186. /*
  187. Call this with whatever we just received.
  188. That will allow me to send "just whatever I got"
  189. this time around, rather then trying to figure out
  190. what was just added to server_prompt.
  191. What about \r, \b ? Should that "reset" the server_prompt?
  192. \r should not, because it is followed by \n (eventually)
  193. and that completes my line.
  194. */
  195. void Session::process_lines(std::string &received) {
  196. // break server_prompt into lines and send/process one by one.
  197. size_t pos, rpos;
  198. server_prompt.append(received);
  199. // I also need to break on r"\x1b[\[0-9;]*JK", treat these like \n
  200. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  201. std::string line;
  202. std::smatch m = ansi_newline(server_prompt);
  203. if (!m.empty()) {
  204. // We found one.
  205. size_t mpos = m.prefix().length();
  206. // int mlen = m[0].length();
  207. if (mpos < pos) {
  208. // Ok, the ANSI newline is before the \n
  209. // perform this process with the received line
  210. std::smatch rm = ansi_newline(received);
  211. if (!rm.empty()) {
  212. size_t rpos = rm.prefix().length();
  213. int rlen = rm[0].length();
  214. if (show_client) {
  215. line = received.substr(0, rpos + rlen);
  216. to_client(line);
  217. }
  218. received = rm.suffix();
  219. }
  220. // perform this on the server_prompt line
  221. line = m.prefix();
  222. split_lines(line);
  223. server_prompt = m.suffix();
  224. // redo this loop -- there's still a \n in there
  225. continue;
  226. }
  227. }
  228. // process "line" in received
  229. rpos = received.find('\n', 0);
  230. // get line to send to the client
  231. if (show_client) {
  232. // that is, if we're sending to the client!
  233. line = received.substr(0, rpos + 1);
  234. /*
  235. std::string clean = clean_string(line);
  236. BUGZ_LOG(error) << "rpos/show_client:" << clean;
  237. */
  238. to_client(line);
  239. }
  240. received = received.substr(rpos + 1);
  241. // process "line" in server_prompt
  242. line = server_prompt.substr(0, pos + 1);
  243. server_prompt = server_prompt.substr(pos + 1);
  244. // Remove \n for dispatching
  245. std::string part = line.substr(0, pos);
  246. /*
  247. if (server_sent != 0) {
  248. line = line.substr(server_sent);
  249. server_sent = 0;
  250. };
  251. */
  252. // display on?
  253. // to_client(line);
  254. // How should I handle \r in lines? For now, remove it
  255. // but LOG that we did.
  256. replace(part, "\r", "");
  257. /*
  258. if (replace(part, "\r", "")) {
  259. BUGZ_LOG(warning) << "\\r removed from line";
  260. }
  261. */
  262. split_lines(part);
  263. }
  264. // Ok, we have sent all of the \n lines.
  265. if (!received.empty())
  266. if (show_client) {
  267. to_client(received);
  268. // std::string clean = clean_string(received);
  269. // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
  270. }
  271. // This is eating the entire string. String is partial line
  272. // portcim line, ending with '\r', this eats the line.
  273. /*
  274. // check the server prompt here:
  275. if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
  276. // server_prompt contains \r, remove it.
  277. server_prompt = server_prompt.substr(pos + 1);
  278. }
  279. */
  280. while ((pos = server_prompt.find('\b')) != std::string::npos) {
  281. // backspace? OK! (unless)
  282. if (pos == 0) {
  283. // first character, so there's nothing "extra" to erase.
  284. server_prompt = server_prompt.erase(pos, 1);
  285. } else
  286. server_prompt = server_prompt.erase(pos - 1, 2);
  287. }
  288. if (!server_prompt.empty()) {
  289. // We have something remaining -- start the timer!
  290. set_prompt_timer();
  291. }
  292. }
  293. void Session::set_prompt_timer(void) {
  294. prompt_timer_.expires_after(std::chrono::milliseconds(time_ms));
  295. prompt_timer_.async_wait(boost::bind(&Session::on_prompt_timeout, this,
  296. boost::asio::placeholders::error));
  297. }
  298. void Session::reset_prompt_timer(void) { prompt_timer_.cancel(); }
  299. void Session::on_server_prompt(const std::string &prompt) {
  300. BUGZ_LOG(warning) << "SP: [" << prompt << "]";
  301. if (emit_server_prompt) {
  302. emit_server_prompt(prompt);
  303. }
  304. }
  305. void Session::on_prompt_timeout(const boost::system::error_code error) {
  306. if (error != boost::asio::error::operation_aborted) {
  307. // Ok, VALID timeout
  308. if (!server_prompt.empty()) {
  309. // Here's what is happening:
  310. // SP: [ESC[2JESC[H]
  311. // which after clean_string is empty.
  312. std::string clean = clean_string(server_prompt);
  313. if (!clean.empty()) {
  314. on_server_prompt(clean);
  315. }
  316. // BUGZ_LOG(trace) << "SP: [" << server_prompt << "]";
  317. }
  318. }
  319. }
  320. void Session::server_read(void) {
  321. auto self(shared_from_this());
  322. boost::asio::async_read(
  323. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  324. boost::asio::transfer_at_least(1),
  325. [this, self](boost::system::error_code ec, std::size_t length) {
  326. if (!ec) {
  327. server_buffer[length] = 0;
  328. // server_prompt.append(server_buffer, length);
  329. std::string received(server_buffer, length);
  330. process_lines(received);
  331. /*
  332. I don't believe I need to consume this,
  333. I'm not async_reading from a stream.
  334. */
  335. /*
  336. if (length) {
  337. // std::cout << length << std::endl;
  338. std::cout << "S: " << server_buffer << std::endl;
  339. do_write(server_buffer);
  340. }
  341. */
  342. server_read();
  343. } else {
  344. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  345. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  346. }
  347. });
  348. }
  349. void Session::on_resolve(
  350. const boost::system::error_code error,
  351. const boost::asio::ip::tcp::resolver::results_type results) {
  352. //
  353. auto self(shared_from_this());
  354. if (!error) {
  355. // Take the first endpoint.
  356. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  357. server_.async_connect(endpoint,
  358. boost::bind(&Session::on_connect, this,
  359. boost::asio::placeholders::error));
  360. } else {
  361. // TO DO:
  362. // BOOST_LOG_NAMED_SCOPE("Session");
  363. BUGZ_LOG(error) << "Unable to resolve: " << host;
  364. std::string output =
  365. str(boost::format("Unable to resolve: %1%\n\r") % host);
  366. to_client(output);
  367. BUGZ_LOG(warning) << "socket.shutdown()";
  368. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  369. }
  370. }
  371. void Session::client_input(const std::string &input) {
  372. BUGZ_LOG(info) << "CI: " << input;
  373. if (emit_client_input) {
  374. emit_client_input(input);
  375. }
  376. // Is "proxy" active
  377. if (active) {
  378. // do something amazing with the user's input.
  379. } else {
  380. if (input == "\x1b" || input == "~") {
  381. std::string prompt = clean_string(get_prompt());
  382. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  383. if (prompt == "Selection (? for menu): ") {
  384. to_client("\n\rThere's not much we can do here. Activate in-game at a "
  385. "Command prompt.\n\r");
  386. to_client(get_prompt());
  387. return;
  388. }
  389. // easter-eggs:
  390. if (prompt == "Enter your choice: ") {
  391. to_client("\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  392. "that's how I was coded.\n\r");
  393. to_client(get_prompt());
  394. return;
  395. }
  396. // easter-egg
  397. if (prompt == "[Pause]") {
  398. to_client(" \x1b[1;36mMeow\x1b[0m\n\r");
  399. to_client(get_prompt());
  400. return;
  401. }
  402. //
  403. // The command prompt that we're looking for:
  404. //
  405. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  406. // the time, and the sector number vary...
  407. if (prompt.substr(0, 9) == "Command [") {
  408. int len = prompt.length();
  409. if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  410. to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
  411. "activate.\n\r");
  412. // active = true;
  413. // show_client = true; // because if something comes (unexpected)
  414. // from the server? talk_direct = false;
  415. // but we aren't activating (NNY)
  416. to_client(get_prompt());
  417. return;
  418. }
  419. }
  420. // eat this input.
  421. return;
  422. }
  423. }
  424. // as the above code matures, talk_direct might get changed.
  425. // keep this part here (and not above).
  426. if (talk_direct)
  427. to_server(input);
  428. }
  429. void Session::client_read(void) {
  430. auto self(shared_from_this());
  431. boost::asio::async_read( // why can't I async_read_some here?
  432. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  433. boost::asio::transfer_at_least(1),
  434. [this, self](boost::system::error_code ec, std::size_t length) {
  435. if (!ec) {
  436. read_buffer[length] = 0;
  437. if (rlogin_auth.empty()) {
  438. // first read should be rlogin information
  439. rlogin_auth.assign(read_buffer, length);
  440. // parse authentication information
  441. parse_auth();
  442. to_client(std::string(1, 0));
  443. to_client("Welcome, ");
  444. to_client(rlogin_name);
  445. to_client("\n\r");
  446. // Activate the connection to the server
  447. /* // this fails, and I'm not sure why. I've used code like this
  448. before. resolver_.async_resolve( host, port, std::bind(
  449. &Session::on_resolve, this, _1, _2)); */
  450. // This example shows using boost::bind, which WORKS.
  451. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  452. resolver_.async_resolve(
  453. host, port,
  454. boost::bind(&Session::on_resolve, this,
  455. boost::asio::placeholders::error,
  456. boost::asio::placeholders::iterator));
  457. } else if (length) {
  458. // Proxy Active?
  459. // BOOST_LOG_NAMED_SCOPE("Session");
  460. std::string line(read_buffer, length);
  461. client_input(line);
  462. // do_write(output);
  463. }
  464. client_read();
  465. } else {
  466. BUGZ_LOG(warning) << "CI: read_failed";
  467. if (connected) {
  468. BUGZ_LOG(warning) << "Server.shutdown()";
  469. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  470. }
  471. }
  472. });
  473. }
  474. void Session::to_client(const std::string &message) {
  475. auto self(shared_from_this());
  476. // output the cleaned string (so I can see what we're sending in the
  477. // logs)
  478. std::string clean = clean_string(message);
  479. BUGZ_LOG(trace) << "2C: " << clean;
  480. boost::asio::async_write(
  481. socket_, boost::asio::buffer(message),
  482. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  483. if (!ec) {
  484. } else {
  485. BUGZ_LOG(warning) << "2C: write failed? closed? Server.shutdown()";
  486. if (connected) {
  487. BUGZ_LOG(warning) << "Server.shutdown()";
  488. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  489. }
  490. }
  491. });
  492. }
  493. void Session::to_server(const std::string &message) {
  494. auto self(shared_from_this());
  495. boost::asio::async_write(
  496. server_, boost::asio::buffer(message),
  497. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  498. if (!ec) {
  499. } else {
  500. BUGZ_LOG(warning) << "S: write failed? closed? socket.shutdown()";
  501. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  502. }
  503. });
  504. // keep alive timer
  505. keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
  506. keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
  507. boost::asio::placeholders::error));
  508. }
  509. void Session::stayin_alive(const boost::system::error_code error) {
  510. if (error != boost::asio::error::operation_aborted) {
  511. // stayin' alive, stayin' alive...
  512. to_server(" ");
  513. BUGZ_LOG(warning) << "Session::stayin_alive()";
  514. }
  515. }
  516. Server::Server(boost::asio::io_service &io_service,
  517. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  518. std::string port)
  519. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  520. port_{port} {
  521. only_one = from_config("one_connection", "0") == "1";
  522. BUGZ_LOG(info) << "Server::Server()";
  523. do_accept();
  524. }
  525. Server::~Server() { BUGZ_LOG(info) << "Server::~Server()"; }
  526. /**
  527. * setup async connect accept
  528. *
  529. * This creates a session for each connection. Using make_shared allows the
  530. * session to automatically clean up when it is no longer active/has anything
  531. * running in the reactor.
  532. */
  533. void Server::do_accept(void) {
  534. acceptor_.async_accept([this](boost::system::error_code ec,
  535. boost::asio::ip::tcp::socket socket) {
  536. if (!ec) {
  537. BUGZ_LOG(info) << "Server::do_accept()";
  538. std::make_shared<Session>(std::move(socket), io_service_, host_, port_)
  539. ->start();
  540. }
  541. if (!only_one) {
  542. do_accept();
  543. }
  544. });
  545. }
  546. /**
  547. * Clean up the trailing ../ in __FILE__
  548. *
  549. * This is used by the logging macro.
  550. *
  551. * @param filepath
  552. * @return const char*
  553. */
  554. const char *trim_path(const char *filepath) {
  555. if (strncmp(filepath, "../", 3) == 0) {
  556. filepath += 3;
  557. }
  558. return filepath;
  559. }