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 <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
2011-07-20 15:45:23 +00:00
|
|
|
#include <stdint.h>
|
2011-09-10 06:59:07 +00:00
|
|
|
#include <inttypes.h>
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-02-09 02:23:10 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <winsock2.h>
|
|
|
|
#else
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <sys/select.h>
|
2011-02-09 02:23:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <time.h>
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
#include "socket.h"
|
2011-11-21 09:32:04 +00:00
|
|
|
#include "error.h"
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
char __guac_socket_BASE64_CHARACTERS[64] = {
|
2010-12-08 21:14:04 +00:00
|
|
|
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
|
|
|
|
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
|
|
|
|
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
|
|
|
|
'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/',
|
|
|
|
};
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
guac_socket* guac_socket_open(int fd) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
guac_socket* io = malloc(sizeof(guac_socket));
|
2011-11-21 09:32:04 +00:00
|
|
|
|
|
|
|
/* If no memory available, return with error */
|
|
|
|
if (io == NULL) {
|
|
|
|
guac_error = GUAC_STATUS_NO_MEMORY;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
io->__ready = 0;
|
|
|
|
io->__written = 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
io->fd = fd;
|
|
|
|
|
|
|
|
/* Allocate instruction buffer */
|
2011-11-24 00:08:33 +00:00
|
|
|
io->__instructionbuf_size = 1024;
|
|
|
|
io->__instructionbuf = malloc(io->__instructionbuf_size);
|
2011-11-21 09:32:04 +00:00
|
|
|
|
|
|
|
/* If no memory available, return with error */
|
2011-11-24 00:08:33 +00:00
|
|
|
if (io->__instructionbuf == NULL) {
|
2011-11-21 09:32:04 +00:00
|
|
|
guac_error = GUAC_STATUS_NO_MEMORY;
|
|
|
|
free(io);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init members */
|
2011-11-24 00:08:33 +00:00
|
|
|
io->__instructionbuf_used_length = 0;
|
|
|
|
io->__instructionbuf_parse_start = 0;
|
|
|
|
io->__instructionbuf_elementc = 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
return io;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
void guac_socket_close(guac_socket* io) {
|
|
|
|
guac_socket_flush(io);
|
2011-11-24 00:08:33 +00:00
|
|
|
free(io->__instructionbuf);
|
2010-12-08 21:14:04 +00:00
|
|
|
free(io);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write bytes, limit rate */
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t __guac_socket_write(guac_socket* io, const char* buf, int count) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
2011-02-10 08:24:17 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
/* MINGW32 WINSOCK only works with send() */
|
|
|
|
retval = send(io->fd, buf, count, 0);
|
|
|
|
#else
|
|
|
|
/* Use write() for all other platforms */
|
2010-12-08 21:14:04 +00:00
|
|
|
retval = write(io->fd, buf, count);
|
2011-02-10 08:24:17 +00:00
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-21 09:32:04 +00:00
|
|
|
/* Record errors in guac_error */
|
|
|
|
if (retval < 0)
|
2011-11-25 02:18:03 +00:00
|
|
|
guac_error = GUAC_STATUS_SEE_ERRNO;
|
2011-11-21 09:32:04 +00:00
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t guac_socket_write_int(guac_socket* io, int64_t i) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
char buffer[128];
|
2011-09-10 06:59:07 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%"PRIi64, i);
|
2011-11-25 20:17:20 +00:00
|
|
|
return guac_socket_write_string(io, buffer);
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t guac_socket_write_string(guac_socket* io, const char* str) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
char* __out_buf = io->__out_buf;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
for (; *str != '\0'; str++) {
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
__out_buf[io->__written++] = *str;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Flush when necessary, return on error */
|
2011-11-24 00:08:33 +00:00
|
|
|
if (io->__written > 8188 /* sizeof(__out_buf) - 4 */) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
retval = __guac_socket_write(io, __out_buf, io->__written);
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
io->__written = 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t __guac_socket_write_base64_triplet(guac_socket* io, int a, int b, int c) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
char* __out_buf = io->__out_buf;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
/* Byte 1 */
|
2011-11-25 20:17:20 +00:00
|
|
|
__out_buf[io->__written++] = __guac_socket_BASE64_CHARACTERS[(a & 0xFC) >> 2]; /* [AAAAAA]AABBBB BBBBCC CCCCCC */
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
if (b >= 0) {
|
2011-11-25 20:17:20 +00:00
|
|
|
__out_buf[io->__written++] = __guac_socket_BASE64_CHARACTERS[((a & 0x03) << 4) | ((b & 0xF0) >> 4)]; /* AAAAAA[AABBBB]BBBBCC CCCCCC */
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
if (c >= 0) {
|
2011-11-25 20:17:20 +00:00
|
|
|
__out_buf[io->__written++] = __guac_socket_BASE64_CHARACTERS[((b & 0x0F) << 2) | ((c & 0xC0) >> 6)]; /* AAAAAA AABBBB[BBBBCC]CCCCCC */
|
|
|
|
__out_buf[io->__written++] = __guac_socket_BASE64_CHARACTERS[c & 0x3F]; /* AAAAAA AABBBB BBBBCC[CCCCCC] */
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
else {
|
2011-11-25 20:17:20 +00:00
|
|
|
__out_buf[io->__written++] = __guac_socket_BASE64_CHARACTERS[((b & 0x0F) << 2)]; /* AAAAAA AABBBB[BBBB--]------ */
|
2011-11-24 00:08:33 +00:00
|
|
|
__out_buf[io->__written++] = '='; /* AAAAAA AABBBB BBBB--[------] */
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2011-11-25 20:17:20 +00:00
|
|
|
__out_buf[io->__written++] = __guac_socket_BASE64_CHARACTERS[((a & 0x03) << 4)]; /* AAAAAA[AA----]------ ------ */
|
2011-11-24 00:08:33 +00:00
|
|
|
__out_buf[io->__written++] = '='; /* AAAAAA AA----[------]------ */
|
|
|
|
__out_buf[io->__written++] = '='; /* AAAAAA AA---- ------[------] */
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
/* At this point, 4 bytes have been io->__written */
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Flush when necessary, return on error */
|
2011-11-24 00:08:33 +00:00
|
|
|
if (io->__written > 8188 /* sizeof(__out_buf) - 4 */) {
|
2011-11-25 20:17:20 +00:00
|
|
|
retval = __guac_socket_write(io, __out_buf, io->__written);
|
2010-12-08 21:14:04 +00:00
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
io->__written = 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (b < 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (c < 0)
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
return 3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t __guac_socket_write_base64_byte(guac_socket* io, char buf) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
int* __ready_buf = io->__ready_buf;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
__ready_buf[io->__ready++] = buf & 0xFF;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Flush triplet */
|
2011-11-24 00:08:33 +00:00
|
|
|
if (io->__ready == 3) {
|
2011-11-25 20:17:20 +00:00
|
|
|
retval = __guac_socket_write_base64_triplet(io, __ready_buf[0], __ready_buf[1], __ready_buf[2]);
|
2010-12-08 21:14:04 +00:00
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
io->__ready = 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t guac_socket_write_base64(guac_socket* io, const void* buf, size_t count) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
const char* char_buf = (const char*) buf;
|
|
|
|
const char* end = char_buf + count;
|
|
|
|
|
|
|
|
while (char_buf < end) {
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
retval = __guac_socket_write_base64_byte(io, *(char_buf++));
|
2010-12-08 21:14:04 +00:00
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-09-10 07:36:51 +00:00
|
|
|
return 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t guac_socket_flush(guac_socket* io) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
/* Flush remaining bytes in buffer */
|
2011-11-24 00:08:33 +00:00
|
|
|
if (io->__written > 0) {
|
2011-11-25 20:17:20 +00:00
|
|
|
retval = __guac_socket_write(io, io->__out_buf, io->__written);
|
2010-12-08 21:14:04 +00:00
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
|
|
|
|
2011-11-24 00:08:33 +00:00
|
|
|
io->__written = 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
ssize_t guac_socket_flush_base64(guac_socket* io) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
/* Flush triplet to output buffer */
|
2011-11-24 00:08:33 +00:00
|
|
|
while (io->__ready > 0) {
|
2011-11-25 20:17:20 +00:00
|
|
|
retval = __guac_socket_write_base64_byte(io, -1);
|
2010-12-08 21:14:04 +00:00
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-25 20:17:20 +00:00
|
|
|
int guac_socket_select(guac_socket* io, int usec_timeout) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
fd_set fds;
|
|
|
|
struct timeval timeout;
|
2011-11-24 00:25:25 +00:00
|
|
|
int retval;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-24 00:25:25 +00:00
|
|
|
/* No timeout if usec_timeout is negative */
|
2010-12-08 21:14:04 +00:00
|
|
|
if (usec_timeout < 0)
|
2011-11-24 00:25:25 +00:00
|
|
|
retval = select(io->fd + 1, &fds, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
/* Handle timeout if specified */
|
|
|
|
else {
|
|
|
|
timeout.tv_sec = usec_timeout/1000000;
|
|
|
|
timeout.tv_usec = usec_timeout%1000000;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-24 00:25:25 +00:00
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(io->fd, &fds);
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-24 00:25:25 +00:00
|
|
|
retval = select(io->fd + 1, &fds, NULL, NULL, &timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Properly set guac_error */
|
2011-11-25 02:18:03 +00:00
|
|
|
if (retval < 0) guac_error = GUAC_STATUS_SEE_ERRNO;
|
2011-11-24 00:25:25 +00:00
|
|
|
if (retval == 0) guac_error = GUAC_STATUS_INPUT_TIMEOUT;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-24 00:25:25 +00:00
|
|
|
return retval;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|