session.cpp 14 KB

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