123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684 |
- #include <boost/bind.hpp>
- #include <boost/format.hpp>
- #include <functional>
- #include <iostream>
- #include <regex>
- #include <string>
- #include "config.h"
- #include "galaxy.h"
- #include "logging.h"
- #include "session.h"
- #include "utils.h"
- Session::Session(boost::asio::ip::tcp::socket socket,
- boost::asio::io_service &io_service, std::string hostname,
- std::string port)
- : socket_(std::move(socket)),
- io_service_{io_service},
- resolver_{io_service},
- server_{io_service},
- prompt_timer_{io_service},
- keep_alive_{io_service},
- host{hostname},
- port{port} {
- BUGZ_LOG(info) << "Session::Session()";
-
- time_ms = 50;
- if (CONFIG["prompt_timeout"]) time_ms = CONFIG["prompt_timeout"].as<int>();
- keepalive_secs = 45;
- if (CONFIG["keepalive"]) keepalive_secs = CONFIG["keepalive"].as<int>();
-
- director.to_server = boost::bind(&Session::to_server, this, _1);
- director.to_client = boost::bind(&Session::to_client, this, _1);
- director.post = boost::bind(&Session::post, this, _1);
-
-
-
-
-
-
- }
- void Session::start(void) {
- BUGZ_LOG(info) << "Session::start()";
-
- client_read();
- }
- Session::~Session() { BUGZ_LOG(info) << "~Session"; }
- const std::string &Session::get_prompt(void) { return server_prompt; }
- void Session::set_prompt(const std::string &prompt) { server_prompt = prompt; }
- void Session::post(notifyFunc nf) {
- if (nf) {
- BUGZ_LOG(info) << "Session::post()";
- io_service_.post(nf);
- } else {
- BUGZ_LOG(error) << "Session::post( nullptr )";
- }
- }
- void Session::parse_auth(void) {
-
-
-
-
- if (rlogin_auth.size() > 10)
- rlogin_name = rlogin_auth.c_str() + 1;
- else
- rlogin_name = "?";
- director.username = rlogin_name;
- }
- void Session::on_connect(const boost::system::error_code error) {
-
-
- if (!error) {
- BUGZ_LOG(info) << "Connected to " << host;
- to_client("Connected...\n\r");
- connected = true;
- if (rlogin_auth[0] != 0) {
-
- to_client("Let me make up some fake rlogin data for you...\n\r");
- char temp[] = "\0test\0test\0terminal/9600\0";
- std::string tmp(temp, sizeof(temp));
- to_server(tmp);
- } else {
- to_server(rlogin_auth);
- }
- server_read();
- } else {
- std::string output =
- str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
- to_client(output);
- BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
- BUGZ_LOG(warning) << "socket.shutdown()";
- socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
- }
- }
- void Session::on_server_line(const std::string &line,
- const std::string &raw_line) {
- BUGZ_LOG(info) << "SL: [" << line << "]";
- director.server_line(line, raw_line);
- }
- void Session::split_lines(std::string line) {
-
-
- size_t pos;
- while ((pos = line.find('\b')) != std::string::npos) {
-
- if (pos == 0) {
-
- line = line.erase(pos, 1);
- } else
- line = line.erase(pos - 1, 2);
- }
- std::string temp = clean_string(line);
- on_server_line(temp, line);
- }
- void Session::process_lines(std::string &received) {
-
- size_t pos, rpos;
- server_prompt.append(received);
-
- while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
- std::string line;
- std::smatch m = ansi_newline(server_prompt);
- if (!m.empty()) {
-
- size_t mpos = m.prefix().length();
-
- if (mpos < pos) {
-
-
- std::smatch rm = ansi_newline(received);
- if (!rm.empty()) {
- size_t rpos = rm.prefix().length();
- int rlen = rm[0].length();
- if (director.show_client) {
- line = received.substr(0, rpos + rlen);
- to_client(line);
- }
- received = rm.suffix();
- }
-
- line = m.prefix();
- split_lines(line);
- server_prompt = m.suffix();
-
- continue;
- }
- }
-
- rpos = received.find('\n', 0);
-
- if (director.show_client) {
-
- line = received.substr(0, rpos + 1);
-
- to_client(line);
- }
- received = received.substr(rpos + 1);
-
- line = server_prompt.substr(0, pos + 1);
- server_prompt = server_prompt.substr(pos + 1);
-
- std::string part = line.substr(0, pos);
-
-
-
-
-
- replace(part, "\r", "");
-
- split_lines(part);
- }
-
- if (!received.empty())
- if (director.show_client) {
- to_client(received);
-
-
- }
-
-
-
- while ((pos = server_prompt.find('\b')) != std::string::npos) {
-
- if (pos == 0) {
-
- server_prompt = server_prompt.erase(pos, 1);
- } else
- server_prompt = server_prompt.erase(pos - 1, 2);
- }
- if (!server_prompt.empty()) {
-
- set_prompt_timer();
- }
- }
- void Session::set_prompt_timer(void) {
- prompt_timer_.expires_after(std::chrono::milliseconds(time_ms));
- prompt_timer_.async_wait(boost::bind(&Session::on_prompt_timeout, this,
- boost::asio::placeholders::error));
- }
- void Session::reset_prompt_timer(void) { prompt_timer_.cancel(); }
- void Session::on_server_prompt(const std::string &prompt,
- const std::string &raw_prompt) {
- std::string temp = repr(prompt);
- BUGZ_LOG(warning) << "SP: [" << temp << "]";
- director.server_prompt(prompt, raw_prompt);
- }
- void Session::on_prompt_timeout(const boost::system::error_code error) {
- if (error != boost::asio::error::operation_aborted) {
-
- if (!server_prompt.empty()) {
-
-
-
- std::string clean = server_prompt;
- ansi_clean(clean);
- if (!clean.empty()) {
- on_server_prompt(clean, server_prompt);
- }
-
- }
- }
- }
- void Session::server_read(void) {
- auto self(shared_from_this());
- boost::asio::async_read(
- server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
- boost::asio::transfer_at_least(1),
- [this, self](boost::system::error_code ec, std::size_t length) {
- if (!ec) {
-
-
- std::string received(server_buffer, length);
- process_lines(received);
-
-
- server_read();
- } else {
- BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
- connected = false;
- socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
- }
- });
- }
- void Session::on_resolve(
- const boost::system::error_code error,
- const boost::asio::ip::tcp::resolver::results_type results) {
-
- auto self(shared_from_this());
- if (!error) {
-
- boost::asio::ip::tcp::endpoint const &endpoint = *results;
- server_.async_connect(endpoint,
- boost::bind(&Session::on_connect, this,
- boost::asio::placeholders::error));
- } else {
-
-
- BUGZ_LOG(error) << "Unable to resolve: " << host;
- std::string output =
- str(boost::format("Unable to resolve: %1%\n\r") % host);
- to_client(output);
- BUGZ_LOG(warning) << "socket.shutdown()";
- socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
- }
- }
- void Session::client_input(const std::string &input) {
- std::string temp = repr(input);
- BUGZ_LOG(info) << "CI: [" << temp << "]";
- director.client_input(input);
- #ifdef DECOUPLE
-
- if (active) {
-
- } else {
- if (input == "\x1b" || input == "~") {
- std::string prompt = clean_string(get_prompt());
- BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
- if (prompt == "Selection (? for menu): ") {
- to_client(
- "\n\rThere's not much we can do here. Activate in-game at a "
- "Command prompt.\n\r");
- to_client(get_prompt());
- return;
- }
-
- if (prompt == "Enter your choice: ") {
- to_client(
- "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
- "that's how I was coded.\n\r");
- to_client(get_prompt());
- return;
- }
-
- if (prompt == "[Pause]") {
- to_client(" \x1b[1;36mMeow\x1b[0m\n\r");
- to_client(get_prompt());
- return;
- }
-
-
-
-
-
- if (prompt.substr(0, 9) == "Command [") {
- int len = prompt.length();
- if (prompt.substr(len - 14) == "] (?=Help)? : ") {
- proxy_activate();
-
- return;
- }
- }
-
- BUGZ_LOG(warning) << "CI: unable to activate, prompt was: [" << prompt
- << "]";
- return;
- }
- }
-
-
- if (talk_direct) {
- to_server(input);
- }
- if (emit_client_input) {
- emit_client_input(input);
- }
- #endif
- }
- void Session::client_read(void) {
- auto self(shared_from_this());
- boost::asio::async_read(
- socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
- boost::asio::transfer_at_least(1),
- [this, self](boost::system::error_code ec, std::size_t length) {
- if (!ec) {
-
- if (rlogin_auth.empty()) {
-
- rlogin_auth.assign(read_buffer, length);
-
- parse_auth();
- to_client(std::string(1, 0));
- to_client("Welcome, ");
- to_client(rlogin_name);
- to_client("\n\r");
-
-
-
-
- resolver_.async_resolve(
- host, port,
- boost::bind(&Session::on_resolve, this,
- boost::asio::placeholders::error,
- boost::asio::placeholders::iterator));
- } else if (length) {
-
-
- std::string line(read_buffer, length);
- client_input(line);
-
- }
- client_read();
- } else {
- BUGZ_LOG(warning) << "CI: read_failed " << ec;
- if (connected) {
- BUGZ_LOG(warning) << "Server.shutdown()";
- server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
- }
- }
- });
- }
- void Session::to_client(const std::string &message) {
- auto self(shared_from_this());
-
-
- std::string clean = clean_string(message);
- BUGZ_LOG(trace) << "2C: " << clean;
- boost::asio::async_write(
- socket_, boost::asio::buffer(message),
- [this, self](boost::system::error_code ec, std::size_t ) {
- if (!ec) {
- } else {
- BUGZ_LOG(warning)
- << "2C: write failed? closed? Server.shutdown()" << ec;
- if (connected) {
- BUGZ_LOG(warning) << "Server.shutdown()";
- server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
- }
- }
- });
- }
- void Session::to_server(const std::string &message) {
- auto self(shared_from_this());
- BUGZ_LOG(trace) << "2S: " << message;
- boost::asio::async_write(
- server_, boost::asio::buffer(message),
- [this, self](boost::system::error_code ec, std::size_t ) {
- if (!ec) {
- } else {
- BUGZ_LOG(warning)
- << "S: write failed? closed? socket.shutdown() " << ec;
-
- connected = false;
- socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
- }
- });
- if (director.active) {
- start_keepin_alive();
- }
- }
- void Session::start_keepin_alive(void) {
-
- keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
- keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
- boost::asio::placeholders::error));
- }
- void Session::stayin_alive(const boost::system::error_code error) {
- if (error != boost::asio::error::operation_aborted) {
-
- if (director.active) {
- to_server(" ");
- BUGZ_LOG(warning) << "Session::stayin_alive()";
- }
- }
- }
- Server::Server(boost::asio::io_service &io_service,
- const boost::asio::ip::tcp::endpoint &endpoint,
- const std::string &host, const std::string &port)
- : io_service_{io_service},
- acceptor_{io_service_, endpoint},
- signal_{io_service, SIGUSR1, SIGTERM},
- host_{host},
- port_{port} {
- keep_accepting = true;
- BUGZ_LOG(info) << "Server::Server()";
- signal_.async_wait(boost::bind(&Server::on_signal, this,
- boost::asio::placeholders::error,
- boost::asio::placeholders::signal_number));
- do_accept();
- }
- void Server::on_signal(const boost::system::error_code &ec, int signal) {
- BUGZ_LOG(info) << "on_signal() :" << signal;
- keep_accepting = false;
- boost::system::error_code error;
- acceptor_.cancel(error);
- BUGZ_LOG(info) << "cancel: " << error;
- acceptor_.close(error);
- BUGZ_LOG(info) << "close: " << error;
- }
- Server::~Server() {
- CONFIG = YAML::Node();
- BUGZ_LOG(info) << "Server::~Server()";
- }
- void Server::do_accept(void) {
- acceptor_.async_accept([this](boost::system::error_code ec,
- boost::asio::ip::tcp::socket socket) {
- if (!ec) {
- BUGZ_LOG(info) << "Server::do_accept()";
- std::make_shared<Session>(std::move(socket), io_service_, host_, port_)
- ->start();
- }
- if (keep_accepting) {
- BUGZ_LOG(info) << "do_accept()";
- do_accept();
- }
- });
- }
|