FreeRDP/libfreerdp/core/test/TestConnect.c

339 lines
7.2 KiB
C
Raw Permalink Normal View History

#include <winpr/sysinfo.h>
#include <winpr/path.h>
2017-02-17 12:59:22 +03:00
#include <winpr/crypto.h>
#include <winpr/pipe.h>
#include <freerdp/freerdp.h>
#include <freerdp/gdi/gdi.h>
#include <freerdp/client/cmdline.h>
static HANDLE s_sync = NULL;
2021-06-02 16:46:27 +03:00
static int runInstance(int argc, char* argv[], freerdp** inst, DWORD timeout)
{
int rc = -1;
RDP_CLIENT_ENTRY_POINTS clientEntryPoints = { 0 };
rdpContext* context = NULL;
clientEntryPoints.Size = sizeof(RDP_CLIENT_ENTRY_POINTS);
clientEntryPoints.Version = RDP_CLIENT_INTERFACE_VERSION;
clientEntryPoints.ContextSize = sizeof(rdpContext);
context = freerdp_client_context_new(&clientEntryPoints);
if (!context)
goto finish;
if (inst)
*inst = context->instance;
context->instance->ChooseSmartcard = NULL;
context->instance->PresentGatewayMessage = NULL;
context->instance->LogonErrorInfo = NULL;
context->instance->AuthenticateEx = NULL;
context->instance->VerifyCertificateEx = NULL;
context->instance->VerifyChangedCertificateEx = NULL;
if (!freerdp_settings_set_bool(context->settings, FreeRDP_DeactivateClientDecoding, TRUE))
return FALSE;
if (freerdp_client_settings_parse_command_line(context->settings, argc, argv, FALSE) < 0)
goto finish;
2021-06-02 16:46:27 +03:00
if (!freerdp_settings_set_uint32(context->settings, FreeRDP_TcpConnectTimeout, timeout))
goto finish;
if (!freerdp_client_load_addins(context->channels, context->settings))
goto finish;
if (s_sync)
{
if (!SetEvent(s_sync))
goto finish;
}
rc = 1;
2016-10-13 23:02:25 +03:00
if (!freerdp_connect(context->instance))
goto finish;
rc = 2;
2016-10-13 23:02:25 +03:00
if (!freerdp_disconnect(context->instance))
goto finish;
rc = 0;
finish:
freerdp_client_context_free(context);
if (inst)
*inst = NULL;
return rc;
}
static int testTimeout(int port)
{
2022-06-23 08:57:38 +03:00
const DWORD timeout = 200;
DWORD start = 0;
DWORD end = 0;
DWORD diff = 0;
char arg1[] = "/v:192.0.2.1:XXXXX";
2021-06-02 16:46:27 +03:00
char* argv[] = { "test", "/v:192.0.2.1:XXXXX" };
int rc = 0;
(void)_snprintf(arg1, 18, "/v:192.0.2.1:%d", port);
argv[1] = arg1;
start = GetTickCount();
2021-06-02 16:46:27 +03:00
rc = runInstance(ARRAYSIZE(argv), argv, NULL, timeout);
end = GetTickCount();
if (rc != 1)
return -1;
diff = end - start;
2016-10-13 23:02:25 +03:00
2021-06-02 16:46:27 +03:00
if (diff > 4 * timeout)
return -1;
2021-06-02 16:46:27 +03:00
if (diff < timeout)
return -1;
printf("%s: Success!\n", __func__);
return 0;
}
2016-10-13 23:02:25 +03:00
struct testThreadArgs
{
int port;
freerdp** arg;
};
static DWORD WINAPI testThread(LPVOID arg)
{
char arg1[] = "/v:192.0.2.1:XXXXX";
2021-06-02 16:46:27 +03:00
char* argv[] = { "test", "/v:192.0.2.1:XXXXX" };
int rc = 0;
2016-10-13 23:02:25 +03:00
struct testThreadArgs* args = arg;
(void)_snprintf(arg1, 18, "/v:192.0.2.1:%d", args->port);
argv[1] = arg1;
2021-06-02 16:46:27 +03:00
rc = runInstance(ARRAYSIZE(argv), argv, args->arg, 5000);
if (rc != 1)
ExitThread(-1);
ExitThread(0);
return 0;
}
static int testAbort(int port)
{
DWORD status = 0;
DWORD start = 0;
DWORD end = 0;
DWORD diff = 0;
HANDLE thread = NULL;
struct testThreadArgs args;
freerdp* instance = NULL;
s_sync = CreateEvent(NULL, TRUE, FALSE, NULL);
2016-10-13 23:02:25 +03:00
if (!s_sync)
return -1;
args.port = port;
args.arg = &instance;
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
if (!thread)
{
2024-09-16 05:58:36 +03:00
(void)CloseHandle(s_sync);
s_sync = NULL;
return -1;
}
(void)WaitForSingleObject(s_sync, INFINITE);
2021-06-02 16:46:27 +03:00
Sleep(100); /* Wait until freerdp_connect has been called */
if (instance)
{
freerdp_abort_connect_context(instance->context);
if (!freerdp_shall_disconnect_context(instance->context))
{
2024-09-16 05:58:36 +03:00
(void)CloseHandle(s_sync);
(void)CloseHandle(thread);
s_sync = NULL;
return -1;
}
}
status = WaitForSingleObject(thread, 20000);
end = GetTickCount();
2024-09-16 05:58:36 +03:00
(void)CloseHandle(s_sync);
(void)CloseHandle(thread);
s_sync = NULL;
diff = end - start;
2016-10-13 23:02:25 +03:00
if (diff > 5000)
{
printf("%s required %" PRIu32 "ms for the test\n", __func__, diff);
return -1;
}
if (WAIT_OBJECT_0 != status)
return -1;
printf("%s: Success!\n", __func__);
return 0;
}
static char* concatenate(size_t count, ...)
{
char* rc = NULL;
2024-09-17 17:56:03 +03:00
va_list ap = { 0 };
va_start(ap, count);
rc = _strdup(va_arg(ap, char*));
for (size_t x = 1; x < count; x++)
{
const char* cur = va_arg(ap, const char*);
char* tmp = GetCombinedPath(rc, cur);
free(rc);
rc = tmp;
}
va_end(ap);
return rc;
}
static BOOL prepare_certificates(const char* path)
{
BOOL rc = FALSE;
char* exe = NULL;
DWORD status = 0;
STARTUPINFOA si = { 0 };
PROCESS_INFORMATION process = { 0 };
char commandLine[8192] = { 0 };
if (!path)
return FALSE;
exe = concatenate(5, TESTING_OUTPUT_DIRECTORY, "winpr", "tools", "makecert-cli",
"winpr-makecert" CMAKE_EXECUTABLE_SUFFIX);
if (!exe)
return FALSE;
(void)_snprintf(commandLine, sizeof(commandLine), "%s -format crt -path . -n server", exe);
rc = CreateProcessA(exe, commandLine, NULL, NULL, TRUE, 0, NULL, path, &si, &process);
free(exe);
if (!rc)
goto fail;
status = WaitForSingleObject(process.hProcess, 30000);
if (status != WAIT_OBJECT_0)
goto fail;
rc = TRUE;
fail:
2024-09-16 05:58:36 +03:00
(void)CloseHandle(process.hProcess);
(void)CloseHandle(process.hThread);
return rc;
}
static int testSuccess(int port)
{
int r = 0;
2019-04-05 14:01:59 +03:00
int rc = -2;
STARTUPINFOA si = { 0 };
PROCESS_INFORMATION process = { 0 };
char arg1[] = "/v:127.0.0.1:XXXXX";
char* clientArgs[] = { "test", "/v:127.0.0.1:XXXXX", "/cert:ignore", "/rfx", NULL };
2019-04-05 14:01:59 +03:00
char* commandLine = NULL;
size_t commandLineLen = 0;
int argc = 4;
2019-04-05 14:01:59 +03:00
char* path = NULL;
char* wpath = NULL;
char* exe = GetCombinedPath(TESTING_OUTPUT_DIRECTORY, "server");
(void)_snprintf(arg1, 18, "/v:127.0.0.1:%d", port);
clientArgs[1] = arg1;
if (!exe)
2019-04-05 14:01:59 +03:00
goto fail;
path = GetCombinedPath(exe, "Sample");
wpath = GetCombinedPath(exe, "Sample");
2020-05-18 09:10:42 +03:00
free(exe);
exe = NULL;
if (!path || !wpath)
2019-04-05 14:01:59 +03:00
goto fail;
exe = GetCombinedPath(path, "sfreerdp-server" CMAKE_EXECUTABLE_SUFFIX);
if (!exe)
2019-04-05 14:01:59 +03:00
goto fail;
printf("Sample Server: %s\n", exe);
printf("Workspace: %s\n", wpath);
2016-10-13 23:02:25 +03:00
if (!winpr_PathFileExists(exe))
2019-04-05 14:01:59 +03:00
goto fail;
if (!prepare_certificates(wpath))
goto fail;
// Start sample server locally.
commandLineLen = strlen(exe) + strlen("--port=XXXXX") + 1;
commandLine = malloc(commandLineLen);
2016-10-13 23:02:25 +03:00
if (!commandLine)
2019-04-05 14:01:59 +03:00
goto fail;
(void)_snprintf(commandLine, commandLineLen, "%s --port=%d", exe, port);
2016-10-13 23:02:25 +03:00
si.cb = sizeof(si);
if (!CreateProcessA(NULL, commandLine, NULL, NULL, FALSE, 0, NULL, wpath, &si, &process))
2019-04-05 14:01:59 +03:00
goto fail;
Sleep(5000); /* let the server start */
r = runInstance(argc, clientArgs, NULL, 10000);
if (!TerminateProcess(process.hProcess, 0))
2019-04-05 14:01:59 +03:00
goto fail;
(void)WaitForSingleObject(process.hProcess, INFINITE);
2024-09-16 05:58:36 +03:00
(void)CloseHandle(process.hProcess);
(void)CloseHandle(process.hThread);
printf("%s: returned %d!\n", __func__, r);
2019-04-05 14:01:59 +03:00
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", __func__);
2019-04-05 14:01:59 +03:00
fail:
free(exe);
free(path);
free(wpath);
free(commandLine);
return rc;
}
int TestConnect(int argc, char* argv[])
{
int randomPort = 0;
int random = 0;
WINPR_UNUSED(argc);
WINPR_UNUSED(argv);
winpr_RAND(&random, sizeof(random));
2017-02-17 12:59:22 +03:00
randomPort = 3389 + (random % 200);
/* Test connect to not existing server,
* check if timeout is honored. */
if (testTimeout(randomPort))
return -1;
/* Test connect to not existing server,
* check if connection abort is working. */
if (testAbort(randomPort))
return -1;
/* Test connect to existing server,
* check if connection is working. */
if (testSuccess(randomPort))
return -1;
return 0;
}