b2fad50cd3
* Add support for C++ plugins. * Seperate between a "module" and a "plugin": a module is a shared library that exposes a function called "proxy_module_entry_point". This function gets a parameter to `proxyPluginsManager*`, which can be used to register plugins. * Refine the API of the modules infrastructure: * use proxyData* instead of rdpContext* when firing a hook or calling a filter. * use clearer names. * Instead of having to specify a path for each module to be loaded in the configuration, the proxy now loads modules from specificed directory, using the CMAKE variable PROXY_PLUGINDIR. * Add an option to specify required plugins: plugins that the proxy wouldn't start without having them fully loaded.
104 lines
3.1 KiB
C
104 lines
3.1 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* FreeRDP Proxy Server
|
|
*
|
|
* Copyright 2019 Mati Shabtay <matishabtay@gmail.com>
|
|
* Copyright 2019 Kobi Mizrachi <kmizrachi18@gmail.com>
|
|
* Copyright 2019 Idan Freiberg <speidy@gmail.com>
|
|
*
|
|
* Licensed 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "pf_input.h"
|
|
#include "pf_context.h"
|
|
#include "pf_modules.h"
|
|
|
|
static BOOL pf_server_synchronize_event(rdpInput* input, UINT32 flags)
|
|
{
|
|
pServerContext* ps = (pServerContext*)input->context;
|
|
pClientContext* pc = ps->pdata->pc;
|
|
return freerdp_input_send_synchronize_event(pc->context.input, flags);
|
|
}
|
|
|
|
static BOOL pf_server_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code)
|
|
{
|
|
pServerContext* ps = (pServerContext*)input->context;
|
|
pClientContext* pc = ps->pdata->pc;
|
|
proxyConfig* config = ps->pdata->config;
|
|
proxyKeyboardEventInfo event;
|
|
|
|
if (!config->Keyboard)
|
|
return TRUE;
|
|
|
|
event.flags = flags;
|
|
event.rdp_scan_code = code;
|
|
|
|
if (pf_modules_run_filter(FILTER_TYPE_KEYBOARD, pc->pdata, &event))
|
|
return freerdp_input_send_keyboard_event(pc->context.input, flags, code);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static BOOL pf_server_unicode_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code)
|
|
{
|
|
pServerContext* ps = (pServerContext*)input->context;
|
|
pClientContext* pc = ps->pdata->pc;
|
|
proxyConfig* config = ps->pdata->config;
|
|
|
|
if (!config->Keyboard)
|
|
return TRUE;
|
|
|
|
return freerdp_input_send_unicode_keyboard_event(pc->context.input, flags, code);
|
|
}
|
|
|
|
static BOOL pf_server_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
|
|
{
|
|
pServerContext* ps = (pServerContext*)input->context;
|
|
pClientContext* pc = ps->pdata->pc;
|
|
proxyConfig* config = ps->pdata->config;
|
|
proxyMouseEventInfo event;
|
|
|
|
if (!config->Mouse)
|
|
return TRUE;
|
|
|
|
event.flags = flags;
|
|
event.x = x;
|
|
event.y = y;
|
|
|
|
if (pf_modules_run_filter(FILTER_TYPE_MOUSE, pc->pdata, &event))
|
|
return freerdp_input_send_mouse_event(pc->context.input, flags, x, y);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static BOOL pf_server_extended_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
|
|
{
|
|
pServerContext* ps = (pServerContext*)input->context;
|
|
pClientContext* pc = ps->pdata->pc;
|
|
proxyConfig* config = ps->pdata->config;
|
|
|
|
if (!config->Mouse)
|
|
return TRUE;
|
|
|
|
return freerdp_input_send_extended_mouse_event(pc->context.input, flags, x, y);
|
|
}
|
|
|
|
void pf_server_register_input_callbacks(rdpInput* input)
|
|
{
|
|
input->SynchronizeEvent = pf_server_synchronize_event;
|
|
input->KeyboardEvent = pf_server_keyboard_event;
|
|
input->UnicodeKeyboardEvent = pf_server_unicode_keyboard_event;
|
|
input->MouseEvent = pf_server_mouse_event;
|
|
input->ExtendedMouseEvent = pf_server_extended_mouse_event;
|
|
}
|