session.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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 "session.h"
  9. #include "logging.h"
  10. #include <string>
  11. // #include <boost/log/attributes/named_scope.hpp>
  12. bool replace(std::string &str, const std::string &from, const std::string &to) {
  13. size_t start_pos = str.find(from);
  14. if (start_pos == std::string::npos)
  15. return false;
  16. do {
  17. str.replace(start_pos, from.length(), to);
  18. } while ((start_pos = str.find(from)) != std::string::npos);
  19. return true;
  20. }
  21. bool replace(std::string &str, const char *from, const char *to) {
  22. size_t start_pos = str.find(from);
  23. if (start_pos == std::string::npos)
  24. return false;
  25. do {
  26. str.replace(start_pos, strlen(from), to);
  27. } while ((start_pos = str.find(from)) != std::string::npos);
  28. return true;
  29. }
  30. void ansi_clean(std::string &str) {
  31. static std::regex ansi_cleaner("\x1b\[[0-9;]*[A-Zmh]",
  32. std::regex_constants::ECMAScript);
  33. str = std::regex_replace(str, ansi_cleaner, "");
  34. }
  35. void high_ascii(std::string &str) {
  36. static std::regex high_cleaner("[\x80-\xff]+",
  37. std::regex_constants::ECMAScript);
  38. str = std::regex_replace(str, high_cleaner, "#");
  39. }
  40. std::string clean_string(const std::string &source) {
  41. // BOOST_LOG_NAMED_SCOPE("clean_string");
  42. std::string clean = source;
  43. replace(clean, "\n", "\\n");
  44. replace(clean, "\r", "\\r");
  45. replace(clean, "\b", "\\b");
  46. // ANSI too
  47. ansi_clean(clean);
  48. // BUGZ_LOG(error) << "cleaned: " << clean;
  49. high_ascii(clean);
  50. replace(clean, "\x1b", "^");
  51. return clean;
  52. }
  53. Session::Session(boost::asio::ip::tcp::socket socket,
  54. boost::asio::io_service &io_service, std::string hostname,
  55. std::string port)
  56. : direct{this}, socket_(std::move(socket)), io_service_{io_service},
  57. resolver_{io_service}, server_{io_service}, timer_{io_service},
  58. keep_alive_{io_service}, host{hostname}, port{port} {
  59. // server_sent = 0;
  60. time_ms = stoi(from_config("prompt_timeout", "50"));
  61. keepalive_secs = stoi(from_config("keepalive", "45"));
  62. }
  63. void Session::start(void) {
  64. // BOOST_LOG_NAMED_SCOPE();
  65. // If I want the file and line number information, here's how to do it:
  66. // BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
  67. BUGZ_LOG(info) << "Session::start()";
  68. auto self(shared_from_this());
  69. // read_buffer.reserve(1024);
  70. // do_write("Welcome!\n");
  71. client_read();
  72. }
  73. Session::~Session() { BUGZ_LOG(info) << "~Session"; }
  74. const std::string &Session::get_prompt(void) { return server_prompt; }
  75. void Session::parse_auth(void) {
  76. // how many nulls should I be seeing?
  77. // \0user\0pass\0terminal/SPEED\0
  78. // If I don't have a proper rlogin value here, it isn't going
  79. // to work when I try to connect to the rlogin server.
  80. if (rlogin_auth.size() > 10)
  81. rlogin_name = rlogin_auth.c_str() + 1;
  82. else
  83. rlogin_name = "?";
  84. }
  85. void Session::on_connect(const boost::system::error_code error) {
  86. // We've connected to the server! WOOT WOOT!
  87. // BOOST_LOG_NAMED_SCOPE("Session");
  88. if (!error) {
  89. BUGZ_LOG(info) << "Connected to " << host;
  90. to_client("Connected...\n\r");
  91. connected = true;
  92. if (rlogin_auth[0] != 0) {
  93. // Ok, the rlogin information was junk --
  94. to_client("Let me make up some fake rlogin data for you...\n\r");
  95. char temp[] = "\0test\0test\0terminal/9600\0";
  96. std::string tmp(temp, sizeof(temp));
  97. to_server(tmp);
  98. } else {
  99. to_server(rlogin_auth);
  100. }
  101. server_read();
  102. } else {
  103. // TODO:
  104. std::string output =
  105. str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
  106. to_client(output);
  107. BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
  108. BUGZ_LOG(warning) << "socket.shutdown()";
  109. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  110. }
  111. }
  112. void Session::dispatch_line(std::string line) {
  113. // Does this have \n\r still on it? I don't want them.
  114. // cleanup backspaces
  115. size_t pos;
  116. while ((pos = line.find('\b')) != std::string::npos) {
  117. // backspace? OK! (unless)
  118. if (pos == 0) {
  119. // first character, so there's nothing "extra" to erase.
  120. line = line.erase(pos, 1);
  121. } else
  122. line = line.erase(pos - 1, 2);
  123. }
  124. std::string temp = clean_string(line);
  125. BUGZ_LOG(info) << "SL: " << temp;
  126. }
  127. /*
  128. Call this with whatever we just received.
  129. That will allow me to send "just whatever I got"
  130. this time around, rather then trying to figure out
  131. what was just added to server_prompt.
  132. What about \r, \b ? Should that "reset" the server_prompt?
  133. */
  134. void Session::process_lines(std::string &received) {
  135. // break server_prompt into lines and send/process one by one.
  136. size_t pos, rpos;
  137. server_prompt.append(received);
  138. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  139. std::string line;
  140. // process "line" in received
  141. rpos = received.find('\n', 0);
  142. // get line to send to the client
  143. if (show_client) {
  144. // that is, if we're sending to the client!
  145. line = received.substr(0, rpos + 1);
  146. /*
  147. std::string clean = clean_string(line);
  148. BUGZ_LOG(error) << "rpos/show_client:" << clean;
  149. */
  150. to_client(line);
  151. }
  152. received = received.substr(rpos + 1);
  153. // process "line" in server_prompt
  154. line = server_prompt.substr(0, pos + 1);
  155. server_prompt = server_prompt.substr(pos + 1);
  156. // Remove \n for dispatching
  157. std::string part = line.substr(0, pos);
  158. /*
  159. if (server_sent != 0) {
  160. line = line.substr(server_sent);
  161. server_sent = 0;
  162. };
  163. */
  164. // display on?
  165. // to_client(line);
  166. // NOTE: We get "TradeWars Game Server\n" (Missing \r)
  167. // We add the \r with our injection line.
  168. // TODO(stevet): MOVE TO DEFAULT dispatcher
  169. // our first injection
  170. if (line.find("TradeWars Game Server") != std::string::npos) {
  171. to_client("\rTradeWars Proxy v2++ READY (~ to activate)\n\r");
  172. }
  173. // How should I handle \r in lines? For now, remove it
  174. // but LOG that we did.
  175. replace(part, "\r", "");
  176. /*
  177. if (replace(part, "\r", "")) {
  178. BUGZ_LOG(warning) << "\\r removed from line";
  179. }
  180. */
  181. dispatch_line(part);
  182. }
  183. // Ok, we have sent all of the \n lines.
  184. if (!received.empty())
  185. if (show_client) {
  186. to_client(received);
  187. // std::string clean = clean_string(received);
  188. // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
  189. }
  190. // check the server prompt here:
  191. if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
  192. // server_prompt contains \r, remove it.
  193. server_prompt = server_prompt.substr(pos + 1);
  194. }
  195. while ((pos = server_prompt.find('\b')) != std::string::npos) {
  196. // backspace? OK! (unless)
  197. if (pos == 0) {
  198. // first character, so there's nothing "extra" to erase.
  199. server_prompt = server_prompt.erase(pos, 1);
  200. } else
  201. server_prompt = server_prompt.erase(pos - 1, 2);
  202. }
  203. if (!server_prompt.empty()) {
  204. // We have something remaining -- start the timer!
  205. set_timer();
  206. }
  207. }
  208. void Session::set_timer(void) {
  209. timer_.expires_after(std::chrono::milliseconds(time_ms));
  210. timer_.async_wait(
  211. boost::bind(&Session::on_timer, this, boost::asio::placeholders::error));
  212. }
  213. void Session::reset_timer(void) { timer_.cancel(); }
  214. void Session::on_timer(const boost::system::error_code error) {
  215. if (error != boost::asio::error::operation_aborted) {
  216. // Ok, VALID timeout
  217. if (!server_prompt.empty()) {
  218. // Here's what is happening:
  219. // SP: [ESC[2JESC[H]
  220. // which after clean_string is empty.
  221. std::string clean = clean_string(server_prompt);
  222. if (!clean.empty()) {
  223. BUGZ_LOG(warning) << "SP: [" << clean << "]";
  224. // emit
  225. }
  226. // BUGZ_LOG(trace) << "SP: [" << server_prompt << "]";
  227. }
  228. }
  229. }
  230. void Session::server_read(void) {
  231. auto self(shared_from_this());
  232. boost::asio::async_read(
  233. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  234. boost::asio::transfer_at_least(1),
  235. [this, self](boost::system::error_code ec, std::size_t length) {
  236. if (!ec) {
  237. server_buffer[length] = 0;
  238. // server_prompt.append(server_buffer, length);
  239. std::string received(server_buffer, length);
  240. process_lines(received);
  241. /*
  242. I don't believe I need to consume this,
  243. I'm not async_reading from a stream.
  244. */
  245. /*
  246. if (length) {
  247. // std::cout << length << std::endl;
  248. std::cout << "S: " << server_buffer << std::endl;
  249. do_write(server_buffer);
  250. }
  251. */
  252. server_read();
  253. } else {
  254. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  255. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  256. }
  257. });
  258. }
  259. void Session::on_resolve(
  260. const boost::system::error_code error,
  261. const boost::asio::ip::tcp::resolver::results_type results) {
  262. //
  263. auto self(shared_from_this());
  264. if (!error) {
  265. // Take the first endpoint.
  266. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  267. server_.async_connect(endpoint,
  268. boost::bind(&Session::on_connect, this,
  269. boost::asio::placeholders::error));
  270. } else {
  271. // TO DO:
  272. // BOOST_LOG_NAMED_SCOPE("Session");
  273. BUGZ_LOG(error) << "Unable to resolve: " << host;
  274. std::string output =
  275. str(boost::format("Unable to resolve: %1%\n\r") % host);
  276. to_client(output);
  277. BUGZ_LOG(warning) << "socket.shutdown()";
  278. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  279. }
  280. }
  281. void Session::client_read(void) {
  282. auto self(shared_from_this());
  283. boost::asio::async_read( // why can't I async_read_some here?
  284. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  285. boost::asio::transfer_at_least(1),
  286. [this, self](boost::system::error_code ec, std::size_t length) {
  287. if (!ec) {
  288. read_buffer[length] = 0;
  289. if (rlogin_auth.empty()) {
  290. // first read should be rlogin information
  291. rlogin_auth.assign(read_buffer, length);
  292. // parse authentication information
  293. parse_auth();
  294. to_client(std::string(1, 0));
  295. to_client("Welcome, ");
  296. to_client(rlogin_name);
  297. to_client("\n\r");
  298. // Activate the connection to the server
  299. /* // this fails, and I'm not sure why. I've used code like this
  300. before. resolver_.async_resolve( host, port, std::bind(
  301. &Session::on_resolve, this, _1, _2)); */
  302. // This example shows using boost::bind, which WORKS.
  303. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  304. resolver_.async_resolve(
  305. host, port,
  306. boost::bind(&Session::on_resolve, this,
  307. boost::asio::placeholders::error,
  308. boost::asio::placeholders::iterator));
  309. } else if (length) {
  310. // Proxy Active?
  311. // BOOST_LOG_NAMED_SCOPE("Session");
  312. if (talk_direct)
  313. to_server(read_buffer);
  314. BUGZ_LOG(info) << "CI: " << read_buffer;
  315. // do_write(output);
  316. }
  317. client_read();
  318. } else {
  319. BUGZ_LOG(warning) << "CI: read_failed";
  320. if (connected) {
  321. BUGZ_LOG(warning) << "Server.shutdown()";
  322. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  323. }
  324. }
  325. });
  326. }
  327. void Session::to_client(std::string message) {
  328. auto self(shared_from_this());
  329. // output the cleaned string (so I can see what we're sending in the
  330. // logs)
  331. std::string clean = clean_string(message);
  332. BUGZ_LOG(trace) << "2C: " << clean;
  333. boost::asio::async_write(
  334. socket_, boost::asio::buffer(message),
  335. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  336. if (!ec) {
  337. } else {
  338. BUGZ_LOG(warning) << "2C: write failed? closed? Server.shutdown()";
  339. if (connected) {
  340. BUGZ_LOG(warning) << "Server.shutdown()";
  341. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  342. }
  343. }
  344. });
  345. }
  346. void Session::to_server(std::string message) {
  347. auto self(shared_from_this());
  348. boost::asio::async_write(
  349. server_, boost::asio::buffer(message),
  350. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  351. if (!ec) {
  352. } else {
  353. BUGZ_LOG(warning) << "S: write failed? closed? socket.shutdown()";
  354. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  355. }
  356. });
  357. // keep alive timer
  358. keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
  359. keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
  360. boost::asio::placeholders::error));
  361. }
  362. void Session::stayin_alive(const boost::system::error_code error) {
  363. if (error != boost::asio::error::operation_aborted) {
  364. // stayin' alive, stayin' alive...
  365. to_server(" ");
  366. BUGZ_LOG(warning) << "Session::stayin_alive()";
  367. }
  368. }
  369. Server::Server(boost::asio::io_service &io_service,
  370. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  371. std::string port)
  372. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  373. port_{port} {
  374. do_accept();
  375. }
  376. /**
  377. * setup async connect accept
  378. *
  379. * This creates a session for each connection. Using make_shared allows the
  380. * session to automatically clean up when it is no longer active/has anything
  381. * running in the reactor.
  382. */
  383. void Server::do_accept(void) {
  384. acceptor_.async_accept([this](boost::system::error_code ec,
  385. boost::asio::ip::tcp::socket socket) {
  386. if (!ec) {
  387. BUGZ_LOG(info) << "Server::do_accept()";
  388. std::make_shared<Session>(std::move(socket), io_service_, host_, port_)
  389. ->start();
  390. }
  391. do_accept();
  392. });
  393. }
  394. /**
  395. * Clean up the trailing ../ in __FILE__
  396. *
  397. * This is used by the logging macro.
  398. *
  399. * @param filepath
  400. * @return const char*
  401. */
  402. const char *trim_path(const char *filepath) {
  403. if (strncmp(filepath, "../", 3) == 0) {
  404. filepath += 3;
  405. }
  406. return filepath;
  407. }