session.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  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. BOOST_LOG_TRIVIAL(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
  63. << "session";
  64. auto self(shared_from_this());
  65. // read_buffer.reserve(1024);
  66. // do_write("Welcome!\n");
  67. do_read();
  68. }
  69. session::~session() {
  70. // BOOST_LOG_NAMED_SCOPE("session");
  71. BOOST_LOG_TRIVIAL(info) << "~session destructed";
  72. }
  73. void session::parse_auth(void) {
  74. // how many nulls should I be seeing?
  75. // \0user\0pass\0terminal/SPEED\0
  76. // Maybe in the future I'll care about parsing this out. I don't right now.
  77. // Ok, yes I do! 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 = "Failed to connect : ";
  104. output += host;
  105. output += " : ";
  106. output += port;
  107. output += "\n\r";
  108. to_client(output);
  109. BOOST_LOG_TRIVIAL(error) << "Failed to connec to " << host << ":" << port;
  110. std::cout << "SHUTDOWN..." << std::endl;
  111. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  112. }
  113. }
  114. void session::dispatch_line(std::string line) {
  115. // Does this have \n\r still on it? I don't want them.
  116. // BOOST_LOG_NAMED_SCOPE("session");
  117. std::string temp = clean_string(line);
  118. BOOST_LOG_TRIVIAL(info) << "SL: " << temp; // clean_string(line);
  119. // std::cout << "SL: " << line << std::endl;
  120. // is echo on? if so:
  121. }
  122. void session::process_lines(void) {
  123. // break server_prompt into lines and send/process one by one.
  124. size_t pos;
  125. // while ((pos = server_prompt.find("\n\r", 0, 2)) != std::string::npos) {
  126. // while ((pos = server_prompt.find("\r\n", 0, 2)) != std::string::npos) {
  127. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  128. // line
  129. std::string line = server_prompt.substr(0, pos + 1);
  130. server_prompt = server_prompt.substr(pos + 1);
  131. // Remove \n for dispatching
  132. std::string part = line.substr(0, pos);
  133. if (server_sent != 0) {
  134. line = line.substr(server_sent);
  135. server_sent = 0;
  136. };
  137. // display on?
  138. to_client(line);
  139. // our first injection
  140. if (line.find("TradeWars Game Server") != std::string::npos) {
  141. to_client("\rTradeWars Proxy v2++ READY (~ to activate)\n\r");
  142. }
  143. replace(part, "\r", "");
  144. dispatch_line(part);
  145. }
  146. // display on?
  147. if (server_sent != 0) {
  148. // send partial
  149. std::string part = server_prompt.substr(server_sent);
  150. to_client(part);
  151. server_sent = server_prompt.size();
  152. } else {
  153. // send all
  154. if (!server_prompt.empty()) {
  155. to_client(server_prompt);
  156. server_sent = server_prompt.size();
  157. }
  158. }
  159. // server_sent is the # of chars we've already sent of this.
  160. }
  161. void session::server_read(void) {
  162. auto self(shared_from_this());
  163. boost::asio::async_read(
  164. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  165. boost::asio::transfer_at_least(1),
  166. [this, self](boost::system::error_code ec, std::size_t length) {
  167. if (!ec) {
  168. server_buffer[length] = 0;
  169. server_prompt.append(server_buffer, length);
  170. process_lines();
  171. /*
  172. if (length) {
  173. // std::cout << length << std::endl;
  174. std::cout << "S: " << server_buffer << std::endl;
  175. do_write(server_buffer);
  176. }
  177. */
  178. server_read();
  179. } else {
  180. std::cout << "S: read_failed: connection closed" << std::endl;
  181. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  182. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  183. // boost::asio::placeholders::error));
  184. }
  185. });
  186. }
  187. void session::on_resolve(
  188. const boost::system::error_code error,
  189. const boost::asio::ip::tcp::resolver::results_type results) {
  190. //
  191. auto self(shared_from_this());
  192. if (!error) {
  193. // Take the first endpoint.
  194. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  195. server_.async_connect(endpoint,
  196. boost::bind(&session::on_connect, this,
  197. boost::asio::placeholders::error));
  198. } else {
  199. // TO DO:
  200. // BOOST_LOG_NAMED_SCOPE("session");
  201. BOOST_LOG_TRIVIAL(error) << "Unable to resolve: " << host;
  202. std::string output = "Unable to resolve: ";
  203. output += host;
  204. output += "\n\r";
  205. to_client(output);
  206. std::cout << "SHUTDOWN ..." << std::endl;
  207. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  208. }
  209. }
  210. void session::do_read(void) {
  211. auto self(shared_from_this());
  212. boost::asio::async_read( // why can't I async_read_some here?
  213. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  214. boost::asio::transfer_at_least(1),
  215. [this, self](boost::system::error_code ec, std::size_t length) {
  216. if (!ec) {
  217. read_buffer[length] = 0;
  218. if (rlogin_auth.empty()) {
  219. // first read should be rlogin information
  220. rlogin_auth.assign(read_buffer, length);
  221. // parse authentication information
  222. parse_auth();
  223. to_client(std::string(1, 0));
  224. to_client("Welcome, ");
  225. to_client(rlogin_name);
  226. to_client("\n\r");
  227. // Activate the connection to the server
  228. /* // this fails, and I'm not sure why. I've used code like this
  229. before. resolver_.async_resolve( host, port, std::bind(
  230. &session::on_resolve, this, _1, _2)); */
  231. // This example shows using boost::bind, which WORKS.
  232. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  233. resolver_.async_resolve(
  234. host, port,
  235. boost::bind(&session::on_resolve, this,
  236. boost::asio::placeholders::error,
  237. boost::asio::placeholders::iterator));
  238. } else if (length) {
  239. // std::cout << length << std::endl;
  240. // Proxy Active?
  241. // BOOST_LOG_NAMED_SCOPE("session");
  242. to_server(read_buffer);
  243. BOOST_LOG_TRIVIAL(info) << "C: " << read_buffer;
  244. // do_write(output);
  245. }
  246. do_read();
  247. } else {
  248. std::cout << "C: read_failed: connection closed" << std::endl;
  249. if (connected)
  250. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  251. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  252. // boost::asio::placeholders::error));
  253. }
  254. });
  255. }
  256. void session::to_client(std::string message) {
  257. auto self(shared_from_this());
  258. boost::asio::async_write(
  259. socket_, boost::asio::buffer(message),
  260. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  261. if (!ec) {
  262. } else {
  263. std::cout << "write failed? closed?" << std::endl;
  264. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  265. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  266. // boost::asio::placeholders::error));
  267. }
  268. });
  269. }
  270. void session::to_server(std::string message) {
  271. auto self(shared_from_this());
  272. boost::asio::async_write(
  273. server_, boost::asio::buffer(message),
  274. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  275. if (!ec) {
  276. } else {
  277. std::cout << "write failed? closed?" << std::endl;
  278. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  279. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  280. // boost::asio::placeholders::error));
  281. }
  282. });
  283. }
  284. void session::on_shutdown(boost::system::error_code ec) {
  285. std::cout << "shutdown." << std::endl;
  286. }
  287. server::server(boost::asio::io_service &io_service,
  288. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  289. std::string port)
  290. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  291. port_{port} {
  292. do_accept();
  293. }
  294. /**
  295. * setup async connect accept
  296. *
  297. * This creates a session for each connection. Using make_shared allows the
  298. * session to automatically clean up when it is no longer active/has anything
  299. * running in the reactor.
  300. */
  301. void server::do_accept(void) {
  302. acceptor_.async_accept([this](boost::system::error_code ec,
  303. boost::asio::ip::tcp::socket socket) {
  304. if (!ec) {
  305. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  306. ->start();
  307. }
  308. do_accept();
  309. });
  310. }