2011-03-17 06:46:02 +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.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Michael Jumper.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2011-11-13 00:51:42 +00:00
|
|
|
#include <stdio.h>
|
2011-03-17 06:46:02 +00:00
|
|
|
|
|
|
|
#include "client.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "client-handlers.h"
|
|
|
|
|
2011-03-18 07:55:14 +00:00
|
|
|
/* Guacamole instruction handler map */
|
|
|
|
|
2011-03-17 06:46:02 +00:00
|
|
|
__guac_instruction_handler_mapping __guac_instruction_handler_map[] = {
|
|
|
|
{"sync", __guac_handle_sync},
|
|
|
|
{"mouse", __guac_handle_mouse},
|
|
|
|
{"key", __guac_handle_key},
|
|
|
|
{"clipboard", __guac_handle_clipboard},
|
|
|
|
{"disconnect", __guac_handle_disconnect},
|
2012-10-21 21:52:00 +00:00
|
|
|
{"size", __guac_handle_size},
|
2013-09-27 05:27:18 +00:00
|
|
|
{"file", __guac_handle_file},
|
2013-10-28 02:53:34 +00:00
|
|
|
{"ack", __guac_handle_ack},
|
2013-09-27 05:27:18 +00:00
|
|
|
{"blob", __guac_handle_blob},
|
|
|
|
{"end", __guac_handle_end},
|
2011-03-17 06:46:02 +00:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
2011-11-25 21:18:00 +00:00
|
|
|
int64_t __guac_parse_int(const char* str) {
|
|
|
|
|
|
|
|
int sign = 1;
|
|
|
|
int64_t num = 0;
|
|
|
|
|
|
|
|
for (; *str != '\0'; str++) {
|
|
|
|
|
|
|
|
if (*str == '-')
|
|
|
|
sign = -sign;
|
|
|
|
else
|
|
|
|
num = num * 10 + (*str - '0');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return num * sign;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-18 07:55:14 +00:00
|
|
|
/* Guacamole instruction handlers */
|
2011-11-13 00:51:42 +00:00
|
|
|
|
2011-03-17 06:46:02 +00:00
|
|
|
int __guac_handle_sync(guac_client* client, guac_instruction* instruction) {
|
2011-11-25 21:18:00 +00:00
|
|
|
guac_timestamp timestamp = __guac_parse_int(instruction->argv[0]);
|
2011-03-17 06:46:02 +00:00
|
|
|
|
|
|
|
/* Error if timestamp is in future */
|
|
|
|
if (timestamp > client->last_sent_timestamp)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
client->last_received_timestamp = timestamp;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int __guac_handle_mouse(guac_client* client, guac_instruction* instruction) {
|
|
|
|
if (client->mouse_handler)
|
|
|
|
return client->mouse_handler(
|
|
|
|
client,
|
|
|
|
atoi(instruction->argv[0]), /* x */
|
|
|
|
atoi(instruction->argv[1]), /* y */
|
|
|
|
atoi(instruction->argv[2]) /* mask */
|
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int __guac_handle_key(guac_client* client, guac_instruction* instruction) {
|
|
|
|
if (client->key_handler)
|
|
|
|
return client->key_handler(
|
|
|
|
client,
|
|
|
|
atoi(instruction->argv[0]), /* keysym */
|
|
|
|
atoi(instruction->argv[1]) /* pressed */
|
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int __guac_handle_clipboard(guac_client* client, guac_instruction* instruction) {
|
|
|
|
if (client->clipboard_handler)
|
|
|
|
return client->clipboard_handler(
|
|
|
|
client,
|
2011-09-10 07:37:16 +00:00
|
|
|
instruction->argv[0] /* data */
|
2011-03-17 06:46:02 +00:00
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-21 21:52:00 +00:00
|
|
|
int __guac_handle_size(guac_client* client, guac_instruction* instruction) {
|
|
|
|
if (client->size_handler)
|
|
|
|
return client->size_handler(
|
|
|
|
client,
|
|
|
|
atoi(instruction->argv[0]), /* width */
|
|
|
|
atoi(instruction->argv[1]) /* height */
|
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-27 05:27:18 +00:00
|
|
|
int __guac_handle_file(guac_client* client, guac_instruction* instruction) {
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
/* Pull corresponding stream */
|
|
|
|
int stream_index = atoi(instruction->argv[0]);
|
|
|
|
guac_stream* stream;
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
/* Validate stream index */
|
|
|
|
if (stream_index < 0 || stream_index >= GUAC_CLIENT_MAX_STREAMS) {
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
guac_stream dummy_stream;
|
|
|
|
dummy_stream.index = stream_index;
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-10-15 18:23:07 +00:00
|
|
|
guac_protocol_send_ack(client->socket, &dummy_stream,
|
2013-09-28 02:48:11 +00:00
|
|
|
"Invalid stream index", GUAC_PROTOCOL_STATUS_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize stream */
|
|
|
|
stream = &(client->__streams[stream_index]);
|
|
|
|
stream->index = stream_index;
|
2013-09-28 03:02:06 +00:00
|
|
|
stream->data = NULL;
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
/* If supported, call handler */
|
|
|
|
if (client->file_handler)
|
2013-09-27 05:49:45 +00:00
|
|
|
return client->file_handler(
|
|
|
|
client,
|
|
|
|
stream,
|
|
|
|
instruction->argv[1], /* mimetype */
|
|
|
|
instruction->argv[2] /* filename */
|
|
|
|
);
|
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
/* Otherwise, abort */
|
2013-10-15 18:23:07 +00:00
|
|
|
guac_protocol_send_ack(client->socket, stream,
|
2013-09-28 02:48:11 +00:00
|
|
|
"File transfer unsupported", GUAC_PROTOCOL_STATUS_UNSUPPORTED);
|
2013-09-27 05:27:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-28 02:53:34 +00:00
|
|
|
int __guac_handle_ack(guac_client* client, guac_instruction* instruction) {
|
|
|
|
|
|
|
|
guac_stream* stream;
|
|
|
|
|
|
|
|
/* Validate stream index */
|
|
|
|
int stream_index = atoi(instruction->argv[0]);
|
|
|
|
if (stream_index < 0 || stream_index >= GUAC_CLIENT_MAX_STREAMS)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
stream = &(client->__streams[stream_index]);
|
|
|
|
|
|
|
|
/* Validate initialization of stream */
|
|
|
|
if (stream->index == GUAC_CLIENT_CLOSED_STREAM_INDEX)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* If handler defined, call it */
|
|
|
|
if (client->ack_handler)
|
|
|
|
return client->ack_handler(client, stream, instruction->argv[1],
|
|
|
|
atoi(instruction->argv[2]));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-27 05:27:18 +00:00
|
|
|
int __guac_handle_blob(guac_client* client, guac_instruction* instruction) {
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 03:02:06 +00:00
|
|
|
guac_stream* stream;
|
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
/* Validate stream index */
|
|
|
|
int stream_index = atoi(instruction->argv[0]);
|
|
|
|
if (stream_index < 0 || stream_index >= GUAC_CLIENT_MAX_STREAMS) {
|
|
|
|
|
|
|
|
guac_stream dummy_stream;
|
|
|
|
dummy_stream.index = stream_index;
|
|
|
|
|
2013-10-15 18:23:07 +00:00
|
|
|
guac_protocol_send_ack(client->socket, &dummy_stream,
|
2013-09-28 02:48:11 +00:00
|
|
|
"Invalid stream index", GUAC_PROTOCOL_STATUS_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-28 03:02:06 +00:00
|
|
|
stream = &(client->__streams[stream_index]);
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 03:02:06 +00:00
|
|
|
/* Validate initialization of stream */
|
|
|
|
if (stream->index == GUAC_CLIENT_CLOSED_STREAM_INDEX) {
|
2013-09-27 22:56:22 +00:00
|
|
|
|
2013-09-28 03:02:06 +00:00
|
|
|
guac_stream dummy_stream;
|
|
|
|
dummy_stream.index = stream_index;
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-10-15 18:23:07 +00:00
|
|
|
guac_protocol_send_ack(client->socket, &dummy_stream,
|
2013-09-28 03:02:06 +00:00
|
|
|
"Invalid stream index", GUAC_PROTOCOL_STATUS_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (client->blob_handler) {
|
|
|
|
|
|
|
|
/* Decode base64 */
|
|
|
|
int length = guac_protocol_decode_base64(instruction->argv[1]);
|
|
|
|
return client->blob_handler(client, stream, instruction->argv[1],
|
|
|
|
length);
|
2013-09-27 05:49:45 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-15 18:23:07 +00:00
|
|
|
guac_protocol_send_ack(client->socket, stream,
|
2013-09-28 02:48:11 +00:00
|
|
|
"File transfer unsupported", GUAC_PROTOCOL_STATUS_UNSUPPORTED);
|
2013-09-27 05:27:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int __guac_handle_end(guac_client* client, guac_instruction* instruction) {
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 03:02:06 +00:00
|
|
|
guac_stream* stream;
|
|
|
|
int result = 0;
|
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
/* Pull corresponding stream */
|
|
|
|
int stream_index = atoi(instruction->argv[0]);
|
|
|
|
|
|
|
|
/* Validate stream index */
|
|
|
|
if (stream_index < 0 || stream_index >= GUAC_CLIENT_MAX_STREAMS) {
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
guac_stream dummy_stream;
|
|
|
|
dummy_stream.index = stream_index;
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-10-15 18:23:07 +00:00
|
|
|
guac_protocol_send_ack(client->socket, &dummy_stream,
|
2013-09-28 02:48:11 +00:00
|
|
|
"Invalid stream index",
|
|
|
|
GUAC_PROTOCOL_STATUS_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 03:02:06 +00:00
|
|
|
stream = &(client->__streams[stream_index]);
|
|
|
|
|
2013-09-28 02:48:11 +00:00
|
|
|
if (client->end_handler)
|
2013-09-28 03:02:06 +00:00
|
|
|
result = client->end_handler(client, stream);
|
2013-09-27 05:49:45 +00:00
|
|
|
|
2013-09-28 03:02:06 +00:00
|
|
|
/* Mark stream as closed */
|
|
|
|
stream->index = GUAC_CLIENT_CLOSED_STREAM_INDEX;
|
|
|
|
return result;
|
2013-09-27 05:27:18 +00:00
|
|
|
}
|
|
|
|
|
2011-03-17 06:46:02 +00:00
|
|
|
int __guac_handle_disconnect(guac_client* client, guac_instruction* instruction) {
|
2011-03-18 07:55:14 +00:00
|
|
|
/* Return error code to force disconnect */
|
2011-03-17 06:46:02 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|