session.cpp 19 KB

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