session.cpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  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. // ok, maybe that was the end of parsing?
  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. } else {
  245. // portcim
  246. }
  247. }
  248. void Session::SL_thiefline(const std::string &line) {
  249. size_t pos = line.find("Suddenly you're Busted!");
  250. bool busted = pos != line.npos;
  251. if (busted) {
  252. BUGZ_LOG(fatal) << "set bust";
  253. SL_parser = nullptr;
  254. } else {
  255. pos = line.find("(You realize the guards saw you last time!)");
  256. if (pos != line.npos)
  257. SL_parser = nullptr;
  258. }
  259. // Are those the two ways to exit from this state?
  260. }
  261. void Session::SL_sectorline(const std::string &line) {}
  262. void Session::SL_portline(const std::string &line) {
  263. if (line.empty()) {
  264. SL_parser = nullptr;
  265. return;
  266. }
  267. BUGZ_LOG(info) << "portline : " << line;
  268. size_t pos = line.find('%');
  269. if (pos != line.npos) {
  270. // Ok, this is a valid portline
  271. std::string work = line;
  272. replace(work, "Fuel Ore", "Fuel");
  273. BUGZ_LOG(fatal) << "re.split? : [" << work << "]";
  274. }
  275. }
  276. void Session::SL_warpline(const std::string &line) {
  277. if (line.empty()) {
  278. SL_parser = nullptr;
  279. return;
  280. }
  281. // process warp line
  282. }
  283. /**
  284. * Split server input into lines.
  285. *
  286. * @param line
  287. */
  288. void Session::split_lines(std::string line) {
  289. // Does this have \n\r still on it? I don't want them.
  290. // cleanup backspaces
  291. size_t pos;
  292. while ((pos = line.find('\b')) != std::string::npos) {
  293. // backspace? OK! (unless)
  294. if (pos == 0) {
  295. // first character, so there's nothing "extra" to erase.
  296. line = line.erase(pos, 1);
  297. } else
  298. line = line.erase(pos - 1, 2);
  299. }
  300. std::string temp = clean_string(line);
  301. on_server_line(temp);
  302. }
  303. /*
  304. Call this with whatever we just received.
  305. That will allow me to send "just whatever I got"
  306. this time around, rather then trying to figure out
  307. what was just added to server_prompt.
  308. What about \r, \b ? Should that "reset" the server_prompt?
  309. \r should not, because it is followed by \n (eventually)
  310. and that completes my line.
  311. */
  312. void Session::process_lines(std::string &received) {
  313. // break server_prompt into lines and send/process one by one.
  314. size_t pos, rpos;
  315. server_prompt.append(received);
  316. // I also need to break on r"\x1b[\[0-9;]*JK", treat these like \n
  317. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  318. std::string line;
  319. std::smatch m = ansi_newline(server_prompt);
  320. if (!m.empty()) {
  321. // We found one.
  322. size_t mpos = m.prefix().length();
  323. // int mlen = m[0].length();
  324. if (mpos < pos) {
  325. // Ok, the ANSI newline is before the \n
  326. // perform this process with the received line
  327. std::smatch rm = ansi_newline(received);
  328. if (!rm.empty()) {
  329. size_t rpos = rm.prefix().length();
  330. int rlen = rm[0].length();
  331. if (show_client) {
  332. line = received.substr(0, rpos + rlen);
  333. to_client(line);
  334. }
  335. received = rm.suffix();
  336. }
  337. // perform this on the server_prompt line
  338. line = m.prefix();
  339. split_lines(line);
  340. server_prompt = m.suffix();
  341. // redo this loop -- there's still a \n in there
  342. continue;
  343. }
  344. }
  345. // process "line" in received
  346. rpos = received.find('\n', 0);
  347. // get line to send to the client
  348. if (show_client) {
  349. // that is, if we're sending to the client!
  350. line = received.substr(0, rpos + 1);
  351. /*
  352. std::string clean = clean_string(line);
  353. BUGZ_LOG(error) << "rpos/show_client:" << clean;
  354. */
  355. to_client(line);
  356. }
  357. received = received.substr(rpos + 1);
  358. // process "line" in server_prompt
  359. line = server_prompt.substr(0, pos + 1);
  360. server_prompt = server_prompt.substr(pos + 1);
  361. // Remove \n for dispatching
  362. std::string part = line.substr(0, pos);
  363. /*
  364. if (server_sent != 0) {
  365. line = line.substr(server_sent);
  366. server_sent = 0;
  367. };
  368. */
  369. // display on?
  370. // to_client(line);
  371. // How should I handle \r in lines? For now, remove it
  372. // but LOG that we did.
  373. replace(part, "\r", "");
  374. /*
  375. if (replace(part, "\r", "")) {
  376. BUGZ_LOG(warning) << "\\r removed from line";
  377. }
  378. */
  379. split_lines(part);
  380. }
  381. // Ok, we have sent all of the \n lines.
  382. if (!received.empty())
  383. if (show_client) {
  384. to_client(received);
  385. // std::string clean = clean_string(received);
  386. // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
  387. }
  388. // This is eating the entire string. String is partial line
  389. // portcim line, ending with '\r', this eats the line.
  390. /*
  391. // check the server prompt here:
  392. if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
  393. // server_prompt contains \r, remove it.
  394. server_prompt = server_prompt.substr(pos + 1);
  395. }
  396. */
  397. while ((pos = server_prompt.find('\b')) != std::string::npos) {
  398. // backspace? OK! (unless)
  399. if (pos == 0) {
  400. // first character, so there's nothing "extra" to erase.
  401. server_prompt = server_prompt.erase(pos, 1);
  402. } else
  403. server_prompt = server_prompt.erase(pos - 1, 2);
  404. }
  405. if (!server_prompt.empty()) {
  406. // We have something remaining -- start the timer!
  407. set_prompt_timer();
  408. }
  409. }
  410. void Session::set_prompt_timer(void) {
  411. prompt_timer_.expires_after(std::chrono::milliseconds(time_ms));
  412. prompt_timer_.async_wait(boost::bind(&Session::on_prompt_timeout, this,
  413. boost::asio::placeholders::error));
  414. }
  415. void Session::reset_prompt_timer(void) { prompt_timer_.cancel(); }
  416. void Session::on_server_prompt(const std::string &prompt) {
  417. BUGZ_LOG(warning) << "SP: [" << prompt << "]";
  418. if (emit_server_prompt) {
  419. emit_server_prompt(prompt);
  420. }
  421. }
  422. void Session::on_prompt_timeout(const boost::system::error_code error) {
  423. if (error != boost::asio::error::operation_aborted) {
  424. // Ok, VALID timeout
  425. if (!server_prompt.empty()) {
  426. // Here's what is happening:
  427. // SP: [ESC[2JESC[H]
  428. // which after clean_string is empty.
  429. std::string clean = clean_string(server_prompt);
  430. if (!clean.empty()) {
  431. on_server_prompt(clean);
  432. }
  433. // BUGZ_LOG(trace) << "SP: [" << server_prompt << "]";
  434. }
  435. }
  436. }
  437. void Session::server_read(void) {
  438. auto self(shared_from_this());
  439. boost::asio::async_read(
  440. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  441. boost::asio::transfer_at_least(1),
  442. [this, self](boost::system::error_code ec, std::size_t length) {
  443. if (!ec) {
  444. server_buffer[length] = 0;
  445. // server_prompt.append(server_buffer, length);
  446. std::string received(server_buffer, length);
  447. process_lines(received);
  448. /*
  449. I don't believe I need to consume this,
  450. I'm not async_reading from a stream.
  451. */
  452. /*
  453. if (length) {
  454. // std::cout << length << std::endl;
  455. std::cout << "S: " << server_buffer << std::endl;
  456. do_write(server_buffer);
  457. }
  458. */
  459. server_read();
  460. } else {
  461. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  462. connected = false;
  463. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  464. }
  465. });
  466. }
  467. void Session::on_resolve(
  468. const boost::system::error_code error,
  469. const boost::asio::ip::tcp::resolver::results_type results) {
  470. //
  471. auto self(shared_from_this());
  472. if (!error) {
  473. // Take the first endpoint.
  474. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  475. server_.async_connect(endpoint,
  476. boost::bind(&Session::on_connect, this,
  477. boost::asio::placeholders::error));
  478. } else {
  479. // TO DO:
  480. // BOOST_LOG_NAMED_SCOPE("Session");
  481. BUGZ_LOG(error) << "Unable to resolve: " << host;
  482. std::string output =
  483. str(boost::format("Unable to resolve: %1%\n\r") % host);
  484. to_client(output);
  485. BUGZ_LOG(warning) << "socket.shutdown()";
  486. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  487. }
  488. }
  489. void Session::client_input(const std::string &input) {
  490. BUGZ_LOG(info) << "CI: " << input;
  491. // Is "proxy" active
  492. if (active) {
  493. // do something amazing with the user's input.
  494. } else {
  495. if (input == "\x1b" || input == "~") {
  496. std::string prompt = clean_string(get_prompt());
  497. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  498. if (prompt == "Selection (? for menu): ") {
  499. to_client("\n\rThere's not much we can do here. Activate in-game at a "
  500. "Command prompt.\n\r");
  501. to_client(get_prompt());
  502. return;
  503. }
  504. // easter-eggs:
  505. if (prompt == "Enter your choice: ") {
  506. to_client("\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  507. "that's how I was coded.\n\r");
  508. to_client(get_prompt());
  509. return;
  510. }
  511. // easter-egg
  512. if (prompt == "[Pause]") {
  513. to_client(" \x1b[1;36mMeow\x1b[0m\n\r");
  514. to_client(get_prompt());
  515. return;
  516. }
  517. //
  518. // The command prompt that we're looking for:
  519. //
  520. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  521. // the time, and the sector number vary...
  522. if (prompt.substr(0, 9) == "Command [") {
  523. int len = prompt.length();
  524. if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  525. proxy_activate();
  526. /*
  527. to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
  528. "activate.\n\r");
  529. // active = true;
  530. // show_client = true; // because if something comes (unexpected)
  531. // from the server? talk_direct = false;
  532. // but we aren't activating (NNY)
  533. to_client(get_prompt());
  534. */
  535. return;
  536. }
  537. }
  538. // eat this input.
  539. BUGZ_LOG(warning) << "CI: unable to activate, prompt was: [" << prompt
  540. << "]";
  541. return;
  542. }
  543. }
  544. // as the above code matures, talk_direct might get changed.
  545. // keep this part here (and not above).
  546. if (talk_direct) {
  547. to_server(input);
  548. }
  549. if (emit_client_input) {
  550. emit_client_input(input);
  551. }
  552. }
  553. DispatchSettings Session::save_settings(void) {
  554. DispatchSettings ss{emit_server_line, emit_server_prompt, emit_client_input,
  555. show_client, talk_direct};
  556. return ss;
  557. }
  558. void Session::restore_settings(const DispatchSettings &ss) {
  559. emit_server_line = ss.server_line;
  560. emit_server_prompt = ss.server_prompt;
  561. emit_client_input = ss.client_input;
  562. show_client = ss.show_client;
  563. talk_direct = ss.talk_direct;
  564. }
  565. void Session::proxy_activate(void) {
  566. active = true;
  567. start_keepin_alive(); // kickstart the keepalive timer
  568. main.setNotify([this](void) { this->proxy_deactivate(); });
  569. main.activate();
  570. }
  571. void Session::proxy_deactivate(void) {
  572. // Ok, how do we return?
  573. active = false;
  574. to_client(get_prompt());
  575. // to_client(" \b");
  576. }
  577. void Session::client_read(void) {
  578. auto self(shared_from_this());
  579. boost::asio::async_read( // why can't I async_read_some here?
  580. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  581. boost::asio::transfer_at_least(1),
  582. [this, self](boost::system::error_code ec, std::size_t length) {
  583. if (!ec) {
  584. read_buffer[length] = 0;
  585. if (rlogin_auth.empty()) {
  586. // first read should be rlogin information
  587. rlogin_auth.assign(read_buffer, length);
  588. // parse authentication information
  589. parse_auth();
  590. to_client(std::string(1, 0));
  591. to_client("Welcome, ");
  592. to_client(rlogin_name);
  593. to_client("\n\r");
  594. // Activate the connection to the server
  595. /* // this fails, and I'm not sure why. I've used code like this
  596. before. resolver_.async_resolve( host, port, std::bind(
  597. &Session::on_resolve, this, _1, _2)); */
  598. // This example shows using boost::bind, which WORKS.
  599. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  600. resolver_.async_resolve(
  601. host, port,
  602. boost::bind(&Session::on_resolve, this,
  603. boost::asio::placeholders::error,
  604. boost::asio::placeholders::iterator));
  605. } else if (length) {
  606. // Proxy Active?
  607. // BOOST_LOG_NAMED_SCOPE("Session");
  608. std::string line(read_buffer, length);
  609. client_input(line);
  610. // do_write(output);
  611. }
  612. client_read();
  613. } else {
  614. BUGZ_LOG(warning) << "CI: read_failed";
  615. if (connected) {
  616. BUGZ_LOG(warning) << "Server.shutdown()";
  617. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  618. }
  619. }
  620. });
  621. }
  622. void Session::to_client(const std::string &message) {
  623. auto self(shared_from_this());
  624. // output the cleaned string (so I can see what we're sending in the
  625. // logs)
  626. std::string clean = clean_string(message);
  627. BUGZ_LOG(trace) << "2C: " << clean;
  628. boost::asio::async_write(
  629. socket_, boost::asio::buffer(message),
  630. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  631. if (!ec) {
  632. } else {
  633. BUGZ_LOG(warning) << "2C: write failed? closed? Server.shutdown()";
  634. if (connected) {
  635. BUGZ_LOG(warning) << "Server.shutdown()";
  636. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  637. }
  638. }
  639. });
  640. }
  641. void Session::to_server(const std::string &message) {
  642. auto self(shared_from_this());
  643. boost::asio::async_write(
  644. server_, boost::asio::buffer(message),
  645. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  646. if (!ec) {
  647. } else {
  648. BUGZ_LOG(warning) << "S: write failed? closed? socket.shutdown()";
  649. // we're no longer connected.
  650. connected = false;
  651. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  652. }
  653. });
  654. if (active) {
  655. start_keepin_alive();
  656. }
  657. }
  658. void Session::start_keepin_alive(void) {
  659. // keep alive timer
  660. keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
  661. keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
  662. boost::asio::placeholders::error));
  663. }
  664. void Session::stayin_alive(const boost::system::error_code error) {
  665. if (error != boost::asio::error::operation_aborted) {
  666. // stayin' alive, stayin' alive...
  667. if (active) {
  668. to_server(" ");
  669. BUGZ_LOG(warning) << "Session::stayin_alive()";
  670. }
  671. }
  672. }
  673. Server::Server(boost::asio::io_service &io_service,
  674. const boost::asio::ip::tcp::endpoint &endpoint,
  675. const std::string &host, const std::string &port)
  676. : io_service_{io_service}, acceptor_{io_service_, endpoint},
  677. signal_{io_service, SIGUSR1, SIGTERM}, host_{host}, port_{port} {
  678. keep_accepting = true;
  679. BUGZ_LOG(info) << "Server::Server()";
  680. signal_.async_wait(boost::bind(&Server::on_signal, this,
  681. boost::asio::placeholders::error,
  682. boost::asio::placeholders::signal_number));
  683. do_accept();
  684. }
  685. void Server::on_signal(const boost::system::error_code &ec, int signal) {
  686. BUGZ_LOG(info) << "on_signal() :" << signal;
  687. keep_accepting = false;
  688. boost::system::error_code error;
  689. acceptor_.cancel(error);
  690. BUGZ_LOG(info) << "cancel: " << error;
  691. acceptor_.close(error);
  692. BUGZ_LOG(info) << "close: " << error;
  693. }
  694. Server::~Server() {
  695. CONFIG = YAML::Node();
  696. BUGZ_LOG(info) << "Server::~Server()";
  697. }
  698. /**
  699. * setup async connect accept
  700. *
  701. * This creates a session for each connection. Using make_shared allows the
  702. * session to automatically clean up when it is no longer active/has anything
  703. * running in the reactor.
  704. */
  705. void Server::do_accept(void) {
  706. acceptor_.async_accept([this](boost::system::error_code ec,
  707. boost::asio::ip::tcp::socket socket) {
  708. if (!ec) {
  709. BUGZ_LOG(info) << "Server::do_accept()";
  710. std::make_shared<Session>(std::move(socket), io_service_, host_, port_)
  711. ->start();
  712. }
  713. if (keep_accepting) {
  714. BUGZ_LOG(info) << "do_accept()";
  715. do_accept();
  716. }
  717. });
  718. }
  719. /**
  720. * Clean up the trailing ../ in __FILE__
  721. *
  722. * This is used by the logging macro.
  723. *
  724. * @param filepath
  725. * @return const char*
  726. */
  727. const char *trim_path(const char *filepath) {
  728. if (strncmp(filepath, "../", 3) == 0) {
  729. filepath += 3;
  730. }
  731. return filepath;
  732. }