ff3fef9490
pcap used utils/stopwatch to save a record's timestamp which is not suitable because stopwatch measures cpu time and not the wall-clock time also fixed the sleep calculation in the tfreerdp test server
600 lines
14 KiB
C
600 lines
14 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
* FreeRDP Test Server
|
|
*
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
* Copyright 2011 Vic Lee
|
|
*
|
|
* 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 <pthread.h>
|
|
#include <signal.h>
|
|
#include <sys/time.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/listener.h>
|
|
|
|
static char* test_pcap_file = NULL;
|
|
static boolean test_dump_rfx_realtime = True;
|
|
|
|
/* HL1, LH1, HH1, HL2, LH2, HH2, HL3, LH3, HH3, LL3 */
|
|
static const unsigned int test_quantization_values[] =
|
|
{
|
|
6, 6, 6, 6, 7, 7, 8, 8, 8, 9
|
|
};
|
|
|
|
struct test_peer_context
|
|
{
|
|
rdpContext _p;
|
|
|
|
RFX_CONTEXT* rfx_context;
|
|
STREAM* s;
|
|
uint8* icon_data;
|
|
uint8* bg_data;
|
|
int icon_width;
|
|
int icon_height;
|
|
int icon_x;
|
|
int icon_y;
|
|
boolean activated;
|
|
};
|
|
typedef struct test_peer_context testPeerContext;
|
|
|
|
void test_peer_context_size(freerdp_peer* client, uint32* size)
|
|
{
|
|
*size = sizeof(testPeerContext);
|
|
}
|
|
|
|
void test_peer_context_new(freerdp_peer* client, testPeerContext* context)
|
|
{
|
|
context->rfx_context = rfx_context_new();
|
|
context->rfx_context->mode = RLGR3;
|
|
context->rfx_context->width = client->settings->width;
|
|
context->rfx_context->height = client->settings->height;
|
|
rfx_context_set_pixel_format(context->rfx_context, RFX_PIXEL_FORMAT_RGB);
|
|
|
|
context->s = stream_new(65536);
|
|
|
|
context->icon_x = -1;
|
|
context->icon_y = -1;
|
|
}
|
|
|
|
void test_peer_context_free(freerdp_peer* client, testPeerContext* context)
|
|
{
|
|
if (context)
|
|
{
|
|
stream_free(context->s);
|
|
xfree(context->icon_data);
|
|
xfree(context->bg_data);
|
|
rfx_context_free(context->rfx_context);
|
|
xfree(context);
|
|
}
|
|
}
|
|
|
|
static void test_peer_init(freerdp_peer* client)
|
|
{
|
|
client->ContextSize = (psPeerContextSize) test_peer_context_size;
|
|
client->ContextNew = (psPeerContextNew) test_peer_context_new;
|
|
client->ContextFree = (psPeerContextFree) test_peer_context_free;
|
|
freerdp_peer_context_new(client);
|
|
}
|
|
|
|
static STREAM* test_peer_stream_init(testPeerContext* context)
|
|
{
|
|
stream_clear(context->s);
|
|
stream_set_pos(context->s, 0);
|
|
return context->s;
|
|
}
|
|
|
|
static void test_peer_draw_background(freerdp_peer* client)
|
|
{
|
|
testPeerContext* context = (testPeerContext*) client->context;
|
|
rdpUpdate* update = client->update;
|
|
SURFACE_BITS_COMMAND* cmd = &update->surface_bits_command;
|
|
STREAM* s;
|
|
RFX_RECT rect;
|
|
uint8* rgb_data;
|
|
int size;
|
|
|
|
if (!client->settings->rfx_codec)
|
|
return;
|
|
|
|
s = test_peer_stream_init(context);
|
|
|
|
rect.x = 0;
|
|
rect.y = 0;
|
|
rect.width = client->settings->width;
|
|
rect.height = client->settings->height;
|
|
|
|
size = rect.width * rect.height * 3;
|
|
rgb_data = xmalloc(size);
|
|
memset(rgb_data, 0xA0, size);
|
|
|
|
rfx_compose_message(context->rfx_context, s,
|
|
&rect, 1, rgb_data, rect.width, rect.height, rect.width * 3);
|
|
|
|
cmd->destLeft = 0;
|
|
cmd->destTop = 0;
|
|
cmd->destRight = rect.width;
|
|
cmd->destBottom = rect.height;
|
|
cmd->bpp = 32;
|
|
cmd->codecID = client->settings->rfx_codec_id;
|
|
cmd->width = rect.width;
|
|
cmd->height = rect.height;
|
|
cmd->bitmapDataLength = stream_get_length(s);
|
|
cmd->bitmapData = stream_get_head(s);
|
|
update->SurfaceBits(update, cmd);
|
|
|
|
xfree(rgb_data);
|
|
}
|
|
|
|
static void test_peer_load_icon(freerdp_peer* client)
|
|
{
|
|
testPeerContext* context = (testPeerContext*) client->context;
|
|
FILE* fp;
|
|
int i;
|
|
char line[50];
|
|
uint8* rgb_data;
|
|
int c;
|
|
|
|
if (!client->settings->rfx_codec)
|
|
return;
|
|
|
|
if ((fp = fopen("test_icon.ppm", "r")) == NULL)
|
|
return;
|
|
|
|
/* P3 */
|
|
fgets(line, sizeof(line), fp);
|
|
/* Creater comment */
|
|
fgets(line, sizeof(line), fp);
|
|
/* width height */
|
|
fgets(line, sizeof(line), fp);
|
|
sscanf(line, "%d %d", &context->icon_width, &context->icon_height);
|
|
/* Max */
|
|
fgets(line, sizeof(line), fp);
|
|
|
|
rgb_data = xmalloc(context->icon_width * context->icon_height * 3);
|
|
|
|
for (i = 0; i < context->icon_width * context->icon_height * 3; i++)
|
|
{
|
|
if (fgets(line, sizeof(line), fp))
|
|
{
|
|
sscanf(line, "%d", &c);
|
|
rgb_data[i] = (uint8)c;
|
|
}
|
|
}
|
|
|
|
context->icon_data = rgb_data;
|
|
|
|
/* background with same size, which will be used to erase the icon from old position */
|
|
context->bg_data = xmalloc(context->icon_width * context->icon_height * 3);
|
|
memset(context->bg_data, 0xA0, context->icon_width * context->icon_height * 3);
|
|
}
|
|
|
|
static void test_peer_draw_icon(freerdp_peer* client, int x, int y)
|
|
{
|
|
testPeerContext* context = (testPeerContext*) client->context;
|
|
rdpUpdate* update = client->update;
|
|
SURFACE_BITS_COMMAND* cmd = &update->surface_bits_command;
|
|
RFX_RECT rect;
|
|
STREAM* s;
|
|
|
|
if (client->update->dump_rfx)
|
|
return;
|
|
if (!client->settings->rfx_codec || !context)
|
|
return;
|
|
if (context->icon_width < 1 || !context->activated)
|
|
return;
|
|
|
|
rect.x = 0;
|
|
rect.y = 0;
|
|
rect.width = context->icon_width;
|
|
rect.height = context->icon_height;
|
|
|
|
if (context->icon_x >= 0)
|
|
{
|
|
s = test_peer_stream_init(context);
|
|
rfx_compose_message(context->rfx_context, s,
|
|
&rect, 1, context->bg_data, rect.width, rect.height, rect.width * 3);
|
|
|
|
cmd->destLeft = context->icon_x;
|
|
cmd->destTop = context->icon_y;
|
|
cmd->destRight = context->icon_x + context->icon_width;
|
|
cmd->destBottom = context->icon_y + context->icon_height;
|
|
cmd->bpp = 32;
|
|
cmd->codecID = client->settings->rfx_codec_id;
|
|
cmd->width = context->icon_width;
|
|
cmd->height = context->icon_height;
|
|
cmd->bitmapDataLength = stream_get_length(s);
|
|
cmd->bitmapData = stream_get_head(s);
|
|
update->SurfaceBits(update, cmd);
|
|
}
|
|
|
|
s = test_peer_stream_init(context);
|
|
rfx_compose_message(context->rfx_context, s,
|
|
&rect, 1, context->icon_data, rect.width, rect.height, rect.width * 3);
|
|
|
|
cmd->destLeft = x;
|
|
cmd->destTop = y;
|
|
cmd->destRight = x + context->icon_width;
|
|
cmd->destBottom = y + context->icon_height;
|
|
cmd->bpp = 32;
|
|
cmd->codecID = client->settings->rfx_codec_id;
|
|
cmd->width = context->icon_width;
|
|
cmd->height = context->icon_height;
|
|
cmd->bitmapDataLength = stream_get_length(s);
|
|
cmd->bitmapData = stream_get_head(s);
|
|
update->SurfaceBits(update, cmd);
|
|
|
|
context->icon_x = x;
|
|
context->icon_y = y;
|
|
}
|
|
|
|
static boolean test_sleep_tsdiff(uint32 *old_sec, uint32 *old_usec, uint32 new_sec, uint32 new_usec)
|
|
{
|
|
sint32 sec, usec;
|
|
|
|
if (*old_sec==0 && *old_usec==0)
|
|
{
|
|
*old_sec = new_sec;
|
|
*old_usec = new_usec;
|
|
return True;
|
|
}
|
|
|
|
sec = new_sec - *old_sec;
|
|
usec = new_usec - *old_usec;
|
|
|
|
if (sec<0 || (sec==0 && usec<0))
|
|
{
|
|
printf("Invalid time stamp detected.\n");
|
|
return False;
|
|
}
|
|
|
|
*old_sec = new_sec;
|
|
*old_usec = new_usec;
|
|
|
|
while (usec < 0)
|
|
{
|
|
usec += 1000000;
|
|
sec--;
|
|
}
|
|
|
|
if (sec > 0)
|
|
freerdp_sleep(sec);
|
|
|
|
if (usec > 0)
|
|
freerdp_usleep(usec);
|
|
|
|
return True;
|
|
}
|
|
|
|
void tf_peer_dump_rfx(freerdp_peer* client)
|
|
{
|
|
STREAM* s;
|
|
uint32 prev_seconds;
|
|
uint32 prev_useconds;
|
|
rdpUpdate* update;
|
|
rdpPcap* pcap_rfx;
|
|
pcap_record record;
|
|
|
|
s = stream_new(512);
|
|
update = client->update;
|
|
client->update->pcap_rfx = pcap_open(test_pcap_file, False);
|
|
pcap_rfx = client->update->pcap_rfx;
|
|
|
|
prev_seconds = prev_useconds = 0;
|
|
|
|
while (pcap_has_next_record(pcap_rfx))
|
|
{
|
|
pcap_get_next_record_header(pcap_rfx, &record);
|
|
|
|
s->data = xrealloc(s->data, record.length);
|
|
record.data = s->data;
|
|
s->size = record.length;
|
|
|
|
pcap_get_next_record_content(pcap_rfx, &record);
|
|
s->p = s->data + s->size;
|
|
|
|
if (test_dump_rfx_realtime && test_sleep_tsdiff(&prev_seconds, &prev_useconds, record.header.ts_sec, record.header.ts_usec) == False)
|
|
break;
|
|
|
|
update->SurfaceCommand(update, s);
|
|
}
|
|
}
|
|
|
|
boolean tf_peer_post_connect(freerdp_peer* client)
|
|
{
|
|
/**
|
|
* 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", client->hostname);
|
|
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 mainloop. */
|
|
test_peer_load_icon(client);
|
|
|
|
/* Return False here would stop the execution of the peer mainloop. */
|
|
return True;
|
|
}
|
|
|
|
boolean tf_peer_activate(freerdp_peer* client)
|
|
{
|
|
testPeerContext* context = (testPeerContext*) client->context;
|
|
|
|
rfx_context_reset(context->rfx_context);
|
|
context->activated = True;
|
|
|
|
if (test_pcap_file != NULL)
|
|
{
|
|
client->update->dump_rfx = True;
|
|
tf_peer_dump_rfx(client);
|
|
}
|
|
else
|
|
{
|
|
test_peer_draw_background(client);
|
|
}
|
|
|
|
return True;
|
|
}
|
|
|
|
void tf_peer_synchronize_event(rdpInput* input, uint32 flags)
|
|
{
|
|
printf("Client sent a synchronize event (flags:0x%X)\n", flags);
|
|
}
|
|
|
|
void tf_peer_keyboard_event(rdpInput* input, uint16 flags, uint16 code)
|
|
{
|
|
freerdp_peer* client = input->context->peer;
|
|
rdpUpdate* update = client->update;
|
|
testPeerContext* context = (testPeerContext*) input->context;
|
|
|
|
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->activated = False;
|
|
}
|
|
}
|
|
|
|
void tf_peer_unicode_keyboard_event(rdpInput* input, uint16 code)
|
|
{
|
|
printf("Client sent a unicode keyboard event (code:0x%X)\n", code);
|
|
}
|
|
|
|
void tf_peer_mouse_event(rdpInput* input, uint16 flags, uint16 x, uint16 y)
|
|
{
|
|
printf("Client sent a mouse event (flags:0x%X pos:%d,%d)\n", flags, x, y);
|
|
|
|
test_peer_draw_icon(input->context->peer, x + 10, y);
|
|
}
|
|
|
|
void tf_peer_extended_mouse_event(rdpInput* input, uint16 flags, uint16 x, uint16 y)
|
|
{
|
|
printf("Client sent an extended mouse event (flags:0x%X pos:%d,%d)\n", flags, x, y);
|
|
}
|
|
|
|
static void* test_peer_mainloop(void* arg)
|
|
{
|
|
int i;
|
|
int fds;
|
|
int max_fds;
|
|
int rcount;
|
|
void* rfds[32];
|
|
fd_set rfds_set;
|
|
freerdp_peer* client = (freerdp_peer*) arg;
|
|
|
|
memset(rfds, 0, sizeof(rfds));
|
|
|
|
test_peer_init(client);
|
|
|
|
/* Initialize the real server settings here */
|
|
client->settings->cert_file = xstrdup("server.crt");
|
|
client->settings->privatekey_file = xstrdup("server.key");
|
|
client->settings->nla_security = False;
|
|
client->settings->rfx_codec = True;
|
|
|
|
client->PostConnect = tf_peer_post_connect;
|
|
client->Activate = tf_peer_activate;
|
|
|
|
client->input->SynchronizeEvent = tf_peer_synchronize_event;
|
|
client->input->KeyboardEvent = tf_peer_keyboard_event;
|
|
client->input->UnicodeKeyboardEvent = tf_peer_unicode_keyboard_event;
|
|
client->input->MouseEvent = tf_peer_mouse_event;
|
|
client->input->ExtendedMouseEvent = tf_peer_extended_mouse_event;
|
|
|
|
client->Initialize(client);
|
|
|
|
printf("We've got a client %s\n", client->hostname);
|
|
|
|
while (1)
|
|
{
|
|
rcount = 0;
|
|
|
|
if (client->GetFileDescriptor(client, rfds, &rcount) != True)
|
|
{
|
|
printf("Failed to get FreeRDP file descriptor\n");
|
|
break;
|
|
}
|
|
|
|
max_fds = 0;
|
|
FD_ZERO(&rfds_set);
|
|
|
|
for (i = 0; i < rcount; i++)
|
|
{
|
|
fds = (int)(long)(rfds[i]);
|
|
|
|
if (fds > max_fds)
|
|
max_fds = fds;
|
|
|
|
FD_SET(fds, &rfds_set);
|
|
}
|
|
|
|
if (max_fds == 0)
|
|
break;
|
|
|
|
if (select(max_fds + 1, &rfds_set, NULL, NULL, NULL) == -1)
|
|
{
|
|
/* these are not really errors */
|
|
if (!((errno == EAGAIN) ||
|
|
(errno == EWOULDBLOCK) ||
|
|
(errno == EINPROGRESS) ||
|
|
(errno == EINTR))) /* signal occurred */
|
|
{
|
|
printf("select failed\n");
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (client->CheckFileDescriptor(client) != True)
|
|
break;
|
|
}
|
|
|
|
printf("Client %s disconnected.\n", client->hostname);
|
|
|
|
client->Disconnect(client);
|
|
freerdp_peer_context_free(client);
|
|
freerdp_peer_free(client);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static void test_peer_accepted(freerdp_listener* instance, freerdp_peer* client)
|
|
{
|
|
pthread_t th;
|
|
|
|
pthread_create(&th, 0, test_peer_mainloop, client);
|
|
pthread_detach(th);
|
|
}
|
|
|
|
static void test_server_mainloop(freerdp_listener* instance)
|
|
{
|
|
int i;
|
|
int fds;
|
|
int max_fds;
|
|
int rcount;
|
|
void* rfds[32];
|
|
fd_set rfds_set;
|
|
|
|
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;
|
|
}
|
|
|
|
max_fds = 0;
|
|
FD_ZERO(&rfds_set);
|
|
|
|
for (i = 0; i < rcount; i++)
|
|
{
|
|
fds = (int)(long)(rfds[i]);
|
|
|
|
if (fds > max_fds)
|
|
max_fds = fds;
|
|
|
|
FD_SET(fds, &rfds_set);
|
|
}
|
|
|
|
if (max_fds == 0)
|
|
break;
|
|
|
|
if (select(max_fds + 1, &rfds_set, NULL, NULL, NULL) == -1)
|
|
{
|
|
/* these are not really errors */
|
|
if (!((errno == EAGAIN) ||
|
|
(errno == EWOULDBLOCK) ||
|
|
(errno == EINPROGRESS) ||
|
|
(errno == EINTR))) /* signal occurred */
|
|
{
|
|
printf("select failed\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[])
|
|
{
|
|
freerdp_listener* instance;
|
|
|
|
/* Ignore SIGPIPE, otherwise an SSL_write failure could crash your server */
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
instance = freerdp_listener_new();
|
|
|
|
instance->PeerAccepted = test_peer_accepted;
|
|
|
|
if (argc > 1)
|
|
test_pcap_file = argv[1];
|
|
|
|
if (argc > 2 && !strcmp(argv[2], "--fast"))
|
|
test_dump_rfx_realtime = False;
|
|
|
|
/* Open the server socket and start listening. */
|
|
if (instance->Open(instance, NULL, 3389))
|
|
{
|
|
/* Entering the server main loop. In a real server the listener can be run in its own thread. */
|
|
test_server_mainloop(instance);
|
|
}
|
|
|
|
freerdp_listener_free(instance);
|
|
|
|
return 0;
|
|
}
|
|
|