2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is libguac-client-ssh.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Michael Jumper.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2011-12-30 22:34:04 +00:00
|
|
|
* James Muehlner <dagger10k@users.sourceforge.net>
|
2011-08-04 18:46:21 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2011-08-10 07:02:06 +00:00
|
|
|
#include <sys/select.h>
|
|
|
|
|
2011-08-04 18:46:21 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <cairo/cairo.h>
|
|
|
|
#include <pango/pangocairo.h>
|
|
|
|
|
2011-11-26 23:35:45 +00:00
|
|
|
#include <guacamole/socket.h>
|
2011-08-04 18:46:21 +00:00
|
|
|
#include <guacamole/protocol.h>
|
|
|
|
#include <guacamole/client.h>
|
2013-05-18 03:20:51 +00:00
|
|
|
#include <guacamole/error.h>
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2013-05-18 03:28:26 +00:00
|
|
|
#include "guac_handlers.h"
|
|
|
|
#include "client.h"
|
2013-05-13 08:51:16 +00:00
|
|
|
#include "common.h"
|
2013-04-09 20:58:55 +00:00
|
|
|
#include "cursor.h"
|
2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
int ssh_guac_client_handle_messages(guac_client* client) {
|
|
|
|
|
2011-11-26 23:35:45 +00:00
|
|
|
guac_socket* socket = client->socket;
|
2011-08-04 18:46:21 +00:00
|
|
|
ssh_guac_client_data* client_data = (ssh_guac_client_data*) client->data;
|
|
|
|
char buffer[8192];
|
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
int ret_val;
|
|
|
|
int fd = client_data->stdout_pipe_fd[0];
|
2011-08-04 18:46:21 +00:00
|
|
|
struct timeval timeout;
|
2011-08-10 07:02:06 +00:00
|
|
|
fd_set fds;
|
|
|
|
|
|
|
|
/* Build fd_set */
|
|
|
|
FD_ZERO(&fds);
|
2013-05-18 03:20:51 +00:00
|
|
|
FD_SET(fd, &fds);
|
2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
/* Time to wait */
|
2011-11-26 23:35:45 +00:00
|
|
|
timeout.tv_sec = 1;
|
|
|
|
timeout.tv_usec = 0;
|
2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
/* Wait for data to be available */
|
2013-05-18 03:20:51 +00:00
|
|
|
ret_val = select(fd+1, &fds, NULL, NULL, &timeout);
|
|
|
|
if (ret_val > 0) {
|
2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
int bytes_read = 0;
|
|
|
|
|
2013-04-07 23:55:06 +00:00
|
|
|
/* Lock terminal access */
|
|
|
|
pthread_mutex_lock(&(client_data->term->lock));
|
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
/* Read data, write to terminal */
|
|
|
|
if ((bytes_read = read(fd, buffer, sizeof(buffer))) > 0) {
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
if (guac_terminal_write(client_data->term, buffer, bytes_read))
|
2011-08-10 01:32:54 +00:00
|
|
|
return 1;
|
2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify on error */
|
|
|
|
if (bytes_read < 0) {
|
2011-11-26 23:35:45 +00:00
|
|
|
guac_protocol_send_error(socket, "Error reading data.");
|
|
|
|
guac_socket_flush(socket);
|
2011-08-04 18:46:21 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-05-15 19:46:26 +00:00
|
|
|
/* Update cursor */
|
|
|
|
guac_terminal_commit_cursor(client_data->term);
|
2013-03-27 11:11:56 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
/* Flush terminal display */
|
|
|
|
guac_terminal_display_flush(client_data->term->display);
|
2013-03-29 09:51:31 +00:00
|
|
|
|
2013-04-07 23:55:06 +00:00
|
|
|
/* Unlock terminal access */
|
|
|
|
pthread_mutex_unlock(&(client_data->term->lock));
|
|
|
|
|
2013-03-29 09:51:31 +00:00
|
|
|
}
|
2013-05-18 03:20:51 +00:00
|
|
|
else if (ret_val < 0) {
|
|
|
|
guac_error_message = "Error waiting for pipe";
|
|
|
|
guac_error = GUAC_STATUS_SEE_ERRNO;
|
|
|
|
return 1;
|
|
|
|
}
|
2013-03-27 11:11:56 +00:00
|
|
|
|
2011-08-04 18:46:21 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-30 22:34:04 +00:00
|
|
|
int ssh_guac_client_clipboard_handler(guac_client* client, char* data) {
|
|
|
|
|
|
|
|
ssh_guac_client_data* client_data = (ssh_guac_client_data*) client->data;
|
|
|
|
|
|
|
|
free(client_data->clipboard_data);
|
|
|
|
|
|
|
|
client_data->clipboard_data = strdup(data);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int ssh_guac_client_mouse_handler(guac_client* client, int x, int y, int mask) {
|
|
|
|
|
|
|
|
ssh_guac_client_data* client_data = (ssh_guac_client_data*) client->data;
|
2013-04-05 08:32:33 +00:00
|
|
|
guac_terminal* term = client_data->term;
|
2011-12-30 22:34:04 +00:00
|
|
|
|
2013-04-15 08:22:05 +00:00
|
|
|
/* Determine which buttons were just released and pressed */
|
|
|
|
int released_mask = client_data->mouse_mask & ~mask;
|
|
|
|
int pressed_mask = ~client_data->mouse_mask & mask;
|
|
|
|
|
2011-12-30 22:34:04 +00:00
|
|
|
client_data->mouse_mask = mask;
|
|
|
|
|
2013-04-09 21:09:41 +00:00
|
|
|
/* Show mouse cursor if not already shown */
|
|
|
|
if (client_data->current_cursor != client_data->ibar_cursor) {
|
|
|
|
pthread_mutex_lock(&(term->lock));
|
|
|
|
|
|
|
|
client_data->current_cursor = client_data->ibar_cursor;
|
|
|
|
guac_ssh_set_cursor(client, client_data->ibar_cursor);
|
|
|
|
guac_socket_flush(client->socket);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&(term->lock));
|
|
|
|
}
|
|
|
|
|
2011-12-30 22:34:04 +00:00
|
|
|
/* Paste contents of clipboard on right mouse button up */
|
2013-04-01 08:59:15 +00:00
|
|
|
if ((released_mask & GUAC_CLIENT_MOUSE_RIGHT)
|
|
|
|
&& client_data->clipboard_data != NULL) {
|
2011-12-30 22:34:04 +00:00
|
|
|
|
|
|
|
int length = strlen(client_data->clipboard_data);
|
2013-04-01 08:59:15 +00:00
|
|
|
if (length)
|
2013-05-18 03:20:51 +00:00
|
|
|
return write(client_data->stdin_pipe_fd[1],
|
2013-04-01 08:59:15 +00:00
|
|
|
client_data->clipboard_data, length);
|
|
|
|
|
|
|
|
}
|
2011-12-30 22:34:04 +00:00
|
|
|
|
2013-04-15 08:22:05 +00:00
|
|
|
/* If text selected, change state based on left mouse mouse button */
|
|
|
|
if (term->text_selected) {
|
|
|
|
pthread_mutex_lock(&(term->lock));
|
|
|
|
|
|
|
|
/* If mouse button released, stop selection */
|
2013-05-06 18:06:21 +00:00
|
|
|
if (released_mask & GUAC_CLIENT_MOUSE_LEFT) {
|
|
|
|
|
|
|
|
/* End selection and get selected text */
|
|
|
|
char* string = malloc(term->term_width * term->term_height * sizeof(char));
|
|
|
|
guac_terminal_select_end(term, string);
|
|
|
|
|
|
|
|
/* Store new data */
|
|
|
|
free(client_data->clipboard_data);
|
|
|
|
client_data->clipboard_data = string;
|
|
|
|
|
|
|
|
/* Send data */
|
|
|
|
guac_protocol_send_clipboard(client->socket, string);
|
|
|
|
guac_socket_flush(client->socket);
|
|
|
|
|
|
|
|
}
|
2013-04-15 08:22:05 +00:00
|
|
|
|
|
|
|
/* Otherwise, just update */
|
|
|
|
else
|
|
|
|
guac_terminal_select_update(term,
|
2013-04-25 18:55:50 +00:00
|
|
|
y / term->display->char_height - term->scroll_offset,
|
|
|
|
x / term->display->char_width);
|
2013-04-15 08:22:05 +00:00
|
|
|
|
|
|
|
pthread_mutex_unlock(&(term->lock));
|
|
|
|
}
|
|
|
|
|
2013-05-15 19:08:05 +00:00
|
|
|
/* Otherwise, if mouse button pressed AND moved, start selection */
|
|
|
|
else if (!(pressed_mask & GUAC_CLIENT_MOUSE_LEFT) &&
|
|
|
|
mask & GUAC_CLIENT_MOUSE_LEFT) {
|
2013-04-15 08:22:05 +00:00
|
|
|
pthread_mutex_lock(&(term->lock));
|
|
|
|
|
|
|
|
guac_terminal_select_start(term,
|
2013-04-25 18:55:50 +00:00
|
|
|
y / term->display->char_height - term->scroll_offset,
|
|
|
|
x / term->display->char_width);
|
2013-04-15 08:22:05 +00:00
|
|
|
|
|
|
|
pthread_mutex_unlock(&(term->lock));
|
|
|
|
}
|
|
|
|
|
2013-04-01 08:59:15 +00:00
|
|
|
/* Scroll up if wheel moved up */
|
|
|
|
if (released_mask & GUAC_CLIENT_MOUSE_SCROLL_UP) {
|
2013-04-07 23:55:06 +00:00
|
|
|
pthread_mutex_lock(&(term->lock));
|
2013-04-08 07:47:08 +00:00
|
|
|
guac_terminal_scroll_display_up(term, GUAC_SSH_WHEEL_SCROLL_AMOUNT);
|
2013-04-07 23:55:06 +00:00
|
|
|
pthread_mutex_unlock(&(term->lock));
|
2013-04-01 08:59:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Scroll down if wheel moved down */
|
|
|
|
if (released_mask & GUAC_CLIENT_MOUSE_SCROLL_DOWN) {
|
2013-04-07 23:55:06 +00:00
|
|
|
pthread_mutex_lock(&(term->lock));
|
2013-04-08 07:47:08 +00:00
|
|
|
guac_terminal_scroll_display_down(term, GUAC_SSH_WHEEL_SCROLL_AMOUNT);
|
2013-04-07 23:55:06 +00:00
|
|
|
pthread_mutex_unlock(&(term->lock));
|
2011-12-30 22:34:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2013-04-01 08:59:15 +00:00
|
|
|
|
2011-12-30 22:34:04 +00:00
|
|
|
}
|
|
|
|
|
2011-08-04 18:46:21 +00:00
|
|
|
int ssh_guac_client_key_handler(guac_client* client, int keysym, int pressed) {
|
|
|
|
|
|
|
|
ssh_guac_client_data* client_data = (ssh_guac_client_data*) client->data;
|
2013-04-08 07:47:08 +00:00
|
|
|
guac_terminal* term = client_data->term;
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
/* Get write end of STDIN pipe */
|
|
|
|
int fd = client_data->stdin_pipe_fd[1];
|
|
|
|
|
2013-04-09 21:09:41 +00:00
|
|
|
/* Hide mouse cursor if not already hidden */
|
|
|
|
if (client_data->current_cursor != client_data->blank_cursor) {
|
|
|
|
pthread_mutex_lock(&(term->lock));
|
|
|
|
|
|
|
|
client_data->current_cursor = client_data->blank_cursor;
|
|
|
|
guac_ssh_set_cursor(client, client_data->blank_cursor);
|
|
|
|
guac_socket_flush(client->socket);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&(term->lock));
|
|
|
|
}
|
|
|
|
|
2011-08-22 06:24:40 +00:00
|
|
|
/* Track modifiers */
|
|
|
|
if (keysym == 0xFFE3) {
|
|
|
|
client_data->mod_ctrl = pressed;
|
|
|
|
}
|
|
|
|
|
2011-08-04 18:46:21 +00:00
|
|
|
/* If key pressed */
|
2011-08-22 06:24:40 +00:00
|
|
|
else if (pressed) {
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2013-04-08 07:47:08 +00:00
|
|
|
/* Reset scroll */
|
|
|
|
if (term->scroll_offset != 0) {
|
|
|
|
pthread_mutex_lock(&(term->lock));
|
|
|
|
guac_terminal_scroll_display_down(term, term->scroll_offset);
|
|
|
|
pthread_mutex_unlock(&(term->lock));
|
|
|
|
}
|
|
|
|
|
2013-05-13 08:51:16 +00:00
|
|
|
/* Translate Ctrl+letter to control code */
|
|
|
|
if (client_data->mod_ctrl) {
|
2011-08-22 06:24:40 +00:00
|
|
|
|
2013-05-13 08:51:16 +00:00
|
|
|
char data;
|
|
|
|
|
|
|
|
/* If valid control code, send it */
|
|
|
|
if (keysym >= 'A' && keysym <= 'Z')
|
|
|
|
data = (char) (keysym - 'A' + 1);
|
|
|
|
else if (keysym >= 'a' && keysym <= 'z')
|
|
|
|
data = (char) (keysym - 'a' + 1);
|
|
|
|
|
|
|
|
/* Otherwise ignore */
|
|
|
|
else
|
|
|
|
return 0;
|
2011-08-22 06:24:40 +00:00
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
return write(fd, &data, 1);
|
2011-08-22 06:24:40 +00:00
|
|
|
|
2011-08-10 18:03:38 +00:00
|
|
|
}
|
|
|
|
|
2013-05-13 08:51:16 +00:00
|
|
|
/* Translate Unicode to UTF-8 */
|
|
|
|
else if ((keysym >= 0x00 && keysym <= 0xFF) || ((keysym & 0xFFFF0000) == 0x01000000)) {
|
|
|
|
|
|
|
|
int length;
|
|
|
|
char data[5];
|
|
|
|
|
|
|
|
length = guac_terminal_encode_utf8(keysym & 0xFFFF, data);
|
2013-05-18 03:20:51 +00:00
|
|
|
return write(fd, data, length);
|
2013-05-13 08:51:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-08-10 18:03:38 +00:00
|
|
|
else {
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2011-08-10 18:03:38 +00:00
|
|
|
int length = 0;
|
|
|
|
const char* data = NULL;
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2011-08-10 18:03:38 +00:00
|
|
|
if (keysym == 0xFF08) { data = "\x08"; length = 1; }
|
|
|
|
else if (keysym == 0xFF09) { data = "\x09"; length = 1; }
|
2013-05-18 05:53:13 +00:00
|
|
|
else if (keysym == 0xFF0D) { data = "\x0A"; length = 1; }
|
2011-08-10 18:03:38 +00:00
|
|
|
else if (keysym == 0xFF1B) { data = "\x1B"; length = 1; }
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2011-08-10 18:03:38 +00:00
|
|
|
/* Arrow keys */
|
|
|
|
else if (keysym == 0xFF52) { data = "\x1B\x5B""A"; length = 3; }
|
|
|
|
else if (keysym == 0xFF54) { data = "\x1B\x5B""B"; length = 3; }
|
|
|
|
else if (keysym == 0xFF53) { data = "\x1B\x5B""C"; length = 3; }
|
|
|
|
else if (keysym == 0xFF51) { data = "\x1B\x5B""D"; length = 3; }
|
|
|
|
|
2012-12-17 01:51:49 +00:00
|
|
|
/* Ignore other keys */
|
|
|
|
else return 0;
|
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
return write(fd, data, length);
|
2011-08-10 18:03:38 +00:00
|
|
|
}
|
2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-05-01 23:54:29 +00:00
|
|
|
int ssh_guac_client_size_handler(guac_client* client, int width, int height) {
|
|
|
|
|
|
|
|
/* Get terminal */
|
|
|
|
ssh_guac_client_data* guac_client_data = (ssh_guac_client_data*) client->data;
|
|
|
|
guac_terminal* terminal = guac_client_data->term;
|
|
|
|
|
|
|
|
/* Calculate dimensions */
|
|
|
|
int rows = height / terminal->display->char_height;
|
|
|
|
int columns = width / terminal->display->char_width;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&(terminal->lock));
|
|
|
|
|
|
|
|
/* If size has changed */
|
|
|
|
if (columns != terminal->term_width || rows != terminal->term_height) {
|
|
|
|
|
|
|
|
/* Resize terminal */
|
|
|
|
guac_terminal_resize(terminal, columns, rows);
|
2013-05-18 03:20:51 +00:00
|
|
|
|
2013-05-20 17:27:53 +00:00
|
|
|
/* Update SSH pty size if connected */
|
|
|
|
if (guac_client_data->term_channel != NULL)
|
|
|
|
channel_change_pty_size(guac_client_data->term_channel,
|
|
|
|
terminal->term_width, terminal->term_height);
|
2013-05-01 23:54:29 +00:00
|
|
|
|
|
|
|
/* Reset scroll region */
|
|
|
|
terminal->scroll_end = rows - 1;
|
|
|
|
|
2013-05-20 17:27:53 +00:00
|
|
|
guac_terminal_display_flush(terminal->display);
|
|
|
|
guac_socket_flush(terminal->client->socket);
|
2013-05-01 23:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&(terminal->lock));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-30 22:34:04 +00:00
|
|
|
int ssh_guac_client_free_handler(guac_client* client) {
|
|
|
|
|
|
|
|
ssh_guac_client_data* guac_client_data = (ssh_guac_client_data*) client->data;
|
|
|
|
|
2013-05-18 03:47:05 +00:00
|
|
|
/* Close SSH client */
|
|
|
|
close(STDOUT_FILENO);
|
|
|
|
close(STDIN_FILENO);
|
2013-05-18 03:58:47 +00:00
|
|
|
pthread_join(guac_client_data->client_thread, NULL);
|
2013-05-18 03:47:05 +00:00
|
|
|
|
2011-12-30 22:34:04 +00:00
|
|
|
/* Free terminal */
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_free(guac_client_data->term);
|
2011-12-30 22:34:04 +00:00
|
|
|
|
|
|
|
/* Free clipboard data */
|
|
|
|
free(guac_client_data->clipboard_data);
|
|
|
|
|
2013-04-09 20:58:55 +00:00
|
|
|
/* Free cursors */
|
|
|
|
guac_ssh_cursor_free(client, guac_client_data->ibar_cursor);
|
2013-04-09 21:02:52 +00:00
|
|
|
guac_ssh_cursor_free(client, guac_client_data->blank_cursor);
|
2013-04-09 20:58:55 +00:00
|
|
|
|
2011-12-30 22:34:04 +00:00
|
|
|
/* Free generic data struct */
|
|
|
|
free(client->data);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|