2011-07-01 04:31:07 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-07 21:37:48 +04:00
|
|
|
* RDP Settings
|
2011-07-01 04:31:07 +04:00
|
|
|
*
|
|
|
|
* Copyright 2009-2011 Jay Sorg
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2011-07-22 08:52:57 +04:00
|
|
|
#include "config.h"
|
2012-08-15 01:09:01 +04:00
|
|
|
#endif
|
|
|
|
|
2012-02-17 09:58:30 +04:00
|
|
|
#include "certificate.h"
|
2011-07-21 06:05:12 +04:00
|
|
|
#include "capabilities.h"
|
2012-08-15 01:09:01 +04:00
|
|
|
|
2011-07-22 08:52:57 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
#include <winpr/crt.h>
|
2013-03-22 23:52:43 +04:00
|
|
|
#include <winpr/file.h>
|
|
|
|
#include <winpr/path.h>
|
2012-10-26 02:38:51 +04:00
|
|
|
#include <winpr/sysinfo.h>
|
2012-10-09 07:42:01 +04:00
|
|
|
#include <winpr/registry.h>
|
|
|
|
|
2011-07-07 21:37:48 +04:00
|
|
|
#include <freerdp/settings.h>
|
|
|
|
|
2012-10-14 11:22:58 +04:00
|
|
|
#ifdef _WIN32
|
2012-10-14 09:17:25 +04:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable: 4244)
|
2012-10-14 11:22:58 +04:00
|
|
|
#endif
|
2012-10-14 09:17:25 +04:00
|
|
|
|
2011-12-01 02:40:36 +04:00
|
|
|
static const char client_dll[] = "C:\\Windows\\System32\\mstscax.dll";
|
2011-07-10 20:10:24 +04:00
|
|
|
|
2012-10-11 22:59:01 +04:00
|
|
|
#define REG_QUERY_DWORD_VALUE(_key, _subkey, _type, _value, _size, _result) \
|
|
|
|
_size = sizeof(DWORD); \
|
|
|
|
if (RegQueryValueEx(_key, _subkey, NULL, &_type, (BYTE*) &_value, &_size) == ERROR_SUCCESS) \
|
|
|
|
_result = _value
|
|
|
|
|
|
|
|
#define REG_QUERY_BOOL_VALUE(_key, _subkey, _type, _value, _size, _result) \
|
|
|
|
_size = sizeof(DWORD); \
|
|
|
|
if (RegQueryValueEx(_key, _subkey, NULL, &_type, (BYTE*) &_value, &_size) == ERROR_SUCCESS) \
|
|
|
|
_result = _value ? TRUE : FALSE
|
|
|
|
|
2012-07-25 04:46:21 +04:00
|
|
|
void settings_client_load_hkey_local_machine(rdpSettings* settings)
|
2012-06-16 01:06:26 +04:00
|
|
|
{
|
|
|
|
HKEY hKey;
|
|
|
|
LONG status;
|
|
|
|
DWORD dwType;
|
|
|
|
DWORD dwSize;
|
|
|
|
DWORD dwValue;
|
|
|
|
|
2012-07-25 04:46:21 +04:00
|
|
|
status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Software\\FreeRDP\\Client"), 0, KEY_READ | KEY_WOW64_64KEY, &hKey);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-10-11 22:59:01 +04:00
|
|
|
if (status == ERROR_SUCCESS)
|
|
|
|
{
|
2012-11-07 19:33:06 +04:00
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("DesktopWidth"), dwType, dwValue, dwSize, settings->DesktopWidth);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("DesktopHeight"), dwType, dwValue, dwSize, settings->DesktopHeight);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-11-08 03:23:25 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("Fullscreen"), dwType, dwValue, dwSize, settings->Fullscreen);
|
2012-11-07 19:33:06 +04:00
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("ColorDepth"), dwType, dwValue, dwSize, settings->ColorDepth);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-11-07 19:33:06 +04:00
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("KeyboardType"), dwType, dwValue, dwSize, settings->KeyboardType);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("KeyboardSubType"), dwType, dwValue, dwSize, settings->KeyboardSubType);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("KeyboardFunctionKeys"), dwType, dwValue, dwSize, settings->KeyboardFunctionKey);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("KeyboardLayout"), dwType, dwValue, dwSize, settings->KeyboardLayout);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-11-07 20:02:46 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("ExtSecurity"), dwType, dwValue, dwSize, settings->ExtSecurity);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("NlaSecurity"), dwType, dwValue, dwSize, settings->NlaSecurity);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("TlsSecurity"), dwType, dwValue, dwSize, settings->TlsSecurity);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("RdpSecurity"), dwType, dwValue, dwSize, settings->RdpSecurity);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("MstscCookieMode"), dwType, dwValue, dwSize, settings->MstscCookieMode);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("CookieMaxLength"), dwType, dwValue, dwSize, settings->CookieMaxLength);
|
2012-11-01 04:38:48 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("BitmapCache"), dwType, dwValue, dwSize, settings->BitmapCacheEnabled);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-11-08 03:23:25 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("OffscreenBitmapCache"), dwType, dwValue, dwSize, settings->OffscreenSupportLevel);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("OffscreenBitmapCacheSize"), dwType, dwValue, dwSize, settings->OffscreenCacheSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("OffscreenBitmapCacheEntries"), dwType, dwValue, dwSize, settings->OffscreenCacheEntries);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-10-11 22:59:01 +04:00
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-10-11 22:59:01 +04:00
|
|
|
status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Software\\FreeRDP\\Client\\BitmapCacheV2"), 0, KEY_READ | KEY_WOW64_64KEY, &hKey);
|
2012-06-16 01:06:26 +04:00
|
|
|
|
2012-10-11 22:59:01 +04:00
|
|
|
if (status == ERROR_SUCCESS)
|
|
|
|
{
|
2012-11-08 00:13:14 +04:00
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("NumCells"), dwType, dwValue, dwSize, settings->BitmapCacheV2NumCells);
|
2012-10-11 22:59:01 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cell0NumEntries"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[0].numEntries);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("Cell0Persistent"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[0].persistent);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cell1NumEntries"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[1].numEntries);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("Cell1Persistent"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[1].persistent);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cell2NumEntries"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[2].numEntries);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("Cell2Persistent"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[2].persistent);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cell3NumEntries"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[3].numEntries);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("Cell3Persistent"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[3].persistent);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cell4NumEntries"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[4].numEntries);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("Cell4Persistent"), dwType, dwValue, dwSize, settings->BitmapCacheV2CellInfo[4].persistent);
|
2012-10-11 22:59:01 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("AllowCacheWaitingList"), dwType, dwValue, dwSize, settings->AllowCacheWaitingList);
|
2012-10-12 23:47:51 +04:00
|
|
|
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Software\\FreeRDP\\Client\\GlyphCache"), 0, KEY_READ | KEY_WOW64_64KEY, &hKey);
|
|
|
|
|
|
|
|
if (status == ERROR_SUCCESS)
|
|
|
|
{
|
2012-11-08 00:13:14 +04:00
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("SupportLevel"), dwType, dwValue, dwSize, settings->GlyphSupportLevel);
|
|
|
|
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache0NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[0].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache0MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[0].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache1NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[1].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache1MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[1].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache2NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[2].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache2MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[2].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache3NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[3].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache3MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[3].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache4NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[4].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache4MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[4].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache5NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[5].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache5MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[5].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache6NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[6].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache6MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[6].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache7NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[7].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache7MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[7].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache8NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[8].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache8MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[8].cacheMaximumCellSize);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache9NumEntries"), dwType, dwValue, dwSize, settings->GlyphCache[9].cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("Cache9MaxCellSize"), dwType, dwValue, dwSize, settings->GlyphCache[9].cacheMaximumCellSize);
|
|
|
|
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("FragCacheNumEntries"), dwType, dwValue, dwSize, settings->FragCache->cacheEntries);
|
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("FragCacheMaxCellSize"), dwType, dwValue, dwSize, settings->FragCache->cacheMaximumCellSize);
|
2012-10-12 23:47:51 +04:00
|
|
|
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Software\\FreeRDP\\Client\\PointerCache"), 0, KEY_READ | KEY_WOW64_64KEY, &hKey);
|
|
|
|
|
|
|
|
if (status == ERROR_SUCCESS)
|
|
|
|
{
|
2012-11-08 03:23:25 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("LargePointer"), dwType, dwValue, dwSize, settings->LargePointerFlag);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("ColorPointer"), dwType, dwValue, dwSize, settings->ColorPointerFlag);
|
2012-11-08 00:13:14 +04:00
|
|
|
REG_QUERY_DWORD_VALUE(hKey, _T("PointerCacheSize"), dwType, dwValue, dwSize, settings->PointerCacheSize);
|
2012-10-12 23:47:51 +04:00
|
|
|
|
2012-10-11 22:59:01 +04:00
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
2012-06-16 01:06:26 +04:00
|
|
|
}
|
|
|
|
|
2012-07-25 04:46:21 +04:00
|
|
|
void settings_server_load_hkey_local_machine(rdpSettings* settings)
|
|
|
|
{
|
|
|
|
HKEY hKey;
|
|
|
|
LONG status;
|
|
|
|
DWORD dwType;
|
|
|
|
DWORD dwSize;
|
|
|
|
DWORD dwValue;
|
|
|
|
|
|
|
|
status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Software\\FreeRDP\\Server"), 0, KEY_READ | KEY_WOW64_64KEY, &hKey);
|
|
|
|
|
|
|
|
if (status != ERROR_SUCCESS)
|
|
|
|
return;
|
|
|
|
|
2012-11-07 20:02:46 +04:00
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("ExtSecurity"), dwType, dwValue, dwSize, settings->ExtSecurity);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("NlaSecurity"), dwType, dwValue, dwSize, settings->NlaSecurity);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("TlsSecurity"), dwType, dwValue, dwSize, settings->TlsSecurity);
|
|
|
|
REG_QUERY_BOOL_VALUE(hKey, _T("RdpSecurity"), dwType, dwValue, dwSize, settings->RdpSecurity);
|
2012-07-25 04:46:21 +04:00
|
|
|
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
void settings_load_hkey_local_machine(rdpSettings* settings)
|
|
|
|
{
|
2012-11-08 03:23:25 +04:00
|
|
|
if (settings->ServerMode)
|
2012-07-25 04:46:21 +04:00
|
|
|
settings_server_load_hkey_local_machine(settings);
|
|
|
|
else
|
|
|
|
settings_client_load_hkey_local_machine(settings);
|
|
|
|
}
|
|
|
|
|
2012-10-26 02:38:51 +04:00
|
|
|
void settings_get_computer_name(rdpSettings* settings)
|
|
|
|
{
|
|
|
|
DWORD nSize = 0;
|
|
|
|
|
|
|
|
GetComputerNameExA(ComputerNameNetBIOS, NULL, &nSize);
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->ComputerName = (char*) malloc(nSize);
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings->ComputerName)
|
|
|
|
return;
|
2012-11-08 00:13:14 +04:00
|
|
|
GetComputerNameExA(ComputerNameNetBIOS, settings->ComputerName, &nSize);
|
2012-10-26 02:38:51 +04:00
|
|
|
}
|
|
|
|
|
2013-10-13 02:20:25 +04:00
|
|
|
rdpSettings* freerdp_settings_new(DWORD flags)
|
2011-07-07 21:37:48 +04:00
|
|
|
{
|
|
|
|
rdpSettings* settings;
|
|
|
|
|
2015-03-23 19:25:23 +03:00
|
|
|
settings = (rdpSettings*) calloc(1, sizeof(rdpSettings));
|
|
|
|
if (!settings)
|
|
|
|
return NULL;
|
2012-11-01 04:38:48 +04:00
|
|
|
|
2013-10-13 02:20:25 +04:00
|
|
|
settings->ServerMode = (flags & FREERDP_SETTINGS_SERVER_MODE) ? TRUE : FALSE;
|
2014-05-21 19:32:14 +04:00
|
|
|
settings->WaitForOutputBufferFlush = TRUE;
|
2012-07-25 04:46:21 +04:00
|
|
|
|
2012-11-07 19:33:06 +04:00
|
|
|
settings->DesktopWidth = 1024;
|
|
|
|
settings->DesktopHeight = 768;
|
2012-11-08 03:23:25 +04:00
|
|
|
settings->Workarea = FALSE;
|
|
|
|
settings->Fullscreen = FALSE;
|
|
|
|
settings->GrabKeyboard = TRUE;
|
|
|
|
settings->Decorations = TRUE;
|
2012-11-07 19:33:06 +04:00
|
|
|
settings->RdpVersion = 7;
|
|
|
|
settings->ColorDepth = 16;
|
2012-11-07 20:02:46 +04:00
|
|
|
settings->ExtSecurity = FALSE;
|
|
|
|
settings->NlaSecurity = TRUE;
|
|
|
|
settings->TlsSecurity = TRUE;
|
|
|
|
settings->RdpSecurity = TRUE;
|
|
|
|
settings->NegotiateSecurityLayer = TRUE;
|
2013-11-06 10:51:55 +04:00
|
|
|
settings->RestrictedAdminModeRequired = FALSE;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->MstscCookieMode = FALSE;
|
|
|
|
settings->CookieMaxLength = DEFAULT_COOKIE_MAX_LENGTH;
|
2012-11-07 19:33:06 +04:00
|
|
|
settings->ClientBuild = 2600;
|
2012-11-08 20:16:54 +04:00
|
|
|
settings->KeyboardType = 4;
|
2012-11-07 19:33:06 +04:00
|
|
|
settings->KeyboardSubType = 0;
|
|
|
|
settings->KeyboardFunctionKey = 12;
|
|
|
|
settings->KeyboardLayout = 0;
|
Standard RDP Security Layer Levels/Method Overhaul
[MS-RDPBCGR] Section 5.3 describes the encryption level and method values for
standard RDP security.
Looking at the current usage of these values in the FreeRDP code gives me
reason to believe that there is a certain lack of understanding of how these
values should be handled.
The encryption level is only configured on the server side in the "Encryption
Level" setting found in the Remote Desktop Session Host Configuration RDP-Tcp
properties dialog and this value is never transferred from the client to the
server over the wire.
The possible options are "None", "Low", "Client Compatible", "High" and
"FIPS Compliant". The client receices this value in the Server Security Data
block (TS_UD_SC_SEC1), probably only for informational purposes and maybe to
give the client the possibility to verify if the server's decision for the
encryption method confirms to the server's encryption level.
The possible encryption methods are "NONE", "40BIT", "56BIT", "128BIT" and
"FIPS" and the RDP client advertises the ones it supports to the server in the
Client Security Data block (TS_UD_CS_SEC).
The server's configured encryption level value restricts the possible final
encryption method.
Something that I was not able to find in the documentation is the priority
level of the individual encryption methods based on which the server makes its
final method decision if there are several options.
My analysis with Windows Servers reveiled that the order is 128, 56, 40, FIPS.
The server only chooses FIPS if the level is "FIPS Comliant" or if it is the
only method advertised by the client.
Bottom line:
* FreeRDP's client side does not need to set settings->EncryptionLevel
(which was done quite frequently).
* FreeRDP's server side does not have to set the supported encryption methods
list in settings->EncryptionMethods
Changes in this commit:
Removed unnecessary/confusing changes of EncryptionLevel/Methods settings
Refactor settings->DisableEncryption
* This value actually means "Advanced RDP Encryption (NLA/TLS) is NOT used"
* The old name caused lots of confusion among developers
* Renamed it to "UseRdpSecurityLayer" (the compare logic stays untouched)
Any client's setting of settings->EncryptionMethods were annihilated
* All clients "want" to set all supported methods
* Some clients forgot 56bit because 56bit was not supported at the time the
code was written
* settings->EncryptionMethods was overwritten anyways in nego_connect()
* Removed all client side settings of settings->EncryptionMethods
The default is "None" (0)
* Changed nego_connect() to advertise all supported methods if
settings->EncryptionMethods is 0 (None)
* Added a commandline option /encryption-methods:comma separated list of the
values "40", "56", "128", "FIPS". E.g. /encryption-methods:56,128
* Print warning if server chooses non-advertised method
Verify received level and method in client's gcc_read_server_security_data
* Only accept valid/known encryption methods
* Verify encryption level/method combinations according to MS-RDPBCGR 5.3.2
Server implementations can now set settings->EncryptionLevel
* The default for settings->EncryptionLevel is 0 (None)
* nego_send_negotiation_response() changes it to ClientCompatible in that case
* default to ClientCompatible if the server implementation set an invalid level
Fix server's gcc_write_server_security_data
* Verify server encryption level value set by server implementations
* Choose rdp encryption method based on level and supported client methods
* Moved FIPS to the lowest priority (only used if other methods are possible)
Updated sample server
* Support RDP Security (RdpKeyFile was not set)
* Added commented sample code for setting the security level
2014-12-12 04:17:12 +03:00
|
|
|
settings->UseRdpSecurityLayer = FALSE;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->SaltedChecksum = TRUE;
|
|
|
|
settings->ServerPort = 3389;
|
2014-02-05 20:54:42 +04:00
|
|
|
settings->GatewayPort = 443;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->DesktopResize = TRUE;
|
2013-03-05 18:57:51 +04:00
|
|
|
settings->ToggleFullscreen = TRUE;
|
2013-04-29 00:27:23 +04:00
|
|
|
settings->DesktopPosX = 0;
|
|
|
|
settings->DesktopPosY = 0;
|
2011-07-08 08:37:25 +04:00
|
|
|
|
2013-09-17 22:56:23 +04:00
|
|
|
settings->PerformanceFlags = PERF_FLAG_NONE;
|
|
|
|
settings->AllowFontSmoothing = FALSE;
|
|
|
|
settings->AllowDesktopComposition = FALSE;
|
|
|
|
settings->DisableWallpaper = TRUE;
|
|
|
|
settings->DisableFullWindowDrag = TRUE;
|
|
|
|
settings->DisableMenuAnims = TRUE;
|
|
|
|
settings->DisableThemes = FALSE;
|
|
|
|
settings->ConnectionType = CONNECTION_TYPE_LAN;
|
2011-07-08 08:37:25 +04:00
|
|
|
|
2012-11-08 08:29:24 +04:00
|
|
|
settings->EncryptionMethods = ENCRYPTION_METHOD_NONE;
|
2012-11-07 20:02:46 +04:00
|
|
|
settings->EncryptionLevel = ENCRYPTION_LEVEL_NONE;
|
2011-07-09 00:05:30 +04:00
|
|
|
|
2014-03-12 06:55:40 +04:00
|
|
|
settings->CompressionEnabled = TRUE;
|
2014-03-17 18:26:22 +04:00
|
|
|
|
|
|
|
if (settings->ServerMode)
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->CompressionLevel = PACKET_COMPR_TYPE_RDP61;
|
2014-03-17 18:26:22 +04:00
|
|
|
else
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->CompressionLevel = PACKET_COMPR_TYPE_RDP61;
|
2014-03-10 19:16:36 +04:00
|
|
|
|
2012-11-07 20:02:46 +04:00
|
|
|
settings->Authentication = TRUE;
|
2012-11-08 03:23:25 +04:00
|
|
|
settings->AuthenticationOnly = FALSE;
|
|
|
|
settings->CredentialsFromStdin = FALSE;
|
2014-05-11 01:28:34 +04:00
|
|
|
settings->DisableCredentialsDelegation = FALSE;
|
|
|
|
settings->AuthenticationLevel = 2;
|
2011-11-19 21:19:16 +04:00
|
|
|
|
2012-11-08 20:16:54 +04:00
|
|
|
settings->ChannelCount = 0;
|
|
|
|
settings->ChannelDefArraySize = 32;
|
2015-02-10 23:15:30 +03:00
|
|
|
settings->ChannelDefArray = (CHANNEL_DEF*) calloc(settings->ChannelDefArraySize, sizeof(CHANNEL_DEF));
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings->ChannelDefArray)
|
|
|
|
goto out_fail;
|
2012-11-08 20:16:54 +04:00
|
|
|
|
|
|
|
settings->MonitorCount = 0;
|
|
|
|
settings->MonitorDefArraySize = 32;
|
2015-02-10 23:15:30 +03:00
|
|
|
settings->MonitorDefArray = (rdpMonitor*) calloc(settings->MonitorDefArraySize, sizeof(rdpMonitor));
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings->MonitorDefArray)
|
|
|
|
goto out_fail;
|
|
|
|
|
2015-02-23 20:22:28 +03:00
|
|
|
settings->MonitorLocalShiftX = 0;
|
|
|
|
settings->MonitorLocalShiftY = 0;
|
2015-02-10 23:15:30 +03:00
|
|
|
|
|
|
|
settings->MonitorIds = (UINT32*) calloc(16, sizeof(UINT32));
|
2015-03-23 19:25:23 +03:00
|
|
|
if(!settings->MonitorIds)
|
|
|
|
goto out_fail;
|
2012-11-08 20:16:54 +04:00
|
|
|
|
2012-10-26 02:38:51 +04:00
|
|
|
settings_get_computer_name(settings);
|
|
|
|
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->ReceivedCapabilities = calloc(1, 32);
|
|
|
|
if (!settings->ReceivedCapabilities)
|
|
|
|
goto out_fail;
|
|
|
|
|
|
|
|
settings->OrderSupport = calloc(1, 32);
|
|
|
|
if (!settings->OrderSupport)
|
|
|
|
goto out_fail;
|
2012-11-08 00:13:14 +04:00
|
|
|
|
|
|
|
settings->OrderSupport[NEG_DSTBLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_PATBLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_SCRBLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_OPAQUE_RECT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_DRAWNINEGRID_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_MULTIDSTBLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_MULTIPATBLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_MULTISCRBLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_MULTIOPAQUERECT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_MULTI_DRAWNINEGRID_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_LINETO_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_POLYLINE_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_MEMBLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_MEM3BLT_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_SAVEBITMAP_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_GLYPH_INDEX_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_FAST_INDEX_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_FAST_GLYPH_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_POLYGON_SC_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_POLYGON_CB_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_ELLIPSE_SC_INDEX] = TRUE;
|
|
|
|
settings->OrderSupport[NEG_ELLIPSE_CB_INDEX] = TRUE;
|
|
|
|
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->ClientProductId = calloc(1, 32);
|
|
|
|
if (!settings->ClientProductId)
|
|
|
|
goto out_fail;
|
2012-11-08 00:13:14 +04:00
|
|
|
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->ClientHostname = calloc(1, 32);
|
|
|
|
if (!settings->ClientHostname)
|
|
|
|
goto out_fail;
|
2013-11-01 22:13:09 +04:00
|
|
|
gethostname(settings->ClientHostname, 31);
|
|
|
|
settings->ClientHostname[31] = 0;
|
|
|
|
|
2012-11-08 03:23:25 +04:00
|
|
|
settings->ColorPointerFlag = TRUE;
|
|
|
|
settings->LargePointerFlag = TRUE;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->PointerCacheSize = 20;
|
|
|
|
settings->SoundBeepsEnabled = TRUE;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->DrawGdiPlusEnabled = FALSE;
|
|
|
|
|
2014-09-07 05:13:37 +04:00
|
|
|
settings->DrawAllowSkipAlpha = TRUE;
|
|
|
|
settings->DrawAllowColorSubsampling = FALSE;
|
|
|
|
settings->DrawAllowDynamicColorFidelity = FALSE;
|
|
|
|
|
2014-09-06 00:06:19 +04:00
|
|
|
settings->FrameMarkerCommandEnabled = TRUE;
|
2013-12-08 14:22:36 +04:00
|
|
|
settings->SurfaceFrameMarkerEnabled = TRUE;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->BitmapCacheV3Enabled = FALSE;
|
|
|
|
|
|
|
|
settings->BitmapCacheEnabled = TRUE;
|
|
|
|
settings->BitmapCachePersistEnabled = FALSE;
|
|
|
|
settings->AllowCacheWaitingList = TRUE;
|
|
|
|
|
|
|
|
settings->BitmapCacheV2NumCells = 5;
|
|
|
|
settings->BitmapCacheV2CellInfo = (BITMAP_CACHE_V2_CELL_INFO*) malloc(sizeof(BITMAP_CACHE_V2_CELL_INFO) * 6);
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings->BitmapCacheV2CellInfo)
|
|
|
|
goto out_fail;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->BitmapCacheV2CellInfo[0].numEntries = 600;
|
|
|
|
settings->BitmapCacheV2CellInfo[0].persistent = FALSE;
|
|
|
|
settings->BitmapCacheV2CellInfo[1].numEntries = 600;
|
|
|
|
settings->BitmapCacheV2CellInfo[1].persistent = FALSE;
|
|
|
|
settings->BitmapCacheV2CellInfo[2].numEntries = 2048;
|
|
|
|
settings->BitmapCacheV2CellInfo[2].persistent = FALSE;
|
|
|
|
settings->BitmapCacheV2CellInfo[3].numEntries = 4096;
|
|
|
|
settings->BitmapCacheV2CellInfo[3].persistent = FALSE;
|
|
|
|
settings->BitmapCacheV2CellInfo[4].numEntries = 2048;
|
|
|
|
settings->BitmapCacheV2CellInfo[4].persistent = FALSE;
|
|
|
|
|
2013-07-29 04:21:43 +04:00
|
|
|
settings->NoBitmapCompressionHeader = TRUE;
|
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->RefreshRect = TRUE;
|
|
|
|
settings->SuppressOutput = TRUE;
|
|
|
|
|
|
|
|
settings->GlyphSupportLevel = GLYPH_SUPPORT_FULL;
|
|
|
|
settings->GlyphCache = malloc(sizeof(GLYPH_CACHE_DEFINITION) * 10);
|
2015-03-23 19:25:23 +03:00
|
|
|
if(!settings->GlyphCache)
|
|
|
|
goto out_fail;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->FragCache = malloc(sizeof(GLYPH_CACHE_DEFINITION));
|
2015-03-23 19:25:23 +03:00
|
|
|
if(!settings->FragCache)
|
|
|
|
goto out_fail;
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->GlyphCache[0].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[0].cacheMaximumCellSize = 4;
|
|
|
|
settings->GlyphCache[1].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[1].cacheMaximumCellSize = 4;
|
|
|
|
settings->GlyphCache[2].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[2].cacheMaximumCellSize = 8;
|
|
|
|
settings->GlyphCache[3].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[3].cacheMaximumCellSize = 8;
|
|
|
|
settings->GlyphCache[4].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[4].cacheMaximumCellSize = 16;
|
|
|
|
settings->GlyphCache[5].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[5].cacheMaximumCellSize = 32;
|
|
|
|
settings->GlyphCache[6].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[6].cacheMaximumCellSize = 64;
|
|
|
|
settings->GlyphCache[7].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[7].cacheMaximumCellSize = 128;
|
|
|
|
settings->GlyphCache[8].cacheEntries = 254;
|
|
|
|
settings->GlyphCache[8].cacheMaximumCellSize = 256;
|
|
|
|
settings->GlyphCache[9].cacheEntries = 64;
|
|
|
|
settings->GlyphCache[9].cacheMaximumCellSize = 256;
|
|
|
|
settings->FragCache->cacheEntries = 256;
|
|
|
|
settings->FragCache->cacheMaximumCellSize = 256;
|
|
|
|
|
2012-11-08 03:23:25 +04:00
|
|
|
settings->OffscreenSupportLevel = TRUE;
|
|
|
|
settings->OffscreenCacheSize = 7680;
|
|
|
|
settings->OffscreenCacheEntries = 2000;
|
2012-11-08 00:13:14 +04:00
|
|
|
|
|
|
|
settings->DrawNineGridCacheSize = 2560;
|
|
|
|
settings->DrawNineGridCacheEntries = 256;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2012-11-08 03:23:25 +04:00
|
|
|
settings->ClientDir = _strdup(client_dll);
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings->ClientDir)
|
|
|
|
goto out_fail;
|
2011-07-10 20:10:24 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->RemoteAppNumIconCaches = 3;
|
|
|
|
settings->RemoteAppNumIconCacheEntries = 12;
|
2011-08-15 01:05:34 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->VirtualChannelChunkSize = CHANNEL_CHUNK_LENGTH;
|
2011-08-21 06:57:38 +04:00
|
|
|
|
2013-05-07 18:01:04 +04:00
|
|
|
settings->MultifragMaxRequestSize = 0xFFFF;
|
2011-08-21 06:57:38 +04:00
|
|
|
|
2013-12-12 20:32:36 +04:00
|
|
|
settings->GatewayUseSameCredentials = FALSE;
|
2015-01-28 23:16:31 +03:00
|
|
|
settings->GatewayBypassLocal = FALSE;
|
2015-03-19 18:44:47 +03:00
|
|
|
settings->GatewayRpcTransport = TRUE;
|
|
|
|
settings->GatewayHttpTransport = TRUE;
|
|
|
|
settings->GatewayUdpTransport = TRUE;
|
2012-11-09 04:56:37 +04:00
|
|
|
|
2012-11-08 03:23:25 +04:00
|
|
|
settings->FastPathInput = TRUE;
|
|
|
|
settings->FastPathOutput = TRUE;
|
2011-08-16 10:37:11 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
settings->FrameAcknowledge = 2;
|
2012-11-08 03:23:25 +04:00
|
|
|
settings->MouseMotion = TRUE;
|
2012-01-14 23:42:36 +04:00
|
|
|
|
2014-09-21 23:40:27 +04:00
|
|
|
settings->NSCodecColorLossLevel = 3;
|
|
|
|
settings->NSCodecAllowSubsampling = TRUE;
|
|
|
|
settings->NSCodecAllowDynamicColorFidelity = TRUE;
|
|
|
|
|
2014-02-28 01:55:07 +04:00
|
|
|
settings->AutoReconnectionEnabled = FALSE;
|
2013-09-17 23:58:48 +04:00
|
|
|
settings->AutoReconnectMaxRetries = 20;
|
|
|
|
|
2014-07-03 22:35:03 +04:00
|
|
|
settings->GfxThinClient = TRUE;
|
|
|
|
settings->GfxSmallCache = FALSE;
|
|
|
|
settings->GfxProgressive = FALSE;
|
|
|
|
settings->GfxProgressiveV2 = FALSE;
|
|
|
|
settings->GfxH264 = FALSE;
|
|
|
|
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->ClientAutoReconnectCookie = (ARC_CS_PRIVATE_PACKET*) calloc(1, sizeof(ARC_CS_PRIVATE_PACKET));
|
|
|
|
if (!settings->ClientAutoReconnectCookie)
|
|
|
|
goto out_fail;
|
|
|
|
settings->ServerAutoReconnectCookie = (ARC_SC_PRIVATE_PACKET*) calloc(1, sizeof(ARC_SC_PRIVATE_PACKET));
|
|
|
|
if (!settings->ServerAutoReconnectCookie)
|
|
|
|
goto out_fail;
|
2012-01-14 23:42:36 +04:00
|
|
|
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->ClientTimeZone = (TIME_ZONE_INFO*) calloc(1,sizeof(TIME_ZONE_INFO));
|
|
|
|
if (!settings->ClientTimeZone)
|
|
|
|
goto out_fail;
|
2012-01-31 02:47:55 +04:00
|
|
|
|
2012-11-09 04:01:52 +04:00
|
|
|
settings->DeviceArraySize = 16;
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->DeviceArray = (RDPDR_DEVICE**) calloc(1, sizeof(RDPDR_DEVICE*) * settings->DeviceArraySize);
|
|
|
|
if (!settings->DeviceArray)
|
|
|
|
goto out_fail;
|
2012-11-09 04:01:52 +04:00
|
|
|
|
2012-11-18 09:08:03 +04:00
|
|
|
settings->StaticChannelArraySize = 16;
|
2012-11-19 02:32:18 +04:00
|
|
|
settings->StaticChannelArray = (ADDIN_ARGV**)
|
2015-03-23 19:25:23 +03:00
|
|
|
calloc(1, sizeof(ADDIN_ARGV*) * settings->StaticChannelArraySize);
|
|
|
|
if (!settings->StaticChannelArray)
|
|
|
|
goto out_fail;
|
2012-11-18 09:08:03 +04:00
|
|
|
|
|
|
|
settings->DynamicChannelArraySize = 16;
|
2012-11-19 02:32:18 +04:00
|
|
|
settings->DynamicChannelArray = (ADDIN_ARGV**)
|
2015-03-23 19:25:23 +03:00
|
|
|
calloc(1, sizeof(ADDIN_ARGV*) * settings->DynamicChannelArraySize);
|
|
|
|
if(!settings->DynamicChannelArray)
|
|
|
|
goto out_fail;
|
2012-11-18 09:08:03 +04:00
|
|
|
|
2013-03-22 23:52:43 +04:00
|
|
|
settings->HomePath = GetKnownPath(KNOWN_PATH_HOME);
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings->HomePath)
|
|
|
|
goto out_fail;
|
2013-03-23 00:03:42 +04:00
|
|
|
settings->ConfigPath = GetKnownSubPath(KNOWN_PATH_XDG_CONFIG_HOME, "freerdp");
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings->ConfigPath)
|
|
|
|
goto out_fail;
|
2012-06-16 01:06:26 +04:00
|
|
|
|
|
|
|
settings_load_hkey_local_machine(settings);
|
2013-04-23 02:39:18 +04:00
|
|
|
|
2015-03-23 19:25:23 +03:00
|
|
|
settings->SettingsModified = (BYTE*) calloc(1, sizeof(rdpSettings) / 8 );
|
|
|
|
if(!settings->SettingsModified)
|
|
|
|
goto out_fail;
|
2011-07-07 21:37:48 +04:00
|
|
|
|
|
|
|
return settings;
|
2015-03-23 19:25:23 +03:00
|
|
|
|
|
|
|
out_fail:
|
|
|
|
free(settings->HomePath);
|
|
|
|
free(settings->ConfigPath);
|
|
|
|
free(settings->DynamicChannelArray);
|
|
|
|
free(settings->StaticChannelArray);
|
|
|
|
free(settings->DeviceArray);
|
|
|
|
free(settings->ClientTimeZone);
|
|
|
|
free(settings->ServerAutoReconnectCookie);
|
|
|
|
free(settings->ClientAutoReconnectCookie);
|
|
|
|
free(settings->ClientDir);
|
|
|
|
free(settings->FragCache);
|
|
|
|
free(settings->GlyphCache);
|
|
|
|
free(settings->BitmapCacheV2CellInfo);
|
|
|
|
free(settings->ClientProductId);
|
|
|
|
free(settings->ClientHostname);
|
|
|
|
free(settings->OrderSupport);
|
|
|
|
free(settings->ReceivedCapabilities);
|
|
|
|
free(settings->ComputerName);
|
|
|
|
free(settings->MonitorIds);
|
|
|
|
free(settings->MonitorDefArray);
|
|
|
|
free(settings->ChannelDefArray);
|
|
|
|
free(settings);
|
|
|
|
return NULL;
|
2011-07-07 21:37:48 +04:00
|
|
|
}
|
|
|
|
|
2013-10-17 06:55:51 +04:00
|
|
|
rdpSettings* freerdp_settings_clone(rdpSettings* settings)
|
|
|
|
{
|
2014-02-11 07:12:13 +04:00
|
|
|
UINT32 index;
|
2013-10-17 06:55:51 +04:00
|
|
|
rdpSettings* _settings;
|
|
|
|
|
2014-09-26 01:31:05 +04:00
|
|
|
_settings = (rdpSettings*) calloc(1, sizeof(rdpSettings));
|
2013-10-17 06:55:51 +04:00
|
|
|
|
|
|
|
if (_settings)
|
|
|
|
{
|
2014-09-26 01:31:05 +04:00
|
|
|
CopyMemory(_settings, settings, sizeof(rdpSettings));
|
2013-10-17 06:55:51 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generated Code
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* char* values */
|
|
|
|
|
|
|
|
_settings->ServerHostname = _strdup(settings->ServerHostname); /* 20 */
|
|
|
|
_settings->Username = _strdup(settings->Username); /* 21 */
|
|
|
|
_settings->Password = _strdup(settings->Password); /* 22 */
|
|
|
|
_settings->Domain = _strdup(settings->Domain); /* 23 */
|
2013-11-06 19:02:58 +04:00
|
|
|
_settings->PasswordHash = _strdup(settings->PasswordHash); /* 24 */
|
2014-09-26 01:31:05 +04:00
|
|
|
_settings->ClientHostname = NULL; /* 134 */
|
|
|
|
_settings->ClientProductId = NULL; /* 135 */
|
2013-10-17 06:55:51 +04:00
|
|
|
_settings->AlternateShell = _strdup(settings->AlternateShell); /* 640 */
|
|
|
|
_settings->ShellWorkingDirectory = _strdup(settings->ShellWorkingDirectory); /* 641 */
|
|
|
|
_settings->ClientAddress = _strdup(settings->ClientAddress); /* 769 */
|
|
|
|
_settings->ClientDir = _strdup(settings->ClientDir); /* 770 */
|
|
|
|
_settings->DynamicDSTTimeZoneKeyName = _strdup(settings->DynamicDSTTimeZoneKeyName); /* 897 */
|
2014-06-29 02:33:46 +04:00
|
|
|
_settings->RemoteAssistanceSessionId = _strdup(settings->RemoteAssistanceSessionId); /* 1025 */
|
2014-06-30 20:51:27 +04:00
|
|
|
_settings->RemoteAssistancePassStub = _strdup(settings->RemoteAssistancePassStub); /* 1026 */
|
|
|
|
_settings->RemoteAssistancePassword = _strdup(settings->RemoteAssistancePassword); /* 1027 */
|
|
|
|
_settings->RemoteAssistanceRCTicket = _strdup(settings->RemoteAssistanceRCTicket); /* 1028 */
|
2014-02-12 09:43:02 +04:00
|
|
|
_settings->AuthenticationServiceClass = _strdup(settings->AuthenticationServiceClass); /* 1098 */
|
2015-02-06 22:21:26 +03:00
|
|
|
_settings->AllowedTlsCiphers = _strdup(settings->AllowedTlsCiphers); /* 1101 */
|
2013-10-17 06:55:51 +04:00
|
|
|
_settings->PreconnectionBlob = _strdup(settings->PreconnectionBlob); /* 1155 */
|
|
|
|
_settings->KerberosKdc = _strdup(settings->KerberosKdc); /* 1344 */
|
|
|
|
_settings->KerberosRealm = _strdup(settings->KerberosRealm); /* 1345 */
|
|
|
|
_settings->CertificateName = _strdup(settings->CertificateName); /* 1409 */
|
|
|
|
_settings->CertificateFile = _strdup(settings->CertificateFile); /* 1410 */
|
|
|
|
_settings->PrivateKeyFile = _strdup(settings->PrivateKeyFile); /* 1411 */
|
|
|
|
_settings->RdpKeyFile = _strdup(settings->RdpKeyFile); /* 1412 */
|
|
|
|
_settings->WindowTitle = _strdup(settings->WindowTitle); /* 1542 */
|
|
|
|
_settings->WmClass = _strdup(settings->WmClass); /* 1549 */
|
|
|
|
_settings->ComputerName = _strdup(settings->ComputerName); /* 1664 */
|
|
|
|
_settings->ConnectionFile = _strdup(settings->ConnectionFile); /* 1728 */
|
2014-06-29 02:33:46 +04:00
|
|
|
_settings->AssistanceFile = _strdup(settings->AssistanceFile); /* 1729 */
|
2013-10-17 06:55:51 +04:00
|
|
|
_settings->HomePath = _strdup(settings->HomePath); /* 1792 */
|
|
|
|
_settings->ConfigPath = _strdup(settings->ConfigPath); /* 1793 */
|
|
|
|
_settings->CurrentPath = _strdup(settings->CurrentPath); /* 1794 */
|
|
|
|
_settings->DumpRemoteFxFile = _strdup(settings->DumpRemoteFxFile); /* 1858 */
|
|
|
|
_settings->PlayRemoteFxFile = _strdup(settings->PlayRemoteFxFile); /* 1859 */
|
|
|
|
_settings->GatewayHostname = _strdup(settings->GatewayHostname); /* 1986 */
|
|
|
|
_settings->GatewayUsername = _strdup(settings->GatewayUsername); /* 1987 */
|
|
|
|
_settings->GatewayPassword = _strdup(settings->GatewayPassword); /* 1988 */
|
|
|
|
_settings->GatewayDomain = _strdup(settings->GatewayDomain); /* 1989 */
|
|
|
|
_settings->RemoteApplicationName = _strdup(settings->RemoteApplicationName); /* 2113 */
|
|
|
|
_settings->RemoteApplicationIcon = _strdup(settings->RemoteApplicationIcon); /* 2114 */
|
|
|
|
_settings->RemoteApplicationProgram = _strdup(settings->RemoteApplicationProgram); /* 2115 */
|
|
|
|
_settings->RemoteApplicationFile = _strdup(settings->RemoteApplicationFile); /* 2116 */
|
|
|
|
_settings->RemoteApplicationGuid = _strdup(settings->RemoteApplicationGuid); /* 2117 */
|
|
|
|
_settings->RemoteApplicationCmdLine = _strdup(settings->RemoteApplicationCmdLine); /* 2118 */
|
|
|
|
_settings->ImeFileName = _strdup(settings->ImeFileName); /* 2628 */
|
|
|
|
_settings->DrivesToRedirect = _strdup(settings->DrivesToRedirect); /* 4290 */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manual Code
|
|
|
|
*/
|
|
|
|
|
2014-09-26 23:18:40 +04:00
|
|
|
_settings->LoadBalanceInfo = NULL;
|
|
|
|
_settings->LoadBalanceInfoLength = 0;
|
2014-12-03 19:48:27 +03:00
|
|
|
_settings->TargetNetAddress = NULL;
|
|
|
|
_settings->RedirectionTargetFQDN = NULL;
|
|
|
|
_settings->RedirectionTargetNetBiosName = NULL;
|
|
|
|
_settings->RedirectionUsername = NULL;
|
|
|
|
_settings->RedirectionDomain = NULL;
|
|
|
|
_settings->RedirectionPassword = NULL;
|
|
|
|
_settings->RedirectionPasswordLength = 0;
|
|
|
|
_settings->RedirectionTsvUrl = NULL;
|
|
|
|
_settings->RedirectionTsvUrlLength = 0;
|
|
|
|
_settings->TargetNetAddressCount = 0;
|
|
|
|
_settings->TargetNetAddresses = NULL;
|
2014-09-26 23:18:40 +04:00
|
|
|
|
|
|
|
if (settings->LoadBalanceInfo && settings->LoadBalanceInfoLength)
|
|
|
|
{
|
|
|
|
_settings->LoadBalanceInfo = (BYTE*) calloc(1, settings->LoadBalanceInfoLength + 2);
|
|
|
|
CopyMemory(_settings->LoadBalanceInfo, settings->LoadBalanceInfo, settings->LoadBalanceInfoLength);
|
|
|
|
_settings->LoadBalanceInfoLength = settings->LoadBalanceInfoLength;
|
|
|
|
}
|
|
|
|
|
2014-08-11 19:23:23 +04:00
|
|
|
if (_settings->ServerRandomLength)
|
|
|
|
{
|
|
|
|
_settings->ServerRandom = (BYTE*) malloc(_settings->ServerRandomLength);
|
|
|
|
CopyMemory(_settings->ServerRandom, settings->ServerRandom, _settings->ServerRandomLength);
|
2015-02-06 22:21:26 +03:00
|
|
|
_settings->ServerRandomLength = settings->ServerRandomLength;
|
2014-08-11 19:23:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_settings->ClientRandomLength)
|
|
|
|
{
|
|
|
|
_settings->ClientRandom = (BYTE*) malloc(_settings->ClientRandomLength);
|
|
|
|
CopyMemory(_settings->ClientRandom, settings->ClientRandom, _settings->ClientRandomLength);
|
2015-02-06 22:21:26 +03:00
|
|
|
_settings->ClientRandomLength = settings->ClientRandomLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings->RdpServerCertificate)
|
|
|
|
{
|
|
|
|
_settings->RdpServerCertificate = certificate_clone(settings->RdpServerCertificate);
|
2014-08-11 19:23:23 +04:00
|
|
|
}
|
|
|
|
|
2013-10-17 06:55:51 +04:00
|
|
|
_settings->ChannelCount = settings->ChannelCount;
|
|
|
|
_settings->ChannelDefArraySize = settings->ChannelDefArraySize;
|
2014-02-28 21:07:22 +04:00
|
|
|
_settings->ChannelDefArray = (CHANNEL_DEF*) malloc(sizeof(CHANNEL_DEF) * settings->ChannelDefArraySize);
|
|
|
|
CopyMemory(_settings->ChannelDefArray, settings->ChannelDefArray, sizeof(CHANNEL_DEF) * settings->ChannelDefArraySize);
|
2013-10-17 06:55:51 +04:00
|
|
|
|
|
|
|
_settings->MonitorCount = settings->MonitorCount;
|
|
|
|
_settings->MonitorDefArraySize = settings->MonitorDefArraySize;
|
|
|
|
_settings->MonitorDefArray = (rdpMonitor*) malloc(sizeof(rdpMonitor) * settings->MonitorDefArraySize);
|
|
|
|
CopyMemory(_settings->MonitorDefArray, settings->MonitorDefArray, sizeof(rdpMonitor) * settings->MonitorDefArraySize);
|
|
|
|
|
2015-02-10 23:15:30 +03:00
|
|
|
_settings->MonitorIds = (UINT32*) calloc(16, sizeof(UINT32));
|
|
|
|
CopyMemory(_settings->MonitorIds, settings->MonitorIds, 16 * sizeof(UINT32));
|
|
|
|
|
2013-10-17 06:55:51 +04:00
|
|
|
_settings->ReceivedCapabilities = malloc(32);
|
|
|
|
_settings->OrderSupport = malloc(32);
|
|
|
|
CopyMemory(_settings->ReceivedCapabilities, settings->ReceivedCapabilities, 32);
|
|
|
|
CopyMemory(_settings->OrderSupport, settings->OrderSupport, 32);
|
|
|
|
|
|
|
|
_settings->ClientHostname = malloc(32);
|
|
|
|
_settings->ClientProductId = malloc(32);
|
|
|
|
CopyMemory(_settings->ClientHostname, settings->ClientHostname, 32);
|
|
|
|
CopyMemory(_settings->ClientProductId, settings->ClientProductId, 32);
|
|
|
|
|
|
|
|
_settings->BitmapCacheV2CellInfo = (BITMAP_CACHE_V2_CELL_INFO*) malloc(sizeof(BITMAP_CACHE_V2_CELL_INFO) * 6);
|
|
|
|
CopyMemory(_settings->BitmapCacheV2CellInfo, settings->BitmapCacheV2CellInfo, sizeof(BITMAP_CACHE_V2_CELL_INFO) * 6);
|
|
|
|
|
|
|
|
_settings->GlyphCache = malloc(sizeof(GLYPH_CACHE_DEFINITION) * 10);
|
|
|
|
_settings->FragCache = malloc(sizeof(GLYPH_CACHE_DEFINITION));
|
|
|
|
CopyMemory(_settings->GlyphCache, settings->GlyphCache, sizeof(GLYPH_CACHE_DEFINITION) * 10);
|
|
|
|
CopyMemory(_settings->FragCache, settings->FragCache, sizeof(GLYPH_CACHE_DEFINITION));
|
|
|
|
|
|
|
|
_settings->ClientAutoReconnectCookie = (ARC_CS_PRIVATE_PACKET*) malloc(sizeof(ARC_CS_PRIVATE_PACKET));
|
|
|
|
_settings->ServerAutoReconnectCookie = (ARC_SC_PRIVATE_PACKET*) malloc(sizeof(ARC_SC_PRIVATE_PACKET));
|
|
|
|
CopyMemory(_settings->ClientAutoReconnectCookie, settings->ClientAutoReconnectCookie, sizeof(ARC_CS_PRIVATE_PACKET));
|
|
|
|
CopyMemory(_settings->ServerAutoReconnectCookie, settings->ServerAutoReconnectCookie, sizeof(ARC_SC_PRIVATE_PACKET));
|
|
|
|
|
|
|
|
_settings->ClientTimeZone = (TIME_ZONE_INFO*) malloc(sizeof(TIME_ZONE_INFO));
|
2014-03-05 16:24:07 +04:00
|
|
|
CopyMemory(_settings->ClientTimeZone, settings->ClientTimeZone, sizeof(TIME_ZONE_INFO));
|
2013-10-17 06:55:51 +04:00
|
|
|
|
2013-11-04 01:25:56 +04:00
|
|
|
_settings->TargetNetAddressCount = settings->TargetNetAddressCount;
|
|
|
|
|
|
|
|
if (settings->TargetNetAddressCount > 0)
|
|
|
|
{
|
|
|
|
_settings->TargetNetAddresses = (char**) malloc(sizeof(char*) * settings->TargetNetAddressCount);
|
|
|
|
|
|
|
|
for (index = 0; index < settings->TargetNetAddressCount; index++)
|
|
|
|
_settings->TargetNetAddresses[index] = _strdup(settings->TargetNetAddresses[index]);
|
|
|
|
}
|
|
|
|
|
2013-10-19 06:42:50 +04:00
|
|
|
_settings->DeviceCount = settings->DeviceCount;
|
|
|
|
_settings->DeviceArraySize = settings->DeviceArraySize;
|
2013-10-17 06:55:51 +04:00
|
|
|
_settings->DeviceArray = (RDPDR_DEVICE**) malloc(sizeof(RDPDR_DEVICE*) * _settings->DeviceArraySize);
|
|
|
|
ZeroMemory(_settings->DeviceArray, sizeof(RDPDR_DEVICE*) * _settings->DeviceArraySize);
|
|
|
|
|
2013-10-19 06:42:50 +04:00
|
|
|
for (index = 0; index < _settings->DeviceCount; index++)
|
|
|
|
{
|
|
|
|
_settings->DeviceArray[index] = freerdp_device_clone(settings->DeviceArray[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
_settings->StaticChannelCount = settings->StaticChannelCount;
|
|
|
|
_settings->StaticChannelArraySize = settings->StaticChannelArraySize;
|
2015-02-06 22:21:26 +03:00
|
|
|
_settings->StaticChannelArray = (ADDIN_ARGV**) calloc(_settings->StaticChannelArraySize, sizeof(ADDIN_ARGV*));
|
2013-10-17 06:55:51 +04:00
|
|
|
|
2013-10-19 06:42:50 +04:00
|
|
|
for (index = 0; index < _settings->StaticChannelCount; index++)
|
|
|
|
{
|
|
|
|
_settings->StaticChannelArray[index] = freerdp_static_channel_clone(settings->StaticChannelArray[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
_settings->DynamicChannelCount = settings->DynamicChannelCount;
|
|
|
|
_settings->DynamicChannelArraySize = settings->DynamicChannelArraySize;
|
2015-02-06 22:21:26 +03:00
|
|
|
_settings->DynamicChannelArray = (ADDIN_ARGV**) calloc(_settings->DynamicChannelArraySize, sizeof(ADDIN_ARGV*));
|
2013-10-17 06:55:51 +04:00
|
|
|
|
2013-10-19 06:42:50 +04:00
|
|
|
for (index = 0; index < _settings->DynamicChannelCount; index++)
|
|
|
|
{
|
|
|
|
_settings->DynamicChannelArray[index] = freerdp_dynamic_channel_clone(settings->DynamicChannelArray[index]);
|
|
|
|
}
|
|
|
|
|
2013-10-17 06:55:51 +04:00
|
|
|
_settings->SettingsModified = (BYTE*) malloc(sizeof(rdpSettings) / 8);
|
|
|
|
ZeroMemory(_settings->SettingsModified, sizeof(rdpSettings) / 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
return _settings;
|
|
|
|
}
|
|
|
|
|
2012-11-09 04:01:52 +04:00
|
|
|
void freerdp_settings_free(rdpSettings* settings)
|
2011-07-07 21:37:48 +04:00
|
|
|
{
|
2015-03-23 19:25:23 +03:00
|
|
|
if (!settings)
|
|
|
|
return;
|
|
|
|
free(settings->ServerHostname);
|
|
|
|
free(settings->Username);
|
|
|
|
free(settings->Password);
|
|
|
|
free(settings->Domain);
|
|
|
|
free(settings->PasswordHash);
|
|
|
|
free(settings->AlternateShell);
|
|
|
|
free(settings->ShellWorkingDirectory);
|
|
|
|
free(settings->ComputerName);
|
|
|
|
free(settings->ChannelDefArray);
|
|
|
|
free(settings->MonitorDefArray);
|
|
|
|
free(settings->MonitorIds);
|
|
|
|
free(settings->ClientAddress);
|
|
|
|
free(settings->ClientDir);
|
|
|
|
free(settings->AllowedTlsCiphers);
|
|
|
|
free(settings->CertificateFile);
|
|
|
|
free(settings->PrivateKeyFile);
|
|
|
|
free(settings->ConnectionFile);
|
|
|
|
free(settings->AssistanceFile);
|
|
|
|
free(settings->ReceivedCapabilities);
|
|
|
|
free(settings->OrderSupport);
|
|
|
|
free(settings->ClientHostname);
|
|
|
|
free(settings->ClientProductId);
|
|
|
|
free(settings->ServerRandom);
|
|
|
|
free(settings->ClientRandom);
|
|
|
|
free(settings->ServerCertificate);
|
|
|
|
free(settings->RdpKeyFile);
|
|
|
|
certificate_free(settings->RdpServerCertificate);
|
|
|
|
free(settings->ClientAutoReconnectCookie);
|
|
|
|
free(settings->ServerAutoReconnectCookie);
|
|
|
|
free(settings->ClientTimeZone);
|
|
|
|
free(settings->BitmapCacheV2CellInfo);
|
|
|
|
free(settings->GlyphCache);
|
|
|
|
free(settings->FragCache);
|
|
|
|
key_free(settings->RdpServerRsaKey);
|
|
|
|
free(settings->ConfigPath);
|
|
|
|
free(settings->CurrentPath);
|
|
|
|
free(settings->HomePath);
|
|
|
|
free(settings->LoadBalanceInfo);
|
|
|
|
free(settings->TargetNetAddress);
|
|
|
|
free(settings->RedirectionTargetFQDN);
|
|
|
|
free(settings->RedirectionTargetNetBiosName);
|
|
|
|
free(settings->RedirectionUsername);
|
|
|
|
free(settings->RedirectionDomain);
|
|
|
|
free(settings->RedirectionPassword);
|
|
|
|
free(settings->RedirectionTsvUrl);
|
|
|
|
free(settings->RemoteAssistanceSessionId);
|
|
|
|
free(settings->AuthenticationServiceClass);
|
|
|
|
free(settings->GatewayHostname);
|
|
|
|
free(settings->GatewayUsername);
|
|
|
|
free(settings->GatewayPassword);
|
|
|
|
free(settings->GatewayDomain);
|
|
|
|
freerdp_target_net_addresses_free(settings);
|
|
|
|
freerdp_device_collection_free(settings);
|
|
|
|
freerdp_static_channel_collection_free(settings);
|
|
|
|
freerdp_dynamic_channel_collection_free(settings);
|
|
|
|
free(settings->SettingsModified);
|
|
|
|
free(settings);
|
2011-07-07 21:37:48 +04:00
|
|
|
}
|
2012-10-14 09:17:25 +04:00
|
|
|
|
2012-10-14 11:22:58 +04:00
|
|
|
#ifdef _WIN32
|
2012-10-14 09:17:25 +04:00
|
|
|
#pragma warning(pop)
|
2012-10-14 11:22:58 +04:00
|
|
|
#endif
|
|
|
|
|