session.cpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883
  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 "galaxy.h"
  11. #include <string>
  12. // #include <boost/log/attributes/named_scope.hpp>
  13. bool replace(std::string &str, const std::string &from, const std::string &to) {
  14. size_t start_pos = str.find(from);
  15. if (start_pos == std::string::npos)
  16. return false;
  17. do {
  18. str.replace(start_pos, from.length(), to);
  19. } while ((start_pos = str.find(from)) != std::string::npos);
  20. return true;
  21. }
  22. bool replace(std::string &str, const char *from, const char *to) {
  23. size_t start_pos = str.find(from);
  24. if (start_pos == std::string::npos)
  25. return false;
  26. do {
  27. str.replace(start_pos, strlen(from), to);
  28. } while ((start_pos = str.find(from)) != std::string::npos);
  29. return true;
  30. }
  31. void ansi_clean(std::string &str) {
  32. static std::regex ansi_cleaner("\x1b\[[0-9;]*[A-Zmh]",
  33. std::regex_constants::ECMAScript);
  34. str = std::regex_replace(str, ansi_cleaner, "");
  35. }
  36. void high_ascii(std::string &str) {
  37. // the + replaces all of them into one. I want each high ascii replaced with
  38. // #.
  39. static std::regex high_cleaner("[\x80-\xff]",
  40. std::regex_constants::ECMAScript);
  41. str = std::regex_replace(str, high_cleaner, "#");
  42. }
  43. std::smatch ansi_newline(const std::string &str) {
  44. static std::regex ansi_nl("\x1b\[[0-9;]*[JK]",
  45. std::regex_constants::ECMAScript);
  46. std::smatch m;
  47. std::regex_search(str, m, ansi_nl);
  48. return m;
  49. }
  50. std::string clean_string(const std::string &source) {
  51. std::string clean = source;
  52. replace(clean, "\n", "\\n");
  53. replace(clean, "\r", "\\r");
  54. replace(clean, "\b", "\\b");
  55. // ANSI too
  56. ansi_clean(clean);
  57. // BUGZ_LOG(error) << "cleaned: " << clean;
  58. high_ascii(clean);
  59. replace(clean, "\x1b", "^");
  60. return clean;
  61. }
  62. std::vector<std::string> split(const std::string &line) {
  63. static std::regex rx_split("[^\\s]+");
  64. std::vector<std::string> results;
  65. for (auto it = std::sregex_iterator(line.begin(), line.end(), rx_split);
  66. it != std::sregex_iterator(); ++it) {
  67. results.push_back(it->str());
  68. }
  69. return results;
  70. }
  71. Session::Session(boost::asio::ip::tcp::socket socket,
  72. boost::asio::io_service &io_service, std::string hostname,
  73. std::string port)
  74. : main(this), socket_(std::move(socket)), io_service_{io_service},
  75. resolver_{io_service}, server_{io_service}, prompt_timer_{io_service},
  76. keep_alive_{io_service}, host{hostname}, port{port} {
  77. BUGZ_LOG(info) << "Session::Session()";
  78. // server_sent = 0;
  79. time_ms = 50;
  80. if (CONFIG["prompt_timeout"])
  81. time_ms = CONFIG["prompt_timeout"].as<int>();
  82. keepalive_secs = 45;
  83. if (CONFIG["keepalive"])
  84. keepalive_secs = CONFIG["keepalive"].as<int>();
  85. }
  86. void Session::start(void) {
  87. // BOOST_LOG_NAMED_SCOPE();
  88. // If I want the file and line number information, here's how to do it:
  89. // BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
  90. BUGZ_LOG(info) << "Session::start()";
  91. auto self(shared_from_this());
  92. // read_buffer.reserve(1024);
  93. // do_write("Welcome!\n");
  94. client_read();
  95. }
  96. Session::~Session() { BUGZ_LOG(info) << "~Session"; }
  97. /**
  98. * Returns the current server prompt.
  99. *
  100. * NOTE: This is the raw string from the server, so it can contain
  101. * color codes. Make sure you clean it before trying to test it for
  102. * any text.
  103. *
  104. * @return const std::string&
  105. */
  106. const std::string &Session::get_prompt(void) { return server_prompt; }
  107. void Session::set_prompt(const std::string &prompt) { server_prompt = prompt; }
  108. void Session::post(notifyFunc nf) {
  109. if (nf) {
  110. BUGZ_LOG(info) << "Session::post()";
  111. io_service_.post(nf);
  112. } else {
  113. BUGZ_LOG(error) << "Session::post( nullptr )";
  114. }
  115. }
  116. void Session::parse_auth(void) {
  117. // how many nulls should I be seeing?
  118. // \0user\0pass\0terminal/SPEED\0
  119. // If I don't have a proper rlogin value here, it isn't going
  120. // to work when I try to connect to the rlogin server.
  121. if (rlogin_auth.size() > 10)
  122. rlogin_name = rlogin_auth.c_str() + 1;
  123. else
  124. rlogin_name = "?";
  125. }
  126. void Session::on_connect(const boost::system::error_code error) {
  127. // We've connected to the server! WOOT WOOT!
  128. // BOOST_LOG_NAMED_SCOPE("Session");
  129. SL_parser = nullptr;
  130. if (!error) {
  131. BUGZ_LOG(info) << "Connected to " << host;
  132. to_client("Connected...\n\r");
  133. connected = true;
  134. if (rlogin_auth[0] != 0) {
  135. // Ok, the rlogin information was junk --
  136. to_client("Let me make up some fake rlogin data for you...\n\r");
  137. char temp[] = "\0test\0test\0terminal/9600\0";
  138. std::string tmp(temp, sizeof(temp));
  139. to_server(tmp);
  140. } else {
  141. to_server(rlogin_auth);
  142. }
  143. server_read();
  144. } else {
  145. // TODO:
  146. std::string output =
  147. str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
  148. to_client(output);
  149. BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
  150. BUGZ_LOG(warning) << "socket.shutdown()";
  151. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  152. }
  153. }
  154. /**
  155. * Called with the current line received from the server.
  156. *
  157. * This will do server parsing. Sector/Ports/Connecting Sectors.
  158. * Port status/inventory/%.
  159. *
  160. * See \ref split_lines()
  161. * @param line
  162. */
  163. void Session::on_server_line(const std::string &line) {
  164. BUGZ_LOG(info) << "SL: [" << line << "]";
  165. if (line.find("TradeWars Game Server ") != std::string::npos) {
  166. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  167. game = 0;
  168. // reset "active game" -- we're back at the menu
  169. }
  170. /*
  171. ____ _ _
  172. / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
  173. \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
  174. ___) | __/ | \ V / __/ | | |___| | | | | __/
  175. |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
  176. ____ _
  177. | _ \ __ _ _ __ ___(_)_ __ __ _
  178. | |_) / _` | '__/ __| | '_ \ / _` |
  179. | __/ (_| | | \__ \ | | | | (_| |
  180. |_| \__,_|_| |___/_|_| |_|\__, |
  181. |___/
  182. This is where all of the server lines are gleaned for all the
  183. information that we can get out of them.
  184. */
  185. if (line.find("Selection (? for menu): ") != std::string::npos) {
  186. char ch = line[line.length() - 1];
  187. if (ch >= 'A' && ch < 'Q') {
  188. game = ch;
  189. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  190. }
  191. // not needed (handled by above Game Server check).
  192. if (ch == 'Q')
  193. game = 0;
  194. }
  195. // Do I need to run through the tests (below) before calling the parser here?
  196. // Or will the parsers know when they are done processing, and clear?
  197. // Yes, run through the various tests, then call SL_parser.
  198. if ((line.substr(0, 19) == "The shortest path (") ||
  199. (line.substr(0, 7) == " TO > ")) {
  200. SL_parser = [this](const std::string s) { this->SL_warpline(s); };
  201. } else {
  202. if (line.substr(0, 43) == " Items Status Trading % of max OnBoard") {
  203. SL_parser = [this](const std::string s) { this->SL_portline(s); };
  204. } else {
  205. if (line.substr(0, 10) == "<Thievery>") {
  206. SL_parser = [this](const std::string s) { this->SL_thiefline(s); };
  207. } else {
  208. if (line == ": ") {
  209. SL_parser = [this](const std::string s) { this->SL_cimline(s); };
  210. } else {
  211. if (line.substr(0, 1) == "Sector : ") {
  212. SL_parser = [this](const std::string s) { this->SL_sectorline(s); };
  213. }
  214. }
  215. }
  216. }
  217. }
  218. if (SL_parser) {
  219. SL_parser(line);
  220. }
  221. // should I have an internal emit_server_line for parsing sections?
  222. // rather then having a weird state machine to track where we are?
  223. if (emit_server_line)
  224. emit_server_line(line);
  225. }
  226. void Session::SL_cimline(const std::string &line) {
  227. if (line == ": ENDINTERROG") {
  228. SL_parser = nullptr;
  229. return;
  230. }
  231. if (line == ": ") {
  232. // do I need to do anything special here for this?
  233. return;
  234. }
  235. if (line.empty()) {
  236. SL_parser = nullptr;
  237. return;
  238. }
  239. // parse cimline
  240. size_t pos = line.find('%');
  241. std::string work = line;
  242. if (pos == line.npos) {
  243. // warpcim
  244. BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  245. } else {
  246. // portcim
  247. struct port p = parse_portcim(line);
  248. if (p.sector == 0)
  249. BUGZ_LOG(fatal) << "portcim: [" << line << "]";
  250. else
  251. BUGZ_LOG(fatal) << "portcim: " << p;
  252. }
  253. }
  254. void Session::SL_thiefline(const std::string &line) {
  255. size_t pos = line.find("Suddenly you're Busted!");
  256. bool busted = pos != line.npos;
  257. if (busted) {
  258. BUGZ_LOG(fatal) << "set bust";
  259. SL_parser = nullptr;
  260. } else {
  261. pos = line.find("(You realize the guards saw you last time!)");
  262. if (pos != line.npos)
  263. SL_parser = nullptr;
  264. }
  265. // Are those the two ways to exit from this state?
  266. }
  267. void Session::SL_sectorline(const std::string &line) {
  268. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  269. }
  270. void Session::SL_portline(const std::string &line) {
  271. if (line.empty()) {
  272. SL_parser = nullptr;
  273. return;
  274. }
  275. BUGZ_LOG(info) << "portline : " << line;
  276. size_t pos = line.find('%');
  277. if (pos != line.npos) {
  278. // Ok, this is a valid portline
  279. std::string work = line;
  280. replace(work, "Fuel Ore", "Fuel");
  281. BUGZ_LOG(fatal) << "re.split? : [" << work << "]";
  282. }
  283. }
  284. void Session::SL_warpline(const std::string &line) {
  285. if (line.empty()) {
  286. SL_parser = nullptr;
  287. return;
  288. }
  289. // process warp line
  290. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  291. }
  292. /**
  293. * Split server input into lines.
  294. *
  295. * @param line
  296. */
  297. void Session::split_lines(std::string line) {
  298. // Does this have \n\r still on it? I don't want them.
  299. // cleanup backspaces
  300. size_t pos;
  301. while ((pos = line.find('\b')) != std::string::npos) {
  302. // backspace? OK! (unless)
  303. if (pos == 0) {
  304. // first character, so there's nothing "extra" to erase.
  305. line = line.erase(pos, 1);
  306. } else
  307. line = line.erase(pos - 1, 2);
  308. }
  309. std::string temp = clean_string(line);
  310. on_server_line(temp);
  311. }
  312. /*
  313. Call this with whatever we just received.
  314. That will allow me to send "just whatever I got"
  315. this time around, rather then trying to figure out
  316. what was just added to server_prompt.
  317. What about \r, \b ? Should that "reset" the server_prompt?
  318. \r should not, because it is followed by \n (eventually)
  319. and that completes my line.
  320. */
  321. void Session::process_lines(std::string &received) {
  322. // break server_prompt into lines and send/process one by one.
  323. size_t pos, rpos;
  324. server_prompt.append(received);
  325. // I also need to break on r"\x1b[\[0-9;]*JK", treat these like \n
  326. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  327. std::string line;
  328. std::smatch m = ansi_newline(server_prompt);
  329. if (!m.empty()) {
  330. // We found one.
  331. size_t mpos = m.prefix().length();
  332. // int mlen = m[0].length();
  333. if (mpos < pos) {
  334. // Ok, the ANSI newline is before the \n
  335. // perform this process with the received line
  336. std::smatch rm = ansi_newline(received);
  337. if (!rm.empty()) {
  338. size_t rpos = rm.prefix().length();
  339. int rlen = rm[0].length();
  340. if (show_client) {
  341. line = received.substr(0, rpos + rlen);
  342. to_client(line);
  343. }
  344. received = rm.suffix();
  345. }
  346. // perform this on the server_prompt line
  347. line = m.prefix();
  348. split_lines(line);
  349. server_prompt = m.suffix();
  350. // redo this loop -- there's still a \n in there
  351. continue;
  352. }
  353. }
  354. // process "line" in received
  355. rpos = received.find('\n', 0);
  356. // get line to send to the client
  357. if (show_client) {
  358. // that is, if we're sending to the client!
  359. line = received.substr(0, rpos + 1);
  360. /*
  361. std::string clean = clean_string(line);
  362. BUGZ_LOG(error) << "rpos/show_client:" << clean;
  363. */
  364. to_client(line);
  365. }
  366. received = received.substr(rpos + 1);
  367. // process "line" in server_prompt
  368. line = server_prompt.substr(0, pos + 1);
  369. server_prompt = server_prompt.substr(pos + 1);
  370. // Remove \n for dispatching
  371. std::string part = line.substr(0, pos);
  372. /*
  373. if (server_sent != 0) {
  374. line = line.substr(server_sent);
  375. server_sent = 0;
  376. };
  377. */
  378. // display on?
  379. // to_client(line);
  380. // How should I handle \r in lines? For now, remove it
  381. // but LOG that we did.
  382. replace(part, "\r", "");
  383. /*
  384. if (replace(part, "\r", "")) {
  385. BUGZ_LOG(warning) << "\\r removed from line";
  386. }
  387. */
  388. split_lines(part);
  389. }
  390. // Ok, we have sent all of the \n lines.
  391. if (!received.empty())
  392. if (show_client) {
  393. to_client(received);
  394. // std::string clean = clean_string(received);
  395. // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
  396. }
  397. // This is eating the entire string. String is partial line
  398. // portcim line, ending with '\r', this eats the line.
  399. /*
  400. // check the server prompt here:
  401. if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
  402. // server_prompt contains \r, remove it.
  403. server_prompt = server_prompt.substr(pos + 1);
  404. }
  405. */
  406. while ((pos = server_prompt.find('\b')) != std::string::npos) {
  407. // backspace? OK! (unless)
  408. if (pos == 0) {
  409. // first character, so there's nothing "extra" to erase.
  410. server_prompt = server_prompt.erase(pos, 1);
  411. } else
  412. server_prompt = server_prompt.erase(pos - 1, 2);
  413. }
  414. if (!server_prompt.empty()) {
  415. // We have something remaining -- start the timer!
  416. set_prompt_timer();
  417. }
  418. }
  419. void Session::set_prompt_timer(void) {
  420. prompt_timer_.expires_after(std::chrono::milliseconds(time_ms));
  421. prompt_timer_.async_wait(boost::bind(&Session::on_prompt_timeout, this,
  422. boost::asio::placeholders::error));
  423. }
  424. void Session::reset_prompt_timer(void) { prompt_timer_.cancel(); }
  425. void Session::on_server_prompt(const std::string &prompt) {
  426. BUGZ_LOG(warning) << "SP: [" << prompt << "]";
  427. if (emit_server_prompt) {
  428. emit_server_prompt(prompt);
  429. }
  430. }
  431. void Session::on_prompt_timeout(const boost::system::error_code error) {
  432. if (error != boost::asio::error::operation_aborted) {
  433. // Ok, VALID timeout
  434. if (!server_prompt.empty()) {
  435. // Here's what is happening:
  436. // SP: [ESC[2JESC[H]
  437. // which after clean_string is empty.
  438. std::string clean = clean_string(server_prompt);
  439. if (!clean.empty()) {
  440. on_server_prompt(clean);
  441. }
  442. // BUGZ_LOG(trace) << "SP: [" << server_prompt << "]";
  443. }
  444. }
  445. }
  446. void Session::server_read(void) {
  447. auto self(shared_from_this());
  448. boost::asio::async_read(
  449. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  450. boost::asio::transfer_at_least(1),
  451. [this, self](boost::system::error_code ec, std::size_t length) {
  452. if (!ec) {
  453. server_buffer[length] = 0;
  454. // server_prompt.append(server_buffer, length);
  455. std::string received(server_buffer, length);
  456. process_lines(received);
  457. /*
  458. I don't believe I need to consume this,
  459. I'm not async_reading from a stream.
  460. */
  461. /*
  462. if (length) {
  463. // std::cout << length << std::endl;
  464. std::cout << "S: " << server_buffer << std::endl;
  465. do_write(server_buffer);
  466. }
  467. */
  468. server_read();
  469. } else {
  470. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  471. connected = false;
  472. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  473. }
  474. });
  475. }
  476. void Session::on_resolve(
  477. const boost::system::error_code error,
  478. const boost::asio::ip::tcp::resolver::results_type results) {
  479. //
  480. auto self(shared_from_this());
  481. if (!error) {
  482. // Take the first endpoint.
  483. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  484. server_.async_connect(endpoint,
  485. boost::bind(&Session::on_connect, this,
  486. boost::asio::placeholders::error));
  487. } else {
  488. // TO DO:
  489. // BOOST_LOG_NAMED_SCOPE("Session");
  490. BUGZ_LOG(error) << "Unable to resolve: " << host;
  491. std::string output =
  492. str(boost::format("Unable to resolve: %1%\n\r") % host);
  493. to_client(output);
  494. BUGZ_LOG(warning) << "socket.shutdown()";
  495. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  496. }
  497. }
  498. void Session::client_input(const std::string &input) {
  499. BUGZ_LOG(info) << "CI: " << input;
  500. // Is "proxy" active
  501. if (active) {
  502. // do something amazing with the user's input.
  503. } else {
  504. if (input == "\x1b" || input == "~") {
  505. std::string prompt = clean_string(get_prompt());
  506. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  507. if (prompt == "Selection (? for menu): ") {
  508. to_client("\n\rThere's not much we can do here. Activate in-game at a "
  509. "Command prompt.\n\r");
  510. to_client(get_prompt());
  511. return;
  512. }
  513. // easter-eggs:
  514. if (prompt == "Enter your choice: ") {
  515. to_client("\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  516. "that's how I was coded.\n\r");
  517. to_client(get_prompt());
  518. return;
  519. }
  520. // easter-egg
  521. if (prompt == "[Pause]") {
  522. to_client(" \x1b[1;36mMeow\x1b[0m\n\r");
  523. to_client(get_prompt());
  524. return;
  525. }
  526. //
  527. // The command prompt that we're looking for:
  528. //
  529. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  530. // the time, and the sector number vary...
  531. if (prompt.substr(0, 9) == "Command [") {
  532. int len = prompt.length();
  533. if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  534. proxy_activate();
  535. /*
  536. to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
  537. "activate.\n\r");
  538. // active = true;
  539. // show_client = true; // because if something comes (unexpected)
  540. // from the server? talk_direct = false;
  541. // but we aren't activating (NNY)
  542. to_client(get_prompt());
  543. */
  544. return;
  545. }
  546. }
  547. // eat this input.
  548. BUGZ_LOG(warning) << "CI: unable to activate, prompt was: [" << prompt
  549. << "]";
  550. return;
  551. }
  552. }
  553. // as the above code matures, talk_direct might get changed.
  554. // keep this part here (and not above).
  555. if (talk_direct) {
  556. to_server(input);
  557. }
  558. if (emit_client_input) {
  559. emit_client_input(input);
  560. }
  561. }
  562. DispatchSettings Session::save_settings(void) {
  563. DispatchSettings ss{emit_server_line, emit_server_prompt, emit_client_input,
  564. show_client, talk_direct};
  565. return ss;
  566. }
  567. void Session::restore_settings(const DispatchSettings &ss) {
  568. emit_server_line = ss.server_line;
  569. emit_server_prompt = ss.server_prompt;
  570. emit_client_input = ss.client_input;
  571. show_client = ss.show_client;
  572. talk_direct = ss.talk_direct;
  573. }
  574. void Session::proxy_activate(void) {
  575. active = true;
  576. start_keepin_alive(); // kickstart the keepalive timer
  577. main.setNotify([this](void) { this->proxy_deactivate(); });
  578. main.activate();
  579. }
  580. void Session::proxy_deactivate(void) {
  581. // Ok, how do we return?
  582. active = false;
  583. to_client(get_prompt());
  584. // to_client(" \b");
  585. }
  586. void Session::client_read(void) {
  587. auto self(shared_from_this());
  588. boost::asio::async_read( // why can't I async_read_some here?
  589. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  590. boost::asio::transfer_at_least(1),
  591. [this, self](boost::system::error_code ec, std::size_t length) {
  592. if (!ec) {
  593. read_buffer[length] = 0;
  594. if (rlogin_auth.empty()) {
  595. // first read should be rlogin information
  596. rlogin_auth.assign(read_buffer, length);
  597. // parse authentication information
  598. parse_auth();
  599. to_client(std::string(1, 0));
  600. to_client("Welcome, ");
  601. to_client(rlogin_name);
  602. to_client("\n\r");
  603. // Activate the connection to the server
  604. /* // this fails, and I'm not sure why. I've used code like this
  605. before. resolver_.async_resolve( host, port, std::bind(
  606. &Session::on_resolve, this, _1, _2)); */
  607. // This example shows using boost::bind, which WORKS.
  608. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  609. resolver_.async_resolve(
  610. host, port,
  611. boost::bind(&Session::on_resolve, this,
  612. boost::asio::placeholders::error,
  613. boost::asio::placeholders::iterator));
  614. } else if (length) {
  615. // Proxy Active?
  616. // BOOST_LOG_NAMED_SCOPE("Session");
  617. std::string line(read_buffer, length);
  618. client_input(line);
  619. // do_write(output);
  620. }
  621. client_read();
  622. } else {
  623. BUGZ_LOG(warning) << "CI: read_failed";
  624. if (connected) {
  625. BUGZ_LOG(warning) << "Server.shutdown()";
  626. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  627. }
  628. }
  629. });
  630. }
  631. void Session::to_client(const std::string &message) {
  632. auto self(shared_from_this());
  633. // output the cleaned string (so I can see what we're sending in the
  634. // logs)
  635. std::string clean = clean_string(message);
  636. BUGZ_LOG(trace) << "2C: " << clean;
  637. boost::asio::async_write(
  638. socket_, boost::asio::buffer(message),
  639. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  640. if (!ec) {
  641. } else {
  642. BUGZ_LOG(warning) << "2C: write failed? closed? Server.shutdown()";
  643. if (connected) {
  644. BUGZ_LOG(warning) << "Server.shutdown()";
  645. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  646. }
  647. }
  648. });
  649. }
  650. void Session::to_server(const std::string &message) {
  651. auto self(shared_from_this());
  652. boost::asio::async_write(
  653. server_, boost::asio::buffer(message),
  654. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  655. if (!ec) {
  656. } else {
  657. BUGZ_LOG(warning) << "S: write failed? closed? socket.shutdown()";
  658. // we're no longer connected.
  659. connected = false;
  660. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  661. }
  662. });
  663. if (active) {
  664. start_keepin_alive();
  665. }
  666. }
  667. void Session::start_keepin_alive(void) {
  668. // keep alive timer
  669. keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
  670. keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
  671. boost::asio::placeholders::error));
  672. }
  673. void Session::stayin_alive(const boost::system::error_code error) {
  674. if (error != boost::asio::error::operation_aborted) {
  675. // stayin' alive, stayin' alive...
  676. if (active) {
  677. to_server(" ");
  678. BUGZ_LOG(warning) << "Session::stayin_alive()";
  679. }
  680. }
  681. }
  682. Server::Server(boost::asio::io_service &io_service,
  683. const boost::asio::ip::tcp::endpoint &endpoint,
  684. const std::string &host, const std::string &port)
  685. : io_service_{io_service}, acceptor_{io_service_, endpoint},
  686. signal_{io_service, SIGUSR1, SIGTERM}, host_{host}, port_{port} {
  687. keep_accepting = true;
  688. BUGZ_LOG(info) << "Server::Server()";
  689. signal_.async_wait(boost::bind(&Server::on_signal, this,
  690. boost::asio::placeholders::error,
  691. boost::asio::placeholders::signal_number));
  692. do_accept();
  693. }
  694. void Server::on_signal(const boost::system::error_code &ec, int signal) {
  695. BUGZ_LOG(info) << "on_signal() :" << signal;
  696. keep_accepting = false;
  697. boost::system::error_code error;
  698. acceptor_.cancel(error);
  699. BUGZ_LOG(info) << "cancel: " << error;
  700. acceptor_.close(error);
  701. BUGZ_LOG(info) << "close: " << error;
  702. }
  703. Server::~Server() {
  704. CONFIG = YAML::Node();
  705. BUGZ_LOG(info) << "Server::~Server()";
  706. }
  707. /**
  708. * setup async connect accept
  709. *
  710. * This creates a session for each connection. Using make_shared allows the
  711. * session to automatically clean up when it is no longer active/has anything
  712. * running in the reactor.
  713. */
  714. void Server::do_accept(void) {
  715. acceptor_.async_accept([this](boost::system::error_code ec,
  716. boost::asio::ip::tcp::socket socket) {
  717. if (!ec) {
  718. BUGZ_LOG(info) << "Server::do_accept()";
  719. std::make_shared<Session>(std::move(socket), io_service_, host_, port_)
  720. ->start();
  721. }
  722. if (keep_accepting) {
  723. BUGZ_LOG(info) << "do_accept()";
  724. do_accept();
  725. }
  726. });
  727. }
  728. /**
  729. * Clean up the trailing ../ in __FILE__
  730. *
  731. * This is used by the logging macro.
  732. *
  733. * @param filepath
  734. * @return const char*
  735. */
  736. const char *trim_path(const char *filepath) {
  737. if (strncmp(filepath, "../", 3) == 0) {
  738. filepath += 3;
  739. }
  740. return filepath;
  741. }