2014-07-11 00:32:46 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
*
|
|
|
|
* Copyright 2011-2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2017-02-20 20:31:58 +03:00
|
|
|
* Copyright 2017 Armin Novak <armin.novak@thincast.com>
|
|
|
|
* Copyright 2017 Thincast Technologies GmbH
|
2014-07-11 00:32:46 +04:00
|
|
|
*
|
|
|
|
* 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 <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-07-12 07:01:34 +04:00
|
|
|
#include <unistd.h>
|
2014-07-11 00:32:46 +04:00
|
|
|
|
2014-07-12 07:01:34 +04:00
|
|
|
#include <sys/ipc.h>
|
|
|
|
#include <sys/shm.h>
|
2014-07-11 00:32:46 +04:00
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2014-07-13 23:58:31 +04:00
|
|
|
#include <winpr/crt.h>
|
2014-09-27 03:03:48 +04:00
|
|
|
#include <winpr/path.h>
|
2014-07-13 23:58:31 +04:00
|
|
|
#include <winpr/synch.h>
|
2014-09-11 06:52:19 +04:00
|
|
|
#include <winpr/image.h>
|
2014-07-13 23:58:31 +04:00
|
|
|
#include <winpr/sysinfo.h>
|
|
|
|
|
2014-09-19 20:06:12 +04:00
|
|
|
#include <freerdp/log.h>
|
2014-07-13 23:58:31 +04:00
|
|
|
#include <freerdp/codec/color.h>
|
|
|
|
#include <freerdp/codec/region.h>
|
|
|
|
|
2014-07-11 00:32:46 +04:00
|
|
|
#include "x11_shadow.h"
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
#define TAG SERVER_TAG("shadow.x11")
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
static UINT32 x11_shadow_enum_monitors(MONITOR_DEF* monitors, UINT32 maxMonitors);
|
2015-04-11 21:57:16 +03:00
|
|
|
|
2014-09-27 03:03:48 +04:00
|
|
|
#ifdef WITH_PAM
|
|
|
|
|
|
|
|
#include <security/pam_appl.h>
|
|
|
|
|
|
|
|
struct _SHADOW_PAM_AUTH_DATA
|
|
|
|
{
|
|
|
|
const char* user;
|
|
|
|
const char* domain;
|
|
|
|
const char* password;
|
|
|
|
};
|
|
|
|
typedef struct _SHADOW_PAM_AUTH_DATA SHADOW_PAM_AUTH_DATA;
|
|
|
|
|
|
|
|
struct _SHADOW_PAM_AUTH_INFO
|
|
|
|
{
|
|
|
|
char* service_name;
|
|
|
|
pam_handle_t* handle;
|
|
|
|
struct pam_conv pamc;
|
|
|
|
SHADOW_PAM_AUTH_DATA appdata;
|
|
|
|
};
|
|
|
|
typedef struct _SHADOW_PAM_AUTH_INFO SHADOW_PAM_AUTH_INFO;
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_pam_conv(int num_msg, const struct pam_message** msg,
|
2016-10-14 11:01:02 +03:00
|
|
|
struct pam_response** resp, void* appdata_ptr)
|
2014-09-27 03:03:48 +04:00
|
|
|
{
|
|
|
|
int index;
|
2017-02-20 20:31:58 +03:00
|
|
|
int pam_status = PAM_CONV_ERR;
|
2014-09-27 03:03:48 +04:00
|
|
|
SHADOW_PAM_AUTH_DATA* appdata;
|
|
|
|
struct pam_response* response;
|
|
|
|
appdata = (SHADOW_PAM_AUTH_DATA*) appdata_ptr;
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
if (!(response = (struct pam_response*) calloc(num_msg,
|
2016-10-14 11:01:02 +03:00
|
|
|
sizeof(struct pam_response))))
|
2015-06-17 23:08:02 +03:00
|
|
|
return PAM_BUF_ERR;
|
2014-09-27 03:03:48 +04:00
|
|
|
|
|
|
|
for (index = 0; index < num_msg; index++)
|
|
|
|
{
|
|
|
|
switch (msg[index]->msg_style)
|
|
|
|
{
|
|
|
|
case PAM_PROMPT_ECHO_ON:
|
|
|
|
response[index].resp = _strdup(appdata->user);
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!response[index].resp)
|
|
|
|
goto out_fail;
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2014-09-27 03:03:48 +04:00
|
|
|
response[index].resp_retcode = PAM_SUCCESS;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAM_PROMPT_ECHO_OFF:
|
|
|
|
response[index].resp = _strdup(appdata->password);
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!response[index].resp)
|
|
|
|
goto out_fail;
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2014-09-27 03:03:48 +04:00
|
|
|
response[index].resp_retcode = PAM_SUCCESS;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
pam_status = PAM_CONV_ERR;
|
2015-06-17 23:08:02 +03:00
|
|
|
goto out_fail;
|
2014-09-27 03:03:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*resp = response;
|
2015-06-17 23:08:02 +03:00
|
|
|
return PAM_SUCCESS;
|
|
|
|
out_fail:
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
for (index = 0; index < num_msg; ++index)
|
|
|
|
{
|
|
|
|
if (response[index].resp)
|
|
|
|
{
|
|
|
|
memset(response[index].resp, 0, strlen(response[index].resp));
|
|
|
|
free(response[index].resp);
|
|
|
|
}
|
|
|
|
}
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
memset(response, 0, sizeof(struct pam_response) * num_msg);
|
|
|
|
free(response);
|
|
|
|
*resp = NULL;
|
2017-02-20 20:31:58 +03:00
|
|
|
return pam_status;
|
2014-09-27 03:03:48 +04:00
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_pam_get_service_name(SHADOW_PAM_AUTH_INFO* info)
|
2014-09-27 03:03:48 +04:00
|
|
|
{
|
|
|
|
if (PathFileExistsA("/etc/pam.d/lightdm"))
|
|
|
|
{
|
|
|
|
info->service_name = _strdup("lightdm");
|
|
|
|
}
|
|
|
|
else if (PathFileExistsA("/etc/pam.d/gdm"))
|
|
|
|
{
|
|
|
|
info->service_name = _strdup("gdm");
|
|
|
|
}
|
|
|
|
else if (PathFileExistsA("/etc/pam.d/xdm"))
|
|
|
|
{
|
|
|
|
info->service_name = _strdup("xdm");
|
|
|
|
}
|
|
|
|
else if (PathFileExistsA("/etc/pam.d/login"))
|
|
|
|
{
|
|
|
|
info->service_name = _strdup("login");
|
|
|
|
}
|
|
|
|
else if (PathFileExistsA("/etc/pam.d/sshd"))
|
|
|
|
{
|
|
|
|
info->service_name = _strdup("sshd");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!info->service_name)
|
|
|
|
return -1;
|
|
|
|
|
2014-09-27 03:03:48 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
static int x11_shadow_pam_authenticate(rdpShadowSubsystem* subsystem,
|
2016-10-14 11:01:02 +03:00
|
|
|
rdpShadowClient* client, const char* user, const char* domain,
|
|
|
|
const char* password)
|
2014-09-27 03:03:48 +04:00
|
|
|
{
|
|
|
|
int pam_status;
|
|
|
|
SHADOW_PAM_AUTH_INFO* info;
|
|
|
|
info = calloc(1, sizeof(SHADOW_PAM_AUTH_INFO));
|
|
|
|
|
|
|
|
if (!info)
|
|
|
|
return PAM_CONV_ERR;
|
|
|
|
|
|
|
|
if (x11_shadow_pam_get_service_name(info) < 0)
|
2016-05-12 11:01:30 +03:00
|
|
|
{
|
|
|
|
free(info);
|
2014-09-27 03:03:48 +04:00
|
|
|
return -1;
|
2016-05-12 11:01:30 +03:00
|
|
|
}
|
2014-09-27 03:03:48 +04:00
|
|
|
|
|
|
|
info->appdata.user = user;
|
|
|
|
info->appdata.domain = domain;
|
|
|
|
info->appdata.password = password;
|
|
|
|
info->pamc.conv = &x11_shadow_pam_conv;
|
|
|
|
info->pamc.appdata_ptr = &(info->appdata);
|
|
|
|
pam_status = pam_start(info->service_name, 0, &(info->pamc), &(info->handle));
|
|
|
|
|
|
|
|
if (pam_status != PAM_SUCCESS)
|
|
|
|
{
|
2014-11-16 14:21:38 +03:00
|
|
|
WLog_ERR(TAG, "pam_start failure: %s", pam_strerror(info->handle, pam_status));
|
2014-09-27 03:03:48 +04:00
|
|
|
free(info);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pam_status = pam_authenticate(info->handle, 0);
|
|
|
|
|
|
|
|
if (pam_status != PAM_SUCCESS)
|
|
|
|
{
|
2016-09-20 10:25:13 +03:00
|
|
|
WLog_ERR(TAG, "pam_authenticate failure: %s", pam_strerror(info->handle,
|
2016-10-14 11:01:02 +03:00
|
|
|
pam_status));
|
2014-09-27 03:03:48 +04:00
|
|
|
free(info);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pam_status = pam_acct_mgmt(info->handle, 0);
|
|
|
|
|
|
|
|
if (pam_status != PAM_SUCCESS)
|
|
|
|
{
|
2016-09-20 10:25:13 +03:00
|
|
|
WLog_ERR(TAG, "pam_acct_mgmt failure: %s", pam_strerror(info->handle,
|
2016-10-14 11:01:02 +03:00
|
|
|
pam_status));
|
2014-09-27 03:03:48 +04:00
|
|
|
free(info);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(info);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
static BOOL x11_shadow_input_synchronize_event(rdpShadowSubsystem* subsystem,
|
2016-10-14 11:01:02 +03:00
|
|
|
rdpShadowClient* client, UINT32 flags)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
2018-09-25 16:17:19 +03:00
|
|
|
return TRUE;
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
static BOOL x11_shadow_input_keyboard_event(rdpShadowSubsystem* subsystem,
|
2016-10-14 11:01:02 +03:00
|
|
|
rdpShadowClient* client, UINT16 flags, UINT16 code)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
|
|
|
#ifdef WITH_XTEST
|
2018-09-25 16:17:19 +03:00
|
|
|
x11ShadowSubsystem* x11 = (x11ShadowSubsystem*)subsystem;
|
2014-07-13 23:58:31 +04:00
|
|
|
DWORD vkcode;
|
|
|
|
DWORD keycode;
|
|
|
|
BOOL extended = FALSE;
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
if (!client || !subsystem)
|
|
|
|
return FALSE;
|
|
|
|
|
2014-07-13 23:58:31 +04:00
|
|
|
if (flags & KBD_FLAGS_EXTENDED)
|
|
|
|
extended = TRUE;
|
|
|
|
|
|
|
|
if (extended)
|
|
|
|
code |= KBDEXT;
|
|
|
|
|
|
|
|
vkcode = GetVirtualKeyCodeFromVirtualScanCode(code, 4);
|
2014-09-27 01:51:45 +04:00
|
|
|
|
|
|
|
if (extended)
|
|
|
|
vkcode |= KBDEXT;
|
|
|
|
|
2014-07-13 23:58:31 +04:00
|
|
|
keycode = GetKeycodeFromVirtualKeyCode(vkcode, KEYCODE_TYPE_EVDEV);
|
|
|
|
|
|
|
|
if (keycode != 0)
|
|
|
|
{
|
2018-09-25 16:17:19 +03:00
|
|
|
XLockDisplay(x11->display);
|
|
|
|
XTestGrabControl(x11->display, True);
|
2014-07-13 23:58:31 +04:00
|
|
|
|
|
|
|
if (flags & KBD_FLAGS_DOWN)
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestFakeKeyEvent(x11->display, keycode, True, CurrentTime);
|
2014-07-13 23:58:31 +04:00
|
|
|
else if (flags & KBD_FLAGS_RELEASE)
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestFakeKeyEvent(x11->display, keycode, False, CurrentTime);
|
2014-07-13 23:58:31 +04:00
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestGrabControl(x11->display, False);
|
|
|
|
XFlush(x11->display);
|
|
|
|
XUnlockDisplay(x11->display);
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2014-07-13 23:58:31 +04:00
|
|
|
#endif
|
2018-09-25 16:17:19 +03:00
|
|
|
return TRUE;
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
static BOOL x11_shadow_input_unicode_keyboard_event(rdpShadowSubsystem*
|
2016-10-14 11:01:02 +03:00
|
|
|
subsystem,
|
|
|
|
rdpShadowClient* client, UINT16 flags, UINT16 code)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
2018-09-25 16:17:19 +03:00
|
|
|
return TRUE;
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
static BOOL x11_shadow_input_mouse_event(rdpShadowSubsystem* subsystem,
|
2016-10-14 11:01:02 +03:00
|
|
|
rdpShadowClient* client, UINT16 flags, UINT16 x, UINT16 y)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
|
|
|
#ifdef WITH_XTEST
|
2018-09-25 16:17:19 +03:00
|
|
|
x11ShadowSubsystem* x11 = (x11ShadowSubsystem*)subsystem;
|
2014-07-13 23:58:31 +04:00
|
|
|
int button = 0;
|
|
|
|
BOOL down = FALSE;
|
2014-09-10 22:58:14 +04:00
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowSurface* surface;
|
2018-09-25 16:17:19 +03:00
|
|
|
|
|
|
|
if (!subsystem || !client)
|
|
|
|
return FALSE;
|
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
server = subsystem->server;
|
2018-09-25 16:17:19 +03:00
|
|
|
|
|
|
|
if (!server)
|
|
|
|
return FALSE;
|
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
surface = server->surface;
|
2018-09-25 16:17:19 +03:00
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
x11->lastMouseClient = client;
|
2014-09-11 00:27:24 +04:00
|
|
|
x += surface->x;
|
|
|
|
y += surface->y;
|
2018-09-25 16:17:19 +03:00
|
|
|
XLockDisplay(x11->display);
|
|
|
|
XTestGrabControl(x11->display, True);
|
2014-07-13 23:58:31 +04:00
|
|
|
|
|
|
|
if (flags & PTR_FLAGS_WHEEL)
|
|
|
|
{
|
|
|
|
BOOL negative = FALSE;
|
|
|
|
|
|
|
|
if (flags & PTR_FLAGS_WHEEL_NEGATIVE)
|
|
|
|
negative = TRUE;
|
|
|
|
|
|
|
|
button = (negative) ? 5 : 4;
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestFakeButtonEvent(x11->display, button, True, CurrentTime);
|
|
|
|
XTestFakeButtonEvent(x11->display, button, False, CurrentTime);
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (flags & PTR_FLAGS_MOVE)
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestFakeMotionEvent(x11->display, 0, x, y, CurrentTime);
|
2014-07-13 23:58:31 +04:00
|
|
|
|
|
|
|
if (flags & PTR_FLAGS_BUTTON1)
|
|
|
|
button = 1;
|
|
|
|
else if (flags & PTR_FLAGS_BUTTON2)
|
|
|
|
button = 3;
|
|
|
|
else if (flags & PTR_FLAGS_BUTTON3)
|
|
|
|
button = 2;
|
|
|
|
|
|
|
|
if (flags & PTR_FLAGS_DOWN)
|
|
|
|
down = TRUE;
|
|
|
|
|
2014-09-18 06:58:57 +04:00
|
|
|
if (button)
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestFakeButtonEvent(x11->display, button, down, CurrentTime);
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestGrabControl(x11->display, False);
|
|
|
|
XFlush(x11->display);
|
|
|
|
XUnlockDisplay(x11->display);
|
2014-07-13 23:58:31 +04:00
|
|
|
#endif
|
2018-09-25 16:17:19 +03:00
|
|
|
return TRUE;
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
static BOOL x11_shadow_input_extended_mouse_event(rdpShadowSubsystem* subsystem,
|
2016-10-14 11:01:02 +03:00
|
|
|
rdpShadowClient* client, UINT16 flags, UINT16 x, UINT16 y)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
|
|
|
#ifdef WITH_XTEST
|
2018-09-25 16:17:19 +03:00
|
|
|
x11ShadowSubsystem* x11 = (x11ShadowSubsystem*)subsystem;
|
2014-07-13 23:58:31 +04:00
|
|
|
int button = 0;
|
|
|
|
BOOL down = FALSE;
|
2014-09-10 22:58:14 +04:00
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowSurface* surface;
|
2018-09-25 16:17:19 +03:00
|
|
|
|
|
|
|
if (!subsystem || !client)
|
|
|
|
return FALSE;
|
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
server = subsystem->server;
|
2018-09-25 16:17:19 +03:00
|
|
|
|
|
|
|
if (!server)
|
|
|
|
return FALSE;
|
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
surface = server->surface;
|
2018-09-25 16:17:19 +03:00
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
x11->lastMouseClient = client;
|
2014-09-10 22:58:14 +04:00
|
|
|
x += surface->x;
|
|
|
|
y += surface->y;
|
2018-09-25 16:17:19 +03:00
|
|
|
XLockDisplay(x11->display);
|
|
|
|
XTestGrabControl(x11->display, True);
|
|
|
|
XTestFakeMotionEvent(x11->display, 0, x, y, CurrentTime);
|
2014-07-13 23:58:31 +04:00
|
|
|
|
|
|
|
if (flags & PTR_XFLAGS_BUTTON1)
|
|
|
|
button = 8;
|
|
|
|
else if (flags & PTR_XFLAGS_BUTTON2)
|
|
|
|
button = 9;
|
|
|
|
|
|
|
|
if (flags & PTR_XFLAGS_DOWN)
|
|
|
|
down = TRUE;
|
|
|
|
|
2014-09-18 06:58:57 +04:00
|
|
|
if (button)
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestFakeButtonEvent(x11->display, button, down, CurrentTime);
|
2014-07-13 23:58:31 +04:00
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
XTestGrabControl(x11->display, False);
|
|
|
|
XFlush(x11->display);
|
|
|
|
XUnlockDisplay(x11->display);
|
2014-07-13 23:58:31 +04:00
|
|
|
#endif
|
2018-09-25 16:17:19 +03:00
|
|
|
return TRUE;
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
static void x11_shadow_message_free(UINT32 id, SHADOW_MSG_OUT* msg)
|
|
|
|
{
|
2016-09-20 10:25:13 +03:00
|
|
|
switch (id)
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
2015-06-15 18:54:30 +03:00
|
|
|
case SHADOW_MSG_OUT_POINTER_POSITION_UPDATE_ID:
|
|
|
|
free(msg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE_ID:
|
2015-06-16 18:28:14 +03:00
|
|
|
free(((SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE*)msg)->xorMaskData);
|
|
|
|
free(((SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE*)msg)->andMaskData);
|
2015-06-15 18:54:30 +03:00
|
|
|
free(msg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2016-12-14 00:47:08 +03:00
|
|
|
WLog_ERR(TAG, "Unknown message id: %"PRIu32"", id);
|
2015-06-15 18:54:30 +03:00
|
|
|
free(msg);
|
|
|
|
break;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_pointer_position_update(x11ShadowSubsystem* subsystem)
|
2014-11-07 01:25:41 +03:00
|
|
|
{
|
|
|
|
UINT32 msgId = SHADOW_MSG_OUT_POINTER_POSITION_UPDATE_ID;
|
2016-05-25 12:24:30 +03:00
|
|
|
rdpShadowServer* server;
|
2017-02-20 20:31:58 +03:00
|
|
|
SHADOW_MSG_OUT_POINTER_POSITION_UPDATE templateMsg;
|
2016-05-25 12:24:30 +03:00
|
|
|
int count = 0;
|
|
|
|
int index = 0;
|
2017-05-02 23:32:44 +03:00
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
if (!subsystem || !subsystem->common.server || !subsystem->common.server->clients)
|
2017-11-29 16:17:27 +03:00
|
|
|
return -1;
|
2017-05-02 23:32:44 +03:00
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
templateMsg.xPos = subsystem->common.pointerX;
|
|
|
|
templateMsg.yPos = subsystem->common.pointerY;
|
2018-09-25 18:09:45 +03:00
|
|
|
templateMsg.common.Free = x11_shadow_message_free;
|
2018-09-25 16:17:19 +03:00
|
|
|
server = subsystem->common.server;
|
2016-05-25 12:24:30 +03:00
|
|
|
ArrayList_Lock(server->clients);
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2016-05-25 12:24:30 +03:00
|
|
|
for (index = 0; index < ArrayList_Count(server->clients); index++)
|
|
|
|
{
|
2017-02-20 20:31:58 +03:00
|
|
|
SHADOW_MSG_OUT_POINTER_POSITION_UPDATE* msg;
|
|
|
|
rdpShadowClient* client = (rdpShadowClient*)ArrayList_GetItem(server->clients, index);
|
2016-05-25 12:24:30 +03:00
|
|
|
|
|
|
|
/* Skip the client which send us the latest mouse event */
|
|
|
|
if (client == subsystem->lastMouseClient)
|
2016-09-20 10:25:13 +03:00
|
|
|
continue;
|
2016-05-25 12:24:30 +03:00
|
|
|
|
2017-02-20 20:31:58 +03:00
|
|
|
msg = malloc(sizeof(templateMsg));
|
|
|
|
|
|
|
|
if (!msg)
|
|
|
|
{
|
|
|
|
count = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(msg, &templateMsg, sizeof(templateMsg));
|
|
|
|
|
2016-05-25 12:24:30 +03:00
|
|
|
if (shadow_client_post_msg(client, NULL, msgId, (SHADOW_MSG_OUT*) msg, NULL))
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
ArrayList_Unlock(server->clients);
|
2016-05-25 12:24:30 +03:00
|
|
|
return count;
|
2014-11-07 01:25:41 +03:00
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_pointer_alpha_update(x11ShadowSubsystem* subsystem)
|
2014-11-07 01:25:41 +03:00
|
|
|
{
|
|
|
|
SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE* msg;
|
|
|
|
UINT32 msgId = SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE_ID;
|
2016-09-20 10:25:13 +03:00
|
|
|
msg = (SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE*) calloc(1,
|
2016-10-14 11:01:02 +03:00
|
|
|
sizeof(SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE));
|
2014-11-07 01:25:41 +03:00
|
|
|
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
msg->xHot = subsystem->cursorHotX;
|
|
|
|
msg->yHot = subsystem->cursorHotY;
|
|
|
|
msg->width = subsystem->cursorWidth;
|
|
|
|
msg->height = subsystem->cursorHeight;
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
if (shadow_subsystem_pointer_convert_alpha_pointer_data(subsystem->cursorPixels,
|
2016-10-14 11:01:02 +03:00
|
|
|
TRUE,
|
|
|
|
msg->width, msg->height, msg) < 0)
|
2014-11-17 02:22:33 +03:00
|
|
|
{
|
2016-09-20 10:25:13 +03:00
|
|
|
free(msg);
|
2014-11-07 01:25:41 +03:00
|
|
|
return -1;
|
2014-11-17 02:22:33 +03:00
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2018-09-25 18:09:45 +03:00
|
|
|
msg->common.Free = x11_shadow_message_free;
|
2018-09-25 16:17:19 +03:00
|
|
|
return shadow_client_boardcast_msg(subsystem->common.server, NULL, msgId,
|
2016-10-14 11:01:02 +03:00
|
|
|
(SHADOW_MSG_OUT*) msg, NULL) ? 1 : -1;
|
2014-11-07 01:25:41 +03:00
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_query_cursor(x11ShadowSubsystem* subsystem, BOOL getImage)
|
2014-09-11 03:04:28 +04:00
|
|
|
{
|
2017-02-17 15:21:18 +03:00
|
|
|
int x = 0, y = 0, n, k;
|
2014-09-11 06:52:19 +04:00
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowSurface* surface;
|
2018-09-25 16:17:19 +03:00
|
|
|
server = subsystem->common.server;
|
2014-09-11 06:52:19 +04:00
|
|
|
surface = server->surface;
|
2014-09-11 03:04:28 +04:00
|
|
|
|
|
|
|
if (getImage)
|
|
|
|
{
|
|
|
|
#ifdef WITH_XFIXES
|
2014-09-11 06:52:19 +04:00
|
|
|
UINT32* pDstPixel;
|
2014-09-11 03:04:28 +04:00
|
|
|
XFixesCursorImage* ci;
|
2016-05-25 19:20:37 +03:00
|
|
|
XLockDisplay(subsystem->display);
|
2014-09-11 03:04:28 +04:00
|
|
|
ci = XFixesGetCursorImage(subsystem->display);
|
2016-05-25 19:20:37 +03:00
|
|
|
XUnlockDisplay(subsystem->display);
|
2014-09-11 03:04:28 +04:00
|
|
|
|
2014-11-07 21:51:10 +03:00
|
|
|
if (!ci)
|
|
|
|
return -1;
|
|
|
|
|
2014-09-11 03:04:28 +04:00
|
|
|
x = ci->x;
|
|
|
|
y = ci->y;
|
|
|
|
|
|
|
|
if (ci->width > subsystem->cursorMaxWidth)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (ci->height > subsystem->cursorMaxHeight)
|
|
|
|
return -1;
|
|
|
|
|
2014-09-11 06:52:19 +04:00
|
|
|
subsystem->cursorHotX = ci->xhot;
|
|
|
|
subsystem->cursorHotY = ci->yhot;
|
2014-09-11 03:04:28 +04:00
|
|
|
subsystem->cursorWidth = ci->width;
|
|
|
|
subsystem->cursorHeight = ci->height;
|
|
|
|
subsystem->cursorId = ci->cursor_serial;
|
2014-09-11 06:52:19 +04:00
|
|
|
n = ci->width * ci->height;
|
|
|
|
pDstPixel = (UINT32*) subsystem->cursorPixels;
|
|
|
|
|
|
|
|
for (k = 0; k < n; k++)
|
|
|
|
{
|
|
|
|
/* XFixesCursorImage.pixels is in *unsigned long*, which may be 8 bytes */
|
|
|
|
*pDstPixel++ = (UINT32) ci->pixels[k];
|
|
|
|
}
|
2014-09-11 03:04:28 +04:00
|
|
|
|
|
|
|
XFree(ci);
|
2014-11-07 01:25:41 +03:00
|
|
|
x11_shadow_pointer_alpha_update(subsystem);
|
2014-09-11 03:04:28 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
UINT32 mask;
|
|
|
|
int win_x, win_y;
|
|
|
|
int root_x, root_y;
|
|
|
|
Window root, child;
|
2016-05-25 19:20:37 +03:00
|
|
|
XLockDisplay(subsystem->display);
|
|
|
|
|
2014-09-11 03:04:28 +04:00
|
|
|
if (!XQueryPointer(subsystem->display, subsystem->root_window,
|
2016-10-14 11:01:02 +03:00
|
|
|
&root, &child, &root_x, &root_y, &win_x, &win_y, &mask))
|
2014-09-11 03:04:28 +04:00
|
|
|
{
|
2016-05-25 19:20:37 +03:00
|
|
|
XUnlockDisplay(subsystem->display);
|
2014-09-11 03:04:28 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-05-25 19:20:37 +03:00
|
|
|
XUnlockDisplay(subsystem->display);
|
2014-09-11 03:04:28 +04:00
|
|
|
x = root_x;
|
|
|
|
y = root_y;
|
|
|
|
}
|
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
/* Convert to offset based on current surface */
|
|
|
|
if (surface)
|
|
|
|
{
|
|
|
|
x -= surface->x;
|
|
|
|
y -= surface->y;
|
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
if ((x != subsystem->common.pointerX) || (y != subsystem->common.pointerY))
|
2014-11-07 21:51:10 +03:00
|
|
|
{
|
2018-09-25 16:17:19 +03:00
|
|
|
subsystem->common.pointerX = x;
|
|
|
|
subsystem->common.pointerY = y;
|
2014-11-07 21:51:10 +03:00
|
|
|
x11_shadow_pointer_position_update(subsystem);
|
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2014-09-11 03:04:28 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_handle_xevent(x11ShadowSubsystem* subsystem,
|
2016-10-14 11:01:02 +03:00
|
|
|
XEvent* xevent)
|
2014-09-11 03:04:28 +04:00
|
|
|
{
|
|
|
|
if (xevent->type == MotionNotify)
|
|
|
|
{
|
|
|
|
}
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2014-09-11 03:04:28 +04:00
|
|
|
#ifdef WITH_XFIXES
|
2014-11-07 21:51:10 +03:00
|
|
|
else if (xevent->type == subsystem->xfixes_cursor_notify_event)
|
2014-09-11 03:04:28 +04:00
|
|
|
{
|
|
|
|
x11_shadow_query_cursor(subsystem, TRUE);
|
|
|
|
}
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2014-09-11 03:04:28 +04:00
|
|
|
#endif
|
2014-11-07 21:51:10 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
}
|
2014-09-11 03:04:28 +04:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static void x11_shadow_validate_region(x11ShadowSubsystem* subsystem, int x,
|
2016-10-14 11:01:02 +03:00
|
|
|
int y,
|
|
|
|
int width, int height)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
|
|
|
XRectangle region;
|
|
|
|
|
2014-07-16 22:11:37 +04:00
|
|
|
if (!subsystem->use_xfixes || !subsystem->use_xdamage)
|
2014-07-14 21:33:20 +04:00
|
|
|
return;
|
|
|
|
|
2014-07-13 23:58:31 +04:00
|
|
|
region.x = x;
|
|
|
|
region.y = y;
|
|
|
|
region.width = width;
|
|
|
|
region.height = height;
|
|
|
|
#ifdef WITH_XFIXES
|
2016-05-25 19:20:37 +03:00
|
|
|
XLockDisplay(subsystem->display);
|
2014-07-13 23:58:31 +04:00
|
|
|
XFixesSetRegion(subsystem->display, subsystem->xdamage_region, ®ion, 1);
|
2016-09-20 10:25:13 +03:00
|
|
|
XDamageSubtract(subsystem->display, subsystem->xdamage,
|
2016-10-14 11:01:02 +03:00
|
|
|
subsystem->xdamage_region, None);
|
2016-05-25 19:20:37 +03:00
|
|
|
XUnlockDisplay(subsystem->display);
|
2014-07-13 23:58:31 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_blend_cursor(x11ShadowSubsystem* subsystem)
|
2014-09-11 06:52:19 +04:00
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
int nXSrc;
|
|
|
|
int nYSrc;
|
|
|
|
int nXDst;
|
|
|
|
int nYDst;
|
|
|
|
int nWidth;
|
|
|
|
int nHeight;
|
|
|
|
int nSrcStep;
|
|
|
|
int nDstStep;
|
|
|
|
BYTE* pSrcData;
|
|
|
|
BYTE* pDstData;
|
|
|
|
BYTE A, R, G, B;
|
|
|
|
rdpShadowSurface* surface;
|
2017-06-06 15:01:41 +03:00
|
|
|
|
|
|
|
if (!subsystem)
|
|
|
|
return -1;
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
surface = subsystem->common.server->surface;
|
2014-09-11 06:52:19 +04:00
|
|
|
nXSrc = 0;
|
|
|
|
nYSrc = 0;
|
|
|
|
nWidth = subsystem->cursorWidth;
|
|
|
|
nHeight = subsystem->cursorHeight;
|
2018-09-25 16:17:19 +03:00
|
|
|
nXDst = subsystem->common.pointerX - subsystem->cursorHotX;
|
|
|
|
nYDst = subsystem->common.pointerY - subsystem->cursorHotY;
|
2014-09-11 06:52:19 +04:00
|
|
|
|
|
|
|
if (nXDst >= surface->width)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (nXDst < 0)
|
|
|
|
{
|
|
|
|
nXDst *= -1;
|
|
|
|
|
|
|
|
if (nXDst >= nWidth)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
nXSrc = nXDst;
|
|
|
|
nWidth -= nXDst;
|
|
|
|
nXDst = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nYDst >= surface->height)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (nYDst < 0)
|
|
|
|
{
|
|
|
|
nYDst *= -1;
|
|
|
|
|
|
|
|
if (nYDst >= nHeight)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
nYSrc = nYDst;
|
|
|
|
nHeight -= nYDst;
|
|
|
|
nYDst = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((nXDst + nWidth) > surface->width)
|
|
|
|
nWidth = surface->width - nXDst;
|
|
|
|
|
|
|
|
if ((nYDst + nHeight) > surface->height)
|
|
|
|
nHeight = surface->height - nYDst;
|
|
|
|
|
|
|
|
pSrcData = subsystem->cursorPixels;
|
|
|
|
nSrcStep = subsystem->cursorWidth * 4;
|
|
|
|
pDstData = surface->data;
|
|
|
|
nDstStep = surface->scanline;
|
|
|
|
|
|
|
|
for (y = 0; y < nHeight; y++)
|
|
|
|
{
|
2017-02-20 20:31:58 +03:00
|
|
|
const BYTE* pSrcPixel = &pSrcData[((nYSrc + y) * nSrcStep) + (nXSrc * 4)];
|
|
|
|
BYTE* pDstPixel = &pDstData[((nYDst + y) * nDstStep) + (nXDst * 4)];
|
2014-09-11 06:52:19 +04:00
|
|
|
|
|
|
|
for (x = 0; x < nWidth; x++)
|
|
|
|
{
|
|
|
|
B = *pSrcPixel++;
|
|
|
|
G = *pSrcPixel++;
|
|
|
|
R = *pSrcPixel++;
|
|
|
|
A = *pSrcPixel++;
|
|
|
|
|
|
|
|
if (A == 0xFF)
|
|
|
|
{
|
|
|
|
pDstPixel[0] = B;
|
|
|
|
pDstPixel[1] = G;
|
|
|
|
pDstPixel[2] = R;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pDstPixel[0] = B + (pDstPixel[0] * (0xFF - A) + (0xFF / 2)) / 0xFF;
|
|
|
|
pDstPixel[1] = G + (pDstPixel[1] * (0xFF - A) + (0xFF / 2)) / 0xFF;
|
|
|
|
pDstPixel[2] = R + (pDstPixel[2] * (0xFF - A) + (0xFF / 2)) / 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
pDstPixel[3] = 0xFF;
|
|
|
|
pDstPixel += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static BOOL x11_shadow_check_resize(x11ShadowSubsystem* subsystem)
|
2015-04-11 21:57:16 +03:00
|
|
|
{
|
|
|
|
MONITOR_DEF* virtualScreen;
|
|
|
|
XWindowAttributes attr;
|
2016-05-25 19:20:37 +03:00
|
|
|
XLockDisplay(subsystem->display);
|
2015-04-11 21:57:16 +03:00
|
|
|
XGetWindowAttributes(subsystem->display, subsystem->root_window, &attr);
|
2016-05-25 19:20:37 +03:00
|
|
|
XUnlockDisplay(subsystem->display);
|
2015-04-11 21:57:16 +03:00
|
|
|
|
|
|
|
if (attr.width != subsystem->width || attr.height != subsystem->height)
|
|
|
|
{
|
|
|
|
/* Screen size changed. Refresh monitor definitions and trigger screen resize */
|
2018-09-25 16:17:19 +03:00
|
|
|
subsystem->common.numMonitors = x11_shadow_enum_monitors(subsystem->common.monitors, 16);
|
|
|
|
shadow_screen_resize(subsystem->common.server->screen);
|
2015-04-11 21:57:16 +03:00
|
|
|
subsystem->width = attr.width;
|
|
|
|
subsystem->height = attr.height;
|
2018-09-25 16:17:19 +03:00
|
|
|
virtualScreen = &(subsystem->common.virtualScreen);
|
2015-04-11 21:57:16 +03:00
|
|
|
virtualScreen->left = 0;
|
|
|
|
virtualScreen->top = 0;
|
|
|
|
virtualScreen->right = subsystem->width;
|
|
|
|
virtualScreen->bottom = subsystem->height;
|
|
|
|
virtualScreen->flags = 1;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_error_handler_for_capture(Display* display,
|
2016-10-14 11:01:02 +03:00
|
|
|
XErrorEvent* event)
|
2015-04-11 21:57:16 +03:00
|
|
|
{
|
2016-09-20 10:25:13 +03:00
|
|
|
char msg[256];
|
|
|
|
XGetErrorText(display, event->error_code, (char*) &msg, sizeof(msg));
|
|
|
|
WLog_ERR(TAG, "X11 error: %s Error code: %x, request code: %x, minor code: %x",
|
2016-10-14 11:01:02 +03:00
|
|
|
msg, event->error_code, event->request_code, event->minor_code);
|
2015-04-11 21:57:16 +03:00
|
|
|
|
|
|
|
/* Ignore BAD MATCH error during image capture. Abort in other case */
|
|
|
|
if (event->error_code != BadMatch)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_screen_grab(x11ShadowSubsystem* subsystem)
|
2014-08-07 01:51:38 +04:00
|
|
|
{
|
2014-08-09 02:47:46 +04:00
|
|
|
int count;
|
2014-08-07 01:51:38 +04:00
|
|
|
int status;
|
|
|
|
int x, y;
|
|
|
|
int width, height;
|
|
|
|
XImage* image;
|
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowSurface* surface;
|
|
|
|
RECTANGLE_16 invalidRect;
|
2014-09-19 01:22:44 +04:00
|
|
|
RECTANGLE_16 surfaceRect;
|
2016-09-20 10:25:13 +03:00
|
|
|
const RECTANGLE_16* extents;
|
2018-09-25 16:17:19 +03:00
|
|
|
server = subsystem->common.server;
|
2014-08-07 01:51:38 +04:00
|
|
|
surface = server->surface;
|
2014-09-10 22:58:14 +04:00
|
|
|
count = ArrayList_Count(server->clients);
|
|
|
|
|
|
|
|
if (count < 1)
|
|
|
|
return 1;
|
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
surfaceRect.left = 0;
|
|
|
|
surfaceRect.top = 0;
|
|
|
|
surfaceRect.right = surface->width;
|
|
|
|
surfaceRect.bottom = surface->height;
|
2014-09-19 06:18:58 +04:00
|
|
|
XLockDisplay(subsystem->display);
|
2015-04-11 21:57:16 +03:00
|
|
|
/*
|
2016-09-20 10:25:13 +03:00
|
|
|
* Ignore BadMatch error during image capture. The screen size may be
|
2015-04-11 21:57:16 +03:00
|
|
|
* changed outside. We will resize to correct resolution at next frame
|
|
|
|
*/
|
|
|
|
XSetErrorHandler(x11_shadow_error_handler_for_capture);
|
|
|
|
|
2014-08-07 01:51:38 +04:00
|
|
|
if (subsystem->use_xshm)
|
|
|
|
{
|
2014-09-19 06:18:58 +04:00
|
|
|
image = subsystem->fb_image;
|
2014-08-07 01:51:38 +04:00
|
|
|
XCopyArea(subsystem->display, subsystem->root_window, subsystem->fb_pixmap,
|
2016-10-14 11:01:02 +03:00
|
|
|
subsystem->xshm_gc, 0, 0, subsystem->width, subsystem->height, 0, 0);
|
2016-09-20 10:25:13 +03:00
|
|
|
status = shadow_capture_compare(surface->data, surface->scanline,
|
2016-10-14 11:01:02 +03:00
|
|
|
surface->width, surface->height,
|
|
|
|
(BYTE*) & (image->data[surface->width * 4]), image->bytes_per_line,
|
|
|
|
&invalidRect);
|
2014-09-19 06:18:58 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
image = XGetImage(subsystem->display, subsystem->root_window,
|
2016-10-14 11:01:02 +03:00
|
|
|
surface->x, surface->y, surface->width, surface->height, AllPlanes, ZPixmap);
|
2014-08-07 01:51:38 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
if (!image)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* BadMatch error happened. The size may have been changed again.
|
2016-09-20 10:25:13 +03:00
|
|
|
* Give up this frame and we will resize again in next frame
|
2015-04-11 21:57:16 +03:00
|
|
|
*/
|
|
|
|
goto fail_capture;
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
status = shadow_capture_compare(surface->data, surface->scanline,
|
2016-10-14 11:01:02 +03:00
|
|
|
surface->width, surface->height,
|
|
|
|
(BYTE*) image->data, image->bytes_per_line, &invalidRect);
|
2014-09-19 06:18:58 +04:00
|
|
|
}
|
2014-09-11 06:52:19 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
/* Restore the default error handler */
|
|
|
|
XSetErrorHandler(NULL);
|
2014-09-19 06:18:58 +04:00
|
|
|
XSync(subsystem->display, False);
|
|
|
|
XUnlockDisplay(subsystem->display);
|
2014-08-09 02:47:46 +04:00
|
|
|
|
2017-02-20 20:31:58 +03:00
|
|
|
if (status)
|
2014-09-19 06:18:58 +04:00
|
|
|
{
|
2017-02-20 20:31:58 +03:00
|
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
|
|
&invalidRect);
|
|
|
|
region16_intersect_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
|
|
&surfaceRect);
|
|
|
|
|
|
|
|
if (!region16_is_empty(&(surface->invalidRegion)))
|
2014-09-19 20:06:12 +04:00
|
|
|
{
|
2017-02-20 20:31:58 +03:00
|
|
|
extents = region16_extents(&(surface->invalidRegion));
|
|
|
|
x = extents->left;
|
|
|
|
y = extents->top;
|
|
|
|
width = extents->right - extents->left;
|
|
|
|
height = extents->bottom - extents->top;
|
|
|
|
|
|
|
|
if (!freerdp_image_copy(surface->data, surface->format,
|
|
|
|
surface->scanline, x, y, width, height,
|
|
|
|
(BYTE*) image->data, PIXEL_FORMAT_BGRX32,
|
|
|
|
image->bytes_per_line, x, y, NULL, FREERDP_FLIP_NONE))
|
|
|
|
goto fail_capture;
|
|
|
|
|
|
|
|
//x11_shadow_blend_cursor(subsystem);
|
|
|
|
count = ArrayList_Count(server->clients);
|
|
|
|
shadow_subsystem_frame_update((rdpShadowSubsystem*)subsystem);
|
2014-09-19 20:06:12 +04:00
|
|
|
|
2017-02-20 20:31:58 +03:00
|
|
|
if (count == 1)
|
2014-09-19 20:06:12 +04:00
|
|
|
{
|
2017-02-20 20:31:58 +03:00
|
|
|
rdpShadowClient* client;
|
|
|
|
client = (rdpShadowClient*) ArrayList_GetItem(server->clients, 0);
|
|
|
|
|
|
|
|
if (client)
|
2018-09-25 16:17:19 +03:00
|
|
|
subsystem->common.captureFrameRate = shadow_encoder_preferred_fps(client->encoder);
|
2014-09-19 20:06:12 +04:00
|
|
|
}
|
|
|
|
|
2017-02-20 20:31:58 +03:00
|
|
|
region16_clear(&(surface->invalidRegion));
|
|
|
|
}
|
2014-09-19 06:18:58 +04:00
|
|
|
}
|
2014-08-07 01:51:38 +04:00
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
if (!subsystem->use_xshm)
|
|
|
|
XDestroyImage(image);
|
2014-09-11 06:52:19 +04:00
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
return 1;
|
2015-04-11 21:57:16 +03:00
|
|
|
fail_capture:
|
2017-02-20 20:31:58 +03:00
|
|
|
|
|
|
|
if (!subsystem->use_xshm && image)
|
|
|
|
XDestroyImage(image);
|
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
XSetErrorHandler(NULL);
|
|
|
|
XSync(subsystem->display, False);
|
|
|
|
XUnlockDisplay(subsystem->display);
|
|
|
|
return 0;
|
2014-09-19 06:18:58 +04:00
|
|
|
}
|
2014-08-09 02:47:46 +04:00
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_subsystem_process_message(x11ShadowSubsystem* subsystem,
|
2016-10-14 11:01:02 +03:00
|
|
|
wMessage* message)
|
2014-09-19 06:18:58 +04:00
|
|
|
{
|
2016-09-20 10:25:13 +03:00
|
|
|
switch (message->id)
|
2014-09-19 06:18:58 +04:00
|
|
|
{
|
2016-04-23 20:49:10 +03:00
|
|
|
case SHADOW_MSG_IN_REFRESH_REQUEST_ID:
|
2016-09-20 10:25:13 +03:00
|
|
|
shadow_subsystem_frame_update((rdpShadowSubsystem*)subsystem);
|
2015-06-15 18:54:30 +03:00
|
|
|
break;
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
default:
|
2016-12-14 00:47:08 +03:00
|
|
|
WLog_ERR(TAG, "Unknown message id: %"PRIu32"", message->id);
|
2015-06-15 18:54:30 +03:00
|
|
|
break;
|
2014-08-07 01:51:38 +04:00
|
|
|
}
|
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
if (message->Free)
|
|
|
|
message->Free(message);
|
|
|
|
|
2014-08-07 01:51:38 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-03-07 14:03:10 +03:00
|
|
|
static DWORD WINAPI x11_shadow_subsystem_thread(LPVOID arg)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
2018-03-07 14:03:10 +03:00
|
|
|
x11ShadowSubsystem* subsystem = (x11ShadowSubsystem*)arg;
|
2014-09-11 03:04:28 +04:00
|
|
|
XEvent xevent;
|
2014-07-14 03:42:57 +04:00
|
|
|
DWORD status;
|
|
|
|
DWORD nCount;
|
2014-07-16 22:11:37 +04:00
|
|
|
UINT64 cTime;
|
|
|
|
DWORD dwTimeout;
|
|
|
|
DWORD dwInterval;
|
|
|
|
UINT64 frameTime;
|
2014-07-14 03:42:57 +04:00
|
|
|
HANDLE events[32];
|
2014-09-19 01:22:44 +04:00
|
|
|
wMessage message;
|
|
|
|
wMessagePipe* MsgPipe;
|
2018-09-25 16:17:19 +03:00
|
|
|
MsgPipe = subsystem->common.MsgPipe;
|
2014-07-14 03:42:57 +04:00
|
|
|
nCount = 0;
|
2018-09-25 16:17:19 +03:00
|
|
|
events[nCount++] = subsystem->common.event;
|
2014-09-19 01:22:44 +04:00
|
|
|
events[nCount++] = MessageQueue_Event(MsgPipe->In);
|
2018-09-25 16:17:19 +03:00
|
|
|
subsystem->common.captureFrameRate = 16;
|
|
|
|
dwInterval = 1000 / subsystem->common.captureFrameRate;
|
2014-07-16 22:11:37 +04:00
|
|
|
frameTime = GetTickCount64() + dwInterval;
|
|
|
|
|
2014-07-14 03:42:57 +04:00
|
|
|
while (1)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
2014-08-09 04:51:26 +04:00
|
|
|
cTime = GetTickCount64();
|
|
|
|
dwTimeout = (cTime > frameTime) ? 0 : frameTime - cTime;
|
2014-07-16 22:11:37 +04:00
|
|
|
status = WaitForMultipleObjects(nCount, events, FALSE, dwTimeout);
|
2014-07-13 23:58:31 +04:00
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
if (WaitForSingleObject(MessageQueue_Event(MsgPipe->In), 0) == WAIT_OBJECT_0)
|
2014-07-13 23:58:31 +04:00
|
|
|
{
|
2014-09-19 01:22:44 +04:00
|
|
|
if (MessageQueue_Peek(MsgPipe->In, &message, TRUE))
|
|
|
|
{
|
|
|
|
if (message.id == WMQ_QUIT)
|
|
|
|
break;
|
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
x11_shadow_subsystem_process_message(subsystem, &message);
|
2014-09-19 01:22:44 +04:00
|
|
|
}
|
2014-07-14 03:42:57 +04:00
|
|
|
}
|
2014-07-13 23:58:31 +04:00
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
if (WaitForSingleObject(subsystem->common.event, 0) == WAIT_OBJECT_0)
|
2014-09-11 03:04:28 +04:00
|
|
|
{
|
2016-05-25 19:20:37 +03:00
|
|
|
XLockDisplay(subsystem->display);
|
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
if (XEventsQueued(subsystem->display, QueuedAlready))
|
|
|
|
{
|
|
|
|
XNextEvent(subsystem->display, &xevent);
|
|
|
|
x11_shadow_handle_xevent(subsystem, &xevent);
|
|
|
|
}
|
2016-05-25 19:20:37 +03:00
|
|
|
|
|
|
|
XUnlockDisplay(subsystem->display);
|
2014-09-11 03:04:28 +04:00
|
|
|
}
|
|
|
|
|
2014-08-09 04:51:26 +04:00
|
|
|
if ((status == WAIT_TIMEOUT) || (GetTickCount64() > frameTime))
|
2014-07-16 22:11:37 +04:00
|
|
|
{
|
2015-04-11 21:57:16 +03:00
|
|
|
x11_shadow_check_resize(subsystem);
|
2014-08-09 04:51:26 +04:00
|
|
|
x11_shadow_screen_grab(subsystem);
|
2014-11-07 21:51:10 +03:00
|
|
|
x11_shadow_query_cursor(subsystem, FALSE);
|
2018-09-25 16:17:19 +03:00
|
|
|
dwInterval = 1000 / subsystem->common.captureFrameRate;
|
2014-08-09 04:51:26 +04:00
|
|
|
frameTime += dwInterval;
|
2014-07-16 22:11:37 +04:00
|
|
|
}
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2014-07-14 03:42:57 +04:00
|
|
|
ExitThread(0);
|
2018-03-07 16:47:06 +03:00
|
|
|
return 0;
|
2014-07-13 23:58:31 +04:00
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
static int x11_shadow_subsystem_base_init(x11ShadowSubsystem* subsystem)
|
2014-09-18 21:06:49 +04:00
|
|
|
{
|
|
|
|
if (subsystem->display)
|
|
|
|
return 1; /* initialize once */
|
|
|
|
|
|
|
|
if (!getenv("DISPLAY"))
|
|
|
|
setenv("DISPLAY", ":0", 1);
|
|
|
|
|
|
|
|
if (!XInitThreads())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
subsystem->display = XOpenDisplay(NULL);
|
|
|
|
|
|
|
|
if (!subsystem->display)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "failed to open display: %s", XDisplayName(NULL));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
subsystem->xfds = ConnectionNumber(subsystem->display);
|
|
|
|
subsystem->number = DefaultScreen(subsystem->display);
|
|
|
|
subsystem->screen = ScreenOfDisplay(subsystem->display, subsystem->number);
|
|
|
|
subsystem->depth = DefaultDepthOfScreen(subsystem->screen);
|
|
|
|
subsystem->width = WidthOfScreen(subsystem->screen);
|
|
|
|
subsystem->height = HeightOfScreen(subsystem->screen);
|
2014-11-07 21:51:10 +03:00
|
|
|
subsystem->root_window = RootWindow(subsystem->display, subsystem->number);
|
2014-09-18 21:06:49 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-05-25 19:20:37 +03:00
|
|
|
static int x11_shadow_xfixes_init(x11ShadowSubsystem* subsystem)
|
2014-07-11 00:32:46 +04:00
|
|
|
{
|
2014-07-12 07:01:34 +04:00
|
|
|
#ifdef WITH_XFIXES
|
2014-07-14 21:33:20 +04:00
|
|
|
int xfixes_event;
|
|
|
|
int xfixes_error;
|
|
|
|
int major, minor;
|
2014-07-11 00:32:46 +04:00
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
if (!XFixesQueryExtension(subsystem->display, &xfixes_event, &xfixes_error))
|
2014-07-12 07:01:34 +04:00
|
|
|
return -1;
|
2014-07-11 00:32:46 +04:00
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
if (!XFixesQueryVersion(subsystem->display, &major, &minor))
|
|
|
|
return -1;
|
|
|
|
|
2014-09-11 03:04:28 +04:00
|
|
|
subsystem->xfixes_cursor_notify_event = xfixes_event + XFixesCursorNotify;
|
2014-11-07 21:51:10 +03:00
|
|
|
XFixesSelectCursorInput(subsystem->display, subsystem->root_window,
|
2016-10-14 11:01:02 +03:00
|
|
|
XFixesDisplayCursorNotifyMask);
|
2014-07-14 21:33:20 +04:00
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-25 19:20:37 +03:00
|
|
|
static int x11_shadow_xinerama_init(x11ShadowSubsystem* subsystem)
|
2014-07-14 21:33:20 +04:00
|
|
|
{
|
|
|
|
#ifdef WITH_XINERAMA
|
|
|
|
int major, minor;
|
|
|
|
int xinerama_event;
|
|
|
|
int xinerama_error;
|
2014-09-18 21:06:49 +04:00
|
|
|
x11_shadow_subsystem_base_init(subsystem);
|
2014-07-14 21:33:20 +04:00
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
if (!XineramaQueryExtension(subsystem->display, &xinerama_event,
|
2016-10-14 11:01:02 +03:00
|
|
|
&xinerama_error))
|
2014-07-14 21:33:20 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!XDamageQueryVersion(subsystem->display, &major, &minor))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!XineramaIsActive(subsystem->display))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 1;
|
2014-09-18 21:06:49 +04:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2014-07-12 07:01:34 +04:00
|
|
|
}
|
|
|
|
|
2016-05-25 19:20:37 +03:00
|
|
|
static int x11_shadow_xdamage_init(x11ShadowSubsystem* subsystem)
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
2014-07-14 05:20:36 +04:00
|
|
|
#ifdef WITH_XDAMAGE
|
2014-07-14 21:33:20 +04:00
|
|
|
int major, minor;
|
2014-07-12 07:01:34 +04:00
|
|
|
int damage_event;
|
|
|
|
int damage_error;
|
2014-07-14 21:33:20 +04:00
|
|
|
|
|
|
|
if (!subsystem->use_xfixes)
|
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 01:30:39 +04:00
|
|
|
if (!XDamageQueryExtension(subsystem->display, &damage_event, &damage_error))
|
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 01:30:39 +04:00
|
|
|
if (!XDamageQueryVersion(subsystem->display, &major, &minor))
|
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 01:30:39 +04:00
|
|
|
if (major < 1)
|
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
|
|
|
subsystem->xdamage_notify_event = damage_event + XDamageNotify;
|
2016-09-20 10:25:13 +03:00
|
|
|
subsystem->xdamage = XDamageCreate(subsystem->display, subsystem->root_window,
|
2016-10-14 11:01:02 +03:00
|
|
|
XDamageReportDeltaRectangles);
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 01:30:39 +04:00
|
|
|
if (!subsystem->xdamage)
|
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
|
|
|
#ifdef WITH_XFIXES
|
|
|
|
subsystem->xdamage_region = XFixesCreateRegion(subsystem->display, NULL, 0);
|
|
|
|
|
2014-07-14 01:30:39 +04:00
|
|
|
if (!subsystem->xdamage_region)
|
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
#endif
|
2014-07-14 01:30:39 +04:00
|
|
|
return 1;
|
2014-07-14 05:20:36 +04:00
|
|
|
#else
|
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
#endif
|
2014-07-14 05:20:36 +04:00
|
|
|
}
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2016-05-25 19:20:37 +03:00
|
|
|
static int x11_shadow_xshm_init(x11ShadowSubsystem* subsystem)
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
|
|
|
Bool pixmaps;
|
|
|
|
int major, minor;
|
2014-07-14 05:20:36 +04:00
|
|
|
XGCValues values;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (!XShmQueryExtension(subsystem->display))
|
2014-07-13 23:58:31 +04:00
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (!XShmQueryVersion(subsystem->display, &major, &minor, &pixmaps))
|
2014-07-13 23:58:31 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!pixmaps)
|
2014-07-12 07:01:34 +04:00
|
|
|
return -1;
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
subsystem->fb_shm_info.shmid = -1;
|
2016-09-20 10:25:13 +03:00
|
|
|
subsystem->fb_shm_info.shmaddr = (char*) - 1;
|
2014-07-14 05:20:36 +04:00
|
|
|
subsystem->fb_shm_info.readOnly = False;
|
2016-09-20 10:25:13 +03:00
|
|
|
subsystem->fb_image = XShmCreateImage(subsystem->display, subsystem->visual,
|
2016-10-14 11:01:02 +03:00
|
|
|
subsystem->depth,
|
|
|
|
ZPixmap, NULL, &(subsystem->fb_shm_info), subsystem->width, subsystem->height);
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (!subsystem->fb_image)
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "XShmCreateImage failed");
|
2014-07-12 07:01:34 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
subsystem->fb_shm_info.shmid = shmget(IPC_PRIVATE,
|
2016-10-14 11:01:02 +03:00
|
|
|
subsystem->fb_image->bytes_per_line * subsystem->fb_image->height,
|
|
|
|
IPC_CREAT | 0600);
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (subsystem->fb_shm_info.shmid == -1)
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "shmget failed");
|
2014-07-12 07:01:34 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
subsystem->fb_shm_info.shmaddr = shmat(subsystem->fb_shm_info.shmid, 0, 0);
|
|
|
|
subsystem->fb_image->data = subsystem->fb_shm_info.shmaddr;
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
if (subsystem->fb_shm_info.shmaddr == ((char*) - 1))
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "shmat failed");
|
2014-07-12 07:01:34 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (!XShmAttach(subsystem->display, &(subsystem->fb_shm_info)))
|
2014-07-13 23:58:31 +04:00
|
|
|
return -1;
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
XSync(subsystem->display, False);
|
|
|
|
shmctl(subsystem->fb_shm_info.shmid, IPC_RMID, 0);
|
|
|
|
subsystem->fb_pixmap = XShmCreatePixmap(subsystem->display,
|
2016-10-14 11:01:02 +03:00
|
|
|
subsystem->root_window, subsystem->fb_image->data, &(subsystem->fb_shm_info),
|
|
|
|
subsystem->fb_image->width, subsystem->fb_image->height,
|
|
|
|
subsystem->fb_image->depth);
|
2014-07-14 05:20:36 +04:00
|
|
|
XSync(subsystem->display, False);
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (!subsystem->fb_pixmap)
|
2014-07-13 23:58:31 +04:00
|
|
|
return -1;
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
values.subwindow_mode = IncludeInferiors;
|
|
|
|
values.graphics_exposures = False;
|
|
|
|
subsystem->xshm_gc = XCreateGC(subsystem->display, subsystem->root_window,
|
2016-10-14 11:01:02 +03:00
|
|
|
GCSubwindowMode | GCGraphicsExposures, &values);
|
2014-07-14 05:20:36 +04:00
|
|
|
XSetFunction(subsystem->display, subsystem->xshm_gc, GXcopy);
|
|
|
|
XSync(subsystem->display, False);
|
2014-07-13 23:58:31 +04:00
|
|
|
return 1;
|
2014-07-12 07:01:34 +04:00
|
|
|
}
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
UINT32 x11_shadow_enum_monitors(MONITOR_DEF* monitors, UINT32 maxMonitors)
|
2014-09-18 21:06:49 +04:00
|
|
|
{
|
|
|
|
int index;
|
2014-09-18 23:43:11 +04:00
|
|
|
Display* display;
|
|
|
|
int displayWidth;
|
|
|
|
int displayHeight;
|
2014-09-18 21:06:49 +04:00
|
|
|
int numMonitors = 0;
|
|
|
|
MONITOR_DEF* monitor;
|
|
|
|
|
2014-09-18 23:43:11 +04:00
|
|
|
if (!getenv("DISPLAY"))
|
|
|
|
setenv("DISPLAY", ":0", 1);
|
|
|
|
|
|
|
|
display = XOpenDisplay(NULL);
|
|
|
|
|
|
|
|
if (!display)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "failed to open display: %s", XDisplayName(NULL));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
displayWidth = WidthOfScreen(DefaultScreenOfDisplay(display));
|
|
|
|
displayHeight = HeightOfScreen(DefaultScreenOfDisplay(display));
|
2014-09-18 21:06:49 +04:00
|
|
|
#ifdef WITH_XINERAMA
|
|
|
|
{
|
2014-09-18 23:43:11 +04:00
|
|
|
int major, minor;
|
|
|
|
int xinerama_event;
|
|
|
|
int xinerama_error;
|
2014-09-18 21:06:49 +04:00
|
|
|
XineramaScreenInfo* screen;
|
|
|
|
XineramaScreenInfo* screens;
|
|
|
|
|
2014-09-18 23:43:11 +04:00
|
|
|
if (XineramaQueryExtension(display, &xinerama_event, &xinerama_error) &&
|
2016-09-20 10:25:13 +03:00
|
|
|
XDamageQueryVersion(display, &major, &minor) && XineramaIsActive(display))
|
2014-09-18 23:43:11 +04:00
|
|
|
{
|
|
|
|
screens = XineramaQueryScreens(display, &numMonitors);
|
2014-09-18 21:06:49 +04:00
|
|
|
|
2014-09-18 23:43:11 +04:00
|
|
|
if (numMonitors > maxMonitors)
|
|
|
|
numMonitors = maxMonitors;
|
2014-09-18 21:06:49 +04:00
|
|
|
|
2014-09-18 23:43:11 +04:00
|
|
|
if (screens && (numMonitors > 0))
|
2014-09-18 21:06:49 +04:00
|
|
|
{
|
2014-09-18 23:43:11 +04:00
|
|
|
for (index = 0; index < numMonitors; index++)
|
|
|
|
{
|
|
|
|
screen = &screens[index];
|
|
|
|
monitor = &monitors[index];
|
|
|
|
monitor->left = screen->x_org;
|
|
|
|
monitor->top = screen->y_org;
|
|
|
|
monitor->right = monitor->left + screen->width;
|
|
|
|
monitor->bottom = monitor->top + screen->height;
|
|
|
|
monitor->flags = (index == 0) ? 1 : 0;
|
|
|
|
}
|
2014-09-18 21:06:49 +04:00
|
|
|
}
|
|
|
|
|
2014-09-18 23:43:11 +04:00
|
|
|
XFree(screens);
|
|
|
|
}
|
2014-09-18 21:06:49 +04:00
|
|
|
}
|
|
|
|
#endif
|
2015-04-11 21:57:16 +03:00
|
|
|
XCloseDisplay(display);
|
|
|
|
|
2014-09-18 21:06:49 +04:00
|
|
|
if (numMonitors < 1)
|
|
|
|
{
|
|
|
|
index = 0;
|
|
|
|
numMonitors = 1;
|
|
|
|
monitor = &monitors[index];
|
|
|
|
monitor->left = 0;
|
|
|
|
monitor->top = 0;
|
2014-09-18 23:43:11 +04:00
|
|
|
monitor->right = displayWidth;
|
|
|
|
monitor->bottom = displayHeight;
|
2014-09-18 21:06:49 +04:00
|
|
|
monitor->flags = 1;
|
|
|
|
}
|
|
|
|
|
2017-11-29 16:17:27 +03:00
|
|
|
errno = 0;
|
2014-09-18 21:06:49 +04:00
|
|
|
return numMonitors;
|
|
|
|
}
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
static int x11_shadow_subsystem_init(rdpShadowSubsystem* sub)
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int pf_count;
|
|
|
|
int vi_count;
|
2014-07-16 22:11:37 +04:00
|
|
|
int nextensions;
|
|
|
|
char** extensions;
|
2014-07-12 07:01:34 +04:00
|
|
|
XVisualInfo* vi;
|
|
|
|
XVisualInfo* vis;
|
|
|
|
XVisualInfo template;
|
|
|
|
XPixmapFormatValues* pf;
|
|
|
|
XPixmapFormatValues* pfs;
|
2014-07-14 21:33:20 +04:00
|
|
|
MONITOR_DEF* virtualScreen;
|
2017-06-06 15:01:41 +03:00
|
|
|
x11ShadowSubsystem* subsystem = (x11ShadowSubsystem*)sub;
|
|
|
|
|
|
|
|
if (!subsystem)
|
|
|
|
return -1;
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
subsystem->common.numMonitors = x11_shadow_enum_monitors(subsystem->common.monitors, 16);
|
2014-09-18 23:43:11 +04:00
|
|
|
x11_shadow_subsystem_base_init(subsystem);
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-09-22 18:06:16 +04:00
|
|
|
if ((subsystem->depth != 24) && (subsystem->depth != 32))
|
2014-09-22 17:59:56 +04:00
|
|
|
{
|
2014-11-16 14:21:38 +03:00
|
|
|
WLog_ERR(TAG, "unsupported X11 server color depth: %d", subsystem->depth);
|
2014-09-22 17:59:56 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-07-16 22:11:37 +04:00
|
|
|
extensions = XListExtensions(subsystem->display, &nextensions);
|
|
|
|
|
|
|
|
if (!extensions || (nextensions < 0))
|
2017-11-29 16:17:27 +03:00
|
|
|
return -1;
|
2014-07-16 22:11:37 +04:00
|
|
|
|
|
|
|
for (i = 0; i < nextensions; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(extensions[i], "Composite") == 0)
|
|
|
|
subsystem->composite = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
XFreeExtensionList(extensions);
|
|
|
|
|
|
|
|
if (subsystem->composite)
|
|
|
|
subsystem->use_xdamage = FALSE;
|
|
|
|
|
2014-07-12 07:01:34 +04:00
|
|
|
pfs = XListPixmapFormats(subsystem->display, &pf_count);
|
|
|
|
|
|
|
|
if (!pfs)
|
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "XListPixmapFormats failed");
|
2014-07-14 01:30:39 +04:00
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < pf_count; i++)
|
|
|
|
{
|
|
|
|
pf = pfs + i;
|
|
|
|
|
|
|
|
if (pf->depth == subsystem->depth)
|
|
|
|
{
|
|
|
|
subsystem->bpp = pf->bits_per_pixel;
|
|
|
|
subsystem->scanline_pad = pf->scanline_pad;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
XFree(pfs);
|
2014-07-12 07:01:34 +04:00
|
|
|
ZeroMemory(&template, sizeof(template));
|
|
|
|
template.class = TrueColor;
|
|
|
|
template.screen = subsystem->number;
|
2016-09-20 10:25:13 +03:00
|
|
|
vis = XGetVisualInfo(subsystem->display, VisualClassMask | VisualScreenMask,
|
2016-10-14 11:01:02 +03:00
|
|
|
&template, &vi_count);
|
2014-07-12 07:01:34 +04:00
|
|
|
|
|
|
|
if (!vis)
|
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "XGetVisualInfo failed");
|
2014-07-14 01:30:39 +04:00
|
|
|
return -1;
|
2014-07-12 07:01:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < vi_count; i++)
|
|
|
|
{
|
|
|
|
vi = vis + i;
|
|
|
|
|
|
|
|
if (vi->depth == subsystem->depth)
|
|
|
|
{
|
|
|
|
subsystem->visual = vi->visual;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 10:25:13 +03:00
|
|
|
XFree(vis);
|
|
|
|
XSelectInput(subsystem->display, subsystem->root_window,
|
2016-10-14 11:01:02 +03:00
|
|
|
SubstructureNotifyMask);
|
2014-09-11 06:52:19 +04:00
|
|
|
subsystem->cursorMaxWidth = 256;
|
|
|
|
subsystem->cursorMaxHeight = 256;
|
2016-09-20 10:25:13 +03:00
|
|
|
subsystem->cursorPixels = _aligned_malloc(subsystem->cursorMaxWidth *
|
2017-11-29 16:17:27 +03:00
|
|
|
subsystem->cursorMaxHeight * 4, 16);
|
2014-09-11 03:04:28 +04:00
|
|
|
|
|
|
|
if (!subsystem->cursorPixels)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
x11_shadow_query_cursor(subsystem, TRUE);
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
if (subsystem->use_xfixes)
|
|
|
|
{
|
|
|
|
if (x11_shadow_xfixes_init(subsystem) < 0)
|
2017-11-29 16:17:27 +03:00
|
|
|
subsystem->use_xfixes = FALSE;
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (subsystem->use_xinerama)
|
|
|
|
{
|
|
|
|
if (x11_shadow_xinerama_init(subsystem) < 0)
|
2017-11-29 16:17:27 +03:00
|
|
|
subsystem->use_xinerama = FALSE;
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
|
2014-07-12 07:01:34 +04:00
|
|
|
if (subsystem->use_xshm)
|
|
|
|
{
|
|
|
|
if (x11_shadow_xshm_init(subsystem) < 0)
|
2017-11-29 16:17:27 +03:00
|
|
|
subsystem->use_xshm = FALSE;
|
2014-07-12 07:01:34 +04:00
|
|
|
}
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (subsystem->use_xdamage)
|
|
|
|
{
|
|
|
|
if (x11_shadow_xdamage_init(subsystem) < 0)
|
2017-11-29 16:17:27 +03:00
|
|
|
subsystem->use_xdamage = FALSE;
|
2014-07-14 05:20:36 +04:00
|
|
|
}
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
if (!(subsystem->common.event = CreateFileDescriptorEvent(NULL, FALSE, FALSE,
|
|
|
|
subsystem->xfds, WINPR_FD_READ)))
|
2015-05-05 14:55:48 +03:00
|
|
|
return -1;
|
2014-07-12 09:18:08 +04:00
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
virtualScreen = &(subsystem->common.virtualScreen);
|
2014-07-14 21:33:20 +04:00
|
|
|
virtualScreen->left = 0;
|
|
|
|
virtualScreen->top = 0;
|
|
|
|
virtualScreen->right = subsystem->width;
|
|
|
|
virtualScreen->bottom = subsystem->height;
|
|
|
|
virtualScreen->flags = 1;
|
2017-02-20 20:31:58 +03:00
|
|
|
WLog_INFO(TAG,
|
|
|
|
"X11 Extensions: XFixes: %"PRId32" Xinerama: %"PRId32" XDamage: %"PRId32" XShm: %"PRId32"",
|
2016-10-14 11:01:02 +03:00
|
|
|
subsystem->use_xfixes, subsystem->use_xinerama, subsystem->use_xdamage,
|
|
|
|
subsystem->use_xshm);
|
2014-07-12 07:01:34 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
static int x11_shadow_subsystem_uninit(rdpShadowSubsystem* sub)
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
2017-11-29 16:17:27 +03:00
|
|
|
x11ShadowSubsystem* subsystem = (x11ShadowSubsystem*)sub;
|
2017-06-06 15:01:41 +03:00
|
|
|
|
2014-07-12 07:01:34 +04:00
|
|
|
if (!subsystem)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (subsystem->display)
|
|
|
|
{
|
|
|
|
XCloseDisplay(subsystem->display);
|
|
|
|
subsystem->display = NULL;
|
|
|
|
}
|
|
|
|
|
2018-09-25 16:17:19 +03:00
|
|
|
if (subsystem->common.event)
|
2014-07-12 09:18:08 +04:00
|
|
|
{
|
2018-09-25 16:17:19 +03:00
|
|
|
CloseHandle(subsystem->common.event);
|
|
|
|
subsystem->common.event = NULL;
|
2014-07-12 09:18:08 +04:00
|
|
|
}
|
|
|
|
|
2014-09-11 03:04:28 +04:00
|
|
|
if (subsystem->cursorPixels)
|
|
|
|
{
|
|
|
|
_aligned_free(subsystem->cursorPixels);
|
|
|
|
subsystem->cursorPixels = NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-12 07:01:34 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
static int x11_shadow_subsystem_start(rdpShadowSubsystem* sub)
|
2014-07-12 07:01:34 +04:00
|
|
|
{
|
2017-11-29 16:17:27 +03:00
|
|
|
x11ShadowSubsystem* subsystem = (x11ShadowSubsystem*)sub;
|
2017-06-06 15:01:41 +03:00
|
|
|
|
2017-11-29 16:17:27 +03:00
|
|
|
if (!subsystem)
|
|
|
|
return -1;
|
2014-07-11 00:32:46 +04:00
|
|
|
|
2018-03-07 14:03:10 +03:00
|
|
|
if (!(subsystem->thread = CreateThread(NULL, 0, x11_shadow_subsystem_thread,
|
2016-10-14 11:01:02 +03:00
|
|
|
(void*) subsystem, 0, NULL)))
|
2015-05-05 14:55:48 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Failed to create thread");
|
|
|
|
return -1;
|
|
|
|
}
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2014-07-11 00:32:46 +04:00
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
static int x11_shadow_subsystem_stop(rdpShadowSubsystem* sub)
|
2014-07-14 05:20:36 +04:00
|
|
|
{
|
2017-11-29 16:17:27 +03:00
|
|
|
x11ShadowSubsystem* subsystem = (x11ShadowSubsystem*)sub;
|
2017-06-06 15:01:41 +03:00
|
|
|
|
2017-11-29 16:17:27 +03:00
|
|
|
if (!subsystem)
|
|
|
|
return -1;
|
2014-07-14 05:20:36 +04:00
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
if (subsystem->thread)
|
|
|
|
{
|
2018-09-25 16:17:19 +03:00
|
|
|
if (MessageQueue_PostQuit(subsystem->common.MsgPipe->In, 0))
|
2015-05-23 23:47:18 +03:00
|
|
|
WaitForSingleObject(subsystem->thread, INFINITE);
|
2016-09-20 10:25:13 +03:00
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
CloseHandle(subsystem->thread);
|
|
|
|
subsystem->thread = NULL;
|
|
|
|
}
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
return 1;
|
2014-07-11 00:32:46 +04:00
|
|
|
}
|
2014-07-12 07:01:34 +04:00
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
static rdpShadowSubsystem* x11_shadow_subsystem_new(void)
|
2014-07-14 05:20:36 +04:00
|
|
|
{
|
|
|
|
x11ShadowSubsystem* subsystem;
|
|
|
|
subsystem = (x11ShadowSubsystem*) calloc(1, sizeof(x11ShadowSubsystem));
|
|
|
|
|
|
|
|
if (!subsystem)
|
|
|
|
return NULL;
|
|
|
|
|
2014-09-27 03:03:48 +04:00
|
|
|
#ifdef WITH_PAM
|
2018-09-25 16:17:19 +03:00
|
|
|
subsystem->common.Authenticate = x11_shadow_pam_authenticate;
|
2014-09-27 03:03:48 +04:00
|
|
|
#endif
|
2018-09-25 16:17:19 +03:00
|
|
|
subsystem->common.SynchronizeEvent = x11_shadow_input_synchronize_event;
|
|
|
|
subsystem->common.KeyboardEvent = x11_shadow_input_keyboard_event;
|
|
|
|
subsystem->common.UnicodeKeyboardEvent = x11_shadow_input_unicode_keyboard_event;
|
|
|
|
subsystem->common.MouseEvent = x11_shadow_input_mouse_event;
|
|
|
|
subsystem->common.ExtendedMouseEvent = x11_shadow_input_extended_mouse_event;
|
2014-07-16 22:11:37 +04:00
|
|
|
subsystem->composite = FALSE;
|
2014-09-10 22:58:14 +04:00
|
|
|
subsystem->use_xshm = FALSE; /* temporarily disabled */
|
2014-07-14 21:33:20 +04:00
|
|
|
subsystem->use_xfixes = TRUE;
|
2014-07-16 22:11:37 +04:00
|
|
|
subsystem->use_xdamage = FALSE;
|
2014-07-14 21:33:20 +04:00
|
|
|
subsystem->use_xinerama = TRUE;
|
2017-06-06 15:01:41 +03:00
|
|
|
return (rdpShadowSubsystem*)subsystem;
|
2014-07-14 05:20:36 +04:00
|
|
|
}
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
static void x11_shadow_subsystem_free(rdpShadowSubsystem* subsystem)
|
2014-09-19 01:22:44 +04:00
|
|
|
{
|
|
|
|
if (!subsystem)
|
|
|
|
return;
|
|
|
|
|
|
|
|
x11_shadow_subsystem_uninit(subsystem);
|
|
|
|
free(subsystem);
|
|
|
|
}
|
|
|
|
|
2016-02-26 21:25:49 +03:00
|
|
|
FREERDP_API int X11_ShadowSubsystemEntry(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
2014-07-14 05:20:36 +04:00
|
|
|
{
|
2017-11-29 16:17:27 +03:00
|
|
|
if (!pEntryPoints)
|
|
|
|
return -1;
|
2017-06-06 15:01:41 +03:00
|
|
|
|
|
|
|
pEntryPoints->New = x11_shadow_subsystem_new;
|
|
|
|
pEntryPoints->Free = x11_shadow_subsystem_free;
|
|
|
|
pEntryPoints->Init = x11_shadow_subsystem_init;
|
|
|
|
pEntryPoints->Uninit = x11_shadow_subsystem_uninit;
|
|
|
|
pEntryPoints->Start = x11_shadow_subsystem_start;
|
|
|
|
pEntryPoints->Stop = x11_shadow_subsystem_stop;
|
|
|
|
pEntryPoints->EnumMonitors = x11_shadow_enum_monitors;
|
2014-09-18 23:43:11 +04:00
|
|
|
return 1;
|
2014-07-14 05:20:36 +04:00
|
|
|
}
|