2014-04-08 21:54:43 +00:00
|
|
|
/*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
* with the License. You may obtain a copy of the License at
|
2014-04-08 21:54:43 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-04-08 21:54:43 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2014-04-08 21:54:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2016-09-12 00:28:50 +00:00
|
|
|
#include "common/clipboard.h"
|
2014-04-08 21:54:43 +00:00
|
|
|
|
|
|
|
#include <guacamole/client.h>
|
|
|
|
#include <guacamole/protocol.h>
|
|
|
|
#include <guacamole/stream.h>
|
2016-03-01 05:38:51 +00:00
|
|
|
#include <guacamole/user.h>
|
2014-04-08 21:54:43 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
guac_common_clipboard* guac_common_clipboard_alloc(int size) {
|
|
|
|
|
|
|
|
guac_common_clipboard* clipboard = malloc(sizeof(guac_common_clipboard));
|
|
|
|
|
|
|
|
/* Init clipboard */
|
|
|
|
clipboard->mimetype[0] = '\0';
|
|
|
|
clipboard->buffer = malloc(size);
|
|
|
|
clipboard->length = 0;
|
|
|
|
clipboard->available = size;
|
|
|
|
|
|
|
|
return clipboard;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_common_clipboard_free(guac_common_clipboard* clipboard) {
|
|
|
|
free(clipboard->buffer);
|
|
|
|
free(clipboard);
|
|
|
|
}
|
|
|
|
|
2016-03-01 05:38:51 +00:00
|
|
|
/**
|
|
|
|
* Callback for guac_client_foreach_user() which sends clipboard data to each
|
|
|
|
* connected client.
|
2016-03-02 00:46:19 +00:00
|
|
|
*
|
|
|
|
* @param user
|
|
|
|
* The user to send the clipboard data to.
|
|
|
|
*
|
|
|
|
* @param
|
|
|
|
* A pointer to the guac_common_clipboard structure containing the
|
|
|
|
* clipboard data that should be sent to the given user.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* Always NULL.
|
2016-03-01 05:38:51 +00:00
|
|
|
*/
|
|
|
|
static void* __send_user_clipboard(guac_user* user, void* data) {
|
|
|
|
|
|
|
|
guac_common_clipboard* clipboard = (guac_common_clipboard*) data;
|
2014-04-08 21:54:43 +00:00
|
|
|
|
|
|
|
char* current = clipboard->buffer;
|
|
|
|
int remaining = clipboard->length;
|
|
|
|
|
|
|
|
/* Begin stream */
|
2016-03-01 05:38:51 +00:00
|
|
|
guac_stream* stream = guac_user_alloc_stream(user);
|
|
|
|
guac_protocol_send_clipboard(user->socket, stream, clipboard->mimetype);
|
2014-04-08 21:54:43 +00:00
|
|
|
|
2016-03-01 05:38:51 +00:00
|
|
|
guac_user_log(user, GUAC_LOG_DEBUG,
|
2014-11-10 04:44:49 +00:00
|
|
|
"Created stream %i for %s clipboard data.",
|
|
|
|
stream->index, clipboard->mimetype);
|
|
|
|
|
2014-04-08 21:54:43 +00:00
|
|
|
/* Split clipboard into chunks */
|
|
|
|
while (remaining > 0) {
|
|
|
|
|
|
|
|
/* Calculate size of next block */
|
|
|
|
int block_size = GUAC_COMMON_CLIPBOARD_BLOCK_SIZE;
|
|
|
|
if (remaining < block_size)
|
|
|
|
block_size = remaining;
|
|
|
|
|
|
|
|
/* Send block */
|
2016-03-01 05:38:51 +00:00
|
|
|
guac_protocol_send_blob(user->socket, stream, current, block_size);
|
|
|
|
guac_user_log(user, GUAC_LOG_DEBUG,
|
2014-11-10 04:44:49 +00:00
|
|
|
"Sent %i bytes of clipboard data on stream %i.",
|
|
|
|
block_size, stream->index);
|
2014-04-08 21:54:43 +00:00
|
|
|
|
|
|
|
/* Next block */
|
|
|
|
remaining -= block_size;
|
|
|
|
current += block_size;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-01 05:38:51 +00:00
|
|
|
guac_user_log(user, GUAC_LOG_DEBUG,
|
2014-11-10 04:44:49 +00:00
|
|
|
"Clipboard stream %i complete.",
|
|
|
|
stream->index);
|
|
|
|
|
2014-04-08 21:54:43 +00:00
|
|
|
/* End stream */
|
2016-03-01 05:38:51 +00:00
|
|
|
guac_protocol_send_end(user->socket, stream);
|
|
|
|
guac_user_free_stream(user, stream);
|
|
|
|
|
|
|
|
return NULL;
|
2014-04-08 21:54:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-01 05:38:51 +00:00
|
|
|
void guac_common_clipboard_send(guac_common_clipboard* clipboard, guac_client* client) {
|
|
|
|
guac_client_log(client, GUAC_LOG_DEBUG, "Broadcasting clipboard to all connected users.");
|
|
|
|
guac_client_foreach_user(client, __send_user_clipboard, clipboard);
|
|
|
|
guac_client_log(client, GUAC_LOG_DEBUG, "Broadcast of clipboard complete.");
|
|
|
|
}
|
|
|
|
|
2014-04-08 21:54:43 +00:00
|
|
|
void guac_common_clipboard_reset(guac_common_clipboard* clipboard, const char* mimetype) {
|
|
|
|
clipboard->length = 0;
|
|
|
|
strncpy(clipboard->mimetype, mimetype, sizeof(clipboard->mimetype)-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_common_clipboard_append(guac_common_clipboard* clipboard, const char* data, int length) {
|
|
|
|
|
|
|
|
/* Truncate data to available length */
|
|
|
|
int remaining = clipboard->available - clipboard->length;
|
|
|
|
if (remaining < length)
|
|
|
|
length = remaining;
|
|
|
|
|
|
|
|
/* Append to buffer */
|
|
|
|
memcpy(clipboard->buffer + clipboard->length, data, length);
|
|
|
|
|
|
|
|
/* Update length */
|
|
|
|
clipboard->length += length;
|
|
|
|
|
|
|
|
}
|
|
|
|
|