session.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  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. // BUGZ_LOG(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. }
  58. void session::start(void) {
  59. // BOOST_LOG_NAMED_SCOPE();
  60. // If I want the file and line number information, here's how to do it:
  61. // BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
  62. BUGZ_LOG(info) << "session::start()";
  63. auto self(shared_from_this());
  64. // read_buffer.reserve(1024);
  65. // do_write("Welcome!\n");
  66. client_read();
  67. }
  68. session::~session() {
  69. BUGZ_LOG(info) << "~session";
  70. }
  71. void session::parse_auth(void) {
  72. // how many nulls should I be seeing?
  73. // \0user\0pass\0terminal/SPEED\0
  74. // If I don't have a proper rlogin value here, it isn't going
  75. // to work when I try to connect to the rlogin server.
  76. if (rlogin_auth.size() > 10)
  77. rlogin_name = rlogin_auth.c_str() + 1;
  78. else
  79. rlogin_name = "?";
  80. }
  81. void session::on_connect(const boost::system::error_code error) {
  82. // We've connected to the server! WOOT WOOT!
  83. // BOOST_LOG_NAMED_SCOPE("session");
  84. if (!error) {
  85. BUGZ_LOG(info) << "Connected to " << host;
  86. to_client("Connected...\n\r");
  87. connected = true;
  88. if (rlogin_auth[0] != 0) {
  89. // Ok, the rlogin information was junk --
  90. to_client("Let me make up some fake rlogin data for you...\n\r");
  91. char temp[] = "\0test\0test\0terminal/9600\0";
  92. std::string tmp(temp, sizeof(temp));
  93. to_server(tmp);
  94. } else {
  95. to_server(rlogin_auth);
  96. }
  97. server_read();
  98. } else {
  99. // TODO:
  100. std::string output =
  101. str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
  102. to_client(output);
  103. BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
  104. BUGZ_LOG(warning) << "socket.shutdown()";
  105. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  106. }
  107. }
  108. void session::dispatch_line(std::string line) {
  109. // Does this have \n\r still on it? I don't want them.
  110. std::string temp = clean_string(line);
  111. BUGZ_LOG(info) << "SL: " << temp;
  112. }
  113. /*
  114. Call this with whatever we just received.
  115. That will allow me to send "just whatever I got"
  116. this time around, rather then trying to figure out
  117. what was just added to server_prompt.
  118. What about \r, \b ? Should that "reset" the server_prompt?
  119. */
  120. void session::process_lines(std::string &received) {
  121. // break server_prompt into lines and send/process one by one.
  122. size_t pos, rpos;
  123. server_prompt.append(received);
  124. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  125. std::string line;
  126. // process "line" in received
  127. rpos = received.find('\n', 0);
  128. // get line to send to the client
  129. if (show_client) {
  130. // that is, if we're sending to the client!
  131. line = received.substr(0, rpos + 1);
  132. /*
  133. std::string clean = clean_string(line);
  134. BUGZ_LOG(error) << "rpos/show_client:" << clean;
  135. */
  136. to_client(line);
  137. }
  138. received = received.substr(rpos + 1);
  139. // process "line" in server_prompt
  140. line = server_prompt.substr(0, pos + 1);
  141. server_prompt = server_prompt.substr(pos + 1);
  142. // Remove \n for dispatching
  143. std::string part = line.substr(0, pos);
  144. if (server_sent != 0) {
  145. line = line.substr(server_sent);
  146. server_sent = 0;
  147. };
  148. // display on?
  149. // to_client(line);
  150. // NOTE: We get "TradeWars Game Server\n" (Missing \r)
  151. // We add the \r with our injection line.
  152. // TODO(stevet): MOVE TO DEFAULT dispatcher
  153. // our first injection
  154. if (line.find("TradeWars Game Server") != std::string::npos) {
  155. to_client("\rTradeWars Proxy v2++ READY (~ to activate)\n\r");
  156. }
  157. // How should I handle \r in lines? For now, remove it
  158. // but LOG that we did.
  159. if (replace(part, "\r", "")) {
  160. BUGZ_LOG(warning) << "\\r removed from line";
  161. }
  162. dispatch_line(part);
  163. }
  164. // Ok, we have sent all of the \n lines.
  165. if (!received.empty())
  166. if (show_client) {
  167. to_client(received);
  168. // std::string clean = clean_string(received);
  169. // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
  170. }
  171. }
  172. void session::server_read(void) {
  173. auto self(shared_from_this());
  174. boost::asio::async_read(
  175. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  176. boost::asio::transfer_at_least(1),
  177. [this, self](boost::system::error_code ec, std::size_t length) {
  178. if (!ec) {
  179. server_buffer[length] = 0;
  180. // server_prompt.append(server_buffer, length);
  181. std::string received(server_buffer, length);
  182. process_lines(received);
  183. /*
  184. I don't believe I need to consume this,
  185. I'm not async_reading from a stream.
  186. */
  187. /*
  188. if (length) {
  189. // std::cout << length << std::endl;
  190. std::cout << "S: " << server_buffer << std::endl;
  191. do_write(server_buffer);
  192. }
  193. */
  194. server_read();
  195. } else {
  196. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  197. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  198. }
  199. });
  200. }
  201. void session::on_resolve(
  202. const boost::system::error_code error,
  203. const boost::asio::ip::tcp::resolver::results_type results) {
  204. //
  205. auto self(shared_from_this());
  206. if (!error) {
  207. // Take the first endpoint.
  208. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  209. server_.async_connect(endpoint,
  210. boost::bind(&session::on_connect, this,
  211. boost::asio::placeholders::error));
  212. } else {
  213. // TO DO:
  214. // BOOST_LOG_NAMED_SCOPE("session");
  215. BUGZ_LOG(error) << "Unable to resolve: " << host;
  216. std::string output =
  217. str(boost::format("Unable to resolve: %1%\n\r") % host);
  218. to_client(output);
  219. BUGZ_LOG(warning) << "socket.shutdown()";
  220. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  221. }
  222. }
  223. void session::client_read(void) {
  224. auto self(shared_from_this());
  225. boost::asio::async_read( // why can't I async_read_some here?
  226. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  227. boost::asio::transfer_at_least(1),
  228. [this, self](boost::system::error_code ec, std::size_t length) {
  229. if (!ec) {
  230. read_buffer[length] = 0;
  231. if (rlogin_auth.empty()) {
  232. // first read should be rlogin information
  233. rlogin_auth.assign(read_buffer, length);
  234. // parse authentication information
  235. parse_auth();
  236. to_client(std::string(1, 0));
  237. to_client("Welcome, ");
  238. to_client(rlogin_name);
  239. to_client("\n\r");
  240. // Activate the connection to the server
  241. /* // this fails, and I'm not sure why. I've used code like this
  242. before. resolver_.async_resolve( host, port, std::bind(
  243. &session::on_resolve, this, _1, _2)); */
  244. // This example shows using boost::bind, which WORKS.
  245. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  246. resolver_.async_resolve(
  247. host, port,
  248. boost::bind(&session::on_resolve, this,
  249. boost::asio::placeholders::error,
  250. boost::asio::placeholders::iterator));
  251. } else if (length) {
  252. // Proxy Active?
  253. // BOOST_LOG_NAMED_SCOPE("session");
  254. if (talk_direct)
  255. to_server(read_buffer);
  256. BUGZ_LOG(info) << "C: " << read_buffer;
  257. // do_write(output);
  258. }
  259. client_read();
  260. } else {
  261. BUGZ_LOG(warning) << "C: read_failed";
  262. if (connected) {
  263. BUGZ_LOG(warning) << "server.shutdown()";
  264. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  265. }
  266. }
  267. });
  268. }
  269. void session::to_client(std::string message) {
  270. auto self(shared_from_this());
  271. // output the cleaned string (so I can see what we're sending in the
  272. // logs)
  273. std::string clean = clean_string(message);
  274. BUGZ_LOG(trace) << "2C: " << clean;
  275. boost::asio::async_write(
  276. socket_, boost::asio::buffer(message),
  277. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  278. if (!ec) {
  279. } else {
  280. BUGZ_LOG(warning)
  281. << "C: write failed? closed? server.shutdown()";
  282. if (connected) {
  283. BUGZ_LOG(warning) << "server.shutdown()";
  284. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  285. }
  286. }
  287. });
  288. }
  289. void session::to_server(std::string message) {
  290. auto self(shared_from_this());
  291. boost::asio::async_write(
  292. server_, boost::asio::buffer(message),
  293. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  294. if (!ec) {
  295. } else {
  296. BUGZ_LOG(warning)
  297. << "S: write failed? closed? socket.shutdown()";
  298. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  299. }
  300. });
  301. }
  302. server::server(boost::asio::io_service &io_service,
  303. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  304. std::string port)
  305. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  306. port_{port} {
  307. do_accept();
  308. }
  309. /**
  310. * setup async connect accept
  311. *
  312. * This creates a session for each connection. Using make_shared allows the
  313. * session to automatically clean up when it is no longer active/has anything
  314. * running in the reactor.
  315. */
  316. void server::do_accept(void) {
  317. acceptor_.async_accept([this](boost::system::error_code ec,
  318. boost::asio::ip::tcp::socket socket) {
  319. if (!ec) {
  320. BUGZ_LOG(info) << "server::do_accept()";
  321. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  322. ->start();
  323. }
  324. do_accept();
  325. });
  326. }
  327. /**
  328. * Clean up the trailing ../ in __FILE__
  329. *
  330. * This is used by the logging macro.
  331. *
  332. * @param filepath
  333. * @return const char*
  334. */
  335. const char * trim_path( const char * filepath ) {
  336. if (strncmp(filepath, "../", 3) == 0) {
  337. filepath += 3;
  338. }
  339. return filepath;
  340. }