2014-07-11 01:20:41 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/file.h>
|
|
|
|
#include <winpr/path.h>
|
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/thread.h>
|
2014-07-14 03:42:57 +04:00
|
|
|
#include <winpr/sysinfo.h>
|
2015-04-08 21:13:52 +03:00
|
|
|
#include <winpr/interlocked.h>
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
#include <freerdp/log.h>
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
#include "shadow.h"
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
#define TAG CLIENT_TAG("shadow")
|
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
static void shadow_client_free_queued_message(void *obj)
|
|
|
|
{
|
|
|
|
wMessage *message = (wMessage*)obj;
|
|
|
|
if (message->Free)
|
|
|
|
{
|
|
|
|
message->Free(message);
|
|
|
|
message->Free = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
BOOL shadow_client_context_new(freerdp_peer* peer, rdpShadowClient* client)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-07-14 03:42:57 +04:00
|
|
|
rdpSettings* settings;
|
2014-07-12 03:30:40 +04:00
|
|
|
rdpShadowServer* server;
|
2015-04-08 21:13:52 +03:00
|
|
|
const wObject cb = { NULL, NULL, NULL, shadow_client_free_queued_message, NULL };
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
server = (rdpShadowServer*) peer->ContextExtra;
|
|
|
|
client->server = server;
|
2014-09-19 01:22:44 +04:00
|
|
|
client->subsystem = server->subsystem;
|
2014-07-12 09:18:08 +04:00
|
|
|
|
2014-07-14 03:42:57 +04:00
|
|
|
settings = peer->settings;
|
2014-08-15 02:41:22 +04:00
|
|
|
|
2014-07-14 03:42:57 +04:00
|
|
|
settings->ColorDepth = 32;
|
2014-09-24 20:10:02 +04:00
|
|
|
settings->NSCodec = TRUE;
|
2014-07-14 03:42:57 +04:00
|
|
|
settings->RemoteFxCodec = TRUE;
|
|
|
|
settings->BitmapCacheV3Enabled = TRUE;
|
|
|
|
settings->FrameMarkerCommandEnabled = TRUE;
|
|
|
|
settings->SurfaceFrameMarkerEnabled = TRUE;
|
2014-09-22 19:38:33 +04:00
|
|
|
settings->SupportGraphicsPipeline = FALSE;
|
2014-07-14 03:42:57 +04:00
|
|
|
|
2014-09-20 23:25:33 +04:00
|
|
|
settings->DrawAllowSkipAlpha = TRUE;
|
|
|
|
settings->DrawAllowColorSubsampling = TRUE;
|
|
|
|
settings->DrawAllowDynamicColorFidelity = TRUE;
|
|
|
|
|
2014-11-07 21:51:10 +03:00
|
|
|
settings->CompressionLevel = PACKET_COMPR_TYPE_RDP6;
|
|
|
|
|
2014-08-15 02:41:22 +04:00
|
|
|
settings->RdpSecurity = TRUE;
|
2014-07-15 02:44:15 +04:00
|
|
|
settings->TlsSecurity = TRUE;
|
|
|
|
settings->NlaSecurity = FALSE;
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!(settings->CertificateFile = _strdup(server->CertificateFile)))
|
|
|
|
goto fail_cert_file;
|
|
|
|
if (!(settings->PrivateKeyFile = _strdup(server->PrivateKeyFile)))
|
|
|
|
goto fail_privkey_file;
|
|
|
|
if (!(settings->RdpKeyFile = _strdup(settings->PrivateKeyFile)))
|
|
|
|
goto fail_rdpkey_file;
|
2014-07-15 02:44:15 +04:00
|
|
|
|
2014-08-15 21:50:22 +04:00
|
|
|
|
2014-11-21 23:10:39 +03:00
|
|
|
if (server->ipcSocket)
|
|
|
|
{
|
|
|
|
settings->LyncRdpMode = TRUE;
|
|
|
|
settings->CompressionEnabled = FALSE;
|
|
|
|
}
|
|
|
|
|
2014-07-15 02:01:29 +04:00
|
|
|
client->inLobby = TRUE;
|
|
|
|
client->mayView = server->mayView;
|
|
|
|
client->mayInteract = server->mayInteract;
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!InitializeCriticalSectionAndSpinCount(&(client->lock), 4000))
|
|
|
|
goto fail_client_lock;
|
2014-07-19 01:26:21 +04:00
|
|
|
|
|
|
|
region16_init(&(client->invalidRegion));
|
|
|
|
|
2014-07-15 02:01:29 +04:00
|
|
|
client->vcm = WTSOpenServerA((LPSTR) peer->context);
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!client->vcm || client->vcm == INVALID_HANDLE_VALUE)
|
|
|
|
goto fail_open_server;
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
if (!(client->MsgQueue = MessageQueue_New(&cb)))
|
|
|
|
goto fail_message_queue;
|
2014-07-19 01:26:21 +04:00
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!(client->encoder = shadow_encoder_new(client)))
|
|
|
|
goto fail_encoder_new;
|
2014-07-19 01:26:21 +04:00
|
|
|
|
2015-05-20 20:19:50 +03:00
|
|
|
if (ArrayList_Add(server->clients, (void*) client) >= 0)
|
|
|
|
return TRUE;
|
2015-04-28 18:00:41 +03:00
|
|
|
|
2015-05-20 20:19:50 +03:00
|
|
|
shadow_encoder_free(client->encoder);
|
2015-05-21 11:56:56 +03:00
|
|
|
client->encoder = NULL;
|
2015-04-28 18:00:41 +03:00
|
|
|
fail_encoder_new:
|
2015-04-08 21:13:52 +03:00
|
|
|
MessageQueue_Free(client->MsgQueue);
|
|
|
|
client->MsgQueue = NULL;
|
|
|
|
fail_message_queue:
|
2015-04-28 18:00:41 +03:00
|
|
|
WTSCloseServer((HANDLE) client->vcm);
|
|
|
|
client->vcm = NULL;
|
|
|
|
fail_open_server:
|
|
|
|
DeleteCriticalSection(&(client->lock));
|
|
|
|
fail_client_lock:
|
|
|
|
free(settings->RdpKeyFile);
|
|
|
|
settings->RdpKeyFile = NULL;
|
|
|
|
fail_rdpkey_file:
|
|
|
|
free(settings->PrivateKeyFile);
|
|
|
|
settings->PrivateKeyFile = NULL;
|
|
|
|
fail_privkey_file:
|
|
|
|
free(settings->CertificateFile);
|
|
|
|
settings->CertificateFile = NULL;
|
|
|
|
fail_cert_file:
|
|
|
|
|
|
|
|
return FALSE;
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
void shadow_client_context_free(freerdp_peer* peer, rdpShadowClient* client)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-07-19 01:26:21 +04:00
|
|
|
rdpShadowServer* server = client->server;
|
|
|
|
|
|
|
|
ArrayList_Remove(server->clients, (void*) client);
|
|
|
|
|
|
|
|
DeleteCriticalSection(&(client->lock));
|
|
|
|
|
|
|
|
region16_uninit(&(client->invalidRegion));
|
|
|
|
|
2014-07-15 02:01:29 +04:00
|
|
|
WTSCloseServer((HANDLE) client->vcm);
|
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
/* Clear queued messages and free resource */
|
|
|
|
MessageQueue_Clear(client->MsgQueue);
|
|
|
|
MessageQueue_Free(client->MsgQueue);
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
if (client->encoder)
|
|
|
|
{
|
|
|
|
shadow_encoder_free(client->encoder);
|
|
|
|
client->encoder = NULL;
|
|
|
|
}
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
void shadow_client_message_free(wMessage* message)
|
|
|
|
{
|
2015-06-15 18:54:30 +03:00
|
|
|
switch(message->id)
|
2014-09-19 06:18:58 +04:00
|
|
|
{
|
2015-06-15 18:54:30 +03:00
|
|
|
case SHADOW_MSG_IN_REFRESH_OUTPUT_ID:
|
|
|
|
free(((SHADOW_MSG_IN_REFRESH_OUTPUT*)message->wParam)->rects);
|
|
|
|
free(message->wParam);
|
|
|
|
break;
|
2014-09-19 06:18:58 +04:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
case SHADOW_MSG_IN_SUPPRESS_OUTPUT_ID:
|
|
|
|
free(message->wParam);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
WLog_ERR(TAG, "Unknown message id: %u", message->id);
|
|
|
|
free(message->wParam);
|
|
|
|
break;
|
2014-09-19 06:18:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
BOOL shadow_client_capabilities(freerdp_peer* peer)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
static INLINE void shadow_client_calc_desktop_size(rdpShadowServer* server, int* pWidth, int* pHeight)
|
|
|
|
{
|
|
|
|
RECTANGLE_16 viewport = {0, 0, server->screen->width, server->screen->height};
|
|
|
|
|
|
|
|
if (server->shareSubRect)
|
|
|
|
{
|
|
|
|
rectangles_intersection(&viewport, &(server->subRect), &viewport);
|
|
|
|
}
|
|
|
|
|
|
|
|
(*pWidth) = viewport.right - viewport.left;
|
|
|
|
(*pHeight) = viewport.bottom - viewport.top;
|
|
|
|
}
|
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
BOOL shadow_client_post_connect(freerdp_peer* peer)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-09-27 03:03:48 +04:00
|
|
|
int authStatus;
|
2014-08-07 20:36:45 +04:00
|
|
|
int width, height;
|
2014-07-14 21:33:20 +04:00
|
|
|
rdpSettings* settings;
|
2014-07-12 08:01:29 +04:00
|
|
|
rdpShadowClient* client;
|
2014-09-11 00:27:24 +04:00
|
|
|
rdpShadowServer* server;
|
2014-07-15 02:01:29 +04:00
|
|
|
RECTANGLE_16 invalidRect;
|
2014-09-27 03:03:48 +04:00
|
|
|
rdpShadowSubsystem* subsystem;
|
2014-07-12 08:01:29 +04:00
|
|
|
|
|
|
|
client = (rdpShadowClient*) peer->context;
|
2014-07-14 21:33:20 +04:00
|
|
|
settings = peer->settings;
|
2014-09-11 00:27:24 +04:00
|
|
|
server = client->server;
|
2014-09-27 03:03:48 +04:00
|
|
|
subsystem = server->subsystem;
|
2014-09-11 00:27:24 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
shadow_client_calc_desktop_size(server, &width, &height);
|
2014-09-11 00:27:24 +04:00
|
|
|
settings->DesktopWidth = width;
|
|
|
|
settings->DesktopHeight = height;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-16 23:12:20 +04:00
|
|
|
if (settings->ColorDepth == 24)
|
|
|
|
settings->ColorDepth = 16; /* disable 24bpp */
|
|
|
|
|
2014-10-25 23:36:36 +04:00
|
|
|
if (settings->MultifragMaxRequestSize < 0x3F0000)
|
|
|
|
settings->NSCodec = FALSE; /* NSCodec compressor does not support fragmentation yet */
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "Client from %s is activated (%dx%d@%d)",
|
2014-07-14 21:33:20 +04:00
|
|
|
peer->hostname, settings->DesktopWidth, settings->DesktopHeight, settings->ColorDepth);
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
peer->update->DesktopResize(peer->update->context);
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-15 02:01:29 +04:00
|
|
|
shadow_client_channels_post_connect(client);
|
|
|
|
|
2014-08-07 20:36:45 +04:00
|
|
|
invalidRect.left = 0;
|
|
|
|
invalidRect.top = 0;
|
2015-04-11 21:57:16 +03:00
|
|
|
invalidRect.right = server->screen->width;
|
|
|
|
invalidRect.bottom = server->screen->height;
|
2014-08-07 20:36:45 +04:00
|
|
|
|
|
|
|
region16_union_rect(&(client->invalidRegion), &(client->invalidRegion), &invalidRect);
|
|
|
|
|
2014-09-27 03:03:48 +04:00
|
|
|
authStatus = -1;
|
|
|
|
|
|
|
|
if (settings->Username && settings->Password)
|
|
|
|
settings->AutoLogonEnabled = TRUE;
|
|
|
|
|
|
|
|
if (settings->AutoLogonEnabled && server->authentication)
|
|
|
|
{
|
|
|
|
if (subsystem->Authenticate)
|
|
|
|
{
|
|
|
|
authStatus = subsystem->Authenticate(subsystem,
|
|
|
|
settings->Username, settings->Domain, settings->Password);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (server->authentication)
|
|
|
|
{
|
|
|
|
if (authStatus < 0)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "client authentication failure: %d", authStatus);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 20:37:41 +03:00
|
|
|
if (subsystem->ClientConnect)
|
|
|
|
{
|
2015-06-15 14:37:26 +03:00
|
|
|
return subsystem->ClientConnect(subsystem, client);
|
2015-04-08 20:37:41 +03:00
|
|
|
}
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
/* Convert rects in sub rect coordinate to client/surface coordinate */
|
|
|
|
static INLINE void shadow_client_convert_rects(rdpShadowClient* client,
|
|
|
|
RECTANGLE_16* dst, RECTANGLE_16* src, UINT32 numRects)
|
|
|
|
{
|
|
|
|
if (client->server->shareSubRect)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
UINT16 offsetX = client->server->subRect.left;
|
|
|
|
UINT16 offsetY = client->server->subRect.top;
|
|
|
|
|
|
|
|
for (i = 0; i < numRects; i++)
|
|
|
|
{
|
|
|
|
dst[i].left = src[i].left + offsetX;
|
|
|
|
dst[i].right = src[i].right + offsetX;
|
|
|
|
dst[i].top = src[i].top + offsetY;
|
|
|
|
dst[i].bottom = src[i].bottom + offsetY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CopyMemory(dst, src, numRects * sizeof(RECTANGLE_16));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
BOOL shadow_client_refresh_rect(rdpShadowClient* client, BYTE count, RECTANGLE_16* areas)
|
2014-09-19 01:22:44 +04:00
|
|
|
{
|
2014-09-19 06:18:58 +04:00
|
|
|
wMessage message = { 0 };
|
|
|
|
SHADOW_MSG_IN_REFRESH_OUTPUT* wParam;
|
2014-09-19 01:22:44 +04:00
|
|
|
wMessagePipe* MsgPipe = client->subsystem->MsgPipe;
|
|
|
|
|
2015-06-08 16:55:11 +03:00
|
|
|
if (count && !areas)
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-09-19 06:18:58 +04:00
|
|
|
|
2015-05-11 10:07:39 +03:00
|
|
|
if (!(wParam = (SHADOW_MSG_IN_REFRESH_OUTPUT*) calloc(1, sizeof(SHADOW_MSG_IN_REFRESH_OUTPUT))))
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-09-19 06:18:58 +04:00
|
|
|
|
|
|
|
wParam->numRects = (UINT32) count;
|
2014-09-19 01:22:44 +04:00
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
if (wParam->numRects)
|
|
|
|
{
|
|
|
|
wParam->rects = (RECTANGLE_16*) calloc(wParam->numRects, sizeof(RECTANGLE_16));
|
|
|
|
|
|
|
|
if (!wParam->rects)
|
2014-11-17 02:21:04 +03:00
|
|
|
{
|
|
|
|
free (wParam);
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-11-17 02:21:04 +03:00
|
|
|
}
|
2014-09-19 06:18:58 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
shadow_client_convert_rects(client, wParam->rects, areas, wParam->numRects);
|
2015-06-08 17:34:45 +03:00
|
|
|
}
|
2014-09-19 06:18:58 +04:00
|
|
|
|
|
|
|
message.id = SHADOW_MSG_IN_REFRESH_OUTPUT_ID;
|
|
|
|
message.wParam = (void*) wParam;
|
|
|
|
message.lParam = NULL;
|
|
|
|
message.context = (void*) client;
|
|
|
|
message.Free = shadow_client_message_free;
|
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
return MessageQueue_Dispatch(MsgPipe->In, &message);
|
2014-09-19 01:22:44 +04:00
|
|
|
}
|
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
BOOL shadow_client_suppress_output(rdpShadowClient* client, BYTE allow, RECTANGLE_16* area)
|
2014-09-19 01:22:44 +04:00
|
|
|
{
|
2014-09-19 06:18:58 +04:00
|
|
|
wMessage message = { 0 };
|
|
|
|
SHADOW_MSG_IN_SUPPRESS_OUTPUT* wParam;
|
2014-09-19 01:22:44 +04:00
|
|
|
wMessagePipe* MsgPipe = client->subsystem->MsgPipe;
|
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
wParam = (SHADOW_MSG_IN_SUPPRESS_OUTPUT*) calloc(1, sizeof(SHADOW_MSG_IN_SUPPRESS_OUTPUT));
|
|
|
|
if (!wParam)
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-09-19 06:18:58 +04:00
|
|
|
|
|
|
|
wParam->allow = (UINT32) allow;
|
|
|
|
|
|
|
|
if (area)
|
2015-04-11 21:57:16 +03:00
|
|
|
shadow_client_convert_rects(client, &(wParam->rect), area, 1);
|
2014-09-19 06:18:58 +04:00
|
|
|
|
|
|
|
message.id = SHADOW_MSG_IN_SUPPRESS_OUTPUT_ID;
|
|
|
|
message.wParam = (void*) wParam;
|
|
|
|
message.lParam = NULL;
|
|
|
|
message.context = (void*) client;
|
|
|
|
message.Free = shadow_client_message_free;
|
2014-09-19 01:22:44 +04:00
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
return MessageQueue_Dispatch(MsgPipe->In, &message);
|
2014-09-19 01:22:44 +04:00
|
|
|
}
|
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
BOOL shadow_client_activate(freerdp_peer* peer)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-09-24 05:05:10 +04:00
|
|
|
rdpSettings* settings = peer->settings;
|
|
|
|
rdpShadowClient* client = (rdpShadowClient*) peer->context;
|
2014-07-12 08:01:29 +04:00
|
|
|
|
2014-10-30 02:11:22 +03:00
|
|
|
if (settings->ClientDir && (strcmp(settings->ClientDir, "librdp") == 0))
|
2014-09-24 05:05:10 +04:00
|
|
|
{
|
|
|
|
/* Hack for Mac/iOS/Android Microsoft RDP clients */
|
2014-09-24 20:10:02 +04:00
|
|
|
|
2014-09-24 05:05:10 +04:00
|
|
|
settings->RemoteFxCodec = FALSE;
|
2014-09-24 20:10:02 +04:00
|
|
|
|
|
|
|
settings->NSCodec = FALSE;
|
2014-09-24 05:05:10 +04:00
|
|
|
settings->NSCodecAllowSubsampling = FALSE;
|
2014-09-24 20:10:02 +04:00
|
|
|
|
|
|
|
settings->SurfaceFrameMarkerEnabled = FALSE;
|
2014-09-24 05:05:10 +04:00
|
|
|
}
|
2014-07-12 08:01:29 +04:00
|
|
|
|
|
|
|
client->activated = TRUE;
|
2014-07-15 02:01:29 +04:00
|
|
|
client->inLobby = client->mayView ? FALSE : TRUE;
|
2014-07-12 08:01:29 +04:00
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
shadow_encoder_reset(client->encoder);
|
2014-07-15 20:50:47 +04:00
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
return shadow_client_refresh_rect(client, 0, NULL);
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
BOOL shadow_client_surface_frame_acknowledge(rdpShadowClient* client, UINT32 frameId)
|
2014-07-14 03:42:57 +04:00
|
|
|
{
|
2015-04-09 21:33:54 +03:00
|
|
|
/*
|
|
|
|
* Record the last client acknowledged frame id to
|
|
|
|
* calculate how much frames are in progress.
|
|
|
|
* Some rdp clients (win7 mstsc) skips frame ACK if it is
|
|
|
|
* inactive, we should not expect ACK for each frame.
|
|
|
|
* So it is OK to calculate inflight frame count according to
|
|
|
|
* a latest acknowledged frame id.
|
|
|
|
*/
|
|
|
|
client->encoder->lastAckframeId = frameId;
|
2014-07-14 03:42:57 +04:00
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
return TRUE;
|
2014-07-14 03:42:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_client_send_surface_frame_marker(rdpShadowClient* client, UINT32 action, UINT32 id)
|
|
|
|
{
|
|
|
|
SURFACE_FRAME_MARKER surfaceFrameMarker;
|
|
|
|
rdpContext* context = (rdpContext*) client;
|
|
|
|
rdpUpdate* update = context->update;
|
|
|
|
|
|
|
|
surfaceFrameMarker.frameAction = action;
|
|
|
|
surfaceFrameMarker.frameId = id;
|
|
|
|
|
|
|
|
IFCALL(update->SurfaceFrameMarker, context, &surfaceFrameMarker);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
int shadow_client_send_surface_bits(rdpShadowClient* client, rdpShadowSurface* surface, int nXSrc, int nYSrc, int nWidth, int nHeight)
|
2014-07-12 08:01:29 +04:00
|
|
|
{
|
|
|
|
int i;
|
2014-09-19 22:23:17 +04:00
|
|
|
BOOL first;
|
|
|
|
BOOL last;
|
2014-07-12 08:01:29 +04:00
|
|
|
wStream* s;
|
2014-07-12 09:18:08 +04:00
|
|
|
int nSrcStep;
|
|
|
|
BYTE* pSrcData;
|
2014-07-12 08:01:29 +04:00
|
|
|
int numMessages;
|
2014-07-14 03:42:57 +04:00
|
|
|
UINT32 frameId = 0;
|
2014-07-12 08:01:29 +04:00
|
|
|
rdpUpdate* update;
|
|
|
|
rdpContext* context;
|
|
|
|
rdpSettings* settings;
|
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowEncoder* encoder;
|
|
|
|
SURFACE_BITS_COMMAND cmd;
|
|
|
|
|
|
|
|
context = (rdpContext*) client;
|
|
|
|
update = context->update;
|
|
|
|
settings = context->settings;
|
|
|
|
|
|
|
|
server = client->server;
|
2014-07-19 01:26:21 +04:00
|
|
|
encoder = client->encoder;
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-12 08:01:29 +04:00
|
|
|
pSrcData = surface->data;
|
|
|
|
nSrcStep = surface->scanline;
|
|
|
|
|
2014-09-11 00:27:24 +04:00
|
|
|
if (server->shareSubRect)
|
|
|
|
{
|
|
|
|
int subX, subY;
|
|
|
|
int subWidth, subHeight;
|
|
|
|
|
|
|
|
subX = server->subRect.left;
|
|
|
|
subY = server->subRect.top;
|
|
|
|
subWidth = server->subRect.right - server->subRect.left;
|
|
|
|
subHeight = server->subRect.bottom - server->subRect.top;
|
|
|
|
|
|
|
|
nXSrc -= subX;
|
|
|
|
nYSrc -= subY;
|
|
|
|
pSrcData = &pSrcData[(subY * nSrcStep) + (subX * 4)];
|
|
|
|
}
|
|
|
|
|
2014-07-14 03:42:57 +04:00
|
|
|
if (encoder->frameAck)
|
2015-04-09 21:33:54 +03:00
|
|
|
frameId = shadow_encoder_create_frame_id(encoder);
|
2014-07-14 03:42:57 +04:00
|
|
|
|
2014-09-21 00:29:13 +04:00
|
|
|
if (settings->RemoteFxCodec)
|
2014-07-12 08:01:29 +04:00
|
|
|
{
|
|
|
|
RFX_RECT rect;
|
|
|
|
RFX_MESSAGE* messages;
|
2015-04-23 16:42:21 +03:00
|
|
|
RFX_RECT *messageRects = NULL;
|
2014-07-12 08:01:29 +04:00
|
|
|
|
2014-09-20 23:25:33 +04:00
|
|
|
shadow_encoder_prepare(encoder, FREERDP_CODEC_REMOTEFX);
|
|
|
|
|
2014-07-16 22:11:37 +04:00
|
|
|
s = encoder->bs;
|
2014-07-12 08:01:29 +04:00
|
|
|
|
|
|
|
rect.x = nXSrc;
|
|
|
|
rect.y = nYSrc;
|
|
|
|
rect.width = nWidth;
|
|
|
|
rect.height = nHeight;
|
|
|
|
|
2015-04-23 16:42:21 +03:00
|
|
|
if (!(messages = rfx_encode_messages(encoder->rfx, &rect, 1, pSrcData,
|
2015-04-11 21:57:16 +03:00
|
|
|
settings->DesktopWidth, settings->DesktopHeight, nSrcStep, &numMessages,
|
2015-04-23 16:42:21 +03:00
|
|
|
settings->MultifragMaxRequestSize)))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2014-07-12 08:01:29 +04:00
|
|
|
|
|
|
|
cmd.codecID = settings->RemoteFxCodecId;
|
|
|
|
|
|
|
|
cmd.destLeft = 0;
|
|
|
|
cmd.destTop = 0;
|
2015-04-11 21:57:16 +03:00
|
|
|
cmd.destRight = settings->DesktopWidth;
|
|
|
|
cmd.destBottom = settings->DesktopHeight;
|
2014-07-12 08:01:29 +04:00
|
|
|
|
|
|
|
cmd.bpp = 32;
|
2015-04-11 21:57:16 +03:00
|
|
|
cmd.width = settings->DesktopWidth;
|
|
|
|
cmd.height = settings->DesktopHeight;
|
2015-05-22 12:12:41 +03:00
|
|
|
cmd.skipCompression = TRUE;
|
2014-07-12 08:01:29 +04:00
|
|
|
|
2015-04-23 16:42:21 +03:00
|
|
|
if (numMessages > 0)
|
|
|
|
messageRects = messages[0].rects;
|
|
|
|
|
2014-07-12 08:01:29 +04:00
|
|
|
for (i = 0; i < numMessages; i++)
|
|
|
|
{
|
|
|
|
Stream_SetPosition(s, 0);
|
2015-04-23 16:42:21 +03:00
|
|
|
if (!rfx_write_message(encoder->rfx, s, &messages[i]))
|
|
|
|
{
|
|
|
|
while (i < numMessages)
|
|
|
|
{
|
|
|
|
rfx_message_free(encoder->rfx, &messages[i++]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-07-12 08:01:29 +04:00
|
|
|
rfx_message_free(encoder->rfx, &messages[i]);
|
|
|
|
|
|
|
|
cmd.bitmapDataLength = Stream_GetPosition(s);
|
|
|
|
cmd.bitmapData = Stream_Buffer(s);
|
|
|
|
|
2014-09-19 22:23:17 +04:00
|
|
|
first = (i == 0) ? TRUE : FALSE;
|
|
|
|
last = ((i + 1) == numMessages) ? TRUE : FALSE;
|
|
|
|
|
|
|
|
if (!encoder->frameAck)
|
|
|
|
IFCALL(update->SurfaceBits, update->context, &cmd);
|
|
|
|
else
|
|
|
|
IFCALL(update->SurfaceFrameBits, update->context, &cmd, first, last, frameId);
|
2014-07-12 08:01:29 +04:00
|
|
|
}
|
|
|
|
|
2015-04-23 16:42:21 +03:00
|
|
|
free(messageRects);
|
2014-07-12 08:01:29 +04:00
|
|
|
free(messages);
|
|
|
|
}
|
|
|
|
else if (settings->NSCodec)
|
|
|
|
{
|
2014-09-20 23:25:33 +04:00
|
|
|
shadow_encoder_prepare(encoder, FREERDP_CODEC_NSCODEC);
|
|
|
|
|
2014-07-16 22:11:37 +04:00
|
|
|
s = encoder->bs;
|
2014-09-24 20:10:02 +04:00
|
|
|
Stream_SetPosition(s, 0);
|
|
|
|
|
|
|
|
pSrcData = &pSrcData[(nYSrc * nSrcStep) + (nXSrc * 4)];
|
2014-07-12 08:01:29 +04:00
|
|
|
|
2014-09-24 20:10:02 +04:00
|
|
|
nsc_compose_message(encoder->nsc, s, pSrcData, nWidth, nHeight, nSrcStep);
|
2014-07-12 08:01:29 +04:00
|
|
|
|
|
|
|
cmd.bpp = 32;
|
|
|
|
cmd.codecID = settings->NSCodecId;
|
2014-09-24 20:10:02 +04:00
|
|
|
cmd.destLeft = nXSrc;
|
|
|
|
cmd.destTop = nYSrc;
|
|
|
|
cmd.destRight = cmd.destLeft + nWidth;
|
|
|
|
cmd.destBottom = cmd.destTop + nHeight;
|
|
|
|
cmd.width = nWidth;
|
|
|
|
cmd.height = nHeight;
|
|
|
|
|
|
|
|
cmd.bitmapDataLength = Stream_GetPosition(s);
|
|
|
|
cmd.bitmapData = Stream_Buffer(s);
|
|
|
|
|
|
|
|
first = TRUE;
|
|
|
|
last = TRUE;
|
|
|
|
|
|
|
|
if (!encoder->frameAck)
|
|
|
|
IFCALL(update->SurfaceBits, update->context, &cmd);
|
|
|
|
else
|
|
|
|
IFCALL(update->SurfaceFrameBits, update->context, &cmd, first, last, frameId);
|
2014-07-12 08:01:29 +04:00
|
|
|
}
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
return 1;
|
2014-07-12 08:01:29 +04:00
|
|
|
}
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
int shadow_client_send_bitmap_update(rdpShadowClient* client, rdpShadowSurface* surface, int nXSrc, int nYSrc, int nWidth, int nHeight)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-07-15 02:44:15 +04:00
|
|
|
BYTE* data;
|
|
|
|
BYTE* buffer;
|
2014-09-24 21:17:52 +04:00
|
|
|
int yIdx, xIdx, k;
|
2014-07-15 02:44:15 +04:00
|
|
|
int rows, cols;
|
|
|
|
int nSrcStep;
|
|
|
|
BYTE* pSrcData;
|
2014-09-20 23:25:33 +04:00
|
|
|
UINT32 DstSize;
|
2014-09-24 21:17:52 +04:00
|
|
|
UINT32 SrcFormat;
|
|
|
|
BITMAP_DATA* bitmap;
|
2014-07-15 02:44:15 +04:00
|
|
|
rdpUpdate* update;
|
|
|
|
rdpContext* context;
|
|
|
|
rdpSettings* settings;
|
2014-09-21 00:29:13 +04:00
|
|
|
UINT32 maxUpdateSize;
|
|
|
|
UINT32 totalBitmapSize;
|
|
|
|
UINT32 updateSizeEstimate;
|
2014-07-15 02:44:15 +04:00
|
|
|
BITMAP_DATA* bitmapData;
|
|
|
|
BITMAP_UPDATE bitmapUpdate;
|
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowEncoder* encoder;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
context = (rdpContext*) client;
|
|
|
|
update = context->update;
|
|
|
|
settings = context->settings;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
server = client->server;
|
2014-07-19 01:26:21 +04:00
|
|
|
encoder = client->encoder;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-09-21 00:29:13 +04:00
|
|
|
maxUpdateSize = settings->MultifragMaxRequestSize;
|
|
|
|
|
2014-09-20 23:25:33 +04:00
|
|
|
if (settings->ColorDepth < 32)
|
|
|
|
shadow_encoder_prepare(encoder, FREERDP_CODEC_INTERLEAVED);
|
|
|
|
else
|
|
|
|
shadow_encoder_prepare(encoder, FREERDP_CODEC_PLANAR);
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
pSrcData = surface->data;
|
|
|
|
nSrcStep = surface->scanline;
|
2014-09-24 21:17:52 +04:00
|
|
|
SrcFormat = PIXEL_FORMAT_RGB32;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
if (server->shareSubRect)
|
|
|
|
{
|
|
|
|
int subX, subY;
|
|
|
|
int subWidth, subHeight;
|
|
|
|
|
|
|
|
subX = server->subRect.left;
|
|
|
|
subY = server->subRect.top;
|
|
|
|
subWidth = server->subRect.right - server->subRect.left;
|
|
|
|
subHeight = server->subRect.bottom - server->subRect.top;
|
|
|
|
|
|
|
|
nXSrc -= subX;
|
|
|
|
nYSrc -= subY;
|
|
|
|
pSrcData = &pSrcData[(subY * nSrcStep) + (subX * 4)];
|
|
|
|
}
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
if ((nXSrc % 4) != 0)
|
|
|
|
{
|
|
|
|
nWidth += (nXSrc % 4);
|
|
|
|
nXSrc -= (nXSrc % 4);
|
|
|
|
}
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
if ((nYSrc % 4) != 0)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-07-15 02:44:15 +04:00
|
|
|
nHeight += (nYSrc % 4);
|
|
|
|
nYSrc -= (nYSrc % 4);
|
|
|
|
}
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-09-24 21:17:52 +04:00
|
|
|
rows = (nHeight / 64) + ((nHeight % 64) ? 1 : 0);
|
|
|
|
cols = (nWidth / 64) + ((nWidth % 64) ? 1 : 0);
|
2014-07-15 02:44:15 +04:00
|
|
|
|
|
|
|
k = 0;
|
2014-09-21 00:29:13 +04:00
|
|
|
totalBitmapSize = 0;
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
bitmapUpdate.count = bitmapUpdate.number = rows * cols;
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!(bitmapData = (BITMAP_DATA*) malloc(sizeof(BITMAP_DATA) * bitmapUpdate.number)))
|
2014-07-15 02:44:15 +04:00
|
|
|
return -1;
|
2015-06-17 23:08:02 +03:00
|
|
|
bitmapUpdate.rectangles = bitmapData;
|
2014-07-15 02:44:15 +04:00
|
|
|
|
|
|
|
if ((nWidth % 4) != 0)
|
|
|
|
{
|
|
|
|
nXSrc -= (nWidth % 4);
|
|
|
|
nWidth += (nWidth % 4);
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
if ((nHeight % 4) != 0)
|
|
|
|
{
|
|
|
|
nYSrc -= (nHeight % 4);
|
|
|
|
nHeight += (nHeight % 4);
|
|
|
|
}
|
|
|
|
|
2014-09-24 21:17:52 +04:00
|
|
|
for (yIdx = 0; yIdx < rows; yIdx++)
|
2014-07-15 02:44:15 +04:00
|
|
|
{
|
2014-09-24 21:17:52 +04:00
|
|
|
for (xIdx = 0; xIdx < cols; xIdx++)
|
2014-07-15 02:44:15 +04:00
|
|
|
{
|
2014-09-24 21:17:52 +04:00
|
|
|
bitmap = &bitmapData[k];
|
|
|
|
|
|
|
|
bitmap->width = 64;
|
|
|
|
bitmap->height = 64;
|
|
|
|
bitmap->destLeft = nXSrc + (xIdx * 64);
|
|
|
|
bitmap->destTop = nYSrc + (yIdx * 64);
|
|
|
|
|
|
|
|
if ((bitmap->destLeft + bitmap->width) > (nXSrc + nWidth))
|
|
|
|
bitmap->width = (nXSrc + nWidth) - bitmap->destLeft;
|
|
|
|
|
|
|
|
if ((bitmap->destTop + bitmap->height) > (nYSrc + nHeight))
|
|
|
|
bitmap->height = (nYSrc + nHeight) - bitmap->destTop;
|
|
|
|
|
|
|
|
bitmap->destRight = bitmap->destLeft + bitmap->width - 1;
|
|
|
|
bitmap->destBottom = bitmap->destTop + bitmap->height - 1;
|
|
|
|
bitmap->compressed = TRUE;
|
|
|
|
|
|
|
|
if ((bitmap->width < 4) || (bitmap->height < 4))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (settings->ColorDepth < 32)
|
2014-07-15 02:44:15 +04:00
|
|
|
{
|
2014-09-24 21:17:52 +04:00
|
|
|
int bitsPerPixel = settings->ColorDepth;
|
|
|
|
int bytesPerPixel = (bitsPerPixel + 7) / 8;
|
|
|
|
|
|
|
|
DstSize = 64 * 64 * 4;
|
|
|
|
buffer = encoder->grid[k];
|
|
|
|
|
|
|
|
interleaved_compress(encoder->interleaved, buffer, &DstSize, bitmap->width, bitmap->height,
|
|
|
|
pSrcData, SrcFormat, nSrcStep, bitmap->destLeft, bitmap->destTop, NULL, bitsPerPixel);
|
|
|
|
|
|
|
|
bitmap->bitmapDataStream = buffer;
|
|
|
|
bitmap->bitmapLength = DstSize;
|
|
|
|
bitmap->bitsPerPixel = bitsPerPixel;
|
|
|
|
bitmap->cbScanWidth = bitmap->width * bytesPerPixel;
|
|
|
|
bitmap->cbUncompressedSize = bitmap->width * bitmap->height * bytesPerPixel;
|
2014-07-15 02:44:15 +04:00
|
|
|
}
|
2014-09-24 21:17:52 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int dstSize;
|
|
|
|
|
|
|
|
buffer = encoder->grid[k];
|
|
|
|
data = &pSrcData[(bitmap->destTop * nSrcStep) + (bitmap->destLeft * 4)];
|
|
|
|
|
|
|
|
buffer = freerdp_bitmap_compress_planar(encoder->planar, data, SrcFormat,
|
|
|
|
bitmap->width, bitmap->height, nSrcStep, buffer, &dstSize);
|
|
|
|
|
|
|
|
bitmap->bitmapDataStream = buffer;
|
|
|
|
bitmap->bitmapLength = dstSize;
|
|
|
|
bitmap->bitsPerPixel = 32;
|
|
|
|
bitmap->cbScanWidth = bitmap->width * 4;
|
|
|
|
bitmap->cbUncompressedSize = bitmap->width * bitmap->height * 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitmap->cbCompFirstRowSize = 0;
|
|
|
|
bitmap->cbCompMainBodySize = bitmap->bitmapLength;
|
|
|
|
|
|
|
|
totalBitmapSize += bitmap->bitmapLength;
|
|
|
|
k++;
|
2014-07-15 02:44:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bitmapUpdate.count = bitmapUpdate.number = k;
|
|
|
|
|
2014-09-21 00:29:13 +04:00
|
|
|
updateSizeEstimate = totalBitmapSize + (k * bitmapUpdate.count) + 16;
|
|
|
|
|
|
|
|
if (updateSizeEstimate > maxUpdateSize)
|
|
|
|
{
|
2014-10-25 23:36:36 +04:00
|
|
|
UINT32 i, j;
|
|
|
|
UINT32 updateSize;
|
|
|
|
UINT32 newUpdateSize;
|
2015-09-01 13:05:22 +03:00
|
|
|
BITMAP_DATA* fragBitmapData = NULL;
|
|
|
|
|
|
|
|
if (k > 0)
|
|
|
|
fragBitmapData = (BITMAP_DATA*) malloc(sizeof(BITMAP_DATA) * k);
|
2014-10-25 23:36:36 +04:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!fragBitmapData)
|
|
|
|
{
|
|
|
|
free(bitmapData);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-10-25 23:36:36 +04:00
|
|
|
bitmapUpdate.rectangles = fragBitmapData;
|
2014-09-21 00:29:13 +04:00
|
|
|
|
2014-10-25 23:36:36 +04:00
|
|
|
i = j = 0;
|
|
|
|
updateSize = 1024;
|
|
|
|
|
|
|
|
while (i < k)
|
|
|
|
{
|
|
|
|
newUpdateSize = updateSize + (bitmapData[i].bitmapLength + 16);
|
|
|
|
|
|
|
|
if ((newUpdateSize < maxUpdateSize) && ((i + 1) < k))
|
|
|
|
{
|
|
|
|
CopyMemory(&fragBitmapData[j++], &bitmapData[i++], sizeof(BITMAP_DATA));
|
|
|
|
updateSize = newUpdateSize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((i + 1) >= k)
|
|
|
|
{
|
|
|
|
CopyMemory(&fragBitmapData[j++], &bitmapData[i++], sizeof(BITMAP_DATA));
|
|
|
|
updateSize = newUpdateSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitmapUpdate.count = bitmapUpdate.number = j;
|
|
|
|
IFCALL(update->BitmapUpdate, context, &bitmapUpdate);
|
|
|
|
updateSize = 1024;
|
|
|
|
j = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(fragBitmapData);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IFCALL(update->BitmapUpdate, context, &bitmapUpdate);
|
|
|
|
}
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
free(bitmapData);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_client_send_surface_update(rdpShadowClient* client)
|
|
|
|
{
|
|
|
|
int status = -1;
|
|
|
|
int nXSrc, nYSrc;
|
|
|
|
int nWidth, nHeight;
|
|
|
|
rdpContext* context;
|
|
|
|
rdpSettings* settings;
|
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowSurface* surface;
|
2014-07-16 22:11:37 +04:00
|
|
|
rdpShadowEncoder* encoder;
|
2014-07-19 01:26:21 +04:00
|
|
|
REGION16 invalidRegion;
|
2014-07-15 02:44:15 +04:00
|
|
|
RECTANGLE_16 surfaceRect;
|
|
|
|
const RECTANGLE_16* extents;
|
|
|
|
|
|
|
|
context = (rdpContext*) client;
|
|
|
|
settings = context->settings;
|
|
|
|
server = client->server;
|
2014-07-19 01:26:21 +04:00
|
|
|
encoder = client->encoder;
|
2014-07-15 02:44:15 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
surface = client->inLobby ? server->lobby : server->surface;
|
2014-07-15 02:44:15 +04:00
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
EnterCriticalSection(&(client->lock));
|
|
|
|
|
|
|
|
region16_init(&invalidRegion);
|
|
|
|
region16_copy(&invalidRegion, &(client->invalidRegion));
|
|
|
|
region16_clear(&(client->invalidRegion));
|
|
|
|
|
|
|
|
LeaveCriticalSection(&(client->lock));
|
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
surfaceRect.left = 0;
|
|
|
|
surfaceRect.top = 0;
|
|
|
|
surfaceRect.right = surface->width;
|
|
|
|
surfaceRect.bottom = surface->height;
|
2014-07-15 02:44:15 +04:00
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
region16_intersect_rect(&invalidRegion, &invalidRegion, &surfaceRect);
|
2014-07-15 02:44:15 +04:00
|
|
|
|
2014-09-11 00:27:24 +04:00
|
|
|
if (server->shareSubRect)
|
|
|
|
{
|
|
|
|
region16_intersect_rect(&invalidRegion, &invalidRegion, &(server->subRect));
|
|
|
|
}
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
if (region16_is_empty(&invalidRegion))
|
|
|
|
{
|
|
|
|
region16_uninit(&invalidRegion);
|
2014-07-15 02:44:15 +04:00
|
|
|
return 1;
|
2014-07-19 01:26:21 +04:00
|
|
|
}
|
2014-07-15 02:44:15 +04:00
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
extents = region16_extents(&invalidRegion);
|
2014-07-15 02:44:15 +04:00
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
nXSrc = extents->left - 0;
|
|
|
|
nYSrc = extents->top - 0;
|
2014-07-15 02:44:15 +04:00
|
|
|
nWidth = extents->right - extents->left;
|
|
|
|
nHeight = extents->bottom - extents->top;
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
//WLog_INFO(TAG, "shadow_client_send_surface_update: x: %d y: %d width: %d height: %d right: %d bottom: %d",
|
2014-08-09 04:51:26 +04:00
|
|
|
// nXSrc, nYSrc, nWidth, nHeight, nXSrc + nWidth, nYSrc + nHeight);
|
2014-07-18 08:20:55 +04:00
|
|
|
|
2014-09-21 00:29:13 +04:00
|
|
|
if (settings->RemoteFxCodec || settings->NSCodec)
|
2014-07-15 02:44:15 +04:00
|
|
|
{
|
|
|
|
status = shadow_client_send_surface_bits(client, surface, nXSrc, nYSrc, nWidth, nHeight);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
status = shadow_client_send_bitmap_update(client, surface, nXSrc, nYSrc, nWidth, nHeight);
|
|
|
|
}
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
region16_uninit(&invalidRegion);
|
|
|
|
|
2014-07-15 02:44:15 +04:00
|
|
|
return status;
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
int shadow_client_surface_update(rdpShadowClient* client, REGION16* region)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int numRects = 0;
|
|
|
|
const RECTANGLE_16* rects;
|
|
|
|
|
|
|
|
EnterCriticalSection(&(client->lock));
|
|
|
|
|
|
|
|
rects = region16_rects(region, &numRects);
|
|
|
|
|
|
|
|
for (index = 0; index < numRects; index++)
|
|
|
|
{
|
|
|
|
region16_union_rect(&(client->invalidRegion), &(client->invalidRegion), &rects[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
LeaveCriticalSection(&(client->lock));
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-11-07 01:25:41 +03:00
|
|
|
int shadow_client_subsystem_process_message(rdpShadowClient* client, wMessage* message)
|
|
|
|
{
|
|
|
|
rdpContext* context = (rdpContext*) client;
|
|
|
|
rdpUpdate* update = context->update;
|
|
|
|
|
|
|
|
/* FIXME: the pointer updates appear to be broken when used with bulk compression and mstsc */
|
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
switch(message->id)
|
2014-11-07 01:25:41 +03:00
|
|
|
{
|
2015-06-15 18:54:30 +03:00
|
|
|
case SHADOW_MSG_OUT_POINTER_POSITION_UPDATE_ID:
|
|
|
|
{
|
|
|
|
POINTER_POSITION_UPDATE pointerPosition;
|
|
|
|
SHADOW_MSG_OUT_POINTER_POSITION_UPDATE* msg = (SHADOW_MSG_OUT_POINTER_POSITION_UPDATE*) message->wParam;
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
pointerPosition.xPos = msg->xPos;
|
|
|
|
pointerPosition.yPos = msg->yPos;
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
if (client->server->shareSubRect)
|
|
|
|
{
|
|
|
|
pointerPosition.xPos -= client->server->subRect.left;
|
|
|
|
pointerPosition.yPos -= client->server->subRect.top;
|
|
|
|
}
|
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
if (client->activated)
|
2014-11-21 23:10:39 +03:00
|
|
|
{
|
2015-06-15 18:54:30 +03:00
|
|
|
if ((msg->xPos != client->pointerX) || (msg->yPos != client->pointerY))
|
|
|
|
{
|
|
|
|
IFCALL(update->pointer->PointerPosition, context, &pointerPosition);
|
2014-11-07 21:51:10 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
client->pointerX = msg->xPos;
|
|
|
|
client->pointerY = msg->yPos;
|
|
|
|
}
|
2014-11-21 23:10:39 +03:00
|
|
|
}
|
2015-06-15 18:54:30 +03:00
|
|
|
break;
|
2014-11-07 01:25:41 +03:00
|
|
|
}
|
2015-06-15 18:54:30 +03:00
|
|
|
case SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE_ID:
|
|
|
|
{
|
|
|
|
POINTER_NEW_UPDATE pointerNew;
|
|
|
|
POINTER_COLOR_UPDATE* pointerColor;
|
|
|
|
POINTER_CACHED_UPDATE pointerCached;
|
|
|
|
SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE* msg = (SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE*) message->wParam;
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
ZeroMemory(&pointerNew, sizeof(POINTER_NEW_UPDATE));
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
pointerNew.xorBpp = 24;
|
|
|
|
pointerColor = &(pointerNew.colorPtrAttr);
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
pointerColor->cacheIndex = 0;
|
|
|
|
pointerColor->xPos = msg->xHot;
|
|
|
|
pointerColor->yPos = msg->yHot;
|
|
|
|
pointerColor->width = msg->width;
|
|
|
|
pointerColor->height = msg->height;
|
2015-06-16 18:28:14 +03:00
|
|
|
pointerColor->lengthAndMask = msg->lengthAndMask;
|
|
|
|
pointerColor->lengthXorMask = msg->lengthXorMask;
|
|
|
|
pointerColor->xorMaskData = msg->xorMaskData;
|
|
|
|
pointerColor->andMaskData = msg->andMaskData;
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
pointerCached.cacheIndex = pointerColor->cacheIndex;
|
2014-11-07 21:51:10 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
if (client->activated)
|
|
|
|
{
|
|
|
|
IFCALL(update->pointer->PointerNew, context, &pointerNew);
|
|
|
|
IFCALL(update->pointer->PointerCached, context, &pointerCached);
|
|
|
|
}
|
|
|
|
break;
|
2014-11-21 23:10:39 +03:00
|
|
|
}
|
2015-06-15 18:54:30 +03:00
|
|
|
case SHADOW_MSG_OUT_AUDIO_OUT_SAMPLES_ID:
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
2015-06-15 18:54:30 +03:00
|
|
|
SHADOW_MSG_OUT_AUDIO_OUT_SAMPLES* msg = (SHADOW_MSG_OUT_AUDIO_OUT_SAMPLES*) message->wParam;
|
|
|
|
if (client->activated && client->rdpsnd && client->rdpsnd->Activated)
|
|
|
|
{
|
|
|
|
client->rdpsnd->src_format = msg->audio_format;
|
|
|
|
IFCALL(client->rdpsnd->SendSamples, client->rdpsnd, msg->buf, msg->nFrames, msg->wTimestamp);
|
|
|
|
}
|
|
|
|
break;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
2015-06-15 18:54:30 +03:00
|
|
|
case SHADOW_MSG_OUT_AUDIO_OUT_VOLUME_ID:
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
2015-06-15 18:54:30 +03:00
|
|
|
SHADOW_MSG_OUT_AUDIO_OUT_VOLUME* msg = (SHADOW_MSG_OUT_AUDIO_OUT_VOLUME*) message->wParam;
|
|
|
|
if (client->activated && client->rdpsnd && client->rdpsnd->Activated)
|
|
|
|
{
|
|
|
|
IFCALL(client->rdpsnd->SetVolume, client->rdpsnd, msg->left, msg->right);
|
|
|
|
}
|
|
|
|
break;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
2015-06-15 18:54:30 +03:00
|
|
|
default:
|
|
|
|
WLog_ERR(TAG, "Unknown message id: %u", message->id);
|
|
|
|
break;
|
2014-11-07 01:25:41 +03:00
|
|
|
}
|
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
shadow_client_free_queued_message(message);
|
|
|
|
|
2014-11-07 01:25:41 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
void* shadow_client_thread(rdpShadowClient* client)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
|
|
|
DWORD status;
|
|
|
|
DWORD nCount;
|
2014-11-07 01:25:41 +03:00
|
|
|
wMessage message;
|
2015-04-08 21:13:52 +03:00
|
|
|
wMessage pointerPositionMsg;
|
|
|
|
wMessage pointerAlphaMsg;
|
|
|
|
wMessage audioVolumeMsg;
|
2014-07-11 01:20:41 +04:00
|
|
|
HANDLE events[32];
|
|
|
|
HANDLE ClientEvent;
|
2014-07-16 02:38:32 +04:00
|
|
|
HANDLE ChannelEvent;
|
2015-05-10 19:00:02 +03:00
|
|
|
void* UpdateSubscriber;
|
2014-08-09 02:47:46 +04:00
|
|
|
HANDLE UpdateEvent;
|
2014-07-12 03:30:40 +04:00
|
|
|
freerdp_peer* peer;
|
2014-09-19 01:22:44 +04:00
|
|
|
rdpContext* context;
|
2014-07-11 01:20:41 +04:00
|
|
|
rdpSettings* settings;
|
2014-07-12 09:18:08 +04:00
|
|
|
rdpShadowServer* server;
|
2014-07-14 21:33:20 +04:00
|
|
|
rdpShadowScreen* screen;
|
2014-07-14 03:42:57 +04:00
|
|
|
rdpShadowEncoder* encoder;
|
2014-07-12 09:18:08 +04:00
|
|
|
rdpShadowSubsystem* subsystem;
|
2015-04-08 21:13:52 +03:00
|
|
|
wMessageQueue* MsgQueue = client->MsgQueue;
|
2014-07-12 09:18:08 +04:00
|
|
|
|
|
|
|
server = client->server;
|
2014-07-14 21:33:20 +04:00
|
|
|
screen = server->screen;
|
2014-07-19 01:26:21 +04:00
|
|
|
encoder = client->encoder;
|
2014-07-12 09:18:08 +04:00
|
|
|
subsystem = server->subsystem;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
context = (rdpContext*) client;
|
|
|
|
peer = context->peer;
|
2014-07-12 03:30:40 +04:00
|
|
|
settings = peer->settings;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
peer->Capabilities = shadow_client_capabilities;
|
|
|
|
peer->PostConnect = shadow_client_post_connect;
|
|
|
|
peer->Activate = shadow_client_activate;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
shadow_input_register_callbacks(peer->input);
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
peer->Initialize(peer);
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
peer->update->RefreshRect = (pRefreshRect)shadow_client_refresh_rect;
|
|
|
|
peer->update->SuppressOutput = (pSuppressOutput)shadow_client_suppress_output;
|
|
|
|
peer->update->SurfaceFrameAcknowledge = (pSurfaceFrameAcknowledge)shadow_client_surface_frame_acknowledge;
|
2014-07-14 03:42:57 +04:00
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
if ((!client->vcm) || (!subsystem->updateEvent))
|
2015-05-10 19:00:02 +03:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
UpdateSubscriber = shadow_multiclient_get_subscriber(subsystem->updateEvent);
|
|
|
|
if (!UpdateSubscriber)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
UpdateEvent = shadow_multiclient_getevent(UpdateSubscriber);
|
2014-07-12 03:30:40 +04:00
|
|
|
ClientEvent = peer->GetEventHandle(peer);
|
2014-07-16 02:38:32 +04:00
|
|
|
ChannelEvent = WTSVirtualChannelManagerGetEventHandle(client->vcm);
|
2014-07-11 01:20:41 +04:00
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
nCount = 0;
|
2014-08-09 02:47:46 +04:00
|
|
|
events[nCount++] = UpdateEvent;
|
2014-07-11 01:20:41 +04:00
|
|
|
events[nCount++] = ClientEvent;
|
2014-07-16 02:38:32 +04:00
|
|
|
events[nCount++] = ChannelEvent;
|
2015-04-08 21:13:52 +03:00
|
|
|
events[nCount++] = MessageQueue_Event(MsgQueue);
|
2014-07-12 09:18:08 +04:00
|
|
|
|
2014-08-09 02:47:46 +04:00
|
|
|
status = WaitForMultipleObjects(nCount, events, FALSE, INFINITE);
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-08-09 02:47:46 +04:00
|
|
|
if (WaitForSingleObject(UpdateEvent, 0) == WAIT_OBJECT_0)
|
|
|
|
{
|
|
|
|
if (client->activated)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int numRects = 0;
|
|
|
|
const RECTANGLE_16* rects;
|
2015-04-11 21:57:16 +03:00
|
|
|
int width, height;
|
2014-08-09 02:47:46 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
/* Check resize */
|
|
|
|
shadow_client_calc_desktop_size(server, &width, &height);
|
|
|
|
if (settings->DesktopWidth != (UINT32)width || settings->DesktopHeight != (UINT32)height)
|
2014-08-09 02:47:46 +04:00
|
|
|
{
|
2015-04-11 21:57:16 +03:00
|
|
|
/* Screen size changed, do resize */
|
|
|
|
settings->DesktopWidth = width;
|
|
|
|
settings->DesktopHeight = height;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unset client activated flag to avoid sending update message during
|
|
|
|
* resize. DesktopResize will reactive the client and
|
|
|
|
* shadow_client_activate would be invoked later.
|
|
|
|
*/
|
|
|
|
client->activated = FALSE;
|
|
|
|
|
|
|
|
/* Send Resize */
|
|
|
|
peer->update->DesktopResize(peer->update->context); // update_send_desktop_resize
|
|
|
|
|
|
|
|
/* Clear my invalidRegion. shadow_client_activate refreshes fullscreen */
|
|
|
|
region16_clear(&(client->invalidRegion));
|
|
|
|
|
|
|
|
WLog_ERR(TAG, "Client from %s is resized (%dx%d@%d)",
|
|
|
|
peer->hostname, settings->DesktopWidth, settings->DesktopHeight, settings->ColorDepth);
|
2014-08-09 02:47:46 +04:00
|
|
|
}
|
2015-04-11 21:57:16 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Send frame */
|
|
|
|
rects = region16_rects(&(subsystem->invalidRegion), &numRects);
|
|
|
|
|
|
|
|
for (index = 0; index < numRects; index++)
|
|
|
|
{
|
|
|
|
region16_union_rect(&(client->invalidRegion), &(client->invalidRegion), &rects[index]);
|
|
|
|
}
|
2014-08-09 02:47:46 +04:00
|
|
|
|
2015-04-11 21:57:16 +03:00
|
|
|
shadow_client_send_surface_update(client);
|
|
|
|
}
|
2014-08-09 02:47:46 +04:00
|
|
|
}
|
|
|
|
|
2015-05-10 19:00:02 +03:00
|
|
|
/*
|
|
|
|
* The return value of shadow_multiclient_consume is whether or not the subscriber really consumes the event.
|
|
|
|
* It's not cared currently.
|
|
|
|
*/
|
|
|
|
(void)shadow_multiclient_consume(UpdateSubscriber);
|
2014-08-09 02:47:46 +04:00
|
|
|
}
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
if (WaitForSingleObject(ClientEvent, 0) == WAIT_OBJECT_0)
|
|
|
|
{
|
2014-07-12 03:30:40 +04:00
|
|
|
if (!peer->CheckFileDescriptor(peer))
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "Failed to check FreeRDP file descriptor");
|
2014-07-11 01:20:41 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-07-12 08:01:29 +04:00
|
|
|
|
2014-07-16 02:38:32 +04:00
|
|
|
if (WaitForSingleObject(ChannelEvent, 0) == WAIT_OBJECT_0)
|
|
|
|
{
|
2014-11-07 01:25:41 +03:00
|
|
|
if (!WTSVirtualChannelManagerCheckFileDescriptor(client->vcm))
|
2014-07-16 02:38:32 +04:00
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "WTSVirtualChannelManagerCheckFileDescriptor failure");
|
2014-07-16 02:38:32 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
if (WaitForSingleObject(MessageQueue_Event(MsgQueue), 0) == WAIT_OBJECT_0)
|
2014-11-07 01:25:41 +03:00
|
|
|
{
|
2015-04-08 21:13:52 +03:00
|
|
|
/* Drain messages. Pointer update could be accumulated. */
|
|
|
|
pointerPositionMsg.id = 0;
|
|
|
|
pointerPositionMsg.Free= NULL;
|
|
|
|
pointerAlphaMsg.id = 0;
|
|
|
|
pointerAlphaMsg.Free = NULL;
|
|
|
|
audioVolumeMsg.id = 0;
|
|
|
|
audioVolumeMsg.Free = NULL;
|
|
|
|
while (MessageQueue_Peek(MsgQueue, &message, TRUE))
|
2014-11-07 01:25:41 +03:00
|
|
|
{
|
|
|
|
if (message.id == WMQ_QUIT)
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
2014-11-07 01:25:41 +03:00
|
|
|
break;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-06-15 18:54:30 +03:00
|
|
|
switch(message.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:
|
|
|
|
/* Abandon previous message */
|
|
|
|
shadow_client_free_queued_message(&pointerPositionMsg);
|
|
|
|
CopyMemory(&pointerPositionMsg, &message, sizeof(wMessage));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE_ID:
|
|
|
|
/* Abandon previous message */
|
|
|
|
shadow_client_free_queued_message(&pointerAlphaMsg);
|
|
|
|
CopyMemory(&pointerAlphaMsg, &message, sizeof(wMessage));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHADOW_MSG_OUT_AUDIO_OUT_VOLUME_ID:
|
|
|
|
/* Abandon previous message */
|
|
|
|
shadow_client_free_queued_message(&audioVolumeMsg);
|
|
|
|
CopyMemory(&audioVolumeMsg, &message, sizeof(wMessage));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
shadow_client_subsystem_process_message(client, &message);
|
|
|
|
break;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
if (message.id == WMQ_QUIT)
|
|
|
|
{
|
|
|
|
/* Release stored message */
|
|
|
|
shadow_client_free_queued_message(&pointerPositionMsg);
|
|
|
|
shadow_client_free_queued_message(&pointerAlphaMsg);
|
|
|
|
shadow_client_free_queued_message(&audioVolumeMsg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Process accumulated messages if needed */
|
|
|
|
if (pointerPositionMsg.id)
|
|
|
|
{
|
|
|
|
shadow_client_subsystem_process_message(client, &pointerPositionMsg);
|
|
|
|
}
|
|
|
|
if (pointerAlphaMsg.id)
|
|
|
|
{
|
|
|
|
shadow_client_subsystem_process_message(client, &pointerAlphaMsg);
|
|
|
|
}
|
|
|
|
if (audioVolumeMsg.id)
|
|
|
|
{
|
|
|
|
shadow_client_subsystem_process_message(client, &audioVolumeMsg);
|
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
}
|
|
|
|
}
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
/* Free channels early because we establish channels in post connect */
|
|
|
|
shadow_client_channels_free(client);
|
|
|
|
|
2015-05-10 19:00:02 +03:00
|
|
|
if (UpdateSubscriber)
|
|
|
|
{
|
|
|
|
shadow_multiclient_release_subscriber(UpdateSubscriber);
|
|
|
|
UpdateSubscriber = NULL;
|
|
|
|
}
|
|
|
|
|
2015-04-08 20:37:41 +03:00
|
|
|
if (peer->connected && subsystem->ClientDisconnect)
|
|
|
|
{
|
2015-06-15 14:37:26 +03:00
|
|
|
subsystem->ClientDisconnect(subsystem, client);
|
2015-04-08 20:37:41 +03:00
|
|
|
}
|
|
|
|
|
2015-05-10 19:00:02 +03:00
|
|
|
out:
|
2014-07-12 03:30:40 +04:00
|
|
|
peer->Disconnect(peer);
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
freerdp_peer_context_free(peer);
|
|
|
|
freerdp_peer_free(peer);
|
2014-07-11 01:20:41 +04:00
|
|
|
ExitThread(0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
BOOL shadow_client_accepted(freerdp_listener* listener, freerdp_peer* peer)
|
2014-07-11 01:20:41 +04:00
|
|
|
{
|
2014-07-12 03:30:40 +04:00
|
|
|
rdpShadowClient* client;
|
|
|
|
rdpShadowServer* server;
|
|
|
|
|
|
|
|
server = (rdpShadowServer*) listener->info;
|
|
|
|
|
|
|
|
peer->ContextExtra = (void*) server;
|
|
|
|
peer->ContextSize = sizeof(rdpShadowClient);
|
|
|
|
peer->ContextNew = (psPeerContextNew) shadow_client_context_new;
|
|
|
|
peer->ContextFree = (psPeerContextFree) shadow_client_context_free;
|
2015-04-28 18:00:41 +03:00
|
|
|
|
|
|
|
if (!freerdp_peer_context_new(peer))
|
|
|
|
return FALSE;
|
2014-07-12 03:30:40 +04:00
|
|
|
|
|
|
|
client = (rdpShadowClient*) peer->context;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2015-05-05 14:55:48 +03:00
|
|
|
if (!(client->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)
|
|
|
|
shadow_client_thread, client, 0, NULL)))
|
|
|
|
{
|
|
|
|
freerdp_peer_context_free(peer);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2015-04-28 18:00:41 +03:00
|
|
|
|
|
|
|
return TRUE;
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
2015-04-08 21:13:52 +03:00
|
|
|
|
|
|
|
static void shadow_msg_out_addref(wMessage* message)
|
|
|
|
{
|
|
|
|
SHADOW_MSG_OUT* msg = (SHADOW_MSG_OUT *)message->wParam;
|
|
|
|
InterlockedIncrement(&(msg->refCount));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void shadow_msg_out_release(wMessage* message)
|
|
|
|
{
|
|
|
|
SHADOW_MSG_OUT* msg = (SHADOW_MSG_OUT *)message->wParam;
|
|
|
|
if (InterlockedDecrement(&(msg->refCount)) <= 0)
|
|
|
|
{
|
|
|
|
if (msg->Free)
|
|
|
|
msg->Free(message->id, msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL shadow_client_dispatch_msg(rdpShadowClient* client, wMessage* message)
|
|
|
|
{
|
|
|
|
/* Add reference when it is posted */
|
|
|
|
shadow_msg_out_addref(message);
|
|
|
|
if (MessageQueue_Dispatch(client->MsgQueue, message))
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Release the reference since post failed */
|
|
|
|
shadow_msg_out_release(message);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL shadow_client_post_msg(rdpShadowClient* client, void* context, UINT32 type, SHADOW_MSG_OUT* msg, void* lParam)
|
|
|
|
{
|
|
|
|
wMessage message = {0};
|
|
|
|
|
|
|
|
message.context = context;
|
|
|
|
message.id = type;
|
|
|
|
message.wParam = (void *)msg;
|
|
|
|
message.lParam = lParam;
|
|
|
|
message.Free = shadow_msg_out_release;
|
|
|
|
|
|
|
|
return shadow_client_dispatch_msg(client, &message);
|
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_client_boardcast_msg(rdpShadowServer* server, void* context, UINT32 type, SHADOW_MSG_OUT* msg, void* lParam)
|
|
|
|
{
|
|
|
|
wMessage message = {0};
|
|
|
|
rdpShadowClient* client = NULL;
|
|
|
|
int count = 0;
|
|
|
|
int index = 0;
|
|
|
|
|
|
|
|
message.context = context;
|
|
|
|
message.id = type;
|
|
|
|
message.wParam = (void *)msg;
|
|
|
|
message.lParam = lParam;
|
|
|
|
message.Free = shadow_msg_out_release;
|
|
|
|
|
|
|
|
/* First add reference as we reference it in this function.
|
|
|
|
* Therefore it would not be free'ed during post. */
|
|
|
|
shadow_msg_out_addref(&message);
|
|
|
|
|
|
|
|
ArrayList_Lock(server->clients);
|
|
|
|
for (index = 0; index < ArrayList_Count(server->clients); index++)
|
|
|
|
{
|
|
|
|
client = (rdpShadowClient*)ArrayList_GetItem(server->clients, index);
|
|
|
|
if (shadow_client_dispatch_msg(client, &message))
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ArrayList_Unlock(server->clients);
|
|
|
|
|
|
|
|
/* Release the reference for this function */
|
|
|
|
shadow_msg_out_release(&message);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_client_boardcast_quit(rdpShadowServer* server, int nExitCode)
|
|
|
|
{
|
|
|
|
wMessageQueue* queue = NULL;
|
|
|
|
int count = 0;
|
|
|
|
int index = 0;
|
|
|
|
|
|
|
|
ArrayList_Lock(server->clients);
|
|
|
|
for (index = 0; index < ArrayList_Count(server->clients); index++)
|
|
|
|
{
|
|
|
|
queue = ((rdpShadowClient*)ArrayList_GetItem(server->clients, index))->MsgQueue;
|
|
|
|
if (MessageQueue_PostQuit(queue, nExitCode))
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ArrayList_Unlock(server->clients);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|