2015-07-03 12:56:57 +03:00
|
|
|
#include <winpr/sysinfo.h>
|
|
|
|
#include <winpr/path.h>
|
2017-02-17 12:59:22 +03:00
|
|
|
#include <winpr/crypto.h>
|
2015-07-03 12:56:57 +03:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/client/cmdline.h>
|
|
|
|
|
|
|
|
static HANDLE s_sync = NULL;
|
|
|
|
|
|
|
|
static int runInstance(int argc, char* argv[], freerdp** inst)
|
|
|
|
{
|
|
|
|
int rc = -1;
|
2017-09-25 14:30:05 +03:00
|
|
|
RDP_CLIENT_ENTRY_POINTS clientEntryPoints;
|
|
|
|
ZeroMemory(&clientEntryPoints, sizeof(RDP_CLIENT_ENTRY_POINTS));
|
|
|
|
clientEntryPoints.Size = sizeof(RDP_CLIENT_ENTRY_POINTS);
|
|
|
|
clientEntryPoints.Version = RDP_CLIENT_INTERFACE_VERSION;
|
|
|
|
clientEntryPoints.ContextSize = sizeof(rdpContext);
|
|
|
|
rdpContext* context = freerdp_client_context_new(&clientEntryPoints);
|
|
|
|
|
|
|
|
if (!context)
|
2015-07-03 12:56:57 +03:00
|
|
|
goto finish;
|
|
|
|
|
|
|
|
if (inst)
|
2017-09-25 14:30:05 +03:00
|
|
|
*inst = context->instance;
|
2015-07-03 12:56:57 +03:00
|
|
|
|
2017-09-25 14:30:05 +03:00
|
|
|
if (freerdp_client_settings_parse_command_line(context->settings, argc, argv, FALSE) < 0)
|
2015-07-03 12:56:57 +03:00
|
|
|
goto finish;
|
|
|
|
|
2017-09-25 14:30:05 +03:00
|
|
|
if (!freerdp_client_load_addins(context->channels, context->settings))
|
2015-07-03 12:56:57 +03:00
|
|
|
goto finish;
|
|
|
|
|
|
|
|
if (s_sync)
|
|
|
|
{
|
|
|
|
if (!SetEvent(s_sync))
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = 1;
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2017-09-25 14:30:05 +03:00
|
|
|
if (!freerdp_connect(context->instance))
|
2015-07-03 12:56:57 +03:00
|
|
|
goto finish;
|
|
|
|
|
|
|
|
rc = 2;
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2017-09-25 14:30:05 +03:00
|
|
|
if (!freerdp_disconnect(context->instance))
|
2015-07-03 12:56:57 +03:00
|
|
|
goto finish;
|
|
|
|
|
|
|
|
rc = 0;
|
|
|
|
finish:
|
2017-09-25 14:30:05 +03:00
|
|
|
freerdp_client_context_free(context);
|
2015-07-03 12:56:57 +03:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-07-06 19:31:22 +03:00
|
|
|
static int testTimeout(int port)
|
2015-07-03 12:56:57 +03:00
|
|
|
{
|
|
|
|
DWORD start, end, diff;
|
2016-07-06 19:31:22 +03:00
|
|
|
char arg1[] = "/v:192.0.2.1:XXXXX";
|
2019-11-06 17:24:51 +03:00
|
|
|
char* argv[] = { "test", "/v:192.0.2.1:XXXXX", NULL };
|
2015-07-03 12:56:57 +03:00
|
|
|
int rc;
|
2017-02-17 12:56:16 +03:00
|
|
|
_snprintf(arg1, 18, "/v:192.0.2.1:%d", port);
|
2016-07-06 19:31:22 +03:00
|
|
|
argv[1] = arg1;
|
2015-07-03 12:56:57 +03:00
|
|
|
start = GetTickCount();
|
|
|
|
rc = runInstance(2, argv, NULL);
|
|
|
|
end = GetTickCount();
|
|
|
|
|
|
|
|
if (rc != 1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
diff = end - start;
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2015-07-03 12:56:57 +03:00
|
|
|
if (diff > 16000)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (diff < 14000)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
printf("%s: Success!\n", __FUNCTION__);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-13 23:02:25 +03:00
|
|
|
struct testThreadArgs
|
|
|
|
{
|
2016-07-06 19:31:22 +03:00
|
|
|
int port;
|
|
|
|
freerdp** arg;
|
|
|
|
};
|
|
|
|
|
2018-03-07 14:03:10 +03:00
|
|
|
static DWORD WINAPI testThread(LPVOID arg)
|
2015-07-03 12:56:57 +03:00
|
|
|
{
|
2016-07-06 19:31:22 +03:00
|
|
|
char arg1[] = "/v:192.0.2.1:XXXXX";
|
2019-11-06 17:24:51 +03:00
|
|
|
char* argv[] = { "test", "/v:192.0.2.1:XXXXX", NULL };
|
2015-07-03 12:56:57 +03:00
|
|
|
int rc;
|
2016-10-13 23:02:25 +03:00
|
|
|
struct testThreadArgs* args = arg;
|
2017-02-17 12:56:16 +03:00
|
|
|
_snprintf(arg1, 18, "/v:192.0.2.1:%d", args->port);
|
2016-07-06 19:31:22 +03:00
|
|
|
argv[1] = arg1;
|
|
|
|
rc = runInstance(2, argv, args->arg);
|
2015-07-03 12:56:57 +03:00
|
|
|
|
|
|
|
if (rc != 1)
|
|
|
|
ExitThread(-1);
|
|
|
|
|
|
|
|
ExitThread(0);
|
2018-03-07 14:03:10 +03:00
|
|
|
return 0;
|
2015-07-03 12:56:57 +03:00
|
|
|
}
|
|
|
|
|
2016-07-06 19:31:22 +03:00
|
|
|
static int testAbort(int port)
|
2015-07-03 12:56:57 +03:00
|
|
|
{
|
|
|
|
DWORD status;
|
|
|
|
DWORD start, end, diff;
|
|
|
|
HANDLE thread;
|
2016-07-06 19:31:22 +03:00
|
|
|
struct testThreadArgs args;
|
2015-07-03 12:56:57 +03:00
|
|
|
freerdp* instance = NULL;
|
|
|
|
s_sync = CreateEvent(NULL, TRUE, FALSE, NULL);
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2015-07-03 12:56:57 +03:00
|
|
|
if (!s_sync)
|
|
|
|
return -1;
|
|
|
|
|
2016-07-06 19:31:22 +03:00
|
|
|
args.port = port;
|
|
|
|
args.arg = &instance;
|
2015-07-03 12:56:57 +03:00
|
|
|
start = GetTickCount();
|
2019-11-06 17:24:51 +03:00
|
|
|
thread = CreateThread(NULL, 0, testThread, &args, 0, NULL);
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2015-07-03 12:56:57 +03:00
|
|
|
if (!thread)
|
|
|
|
{
|
|
|
|
CloseHandle(s_sync);
|
|
|
|
s_sync = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
WaitForSingleObject(s_sync, INFINITE);
|
2017-09-26 13:03:57 +03:00
|
|
|
Sleep(1000); /* Wait until freerdp_connect has been called */
|
2015-07-03 12:56:57 +03:00
|
|
|
freerdp_abort_connect(instance);
|
|
|
|
status = WaitForSingleObject(instance->context->abortEvent, 0);
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2015-07-03 12:56:57 +03:00
|
|
|
if (status != WAIT_OBJECT_0)
|
|
|
|
{
|
|
|
|
CloseHandle(s_sync);
|
|
|
|
CloseHandle(thread);
|
|
|
|
s_sync = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = WaitForSingleObject(thread, 20000);
|
|
|
|
end = GetTickCount();
|
|
|
|
CloseHandle(s_sync);
|
|
|
|
CloseHandle(thread);
|
|
|
|
s_sync = NULL;
|
|
|
|
diff = end - start;
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2017-09-26 11:52:13 +03:00
|
|
|
if (diff > 5000)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
printf("%s required %" PRIu32 "ms for the test\n", __FUNCTION__, diff);
|
2015-07-03 12:56:57 +03:00
|
|
|
return -1;
|
2017-09-26 11:52:13 +03:00
|
|
|
}
|
2015-07-03 12:56:57 +03:00
|
|
|
|
|
|
|
if (WAIT_OBJECT_0 != status)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
printf("%s: Success!\n", __FUNCTION__);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-07-06 19:31:22 +03:00
|
|
|
static int testSuccess(int port)
|
2015-07-03 12:56:57 +03:00
|
|
|
{
|
2019-04-05 14:01:59 +03:00
|
|
|
int r;
|
|
|
|
int rc = -2;
|
2017-02-17 13:17:45 +03:00
|
|
|
STARTUPINFOA si;
|
2015-07-03 12:56:57 +03:00
|
|
|
PROCESS_INFORMATION process;
|
2016-07-06 19:31:22 +03:00
|
|
|
char arg1[] = "/v:127.0.0.1:XXXXX";
|
2019-11-06 17:24:51 +03:00
|
|
|
char* clientArgs[] = { "test", "/v:127.0.0.1:XXXXX", "/cert-ignore", "/rfx", NULL };
|
2019-04-05 14:01:59 +03:00
|
|
|
char* commandLine = NULL;
|
2019-10-29 12:18:09 +03:00
|
|
|
size_t commandLineLen;
|
2015-09-05 19:55:08 +03:00
|
|
|
int argc = 4;
|
2019-04-05 14:01:59 +03:00
|
|
|
char* path = NULL;
|
|
|
|
char* wpath = NULL;
|
|
|
|
char* exe = GetCombinedPath(TESTING_OUTPUT_DIRECTORY, "server");
|
|
|
|
char* wexe = GetCombinedPath(TESTING_SRC_DIRECTORY, "server");
|
2017-02-17 12:56:16 +03:00
|
|
|
_snprintf(arg1, 18, "/v:127.0.0.1:%d", port);
|
2016-07-06 19:31:22 +03:00
|
|
|
clientArgs[1] = arg1;
|
|
|
|
|
2015-07-03 12:56:57 +03:00
|
|
|
if (!exe || !wexe)
|
2019-04-05 14:01:59 +03:00
|
|
|
goto fail;
|
2015-07-03 12:56:57 +03:00
|
|
|
|
|
|
|
path = GetCombinedPath(exe, "Sample");
|
|
|
|
wpath = GetCombinedPath(wexe, "Sample");
|
|
|
|
|
|
|
|
if (!path || !wpath)
|
2019-04-05 14:01:59 +03:00
|
|
|
goto fail;
|
2015-07-03 12:56:57 +03:00
|
|
|
|
|
|
|
exe = GetCombinedPath(path, "sfreerdp-server");
|
|
|
|
|
|
|
|
if (!exe)
|
2019-04-05 14:01:59 +03:00
|
|
|
goto fail;
|
2015-07-03 12:56:57 +03:00
|
|
|
|
|
|
|
printf("Sample Server: %s\n", exe);
|
|
|
|
printf("Workspace: %s\n", wpath);
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2015-07-03 12:56:57 +03:00
|
|
|
if (!PathFileExistsA(exe))
|
2019-04-05 14:01:59 +03:00
|
|
|
goto fail;
|
2015-07-03 12:56:57 +03:00
|
|
|
|
2015-09-05 19:55:08 +03:00
|
|
|
// Start sample server locally.
|
2017-09-26 11:52:13 +03:00
|
|
|
commandLineLen = strlen(exe) + strlen("--local-only --port=XXXXX") + 1;
|
2016-07-06 19:31:22 +03:00
|
|
|
commandLine = malloc(commandLineLen);
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2016-07-06 19:31:22 +03:00
|
|
|
if (!commandLine)
|
2019-04-05 14:01:59 +03:00
|
|
|
goto fail;
|
2016-07-06 19:31:22 +03:00
|
|
|
|
2017-09-26 11:52:13 +03:00
|
|
|
_snprintf(commandLine, commandLineLen, "%s --local-only --port=%d", exe, port);
|
2016-07-06 19:31:22 +03:00
|
|
|
memset(&si, 0, sizeof(si));
|
2016-10-13 23:02:25 +03:00
|
|
|
si.cb = sizeof(si);
|
2016-07-06 19:31:22 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!CreateProcessA(exe, commandLine, NULL, NULL, FALSE, 0, NULL, wpath, &si, &process))
|
2019-04-05 14:01:59 +03:00
|
|
|
goto fail;
|
2015-07-03 12:56:57 +03:00
|
|
|
|
2016-07-06 19:31:22 +03:00
|
|
|
Sleep(1 * 1000); /* let the server start */
|
2019-04-05 14:01:59 +03:00
|
|
|
r = runInstance(argc, clientArgs, NULL);
|
2015-07-03 12:56:57 +03:00
|
|
|
|
|
|
|
if (!TerminateProcess(process.hProcess, 0))
|
2019-04-05 14:01:59 +03:00
|
|
|
goto fail;
|
2015-07-03 12:56:57 +03:00
|
|
|
|
|
|
|
WaitForSingleObject(process.hProcess, INFINITE);
|
|
|
|
CloseHandle(process.hProcess);
|
|
|
|
CloseHandle(process.hThread);
|
2019-04-05 14:01:59 +03:00
|
|
|
printf("%s: returned %d!\n", __FUNCTION__, r);
|
|
|
|
rc = r;
|
2016-10-13 23:02:25 +03:00
|
|
|
|
2019-04-05 14:01:59 +03:00
|
|
|
if (rc == 0)
|
|
|
|
printf("%s: Success!\n", __FUNCTION__);
|
2015-07-03 12:56:57 +03:00
|
|
|
|
2019-04-05 14:01:59 +03:00
|
|
|
fail:
|
|
|
|
free(exe);
|
|
|
|
free(path);
|
|
|
|
free(wpath);
|
|
|
|
free(commandLine);
|
|
|
|
return rc;
|
2015-07-03 12:56:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int TestConnect(int argc, char* argv[])
|
|
|
|
{
|
2016-07-06 19:31:22 +03:00
|
|
|
int randomPort;
|
2017-02-17 12:59:22 +03:00
|
|
|
int random;
|
2019-05-08 13:20:43 +03:00
|
|
|
WINPR_UNUSED(argc);
|
|
|
|
WINPR_UNUSED(argv);
|
2017-02-17 12:59:22 +03:00
|
|
|
winpr_RAND((BYTE*)&random, sizeof(random));
|
|
|
|
randomPort = 3389 + (random % 200);
|
2016-07-06 19:31:22 +03:00
|
|
|
|
2015-07-03 12:56:57 +03:00
|
|
|
/* Test connect to not existing server,
|
|
|
|
* check if timeout is honored. */
|
2016-07-06 19:31:22 +03:00
|
|
|
if (testTimeout(randomPort))
|
2015-07-03 12:56:57 +03:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Test connect to not existing server,
|
|
|
|
* check if connection abort is working. */
|
2016-07-06 19:31:22 +03:00
|
|
|
if (testAbort(randomPort))
|
2015-07-03 12:56:57 +03:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Test connect to existing server,
|
|
|
|
* check if connection is working. */
|
2016-07-06 19:31:22 +03:00
|
|
|
if (testSuccess(randomPort))
|
2015-07-03 12:56:57 +03:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|