2014-05-07 18:32:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Glyptodon LLC
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "guac_handlers.h"
|
2014-05-07 21:19:17 +00:00
|
|
|
#include "telnet_client.h"
|
2014-05-07 21:36:49 +00:00
|
|
|
#include "terminal.h"
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <guacamole/client.h>
|
|
|
|
#include <guacamole/protocol.h>
|
|
|
|
#include <guacamole/socket.h>
|
2014-05-07 21:36:49 +00:00
|
|
|
#include <libtelnet.h>
|
2014-05-07 18:32:19 +00:00
|
|
|
|
2014-05-08 04:19:15 +00:00
|
|
|
/**
|
|
|
|
* Support levels for various telnet options, required for connection
|
|
|
|
* negotiation by telnet_init(), part of libtelnet.
|
|
|
|
*/
|
2014-05-07 18:32:19 +00:00
|
|
|
static const telnet_telopt_t __telnet_options[] = {
|
2014-05-07 22:30:48 +00:00
|
|
|
{ TELNET_TELOPT_ECHO, TELNET_WONT, TELNET_DO },
|
2014-05-07 18:32:19 +00:00
|
|
|
{ TELNET_TELOPT_TTYPE, TELNET_WILL, TELNET_DONT },
|
|
|
|
{ TELNET_TELOPT_COMPRESS2, TELNET_WONT, TELNET_DO },
|
|
|
|
{ TELNET_TELOPT_MSSP, TELNET_WONT, TELNET_DO },
|
2014-05-07 21:19:17 +00:00
|
|
|
{ TELNET_TELOPT_NAWS, TELNET_WILL, TELNET_DONT },
|
2014-05-07 18:32:19 +00:00
|
|
|
{ -1, 0, 0 }
|
|
|
|
};
|
|
|
|
|
2014-05-08 04:19:15 +00:00
|
|
|
/**
|
|
|
|
* Write the entire buffer given to the specified file descriptor, retrying
|
|
|
|
* the write automatically if necessary. This function will return a value
|
|
|
|
* not equal to the buffer's size iff an error occurs which prevents all
|
|
|
|
* future writes.
|
|
|
|
*
|
|
|
|
* @param fd The file descriptor to write to.
|
|
|
|
* @param buffer The buffer to write.
|
|
|
|
* @param size The number of bytes from the buffer to write.
|
|
|
|
*/
|
2014-05-07 21:36:49 +00:00
|
|
|
static int __guac_telnet_write_all(int fd, const char* buffer, int size) {
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
int remaining = size;
|
|
|
|
while (remaining > 0) {
|
|
|
|
|
|
|
|
/* Attempt to write data */
|
|
|
|
int ret_val = write(fd, buffer, remaining);
|
|
|
|
if (ret_val <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* If successful, contine with what data remains (if any) */
|
|
|
|
remaining -= ret_val;
|
|
|
|
buffer += ret_val;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-08 04:19:15 +00:00
|
|
|
/**
|
|
|
|
* Event handler, as defined by libtelnet. This function is passed to
|
|
|
|
* telnet_init() and will be called for every event fired by libtelnet,
|
|
|
|
* including feature enable/disable and receipt/transmission of data.
|
|
|
|
*/
|
2014-05-07 18:32:19 +00:00
|
|
|
static void __guac_telnet_event_handler(telnet_t* telnet, telnet_event_t* event, void* data) {
|
|
|
|
|
|
|
|
guac_client* client = (guac_client*) data;
|
2014-05-07 21:36:49 +00:00
|
|
|
guac_telnet_client_data* client_data = (guac_telnet_client_data*) client->data;
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
switch (event->type) {
|
|
|
|
|
|
|
|
/* User input received */
|
|
|
|
case TELNET_EV_DATA:
|
|
|
|
guac_terminal_write_stdout(client_data->term, event->data.buffer, event->data.size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Data destined for remote end */
|
|
|
|
case TELNET_EV_SEND:
|
2014-05-07 21:36:49 +00:00
|
|
|
if (__guac_telnet_write_all(client_data->socket_fd, event->data.buffer, event->data.size)
|
|
|
|
!= event->data.size)
|
2014-05-07 18:32:19 +00:00
|
|
|
guac_client_stop(client);
|
|
|
|
break;
|
|
|
|
|
2014-05-07 22:30:48 +00:00
|
|
|
/* Remote feature enabled */
|
|
|
|
case TELNET_EV_WILL:
|
|
|
|
if (event->neg.telopt == TELNET_TELOPT_ECHO)
|
|
|
|
client_data->echo_enabled = 0; /* Disable local echo, as remote will echo */
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Remote feature disabled */
|
|
|
|
case TELNET_EV_WONT:
|
|
|
|
if (event->neg.telopt == TELNET_TELOPT_ECHO)
|
|
|
|
client_data->echo_enabled = 1; /* Enable local echo, as remote won't echo */
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Local feature enable */
|
2014-05-07 21:19:17 +00:00
|
|
|
case TELNET_EV_DO:
|
|
|
|
if (event->neg.telopt == TELNET_TELOPT_NAWS) {
|
|
|
|
client_data->naws_enabled = 1;
|
|
|
|
guac_telnet_send_naws(telnet, client_data->term->term_width, client_data->term->term_height);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-05-07 18:32:19 +00:00
|
|
|
/* Terminal type request */
|
|
|
|
case TELNET_EV_TTYPE:
|
|
|
|
if (event->ttype.cmd == TELNET_TTYPE_SEND)
|
|
|
|
telnet_ttype_is(client_data->telnet, "linux");
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Connection warnings */
|
|
|
|
case TELNET_EV_WARNING:
|
|
|
|
guac_client_log_info(client, "%s", event->error.msg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Connection errors */
|
|
|
|
case TELNET_EV_ERROR:
|
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_UPSTREAM_ERROR,
|
|
|
|
"Telnet connection closing with error: %s", event->error.msg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Ignore other events */
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-08 04:19:15 +00:00
|
|
|
/**
|
|
|
|
* Input thread, started by the main telnet client thread. This thread
|
|
|
|
* continuously reads from the terminal's STDIN and transfers all read
|
|
|
|
* data to the telnet connection.
|
|
|
|
*
|
|
|
|
* @param data The current guac_client instance.
|
|
|
|
* @return Always NULL.
|
|
|
|
*/
|
2014-05-07 21:36:49 +00:00
|
|
|
static void* __guac_telnet_input_thread(void* data) {
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
guac_client* client = (guac_client*) data;
|
2014-05-07 21:36:49 +00:00
|
|
|
guac_telnet_client_data* client_data = (guac_telnet_client_data*) client->data;
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
char buffer[8192];
|
|
|
|
int bytes_read;
|
|
|
|
|
|
|
|
/* Write all data read */
|
2014-05-07 22:30:48 +00:00
|
|
|
while ((bytes_read = guac_terminal_read_stdin(client_data->term, buffer, sizeof(buffer))) > 0) {
|
2014-05-07 18:32:19 +00:00
|
|
|
telnet_send(client_data->telnet, buffer, bytes_read);
|
2014-05-07 22:30:48 +00:00
|
|
|
if (client_data->echo_enabled)
|
|
|
|
guac_terminal_write_stdout(client_data->term, buffer, bytes_read);
|
|
|
|
}
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-08 04:19:15 +00:00
|
|
|
/**
|
|
|
|
* Connects to the telnet server specified within the data associated
|
|
|
|
* with the given guac_client, which will have been populated by
|
|
|
|
* guac_client_init.
|
|
|
|
*
|
|
|
|
* @return The connected telnet instance, if successful, or NULL if the
|
|
|
|
* connection fails for any reason.
|
|
|
|
*/
|
2014-05-07 18:32:19 +00:00
|
|
|
static telnet_t* __guac_telnet_create_session(guac_client* client) {
|
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
struct addrinfo* addresses;
|
|
|
|
struct addrinfo* current_address;
|
|
|
|
|
|
|
|
char connected_address[1024];
|
|
|
|
char connected_port[64];
|
|
|
|
|
2014-05-07 21:36:49 +00:00
|
|
|
guac_telnet_client_data* client_data = (guac_telnet_client_data*) client->data;
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
struct addrinfo hints = {
|
|
|
|
.ai_family = AF_UNSPEC,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
.ai_protocol = IPPROTO_TCP
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Get socket */
|
|
|
|
fd = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
|
|
|
|
/* Get addresses connection */
|
|
|
|
if ((retval = getaddrinfo(client_data->hostname, client_data->port,
|
|
|
|
&hints, &addresses))) {
|
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR, "Error parsing given address or port: %s",
|
|
|
|
gai_strerror(retval));
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attempt connection to each address until success */
|
|
|
|
current_address = addresses;
|
|
|
|
while (current_address != NULL) {
|
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
/* Resolve hostname */
|
|
|
|
if ((retval = getnameinfo(current_address->ai_addr,
|
|
|
|
current_address->ai_addrlen,
|
|
|
|
connected_address, sizeof(connected_address),
|
|
|
|
connected_port, sizeof(connected_port),
|
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV)))
|
|
|
|
guac_client_log_info(client, "Unable to resolve host: %s", gai_strerror(retval));
|
|
|
|
|
|
|
|
/* Connect */
|
|
|
|
if (connect(fd, current_address->ai_addr,
|
|
|
|
current_address->ai_addrlen) == 0) {
|
|
|
|
|
|
|
|
guac_client_log_info(client, "Successfully connected to "
|
|
|
|
"host %s, port %s", connected_address, connected_port);
|
|
|
|
|
|
|
|
/* Done if successful connect */
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise log information regarding bind failure */
|
|
|
|
else
|
|
|
|
guac_client_log_info(client, "Unable to connect to "
|
|
|
|
"host %s, port %s: %s",
|
|
|
|
connected_address, connected_port, strerror(errno));
|
|
|
|
|
|
|
|
current_address = current_address->ai_next;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If unable to connect to anything, fail */
|
|
|
|
if (current_address == NULL) {
|
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_UPSTREAM_ERROR, "Unable to connect to any addresses.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free addrinfo */
|
|
|
|
freeaddrinfo(addresses);
|
|
|
|
|
|
|
|
/* Open telnet session */
|
|
|
|
telnet_t* telnet = telnet_init(__telnet_options, __guac_telnet_event_handler, 0, client);
|
|
|
|
if (telnet == NULL) {
|
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR, "Telnet client allocation failed.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save file descriptor */
|
|
|
|
client_data->socket_fd = fd;
|
|
|
|
|
|
|
|
return telnet;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-08 04:19:15 +00:00
|
|
|
/**
|
|
|
|
* Sends a 16-bit value over the given telnet connection with the byte order
|
|
|
|
* required by the telnet protocol.
|
|
|
|
*
|
|
|
|
* @param telnet The telnet connection to use.
|
|
|
|
* @param value The value to send.
|
|
|
|
*/
|
2014-05-07 21:19:17 +00:00
|
|
|
static void __guac_telnet_send_uint16(telnet_t* telnet, uint16_t value) {
|
|
|
|
|
|
|
|
unsigned char buffer[2];
|
|
|
|
buffer[0] = (value >> 8) & 0xFF;
|
|
|
|
buffer[1] = value & 0xFF;
|
|
|
|
|
|
|
|
telnet_send(telnet, (char*) buffer, 2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_telnet_send_naws(telnet_t* telnet, uint16_t width, uint16_t height) {
|
|
|
|
telnet_begin_sb(telnet, TELNET_TELOPT_NAWS);
|
|
|
|
__guac_telnet_send_uint16(telnet, width);
|
|
|
|
__guac_telnet_send_uint16(telnet, height);
|
|
|
|
telnet_finish_sb(telnet);
|
|
|
|
}
|
|
|
|
|
2014-05-08 04:19:15 +00:00
|
|
|
/**
|
|
|
|
* Waits for data on the given file descriptor for up to one second. The
|
|
|
|
* return value is identical to that of select(): 0 on timeout, < 0 on
|
|
|
|
* error, and > 0 on success.
|
|
|
|
*
|
|
|
|
* @param socket_fd The file descriptor to wait for.
|
|
|
|
* @return A value greater than zero on success, zero on timeout, and
|
|
|
|
* less than zero on error.
|
|
|
|
*/
|
2014-05-07 22:19:53 +00:00
|
|
|
static int __guac_telnet_wait(int socket_fd) {
|
|
|
|
|
|
|
|
fd_set fds;
|
|
|
|
struct timeval timeout;
|
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(socket_fd, &fds);
|
|
|
|
|
|
|
|
/* Wait for one second */
|
|
|
|
timeout.tv_sec = 1;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
|
|
|
|
return select(socket_fd+1, &fds, NULL, NULL, &timeout);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-07 21:36:49 +00:00
|
|
|
void* guac_telnet_client_thread(void* data) {
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
guac_client* client = (guac_client*) data;
|
2014-05-07 21:36:49 +00:00
|
|
|
guac_telnet_client_data* client_data = (guac_telnet_client_data*) client->data;
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
pthread_t input_thread;
|
|
|
|
char buffer[8192];
|
2014-05-07 22:19:53 +00:00
|
|
|
int wait_result;
|
2014-05-07 18:32:19 +00:00
|
|
|
|
|
|
|
/* Open telnet session */
|
|
|
|
client_data->telnet = __guac_telnet_create_session(client);
|
|
|
|
if (client_data->telnet == NULL) {
|
|
|
|
/* Already aborted within __guac_telnet_create_session() */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Logged in */
|
|
|
|
guac_client_log_info(client, "Telnet connection successful.");
|
|
|
|
|
|
|
|
/* Start input thread */
|
2014-05-07 21:36:49 +00:00
|
|
|
if (pthread_create(&(input_thread), NULL, __guac_telnet_input_thread, (void*) client)) {
|
2014-05-07 18:32:19 +00:00
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR, "Unable to start input thread");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* While data available, write to terminal */
|
2014-05-07 22:19:53 +00:00
|
|
|
while ((wait_result = __guac_telnet_wait(client_data->socket_fd)) >= 0) {
|
|
|
|
|
|
|
|
/* Resume waiting of no data available */
|
|
|
|
if (wait_result == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int bytes_read = read(client_data->socket_fd, buffer, sizeof(buffer));
|
|
|
|
if (bytes_read <= 0)
|
|
|
|
break;
|
|
|
|
|
2014-05-07 18:32:19 +00:00
|
|
|
telnet_recv(client_data->telnet, buffer, bytes_read);
|
|
|
|
|
2014-05-07 22:19:53 +00:00
|
|
|
}
|
|
|
|
|
2014-05-07 18:32:19 +00:00
|
|
|
/* Kill client and Wait for input thread to die */
|
|
|
|
guac_client_stop(client);
|
|
|
|
pthread_join(input_thread, NULL);
|
|
|
|
|
|
|
|
guac_client_log_info(client, "Telnet connection ended.");
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|