2010-12-08 21:14:04 +00:00
|
|
|
|
2011-02-16 02:04:36 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2010-12-08 21:14:04 +00:00
|
|
|
*
|
2011-02-16 02:04:36 +00:00
|
|
|
* 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/
|
2010-12-08 21:14:04 +00:00
|
|
|
*
|
2011-02-16 02:04:36 +00:00
|
|
|
* 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.
|
2010-12-08 21:14:04 +00:00
|
|
|
*
|
2011-02-16 02:04:36 +00:00
|
|
|
* 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 ***** */
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
#include "socket.h"
|
2010-12-08 21:14:04 +00:00
|
|
|
#include "protocol.h"
|
|
|
|
#include "client.h"
|
2011-03-17 06:46:02 +00:00
|
|
|
#include "client-handlers.h"
|
2011-11-25 21:04:59 +00:00
|
|
|
#include "error.h"
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-10-26 05:01:53 +00:00
|
|
|
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
|
|
|
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
|
|
|
|
|
|
|
|
guac_layer __GUAC_DEFAULT_LAYER = {
|
|
|
|
.index = 0,
|
2011-11-24 00:08:33 +00:00
|
|
|
.__next = NULL,
|
|
|
|
.__next_available = NULL
|
2011-10-26 05:01:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const guac_layer* GUAC_DEFAULT_LAYER = &__GUAC_DEFAULT_LAYER;
|
|
|
|
|
2012-02-28 06:56:38 +00:00
|
|
|
guac_layer* guac_client_alloc_layer(guac_client* client) {
|
2011-07-20 19:36:02 +00:00
|
|
|
|
|
|
|
guac_layer* allocd_layer;
|
|
|
|
|
2012-02-28 06:56:38 +00:00
|
|
|
/* If available layers, pop off first available layer */
|
|
|
|
if (client->__next_layer_index >= GUAC_BUFFER_POOL_INITIAL_SIZE &&
|
|
|
|
client->__available_layers != NULL) {
|
2011-07-20 19:36:02 +00:00
|
|
|
|
2012-02-28 06:56:38 +00:00
|
|
|
allocd_layer = client->__available_layers;
|
|
|
|
client->__available_layers = client->__available_layers->__next_available;
|
|
|
|
|
|
|
|
/* If last layer, reset last available layer pointer */
|
|
|
|
if (allocd_layer == client->__last_available_layer)
|
|
|
|
client->__last_available_layer = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no available layer, allocate new layer, add to __all_layers list */
|
|
|
|
else {
|
|
|
|
|
|
|
|
/* Init new layer */
|
|
|
|
allocd_layer = malloc(sizeof(guac_layer));
|
|
|
|
allocd_layer->index = client->__next_layer_index++;
|
|
|
|
|
|
|
|
/* Add to __all_layers list */
|
|
|
|
allocd_layer->__next = client->__all_layers;
|
|
|
|
client->__all_layers = allocd_layer;
|
|
|
|
|
|
|
|
}
|
2011-07-20 19:36:02 +00:00
|
|
|
|
|
|
|
return allocd_layer;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
guac_layer* guac_client_alloc_buffer(guac_client* client) {
|
|
|
|
|
|
|
|
guac_layer* allocd_layer;
|
|
|
|
|
|
|
|
/* If available layers, pop off first available buffer */
|
2012-01-12 17:57:34 +00:00
|
|
|
if (client->__next_buffer_index <= -GUAC_BUFFER_POOL_INITIAL_SIZE &&
|
|
|
|
client->__available_buffers != NULL) {
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
allocd_layer = client->__available_buffers;
|
|
|
|
client->__available_buffers = client->__available_buffers->__next_available;
|
2012-01-12 17:57:34 +00:00
|
|
|
|
|
|
|
/* If last buffer, reset last available buffer pointer */
|
|
|
|
if (allocd_layer == client->__last_available_buffer)
|
|
|
|
client->__last_available_buffer = NULL;
|
|
|
|
|
2011-07-20 19:36:02 +00:00
|
|
|
}
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
/* If no available buffer, allocate new buffer, add to __all_layers list */
|
2011-07-20 19:36:02 +00:00
|
|
|
else {
|
|
|
|
|
|
|
|
/* Init new layer */
|
|
|
|
allocd_layer = malloc(sizeof(guac_layer));
|
2011-11-24 00:08:33 +00:00
|
|
|
allocd_layer->index = client->__next_buffer_index--;
|
2011-07-20 19:36:02 +00:00
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
/* Add to __all_layers list */
|
|
|
|
allocd_layer->__next = client->__all_layers;
|
|
|
|
client->__all_layers = allocd_layer;
|
2011-07-20 19:36:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return allocd_layer;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_client_free_buffer(guac_client* client, guac_layer* layer) {
|
2011-10-23 22:35:23 +00:00
|
|
|
|
2012-01-12 17:57:34 +00:00
|
|
|
/* Add layer to tail of pool of available buffers */
|
|
|
|
if (client->__last_available_buffer != NULL)
|
|
|
|
client->__last_available_buffer->__next_available = layer;
|
|
|
|
|
2012-04-10 18:08:52 +00:00
|
|
|
if (client->__available_buffers == NULL)
|
|
|
|
client->__available_buffers = layer;
|
|
|
|
|
2012-01-12 17:57:34 +00:00
|
|
|
client->__last_available_buffer = layer;
|
2012-04-10 23:12:03 +00:00
|
|
|
layer->__next_available = NULL;
|
2011-10-23 22:35:23 +00:00
|
|
|
|
2011-07-20 19:36:02 +00:00
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2012-02-28 06:56:38 +00:00
|
|
|
void guac_client_free_layer(guac_client* client, guac_layer* layer) {
|
|
|
|
|
|
|
|
/* Add layer to tail of pool of available layers */
|
|
|
|
if (client->__last_available_layer != NULL)
|
|
|
|
client->__last_available_layer->__next_available = layer;
|
|
|
|
|
2012-04-10 18:08:52 +00:00
|
|
|
if (client->__available_layers == NULL)
|
|
|
|
client->__available_layers = layer;
|
|
|
|
|
2012-02-28 06:56:38 +00:00
|
|
|
client->__last_available_layer = layer;
|
2012-04-10 23:12:03 +00:00
|
|
|
layer->__next_available = NULL;
|
2012-02-28 06:56:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
guac_client_plugin* guac_client_plugin_open(const char* protocol) {
|
|
|
|
|
|
|
|
guac_client_plugin* plugin;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Reference to dlopen()'d plugin */
|
|
|
|
void* client_plugin_handle;
|
|
|
|
|
|
|
|
/* Client args description */
|
|
|
|
const char** client_args;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Pluggable client */
|
2012-08-23 18:50:06 +00:00
|
|
|
char protocol_lib[GUAC_PROTOCOL_LIBRARY_LIMIT] =
|
|
|
|
GUAC_PROTOCOL_LIBRARY_PREFIX;
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
union {
|
|
|
|
guac_client_init_handler* client_init;
|
|
|
|
void* obj;
|
|
|
|
} alias;
|
|
|
|
|
2011-11-26 08:28:43 +00:00
|
|
|
/* Add protocol and .so suffix to protocol_lib */
|
2012-08-23 18:50:06 +00:00
|
|
|
strncat(protocol_lib, protocol, GUAC_PROTOCOL_NAME_LIMIT-1);
|
|
|
|
strcat(protocol_lib, GUAC_PROTOCOL_LIBRARY_SUFFIX);
|
2011-11-26 08:28:43 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Load client plugin */
|
|
|
|
client_plugin_handle = dlopen(protocol_lib, RTLD_LAZY);
|
|
|
|
if (!client_plugin_handle) {
|
|
|
|
guac_error = GUAC_STATUS_BAD_ARGUMENT;
|
2012-01-03 08:03:24 +00:00
|
|
|
guac_error_message = dlerror();
|
2011-11-25 21:04:59 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
dlerror(); /* Clear errors */
|
2011-01-01 21:22:17 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Get init function */
|
|
|
|
alias.obj = dlsym(client_plugin_handle, "guac_client_init");
|
2011-01-01 21:22:17 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Fail if cannot find guac_client_init */
|
|
|
|
if (dlerror() != NULL) {
|
|
|
|
guac_error = GUAC_STATUS_BAD_ARGUMENT;
|
2011-11-27 23:57:43 +00:00
|
|
|
guac_error_message = dlerror();
|
2011-11-25 21:04:59 +00:00
|
|
|
return NULL;
|
2011-01-01 21:22:17 +00:00
|
|
|
}
|
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Get usage strig */
|
|
|
|
client_args = (const char**) dlsym(client_plugin_handle, "GUAC_CLIENT_ARGS");
|
2011-01-01 21:22:17 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Fail if cannot find GUAC_CLIENT_ARGS */
|
|
|
|
if (dlerror() != NULL) {
|
|
|
|
guac_error = GUAC_STATUS_BAD_ARGUMENT;
|
2011-11-27 23:57:43 +00:00
|
|
|
guac_error_message = dlerror();
|
2011-11-25 21:04:59 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate plugin */
|
|
|
|
plugin = malloc(sizeof(guac_client_plugin));
|
|
|
|
if (plugin == NULL) {
|
|
|
|
guac_error = GUAC_STATUS_NO_MEMORY;
|
2011-11-27 23:57:43 +00:00
|
|
|
guac_error_message = "Could not allocate memory for client plugin";
|
2011-11-25 21:04:59 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init and return plugin */
|
|
|
|
plugin->__client_plugin_handle = client_plugin_handle;
|
|
|
|
plugin->init_handler = alias.client_init;
|
|
|
|
plugin->args = client_args;
|
|
|
|
return plugin;
|
2011-03-16 06:02:47 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
}
|
2011-03-16 06:02:47 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
int guac_client_plugin_close(guac_client_plugin* plugin) {
|
2011-03-16 06:02:47 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Unload client plugin */
|
|
|
|
if (dlclose(plugin->__client_plugin_handle)) {
|
|
|
|
guac_error = GUAC_STATUS_BAD_STATE;
|
2011-11-27 23:57:43 +00:00
|
|
|
guac_error_message = dlerror();
|
2011-11-25 21:04:59 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2011-01-01 21:22:17 +00:00
|
|
|
|
2011-12-21 09:44:30 +00:00
|
|
|
/* Free plugin handle */
|
|
|
|
free(plugin);
|
2011-11-25 21:04:59 +00:00
|
|
|
return 0;
|
2011-01-01 21:22:17 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
guac_client* guac_client_plugin_get_client(guac_client_plugin* plugin,
|
2012-03-13 22:45:22 +00:00
|
|
|
guac_socket* socket, int argc, char** argv,
|
|
|
|
guac_client_log_handler* log_info_handler,
|
|
|
|
guac_client_log_handler* log_error_handler) {
|
2011-11-25 21:04:59 +00:00
|
|
|
|
|
|
|
/* Allocate new client */
|
|
|
|
guac_client* client = malloc(sizeof(guac_client));
|
|
|
|
if (client == NULL) {
|
|
|
|
guac_error = GUAC_STATUS_NO_MEMORY;
|
2011-11-27 23:57:43 +00:00
|
|
|
guac_error_message = "Could not allocate memory for client";
|
2011-11-25 21:04:59 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2011-01-01 21:22:17 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* Init new client */
|
|
|
|
memset(client, 0, sizeof(guac_client));
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-26 00:34:43 +00:00
|
|
|
client->socket = socket;
|
2011-11-25 21:04:59 +00:00
|
|
|
client->last_received_timestamp =
|
|
|
|
client->last_sent_timestamp = guac_protocol_get_timestamp();
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-12-25 06:49:27 +00:00
|
|
|
client->state = GUAC_CLIENT_RUNNING;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
client->__all_layers = NULL;
|
2012-02-28 06:56:38 +00:00
|
|
|
client->__available_buffers = client->__last_available_buffer = NULL;
|
|
|
|
client->__available_layers = client->__last_available_layer = NULL;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
client->__next_buffer_index = -1;
|
2012-02-28 06:56:38 +00:00
|
|
|
client->__next_layer_index = 1;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2012-03-13 22:45:22 +00:00
|
|
|
/* Set up logging in client */
|
|
|
|
client->log_info_handler = log_info_handler;
|
|
|
|
client->log_error_handler = log_error_handler;
|
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
if (plugin->init_handler(client, argc, argv) != 0) {
|
2011-11-26 22:50:03 +00:00
|
|
|
free(client);
|
2011-11-25 21:04:59 +00:00
|
|
|
return NULL;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
return client;
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
void guac_client_free(guac_client* client) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
if (client->free_handler) {
|
|
|
|
|
2011-11-25 21:04:59 +00:00
|
|
|
/* FIXME: Errors currently ignored... */
|
|
|
|
client->free_handler(client);
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-07-20 19:36:02 +00:00
|
|
|
/* Free all layers */
|
2011-11-24 00:08:33 +00:00
|
|
|
while (client->__all_layers != NULL) {
|
2011-10-23 22:35:23 +00:00
|
|
|
|
|
|
|
/* Get layer, update layer pool head */
|
2011-11-24 00:08:33 +00:00
|
|
|
guac_layer* layer = client->__all_layers;
|
|
|
|
client->__all_layers = layer->__next;
|
2011-10-23 22:35:23 +00:00
|
|
|
|
2011-10-26 05:01:53 +00:00
|
|
|
/* Free layer */
|
|
|
|
free(layer);
|
2011-10-23 22:35:23 +00:00
|
|
|
|
2011-10-26 05:01:53 +00:00
|
|
|
}
|
2011-10-23 22:35:23 +00:00
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
free(client);
|
|
|
|
}
|
|
|
|
|
2011-03-17 06:46:02 +00:00
|
|
|
int guac_client_handle_instruction(guac_client* client, guac_instruction* instruction) {
|
|
|
|
|
|
|
|
/* For each defined instruction */
|
|
|
|
__guac_instruction_handler_mapping* current = __guac_instruction_handler_map;
|
|
|
|
while (current->opcode != NULL) {
|
|
|
|
|
|
|
|
/* If recognized, call handler */
|
|
|
|
if (strcmp(instruction->opcode, current->opcode) == 0)
|
|
|
|
return current->handler(client, instruction);
|
|
|
|
|
|
|
|
current++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If unrecognized, ignore */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:22:12 +00:00
|
|
|
void vguac_client_log_info(guac_client* client, const char* format,
|
|
|
|
va_list ap) {
|
|
|
|
|
|
|
|
/* Call handler if defined */
|
|
|
|
if (client->log_info_handler != NULL)
|
|
|
|
client->log_info_handler(client, format, ap);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void vguac_client_log_error(guac_client* client, const char* format,
|
|
|
|
va_list ap) {
|
|
|
|
|
|
|
|
/* Call handler if defined */
|
|
|
|
if (client->log_error_handler != NULL)
|
|
|
|
client->log_error_handler(client, format, ap);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_client_log_info(guac_client* client, const char* format, ...) {
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
|
|
|
|
vguac_client_log_info(client, format, args);
|
|
|
|
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_client_log_error(guac_client* client, const char* format, ...) {
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
|
|
|
|
vguac_client_log_error(client, format, args);
|
|
|
|
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-02 06:57:34 +00:00
|
|
|
void guac_client_stop(guac_client* client) {
|
2011-12-25 06:49:27 +00:00
|
|
|
client->state = GUAC_CLIENT_STOPPING;
|
2011-12-02 06:57:34 +00:00
|
|
|
}
|
|
|
|
|