FreeRDP/libfreerdp/core/test/TestConnect.c

340 lines
7.2 KiB
C
Raw 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;
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, end, diff;
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;
2017-02-17 12:56:16 +03:00
_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", __FUNCTION__);
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;
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);
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;
DWORD start, end, diff;
HANDLE thread;
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)
{
CloseHandle(s_sync);
s_sync = NULL;
return -1;
}
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))
{
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
if (diff > 5000)
{
2019-11-06 17:24:51 +03:00
printf("%s required %" PRIu32 "ms for the test\n", __FUNCTION__, diff);
return -1;
}
if (WAIT_OBJECT_0 != status)
return -1;
printf("%s: Success!\n", __FUNCTION__);
return 0;
}
static char* concatenate(size_t count, ...)
{
size_t x;
char* rc;
va_list ap;
va_start(ap, count);
rc = _strdup(va_arg(ap, char*));
for (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;
STARTUPINFOA si = { 0 };
SECURITY_ATTRIBUTES saAttr = { 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;
_snprintf(commandLine, sizeof(commandLine), "%s -format crt -path . -n server", exe);
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
saAttr.bInheritHandle = TRUE;
saAttr.lpSecurityDescriptor = NULL;
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:
CloseHandle(process.hProcess);
CloseHandle(process.hThread);
return rc;
}
static int testSuccess(int port)
{
2019-04-05 14:01:59 +03:00
int r;
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;
int argc = 4;
2019-04-05 14:01:59 +03:00
char* path = NULL;
char* wpath = NULL;
char* exe = GetCombinedPath(TESTING_OUTPUT_DIRECTORY, "server");
2017-02-17 12:56:16 +03:00
_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;
_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;
2021-06-02 16:46:27 +03:00
Sleep(600); /* let the server start */
r = runInstance(argc, clientArgs, NULL, 5000);
if (!TerminateProcess(process.hProcess, 0))
2019-04-05 14:01:59 +03:00
goto fail;
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__);
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;
2017-02-17 12:59:22 +03:00
int random;
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;
}