2014-09-18 06:58:57 +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 "shadow.h"
|
|
|
|
|
|
|
|
#include "shadow_subsystem.h"
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
static pfnShadowSubsystemEntry pSubsystemEntry = NULL;
|
2014-09-18 23:43:11 +04:00
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
void shadow_subsystem_set_entry(pfnShadowSubsystemEntry pEntry)
|
2014-09-18 23:43:11 +04:00
|
|
|
{
|
2015-04-08 20:30:57 +03:00
|
|
|
pSubsystemEntry = pEntry;
|
2014-09-18 23:43:11 +04:00
|
|
|
}
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
static int shadow_subsystem_load_entry_points(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
2014-09-18 23:43:11 +04:00
|
|
|
{
|
2014-12-07 02:23:46 +03:00
|
|
|
ZeroMemory(pEntryPoints, sizeof(RDP_SHADOW_ENTRY_POINTS));
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
if (!pSubsystemEntry)
|
2014-09-18 23:43:11 +04:00
|
|
|
return -1;
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
if (pSubsystemEntry(pEntryPoints) < 0)
|
2014-09-18 23:43:11 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
rdpShadowSubsystem* shadow_subsystem_new()
|
2014-09-18 23:43:11 +04:00
|
|
|
{
|
|
|
|
RDP_SHADOW_ENTRY_POINTS ep;
|
|
|
|
rdpShadowSubsystem* subsystem = NULL;
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
shadow_subsystem_load_entry_points(&ep);
|
2014-09-18 23:43:11 +04:00
|
|
|
|
|
|
|
if (!ep.New)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
subsystem = ep.New();
|
|
|
|
|
|
|
|
if (!subsystem)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
CopyMemory(&(subsystem->ep), &ep, sizeof(RDP_SHADOW_ENTRY_POINTS));
|
2014-09-18 06:58:57 +04:00
|
|
|
|
2014-09-18 21:06:49 +04:00
|
|
|
return subsystem;
|
|
|
|
}
|
|
|
|
|
|
|
|
void shadow_subsystem_free(rdpShadowSubsystem* subsystem)
|
|
|
|
{
|
2015-04-28 18:00:41 +03:00
|
|
|
if (subsystem && subsystem->ep.Free)
|
2014-09-18 23:43:11 +04:00
|
|
|
subsystem->ep.Free(subsystem);
|
2014-09-18 21:06:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_subsystem_init(rdpShadowSubsystem* subsystem, rdpShadowServer* server)
|
|
|
|
{
|
2015-04-28 18:00:41 +03:00
|
|
|
int status = -1;
|
|
|
|
|
|
|
|
if (!subsystem || !subsystem->ep.Init)
|
|
|
|
return -1;
|
2014-09-18 21:06:49 +04:00
|
|
|
|
|
|
|
subsystem->server = server;
|
|
|
|
subsystem->selectedMonitor = server->selectedMonitor;
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!(subsystem->MsgPipe = MessagePipe_New()))
|
|
|
|
goto fail;
|
|
|
|
|
2015-05-10 19:00:02 +03:00
|
|
|
if (!(subsystem->updateEvent = shadow_multiclient_new()))
|
2015-04-28 18:00:41 +03:00
|
|
|
goto fail;
|
2014-09-19 06:18:58 +04:00
|
|
|
|
2014-09-18 06:58:57 +04:00
|
|
|
region16_init(&(subsystem->invalidRegion));
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if ((status = subsystem->ep.Init(subsystem)) >= 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (subsystem->MsgPipe)
|
|
|
|
{
|
|
|
|
MessagePipe_Free(subsystem->MsgPipe);
|
|
|
|
subsystem->MsgPipe = NULL;
|
|
|
|
}
|
2014-09-18 21:06:49 +04:00
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if (subsystem->updateEvent)
|
|
|
|
{
|
2015-05-10 19:00:02 +03:00
|
|
|
shadow_multiclient_free(subsystem->updateEvent);
|
2015-04-28 18:00:41 +03:00
|
|
|
subsystem->updateEvent = NULL;
|
|
|
|
}
|
2014-09-18 21:06:49 +04:00
|
|
|
|
|
|
|
return status;
|
2014-09-18 06:58:57 +04:00
|
|
|
}
|
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
static void shadow_subsystem_free_queued_message(void *obj)
|
|
|
|
{
|
|
|
|
wMessage *message = (wMessage*)obj;
|
|
|
|
if (message->Free)
|
|
|
|
{
|
|
|
|
message->Free(message);
|
|
|
|
message->Free = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-18 21:06:49 +04:00
|
|
|
void shadow_subsystem_uninit(rdpShadowSubsystem* subsystem)
|
2014-09-18 06:58:57 +04:00
|
|
|
{
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!subsystem)
|
|
|
|
return;
|
|
|
|
|
2014-09-18 23:43:11 +04:00
|
|
|
if (subsystem->ep.Uninit)
|
|
|
|
subsystem->ep.Uninit(subsystem);
|
2014-09-18 21:06:49 +04:00
|
|
|
|
|
|
|
if (subsystem->MsgPipe)
|
|
|
|
{
|
2015-04-08 21:13:52 +03:00
|
|
|
/* Release resource in messages before free */
|
|
|
|
subsystem->MsgPipe->In->object.fnObjectFree = shadow_subsystem_free_queued_message;
|
|
|
|
MessageQueue_Clear(subsystem->MsgPipe->In);
|
|
|
|
subsystem->MsgPipe->Out->object.fnObjectFree = shadow_subsystem_free_queued_message;
|
|
|
|
MessageQueue_Clear(subsystem->MsgPipe->Out);
|
2014-09-18 21:06:49 +04:00
|
|
|
MessagePipe_Free(subsystem->MsgPipe);
|
|
|
|
subsystem->MsgPipe = NULL;
|
|
|
|
}
|
2014-09-18 06:58:57 +04:00
|
|
|
|
2014-09-19 06:18:58 +04:00
|
|
|
if (subsystem->updateEvent)
|
2014-09-18 21:06:49 +04:00
|
|
|
{
|
2015-05-10 19:00:02 +03:00
|
|
|
shadow_multiclient_free(subsystem->updateEvent);
|
2014-09-19 06:18:58 +04:00
|
|
|
subsystem->updateEvent = NULL;
|
2014-09-18 21:06:49 +04:00
|
|
|
}
|
2014-09-19 06:18:58 +04:00
|
|
|
|
|
|
|
if (subsystem->invalidRegion.data)
|
|
|
|
region16_uninit(&(subsystem->invalidRegion));
|
2014-09-18 06:58:57 +04:00
|
|
|
}
|
2014-09-18 23:43:11 +04:00
|
|
|
|
|
|
|
int shadow_subsystem_start(rdpShadowSubsystem* subsystem)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!subsystem || !subsystem->ep.Start)
|
2014-09-18 23:43:11 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
status = subsystem->ep.Start(subsystem);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_subsystem_stop(rdpShadowSubsystem* subsystem)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
2015-04-28 18:00:41 +03:00
|
|
|
if (!subsystem || !subsystem->ep.Stop)
|
2014-09-18 23:43:11 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
status = subsystem->ep.Stop(subsystem);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
int shadow_enum_monitors(MONITOR_DEF* monitors, int maxMonitors)
|
2014-09-18 23:43:11 +04:00
|
|
|
{
|
|
|
|
int numMonitors = 0;
|
|
|
|
RDP_SHADOW_ENTRY_POINTS ep;
|
|
|
|
|
2015-04-08 20:30:57 +03:00
|
|
|
if (shadow_subsystem_load_entry_points(&ep) < 0)
|
2014-09-18 23:43:11 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
numMonitors = ep.EnumMonitors(monitors, maxMonitors);
|
|
|
|
|
|
|
|
return numMonitors;
|
|
|
|
}
|