session.cpp 25 KB

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