2014-07-11 00:32:46 +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
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
#include <winpr/crt.h>
|
2014-08-15 21:50:22 +04:00
|
|
|
#include <winpr/ssl.h>
|
2014-08-14 21:10:43 +04:00
|
|
|
#include <winpr/wnd.h>
|
2014-07-18 05:15:22 +04:00
|
|
|
#include <winpr/path.h>
|
2014-07-14 21:33:20 +04:00
|
|
|
#include <winpr/cmdline.h>
|
2014-07-18 05:15:22 +04:00
|
|
|
#include <winpr/winsock.h>
|
2014-07-14 21:33:20 +04:00
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
#include <freerdp/log.h>
|
2014-09-18 05:18:47 +04:00
|
|
|
#include <freerdp/version.h>
|
2014-07-14 21:33:20 +04:00
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
#include <winpr/tools/makecert.h>
|
|
|
|
|
2014-07-12 07:01:34 +04:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#endif
|
|
|
|
|
2014-07-11 00:32:46 +04:00
|
|
|
#include "shadow.h"
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
#define TAG SERVER_TAG("shadow")
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
#ifdef WITH_SHADOW_X11
|
|
|
|
extern rdpShadowSubsystem* X11_ShadowCreateSubsystem(rdpShadowServer* server);
|
|
|
|
#endif
|
|
|
|
|
2014-07-16 07:01:56 +04:00
|
|
|
#ifdef WITH_SHADOW_MAC
|
|
|
|
extern rdpShadowSubsystem* Mac_ShadowCreateSubsystem(rdpShadowServer* server);
|
|
|
|
#endif
|
|
|
|
|
2014-07-18 02:27:40 +04:00
|
|
|
#ifdef WITH_SHADOW_WIN
|
|
|
|
extern rdpShadowSubsystem* Win_ShadowCreateSubsystem(rdpShadowServer* server);
|
|
|
|
#endif
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
static COMMAND_LINE_ARGUMENT_A shadow_args[] =
|
|
|
|
{
|
|
|
|
{ "port", COMMAND_LINE_VALUE_REQUIRED, "<number>", NULL, NULL, -1, NULL, "Server port" },
|
2014-08-06 20:08:00 +04:00
|
|
|
{ "ipc-socket", COMMAND_LINE_VALUE_REQUIRED, "<ipc-socket>", NULL, NULL, -1, NULL, "Server IPC socket" },
|
2014-07-14 21:33:20 +04:00
|
|
|
{ "monitors", COMMAND_LINE_VALUE_OPTIONAL, "<0,1,2...>", NULL, NULL, -1, NULL, "Select or list monitors" },
|
2014-09-11 00:27:24 +04:00
|
|
|
{ "rect", COMMAND_LINE_VALUE_REQUIRED, "<x,y,w,h>", NULL, NULL, -1, NULL, "Select rectangle within monitor to share" },
|
2014-07-15 02:01:29 +04:00
|
|
|
{ "may-view", COMMAND_LINE_VALUE_BOOL, NULL, BoolValueTrue, NULL, -1, NULL, "Clients may view without prompt" },
|
|
|
|
{ "may-interact", COMMAND_LINE_VALUE_BOOL, NULL, BoolValueTrue, NULL, -1, NULL, "Clients may interact without prompt" },
|
2014-07-14 21:33:20 +04:00
|
|
|
{ "version", COMMAND_LINE_VALUE_FLAG | COMMAND_LINE_PRINT_VERSION, NULL, NULL, NULL, -1, NULL, "Print version" },
|
|
|
|
{ "help", COMMAND_LINE_VALUE_FLAG | COMMAND_LINE_PRINT_HELP, NULL, NULL, NULL, -1, "?", "Print help" },
|
|
|
|
{ NULL, 0, NULL, NULL, NULL, -1, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
int shadow_server_print_command_line_help(int argc, char** argv)
|
|
|
|
{
|
|
|
|
char* str;
|
|
|
|
int length;
|
|
|
|
COMMAND_LINE_ARGUMENT_A* arg;
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "Usage: %s [options]", argv[0]);
|
|
|
|
WLog_INFO(TAG, "");
|
2014-07-14 21:33:20 +04:00
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "Syntax:");
|
|
|
|
WLog_INFO(TAG, " /flag (enables flag)");
|
|
|
|
WLog_INFO(TAG, " /option:<value> (specifies option with value)");
|
|
|
|
WLog_INFO(TAG, " +toggle -toggle (enables or disables toggle, where '/' is a synonym of '+')");
|
|
|
|
WLog_INFO(TAG, "");
|
2014-07-14 21:33:20 +04:00
|
|
|
|
|
|
|
arg = shadow_args;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (arg->Flags & COMMAND_LINE_VALUE_FLAG)
|
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, " %s", "/");
|
|
|
|
WLog_INFO(TAG, "%-20s", arg->Name);
|
|
|
|
WLog_INFO(TAG, "\t%s", arg->Text);
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
else if ((arg->Flags & COMMAND_LINE_VALUE_REQUIRED) || (arg->Flags & COMMAND_LINE_VALUE_OPTIONAL))
|
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, " %s", "/");
|
2014-07-14 21:33:20 +04:00
|
|
|
|
|
|
|
if (arg->Format)
|
|
|
|
{
|
|
|
|
length = (int) (strlen(arg->Name) + strlen(arg->Format) + 2);
|
|
|
|
str = (char*) malloc(length + 1);
|
|
|
|
sprintf_s(str, length + 1, "%s:%s", arg->Name, arg->Format);
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "%-20s", str);
|
2014-07-14 21:33:20 +04:00
|
|
|
free(str);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "%-20s", arg->Name);
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "\t%s", arg->Text);
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
else if (arg->Flags & COMMAND_LINE_VALUE_BOOL)
|
|
|
|
{
|
|
|
|
length = (int) strlen(arg->Name) + 32;
|
|
|
|
str = (char*) malloc(length + 1);
|
|
|
|
sprintf_s(str, length + 1, "%s (default:%s)", arg->Name,
|
|
|
|
arg->Default ? "on" : "off");
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, " %s", arg->Default ? "-" : "+");
|
2014-07-14 21:33:20 +04:00
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "%-20s", str);
|
2014-07-14 21:33:20 +04:00
|
|
|
free(str);
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "\t%s", arg->Text);
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while ((arg = CommandLineFindNextArgumentA(arg)) != NULL);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_server_command_line_status_print(rdpShadowServer* server, int argc, char** argv, int status)
|
|
|
|
{
|
|
|
|
if (status == COMMAND_LINE_STATUS_PRINT_VERSION)
|
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, "FreeRDP version %s (git %s)", FREERDP_VERSION_FULL, GIT_REVISION);
|
2014-07-14 21:33:20 +04:00
|
|
|
return COMMAND_LINE_STATUS_PRINT_VERSION;
|
|
|
|
}
|
|
|
|
else if (status == COMMAND_LINE_STATUS_PRINT)
|
|
|
|
{
|
|
|
|
return COMMAND_LINE_STATUS_PRINT;
|
|
|
|
}
|
|
|
|
else if (status < 0)
|
|
|
|
{
|
|
|
|
shadow_server_print_command_line_help(argc, argv);
|
|
|
|
return COMMAND_LINE_STATUS_PRINT_HELP;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_server_parse_command_line(rdpShadowServer* server, int argc, char** argv)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
DWORD flags;
|
|
|
|
COMMAND_LINE_ARGUMENT_A* arg;
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
CommandLineClearArgumentsA(shadow_args);
|
|
|
|
|
|
|
|
flags = COMMAND_LINE_SEPARATOR_COLON;
|
|
|
|
flags |= COMMAND_LINE_SIGIL_SLASH | COMMAND_LINE_SIGIL_PLUS_MINUS;
|
|
|
|
|
|
|
|
status = CommandLineParseArgumentsA(argc, (const char**) argv, shadow_args, flags, server, NULL, NULL);
|
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
arg = shadow_args;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (!(arg->Flags & COMMAND_LINE_ARGUMENT_PRESENT))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
CommandLineSwitchStart(arg)
|
|
|
|
|
|
|
|
CommandLineSwitchCase(arg, "port")
|
|
|
|
{
|
|
|
|
server->port = (DWORD) atoi(arg->Value);
|
|
|
|
}
|
2014-08-06 20:08:00 +04:00
|
|
|
CommandLineSwitchCase(arg, "ipc-socket")
|
|
|
|
{
|
|
|
|
server->ipcSocket = _strdup(arg->Value);
|
|
|
|
}
|
2014-07-15 02:01:29 +04:00
|
|
|
CommandLineSwitchCase(arg, "may-view")
|
|
|
|
{
|
|
|
|
server->mayView = arg->Value ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
CommandLineSwitchCase(arg, "may-interact")
|
|
|
|
{
|
|
|
|
server->mayInteract = arg->Value ? TRUE : FALSE;
|
|
|
|
}
|
2014-09-11 00:27:24 +04:00
|
|
|
CommandLineSwitchCase(arg, "rect")
|
|
|
|
{
|
|
|
|
char* p;
|
|
|
|
char* tok[4];
|
|
|
|
int x, y, w, h;
|
|
|
|
char* str = _strdup(arg->Value);
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
tok[0] = p = str;
|
|
|
|
|
|
|
|
p = strchr(p + 1, ',');
|
|
|
|
|
|
|
|
if (!p)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
*p++ = '\0';
|
|
|
|
tok[1] = p;
|
|
|
|
|
|
|
|
p = strchr(p + 1, ',');
|
|
|
|
|
|
|
|
if (!p)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
*p++ = '\0';
|
|
|
|
tok[2] = p;
|
|
|
|
|
|
|
|
p = strchr(p + 1, ',');
|
|
|
|
|
|
|
|
if (!p)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
*p++ = '\0';
|
|
|
|
tok[3] = p;
|
|
|
|
|
|
|
|
x = atoi(tok[0]);
|
|
|
|
y = atoi(tok[1]);
|
|
|
|
w = atoi(tok[2]);
|
|
|
|
h = atoi(tok[3]);
|
|
|
|
|
|
|
|
if ((x < 0) || (y < 0) || (w < 1) || (h < 1))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
server->subRect.left = x;
|
|
|
|
server->subRect.top = y;
|
|
|
|
server->subRect.right = x + w;
|
|
|
|
server->subRect.bottom = y + h;
|
|
|
|
server->shareSubRect = TRUE;
|
|
|
|
}
|
2014-07-14 21:33:20 +04:00
|
|
|
CommandLineSwitchDefault(arg)
|
|
|
|
{
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
CommandLineSwitchEnd(arg)
|
|
|
|
}
|
|
|
|
while ((arg = CommandLineFindNextArgumentA(arg)) != NULL);
|
|
|
|
|
|
|
|
arg = CommandLineFindArgumentA(shadow_args, "monitors");
|
|
|
|
|
2014-07-15 02:01:29 +04:00
|
|
|
if (arg && (arg->Flags & COMMAND_LINE_ARGUMENT_PRESENT))
|
2014-07-14 21:33:20 +04:00
|
|
|
{
|
2014-09-10 22:58:14 +04:00
|
|
|
int index;
|
|
|
|
rdpShadowSubsystem* subsystem = server->subsystem;
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
if (arg->Flags & COMMAND_LINE_VALUE_PRESENT)
|
|
|
|
{
|
|
|
|
/* Select monitors */
|
2014-09-10 22:58:14 +04:00
|
|
|
|
|
|
|
index = atoi(arg->Value);
|
|
|
|
|
|
|
|
if (index < 0)
|
|
|
|
index = 0;
|
|
|
|
|
|
|
|
if (index >= subsystem->monitorCount)
|
|
|
|
index = 0;
|
|
|
|
|
|
|
|
subsystem->selectedMonitor = index;
|
2014-07-14 21:33:20 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
MONITOR_DEF* monitor;
|
|
|
|
|
|
|
|
/* List monitors */
|
|
|
|
|
|
|
|
for (index = 0; index < subsystem->monitorCount; index++)
|
|
|
|
{
|
|
|
|
monitor = &(subsystem->monitors[index]);
|
|
|
|
|
|
|
|
width = monitor->right - monitor->left;
|
|
|
|
height = monitor->bottom - monitor->top;
|
|
|
|
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_INFO(TAG, " %s [%d] %dx%d\t+%d+%d",
|
2014-07-14 21:33:20 +04:00
|
|
|
(monitor->flags == 1) ? "*" : " ", index,
|
|
|
|
width, height, monitor->left, monitor->top);
|
|
|
|
}
|
|
|
|
|
|
|
|
status = COMMAND_LINE_STATUS_PRINT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
int shadow_server_surface_update(rdpShadowSubsystem* subsystem, REGION16* region)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int count;
|
|
|
|
wArrayList* clients;
|
|
|
|
rdpShadowServer* server;
|
|
|
|
rdpShadowClient* client;
|
|
|
|
|
|
|
|
server = subsystem->server;
|
|
|
|
clients = server->clients;
|
|
|
|
|
|
|
|
ArrayList_Lock(clients);
|
|
|
|
|
|
|
|
count = ArrayList_Count(clients);
|
|
|
|
|
|
|
|
for (index = 0; index < count; index++)
|
|
|
|
{
|
|
|
|
client = ArrayList_GetItem(clients, index);
|
|
|
|
shadow_client_surface_update(client, region);
|
|
|
|
}
|
|
|
|
|
|
|
|
ArrayList_Unlock(clients);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
void* shadow_server_thread(rdpShadowServer* server)
|
2014-07-11 00:32:46 +04:00
|
|
|
{
|
2014-07-11 01:20:41 +04:00
|
|
|
DWORD status;
|
|
|
|
DWORD nCount;
|
|
|
|
HANDLE events[32];
|
2014-07-12 09:18:08 +04:00
|
|
|
HANDLE StopEvent;
|
2014-07-11 01:20:41 +04:00
|
|
|
freerdp_listener* listener;
|
2014-07-14 05:20:36 +04:00
|
|
|
rdpShadowSubsystem* subsystem;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
listener = server->listener;
|
2014-07-12 09:18:08 +04:00
|
|
|
StopEvent = server->StopEvent;
|
2014-07-14 05:20:36 +04:00
|
|
|
subsystem = server->subsystem;
|
2014-07-11 01:20:41 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (subsystem->Start)
|
|
|
|
{
|
|
|
|
subsystem->Start(subsystem);
|
|
|
|
}
|
2014-07-14 03:42:57 +04:00
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
nCount = 0;
|
|
|
|
|
|
|
|
if (listener->GetEventHandles(listener, events, &nCount) < 0)
|
|
|
|
{
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "Failed to get FreeRDP file descriptor");
|
2014-07-11 01:20:41 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-07-12 09:18:08 +04:00
|
|
|
events[nCount++] = server->StopEvent;
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
status = WaitForMultipleObjects(nCount, events, FALSE, INFINITE);
|
|
|
|
|
2014-07-12 09:18:08 +04:00
|
|
|
if (WaitForSingleObject(server->StopEvent, 0) == WAIT_OBJECT_0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
if (!listener->CheckFileDescriptor(listener))
|
|
|
|
{
|
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-08-16 02:12:53 +04:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
Sleep(100); /* FIXME: listener event handles */
|
|
|
|
#endif
|
2014-07-11 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
listener->Close(listener);
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (subsystem->Stop)
|
|
|
|
{
|
|
|
|
subsystem->Stop(subsystem);
|
|
|
|
}
|
|
|
|
|
2014-07-11 00:32:46 +04:00
|
|
|
ExitThread(0);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
int shadow_server_start(rdpShadowServer* server)
|
2014-07-11 00:32:46 +04:00
|
|
|
{
|
2014-08-06 20:08:00 +04:00
|
|
|
BOOL status;
|
2014-07-18 05:15:22 +04:00
|
|
|
WSADATA wsaData;
|
|
|
|
|
|
|
|
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0)
|
|
|
|
return -1;
|
|
|
|
|
2014-07-12 07:01:34 +04:00
|
|
|
#ifndef _WIN32
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
server->screen = shadow_screen_new(server);
|
|
|
|
|
|
|
|
if (!server->screen)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
server->capture = shadow_capture_new(server);
|
|
|
|
|
|
|
|
if (!server->capture)
|
|
|
|
return -1;
|
|
|
|
|
2014-08-06 20:08:00 +04:00
|
|
|
if (!server->ipcSocket)
|
|
|
|
status = server->listener->Open(server->listener, NULL, (UINT16) server->port);
|
|
|
|
else
|
|
|
|
status = server->listener->OpenLocal(server->listener, server->ipcSocket);
|
|
|
|
|
|
|
|
if (status)
|
2014-07-11 00:32:46 +04:00
|
|
|
{
|
|
|
|
server->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)
|
|
|
|
shadow_server_thread, (void*) server, 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
int shadow_server_stop(rdpShadowServer* server)
|
2014-07-11 00:32:46 +04:00
|
|
|
{
|
|
|
|
if (server->thread)
|
|
|
|
{
|
2014-07-12 09:18:08 +04:00
|
|
|
SetEvent(server->StopEvent);
|
2014-07-11 00:32:46 +04:00
|
|
|
WaitForSingleObject(server->thread, INFINITE);
|
|
|
|
CloseHandle(server->thread);
|
2014-07-12 09:18:08 +04:00
|
|
|
server->thread = NULL;
|
2014-07-11 00:32:46 +04:00
|
|
|
|
|
|
|
server->listener->Close(server->listener);
|
|
|
|
}
|
|
|
|
|
2014-09-10 22:58:14 +04:00
|
|
|
if (server->screen)
|
|
|
|
{
|
|
|
|
shadow_screen_free(server->screen);
|
|
|
|
server->screen = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (server->capture)
|
|
|
|
{
|
|
|
|
shadow_capture_free(server->capture);
|
|
|
|
server->capture = NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-11 00:32:46 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-18 18:06:59 +04:00
|
|
|
int shadow_server_init_config_path(rdpShadowServer* server)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (!server->ConfigPath)
|
|
|
|
{
|
|
|
|
server->ConfigPath = GetEnvironmentSubPath("LOCALAPPDATA", "freerdp");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
if (!server->ConfigPath)
|
|
|
|
{
|
|
|
|
char* userLibraryPath;
|
|
|
|
char* userApplicationSupportPath;
|
|
|
|
|
|
|
|
userLibraryPath = GetKnownSubPath(KNOWN_PATH_HOME, "Library");
|
|
|
|
|
|
|
|
if (userLibraryPath)
|
|
|
|
{
|
|
|
|
if (!PathFileExistsA(userLibraryPath))
|
|
|
|
CreateDirectoryA(userLibraryPath, 0);
|
|
|
|
|
|
|
|
userApplicationSupportPath = GetCombinedPath(userLibraryPath, "Application Support");
|
|
|
|
|
|
|
|
if (userApplicationSupportPath)
|
|
|
|
{
|
|
|
|
if (!PathFileExistsA(userApplicationSupportPath))
|
|
|
|
CreateDirectoryA(userApplicationSupportPath, 0);
|
|
|
|
|
|
|
|
server->ConfigPath = GetCombinedPath(userApplicationSupportPath, "freerdp");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(userLibraryPath);
|
|
|
|
free(userApplicationSupportPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!server->ConfigPath)
|
|
|
|
{
|
|
|
|
char* configHome;
|
|
|
|
|
|
|
|
configHome = GetKnownPath(KNOWN_PATH_XDG_CONFIG_HOME);
|
|
|
|
|
|
|
|
if (configHome)
|
|
|
|
{
|
|
|
|
if (!PathFileExistsA(configHome))
|
|
|
|
CreateDirectoryA(configHome, 0);
|
|
|
|
|
|
|
|
server->ConfigPath = GetKnownSubPath(KNOWN_PATH_XDG_CONFIG_HOME, "freerdp");
|
|
|
|
|
|
|
|
free(configHome);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!server->ConfigPath)
|
|
|
|
return -1; /* no usable config path */
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
int shadow_server_init_certificate(rdpShadowServer* server)
|
|
|
|
{
|
|
|
|
char* filepath;
|
|
|
|
MAKECERT_CONTEXT* makecert;
|
|
|
|
|
|
|
|
const char* makecert_argv[6] =
|
|
|
|
{
|
|
|
|
"makecert",
|
|
|
|
"-rdp",
|
|
|
|
"-live",
|
|
|
|
"-silent",
|
|
|
|
"-y", "5"
|
|
|
|
};
|
|
|
|
|
|
|
|
int makecert_argc = (sizeof(makecert_argv) / sizeof(char*));
|
|
|
|
|
|
|
|
if (!PathFileExistsA(server->ConfigPath))
|
|
|
|
CreateDirectoryA(server->ConfigPath, 0);
|
|
|
|
|
|
|
|
filepath = GetCombinedPath(server->ConfigPath, "shadow");
|
|
|
|
|
|
|
|
if (!filepath)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!PathFileExistsA(filepath))
|
|
|
|
CreateDirectoryA(filepath, 0);
|
|
|
|
|
|
|
|
server->CertificateFile = GetCombinedPath(filepath, "shadow.crt");
|
|
|
|
server->PrivateKeyFile = GetCombinedPath(filepath, "shadow.key");
|
|
|
|
|
|
|
|
if ((!PathFileExistsA(server->CertificateFile)) ||
|
|
|
|
(!PathFileExistsA(server->PrivateKeyFile)))
|
|
|
|
{
|
|
|
|
makecert = makecert_context_new();
|
|
|
|
|
|
|
|
makecert_context_process(makecert, makecert_argc, (char**) makecert_argv);
|
|
|
|
|
|
|
|
makecert_context_set_output_file_name(makecert, "shadow");
|
|
|
|
|
|
|
|
if (!PathFileExistsA(server->CertificateFile))
|
|
|
|
makecert_context_output_certificate_file(makecert, filepath);
|
|
|
|
|
|
|
|
if (!PathFileExistsA(server->PrivateKeyFile))
|
|
|
|
makecert_context_output_private_key_file(makecert, filepath);
|
|
|
|
|
|
|
|
makecert_context_free(makecert);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(filepath);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
int shadow_server_init(rdpShadowServer* server)
|
2014-07-11 00:32:46 +04:00
|
|
|
{
|
2014-07-18 05:15:22 +04:00
|
|
|
int status;
|
|
|
|
|
2014-08-15 21:50:22 +04:00
|
|
|
winpr_InitializeSSL(WINPR_SSL_INIT_DEFAULT);
|
|
|
|
|
2014-07-15 02:01:29 +04:00
|
|
|
WTSRegisterWtsApiFunctionTable(FreeRDP_InitWtsApi());
|
|
|
|
|
2014-07-12 09:18:08 +04:00
|
|
|
server->StopEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
status = shadow_server_init_certificate(server);
|
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
return -1;
|
|
|
|
|
2014-07-12 03:30:40 +04:00
|
|
|
server->listener = freerdp_listener_new();
|
|
|
|
|
|
|
|
if (!server->listener)
|
2014-07-14 21:33:20 +04:00
|
|
|
return -1;
|
2014-07-12 03:30:40 +04:00
|
|
|
|
|
|
|
server->listener->info = (void*) server;
|
|
|
|
server->listener->PeerAccepted = shadow_client_accepted;
|
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
#ifdef WITH_SHADOW_X11
|
|
|
|
server->CreateSubsystem = X11_ShadowCreateSubsystem;
|
|
|
|
#endif
|
|
|
|
|
2014-07-16 07:01:56 +04:00
|
|
|
#ifdef WITH_SHADOW_MAC
|
|
|
|
server->CreateSubsystem = Mac_ShadowCreateSubsystem;
|
|
|
|
#endif
|
2014-07-18 02:27:40 +04:00
|
|
|
|
|
|
|
#ifdef WITH_SHADOW_WIN
|
|
|
|
server->CreateSubsystem = Win_ShadowCreateSubsystem;
|
|
|
|
#endif
|
2014-07-16 07:01:56 +04:00
|
|
|
|
2014-07-14 05:20:36 +04:00
|
|
|
if (server->CreateSubsystem)
|
|
|
|
server->subsystem = server->CreateSubsystem(server);
|
2014-07-12 08:01:29 +04:00
|
|
|
|
|
|
|
if (!server->subsystem)
|
2014-07-14 21:33:20 +04:00
|
|
|
return -1;
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
server->subsystem->SurfaceUpdate = shadow_server_surface_update;
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
if (server->subsystem->Init)
|
2014-07-18 05:15:22 +04:00
|
|
|
{
|
|
|
|
status = server->subsystem->Init(server->subsystem);
|
|
|
|
|
|
|
|
if (status < 0)
|
2014-09-12 19:38:12 +04:00
|
|
|
WLog_ERR(TAG, "subsystem init failure: %d", status);
|
2014-07-18 05:15:22 +04:00
|
|
|
}
|
2014-07-12 08:01:29 +04:00
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int shadow_server_uninit(rdpShadowServer* server)
|
|
|
|
{
|
|
|
|
shadow_server_stop(server);
|
|
|
|
|
|
|
|
if (server->listener)
|
|
|
|
{
|
|
|
|
freerdp_listener_free(server->listener);
|
|
|
|
server->listener = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (server->subsystem)
|
|
|
|
{
|
|
|
|
server->subsystem->Free(server->subsystem);
|
|
|
|
server->subsystem = NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
if (server->CertificateFile)
|
|
|
|
{
|
|
|
|
free(server->CertificateFile);
|
|
|
|
server->CertificateFile = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (server->PrivateKeyFile)
|
|
|
|
{
|
|
|
|
free(server->PrivateKeyFile);
|
|
|
|
server->PrivateKeyFile = NULL;
|
|
|
|
}
|
|
|
|
|
2014-08-06 20:08:00 +04:00
|
|
|
if (server->ipcSocket)
|
|
|
|
{
|
|
|
|
free(server->ipcSocket);
|
|
|
|
server->ipcSocket = NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
rdpShadowServer* shadow_server_new()
|
|
|
|
{
|
|
|
|
rdpShadowServer* server;
|
|
|
|
|
|
|
|
server = (rdpShadowServer*) calloc(1, sizeof(rdpShadowServer));
|
|
|
|
|
|
|
|
if (!server)
|
2014-07-12 04:49:56 +04:00
|
|
|
return NULL;
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
server->port = 3389;
|
2014-07-15 02:01:29 +04:00
|
|
|
server->mayView = TRUE;
|
|
|
|
server->mayInteract = TRUE;
|
2014-07-14 21:33:20 +04:00
|
|
|
|
2014-09-18 18:06:59 +04:00
|
|
|
shadow_server_init_config_path(server);
|
2014-07-18 05:15:22 +04:00
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
InitializeCriticalSectionAndSpinCount(&(server->lock), 4000);
|
|
|
|
|
|
|
|
server->clients = ArrayList_New(TRUE);
|
|
|
|
|
2014-07-11 00:32:46 +04:00
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
2014-07-11 01:20:41 +04:00
|
|
|
void shadow_server_free(rdpShadowServer* server)
|
2014-07-11 00:32:46 +04:00
|
|
|
{
|
2014-07-12 03:30:40 +04:00
|
|
|
if (!server)
|
|
|
|
return;
|
|
|
|
|
2014-07-19 01:26:21 +04:00
|
|
|
DeleteCriticalSection(&(server->lock));
|
|
|
|
|
|
|
|
if (server->clients)
|
|
|
|
{
|
|
|
|
ArrayList_Free(server->clients);
|
|
|
|
server->clients = NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-14 21:33:20 +04:00
|
|
|
shadow_server_uninit(server);
|
2014-07-12 03:30:40 +04:00
|
|
|
|
|
|
|
free(server);
|
2014-07-11 00:32:46 +04:00
|
|
|
}
|
|
|
|
|