2012-06-08 03:51:00 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* FreeRDP Windows Server
|
|
|
|
*
|
|
|
|
* Copyright 2012 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <winpr/windows.h>
|
|
|
|
#include <freerdp/constants.h>
|
|
|
|
#include <freerdp/utils/sleep.h>
|
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
#include <freerdp/utils/thread.h>
|
|
|
|
#include <freerdp/codec/rfx.h>
|
|
|
|
#include <freerdp/codec/nsc.h>
|
|
|
|
#include <freerdp/listener.h>
|
|
|
|
|
|
|
|
HANDLE g_done_event;
|
|
|
|
int g_thread_count = 0;
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
struct wf_peer_context
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
rdpContext _p;
|
|
|
|
boolean activated;
|
|
|
|
};
|
2012-06-11 06:52:01 +04:00
|
|
|
typedef struct wf_peer_context wfPeerContext;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
void wf_peer_context_new(freerdp_peer* client, wfPeerContext* context)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
void wf_peer_context_free(freerdp_peer* client, wfPeerContext* context)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
if (context)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
static void wf_peer_init(freerdp_peer* client)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
2012-06-11 06:52:01 +04:00
|
|
|
client->context_size = sizeof(wfPeerContext);
|
|
|
|
client->ContextNew = (psPeerContextNew) wf_peer_context_new;
|
|
|
|
client->ContextFree = (psPeerContextFree) wf_peer_context_free;
|
2012-06-08 03:51:00 +04:00
|
|
|
freerdp_peer_context_new(client);
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
boolean wf_peer_post_connect(freerdp_peer* client)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
2012-06-11 06:52:01 +04:00
|
|
|
wfPeerContext* context = (wfPeerContext*) client->context;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This callback is called when the entire connection sequence is done, i.e. we've received the
|
|
|
|
* Font List PDU from the client and sent out the Font Map PDU.
|
|
|
|
* The server may start sending graphics output and receiving keyboard/mouse input after this
|
|
|
|
* callback returns.
|
|
|
|
*/
|
|
|
|
|
|
|
|
printf("Client %s is activated (osMajorType %d osMinorType %d)", client->local ? "(local)" : client->hostname,
|
|
|
|
client->settings->os_major_type, client->settings->os_minor_type);
|
|
|
|
|
|
|
|
if (client->settings->autologon)
|
|
|
|
{
|
|
|
|
printf(" and wants to login automatically as %s\\%s",
|
|
|
|
client->settings->domain ? client->settings->domain : "",
|
|
|
|
client->settings->username);
|
|
|
|
|
|
|
|
/* A real server may perform OS login here if NLA is not executed previously. */
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
printf("Client requested desktop: %dx%dx%d\n",
|
|
|
|
client->settings->width, client->settings->height, client->settings->color_depth);
|
|
|
|
|
|
|
|
/* A real server should tag the peer as activated here and start sending updates in main loop. */
|
|
|
|
|
|
|
|
/* Return false here would stop the execution of the peer mainloop. */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
boolean wf_peer_activate(freerdp_peer* client)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
2012-06-11 06:52:01 +04:00
|
|
|
wfPeerContext* context = (wfPeerContext*) client->context;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
|
|
|
context->activated = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
void wf_peer_synchronize_event(rdpInput* input, uint32 flags)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
printf("Client sent a synchronize event (flags:0x%X)\n", flags);
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
void wf_peer_keyboard_event(rdpInput* input, uint16 flags, uint16 code)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
freerdp_peer* client = input->context->peer;
|
|
|
|
rdpUpdate* update = client->update;
|
2012-06-11 06:52:01 +04:00
|
|
|
wfPeerContext* context = (wfPeerContext*) input->context;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
|
|
|
printf("Client sent a keyboard event (flags:0x%X code:0x%X)\n", flags, code);
|
|
|
|
|
|
|
|
if ((flags & 0x4000) && code == 0x1F) /* 's' key */
|
|
|
|
{
|
|
|
|
if (client->settings->width != 800)
|
|
|
|
{
|
|
|
|
client->settings->width = 800;
|
|
|
|
client->settings->height = 600;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
client->settings->width = 640;
|
|
|
|
client->settings->height = 480;
|
|
|
|
}
|
|
|
|
update->DesktopResize(update->context);
|
|
|
|
context->activated = false;
|
|
|
|
}
|
|
|
|
else if ((flags & 0x4000) && code == 0x2D) /* 'x' key */
|
|
|
|
{
|
|
|
|
client->Close(client);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
void wf_peer_unicode_keyboard_event(rdpInput* input, uint16 flags, uint16 code)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
printf("Client sent a unicode keyboard event (flags:0x%X code:0x%X)\n", flags, code);
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
void wf_peer_mouse_event(rdpInput* input, uint16 flags, uint16 x, uint16 y)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
printf("Client sent a mouse event (flags:0x%X pos:%d,%d)\n", flags, x, y);
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
void wf_peer_extended_mouse_event(rdpInput* input, uint16 flags, uint16 x, uint16 y)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
printf("Client sent an extended mouse event (flags:0x%X pos:%d,%d)\n", flags, x, y);
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
static DWORD WINAPI wf_peer_main_loop(LPVOID lpParam)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
int rcount;
|
|
|
|
void* rfds[32];
|
2012-06-11 06:52:01 +04:00
|
|
|
wfPeerContext* context;
|
2012-06-08 03:51:00 +04:00
|
|
|
freerdp_peer* client = (freerdp_peer*) lpParam;
|
|
|
|
|
|
|
|
memset(rfds, 0, sizeof(rfds));
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
wf_peer_init(client);
|
2012-06-08 03:51:00 +04:00
|
|
|
|
|
|
|
/* Initialize the real server settings here */
|
|
|
|
client->settings->cert_file = xstrdup("server.crt");
|
|
|
|
client->settings->privatekey_file = xstrdup("server.key");
|
2012-06-13 07:09:30 +04:00
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
client->settings->nla_security = true;
|
2012-06-13 07:09:30 +04:00
|
|
|
client->settings->tls_security = false;
|
|
|
|
client->settings->rdp_security = false;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
client->PostConnect = wf_peer_post_connect;
|
|
|
|
client->Activate = wf_peer_activate;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
client->input->SynchronizeEvent = wf_peer_synchronize_event;
|
|
|
|
client->input->KeyboardEvent = wf_peer_keyboard_event;
|
|
|
|
client->input->UnicodeKeyboardEvent = wf_peer_unicode_keyboard_event;
|
|
|
|
client->input->MouseEvent = wf_peer_mouse_event;
|
|
|
|
client->input->ExtendedMouseEvent = wf_peer_extended_mouse_event;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
|
|
|
client->Initialize(client);
|
2012-06-11 06:52:01 +04:00
|
|
|
context = (wfPeerContext*) client->context;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
|
|
|
printf("We've got a client %s\n", client->local ? "(local)" : client->hostname);
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
rcount = 0;
|
|
|
|
|
|
|
|
if (client->GetFileDescriptor(client, rfds, &rcount) != true)
|
|
|
|
{
|
|
|
|
printf("Failed to get FreeRDP file descriptor\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (client->CheckFileDescriptor(client) != true)
|
2012-06-11 05:41:17 +04:00
|
|
|
{
|
|
|
|
printf("Failed to check FreeRDP file descriptor\n");
|
2012-06-08 03:51:00 +04:00
|
|
|
break;
|
2012-06-11 05:41:17 +04:00
|
|
|
}
|
2012-06-08 03:51:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("Client %s disconnected.\n", client->local ? "(local)" : client->hostname);
|
|
|
|
|
|
|
|
client->Disconnect(client);
|
|
|
|
freerdp_peer_context_free(client);
|
|
|
|
freerdp_peer_free(client);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
static void wf_peer_accepted(freerdp_listener* instance, freerdp_peer* client)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
/* start peer main loop thread */
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
if (CreateThread(NULL, 0, wf_peer_main_loop, client, 0, NULL) != 0)
|
2012-06-08 03:51:00 +04:00
|
|
|
g_thread_count++;
|
|
|
|
}
|
|
|
|
|
2012-06-13 07:09:30 +04:00
|
|
|
static void wf_server_main_loop(freerdp_listener* instance)
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
int rcount;
|
|
|
|
void* rfds[32];
|
|
|
|
|
|
|
|
memset(rfds, 0, sizeof(rfds));
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
rcount = 0;
|
|
|
|
|
|
|
|
if (instance->GetFileDescriptor(instance, rfds, &rcount) != true)
|
|
|
|
{
|
|
|
|
printf("Failed to get FreeRDP file descriptor\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (instance->CheckFileDescriptor(instance) != true)
|
|
|
|
{
|
|
|
|
printf("Failed to check FreeRDP file descriptor\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
instance->Close(instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int port = 3389;
|
|
|
|
WSADATA wsa_data;
|
|
|
|
freerdp_listener* instance;
|
|
|
|
|
|
|
|
instance = freerdp_listener_new();
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
instance->PeerAccepted = wf_peer_accepted;
|
2012-06-08 03:51:00 +04:00
|
|
|
|
|
|
|
if (WSAStartup(0x101, &wsa_data) != 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
g_done_event = CreateEvent(0, 1, 0, 0);
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
port = atoi(argv[1]);
|
|
|
|
|
|
|
|
/* Open the server socket and start listening. */
|
|
|
|
|
2012-06-11 06:52:01 +04:00
|
|
|
if (instance->Open(instance, NULL, port))
|
2012-06-08 03:51:00 +04:00
|
|
|
{
|
|
|
|
/* Entering the server main loop. In a real server the listener can be run in its own thread. */
|
2012-06-13 07:09:30 +04:00
|
|
|
wf_server_main_loop(instance);
|
2012-06-08 03:51:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (g_thread_count > 0)
|
|
|
|
WaitForSingleObject(g_done_event, INFINITE);
|
|
|
|
else
|
|
|
|
MessageBox(GetConsoleWindow(),
|
|
|
|
L"Failed to start wfreerdp-server.\n\nPlease check the debug output.",
|
|
|
|
L"FreeRDP Error", MB_ICONSTOP);
|
|
|
|
|
|
|
|
WSACleanup();
|
|
|
|
|
|
|
|
freerdp_listener_free(instance);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|