session.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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 "session.h"
  8. #include <string>
  9. // #include <boost/log/attributes/named_scope.hpp>
  10. bool replace(std::string &str, const std::string &from, const std::string &to) {
  11. size_t start_pos = str.find(from);
  12. if (start_pos == std::string::npos)
  13. return false;
  14. do {
  15. str.replace(start_pos, from.length(), to);
  16. } while ((start_pos = str.find(from)) != std::string::npos);
  17. return true;
  18. }
  19. bool replace(std::string &str, const char *from, const char *to) {
  20. size_t start_pos = str.find(from);
  21. if (start_pos == std::string::npos)
  22. return false;
  23. do {
  24. str.replace(start_pos, strlen(from), to);
  25. } while ((start_pos = str.find(from)) != std::string::npos);
  26. return true;
  27. }
  28. void ansi_clean(std::string &str) {
  29. static std::regex ansi_cleaner("\x1b\[[0-9;]*[A-Zmh]",
  30. std::regex_constants::ECMAScript);
  31. str = std::regex_replace(str, ansi_cleaner, "");
  32. }
  33. void high_ascii(std::string &str) {
  34. static std::regex high_cleaner("[\x80-\xff]+",
  35. std::regex_constants::ECMAScript);
  36. str = std::regex_replace(str, high_cleaner, "#");
  37. }
  38. std::string clean_string(const std::string &source) {
  39. // BOOST_LOG_NAMED_SCOPE("clean_string");
  40. std::string clean = source;
  41. replace(clean, "\n", "\\n");
  42. replace(clean, "\r", "\\r");
  43. // ANSI too
  44. ansi_clean(clean);
  45. // BOOST_LOG_TRIVIAL(error) << "cleaned: " << clean;
  46. high_ascii(clean);
  47. replace(clean, "\x1b", "^");
  48. return clean;
  49. }
  50. session::session(boost::asio::ip::tcp::socket socket,
  51. boost::asio::io_service &io_service, std::string hostname,
  52. std::string port)
  53. : socket_(std::move(socket)),
  54. io_service_{io_service}, resolver_{io_service}, server_{io_service},
  55. timer_{io_service}, host{hostname}, port{port} {
  56. server_sent = 0;
  57. // BOOST_LOG_NAMED_SCOPE("session");
  58. }
  59. void session::start(void) {
  60. // BOOST_LOG_NAMED_SCOPE();
  61. // If I want the file and line number information, here's how to do it:
  62. // BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
  63. BOOST_LOG_TRIVIAL(info) << "session()";
  64. BUGZ_LOG(info) << "session::start()";
  65. auto self(shared_from_this());
  66. // read_buffer.reserve(1024);
  67. // do_write("Welcome!\n");
  68. do_read();
  69. }
  70. session::~session() {
  71. BOOST_LOG_TRIVIAL(info) << "~session";
  72. BUGZ_LOG(info) << "~session destructed";
  73. }
  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. BOOST_LOG_TRIVIAL(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. BOOST_LOG_TRIVIAL(error) << "Failed to connect to " << host << ":" << port;
  107. BOOST_LOG_TRIVIAL(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. std::string temp = clean_string(line);
  114. BOOST_LOG_TRIVIAL(info) << "SL: " << temp;
  115. }
  116. /*
  117. Call this with whatever we just received.
  118. That will allow me to send "just whatever I got"
  119. this time around, rather then trying to figure out
  120. what was just added to server_prompt.
  121. What about \r, \b ? Should that "reset" the server_prompt?
  122. */
  123. void session::process_lines(std::string &received) {
  124. // break server_prompt into lines and send/process one by one.
  125. size_t pos, rpos;
  126. server_prompt.append(received);
  127. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  128. std::string line;
  129. // process "line" in received
  130. rpos = received.find('\n', 0);
  131. // get line to send to the client
  132. if (show_client) {
  133. // that is, if we're sending to the client!
  134. line = received.substr(0, rpos + 1);
  135. /*
  136. std::string clean = clean_string(line);
  137. BOOST_LOG_TRIVIAL(error) << "rpos/show_client:" << clean;
  138. */
  139. to_client(line);
  140. }
  141. received = received.substr(rpos + 1);
  142. // process "line" in server_prompt
  143. line = server_prompt.substr(0, pos + 1);
  144. server_prompt = server_prompt.substr(pos + 1);
  145. // Remove \n for dispatching
  146. std::string part = line.substr(0, pos);
  147. if (server_sent != 0) {
  148. line = line.substr(server_sent);
  149. server_sent = 0;
  150. };
  151. // display on?
  152. // to_client(line);
  153. // NOTE: We get "TradeWars Game Server\n" (Missing \r)
  154. // We add the \r with our injection line.
  155. // TODO(stevet): MOVE TO DEFAULT dispatcher
  156. // our first injection
  157. if (line.find("TradeWars Game Server") != std::string::npos) {
  158. to_client("\rTradeWars Proxy v2++ READY (~ to activate)\n\r");
  159. }
  160. // How should I handle \r in lines? For now, remove it
  161. // but LOG that we did.
  162. if (replace(part, "\r", "")) {
  163. BOOST_LOG_TRIVIAL(warning) << "\\r removed from line";
  164. }
  165. dispatch_line(part);
  166. }
  167. // Ok, we have sent all of the \n lines.
  168. if (!received.empty())
  169. if (show_client) {
  170. to_client(received);
  171. std::string clean = clean_string(received);
  172. BOOST_LOG_TRIVIAL(error) << "show_client/leftovers:" << clean;
  173. }
  174. }
  175. void session::server_read(void) {
  176. auto self(shared_from_this());
  177. boost::asio::async_read(
  178. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  179. boost::asio::transfer_at_least(1),
  180. [this, self](boost::system::error_code ec, std::size_t length) {
  181. if (!ec) {
  182. server_buffer[length] = 0;
  183. // server_prompt.append(server_buffer, length);
  184. std::string received(server_buffer, length);
  185. process_lines(received);
  186. /*
  187. I don't believe I need to consume this,
  188. I'm not async_reading from a stream.
  189. */
  190. /*
  191. if (length) {
  192. // std::cout << length << std::endl;
  193. std::cout << "S: " << server_buffer << std::endl;
  194. do_write(server_buffer);
  195. }
  196. */
  197. server_read();
  198. } else {
  199. BOOST_LOG_TRIVIAL(warning) << "S: read_failed: socket.shutdown()";
  200. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  201. }
  202. });
  203. }
  204. void session::on_resolve(
  205. const boost::system::error_code error,
  206. const boost::asio::ip::tcp::resolver::results_type results) {
  207. //
  208. auto self(shared_from_this());
  209. if (!error) {
  210. // Take the first endpoint.
  211. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  212. server_.async_connect(endpoint,
  213. boost::bind(&session::on_connect, this,
  214. boost::asio::placeholders::error));
  215. } else {
  216. // TO DO:
  217. // BOOST_LOG_NAMED_SCOPE("session");
  218. BOOST_LOG_TRIVIAL(error) << "Unable to resolve: " << host;
  219. std::string output =
  220. str(boost::format("Unable to resolve: %1%\n\r") % host);
  221. to_client(output);
  222. BOOST_LOG_TRIVIAL(warning) << "socket.shutdown()";
  223. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  224. }
  225. }
  226. void session::do_read(void) {
  227. auto self(shared_from_this());
  228. boost::asio::async_read( // why can't I async_read_some here?
  229. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  230. boost::asio::transfer_at_least(1),
  231. [this, self](boost::system::error_code ec, std::size_t length) {
  232. if (!ec) {
  233. read_buffer[length] = 0;
  234. if (rlogin_auth.empty()) {
  235. // first read should be rlogin information
  236. rlogin_auth.assign(read_buffer, length);
  237. // parse authentication information
  238. parse_auth();
  239. to_client(std::string(1, 0));
  240. to_client("Welcome, ");
  241. to_client(rlogin_name);
  242. to_client("\n\r");
  243. // Activate the connection to the server
  244. /* // this fails, and I'm not sure why. I've used code like this
  245. before. resolver_.async_resolve( host, port, std::bind(
  246. &session::on_resolve, this, _1, _2)); */
  247. // This example shows using boost::bind, which WORKS.
  248. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  249. resolver_.async_resolve(
  250. host, port,
  251. boost::bind(&session::on_resolve, this,
  252. boost::asio::placeholders::error,
  253. boost::asio::placeholders::iterator));
  254. } else if (length) {
  255. // Proxy Active?
  256. // BOOST_LOG_NAMED_SCOPE("session");
  257. if (talk_direct)
  258. to_server(read_buffer);
  259. BOOST_LOG_TRIVIAL(info) << "C: " << read_buffer;
  260. // do_write(output);
  261. }
  262. do_read();
  263. } else {
  264. BOOST_LOG_TRIVIAL(warning) << "C: read_failed";
  265. if (connected) {
  266. BOOST_LOG_TRIVIAL(warning) << "server.shutdown()";
  267. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  268. }
  269. }
  270. });
  271. }
  272. void session::to_client(std::string message) {
  273. auto self(shared_from_this());
  274. // output the cleaned string (so I can see what we're sending in the
  275. // logs)
  276. std::string clean = clean_string(message);
  277. BOOST_LOG_TRIVIAL(trace) << "C: >>" << clean;
  278. boost::asio::async_write(
  279. socket_, boost::asio::buffer(message),
  280. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  281. if (!ec) {
  282. } else {
  283. BOOST_LOG_TRIVIAL(warning)
  284. << "C: write failed? closed? server.shutdown()";
  285. if (connected) {
  286. BOOST_LOG_TRIVIAL(warning) << "server.shutdown()";
  287. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  288. }
  289. }
  290. });
  291. }
  292. void session::to_server(std::string message) {
  293. auto self(shared_from_this());
  294. boost::asio::async_write(
  295. server_, boost::asio::buffer(message),
  296. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  297. if (!ec) {
  298. } else {
  299. BOOST_LOG_TRIVIAL(warning)
  300. << "S: write failed? closed? socket.shutdown()";
  301. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  302. }
  303. });
  304. }
  305. /*
  306. void session::on_shutdown(boost::system::error_code ec) {
  307. std::cout << "shutdown." << std::endl;
  308. }
  309. */
  310. server::server(boost::asio::io_service &io_service,
  311. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  312. std::string port)
  313. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  314. port_{port} {
  315. do_accept();
  316. }
  317. /**
  318. * setup async connect accept
  319. *
  320. * This creates a session for each connection. Using make_shared allows the
  321. * session to automatically clean up when it is no longer active/has anything
  322. * running in the reactor.
  323. */
  324. void server::do_accept(void) {
  325. acceptor_.async_accept([this](boost::system::error_code ec,
  326. boost::asio::ip::tcp::socket socket) {
  327. if (!ec) {
  328. BOOST_LOG_TRIVIAL(info) << "server::do_accept()";
  329. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  330. ->start();
  331. }
  332. do_accept();
  333. });
  334. }