2016-03-01 05:50:00 +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
|
2016-03-01 05:50:00 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-03-01 05:50:00 +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.
|
2016-03-01 05:50:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "client.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "rdp.h"
|
2016-03-16 04:23:19 +00:00
|
|
|
#include "rdp_disp.h"
|
2016-03-01 05:50:00 +00:00
|
|
|
#include "rdp_keymap.h"
|
|
|
|
|
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/input.h>
|
|
|
|
#include <guacamole/client.h>
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int guac_rdp_send_keysym(guac_client* client, int keysym, int pressed) {
|
|
|
|
|
|
|
|
guac_rdp_client* rdp_client = (guac_rdp_client*) client->data;
|
|
|
|
|
|
|
|
/* If keysym can be in lookup table */
|
|
|
|
if (GUAC_RDP_KEYSYM_STORABLE(keysym)) {
|
|
|
|
|
|
|
|
int pressed_flags;
|
|
|
|
|
|
|
|
/* Look up scancode mapping */
|
|
|
|
const guac_rdp_keysym_desc* keysym_desc =
|
|
|
|
&GUAC_RDP_KEYSYM_LOOKUP(rdp_client->keymap, keysym);
|
|
|
|
|
|
|
|
/* If defined, send event */
|
|
|
|
if (keysym_desc->scancode != 0) {
|
|
|
|
|
|
|
|
pthread_mutex_lock(&(rdp_client->rdp_lock));
|
|
|
|
|
|
|
|
/* If defined, send any prerequesite keys that must be set */
|
|
|
|
if (keysym_desc->set_keysyms != NULL)
|
|
|
|
guac_rdp_update_keysyms(client, keysym_desc->set_keysyms, 0, 1);
|
|
|
|
|
|
|
|
/* If defined, release any keys that must be cleared */
|
|
|
|
if (keysym_desc->clear_keysyms != NULL)
|
|
|
|
guac_rdp_update_keysyms(client, keysym_desc->clear_keysyms, 1, 0);
|
|
|
|
|
|
|
|
/* Determine proper event flag for pressed state */
|
|
|
|
if (pressed)
|
|
|
|
pressed_flags = KBD_FLAGS_DOWN;
|
|
|
|
else
|
|
|
|
pressed_flags = KBD_FLAGS_RELEASE;
|
|
|
|
|
2016-03-16 04:23:19 +00:00
|
|
|
/* Skip if not yet connected */
|
|
|
|
freerdp* rdp_inst = rdp_client->rdp_inst;
|
|
|
|
if (rdp_inst == NULL) {
|
|
|
|
pthread_mutex_unlock(&(rdp_client->rdp_lock));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-01 05:50:00 +00:00
|
|
|
/* Send actual key */
|
|
|
|
rdp_inst->input->KeyboardEvent(rdp_inst->input, keysym_desc->flags | pressed_flags,
|
|
|
|
keysym_desc->scancode);
|
|
|
|
|
|
|
|
/* If defined, release any keys that were originally released */
|
|
|
|
if (keysym_desc->set_keysyms != NULL)
|
|
|
|
guac_rdp_update_keysyms(client, keysym_desc->set_keysyms, 0, 0);
|
|
|
|
|
|
|
|
/* If defined, send any keys that were originally set */
|
|
|
|
if (keysym_desc->clear_keysyms != NULL)
|
|
|
|
guac_rdp_update_keysyms(client, keysym_desc->clear_keysyms, 1, 1);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&(rdp_client->rdp_lock));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fall back to unicode events if undefined inside current keymap */
|
|
|
|
|
|
|
|
/* Only send when key pressed - Unicode events do not have
|
|
|
|
* DOWN/RELEASE flags */
|
|
|
|
if (pressed) {
|
|
|
|
|
|
|
|
guac_client_log(client, GUAC_LOG_DEBUG,
|
|
|
|
"Sending keysym 0x%x as Unicode", keysym);
|
|
|
|
|
|
|
|
/* Translate keysym into codepoint */
|
|
|
|
int codepoint;
|
|
|
|
if (keysym <= 0xFF)
|
|
|
|
codepoint = keysym;
|
|
|
|
else if (keysym >= 0x1000000)
|
|
|
|
codepoint = keysym & 0xFFFFFF;
|
|
|
|
else {
|
|
|
|
guac_client_log(client, GUAC_LOG_DEBUG,
|
|
|
|
"Unmapped keysym has no equivalent unicode "
|
|
|
|
"value: 0x%x", keysym);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_lock(&(rdp_client->rdp_lock));
|
|
|
|
|
2016-03-16 04:23:19 +00:00
|
|
|
/* Skip if not yet connected */
|
|
|
|
freerdp* rdp_inst = rdp_client->rdp_inst;
|
|
|
|
if (rdp_inst == NULL) {
|
|
|
|
pthread_mutex_unlock(&(rdp_client->rdp_lock));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-01 05:50:00 +00:00
|
|
|
/* Send Unicode event */
|
|
|
|
rdp_inst->input->UnicodeKeyboardEvent(
|
|
|
|
rdp_inst->input,
|
|
|
|
0, codepoint);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&(rdp_client->rdp_lock));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_rdp_update_keysyms(guac_client* client, const int* keysym_string, int from, int to) {
|
|
|
|
|
|
|
|
guac_rdp_client* rdp_client = (guac_rdp_client*) client->data;
|
|
|
|
int keysym;
|
|
|
|
|
|
|
|
/* Send all keysyms in string, NULL terminated */
|
|
|
|
while ((keysym = *keysym_string) != 0) {
|
|
|
|
|
|
|
|
/* Get current keysym state */
|
|
|
|
int current_state = GUAC_RDP_KEYSYM_LOOKUP(rdp_client->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);
|
|
|
|
|
|
|
|
/* Next keysym */
|
|
|
|
keysym_string++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int guac_rdp_user_mouse_handler(guac_user* user, int x, int y, int mask) {
|
|
|
|
|
|
|
|
guac_client* client = user->client;
|
|
|
|
guac_rdp_client* rdp_client = (guac_rdp_client*) client->data;
|
2016-03-16 04:23:19 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&(rdp_client->rdp_lock));
|
2016-03-01 05:50:00 +00:00
|
|
|
|
|
|
|
/* Skip if not yet connected */
|
2016-03-16 04:23:19 +00:00
|
|
|
freerdp* rdp_inst = rdp_client->rdp_inst;
|
|
|
|
if (rdp_inst == NULL) {
|
|
|
|
pthread_mutex_unlock(&(rdp_client->rdp_lock));
|
2016-03-01 05:50:00 +00:00
|
|
|
return 0;
|
2016-03-16 04:23:19 +00:00
|
|
|
}
|
2016-03-01 05:50:00 +00:00
|
|
|
|
2016-03-18 01:29:27 +00:00
|
|
|
/* Store current mouse location */
|
|
|
|
guac_common_cursor_move(rdp_client->display->cursor, user, x, y);
|
|
|
|
|
2016-03-01 05:50:00 +00:00
|
|
|
/* If button mask unchanged, just send move event */
|
|
|
|
if (mask == rdp_client->mouse_button_mask)
|
|
|
|
rdp_inst->input->MouseEvent(rdp_inst->input, PTR_FLAGS_MOVE, x, y);
|
|
|
|
|
|
|
|
/* Otherwise, send events describing button change */
|
|
|
|
else {
|
|
|
|
|
|
|
|
/* Mouse buttons which have JUST become released */
|
|
|
|
int released_mask = rdp_client->mouse_button_mask & ~mask;
|
|
|
|
|
|
|
|
/* Mouse buttons which have JUST become pressed */
|
|
|
|
int pressed_mask = ~rdp_client->mouse_button_mask & mask;
|
|
|
|
|
|
|
|
/* Release event */
|
|
|
|
if (released_mask & 0x07) {
|
|
|
|
|
|
|
|
/* Calculate flags */
|
|
|
|
int flags = 0;
|
|
|
|
if (released_mask & 0x01) flags |= PTR_FLAGS_BUTTON1;
|
|
|
|
if (released_mask & 0x02) flags |= PTR_FLAGS_BUTTON3;
|
|
|
|
if (released_mask & 0x04) flags |= PTR_FLAGS_BUTTON2;
|
|
|
|
|
|
|
|
rdp_inst->input->MouseEvent(rdp_inst->input, flags, x, y);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Press event */
|
|
|
|
if (pressed_mask & 0x07) {
|
|
|
|
|
|
|
|
/* Calculate flags */
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* Send event */
|
|
|
|
rdp_inst->input->MouseEvent(rdp_inst->input, flags, x, y);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Scroll event */
|
|
|
|
if (pressed_mask & 0x18) {
|
|
|
|
|
|
|
|
/* Down */
|
|
|
|
if (pressed_mask & 0x08)
|
|
|
|
rdp_inst->input->MouseEvent(
|
|
|
|
rdp_inst->input,
|
|
|
|
PTR_FLAGS_WHEEL | 0x78,
|
|
|
|
x, y);
|
|
|
|
|
|
|
|
/* Up */
|
|
|
|
if (pressed_mask & 0x10)
|
|
|
|
rdp_inst->input->MouseEvent(
|
|
|
|
rdp_inst->input,
|
|
|
|
PTR_FLAGS_WHEEL | PTR_FLAGS_WHEEL_NEGATIVE | 0x88,
|
|
|
|
x, y);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
rdp_client->mouse_button_mask = mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&(rdp_client->rdp_lock));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int guac_rdp_user_key_handler(guac_user* user, int keysym, int pressed) {
|
|
|
|
|
|
|
|
guac_client* client = user->client;
|
|
|
|
guac_rdp_client* rdp_client = (guac_rdp_client*) client->data;
|
|
|
|
|
|
|
|
/* Update keysym state */
|
|
|
|
if (GUAC_RDP_KEYSYM_STORABLE(keysym))
|
|
|
|
GUAC_RDP_KEYSYM_LOOKUP(rdp_client->keysym_state, keysym) = pressed;
|
|
|
|
|
|
|
|
return guac_rdp_send_keysym(client, keysym, pressed);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int guac_rdp_user_size_handler(guac_user* user, int width, int height) {
|
|
|
|
|
|
|
|
guac_client* client = user->client;
|
|
|
|
guac_rdp_client* rdp_client = (guac_rdp_client*) client->data;
|
2016-03-16 04:23:19 +00:00
|
|
|
guac_rdp_settings* settings = rdp_client->settings;
|
2016-03-01 05:50:00 +00:00
|
|
|
freerdp* rdp_inst = rdp_client->rdp_inst;
|
|
|
|
|
|
|
|
/* Convert client pixels to remote pixels */
|
2016-03-16 04:23:19 +00:00
|
|
|
width = width * settings->resolution / user->info.optimal_resolution;
|
|
|
|
height = height * settings->resolution / user->info.optimal_resolution;
|
2016-03-01 05:50:00 +00:00
|
|
|
|
|
|
|
/* Send display update */
|
|
|
|
pthread_mutex_lock(&(rdp_client->rdp_lock));
|
2016-03-16 04:23:19 +00:00
|
|
|
guac_rdp_disp_set_size(rdp_client->disp, settings, rdp_inst, width, height);
|
2016-03-01 05:50:00 +00:00
|
|
|
pthread_mutex_unlock(&(rdp_client->rdp_lock));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|