session.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. #ifndef SESSION_H
  2. #define SESSION_H
  3. #include <boost/asio.hpp>
  4. #include <boost/asio/ip/basic_resolver.hpp>
  5. #include <boost/asio/signal_set.hpp>
  6. #include <map>
  7. #include <string>
  8. #include "session_common.h"
  9. #include "dispatchers.h"
  10. #define MAX_BUFFER 256
  11. /*
  12. The Session:
  13. */
  14. class Session : public std::enable_shared_from_this<Session> {
  15. public:
  16. Session(boost::asio::ip::tcp::socket socket,
  17. boost::asio::io_service &io_service, std::string hostname,
  18. std::string port);
  19. ~Session();
  20. void start(void);
  21. const std::string &get_prompt(void);
  22. void set_prompt(const std::string &prompt);
  23. void to_client(const std::string &message);
  24. void to_server(const std::string &message);
  25. DispatchSettings save_settings(void);
  26. void restore_settings(const DispatchSettings &ss);
  27. // what uses these? how do you use these?
  28. StringFunc emit_server_line;
  29. StringFunc emit_server_prompt;
  30. StringFunc emit_client_input;
  31. bool show_client = true;
  32. bool talk_direct = true;
  33. void post(notifyFunc nf);
  34. private:
  35. void on_server_line(const std::string &line);
  36. void on_server_prompt(const std::string &prompt);
  37. void parse_auth(void);
  38. void on_connect(const boost::system::error_code error);
  39. void server_read(void);
  40. void on_resolve(const boost::system::error_code error,
  41. const boost::asio::ip::tcp::resolver::results_type results);
  42. void client_read(void);
  43. void client_input(const std::string &input);
  44. void on_shutdown(boost::system::error_code ec);
  45. void split_lines(std::string line);
  46. void process_lines(std::string &received);
  47. private:
  48. void set_prompt_timer(void);
  49. void reset_prompt_timer(void);
  50. void on_prompt_timeout(const boost::system::error_code error);
  51. void stayin_alive(const boost::system::error_code error);
  52. void start_keepin_alive(void);
  53. int time_ms;
  54. int keepalive_secs;
  55. MainDispatch main;
  56. void proxy_activate(void);
  57. void proxy_deactivate(void);
  58. // std::stack<Dispatch *> director;
  59. bool active = false;
  60. /**
  61. * The client's socket
  62. */
  63. boost::asio::ip::tcp::socket socket_;
  64. boost::asio::io_service &io_service_;
  65. boost::asio::ip::tcp::resolver resolver_;
  66. /**
  67. * The server's socket
  68. */
  69. boost::asio::ip::tcp::socket server_;
  70. /**
  71. * The time that we'll use to fire off the "prompt" event.
  72. *
  73. * The idea being that we'd receive chars, processing lines.
  74. * And if we have something in server_prompt start the timer.
  75. * If we receive more, process lines, if !server_prompt.empty()
  76. * reset the timer.
  77. *
  78. * If the timer fires (and isn't aborted), fire off the prompt.
  79. *
  80. * I'm not so sure about this -- because this adds delay to the
  81. * proxy. [It might be better to just fire off "some" text, and
  82. * have it ignored, rather then adding a delay.] Or, this might
  83. * not matter at all, I'm thinking milliseconds here!
  84. */
  85. boost::asio::high_resolution_timer prompt_timer_;
  86. /**
  87. * Keep connection alive, don't timeout.
  88. *
  89. * This gets set by to_server config[keepalive], and sends a
  90. * space ' ' if we haven't sent anything to the server in that
  91. * many seconds.
  92. */
  93. boost::asio::high_resolution_timer keep_alive_;
  94. /**
  95. * What characters have been received from the server,
  96. * that weren't \n terminated?
  97. *
  98. * This needs to be reset/cleared if there's a \r (carriage return).
  99. */
  100. std::string server_prompt;
  101. /**
  102. * FAIL-WHALE: This was supposed to hold the number of characters
  103. * already sent to the user at this point in time, but I'm having
  104. * a hard time tracking those.
  105. *
  106. */
  107. // int server_sent;
  108. /**
  109. * The client read buffer.
  110. *
  111. * This is too big, we don't get that many characters from the client.
  112. *
  113. */
  114. char read_buffer[MAX_BUFFER + 1];
  115. /**
  116. * The server read buffer.
  117. * This is MAX_BUFFER + 1 (to store the \0 to terminate the string)
  118. */
  119. char server_buffer[MAX_BUFFER + 1];
  120. /**
  121. * The rlogin information received from the client.
  122. *
  123. * We check this, and if it isn't valid, we spoof some rlogin
  124. * connection.
  125. */
  126. std::string rlogin_auth;
  127. /**
  128. * The username passed in via rlogin. We need this so we know what
  129. * name we need to store the data under.
  130. */
  131. std::string rlogin_name;
  132. std::string host;
  133. std::string port;
  134. char game = 0;
  135. /**
  136. * Are we connected to the server?
  137. *
  138. * Don't shutdown the server socket if we aren't connected.
  139. */
  140. bool connected = false;
  141. };
  142. /*
  143. maybe move the resolver part to the server, so I don't need io_service?
  144. I'm not sure what the socket connection part is going to need just yet,
  145. so I probably won't move that just yet. [NNY!]
  146. */
  147. class Server {
  148. public:
  149. Server(boost::asio::io_service &io_service,
  150. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  151. std::string port);
  152. ~Server();
  153. private:
  154. void do_accept(void);
  155. void on_signal(const boost::system::error_code &ec, int signal);
  156. boost::asio::io_service &io_service_;
  157. boost::asio::ip::tcp::acceptor acceptor_;
  158. boost::asio::signal_set signal_;
  159. bool keep_accepting;
  160. /**
  161. * The host to connect to (from config)
  162. */
  163. std::string host_;
  164. /**
  165. * The port to connect to (from config)
  166. *
  167. */
  168. std::string port_;
  169. };
  170. #ifdef NEVERMORE
  171. // The simple way to get the boost logging to log file and line number
  172. // information. [Let the BUGZ_LOG macro do it!]
  173. #include <iomanip>
  174. #include <string.h>
  175. const char *trim_path(const char *filepath);
  176. #define BUGZ_LOG(severity) \
  177. BOOST_LOG_TRIVIAL(severity) \
  178. << "(" << std::setw(15) << trim_path(__FILE__) << ":" << std::setw(4) \
  179. << std::left << __LINE__ << ") "
  180. #endif
  181. #endif