session.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  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. replace(part, "\r", "");
  140. dispatch_line(part);
  141. }
  142. // display on?
  143. if (server_sent != 0) {
  144. // send partial
  145. std::string part = server_prompt.substr(server_sent);
  146. to_client(part);
  147. server_sent = server_prompt.size();
  148. } else {
  149. // send all
  150. if (!server_prompt.empty()) {
  151. to_client(server_prompt);
  152. server_sent = server_prompt.size();
  153. }
  154. }
  155. // server_sent is the # of chars we've already sent of this.
  156. }
  157. void session::server_read(void) {
  158. auto self(shared_from_this());
  159. boost::asio::async_read(
  160. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  161. boost::asio::transfer_at_least(1),
  162. [this, self](boost::system::error_code ec, std::size_t length) {
  163. if (!ec) {
  164. server_buffer[length] = 0;
  165. server_prompt.append(server_buffer, length);
  166. process_lines();
  167. /*
  168. if (length) {
  169. // std::cout << length << std::endl;
  170. std::cout << "S: " << server_buffer << std::endl;
  171. do_write(server_buffer);
  172. }
  173. */
  174. server_read();
  175. } else {
  176. std::cout << "S: read_failed: connection closed" << std::endl;
  177. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  178. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  179. // boost::asio::placeholders::error));
  180. }
  181. });
  182. }
  183. void session::on_resolve(
  184. const boost::system::error_code error,
  185. const boost::asio::ip::tcp::resolver::results_type results) {
  186. //
  187. auto self(shared_from_this());
  188. if (!error) {
  189. // Take the first endpoint.
  190. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  191. server_.async_connect(endpoint,
  192. boost::bind(&session::on_connect, this,
  193. boost::asio::placeholders::error));
  194. } else {
  195. // TO DO:
  196. // BOOST_LOG_NAMED_SCOPE("session");
  197. BOOST_LOG_TRIVIAL(error) << "Unable to resolve: " << host;
  198. std::string output = "Unable to resolve: ";
  199. output += host;
  200. output += "\n\r";
  201. to_client(output);
  202. std::cout << "SHUTDOWN ..." << std::endl;
  203. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  204. }
  205. }
  206. void session::do_read(void) {
  207. auto self(shared_from_this());
  208. boost::asio::async_read( // why can't I async_read_some here?
  209. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  210. boost::asio::transfer_at_least(1),
  211. [this, self](boost::system::error_code ec, std::size_t length) {
  212. if (!ec) {
  213. read_buffer[length] = 0;
  214. if (rlogin_auth.empty()) {
  215. // first read should be rlogin information
  216. rlogin_auth.assign(read_buffer, length);
  217. // parse authentication information
  218. parse_auth();
  219. to_client(std::string(1, 0));
  220. to_client("Welcome, ");
  221. to_client(rlogin_name);
  222. to_client("\n\r");
  223. // Activate the connection to the server
  224. /* // this fails, and I'm not sure why. I've used code like this
  225. before. resolver_.async_resolve( host, port, std::bind(
  226. &session::on_resolve, this, _1, _2)); */
  227. // This example shows using boost::bind, which WORKS.
  228. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  229. resolver_.async_resolve(
  230. host, port,
  231. boost::bind(&session::on_resolve, this,
  232. boost::asio::placeholders::error,
  233. boost::asio::placeholders::iterator));
  234. } else if (length) {
  235. // std::cout << length << std::endl;
  236. // Proxy Active?
  237. // BOOST_LOG_NAMED_SCOPE("session");
  238. to_server(read_buffer);
  239. BOOST_LOG_TRIVIAL(info) << "C: " << read_buffer;
  240. // do_write(output);
  241. }
  242. do_read();
  243. } else {
  244. std::cout << "C: read_failed: connection closed" << std::endl;
  245. if (connected)
  246. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  247. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  248. // boost::asio::placeholders::error));
  249. }
  250. });
  251. }
  252. void session::to_client(std::string message) {
  253. auto self(shared_from_this());
  254. boost::asio::async_write(
  255. socket_, boost::asio::buffer(message),
  256. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  257. if (!ec) {
  258. } else {
  259. std::cout << "write failed? closed?" << std::endl;
  260. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  261. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  262. // boost::asio::placeholders::error));
  263. }
  264. });
  265. }
  266. void session::to_server(std::string message) {
  267. auto self(shared_from_this());
  268. boost::asio::async_write(
  269. server_, boost::asio::buffer(message),
  270. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  271. if (!ec) {
  272. } else {
  273. std::cout << "write failed? closed?" << std::endl;
  274. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  275. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  276. // boost::asio::placeholders::error));
  277. }
  278. });
  279. }
  280. void session::on_shutdown(boost::system::error_code ec) {
  281. std::cout << "shutdown." << std::endl;
  282. }
  283. server::server(boost::asio::io_service &io_service,
  284. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  285. std::string port)
  286. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  287. port_{port} {
  288. do_accept();
  289. }
  290. /**
  291. * setup async connect accept
  292. *
  293. * This creates a session for each connection. Using make_shared allows the
  294. * session to automatically clean up when it is no longer active/has anything
  295. * running in the reactor.
  296. */
  297. void server::do_accept(void) {
  298. acceptor_.async_accept([this](boost::system::error_code ec,
  299. boost::asio::ip::tcp::socket socket) {
  300. if (!ec) {
  301. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  302. ->start();
  303. }
  304. do_accept();
  305. });
  306. }