session.cpp 19 KB

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