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>
|
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-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;
|
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-28 18:00:41 +03:00
|
|
|
if (!(client->StopEvent = CreateEvent(NULL, TRUE, FALSE, NULL)))
|
|
|
|
goto fail_stop_event;
|
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-04-28 18:00:41 +03:00
|
|
|
fail_encoder_new:
|
2015-05-20 20:19:50 +03:00
|
|
|
CloseHandle(client->StopEvent);
|
2015-04-28 18:00:41 +03:00
|
|
|
client->encoder = NULL;
|
|
|
|
fail_stop_event:
|
|
|
|
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);
|
|
|
|
|
2014-07-12 09:18:08 +04:00
|
|
|
CloseHandle(client->StopEvent);
|
2014-07-15 02:01:29 +04:00
|
|
|
|
|
|
|
if (client->lobby)
|
|
|
|
{
|
|
|
|
shadow_surface_free(client->lobby);
|
|
|
|
client->lobby = NULL;
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
if (message->id == SHADOW_MSG_IN_REFRESH_OUTPUT_ID)
|
|
|
|
{
|
|
|
|
SHADOW_MSG_IN_REFRESH_OUTPUT* wParam = (SHADOW_MSG_IN_REFRESH_OUTPUT*) message->wParam;
|
|
|
|
|
|
|
|
free(wParam->rects);
|
|
|
|
free(wParam);
|
|
|
|
}
|
|
|
|
else if (message->id == SHADOW_MSG_IN_SUPPRESS_OUTPUT_ID)
|
|
|
|
{
|
|
|
|
SHADOW_MSG_IN_SUPPRESS_OUTPUT* wParam = (SHADOW_MSG_IN_SUPPRESS_OUTPUT*) message->wParam;
|
|
|
|
free(wParam);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
if (!server->shareSubRect)
|
|
|
|
{
|
|
|
|
width = server->screen->width;
|
|
|
|
height = server->screen->height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
width = server->subRect.right - server->subRect.left;
|
|
|
|
height = server->subRect.bottom - server->subRect.top;
|
|
|
|
}
|
2014-07-12 08:01:29 +04:00
|
|
|
|
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;
|
|
|
|
invalidRect.right = width;
|
|
|
|
invalidRect.bottom = height;
|
|
|
|
|
|
|
|
region16_union_rect(&(client->invalidRegion), &(client->invalidRegion), &invalidRect);
|
|
|
|
|
2014-09-29 22:07:48 +04:00
|
|
|
shadow_client_init_lobby(client);
|
2014-07-15 02:01:29 +04:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
void shadow_client_refresh_rect(rdpShadowClient* client, BYTE count, RECTANGLE_16* areas)
|
|
|
|
{
|
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-05-11 10:07:39 +03:00
|
|
|
if (!areas)
|
|
|
|
return;
|
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))))
|
2014-09-19 06:18:58 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
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);
|
2014-09-19 06:18:58 +04:00
|
|
|
return;
|
2014-11-17 02:21:04 +03:00
|
|
|
}
|
2014-09-19 06:18:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
CopyMemory(wParam->rects, areas, wParam->numRects * sizeof(RECTANGLE_16));
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
MessageQueue_Dispatch(MsgPipe->In, &message);
|
2014-09-19 01:22:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void shadow_client_suppress_output(rdpShadowClient* client, BYTE allow, RECTANGLE_16* area)
|
|
|
|
{
|
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)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wParam->allow = (UINT32) allow;
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
CopyMemory(&(wParam->rect), area, sizeof(RECTANGLE_16));
|
|
|
|
|
|
|
|
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
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
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
|
|
|
|
2014-09-19 01:22:44 +04:00
|
|
|
shadow_client_refresh_rect(client, 0, NULL);
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-07-14 03:42:57 +04:00
|
|
|
void shadow_client_surface_frame_acknowledge(rdpShadowClient* client, UINT32 frameId)
|
|
|
|
{
|
|
|
|
SURFACE_FRAME* frame;
|
|
|
|
wListDictionary* frameList;
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
frameList = client->encoder->frameList;
|
2014-07-14 03:42:57 +04:00
|
|
|
frame = (SURFACE_FRAME*) ListDictionary_GetItemValue(frameList, (void*) (size_t) frameId);
|
|
|
|
|
|
|
|
if (frame)
|
|
|
|
{
|
|
|
|
ListDictionary_Remove(frameList, (void*) (size_t) frameId);
|
|
|
|
free(frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
frameId = (UINT32) shadow_encoder_create_frame_id(encoder);
|
|
|
|
|
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,
|
2014-07-12 08:01:29 +04:00
|
|
|
surface->width, surface->height, 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;
|
|
|
|
cmd.destRight = surface->width;
|
|
|
|
cmd.destBottom = surface->height;
|
|
|
|
|
|
|
|
cmd.bpp = 32;
|
|
|
|
cmd.width = surface->width;
|
|
|
|
cmd.height = surface->height;
|
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
bitmapData = (BITMAP_DATA*) malloc(sizeof(BITMAP_DATA) * bitmapUpdate.number);
|
|
|
|
bitmapUpdate.rectangles = bitmapData;
|
|
|
|
|
|
|
|
if (!bitmapData)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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;
|
|
|
|
BITMAP_DATA* fragBitmapData;
|
|
|
|
|
|
|
|
fragBitmapData = (BITMAP_DATA*) malloc(sizeof(BITMAP_DATA) * k);
|
|
|
|
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
|
|
|
|
|
|
|
surface = client->inLobby ? client->lobby : server->surface;
|
|
|
|
|
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_convert_alpha_pointer_data(BYTE* pixels, BOOL premultiplied,
|
|
|
|
UINT32 width, UINT32 height, POINTER_COLOR_UPDATE* pointerColor)
|
|
|
|
{
|
|
|
|
UINT32 x, y;
|
|
|
|
BYTE* pSrc8;
|
|
|
|
BYTE* pDst8;
|
|
|
|
int xorStep;
|
|
|
|
int andStep;
|
|
|
|
UINT32 andBit;
|
|
|
|
BYTE* andBits;
|
|
|
|
UINT32 andPixel;
|
|
|
|
BYTE A, R, G, B;
|
|
|
|
|
|
|
|
xorStep = (width * 3);
|
|
|
|
xorStep += (xorStep % 2);
|
|
|
|
|
|
|
|
andStep = ((width + 7) / 8);
|
|
|
|
andStep += (andStep % 2);
|
|
|
|
|
|
|
|
pointerColor->lengthXorMask = height * xorStep;
|
|
|
|
pointerColor->xorMaskData = (BYTE*) calloc(1, pointerColor->lengthXorMask);
|
|
|
|
|
|
|
|
if (!pointerColor->xorMaskData)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
pointerColor->lengthAndMask = height * andStep;
|
|
|
|
pointerColor->andMaskData = (BYTE*) calloc(1, pointerColor->lengthAndMask);
|
|
|
|
|
|
|
|
if (!pointerColor->andMaskData)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++)
|
|
|
|
{
|
|
|
|
pSrc8 = &pixels[(width * 4) * (height - 1 - y)];
|
|
|
|
pDst8 = &(pointerColor->xorMaskData[y * xorStep]);
|
|
|
|
|
|
|
|
andBit = 0x80;
|
|
|
|
andBits = &(pointerColor->andMaskData[andStep * y]);
|
|
|
|
|
|
|
|
for (x = 0; x < width; x++)
|
|
|
|
{
|
|
|
|
B = *pSrc8++;
|
|
|
|
G = *pSrc8++;
|
|
|
|
R = *pSrc8++;
|
|
|
|
A = *pSrc8++;
|
|
|
|
|
|
|
|
andPixel = 0;
|
|
|
|
|
|
|
|
if (A < 64)
|
|
|
|
A = 0; /* pixel cannot be partially transparent */
|
|
|
|
|
|
|
|
if (!A)
|
|
|
|
{
|
|
|
|
/* transparent pixel: XOR = black, AND = 1 */
|
|
|
|
andPixel = 1;
|
|
|
|
B = G = R = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (premultiplied)
|
|
|
|
{
|
|
|
|
B = (B * 0xFF ) / A;
|
|
|
|
G = (G * 0xFF ) / A;
|
|
|
|
R = (R * 0xFF ) / A;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*pDst8++ = B;
|
|
|
|
*pDst8++ = G;
|
|
|
|
*pDst8++ = R;
|
|
|
|
|
|
|
|
if (andPixel) *andBits |= andBit;
|
|
|
|
if (!(andBit >>= 1)) { andBits++; andBit = 0x80; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 */
|
|
|
|
|
|
|
|
if (message->id == 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;
|
|
|
|
|
|
|
|
pointerPosition.xPos = msg->xPos;
|
|
|
|
pointerPosition.yPos = msg->yPos;
|
|
|
|
|
2014-11-21 23:10:39 +03:00
|
|
|
if (client->activated)
|
2014-11-07 01:25:41 +03:00
|
|
|
{
|
2014-11-21 23:10:39 +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
|
|
|
|
2014-11-21 23:10:39 +03:00
|
|
|
client->pointerX = msg->xPos;
|
|
|
|
client->pointerY = msg->yPos;
|
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
free(msg);
|
|
|
|
}
|
|
|
|
else if (message->id == SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE_ID)
|
|
|
|
{
|
|
|
|
POINTER_NEW_UPDATE pointerNew;
|
|
|
|
POINTER_COLOR_UPDATE* pointerColor;
|
2014-11-07 21:51:10 +03:00
|
|
|
POINTER_CACHED_UPDATE pointerCached;
|
2014-11-07 01:25:41 +03:00
|
|
|
SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE* msg = (SHADOW_MSG_OUT_POINTER_ALPHA_UPDATE*) message->wParam;
|
|
|
|
|
|
|
|
ZeroMemory(&pointerNew, sizeof(POINTER_NEW_UPDATE));
|
|
|
|
|
|
|
|
pointerNew.xorBpp = 24;
|
|
|
|
pointerColor = &(pointerNew.colorPtrAttr);
|
|
|
|
|
|
|
|
pointerColor->cacheIndex = 0;
|
|
|
|
pointerColor->xPos = msg->xHot;
|
|
|
|
pointerColor->yPos = msg->yHot;
|
|
|
|
pointerColor->width = msg->width;
|
|
|
|
pointerColor->height = msg->height;
|
|
|
|
|
2014-11-07 21:51:10 +03:00
|
|
|
pointerCached.cacheIndex = pointerColor->cacheIndex;
|
|
|
|
|
2014-11-21 23:10:39 +03:00
|
|
|
if (client->activated)
|
|
|
|
{
|
|
|
|
shadow_client_convert_alpha_pointer_data(msg->pixels, msg->premultiplied,
|
|
|
|
msg->width, msg->height, pointerColor);
|
2014-11-07 01:25:41 +03:00
|
|
|
|
2014-11-21 23:10:39 +03:00
|
|
|
IFCALL(update->pointer->PointerNew, context, &pointerNew);
|
|
|
|
IFCALL(update->pointer->PointerCached, context, &pointerCached);
|
2014-11-07 21:51:10 +03:00
|
|
|
|
2014-11-21 23:10:39 +03:00
|
|
|
free(pointerColor->xorMaskData);
|
|
|
|
free(pointerColor->andMaskData);
|
|
|
|
}
|
2014-11-07 01:25:41 +03:00
|
|
|
|
|
|
|
free(msg->pixels);
|
|
|
|
free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2014-07-11 01:20:41 +04:00
|
|
|
HANDLE events[32];
|
2014-07-12 09:18:08 +04:00
|
|
|
HANDLE StopEvent;
|
2014-07-11 01:20:41 +04:00
|
|
|
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;
|
2014-11-07 01:25:41 +03:00
|
|
|
wMessagePipe* MsgPipe = client->subsystem->MsgPipe;
|
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
|
|
|
|
2014-09-18 06:58:57 +04:00
|
|
|
peer->update->RefreshRect = (pRefreshRect) shadow_client_refresh_rect;
|
2014-07-14 03:42:57 +04:00
|
|
|
peer->update->SuppressOutput = (pSuppressOutput) shadow_client_suppress_output;
|
2014-09-19 01:22:44 +04:00
|
|
|
peer->update->SurfaceFrameAcknowledge = (pSurfaceFrameAcknowledge) shadow_client_surface_frame_acknowledge;
|
2014-07-14 03:42:57 +04:00
|
|
|
|
2015-05-10 19:00:02 +03:00
|
|
|
if ((!client->StopEvent) || (!client->vcm) || (!subsystem->updateEvent))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
UpdateSubscriber = shadow_multiclient_get_subscriber(subsystem->updateEvent);
|
|
|
|
if (!UpdateSubscriber)
|
|
|
|
goto out;
|
|
|
|
|
2014-07-12 09:18:08 +04:00
|
|
|
StopEvent = client->StopEvent;
|
2015-05-10 19:00:02 +03:00
|
|
|
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-07-12 09:18:08 +04:00
|
|
|
events[nCount++] = StopEvent;
|
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;
|
2014-11-07 01:25:41 +03:00
|
|
|
events[nCount++] = MessageQueue_Event(MsgPipe->Out);
|
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(StopEvent, 0) == WAIT_OBJECT_0)
|
2014-07-12 09:18:08 +04:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
rects = region16_rects(&(subsystem->invalidRegion), &numRects);
|
|
|
|
|
|
|
|
for (index = 0; index < numRects; index++)
|
|
|
|
{
|
|
|
|
region16_union_rect(&(client->invalidRegion), &(client->invalidRegion), &rects[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
shadow_client_send_surface_update(client);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
if (WaitForSingleObject(MessageQueue_Event(MsgPipe->Out), 0) == WAIT_OBJECT_0)
|
|
|
|
{
|
|
|
|
if (MessageQueue_Peek(MsgPipe->Out, &message, TRUE))
|
|
|
|
{
|
|
|
|
if (message.id == WMQ_QUIT)
|
|
|
|
break;
|
|
|
|
|
|
|
|
shadow_client_subsystem_process_message(client, &message);
|
|
|
|
}
|
|
|
|
}
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2015-05-10 19:00:02 +03:00
|
|
|
if (UpdateSubscriber)
|
|
|
|
{
|
|
|
|
shadow_multiclient_release_subscriber(UpdateSubscriber);
|
|
|
|
UpdateSubscriber = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|