|
@@ -18,8 +18,9 @@
|
|
|
|
|
|
Session::Session(boost::asio::ip::tcp::socket socket,
|
|
|
boost::asio::io_service &io_service, std::string hostname,
|
|
|
- std::string port)
|
|
|
- : socket_(std::move(socket)),
|
|
|
+ std::string port, bool server_telnet_)
|
|
|
+ : server_telnet{server_telnet_},
|
|
|
+ socket_(std::move(socket)),
|
|
|
io_service_{io_service},
|
|
|
resolver_{io_service},
|
|
|
server_{io_service},
|
|
@@ -39,7 +40,7 @@ Session::Session(boost::asio::ip::tcp::socket socket,
|
|
|
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);
|
|
|
-
|
|
|
+
|
|
|
// too soon!
|
|
|
// director.username = rlogin_name;
|
|
|
|
|
@@ -111,14 +112,16 @@ void Session::on_connect(const boost::system::error_code error) {
|
|
|
BUGZ_LOG(info) << "Connected to " << host;
|
|
|
to_client("Connected...\n\r");
|
|
|
connected = true;
|
|
|
- if (rlogin_auth[0] != 0) {
|
|
|
- // Ok, the rlogin information was junk --
|
|
|
- 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);
|
|
|
+ if (!server_telnet) {
|
|
|
+ if (rlogin_auth[0] != 0) {
|
|
|
+ // Ok, the rlogin information was junk --
|
|
|
+ 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();
|
|
@@ -318,6 +321,33 @@ void Session::on_server_prompt(const std::string &prompt,
|
|
|
std::string temp = repr(prompt);
|
|
|
BUGZ_LOG(warning) << "SP: [" << temp << "]";
|
|
|
director.server_prompt(prompt, raw_prompt);
|
|
|
+ if (server_telnet) {
|
|
|
+ std::string ayt = std::string( (const char *)"\x00\xff\xfd\xf6", 4 );
|
|
|
+ std::string ayt_resp = std::string((const char *)"\xff\xfb\x00", 3);
|
|
|
+ std::string ayt2 = std::string( (const char *)"\xff\xfb\x00", 3);
|
|
|
+ std::string ayt2_resp = std::string((const char *)"\xff\xfd\x00", 3);
|
|
|
+
|
|
|
+ /*
|
|
|
+ for( const char & c : prompt ) {
|
|
|
+ BUGZ_LOG(fatal) << "IS? " << (unsigned int)c << " " << std::hex << (unsigned int)c;
|
|
|
+ }
|
|
|
+
|
|
|
+ for( const char & c : ayt ) {
|
|
|
+ BUGZ_LOG(fatal) << "AYT? " << (unsigned int)c << " " << std::hex << (unsigned int)c;
|
|
|
+ }
|
|
|
+ */
|
|
|
+
|
|
|
+ if (prompt == ayt) {
|
|
|
+ to_server(ayt_resp);
|
|
|
+ BUGZ_LOG(fatal) << "AYT?";
|
|
|
+ server_prompt.clear();
|
|
|
+ }
|
|
|
+ if (prompt == ayt2) {
|
|
|
+ to_server(ayt2_resp);
|
|
|
+ BUGZ_LOG(fatal) << "AYT2??";
|
|
|
+ server_prompt.clear();
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void Session::on_prompt_timeout(const boost::system::error_code error) {
|
|
@@ -629,8 +659,10 @@ void Session::stayin_alive(const boost::system::error_code error) {
|
|
|
|
|
|
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},
|
|
|
+ const std::string &host, const std::string &port,
|
|
|
+ bool server_telnet_)
|
|
|
+ : server_telnet{server_telnet_},
|
|
|
+ io_service_{io_service},
|
|
|
acceptor_{io_service_, endpoint},
|
|
|
signal_{io_service, SIGUSR1, SIGTERM},
|
|
|
host_{host},
|
|
@@ -670,7 +702,8 @@ void Server::do_accept(void) {
|
|
|
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_)
|
|
|
+ std::make_shared<Session>(std::move(socket), io_service_, host_, port_,
|
|
|
+ server_telnet)
|
|
|
->start();
|
|
|
}
|
|
|
|
|
@@ -680,5 +713,3 @@ void Server::do_accept(void) {
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
-
|