guacamole-spice-protocol/libguac/src/protocol.c

625 lines
15 KiB
C
Raw Normal View History

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
#ifdef HAVE_CLOCK_GETTIME
#include <time.h>
#else
#include <sys/time.h>
#endif
2010-12-08 21:14:04 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <png.h>
2011-02-11 07:53:11 +00:00
#ifdef HAVE_PNGSTRUCT_H
#include <pngstruct.h>
#endif
2010-12-08 21:14:04 +00:00
#include <sys/types.h>
#ifdef __MINGW32__
#include <winsock2.h>
#else
2010-12-08 21:14:04 +00:00
#include <sys/socket.h>
#endif
2010-12-08 21:14:04 +00:00
#include "guacio.h"
#include "protocol.h"
char* guac_escape_string(const char* str) {
char* escaped;
char* current;
int i;
int length = 0;
/* Determine length */
for (i=0; str[i] != '\0'; i++) {
switch (str[i]) {
case ';':
case ',':
case '\\':
length += 2;
break;
default:
length++;
}
}
/* Allocate new */
escaped = malloc(length+1);
current = escaped;
for (i=0; str[i] != '\0'; i++) {
switch (str[i]) {
case ';':
*(current++) = '\\';
*(current++) = 's';
break;
case ',':
*(current++) = '\\';
*(current++) = 'c';
break;
case '\\':
*(current++) = '\\';
*(current++) = '\\';
break;
default:
*(current++) = str[i];
}
}
*current = '\0';
return escaped;
}
char* guac_unescape_string_inplace(char* str) {
char* from;
char* to;
from = to = str;
for (;;) {
char c = *(from++);
if (c == '\\') {
c = *(from++);
if (c == 's')
*(to++) = ';';
else if (c == 'c')
*(to++) = ',';
else if (c == '\\')
*(to++) = '\\';
else if (c == '\0') {
*(to++) = '\\';
break;
}
else {
*(to++) = '\\';
*(to++) = c;
}
}
else if (c == '\0')
break;
else
*(to++) = c;
}
*to = '\0';
return str;
}
int guac_send_args(GUACIO* io, const char** args) {
int i;
if (guac_write_string(io, "args:")) return -1;
for (i=0; args[i] != NULL; i++) {
2011-03-25 06:11:46 +00:00
char* escaped;
if (i > 0) {
if (guac_write_string(io, ","))
return -1;
}
2011-03-25 06:11:46 +00:00
escaped = guac_escape_string(args[i]);
if (guac_write_string(io, escaped)) {
free(escaped);
return -1;
}
free(escaped);
}
return guac_write_string(io, ";");
}
int guac_send_name(GUACIO* io, const char* name) {
2010-12-08 21:14:04 +00:00
char* escaped = guac_escape_string(name);
if (
guac_write_string(io, "name:")
|| guac_write_string(io, escaped)
|| guac_write_string(io, ";")
) {
free(escaped);
return -1;
}
2010-12-08 21:14:04 +00:00
free(escaped);
return 0;
2010-12-08 21:14:04 +00:00
}
int guac_send_size(GUACIO* io, int w, int h) {
return
2011-03-19 23:39:18 +00:00
guac_write_string(io, "size:")
|| guac_write_int(io, w)
|| guac_write_string(io, ",")
|| guac_write_int(io, h)
|| guac_write_string(io, ";");
2010-12-08 21:14:04 +00:00
}
int guac_send_clipboard(GUACIO* io, const char* data) {
2010-12-08 21:14:04 +00:00
char* escaped = guac_escape_string(data);
if (
2011-03-19 23:39:18 +00:00
guac_write_string(io, "clipboard:")
|| guac_write_string(io, escaped)
|| guac_write_string(io, ";")
) {
free(escaped);
return -1;
}
2010-12-08 21:14:04 +00:00
free(escaped);
return 0;
2010-12-08 21:14:04 +00:00
}
int guac_send_error(GUACIO* io, const char* error) {
2010-12-08 21:14:04 +00:00
char* escaped = guac_escape_string(error);
if (
2011-03-19 23:39:18 +00:00
guac_write_string(io, "error:")
|| guac_write_string(io, escaped)
|| guac_write_string(io, ";")
) {
free(escaped);
return -1;
}
2010-12-08 21:14:04 +00:00
free(escaped);
return 0;
2010-12-08 21:14:04 +00:00
}
int guac_send_sync(GUACIO* io, long timestamp) {
2011-03-12 02:57:53 +00:00
return
2011-03-19 23:39:18 +00:00
guac_write_string(io, "sync:")
|| guac_write_int(io, timestamp)
|| guac_write_string(io, ";");
2011-03-12 02:57:53 +00:00
}
int guac_send_copy(GUACIO* io, int srcl, int srcx, int srcy, int w, int h, int dstl, int dstx, int dsty) {
return
2011-03-19 23:39:18 +00:00
guac_write_string(io, "copy:")
|| guac_write_int(io, srcl)
|| guac_write_string(io, ",")
|| guac_write_int(io, srcx)
|| guac_write_string(io, ",")
|| guac_write_int(io, srcy)
|| guac_write_string(io, ",")
|| guac_write_int(io, w)
|| guac_write_string(io, ",")
|| guac_write_int(io, h)
|| guac_write_string(io, ",")
|| guac_write_int(io, dstl)
|| guac_write_string(io, ",")
|| guac_write_int(io, dstx)
|| guac_write_string(io, ",")
|| guac_write_int(io, dsty)
|| guac_write_string(io, ";");
2010-12-08 21:14:04 +00:00
}
void __guac_write_png(png_structp png, png_bytep data, png_size_t length) {
#ifdef HAVE_PNG_GET_IO_PTR
GUACIO* io = (GUACIO*) png_get_io_ptr(png);
#else
/* Direct access to io_ptr has been deprecated, but we'll
use it if we have to. */
GUACIO* io = (GUACIO*) png->io_ptr;
#endif
if (guac_write_base64(io, data, length) < 0) {
2010-12-08 21:14:04 +00:00
perror("Error writing PNG");
png_error(png, "Error writing PNG");
return;
}
}
void __guac_write_flush(png_structp png) {
}
int guac_send_png(GUACIO* io, int layer, int x, int y, png_byte** png_rows, int w, int h) {
2010-12-08 21:14:04 +00:00
png_structp png;
png_infop png_info;
/* Write image */
/* Set up PNG writer */
png = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!png) {
return -1;
2010-12-08 21:14:04 +00:00
}
png_info = png_create_info_struct(png);
if (!png_info) {
png_destroy_write_struct(&png, NULL);
return -1;
2010-12-08 21:14:04 +00:00
}
#ifdef GUAC_FAST_PNG
/* Do not filter (speed) */
png_set_filter(png, PNG_FILTER_TYPE_BASE, PNG_FILTER_VALUE_NONE);
/* Fast compression level */
png_set_compression_level(png, 1);
#endif
2010-12-08 21:14:04 +00:00
/* Set error handler */
if (setjmp(png_jmpbuf(png))) {
png_destroy_write_struct(&png, &png_info);
return -1;
2010-12-08 21:14:04 +00:00
}
png_set_write_fn(png, io, __guac_write_png, __guac_write_flush);
/* Set PNG IHDR */
png_set_IHDR(
png,
png_info,
w,
h,
8,
PNG_COLOR_TYPE_RGB,
PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_DEFAULT,
PNG_FILTER_TYPE_DEFAULT
);
if (
guac_write_string(io, "png:")
|| guac_write_int(io, layer)
|| guac_write_string(io, ",")
|| guac_write_int(io, x)
|| guac_write_string(io, ",")
|| guac_write_int(io, y)
|| guac_write_string(io, ",")
) {
png_destroy_write_struct(&png, &png_info);
return -1;
}
2010-12-08 21:14:04 +00:00
png_set_rows(png, png_info, png_rows);
png_write_png(png, png_info, PNG_TRANSFORM_IDENTITY, NULL);
if (guac_flush_base64(io) < 0) {
png_destroy_write_struct(&png, &png_info);
return -1;
2010-12-08 21:14:04 +00:00
}
png_destroy_write_struct(&png, &png_info);
return guac_write_string(io, ";");
2010-12-08 21:14:04 +00:00
}
int guac_send_cursor(GUACIO* io, int x, int y, png_byte** png_rows, int w, int h) {
2010-12-08 21:14:04 +00:00
png_structp png;
png_infop png_info;
/* Write image */
/* Set up PNG writer */
png = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!png) {
return -1;
2010-12-08 21:14:04 +00:00
}
png_info = png_create_info_struct(png);
if (!png_info) {
png_destroy_write_struct(&png, NULL);
return -1;
2010-12-08 21:14:04 +00:00
}
/* Set error handler */
if (setjmp(png_jmpbuf(png))) {
png_destroy_write_struct(&png, &png_info);
return -1;
2010-12-08 21:14:04 +00:00
}
png_set_write_fn(png, io, __guac_write_png, __guac_write_flush);
/* Set PNG IHDR */
png_set_IHDR(
png,
png_info,
w,
h,
8,
PNG_COLOR_TYPE_RGBA,
PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_DEFAULT,
PNG_FILTER_TYPE_DEFAULT
);
if (
2011-03-19 23:39:18 +00:00
guac_write_string(io, "cursor:")
|| guac_write_int(io, x)
|| guac_write_string(io, ",")
|| guac_write_int(io, y)
|| guac_write_string(io, ",")
) {
png_destroy_write_struct(&png, &png_info);
return -1;
}
2010-12-08 21:14:04 +00:00
png_set_rows(png, png_info, png_rows);
png_write_png(png, png_info, PNG_TRANSFORM_IDENTITY, NULL);
if (guac_flush_base64(io) < 0) {
png_destroy_write_struct(&png, &png_info);
return -1;
2010-12-08 21:14:04 +00:00
}
png_destroy_write_struct(&png, &png_info);
return guac_write_string(io, ";");
2010-12-08 21:14:04 +00:00
}
int __guac_fill_instructionbuf(GUACIO* io) {
int retval;
/* Attempt to fill buffer */
retval = recv(
io->fd,
io->instructionbuf + io->instructionbuf_used_length,
io->instructionbuf_size - io->instructionbuf_used_length,
0
);
if (retval < 0)
return retval;
io->instructionbuf_used_length += retval;
/* Expand buffer if necessary */
if (io->instructionbuf_used_length > io->instructionbuf_size / 2) {
io->instructionbuf_size *= 2;
io->instructionbuf = realloc(io->instructionbuf, io->instructionbuf_size);
}
return retval;
}
/* Returns new instruction if one exists, or NULL if no more instructions. */
int guac_read_instruction(GUACIO* io, guac_instruction* parsed_instruction) {
int retval;
int i = 0;
int argcount = 0;
int j;
int current_arg = 0;
/* Loop until a instruction is read */
for (;;) {
/* Search for end of instruction */
for (; i < io->instructionbuf_used_length; i++) {
/* Count arguments as we look for the end */
if (io->instructionbuf[i] == ',')
argcount++;
else if (io->instructionbuf[i] == ':' && argcount == 0)
argcount++;
/* End found ... */
else if (io->instructionbuf[i] == ';') {
/* Parse new instruction */
char* instruction = malloc(i+1);
memcpy(instruction, io->instructionbuf, i+1);
instruction[i] = '\0'; /* Replace semicolon with null terminator. */
parsed_instruction->opcode = NULL;
parsed_instruction->argc = argcount;
parsed_instruction->argv = malloc(sizeof(char*) * argcount);
for (j=0; j<i; j++) {
/* If encountered a colon, and no opcode parsed yet, set opcode and following argument */
if (instruction[j] == ':' && parsed_instruction->opcode == NULL) {
instruction[j] = '\0';
parsed_instruction->argv[current_arg++] = &(instruction[j+1]);
parsed_instruction->opcode = instruction;
}
/* If encountered a comma, set following argument */
else if (instruction[j] == ',') {
instruction[j] = '\0';
parsed_instruction->argv[current_arg++] = &(instruction[j+1]);
}
}
/* If no arguments, set opcode to entire instruction */
if (parsed_instruction->opcode == NULL)
parsed_instruction->opcode = instruction;
/* Found. Reset buffer */
memmove(io->instructionbuf, io->instructionbuf + i + 1, io->instructionbuf_used_length - i - 1);
io->instructionbuf_used_length -= i + 1;
/* Done */
return 1;
}
}
/* No instruction yet? Get more data ... */
retval = guac_select(io, GUAC_USEC_TIMEOUT);
2010-12-08 21:14:04 +00:00
if (retval <= 0)
return retval;
/* If more data is available, fill into buffer */
2010-12-08 21:14:04 +00:00
retval = __guac_fill_instructionbuf(io);
if (retval < 0) return retval; /* Error */
if (retval == 0) return -1; /* EOF */
2010-12-08 21:14:04 +00:00
}
}
void guac_free_instruction_data(guac_instruction* instruction) {
free(instruction->opcode);
if (instruction->argv)
free(instruction->argv);
}
void guac_free_instruction(guac_instruction* instruction) {
guac_free_instruction_data(instruction);
free(instruction);
}
int guac_instructions_waiting(GUACIO* io) {
if (io->instructionbuf_used_length > 0)
return 1;
2011-03-16 08:24:17 +00:00
return guac_select(io, GUAC_USEC_TIMEOUT);
2010-12-08 21:14:04 +00:00
}
long guac_current_timestamp() {
#ifdef HAVE_CLOCK_GETTIME
struct timespec current;
/* Get current time */
clock_gettime(CLOCK_REALTIME, &current);
/* Calculate milliseconds */
return current.tv_sec * 1000 + current.tv_nsec / 1000000;
#else
struct timeval current;
/* Get current time */
gettimeofday(&current, NULL);
/* Calculate milliseconds */
return current.tv_sec * 1000 + current.tv_usec / 1000;
#endif
}
void guac_sleep(int millis) {
#ifdef HAVE_NANOSLEEP
struct timespec sleep_period;
sleep_period.tv_sec = 0;
sleep_period.tv_nsec = millis * 1000000L;
nanosleep(&sleep_period, NULL);
#elif defined(__MINGW32__)
Sleep(millis)
#else
#warning No sleep/nanosleep function available. Clients may not perform as expected. Consider patching libguac to add support for your platform.
#endif
}