session.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. #include <boost/bind.hpp>
  2. #include <iostream>
  3. #include <boost/log/attributes/named_scope.hpp>
  4. #include <boost/log/core.hpp>
  5. #include <boost/log/trivial.hpp>
  6. #include <regex>
  7. #include "session.h"
  8. #include <string>
  9. bool replace(std::string &str, const std::string &from, const std::string &to) {
  10. size_t start_pos = str.find(from);
  11. if (start_pos == std::string::npos)
  12. return false;
  13. do {
  14. str.replace(start_pos, from.length(), to);
  15. } while ((start_pos = str.find(from)) != std::string::npos);
  16. return true;
  17. }
  18. bool replace(std::string &str, const char *from, const char *to) {
  19. size_t start_pos = str.find(from);
  20. if (start_pos == std::string::npos)
  21. return false;
  22. do {
  23. str.replace(start_pos, strlen(from), to);
  24. } while ((start_pos = str.find(from)) != std::string::npos);
  25. return true;
  26. }
  27. void ansi_clean(std::string &str) {
  28. static std::regex ansi_cleaner("\x1b\[[0-9;]*[A-Zmh]", std::regex_constants::ECMAScript);
  29. str = std::regex_replace(str, ansi_cleaner, "");
  30. }
  31. std::string clean_string(const std::string &source) {
  32. // BOOST_LOG_NAMED_SCOPE("clean_string");
  33. std::string clean = source;
  34. replace(clean, "\n", "\\n");
  35. replace(clean, "\r", "\\r");
  36. // ANSI too
  37. ansi_clean(clean);
  38. // BOOST_LOG_TRIVIAL(error) << "cleaned: " << clean;
  39. replace(clean, "\x1b", "^");
  40. return clean;
  41. }
  42. session::session(boost::asio::ip::tcp::socket socket,
  43. boost::asio::io_service &io_service, std::string hostname,
  44. std::string port)
  45. : socket_(std::move(socket)),
  46. io_service_{io_service}, resolver_{io_service}, server_{io_service},
  47. timer_{io_service}, host{hostname}, port{port} {
  48. server_sent = 0;
  49. // BOOST_LOG_NAMED_SCOPE("session");
  50. }
  51. void session::start(void) {
  52. BOOST_LOG_NAMED_SCOPE("session");
  53. BOOST_LOG_TRIVIAL(info) << "session";
  54. auto self(shared_from_this());
  55. // read_buffer.reserve(1024);
  56. // do_write("Welcome!\n");
  57. do_read();
  58. }
  59. session::~session() {
  60. BOOST_LOG_NAMED_SCOPE("session");
  61. BOOST_LOG_TRIVIAL(info) << "~session destructed";
  62. }
  63. void session::parse_auth(void) {
  64. // how many nulls should I be seeing?
  65. // \0user\0pass\0terminal/SPEED\0
  66. // Maybe in the future I'll care about parsing this out. I don't right now.
  67. // Ok, yes I do! If I don't have a proper rlogin value here, it isn't going
  68. // to work when I try to connect to the rlogin server.
  69. if (rlogin_auth.size() > 10)
  70. rlogin_name = rlogin_auth.c_str() + 1;
  71. else
  72. rlogin_name = "?";
  73. }
  74. void session::on_connect(const boost::system::error_code error) {
  75. // We've connected to the server! WOOT WOOT!
  76. BOOST_LOG_NAMED_SCOPE("session");
  77. if (!error) {
  78. BOOST_LOG_TRIVIAL(info) << "Connected to " << host;
  79. to_client("Connected...\n\r");
  80. connected = true;
  81. if (rlogin_auth[0] != 0) {
  82. // Ok, the rlogin information was junk --
  83. to_client("Let me make up some fake rlogin data for you...\n\r");
  84. char temp[] = "\0test\0test\0terminal/9600\0";
  85. std::string tmp(temp, sizeof(temp));
  86. to_server(tmp);
  87. } else {
  88. to_server(rlogin_auth);
  89. }
  90. server_read();
  91. } else {
  92. // TODO:
  93. std::string output = "Failed to connect : ";
  94. output += host;
  95. output += " : ";
  96. output += port;
  97. output += "\n\r";
  98. to_client(output);
  99. BOOST_LOG_TRIVIAL(error) << "Failed to connec to " << host << ":" << port;
  100. std::cout << "SHUTDOWN..." << std::endl;
  101. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  102. }
  103. }
  104. void session::dispatch_line(std::string line) {
  105. // Does this have \n\r still on it? I don't want them.
  106. BOOST_LOG_NAMED_SCOPE("session");
  107. std::string temp = clean_string(line);
  108. BOOST_LOG_TRIVIAL(info) << "SL: " << temp; // clean_string(line);
  109. // std::cout << "SL: " << line << std::endl;
  110. // is echo on? if so:
  111. }
  112. void session::process_lines(void) {
  113. // break server_prompt into lines and send/process one by one.
  114. size_t pos;
  115. // while ((pos = server_prompt.find("\n\r", 0, 2)) != std::string::npos) {
  116. // while ((pos = server_prompt.find("\r\n", 0, 2)) != std::string::npos) {
  117. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  118. // line
  119. std::string line = server_prompt.substr(0, pos + 1);
  120. server_prompt = server_prompt.substr(pos + 1);
  121. // Remove \n for dispatching
  122. std::string part = line.substr(0, pos);
  123. if (server_sent != 0) {
  124. line = line.substr(server_sent);
  125. server_sent = 0;
  126. };
  127. // display on?
  128. to_client(line);
  129. replace(part, "\r", "");
  130. dispatch_line(part);
  131. }
  132. // display on?
  133. if (server_sent != 0) {
  134. // send partial
  135. std::string part = server_prompt.substr(server_sent);
  136. to_client(part);
  137. server_sent = server_prompt.size();
  138. } else {
  139. // send all
  140. if (!server_prompt.empty()) {
  141. to_client(server_prompt);
  142. server_sent = server_prompt.size();
  143. }
  144. }
  145. // server_sent is the # of chars we've already sent of this.
  146. }
  147. void session::server_read(void) {
  148. auto self(shared_from_this());
  149. boost::asio::async_read(
  150. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  151. boost::asio::transfer_at_least(1),
  152. [this, self](boost::system::error_code ec, std::size_t length) {
  153. if (!ec) {
  154. server_buffer[length] = 0;
  155. server_prompt.append(server_buffer, length);
  156. process_lines();
  157. /*
  158. if (length) {
  159. // std::cout << length << std::endl;
  160. std::cout << "S: " << server_buffer << std::endl;
  161. do_write(server_buffer);
  162. }
  163. */
  164. server_read();
  165. } else {
  166. std::cout << "S: read_failed: connection closed" << std::endl;
  167. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  168. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  169. // boost::asio::placeholders::error));
  170. }
  171. });
  172. }
  173. void session::on_resolve(
  174. const boost::system::error_code error,
  175. const boost::asio::ip::tcp::resolver::results_type results) {
  176. //
  177. auto self(shared_from_this());
  178. if (!error) {
  179. // Take the first endpoint.
  180. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  181. server_.async_connect(endpoint,
  182. boost::bind(&session::on_connect, this,
  183. boost::asio::placeholders::error));
  184. } else {
  185. // TO DO:
  186. BOOST_LOG_NAMED_SCOPE("session");
  187. BOOST_LOG_TRIVIAL(error) << "Unable to resolve: " << host;
  188. std::string output = "Unable to resolve: ";
  189. output += host;
  190. output += "\n\r";
  191. to_client(output);
  192. std::cout << "SHUTDOWN ..." << std::endl;
  193. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  194. }
  195. }
  196. void session::do_read(void) {
  197. auto self(shared_from_this());
  198. boost::asio::async_read( // why can't I async_read_some here?
  199. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  200. boost::asio::transfer_at_least(1),
  201. [this, self](boost::system::error_code ec, std::size_t length) {
  202. if (!ec) {
  203. read_buffer[length] = 0;
  204. if (rlogin_auth.empty()) {
  205. // first read should be rlogin information
  206. rlogin_auth.assign(read_buffer, length);
  207. // parse authentication information
  208. parse_auth();
  209. to_client(std::string(1, 0));
  210. to_client("Welcome, ");
  211. to_client(rlogin_name);
  212. to_client("\n\r");
  213. // Activate the connection to the server
  214. /* // this fails, and I'm not sure why. I've used code like this
  215. before. resolver_.async_resolve( host, port, std::bind(
  216. &session::on_resolve, this, _1, _2)); */
  217. // This example shows using boost::bind, which WORKS.
  218. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  219. resolver_.async_resolve(
  220. host, port,
  221. boost::bind(&session::on_resolve, this,
  222. boost::asio::placeholders::error,
  223. boost::asio::placeholders::iterator));
  224. } else if (length) {
  225. // std::cout << length << std::endl;
  226. // Proxy Active?
  227. BOOST_LOG_NAMED_SCOPE("session");
  228. to_server(read_buffer);
  229. BOOST_LOG_TRIVIAL(info) << "C: " << read_buffer;
  230. // do_write(output);
  231. }
  232. do_read();
  233. } else {
  234. std::cout << "C: read_failed: connection closed" << std::endl;
  235. if (connected)
  236. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  237. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  238. // boost::asio::placeholders::error));
  239. }
  240. });
  241. }
  242. void session::to_client(std::string message) {
  243. auto self(shared_from_this());
  244. boost::asio::async_write(
  245. socket_, boost::asio::buffer(message),
  246. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  247. if (!ec) {
  248. } else {
  249. std::cout << "write failed? closed?" << std::endl;
  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_server(std::string message) {
  257. auto self(shared_from_this());
  258. boost::asio::async_write(
  259. server_, 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. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  265. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  266. // boost::asio::placeholders::error));
  267. }
  268. });
  269. }
  270. void session::on_shutdown(boost::system::error_code ec) {
  271. std::cout << "shutdown." << std::endl;
  272. }
  273. server::server(boost::asio::io_service &io_service,
  274. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  275. std::string port)
  276. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  277. port_{port} {
  278. do_accept();
  279. }
  280. /**
  281. * setup async connect accept
  282. *
  283. * This creates a session for each connection. Using make_shared allows the
  284. * session to automatically clean up when it is no longer active/has anything
  285. * running in the reactor.
  286. */
  287. void server::do_accept(void) {
  288. acceptor_.async_accept([this](boost::system::error_code ec,
  289. boost::asio::ip::tcp::socket socket) {
  290. if (!ec) {
  291. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  292. ->start();
  293. }
  294. do_accept();
  295. });
  296. }