2013-12-29 04:53:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Glyptodon LLC
|
2012-05-15 10:28:45 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2011-03-26 04:58:46 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2011-03-26 04:58:46 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
2011-03-26 04:58:46 +00:00
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "client.h"
|
|
|
|
#include "guac_handlers.h"
|
2014-03-02 18:38:31 +00:00
|
|
|
#include "guac_list.h"
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "rdp_cliprdr.h"
|
|
|
|
#include "rdp_keymap.h"
|
2014-01-30 08:04:31 +00:00
|
|
|
#include "rdp_rail.h"
|
2014-03-04 00:18:14 +00:00
|
|
|
#include "rdp_stream.h"
|
2014-01-01 22:44:28 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
2012-10-31 08:05:43 +00:00
|
|
|
#include <pthread.h>
|
2011-03-26 05:49:48 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-03-28 02:04:05 +00:00
|
|
|
#include <sys/select.h>
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <freerdp/cache/cache.h>
|
2011-12-30 08:10:28 +00:00
|
|
|
#include <freerdp/channels/channels.h>
|
2012-03-22 17:27:57 +00:00
|
|
|
#include <freerdp/codec/color.h>
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/input.h>
|
2012-03-30 18:26:52 +00:00
|
|
|
#include <freerdp/utils/event.h>
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <guacamole/client.h>
|
|
|
|
#include <guacamole/error.h>
|
|
|
|
#include <guacamole/protocol.h>
|
|
|
|
#include <guacamole/socket.h>
|
2011-03-26 04:58:46 +00:00
|
|
|
|
2013-07-17 18:54:24 +00:00
|
|
|
#ifdef ENABLE_WINPR
|
|
|
|
#include <winpr/wtypes.h>
|
|
|
|
#else
|
|
|
|
#include "compat/winpr-wtypes.h"
|
|
|
|
#endif
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#ifdef HAVE_FREERDP_CLIENT_CLIPRDR_H
|
|
|
|
#include <freerdp/client/cliprdr.h>
|
|
|
|
#else
|
|
|
|
#include "compat/client-cliprdr.h"
|
|
|
|
#endif
|
2011-03-26 05:49:48 +00:00
|
|
|
|
2014-01-30 08:08:49 +00:00
|
|
|
#ifdef LEGACY_FREERDP
|
|
|
|
#include "compat/rail.h"
|
|
|
|
#endif
|
|
|
|
|
2012-03-21 03:03:51 +00:00
|
|
|
void __guac_rdp_update_keysyms(guac_client* client, const int* keysym_string, int from, int to);
|
2012-03-21 02:26:23 +00:00
|
|
|
int __guac_rdp_send_keysym(guac_client* client, int keysym, int pressed);
|
|
|
|
|
2011-03-26 05:59:39 +00:00
|
|
|
int rdp_guac_client_free_handler(guac_client* client) {
|
|
|
|
|
2012-03-22 17:27:57 +00:00
|
|
|
rdp_guac_client_data* guac_client_data =
|
|
|
|
(rdp_guac_client_data*) client->data;
|
|
|
|
|
|
|
|
freerdp* rdp_inst = guac_client_data->rdp_inst;
|
|
|
|
rdpChannels* channels = rdp_inst->context->channels;
|
|
|
|
|
|
|
|
/* Clean up RDP client */
|
|
|
|
freerdp_channels_close(channels, rdp_inst);
|
|
|
|
freerdp_channels_free(channels);
|
|
|
|
freerdp_disconnect(rdp_inst);
|
|
|
|
freerdp_clrconv_free(((rdp_freerdp_context*) rdp_inst->context)->clrconv);
|
|
|
|
cache_free(rdp_inst->context->cache);
|
|
|
|
freerdp_free(rdp_inst);
|
2011-03-26 05:59:39 +00:00
|
|
|
|
2013-11-04 08:50:10 +00:00
|
|
|
/* Clean up filesystem, if allocated */
|
|
|
|
if (guac_client_data->filesystem != NULL)
|
|
|
|
guac_rdp_fs_free(guac_client_data->filesystem);
|
|
|
|
|
2014-03-02 19:24:06 +00:00
|
|
|
/* Free SVC list */
|
2014-03-02 18:38:31 +00:00
|
|
|
guac_common_list_free(guac_client_data->available_svc);
|
|
|
|
|
2012-03-22 17:27:57 +00:00
|
|
|
/* Free client data */
|
2014-04-08 22:06:48 +00:00
|
|
|
guac_common_clipboard_free(guac_client_data->clipboard);
|
2012-05-04 20:37:32 +00:00
|
|
|
cairo_surface_destroy(guac_client_data->opaque_glyph_surface);
|
|
|
|
cairo_surface_destroy(guac_client_data->trans_glyph_surface);
|
2012-03-22 17:27:57 +00:00
|
|
|
free(guac_client_data);
|
2011-03-26 05:59:39 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-07-28 18:47:04 +00:00
|
|
|
static int rdp_guac_client_wait_for_messages(guac_client* client, int timeout_usecs) {
|
2011-03-28 02:04:05 +00:00
|
|
|
|
|
|
|
rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
|
2012-01-03 08:24:03 +00:00
|
|
|
freerdp* rdp_inst = guac_client_data->rdp_inst;
|
2012-01-03 09:01:33 +00:00
|
|
|
rdpChannels* channels = rdp_inst->context->channels;
|
2011-03-28 02:04:05 +00:00
|
|
|
|
2013-07-28 18:47:04 +00:00
|
|
|
int result;
|
2011-03-28 02:04:05 +00:00
|
|
|
int index;
|
|
|
|
int max_fd, fd;
|
|
|
|
void* read_fds[32];
|
|
|
|
void* write_fds[32];
|
|
|
|
int read_count = 0;
|
|
|
|
int write_count = 0;
|
|
|
|
fd_set rfds, wfds;
|
|
|
|
|
2012-03-05 20:10:03 +00:00
|
|
|
struct timeval timeout = {
|
2013-07-28 18:47:04 +00:00
|
|
|
.tv_sec = 0,
|
|
|
|
.tv_usec = timeout_usecs
|
2012-03-05 20:10:03 +00:00
|
|
|
};
|
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
/* Get RDP fds */
|
2012-01-03 21:20:24 +00:00
|
|
|
if (!freerdp_get_fds(rdp_inst, read_fds, &read_count, write_fds, &write_count)) {
|
2014-03-22 21:56:09 +00:00
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR, "Unable to read RDP file descriptors.");
|
2013-07-28 18:47:04 +00:00
|
|
|
return -1;
|
2011-03-28 02:04:05 +00:00
|
|
|
}
|
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
/* Get channel fds */
|
2013-07-28 18:47:04 +00:00
|
|
|
if (!freerdp_channels_get_fds(channels, rdp_inst, read_fds, &read_count, write_fds,
|
|
|
|
&write_count)) {
|
2014-03-22 21:56:09 +00:00
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR, "Unable to read RDP channel file descriptors.");
|
2013-07-28 18:47:04 +00:00
|
|
|
return -1;
|
2011-03-28 02:04:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Construct read fd_set */
|
|
|
|
max_fd = 0;
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
for (index = 0; index < read_count; index++) {
|
|
|
|
fd = (int)(long) (read_fds[index]);
|
|
|
|
if (fd > max_fd)
|
|
|
|
max_fd = fd;
|
|
|
|
FD_SET(fd, &rfds);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Construct write fd_set */
|
|
|
|
FD_ZERO(&wfds);
|
|
|
|
for (index = 0; index < write_count; index++) {
|
|
|
|
fd = (int)(long) (write_fds[index]);
|
|
|
|
if (fd > max_fd)
|
|
|
|
max_fd = fd;
|
|
|
|
FD_SET(fd, &wfds);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no file descriptors, error */
|
|
|
|
if (max_fd == 0) {
|
2014-03-22 21:56:09 +00:00
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR, "No file descriptors associated with RDP connection.");
|
2013-07-28 18:47:04 +00:00
|
|
|
return -1;
|
2011-03-28 02:04:05 +00:00
|
|
|
}
|
|
|
|
|
2013-07-28 18:47:04 +00:00
|
|
|
/* Wait for all RDP file descriptors */
|
|
|
|
result = select(max_fd + 1, &rfds, &wfds, NULL, &timeout);
|
|
|
|
if (result < 0) {
|
|
|
|
|
|
|
|
/* If error ignorable, pretend timout occurred */
|
|
|
|
if (errno == EAGAIN
|
|
|
|
|| errno == EWOULDBLOCK
|
|
|
|
|| errno == EINPROGRESS
|
|
|
|
|| errno == EINTR)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Otherwise, return as error */
|
2014-03-22 21:56:09 +00:00
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR, "Error waiting for file descriptor.");
|
2013-07-28 18:47:04 +00:00
|
|
|
return -1;
|
|
|
|
|
2011-03-28 02:04:05 +00:00
|
|
|
}
|
|
|
|
|
2013-07-28 18:47:04 +00:00
|
|
|
/* Return wait result */
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int rdp_guac_client_handle_messages(guac_client* client) {
|
|
|
|
|
|
|
|
rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
|
|
|
|
freerdp* rdp_inst = guac_client_data->rdp_inst;
|
|
|
|
rdpChannels* channels = rdp_inst->context->channels;
|
|
|
|
wMessage* event;
|
|
|
|
|
|
|
|
/* Wait for messages */
|
|
|
|
int wait_result = rdp_guac_client_wait_for_messages(client, 250000);
|
2013-08-20 18:32:47 +00:00
|
|
|
guac_timestamp frame_start = guac_timestamp_current();
|
2013-07-28 18:47:04 +00:00
|
|
|
while (wait_result > 0) {
|
2012-11-27 18:51:26 +00:00
|
|
|
|
2013-08-20 18:32:47 +00:00
|
|
|
guac_timestamp frame_end;
|
|
|
|
int frame_remaining;
|
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
pthread_mutex_lock(&(guac_client_data->rdp_lock));
|
2011-03-28 02:04:05 +00:00
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
/* Check the libfreerdp fds */
|
|
|
|
if (!freerdp_check_fds(rdp_inst)) {
|
|
|
|
guac_error = GUAC_STATUS_BAD_STATE;
|
|
|
|
guac_error_message = "Error handling RDP file descriptors";
|
2013-07-28 18:30:17 +00:00
|
|
|
pthread_mutex_unlock(&(guac_client_data->rdp_lock));
|
2013-05-14 01:38:13 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check channel fds */
|
|
|
|
if (!freerdp_channels_check_fds(channels, rdp_inst)) {
|
|
|
|
guac_error = GUAC_STATUS_BAD_STATE;
|
|
|
|
guac_error_message = "Error handling RDP channel file descriptors";
|
2013-07-28 18:30:17 +00:00
|
|
|
pthread_mutex_unlock(&(guac_client_data->rdp_lock));
|
2013-05-14 01:38:13 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-03-30 18:26:52 +00:00
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
/* Check for channel events */
|
|
|
|
event = freerdp_channels_pop_event(channels);
|
|
|
|
if (event) {
|
2012-03-30 18:26:52 +00:00
|
|
|
|
2014-01-30 08:04:31 +00:00
|
|
|
/* Handle channel events (clipboard and RAIL) */
|
2013-07-18 18:54:22 +00:00
|
|
|
#ifdef LEGACY_EVENT
|
2013-05-14 01:38:13 +00:00
|
|
|
if (event->event_class == CliprdrChannel_Class)
|
|
|
|
guac_rdp_process_cliprdr_event(client, event);
|
2014-01-30 08:04:31 +00:00
|
|
|
else if (event->event_class == RailChannel_Class)
|
|
|
|
guac_rdp_process_rail_event(client, event);
|
2013-07-18 18:54:22 +00:00
|
|
|
#else
|
2013-05-14 01:38:13 +00:00
|
|
|
if (GetMessageClass(event->id) == CliprdrChannel_Class)
|
|
|
|
guac_rdp_process_cliprdr_event(client, event);
|
2014-01-30 08:04:31 +00:00
|
|
|
else if (GetMessageClass(event->id) == RailChannel_Class)
|
|
|
|
guac_rdp_process_rail_event(client, event);
|
2013-07-18 18:54:22 +00:00
|
|
|
#endif
|
2012-03-30 18:26:52 +00:00
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
freerdp_event_free(event);
|
2012-03-30 18:26:52 +00:00
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
}
|
2011-03-28 02:04:05 +00:00
|
|
|
|
2013-05-14 01:38:13 +00:00
|
|
|
/* Handle RDP disconnect */
|
|
|
|
if (freerdp_shall_disconnect(rdp_inst)) {
|
|
|
|
guac_error = GUAC_STATUS_NO_INPUT;
|
|
|
|
guac_error_message = "RDP server closed connection";
|
2013-07-28 18:30:17 +00:00
|
|
|
pthread_mutex_unlock(&(guac_client_data->rdp_lock));
|
2013-05-14 01:38:13 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-03-26 04:46:20 +00:00
|
|
|
|
2013-07-28 18:30:17 +00:00
|
|
|
pthread_mutex_unlock(&(guac_client_data->rdp_lock));
|
2013-08-20 18:32:47 +00:00
|
|
|
|
|
|
|
/* Calculate time remaining in frame */
|
|
|
|
frame_end = guac_timestamp_current();
|
|
|
|
frame_remaining = frame_start + GUAC_RDP_FRAME_DURATION - frame_end;
|
|
|
|
|
|
|
|
/* Wait again if frame remaining */
|
|
|
|
if (frame_remaining > 0)
|
|
|
|
wait_result = rdp_guac_client_wait_for_messages(client,
|
2013-08-21 04:13:26 +00:00
|
|
|
GUAC_RDP_FRAME_TIMEOUT*1000);
|
2013-08-20 18:32:47 +00:00
|
|
|
else
|
|
|
|
break;
|
2013-07-28 18:30:17 +00:00
|
|
|
|
2013-07-28 18:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If an error occurred, fail */
|
2014-03-22 21:56:09 +00:00
|
|
|
if (wait_result < 0)
|
2013-07-28 18:47:04 +00:00
|
|
|
return 1;
|
2012-10-29 18:12:49 +00:00
|
|
|
|
2011-03-28 02:04:05 +00:00
|
|
|
/* Success */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-07-21 22:17:16 +00:00
|
|
|
int rdp_guac_client_mouse_handler(guac_client* client, int x, int y, int mask) {
|
|
|
|
|
|
|
|
rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
|
2012-01-03 08:24:03 +00:00
|
|
|
freerdp* rdp_inst = guac_client_data->rdp_inst;
|
2011-07-21 22:17:16 +00:00
|
|
|
|
2012-11-01 04:52:16 +00:00
|
|
|
pthread_mutex_lock(&(guac_client_data->rdp_lock));
|
|
|
|
|
2011-07-25 21:57:40 +00:00
|
|
|
/* If button mask unchanged, just send move event */
|
|
|
|
if (mask == guac_client_data->mouse_button_mask)
|
2012-01-03 08:24:03 +00:00
|
|
|
rdp_inst->input->MouseEvent(rdp_inst->input, PTR_FLAGS_MOVE, x, y);
|
2011-07-21 22:17:16 +00:00
|
|
|
|
2011-07-25 21:57:40 +00:00
|
|
|
/* Otherwise, send events describing button change */
|
|
|
|
else {
|
2011-07-21 22:17:16 +00:00
|
|
|
|
2011-07-27 17:06:12 +00:00
|
|
|
/* Mouse buttons which have JUST become released */
|
|
|
|
int released_mask = guac_client_data->mouse_button_mask & ~mask;
|
|
|
|
|
|
|
|
/* Mouse buttons which have JUST become pressed */
|
|
|
|
int pressed_mask = ~guac_client_data->mouse_button_mask & mask;
|
|
|
|
|
2011-07-25 21:57:40 +00:00
|
|
|
/* Release event */
|
2011-07-27 17:06:12 +00:00
|
|
|
if (released_mask & 0x07) {
|
|
|
|
|
|
|
|
/* Calculate flags */
|
|
|
|
int flags = 0;
|
2011-12-30 08:10:28 +00:00
|
|
|
if (released_mask & 0x01) flags |= PTR_FLAGS_BUTTON1;
|
|
|
|
if (released_mask & 0x02) flags |= PTR_FLAGS_BUTTON3;
|
|
|
|
if (released_mask & 0x04) flags |= PTR_FLAGS_BUTTON2;
|
2011-07-27 17:06:12 +00:00
|
|
|
|
2012-01-03 08:24:03 +00:00
|
|
|
rdp_inst->input->MouseEvent(rdp_inst->input, flags, x, y);
|
2011-07-27 17:06:12 +00:00
|
|
|
|
|
|
|
}
|
2011-07-21 22:17:16 +00:00
|
|
|
|
2011-07-25 21:57:40 +00:00
|
|
|
/* Press event */
|
2011-07-27 17:06:12 +00:00
|
|
|
if (pressed_mask & 0x07) {
|
|
|
|
|
|
|
|
/* Calculate flags */
|
2011-12-30 08:10:28 +00:00
|
|
|
int flags = PTR_FLAGS_DOWN;
|
|
|
|
if (pressed_mask & 0x01) flags |= PTR_FLAGS_BUTTON1;
|
|
|
|
if (pressed_mask & 0x02) flags |= PTR_FLAGS_BUTTON3;
|
|
|
|
if (pressed_mask & 0x04) flags |= PTR_FLAGS_BUTTON2;
|
|
|
|
if (pressed_mask & 0x08) flags |= PTR_FLAGS_WHEEL | 0x78;
|
|
|
|
if (pressed_mask & 0x10) flags |= PTR_FLAGS_WHEEL | PTR_FLAGS_WHEEL_NEGATIVE | 0x88;
|
2011-07-27 17:06:12 +00:00
|
|
|
|
|
|
|
/* Send event */
|
2012-01-03 08:24:03 +00:00
|
|
|
rdp_inst->input->MouseEvent(rdp_inst->input, flags, x, y);
|
2011-07-27 17:06:12 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Scroll event */
|
|
|
|
if (pressed_mask & 0x18) {
|
|
|
|
|
|
|
|
/* Down */
|
|
|
|
if (pressed_mask & 0x08)
|
2012-01-03 08:24:03 +00:00
|
|
|
rdp_inst->input->MouseEvent(
|
|
|
|
rdp_inst->input,
|
2011-12-30 08:10:28 +00:00
|
|
|
PTR_FLAGS_WHEEL | 0x78,
|
2011-07-27 17:06:12 +00:00
|
|
|
x, y);
|
|
|
|
|
|
|
|
/* Up */
|
|
|
|
if (pressed_mask & 0x10)
|
2012-01-03 08:24:03 +00:00
|
|
|
rdp_inst->input->MouseEvent(
|
|
|
|
rdp_inst->input,
|
2011-12-30 08:10:28 +00:00
|
|
|
PTR_FLAGS_WHEEL | PTR_FLAGS_WHEEL_NEGATIVE | 0x88,
|
2011-07-27 17:06:12 +00:00
|
|
|
x, y);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-07-25 21:57:40 +00:00
|
|
|
guac_client_data->mouse_button_mask = mask;
|
|
|
|
}
|
2011-07-21 22:17:16 +00:00
|
|
|
|
2012-11-01 04:52:16 +00:00
|
|
|
pthread_mutex_unlock(&(guac_client_data->rdp_lock));
|
|
|
|
|
2011-07-21 22:17:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-07-24 07:47:38 +00:00
|
|
|
|
2012-03-21 02:26:23 +00:00
|
|
|
int __guac_rdp_send_keysym(guac_client* client, int keysym, int pressed) {
|
2011-07-24 07:47:38 +00:00
|
|
|
|
|
|
|
rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
|
2012-01-03 08:24:03 +00:00
|
|
|
freerdp* rdp_inst = guac_client_data->rdp_inst;
|
2011-07-24 07:47:38 +00:00
|
|
|
|
|
|
|
/* If keysym can be in lookup table */
|
2013-05-09 01:24:46 +00:00
|
|
|
if (GUAC_RDP_KEYSYM_STORABLE(keysym)) {
|
2011-07-24 07:47:38 +00:00
|
|
|
|
2013-12-29 02:20:51 +00:00
|
|
|
int pressed_flags;
|
|
|
|
|
2012-03-20 22:33:08 +00:00
|
|
|
/* Look up scancode mapping */
|
2012-03-21 17:45:40 +00:00
|
|
|
const guac_rdp_keysym_desc* keysym_desc =
|
|
|
|
&GUAC_RDP_KEYSYM_LOOKUP(guac_client_data->keymap, keysym);
|
2011-07-24 07:47:38 +00:00
|
|
|
|
|
|
|
/* If defined, send event */
|
2012-03-21 17:45:40 +00:00
|
|
|
if (keysym_desc->scancode != 0) {
|
2012-03-21 01:57:35 +00:00
|
|
|
|
2012-11-01 04:52:16 +00:00
|
|
|
pthread_mutex_lock(&(guac_client_data->rdp_lock));
|
|
|
|
|
2012-03-21 03:03:51 +00:00
|
|
|
/* If defined, send any prerequesite keys that must be set */
|
2012-03-21 17:45:40 +00:00
|
|
|
if (keysym_desc->set_keysyms != NULL)
|
|
|
|
__guac_rdp_update_keysyms(client, keysym_desc->set_keysyms, 0, 1);
|
2012-03-21 03:03:51 +00:00
|
|
|
|
|
|
|
/* If defined, release any keys that must be cleared */
|
2012-03-21 17:45:40 +00:00
|
|
|
if (keysym_desc->clear_keysyms != NULL)
|
|
|
|
__guac_rdp_update_keysyms(client, keysym_desc->clear_keysyms, 1, 0);
|
2012-03-21 01:57:35 +00:00
|
|
|
|
2013-12-29 02:20:51 +00:00
|
|
|
/* Determine proper event flag for pressed state */
|
|
|
|
if (pressed)
|
|
|
|
pressed_flags = KBD_FLAGS_DOWN;
|
|
|
|
else
|
|
|
|
pressed_flags = KBD_FLAGS_RELEASE;
|
|
|
|
|
2012-03-21 01:57:35 +00:00
|
|
|
/* Send actual key */
|
2013-12-29 02:20:51 +00:00
|
|
|
rdp_inst->input->KeyboardEvent(rdp_inst->input, keysym_desc->flags | pressed_flags,
|
2012-05-15 10:02:28 +00:00
|
|
|
keysym_desc->scancode);
|
2012-05-01 08:59:50 +00:00
|
|
|
|
2012-03-21 03:03:51 +00:00
|
|
|
/* If defined, release any keys that were originally released */
|
2012-03-21 17:45:40 +00:00
|
|
|
if (keysym_desc->set_keysyms != NULL)
|
|
|
|
__guac_rdp_update_keysyms(client, keysym_desc->set_keysyms, 0, 0);
|
2012-03-21 03:03:51 +00:00
|
|
|
|
|
|
|
/* If defined, send any keys that were originally set */
|
2012-03-21 17:45:40 +00:00
|
|
|
if (keysym_desc->clear_keysyms != NULL)
|
|
|
|
__guac_rdp_update_keysyms(client, keysym_desc->clear_keysyms, 1, 1);
|
2012-03-21 01:57:35 +00:00
|
|
|
|
2012-11-01 04:52:16 +00:00
|
|
|
pthread_mutex_unlock(&(guac_client_data->rdp_lock));
|
|
|
|
|
2012-05-16 08:26:09 +00:00
|
|
|
return 0;
|
2012-03-21 01:57:35 +00:00
|
|
|
|
2012-05-16 08:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
2012-05-01 08:59:50 +00:00
|
|
|
|
2012-05-16 08:26:09 +00:00
|
|
|
/* Fall back to unicode events if undefined inside current keymap */
|
|
|
|
|
2012-05-16 17:29:43 +00:00
|
|
|
/* Only send when key pressed - Unicode events do not have
|
|
|
|
* DOWN/RELEASE flags */
|
2012-05-16 08:26:09 +00:00
|
|
|
if (pressed) {
|
|
|
|
|
|
|
|
/* Translate keysym into codepoint */
|
|
|
|
int codepoint;
|
|
|
|
if (keysym <= 0xFF)
|
|
|
|
codepoint = keysym;
|
2012-05-16 17:29:43 +00:00
|
|
|
else if (keysym >= 0x1000000)
|
2012-05-16 08:26:09 +00:00
|
|
|
codepoint = keysym & 0xFFFFFF;
|
2012-05-16 17:29:43 +00:00
|
|
|
else {
|
|
|
|
guac_client_log_info(client,
|
|
|
|
"Unmapped keysym has no equivalent unicode "
|
|
|
|
"value: 0x%x", keysym);
|
|
|
|
return 0;
|
|
|
|
}
|
2012-05-16 08:26:09 +00:00
|
|
|
|
2012-11-01 04:52:16 +00:00
|
|
|
pthread_mutex_lock(&(guac_client_data->rdp_lock));
|
|
|
|
|
2012-05-16 08:26:09 +00:00
|
|
|
/* Send Unicode event */
|
|
|
|
rdp_inst->input->UnicodeKeyboardEvent(
|
|
|
|
rdp_inst->input,
|
|
|
|
0, codepoint);
|
2012-11-01 04:52:16 +00:00
|
|
|
|
|
|
|
pthread_mutex_unlock(&(guac_client_data->rdp_lock));
|
|
|
|
|
2012-05-16 08:26:09 +00:00
|
|
|
}
|
|
|
|
|
2011-07-24 07:47:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-21 03:03:51 +00:00
|
|
|
void __guac_rdp_update_keysyms(guac_client* client, const int* keysym_string, int from, int to) {
|
|
|
|
|
|
|
|
rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
|
|
|
|
int keysym;
|
2012-03-21 02:26:23 +00:00
|
|
|
|
|
|
|
/* Send all keysyms in string, NULL terminated */
|
2012-03-21 03:03:51 +00:00
|
|
|
while ((keysym = *keysym_string) != 0) {
|
|
|
|
|
|
|
|
/* Get current keysym state */
|
|
|
|
int current_state = GUAC_RDP_KEYSYM_LOOKUP(guac_client_data->keysym_state, keysym);
|
|
|
|
|
|
|
|
/* If key is currently in given state, send event for changing it to specified "to" state */
|
|
|
|
if (current_state == from)
|
|
|
|
__guac_rdp_send_keysym(client, *keysym_string, to);
|
|
|
|
|
2012-03-21 03:10:22 +00:00
|
|
|
/* Next keysym */
|
|
|
|
keysym_string++;
|
|
|
|
|
2012-03-21 03:03:51 +00:00
|
|
|
}
|
2012-03-21 02:26:23 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int rdp_guac_client_key_handler(guac_client* client, int keysym, int pressed) {
|
|
|
|
|
2012-03-21 02:47:41 +00:00
|
|
|
rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
|
|
|
|
|
|
|
|
/* Update keysym state */
|
2013-05-09 01:24:46 +00:00
|
|
|
if (GUAC_RDP_KEYSYM_STORABLE(keysym))
|
|
|
|
GUAC_RDP_KEYSYM_LOOKUP(guac_client_data->keysym_state, keysym) = pressed;
|
2012-03-21 02:47:41 +00:00
|
|
|
|
|
|
|
return __guac_rdp_send_keysym(client, keysym, pressed);
|
2012-03-21 02:26:23 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-08 02:22:53 +00:00
|
|
|
int rdp_guac_client_clipboard_handler(guac_client* client, guac_stream* stream,
|
|
|
|
char* mimetype) {
|
2012-04-30 06:28:29 +00:00
|
|
|
|
2014-04-08 02:22:53 +00:00
|
|
|
return guac_rdp_clipboard_handler(client, stream, mimetype);
|
|
|
|
|
2012-04-30 06:28:29 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 21:13:56 +00:00
|
|
|
int rdp_guac_client_file_handler(guac_client* client, guac_stream* stream,
|
|
|
|
char* mimetype, char* filename) {
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* All inbound files are file uploads */
|
|
|
|
return guac_rdp_upload_file_handler(client, stream, mimetype, filename);
|
2014-03-02 19:52:36 +00:00
|
|
|
|
2013-10-15 21:13:56 +00:00
|
|
|
}
|
|
|
|
|
2014-03-02 20:06:08 +00:00
|
|
|
int rdp_guac_client_pipe_handler(guac_client* client, guac_stream* stream,
|
|
|
|
char* mimetype, char* name) {
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* All inbound pipes are SVC-related */
|
|
|
|
return guac_rdp_svc_pipe_handler(client, stream, mimetype, name);
|
2014-03-02 20:06:08 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:13:56 +00:00
|
|
|
int rdp_guac_client_blob_handler(guac_client* client, guac_stream* stream,
|
|
|
|
void* data, int length) {
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-02 19:52:36 +00:00
|
|
|
guac_rdp_stream* rdp_stream = (guac_rdp_stream*) stream->data;
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Handle based on stream type */
|
|
|
|
switch (rdp_stream->type) {
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Inbound file stream */
|
|
|
|
case GUAC_RDP_UPLOAD_STREAM:
|
|
|
|
return guac_rdp_upload_blob_handler(client, stream, data, length);
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* SVC stream */
|
|
|
|
case GUAC_RDP_INBOUND_SVC_STREAM:
|
|
|
|
return guac_rdp_svc_blob_handler(client, stream, data, length);
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-04-08 02:22:53 +00:00
|
|
|
/* Clipboard stream */
|
|
|
|
case GUAC_RDP_INBOUND_CLIPBOARD_STREAM:
|
|
|
|
return guac_rdp_clipboard_blob_handler(client, stream, data, length);
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Other streams do not accept blobs */
|
|
|
|
default:
|
|
|
|
guac_protocol_send_ack(client->socket, stream,
|
|
|
|
"FAIL (BLOB NOT EXPECTED)",
|
2014-03-18 19:26:01 +00:00
|
|
|
GUAC_PROTOCOL_STATUS_CLIENT_BAD_REQUEST);
|
2014-03-02 19:52:36 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
guac_socket_flush(client->socket);
|
|
|
|
return 0;
|
2014-03-02 20:15:17 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
}
|
2014-03-02 19:52:36 +00:00
|
|
|
|
2013-10-15 21:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int rdp_guac_client_end_handler(guac_client* client, guac_stream* stream) {
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-02 19:52:36 +00:00
|
|
|
guac_rdp_stream* rdp_stream = (guac_rdp_stream*) stream->data;
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Handle based on stream type */
|
|
|
|
switch (rdp_stream->type) {
|
|
|
|
|
|
|
|
/* Inbound file stream */
|
|
|
|
case GUAC_RDP_UPLOAD_STREAM:
|
|
|
|
return guac_rdp_upload_end_handler(client, stream);
|
|
|
|
|
2014-04-08 02:22:53 +00:00
|
|
|
/* Clipboard stream */
|
|
|
|
case GUAC_RDP_INBOUND_CLIPBOARD_STREAM:
|
|
|
|
return guac_rdp_clipboard_end_handler(client, stream);
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Other streams do not accept explicit closure */
|
|
|
|
default:
|
|
|
|
guac_protocol_send_ack(client->socket, stream,
|
|
|
|
"FAIL (END NOT EXPECTED)",
|
2014-03-18 19:26:01 +00:00
|
|
|
GUAC_PROTOCOL_STATUS_CLIENT_BAD_REQUEST);
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-02 19:52:36 +00:00
|
|
|
guac_socket_flush(client->socket);
|
|
|
|
return 0;
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2014-03-02 19:52:36 +00:00
|
|
|
}
|
2013-11-04 09:28:27 +00:00
|
|
|
|
2013-10-15 21:13:56 +00:00
|
|
|
}
|
|
|
|
|
2013-11-12 19:46:32 +00:00
|
|
|
int rdp_guac_client_ack_handler(guac_client* client, guac_stream* stream,
|
|
|
|
char* message, guac_protocol_status status) {
|
|
|
|
|
2014-03-02 19:52:36 +00:00
|
|
|
guac_rdp_stream* rdp_stream = (guac_rdp_stream*) stream->data;
|
2013-11-12 19:46:32 +00:00
|
|
|
|
2013-11-12 20:06:23 +00:00
|
|
|
/* Ignore acks for non-download stream data */
|
2014-03-02 19:52:36 +00:00
|
|
|
if (rdp_stream == NULL)
|
2013-11-12 20:06:23 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Handle other acks based on stream type */
|
|
|
|
switch (rdp_stream->type) {
|
2013-11-12 19:46:32 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Inbound file stream */
|
|
|
|
case GUAC_RDP_DOWNLOAD_STREAM:
|
|
|
|
return guac_rdp_download_ack_handler(
|
|
|
|
client, stream, message, status);
|
2013-11-12 19:46:32 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/* Ignore acks on all other streams */
|
|
|
|
default:
|
|
|
|
return 0;
|
2013-11-12 19:46:32 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|