FreeRDP/client/common/client.c

551 lines
14 KiB
C
Raw Normal View History

/**
* FreeRDP: A Remote Desktop Protocol Implementation
* FreeRDP Client Common
*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include <errno.h>
#include <freerdp/client.h>
2013-06-14 00:18:19 +04:00
#include <freerdp/addin.h>
#include <freerdp/assistance.h>
2013-06-14 05:34:46 +04:00
#include <freerdp/client/file.h>
#include <freerdp/utils/passphrase.h>
2013-06-14 05:34:46 +04:00
#include <freerdp/client/cmdline.h>
#include <freerdp/client/channels.h>
2013-06-14 05:34:46 +04:00
#include <freerdp/log.h>
#define TAG CLIENT_TAG("common")
static BOOL freerdp_client_common_new(freerdp* instance, rdpContext* context)
{
RDP_CLIENT_ENTRY_POINTS* pEntryPoints = instance->pClientEntryPoints;
return IFCALLRESULT(TRUE, pEntryPoints->ClientNew, instance, context);
}
static void freerdp_client_common_free(freerdp* instance, rdpContext* context)
{
RDP_CLIENT_ENTRY_POINTS* pEntryPoints = instance->pClientEntryPoints;
IFCALL(pEntryPoints->ClientFree, instance, context);
}
2013-06-14 05:34:46 +04:00
/* Common API */
2013-06-14 06:11:23 +04:00
rdpContext* freerdp_client_context_new(RDP_CLIENT_ENTRY_POINTS* pEntryPoints)
{
freerdp* instance;
rdpContext* context;
2016-08-03 19:44:15 +03:00
if (!pEntryPoints)
return NULL;
2013-06-14 06:11:23 +04:00
2016-08-03 19:44:15 +03:00
IFCALL(pEntryPoints->GlobalInit);
2013-06-14 06:11:23 +04:00
instance = freerdp_new();
if (!instance)
return NULL;
instance->settings = pEntryPoints->settings;
2013-06-14 06:11:23 +04:00
instance->ContextSize = pEntryPoints->ContextSize;
instance->ContextNew = freerdp_client_common_new;
instance->ContextFree = freerdp_client_common_free;
2016-08-03 19:44:15 +03:00
instance->pClientEntryPoints = (RDP_CLIENT_ENTRY_POINTS*) malloc(
pEntryPoints->Size);
if (!instance->pClientEntryPoints)
goto out_fail;
CopyMemory(instance->pClientEntryPoints, pEntryPoints, pEntryPoints->Size);
if (!freerdp_context_new(instance))
goto out_fail2;
2013-06-14 06:11:23 +04:00
context = instance->context;
context->instance = instance;
context->settings = instance->settings;
2016-08-04 14:25:12 +03:00
if (freerdp_register_addin_provider(freerdp_channels_load_static_addin_entry,
0) != CHANNEL_RC_OK)
goto out_fail2;
2013-06-14 06:11:23 +04:00
return context;
out_fail2:
free(instance->pClientEntryPoints);
out_fail:
freerdp_free(instance);
return NULL;
2013-06-14 06:11:23 +04:00
}
void freerdp_client_context_free(rdpContext* context)
{
2016-08-03 19:44:15 +03:00
freerdp* instance;
if (!context)
return;
instance = context->instance;
if (instance)
{
2016-08-04 14:25:12 +03:00
RDP_CLIENT_ENTRY_POINTS* pEntryPoints = instance->pClientEntryPoints;
freerdp_context_free(instance);
2016-08-04 14:25:12 +03:00
if (pEntryPoints)
IFCALL(pEntryPoints->GlobalUninit);
free(instance->pClientEntryPoints);
freerdp_free(instance);
}
2013-06-14 06:11:23 +04:00
}
int freerdp_client_start(rdpContext* context)
{
2016-08-03 19:44:15 +03:00
RDP_CLIENT_ENTRY_POINTS* pEntryPoints;
if (!context || !context->instance || !context->instance->pClientEntryPoints)
return ERROR_BAD_ARGUMENTS;
pEntryPoints = context->instance->pClientEntryPoints;
2016-08-04 14:25:12 +03:00
return IFCALLRESULT(CHANNEL_RC_OK, pEntryPoints->ClientStart, context);
2013-06-14 06:11:23 +04:00
}
int freerdp_client_stop(rdpContext* context)
{
2016-08-03 19:44:15 +03:00
RDP_CLIENT_ENTRY_POINTS* pEntryPoints;
if (!context || !context->instance || !context->instance->pClientEntryPoints)
return ERROR_BAD_ARGUMENTS;
pEntryPoints = context->instance->pClientEntryPoints;
2016-08-04 14:25:12 +03:00
return IFCALLRESULT(CHANNEL_RC_OK, pEntryPoints->ClientStop, context);
2013-06-14 06:11:23 +04:00
}
freerdp* freerdp_client_get_instance(rdpContext* context)
{
2016-08-03 19:44:15 +03:00
if (!context || !context->instance)
return NULL;
return context->instance;
}
HANDLE freerdp_client_get_thread(rdpContext* context)
{
2016-08-03 19:44:15 +03:00
if (!context)
return NULL;
return ((rdpClientContext*) context)->thread;
}
static BOOL freerdp_client_settings_post_process(rdpSettings* settings)
{
/* Moved GatewayUseSameCredentials logic outside of cmdline.c, so
* that the rdp file also triggers this functionality */
if (settings->GatewayEnabled)
{
if (settings->GatewayUseSameCredentials)
{
if (settings->Username)
{
free(settings->GatewayUsername);
settings->GatewayUsername = _strdup(settings->Username);
if (!settings->GatewayUsername)
2014-07-28 19:57:51 +04:00
goto out_error;
}
2016-08-03 19:44:15 +03:00
if (settings->Domain)
{
free(settings->GatewayDomain);
settings->GatewayDomain = _strdup(settings->Domain);
if (!settings->GatewayDomain)
2014-07-28 19:57:51 +04:00
goto out_error;
}
2016-08-03 19:44:15 +03:00
if (settings->Password)
{
free(settings->GatewayPassword);
settings->GatewayPassword = _strdup(settings->Password);
if (!settings->GatewayPassword)
2014-07-28 19:57:51 +04:00
goto out_error;
}
}
}
/* Moved logic for Multimon and Span monitors to force fullscreen, so
* that the rdp file also triggers this functionality */
if (settings->SpanMonitors)
{
settings->UseMultimon = TRUE;
settings->Fullscreen = TRUE;
}
else if (settings->UseMultimon)
{
settings->Fullscreen = TRUE;
}
return TRUE;
2014-07-28 19:57:51 +04:00
out_error:
free(settings->GatewayUsername);
free(settings->GatewayDomain);
free(settings->GatewayPassword);
return FALSE;
}
int freerdp_client_settings_parse_command_line(rdpSettings* settings, int argc,
2016-08-03 19:44:15 +03:00
char** argv, BOOL allowUnknown)
2013-06-14 05:34:46 +04:00
{
int status;
if (argc < 1)
2013-06-14 05:34:46 +04:00
return 0;
if (!argv)
2013-06-14 05:34:46 +04:00
return -1;
2016-08-03 19:44:15 +03:00
status = freerdp_client_settings_parse_command_line_arguments(settings, argc,
argv, allowUnknown);
2013-06-14 05:34:46 +04:00
if (status < 0)
return status;
/* This function will call logic that is applicable to the settings
* from command line parsing AND the rdp file parsing */
if (!freerdp_client_settings_post_process(settings))
status = -1;
2013-06-14 05:34:46 +04:00
return status;
}
2016-08-03 19:44:15 +03:00
int freerdp_client_settings_parse_connection_file(rdpSettings* settings,
const char* filename)
2013-06-14 05:34:46 +04:00
{
rdpFile* file;
int ret = -1;
2013-06-14 05:34:46 +04:00
file = freerdp_client_rdp_file_new();
2016-08-03 19:44:15 +03:00
if (!file)
return -1;
2016-08-03 19:44:15 +03:00
if (!freerdp_client_parse_rdp_file(file, filename))
goto out;
2016-08-03 19:44:15 +03:00
if (!freerdp_client_populate_settings_from_rdp_file(file, settings))
goto out;
2013-06-14 05:34:46 +04:00
ret = 0;
out:
freerdp_client_rdp_file_free(file);
return ret;
2013-06-14 05:34:46 +04:00
}
2016-08-03 19:44:15 +03:00
int freerdp_client_settings_parse_connection_file_buffer(rdpSettings* settings,
const BYTE* buffer, size_t size)
2013-06-14 05:34:46 +04:00
{
rdpFile* file;
int status = -1;
2013-06-14 05:34:46 +04:00
file = freerdp_client_rdp_file_new();
2016-08-03 19:44:15 +03:00
if (!file)
return -1;
if (freerdp_client_parse_rdp_file_buffer(file, buffer, size)
2016-08-03 19:44:15 +03:00
&& freerdp_client_populate_settings_from_rdp_file(file, settings))
{
status = 0;
}
2013-06-14 05:34:46 +04:00
freerdp_client_rdp_file_free(file);
return status;
}
2016-08-03 19:44:15 +03:00
int freerdp_client_settings_write_connection_file(const rdpSettings* settings,
const char* filename, BOOL unicode)
{
rdpFile* file;
int ret = -1;
file = freerdp_client_rdp_file_new();
2016-08-03 19:44:15 +03:00
if (!file)
return -1;
if (!freerdp_client_populate_rdp_file_from_settings(file, settings))
goto out;
if (!freerdp_client_write_rdp_file(file, filename, unicode))
goto out;
ret = 0;
out:
freerdp_client_rdp_file_free(file);
return ret;
2013-06-14 05:34:46 +04:00
}
2016-08-03 19:44:15 +03:00
int freerdp_client_settings_parse_assistance_file(rdpSettings* settings,
const char* filename)
{
int status;
int ret = -1;
rdpAssistanceFile* file;
file = freerdp_assistance_file_new();
if (!file)
return -1;
status = freerdp_assistance_parse_file(file, filename);
if (status < 0)
goto out;
status = freerdp_client_populate_settings_from_assistance_file(file, settings);
if (status < 0)
goto out;
ret = 0;
out:
freerdp_assistance_file_free(file);
return ret;
}
/** Callback set in the rdp_freerdp structure, and used to get the user's password,
* if required to establish the connection.
* This function is actually called in credssp_ntlmssp_client_init()
* @see rdp_server_accept_nego() and rdp_check_fds()
* @param instance - pointer to the rdp_freerdp structure that contains the connection settings
* @param username - unused
* @param password - on return: pointer to a character string that will be filled by the password entered by the user.
* Note that this character string will be allocated inside the function, and needs to be deallocated by the caller
* using free(), even in case this function fails.
* @param domain - unused
* @return TRUE if a password was successfully entered. See freerdp_passphrase_read() for more details.
*/
2016-08-03 19:44:15 +03:00
static BOOL client_cli_authenticate_raw(freerdp* instance, BOOL gateway,
char** username,
char** password, char** domain)
{
static const size_t password_size = 512;
const char* auth[] =
{
"Username: ",
"Domain: ",
"Password: "
};
const char* gw[] =
{
"GatewayUsername: ",
"GatewayDomain: ",
"GatewayPassword: "
};
const char** prompt = (gateway) ? gw : auth;
if (!username || !password || !domain)
return FALSE;
if (!*username)
{
size_t username_size = 0;
printf("%s", prompt[0]);
2016-08-03 19:44:15 +03:00
2015-12-18 11:45:44 +03:00
if (GetLine(username, &username_size, stdin) < 0)
{
2015-12-18 11:45:44 +03:00
WLog_ERR(TAG, "GetLine returned %s [%d]", strerror(errno), errno);
goto fail;
}
if (*username)
{
*username = StrSep(username, "\r");
*username = StrSep(username, "\n");
}
}
if (!*domain)
{
size_t domain_size = 0;
printf("%s", prompt[1]);
2016-08-03 19:44:15 +03:00
2015-12-18 11:45:44 +03:00
if (GetLine(domain, &domain_size, stdin) < 0)
{
2015-12-18 11:45:44 +03:00
WLog_ERR(TAG, "GetLine returned %s [%d]", strerror(errno), errno);
goto fail;
}
if (*domain)
{
*domain = StrSep(domain, "\r");
*domain = StrSep(domain, "\n");
}
}
if (!*password)
{
*password = calloc(password_size, sizeof(char));
2016-08-03 19:44:15 +03:00
if (!*password)
goto fail;
if (freerdp_passphrase_read(prompt[2], *password, password_size,
2016-08-03 19:44:15 +03:00
instance->settings->CredentialsFromStdin) == NULL)
goto fail;
}
return TRUE;
fail:
free(*username);
free(*domain);
free(*password);
*username = NULL;
*domain = NULL;
*password = NULL;
return FALSE;
}
2016-08-03 19:44:15 +03:00
BOOL client_cli_authenticate(freerdp* instance, char** username,
char** password, char** domain)
{
return client_cli_authenticate_raw(instance, FALSE, username, password, domain);
}
2016-08-03 19:44:15 +03:00
BOOL client_cli_gw_authenticate(freerdp* instance, char** username,
char** password, char** domain)
{
return client_cli_authenticate_raw(instance, TRUE, username, password, domain);
}
static DWORD client_cli_accept_certificate(rdpSettings* settings)
{
char answer;
if (settings->CredentialsFromStdin)
return 0;
while (1)
{
printf("Do you trust the above certificate? (Y/T/N) ");
fflush(stdout);
answer = fgetc(stdin);
if (feof(stdin))
{
printf("\nError: Could not read answer from stdin.");
2016-08-03 19:44:15 +03:00
if (settings->CredentialsFromStdin)
printf(" - Run without parameter \"--from-stdin\" to set trust.");
2016-08-03 19:44:15 +03:00
printf("\n");
return 0;
}
2016-08-03 19:44:15 +03:00
switch (answer)
{
case 'y':
case 'Y':
return 1;
2016-08-03 19:44:15 +03:00
case 't':
case 'T':
return 2;
2016-08-03 19:44:15 +03:00
case 'n':
case 'N':
return 0;
2016-08-03 19:44:15 +03:00
default:
break;
}
2016-08-03 19:44:15 +03:00
printf("\n");
}
return 0;
}
/** Callback set in the rdp_freerdp structure, and used to make a certificate validation
* when the connection requires it.
* This function will actually be called by tls_verify_certificate().
* @see rdp_client_connect() and tls_connect()
* @param instance - pointer to the rdp_freerdp structure that contains the connection settings
* @param common_name
* @param subject
* @param issuer
* @param fingerprint
* @param host_mismatch Indicates the certificate host does not match.
* @return 1 if the certificate is trusted, 2 if temporary trusted, 0 otherwise.
*/
DWORD client_cli_verify_certificate(freerdp* instance, const char* common_name,
2016-08-03 19:44:15 +03:00
const char* subject, const char* issuer,
const char* fingerprint, BOOL host_mismatch)
{
printf("Certificate details:\n");
printf("\tSubject: %s\n", subject);
printf("\tIssuer: %s\n", issuer);
printf("\tThumbprint: %s\n", fingerprint);
printf("The above X.509 certificate could not be verified, possibly because you do not have\n"
2016-08-03 19:44:15 +03:00
"the CA certificate in your certificate store, or the certificate has expired.\n"
"Please look at the OpenSSL documentation on how to add a private CA to the store.\n");
return client_cli_accept_certificate(instance->settings);
}
/** Callback set in the rdp_freerdp structure, and used to make a certificate validation
* when a stored certificate does not match the remote counterpart.
* This function will actually be called by tls_verify_certificate().
* @see rdp_client_connect() and tls_connect()
* @param instance - pointer to the rdp_freerdp structure that contains the connection settings
* @param common_name
* @param subject
* @param issuer
* @param fingerprint
* @param old_subject
* @param old_issuer
* @param old_fingerprint
* @return 1 if the certificate is trusted, 2 if temporary trusted, 0 otherwise.
*/
2016-08-03 19:44:15 +03:00
DWORD client_cli_verify_changed_certificate(freerdp* instance,
const char* common_name,
const char* subject, const char* issuer,
const char* fingerprint,
const char* old_subject, const char* old_issuer,
const char* old_fingerprint)
{
printf("!!! Certificate has changed !!!\n");
printf("\n");
printf("New Certificate details:\n");
printf("\tSubject: %s\n", subject);
printf("\tIssuer: %s\n", issuer);
printf("\tThumbprint: %s\n", fingerprint);
printf("\n");
printf("Old Certificate details:\n");
printf("\tSubject: %s\n", old_subject);
printf("\tIssuer: %s\n", old_issuer);
printf("\tThumbprint: %s\n", old_fingerprint);
printf("\n");
printf("The above X.509 certificate does not match the certificate used for previous connections.\n"
2016-08-03 19:44:15 +03:00
"This may indicate that the certificate has been tampered with.\n"
"Please contact the administrator of the RDP server and clarify.\n");
return client_cli_accept_certificate(instance->settings);
}