2012-11-06 07:11:13 +04:00
/**
* FreeRDP : A Remote Desktop Protocol Implementation
* FreeRDP Client Command - Line Interface
*
* Copyright 2012 Marc - Andre Moreau < marcandre . moreau @ gmail . com >
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
* Copyright 2014 Norbert Federa < norbert . federa @ thincast . com >
2016-02-26 16:50:27 +03:00
* Copyright 2016 Armin Novak < armin . novak @ gmail . com >
2012-11-06 07:11:13 +04:00
*
* 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
2016-12-11 01:13:35 +03:00
# include <ctype.h>
2013-10-02 11:48:25 +04:00
# include <assert.h>
2012-11-06 07:11:13 +04:00
# include <winpr/crt.h>
2016-01-23 17:16:13 +03:00
# include <winpr/wlog.h>
2012-11-06 07:11:13 +04:00
# include <winpr/cmdline.h>
2012-11-18 07:03:04 +04:00
# include <freerdp/addin.h>
2012-11-09 23:35:21 +04:00
# include <freerdp/settings.h>
2012-11-09 04:01:52 +04:00
# include <freerdp/client/channels.h>
2013-10-22 19:14:29 +04:00
# include <freerdp/crypto/crypto.h>
2012-11-27 01:49:12 +04:00
# include <freerdp/locale/keyboard.h>
2012-11-09 04:01:52 +04:00
2014-09-12 19:13:01 +04:00
2012-11-06 07:11:13 +04:00
# include <freerdp/client/cmdline.h>
2013-11-06 20:29:33 +04:00
# include <freerdp/version.h>
2012-11-06 07:11:13 +04:00
2012-12-05 21:12:18 +04:00
# include "compatibility.h"
2014-09-12 19:13:01 +04:00
# include <freerdp/log.h>
# define TAG CLIENT_TAG("common.cmdline")
2015-07-31 12:31:21 +03:00
static COMMAND_LINE_ARGUMENT_A args [ ] =
2012-11-06 07:11:13 +04:00
{
2012-11-19 22:26:56 +04:00
{ " v " , COMMAND_LINE_VALUE_REQUIRED , " <server>[:port] " , NULL , NULL , - 1 , NULL , " Server hostname " } ,
{ " port " , COMMAND_LINE_VALUE_REQUIRED , " <number> " , NULL , NULL , - 1 , NULL , " Server port " } ,
{ " w " , COMMAND_LINE_VALUE_REQUIRED , " <width> " , " 1024 " , NULL , - 1 , NULL , " Width " } ,
{ " h " , COMMAND_LINE_VALUE_REQUIRED , " <height> " , " 768 " , NULL , - 1 , NULL , " Height " } ,
2014-08-06 14:19:50 +04:00
{ " size " , COMMAND_LINE_VALUE_REQUIRED , " <width>x<height> or <percent>% " , " 1024x768 " , NULL , - 1 , NULL , " Screen size " } ,
2012-11-19 22:26:56 +04:00
{ " f " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " Fullscreen mode " } ,
{ " bpp " , COMMAND_LINE_VALUE_REQUIRED , " <depth> " , " 16 " , NULL , - 1 , NULL , " Session bpp (color depth) " } ,
2012-11-27 01:49:12 +04:00
{ " kbd " , COMMAND_LINE_VALUE_REQUIRED , " 0x<layout id> or <layout name> " , NULL , NULL , - 1 , NULL , " Keyboard layout " } ,
{ " kbd-list " , COMMAND_LINE_VALUE_FLAG | COMMAND_LINE_PRINT , NULL , NULL , NULL , - 1 , NULL , " List keyboard layouts " } ,
{ " kbd-type " , COMMAND_LINE_VALUE_REQUIRED , " <type id> " , NULL , NULL , - 1 , NULL , " Keyboard type " } ,
{ " kbd-subtype " , COMMAND_LINE_VALUE_REQUIRED , " <subtype id> " , NULL , NULL , - 1 , NULL , " Keyboard subtype " } ,
{ " kbd-fn-key " , COMMAND_LINE_VALUE_REQUIRED , " <function key count> " , NULL , NULL , - 1 , NULL , " Keyboard function key count " } ,
2012-11-19 22:26:56 +04:00
{ " admin " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , " console " , " Admin (or console) session " } ,
2013-11-06 10:51:55 +04:00
{ " restricted-admin " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , " restrictedAdmin " , " Restricted admin mode " } ,
2013-11-06 19:02:58 +04:00
{ " pth " , COMMAND_LINE_VALUE_REQUIRED , " <password hash> " , NULL , NULL , - 1 , " pass-the-hash " , " Pass the hash (restricted admin mode) " } ,
2013-11-12 04:57:44 +04:00
{ " client-hostname " , COMMAND_LINE_VALUE_REQUIRED , " <name> " , NULL , NULL , - 1 , NULL , " Client Hostname to send to server " } ,
2013-04-29 01:10:43 +04:00
{ " multimon " , COMMAND_LINE_VALUE_OPTIONAL , NULL , NULL , NULL , - 1 , NULL , " Use multiple monitors " } ,
2014-03-25 22:39:21 +04:00
{ " span " , COMMAND_LINE_VALUE_OPTIONAL , NULL , NULL , NULL , - 1 , NULL , " Span screen over multiple monitors " } ,
2013-04-29 01:10:43 +04:00
{ " workarea " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " Use available work area " } ,
2013-04-29 02:48:27 +04:00
{ " monitors " , COMMAND_LINE_VALUE_REQUIRED , " <0,1,2...> " , NULL , NULL , - 1 , NULL , " Select monitors to use " } ,
2013-04-29 01:10:43 +04:00
{ " monitor-list " , COMMAND_LINE_VALUE_FLAG | COMMAND_LINE_PRINT , NULL , NULL , NULL , - 1 , NULL , " List detected monitors " } ,
2012-11-19 22:26:56 +04:00
{ " t " , COMMAND_LINE_VALUE_REQUIRED , " <title> " , NULL , NULL , - 1 , " title " , " Window title " } ,
2015-02-13 23:57:52 +03:00
{ " decorations " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Window decorations " } ,
2014-12-01 13:56:44 +03:00
{ " smart-sizing " , COMMAND_LINE_VALUE_OPTIONAL , " <width>x<height> " , NULL , NULL , - 1 , NULL , " Scale remote desktop to window size " } ,
2012-11-19 22:26:56 +04:00
{ " a " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , " addin " , " Addin " } ,
{ " vc " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , NULL , " Static virtual channel " } ,
{ " dvc " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , NULL , " Dynamic virtual channel " } ,
2012-11-26 23:31:31 +04:00
{ " u " , COMMAND_LINE_VALUE_REQUIRED , " [<domain> \\ ]<user> or <user>[@<domain>] " , NULL , NULL , - 1 , NULL , " Username " } ,
2012-11-19 22:26:56 +04:00
{ " p " , COMMAND_LINE_VALUE_REQUIRED , " <password> " , NULL , NULL , - 1 , NULL , " Password " } ,
{ " d " , COMMAND_LINE_VALUE_REQUIRED , " <domain> " , NULL , NULL , - 1 , NULL , " Domain " } ,
2016-06-15 23:39:03 +03:00
{ " g " , COMMAND_LINE_VALUE_REQUIRED , " <gateway>[:port] " , NULL , NULL , - 1 , NULL , " Gateway Hostname " } ,
2012-11-26 23:31:31 +04:00
{ " gu " , COMMAND_LINE_VALUE_REQUIRED , " [<domain> \\ ]<user> or <user>[@<domain>] " , NULL , NULL , - 1 , NULL , " Gateway username " } ,
2012-11-19 22:26:56 +04:00
{ " gp " , COMMAND_LINE_VALUE_REQUIRED , " <password> " , NULL , NULL , - 1 , NULL , " Gateway password " } ,
{ " gd " , COMMAND_LINE_VALUE_REQUIRED , " <domain> " , NULL , NULL , - 1 , NULL , " Gateway domain " } ,
2015-03-19 18:44:47 +03:00
{ " gt " , COMMAND_LINE_VALUE_REQUIRED , " <rpc|http|auto> " , NULL , NULL , - 1 , NULL , " Gateway transport type " } ,
2015-01-28 23:16:31 +03:00
{ " gateway-usage-method " , COMMAND_LINE_VALUE_REQUIRED , " <direct|detect> " , NULL , NULL , - 1 , " gum " , " Gateway usage method " } ,
2016-12-11 01:13:35 +03:00
{ " proxy " , COMMAND_LINE_VALUE_REQUIRED , " [<protocol>://]<host>:<port> " , NULL , NULL , - 1 , NULL , " Proxy (see also environment variable below) " } ,
2013-04-11 19:51:10 +04:00
{ " load-balance-info " , COMMAND_LINE_VALUE_REQUIRED , " <info string> " , NULL , NULL , - 1 , NULL , " Load balance info " } ,
2013-09-02 21:43:57 +04:00
{ " app " , COMMAND_LINE_VALUE_REQUIRED , " <executable path> or <||alias> " , NULL , NULL , - 1 , NULL , " Remote application program " } ,
2012-11-19 22:26:56 +04:00
{ " app-name " , COMMAND_LINE_VALUE_REQUIRED , " <app name> " , NULL , NULL , - 1 , NULL , " Remote application name for user interface " } ,
{ " app-icon " , COMMAND_LINE_VALUE_REQUIRED , " <icon path> " , NULL , NULL , - 1 , NULL , " Remote application icon for user interface " } ,
{ " app-cmd " , COMMAND_LINE_VALUE_REQUIRED , " <parameters> " , NULL , NULL , - 1 , NULL , " Remote application command-line parameters " } ,
{ " app-file " , COMMAND_LINE_VALUE_REQUIRED , " <file name> " , NULL , NULL , - 1 , NULL , " File to open with remote application " } ,
{ " app-guid " , COMMAND_LINE_VALUE_REQUIRED , " <app guid> " , NULL , NULL , - 1 , NULL , " Remote application GUID " } ,
2016-06-15 23:39:03 +03:00
{ " compression " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , " z " , " Enable compression " } ,
2014-03-10 19:16:36 +04:00
{ " compression-level " , COMMAND_LINE_VALUE_REQUIRED , " <level> " , NULL , NULL , - 1 , NULL , " Compression level (0,1,2) " } ,
2012-11-19 22:26:56 +04:00
{ " shell " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , NULL , " Alternate shell " } ,
{ " shell-dir " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , NULL , " Shell working directory " } ,
2015-03-17 05:10:58 +03:00
{ " sound " , COMMAND_LINE_VALUE_OPTIONAL , " [sys][dev][format][rate][channel][latency][quality] " , NULL , NULL , - 1 , " audio " , " Audio output (sound) " } ,
{ " microphone " , COMMAND_LINE_VALUE_OPTIONAL , " [sys][dev][format][rate][channel] " , NULL , NULL , - 1 , " mic " , " Audio input (microphone) " } ,
2012-11-26 23:31:31 +04:00
{ " audio-mode " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , NULL , " Audio output mode " } ,
2015-03-17 05:10:58 +03:00
{ " multimedia " , COMMAND_LINE_VALUE_OPTIONAL , " [sys][dev][decoder] " , NULL , NULL , - 1 , " mmr " , " Redirect multimedia (video) " } ,
2012-11-26 23:31:31 +04:00
{ " network " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , NULL , " Network connection type " } ,
2013-02-18 16:32:15 +04:00
{ " drive " , COMMAND_LINE_VALUE_REQUIRED , NULL , NULL , NULL , - 1 , NULL , " Redirect drive " } ,
2013-02-15 04:38:45 +04:00
{ " drives " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Redirect all drives " } ,
{ " home-drive " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Redirect home drive " } ,
2012-11-21 04:34:52 +04:00
{ " clipboard " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Redirect clipboard " } ,
2014-03-26 19:05:12 +04:00
{ " serial " , COMMAND_LINE_VALUE_OPTIONAL , NULL , NULL , NULL , - 1 , " tty " , " Redirect serial device " } ,
{ " parallel " , COMMAND_LINE_VALUE_OPTIONAL , NULL , NULL , NULL , - 1 , NULL , " Redirect parallel device " } ,
2013-09-12 16:55:25 +04:00
{ " smartcard " , COMMAND_LINE_VALUE_OPTIONAL , NULL , NULL , NULL , - 1 , NULL , " Redirect smartcard device " } ,
2013-05-20 23:50:22 +04:00
{ " printer " , COMMAND_LINE_VALUE_OPTIONAL , NULL , NULL , NULL , - 1 , NULL , " Redirect printer device " } ,
2015-03-28 03:08:36 +03:00
{ " usb " , COMMAND_LINE_VALUE_REQUIRED , " [dbg][dev][id|addr][auto] " , NULL , NULL , - 1 , NULL , " Redirect USB device " } ,
2013-05-09 06:14:16 +04:00
{ " multitouch " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Redirect multitouch input " } ,
2013-07-12 01:59:20 +04:00
{ " gestures " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Consume multitouch input locally " } ,
2015-07-14 02:03:33 +03:00
{ " unmap-buttons " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Let server see real physical pointer button " } ,
2013-03-13 03:23:59 +04:00
{ " echo " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , " echo " , " Echo channel " } ,
2013-07-10 00:10:59 +04:00
{ " disp " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " Display control " } ,
2016-06-15 23:39:03 +03:00
{ " fonts " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Enable smooth fonts (ClearType) " } ,
{ " aero " , COMMAND_LINE_VALUE_BOOL , NULL , NULL , BoolValueFalse , - 1 , NULL , " Enable desktop composition " } ,
{ " window-drag " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Enable full window drag " } ,
{ " menu-anims " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Enable menu animations " } ,
{ " themes " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Enable themes " } ,
{ " wallpaper " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Enable wallpaper " } ,
2012-11-07 07:08:09 +04:00
{ " gdi " , COMMAND_LINE_VALUE_REQUIRED , " <sw|hw> " , NULL , NULL , - 1 , NULL , " GDI rendering " } ,
2016-03-24 18:25:22 +03:00
{ " gfx " , COMMAND_LINE_VALUE_OPTIONAL , " <RFX|AVC420|AVC444> " , NULL , NULL , - 1 , NULL , " RDP8 graphics pipeline (experimental) " } ,
2016-06-15 23:39:03 +03:00
{ " gfx-thin-client " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " RDP8 graphics pipeline using thin client mode " } ,
{ " gfx-small-cache " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " RDP8 graphics pipeline using small cache mode " } ,
{ " gfx-progressive " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " RDP8 graphics pipeline using progressive codec " } ,
{ " gfx-h264 " , COMMAND_LINE_VALUE_OPTIONAL , " <AVC420|AVC444> " , NULL , NULL , - 1 , NULL , " RDP8.1 graphics pipeline using H264 codec " } ,
2012-11-07 07:08:09 +04:00
{ " rfx " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " RemoteFX " } ,
{ " rfx-mode " , COMMAND_LINE_VALUE_REQUIRED , " <image|video> " , NULL , NULL , - 1 , NULL , " RemoteFX mode " } ,
2016-06-15 23:39:03 +03:00
{ " frame-ack " , COMMAND_LINE_VALUE_REQUIRED , " <number> " , NULL , NULL , - 1 , NULL , " Number of frame acknowledgement " } ,
{ " nsc " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , " nscodec " , " Enable NSCodec " } ,
{ " jpeg " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " Enable JPEG codec " } ,
2012-11-27 01:49:12 +04:00
{ " jpeg-quality " , COMMAND_LINE_VALUE_REQUIRED , " <percentage> " , NULL , NULL , - 1 , NULL , " JPEG quality " } ,
2016-06-15 23:39:03 +03:00
{ " nego " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Enable protocol security negotiation " } ,
2012-11-07 03:49:02 +04:00
{ " sec " , COMMAND_LINE_VALUE_REQUIRED , " <rdp|tls|nla|ext> " , NULL , NULL , - 1 , NULL , " force specific protocol security " } ,
{ " sec-rdp " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " rdp protocol security " } ,
{ " sec-tls " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " tls protocol security " } ,
{ " sec-nla " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " nla protocol security " } ,
{ " sec-ext " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " nla extended protocol security " } ,
2015-02-06 22:21:26 +03:00
{ " tls-ciphers " , COMMAND_LINE_VALUE_REQUIRED , " <netmon|ma|ciphers> " , NULL , NULL , - 1 , NULL , " Allowed TLS ciphers " } ,
2012-11-07 03:49:02 +04:00
{ " cert-name " , COMMAND_LINE_VALUE_REQUIRED , " <name> " , NULL , NULL , - 1 , NULL , " certificate name " } ,
{ " cert-ignore " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " ignore certificate " } ,
2016-03-31 13:16:55 +03:00
{ " cert-tofu " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " Automatically accept certificate on first connect " } ,
2012-12-22 11:39:39 +04:00
{ " pcb " , COMMAND_LINE_VALUE_REQUIRED , " <blob> " , NULL , NULL , - 1 , NULL , " Preconnection Blob " } ,
{ " pcid " , COMMAND_LINE_VALUE_REQUIRED , " <id> " , NULL , NULL , - 1 , NULL , " Preconnection Id " } ,
2014-02-12 09:43:02 +04:00
{ " spn-class " , COMMAND_LINE_VALUE_REQUIRED , " <service class> " , NULL , NULL , - 1 , NULL , " SPN authentication service class " } ,
2014-02-14 09:43:31 +04:00
{ " credentials-delegation " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Disable credentials delegation " } ,
2013-01-09 02:18:34 +04:00
{ " vmconnect " , COMMAND_LINE_VALUE_OPTIONAL , " <vmid> " , NULL , NULL , - 1 , NULL , " Hyper-V console (use port 2179, disable negotiation) " } ,
2012-11-15 08:06:56 +04:00
{ " authentication " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " authentication (hack!) " } ,
{ " encryption " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " encryption (hack!) " } ,
2012-11-15 19:00:07 +04:00
{ " grab-keyboard " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " grab keyboard " } ,
2013-02-28 20:32:46 +04:00
{ " toggle-fullscreen " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Alt+Ctrl+Enter toggles fullscreen " } ,
2012-11-27 01:49:12 +04:00
{ " mouse-motion " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " mouse-motion " } ,
{ " parent-window " , COMMAND_LINE_VALUE_REQUIRED , " <window id> " , NULL , NULL , - 1 , NULL , " Parent window id " } ,
2016-06-15 23:39:03 +03:00
{ " bitmap-cache " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Enable bitmap cache " } ,
{ " offscreen-cache " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Enable offscreen bitmap cache " } ,
2016-10-03 14:18:21 +03:00
{ " glyph-cache " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Glyph cache (EXPERIMENTAL) " } ,
2012-11-27 01:49:12 +04:00
{ " codec-cache " , COMMAND_LINE_VALUE_REQUIRED , " <rfx|nsc|jpeg> " , NULL , NULL , - 1 , NULL , " bitmap codec cache " } ,
2016-06-15 23:39:03 +03:00
{ " fast-path " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueTrue , NULL , - 1 , NULL , " Enable fast-path input/output " } ,
{ " max-fast-path-size " , COMMAND_LINE_VALUE_OPTIONAL , " <size> " , NULL , NULL , - 1 , NULL , " specify maximum fast-path update size " } ,
2016-10-17 19:56:52 +03:00
{ " max-loop-time " , COMMAND_LINE_VALUE_REQUIRED , " <time> " , NULL , NULL , - 1 , NULL , " specify maximum time in milliseconds spend treating packets " } ,
2013-01-28 03:22:46 +04:00
{ " async-input " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " asynchronous input " } ,
{ " async-update " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " asynchronous update " } ,
2013-03-27 21:03:41 +04:00
{ " async-transport " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " asynchronous transport (unstable) " } ,
2013-02-19 21:29:15 +04:00
{ " async-channels " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " asynchronous channels (unstable) " } ,
2013-03-26 18:47:39 +04:00
{ " wm-class " , COMMAND_LINE_VALUE_REQUIRED , " <class name> " , NULL , NULL , - 1 , NULL , " set the WM_CLASS hint for the window instance " } ,
2012-11-07 03:49:02 +04:00
{ " version " , COMMAND_LINE_VALUE_FLAG | COMMAND_LINE_PRINT_VERSION , NULL , NULL , NULL , - 1 , NULL , " print version " } ,
{ " help " , COMMAND_LINE_VALUE_FLAG | COMMAND_LINE_PRINT_HELP , NULL , NULL , NULL , - 1 , " ? " , " print help " } ,
2013-05-27 17:28:08 +04:00
{ " play-rfx " , COMMAND_LINE_VALUE_REQUIRED , " <pcap file> " , NULL , NULL , - 1 , NULL , " Replay rfx pcap file " } ,
2013-05-27 17:35:25 +04:00
{ " auth-only " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Authenticate only. " } ,
2014-02-28 01:55:07 +04:00
{ " auto-reconnect " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Automatic reconnection " } ,
2017-01-09 14:34:09 +03:00
{ " auto-reconnect-max-retries " , COMMAND_LINE_VALUE_REQUIRED , " <retries> " , NULL , NULL , - 1 , NULL , " Automatic reconnection maximum retries, 0 for unlimited [0,1000] " } ,
2013-10-22 19:14:29 +04:00
{ " reconnect-cookie " , COMMAND_LINE_VALUE_REQUIRED , " <base64 cookie> " , NULL , NULL , - 1 , NULL , " Pass base64 reconnect cookie to the connection " } ,
{ " print-reconnect-cookie " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Print base64 reconnect cookie after connecting " } ,
2014-01-30 07:53:32 +04:00
{ " heartbeat " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Support heartbeat PDUs " } ,
{ " multitransport " , COMMAND_LINE_VALUE_BOOL , NULL , BoolValueFalse , NULL , - 1 , NULL , " Support multitransport protocol " } ,
2014-06-30 20:51:27 +04:00
{ " assistance " , COMMAND_LINE_VALUE_REQUIRED , " <password> " , NULL , NULL , - 1 , NULL , " Remote assistance password " } ,
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
{ " encryption-methods " , COMMAND_LINE_VALUE_REQUIRED , " <40,56,128,FIPS> " , NULL , NULL , - 1 , NULL , " RDP standard security encryption methods " } ,
2015-06-23 17:09:39 +03:00
{ " from-stdin " , COMMAND_LINE_VALUE_FLAG , NULL , NULL , NULL , - 1 , NULL , " Read credentials from stdin, do not use defaults. " } ,
2016-01-11 18:18:40 +03:00
{ " buildconfig " , COMMAND_LINE_VALUE_FLAG | COMMAND_LINE_PRINT_BUILDCONFIG , NULL , NULL , NULL , - 1 , NULL , " print the build configuration " } ,
2017-01-12 18:33:36 +03:00
{ " log-level " , COMMAND_LINE_VALUE_REQUIRED , " [OFF|FATAL|ERROR|WARN|INFO|DEBUG|TRACE] " , NULL , NULL , - 1 , NULL , " Set the default log level, see wLog(7) for details " } ,
{ " log-filters " , COMMAND_LINE_VALUE_REQUIRED , " <logger tag>:<log level>[, <logger tag>:<log level>][, ...]] " , NULL , NULL , - 1 , NULL , " Set logger filters, see wLog(7) for details " } ,
2015-03-04 17:37:25 +03:00
{ " pwidth " , COMMAND_LINE_VALUE_REQUIRED , " <physical width (mm)> " , NULL , NULL , - 1 , NULL , " Physical width of display (in millimeters) " } ,
{ " pheight " , COMMAND_LINE_VALUE_REQUIRED , " <physical height (mm)> " , NULL , NULL , - 1 , NULL , " Physical height of display (in millimeters) " } ,
{ " orientation " , COMMAND_LINE_VALUE_REQUIRED , " <orientation> " , NULL , NULL , - 1 , NULL , " Orientation of display in degrees (0, 90, 180, 270) " } ,
{ " scale " , COMMAND_LINE_VALUE_REQUIRED , " <scale amount (%%)> " , " 100 " , NULL , - 1 , NULL , " Scaling factor of the display (value of 100, 140, or 180) " } ,
{ " scale-desktop " , COMMAND_LINE_VALUE_REQUIRED , " <scale amount (%%)> " , " 100 " , NULL , - 1 , NULL , " Scaling factor for desktop applications (value between 100 and 500) " } ,
{ " scale-device " , COMMAND_LINE_VALUE_REQUIRED , " <scale amount (%%)> " , " 100 " , NULL , - 1 , NULL , " Scaling factor for app store applications (100, 140, or 180) " } ,
2017-02-17 16:09:32 +03:00
{ " action-script " , COMMAND_LINE_VALUE_REQUIRED , " <file name> " , " ~/.config/freerdp/action.sh " , NULL , - 1 , NULL , " Action script " } ,
2012-11-07 03:49:02 +04:00
{ NULL , 0 , NULL , NULL , NULL , - 1 , NULL , NULL }
2012-11-06 07:11:13 +04:00
} ;
2016-02-01 17:09:51 +03:00
BOOL freerdp_client_print_version ( )
2012-11-07 07:08:09 +04:00
{
2016-08-04 17:13:37 +03:00
printf ( " This is FreeRDP version %s (git %s) \n " , FREERDP_VERSION_FULL ,
GIT_REVISION ) ;
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-07 07:08:09 +04:00
}
2016-02-01 17:09:51 +03:00
BOOL freerdp_client_print_buildconfig ( )
2016-01-11 18:18:40 +03:00
{
2016-01-28 16:26:50 +03:00
printf ( " %s " , freerdp_get_build_config ( ) ) ;
2016-02-01 17:09:51 +03:00
return TRUE ;
2016-01-11 18:18:40 +03:00
}
2016-02-01 17:09:51 +03:00
BOOL freerdp_client_print_command_line_help ( int argc , char * * argv )
2012-11-07 03:49:02 +04:00
{
char * str ;
int length ;
COMMAND_LINE_ARGUMENT_A * arg ;
2014-09-16 23:07:38 +04:00
printf ( " \n " ) ;
printf ( " FreeRDP - A Free Remote Desktop Protocol Implementation \n " ) ;
printf ( " See www.freerdp.com for more information \n " ) ;
printf ( " \n " ) ;
printf ( " Usage: %s [file] [options] [/v:<server>[:port]] \n " , argv [ 0 ] ) ;
printf ( " \n " ) ;
printf ( " Syntax: \n " ) ;
printf ( " /flag (enables flag) \n " ) ;
printf ( " /option:<value> (specifies option with value) \n " ) ;
printf ( " +toggle -toggle (enables or disables toggle, where '/' is a synonym of '+') \n " ) ;
printf ( " \n " ) ;
2012-11-07 03:49:02 +04:00
arg = args ;
do
{
if ( arg - > Flags & COMMAND_LINE_VALUE_FLAG )
{
2014-09-16 23:07:38 +04:00
printf ( " %s " , " / " ) ;
printf ( " %-20s " , arg - > Name ) ;
printf ( " \t %s \n " , arg - > Text ) ;
2012-11-07 03:49:02 +04:00
}
2016-08-04 17:13:37 +03:00
else if ( ( arg - > Flags & COMMAND_LINE_VALUE_REQUIRED )
| | ( arg - > Flags & COMMAND_LINE_VALUE_OPTIONAL ) )
2012-11-07 03:49:02 +04:00
{
2014-09-16 23:07:38 +04:00
printf ( " %s " , " / " ) ;
2012-11-07 03:49:02 +04:00
if ( arg - > Format )
{
2014-09-12 19:13:01 +04:00
length = ( int ) ( strlen ( arg - > Name ) + strlen ( arg - > Format ) + 2 ) ;
2015-03-23 18:07:40 +03:00
str = ( char * ) calloc ( length + 1UL , sizeof ( char ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! str )
2016-02-01 17:09:51 +03:00
return FALSE ;
2016-08-04 17:13:37 +03:00
2012-11-07 03:49:02 +04:00
sprintf_s ( str , length + 1 , " %s:%s " , arg - > Name , arg - > Format ) ;
2014-09-16 23:07:38 +04:00
printf ( " %-20s " , str ) ;
2012-11-07 03:49:02 +04:00
free ( str ) ;
}
else
{
2014-09-16 23:07:38 +04:00
printf ( " %-20s " , arg - > Name ) ;
2012-11-07 03:49:02 +04:00
}
2014-09-16 23:07:38 +04:00
printf ( " \t %s \n " , arg - > Text ) ;
2012-11-07 03:49:02 +04:00
}
else if ( arg - > Flags & COMMAND_LINE_VALUE_BOOL )
{
2014-02-10 10:06:11 +04:00
length = ( int ) strlen ( arg - > Name ) + 32 ;
2015-03-23 18:07:40 +03:00
str = ( char * ) calloc ( length + 1UL , sizeof ( char ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! str )
2016-02-01 17:09:51 +03:00
return FALSE ;
2014-09-16 23:07:38 +04:00
2016-08-04 17:13:37 +03:00
sprintf_s ( str , length + 1 , " %s (default:%s) " , arg - > Name ,
arg - > Default ? " on " : " off " ) ;
2014-09-16 23:07:38 +04:00
printf ( " %s " , arg - > Default ? " - " : " + " ) ;
printf ( " %-20s " , str ) ;
2012-11-07 04:04:00 +04:00
free ( str ) ;
2014-09-16 23:07:38 +04:00
printf ( " \t %s \n " , arg - > Text ) ;
2012-11-07 03:49:02 +04:00
}
}
while ( ( arg = CommandLineFindNextArgumentA ( arg ) ) ! = NULL ) ;
2014-09-16 23:07:38 +04:00
printf ( " \n " ) ;
printf ( " Examples: \n " ) ;
printf ( " xfreerdp connection.rdp /p:Pwd123! /f \n " ) ;
printf ( " xfreerdp /u:CONTOSO \\ JohnDoe /p:Pwd123! /v:rdp.contoso.com \n " ) ;
printf ( " xfreerdp /u:JohnDoe /p:Pwd123! /w:1366 /h:768 /v:192.168.1.100:4489 \n " ) ;
printf ( " xfreerdp /u:JohnDoe /p:Pwd123! /vmconnect:C824F53E-95D2-46C6-9A18-23A5BB403532 /v:192.168.1.100 \n " ) ;
printf ( " \n " ) ;
printf ( " Clipboard Redirection: +clipboard \n " ) ;
printf ( " \n " ) ;
printf ( " Drive Redirection: /drive:home,/home/user \n " ) ;
printf ( " Smartcard Redirection: /smartcard:<device> \n " ) ;
2014-09-16 14:08:33 +04:00
printf ( " Serial Port Redirection: /serial:<name>,<device>,[SerCx2|SerCx|Serial],[permissive] \n " ) ;
printf ( " Serial Port Redirection: /serial:COM1,/dev/ttyS0 \n " ) ;
2014-09-16 23:07:38 +04:00
printf ( " Parallel Port Redirection: /parallel:<device> \n " ) ;
printf ( " Printer Redirection: /printer:<device>,<driver> \n " ) ;
printf ( " \n " ) ;
2015-03-17 05:10:58 +03:00
printf ( " Audio Output Redirection: /sound:sys:oss,dev:1,format:1 \n " ) ;
2014-09-16 23:07:38 +04:00
printf ( " Audio Output Redirection: /sound:sys:alsa \n " ) ;
2015-03-17 05:10:58 +03:00
printf ( " Audio Input Redirection: /microphone:sys:oss,dev:1,format:1 \n " ) ;
2014-09-16 23:07:38 +04:00
printf ( " Audio Input Redirection: /microphone:sys:alsa \n " ) ;
printf ( " \n " ) ;
2015-03-17 05:10:58 +03:00
printf ( " Multimedia Redirection: /multimedia:sys:oss,dev:/dev/dsp1,decoder:ffmpeg \n " ) ;
2014-09-16 23:07:38 +04:00
printf ( " Multimedia Redirection: /multimedia:sys:alsa \n " ) ;
printf ( " USB Device Redirection: /usb:id,dev:054c:0268 \n " ) ;
printf ( " \n " ) ;
2012-11-22 18:36:09 +04:00
2014-03-22 04:24:43 +04:00
printf ( " For Gateways, the https_proxy environment variable is respected: \n " ) ;
2014-03-22 18:58:16 +04:00
# ifdef _WIN32
printf ( " set HTTPS_PROXY=http://proxy.contoso.com:3128/ \n " ) ;
# else
2014-03-22 04:24:43 +04:00
printf ( " export https_proxy=http://proxy.contoso.com:3128/ \n " ) ;
2014-03-22 18:58:16 +04:00
# endif
2014-03-22 04:24:43 +04:00
printf ( " xfreerdp /g:rdp.contoso.com ... \n " ) ;
printf ( " \n " ) ;
2014-09-16 23:07:38 +04:00
printf ( " More documentation is coming, in the meantime consult source files \n " ) ;
printf ( " \n " ) ;
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-07 07:08:09 +04:00
}
2016-08-04 17:13:37 +03:00
static int freerdp_client_command_line_pre_filter ( void * context , int index ,
int argc , LPCSTR * argv )
2012-11-07 07:08:09 +04:00
{
if ( index = = 1 )
{
int length ;
rdpSettings * settings ;
2014-02-10 10:06:11 +04:00
length = ( int ) strlen ( argv [ index ] ) ;
2012-11-07 07:08:09 +04:00
if ( length > 4 )
{
2012-12-05 21:12:18 +04:00
if ( _stricmp ( & ( argv [ index ] ) [ length - 4 ] , " .rdp " ) = = 0 )
2012-11-07 07:08:09 +04:00
{
settings = ( rdpSettings * ) context ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > ConnectionFile = _strdup ( argv [ index ] ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-12-05 23:00:49 +04:00
2016-08-04 17:13:37 +03:00
if ( freerdp_client_settings_parse_connection_file ( settings ,
settings - > ConnectionFile ) )
2016-03-16 15:15:39 +03:00
return COMMAND_LINE_ERROR_UNEXPECTED_VALUE ;
2012-12-05 23:00:49 +04:00
return 1 ;
2012-11-07 07:08:09 +04:00
}
}
2014-06-29 02:33:46 +04:00
if ( length > 13 )
{
if ( _stricmp ( & ( argv [ index ] ) [ length - 13 ] , " .msrcIncident " ) = = 0 )
{
settings = ( rdpSettings * ) context ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > AssistanceFile = _strdup ( argv [ index ] ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2014-06-29 02:33:46 +04:00
2016-08-04 17:13:37 +03:00
if ( freerdp_client_settings_parse_assistance_file ( settings ,
settings - > AssistanceFile ) < 0 )
2016-03-16 15:15:39 +03:00
return COMMAND_LINE_ERROR_UNEXPECTED_VALUE ;
2014-06-29 02:33:46 +04:00
return 1 ;
}
}
2012-11-07 07:08:09 +04:00
}
2012-12-05 23:00:49 +04:00
return 0 ;
2012-11-07 03:49:02 +04:00
}
2016-08-04 17:13:37 +03:00
BOOL freerdp_client_add_device_channel ( rdpSettings * settings , int count ,
char * * params )
2012-11-09 04:01:52 +04:00
{
if ( strcmp ( params [ 0 ] , " drive " ) = = 0 )
{
RDPDR_DRIVE * drive ;
if ( count < 3 )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
settings - > DeviceRedirection = TRUE ;
2014-03-26 19:05:12 +04:00
drive = ( RDPDR_DRIVE * ) calloc ( 1 , sizeof ( RDPDR_DRIVE ) ) ;
if ( ! drive )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
drive - > Type = RDPDR_DTYP_FILESYSTEM ;
2014-03-26 19:05:12 +04:00
if ( count > 1 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( drive - > Name = _strdup ( params [ 1 ] ) ) )
{
free ( drive ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2014-03-26 19:05:12 +04:00
if ( count > 2 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( drive - > Path = _strdup ( params [ 2 ] ) ) )
{
free ( drive - > Name ) ;
free ( drive ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2012-11-09 04:01:52 +04:00
2015-06-18 14:00:10 +03:00
if ( ! freerdp_device_collection_add ( settings , ( RDPDR_DEVICE * ) drive ) )
{
free ( drive - > Path ) ;
free ( drive - > Name ) ;
free ( drive ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
2012-11-09 04:01:52 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-09 04:01:52 +04:00
}
else if ( strcmp ( params [ 0 ] , " printer " ) = = 0 )
{
RDPDR_PRINTER * printer ;
2013-05-20 23:50:22 +04:00
if ( count < 1 )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
settings - > RedirectPrinters = TRUE ;
settings - > DeviceRedirection = TRUE ;
2014-03-26 19:05:12 +04:00
2014-04-28 05:29:44 +04:00
if ( count > 1 )
{
printer = ( RDPDR_PRINTER * ) calloc ( 1 , sizeof ( RDPDR_PRINTER ) ) ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
if ( ! printer )
2016-02-01 17:09:51 +03:00
return FALSE ;
2013-05-20 23:50:22 +04:00
2014-04-28 05:29:44 +04:00
printer - > Type = RDPDR_DTYP_PRINT ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
if ( count > 1 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( printer - > Name = _strdup ( params [ 1 ] ) ) )
{
free ( printer ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
if ( count > 2 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( printer - > DriverName = _strdup ( params [ 2 ] ) ) )
{
free ( printer - > Name ) ;
free ( printer ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
if ( ! freerdp_device_collection_add ( settings , ( RDPDR_DEVICE * ) printer ) )
{
free ( printer - > DriverName ) ;
free ( printer - > Name ) ;
free ( printer ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
2014-04-28 05:29:44 +04:00
}
2012-11-09 04:01:52 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-09 04:01:52 +04:00
}
else if ( strcmp ( params [ 0 ] , " smartcard " ) = = 0 )
{
RDPDR_SMARTCARD * smartcard ;
2013-09-12 14:18:35 +04:00
if ( count < 1 )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
settings - > RedirectSmartCards = TRUE ;
settings - > DeviceRedirection = TRUE ;
2014-03-26 19:05:12 +04:00
2014-04-28 05:29:44 +04:00
if ( count > 1 )
{
smartcard = ( RDPDR_SMARTCARD * ) calloc ( 1 , sizeof ( RDPDR_SMARTCARD ) ) ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
if ( ! smartcard )
2016-02-01 17:09:51 +03:00
return FALSE ;
2014-03-26 19:05:12 +04:00
2014-04-28 05:29:44 +04:00
smartcard - > Type = RDPDR_DTYP_SMARTCARD ;
2014-03-26 19:05:12 +04:00
2014-04-28 05:29:44 +04:00
if ( count > 1 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( smartcard - > Name = _strdup ( params [ 1 ] ) ) )
{
free ( smartcard ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
if ( count > 2 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( smartcard - > Path = _strdup ( params [ 2 ] ) ) )
{
free ( smartcard - > Name ) ;
free ( smartcard ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! freerdp_device_collection_add ( settings , ( RDPDR_DEVICE * ) smartcard ) )
{
free ( smartcard - > Path ) ;
free ( smartcard - > Name ) ;
free ( smartcard ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
2014-04-28 05:29:44 +04:00
}
2012-11-09 04:01:52 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-09 04:01:52 +04:00
}
else if ( strcmp ( params [ 0 ] , " serial " ) = = 0 )
{
RDPDR_SERIAL * serial ;
2013-09-12 14:18:35 +04:00
if ( count < 1 )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
settings - > RedirectSerialPorts = TRUE ;
settings - > DeviceRedirection = TRUE ;
2014-03-26 19:05:12 +04:00
serial = ( RDPDR_SERIAL * ) calloc ( 1 , sizeof ( RDPDR_SERIAL ) ) ;
if ( ! serial )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
serial - > Type = RDPDR_DTYP_SERIAL ;
2014-03-26 19:05:12 +04:00
2013-09-12 14:18:35 +04:00
if ( count > 1 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( serial - > Name = _strdup ( params [ 1 ] ) ) )
{
free ( serial ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2014-03-26 19:05:12 +04:00
2013-09-12 14:18:35 +04:00
if ( count > 2 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( serial - > Path = _strdup ( params [ 2 ] ) ) )
{
free ( serial - > Name ) ;
free ( serial ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2012-11-09 04:01:52 +04:00
2014-06-18 20:20:21 +04:00
if ( count > 3 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( serial - > Driver = _strdup ( params [ 3 ] ) ) )
{
free ( serial - > Path ) ;
free ( serial - > Name ) ;
free ( serial ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2014-06-18 20:20:21 +04:00
2014-09-16 14:08:33 +04:00
if ( count > 4 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( serial - > Permissive = _strdup ( params [ 4 ] ) ) )
{
free ( serial - > Driver ) ;
free ( serial - > Path ) ;
free ( serial - > Name ) ;
free ( serial ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2014-09-16 14:08:33 +04:00
2015-06-18 14:00:10 +03:00
if ( ! freerdp_device_collection_add ( settings , ( RDPDR_DEVICE * ) serial ) )
{
free ( serial - > Permissive ) ;
free ( serial - > Driver ) ;
free ( serial - > Path ) ;
free ( serial - > Name ) ;
free ( serial ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
2012-11-09 04:01:52 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-09 04:01:52 +04:00
}
else if ( strcmp ( params [ 0 ] , " parallel " ) = = 0 )
{
RDPDR_PARALLEL * parallel ;
2013-09-12 14:18:35 +04:00
if ( count < 1 )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
2014-04-28 05:29:44 +04:00
settings - > RedirectParallelPorts = TRUE ;
settings - > DeviceRedirection = TRUE ;
2014-03-26 19:05:12 +04:00
parallel = ( RDPDR_PARALLEL * ) calloc ( 1 , sizeof ( RDPDR_PARALLEL ) ) ;
if ( ! parallel )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
parallel - > Type = RDPDR_DTYP_PARALLEL ;
2014-03-26 19:05:12 +04:00
2013-09-12 14:18:35 +04:00
if ( count > 1 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( parallel - > Name = _strdup ( params [ 1 ] ) ) )
{
free ( parallel ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2014-03-26 19:05:12 +04:00
2014-04-08 21:23:02 +04:00
if ( count > 2 )
2015-06-18 14:00:10 +03:00
{
if ( ! ( parallel - > Path = _strdup ( params [ 2 ] ) ) )
{
free ( parallel - > Name ) ;
free ( parallel ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
}
2012-11-09 04:01:52 +04:00
2015-06-18 14:00:10 +03:00
if ( ! freerdp_device_collection_add ( settings , ( RDPDR_DEVICE * ) parallel ) )
{
free ( parallel - > Path ) ;
free ( parallel - > Name ) ;
free ( parallel ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 14:00:10 +03:00
}
2012-11-09 04:01:52 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-09 04:01:52 +04:00
}
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
}
2016-08-04 17:13:37 +03:00
BOOL freerdp_client_add_static_channel ( rdpSettings * settings , int count ,
char * * params )
2012-11-18 09:08:03 +04:00
{
int index ;
2012-11-19 22:26:56 +04:00
ADDIN_ARGV * args ;
2015-06-18 14:00:10 +03:00
args = ( ADDIN_ARGV * ) calloc ( 1 , sizeof ( ADDIN_ARGV ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
if ( ! args )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-18 09:08:03 +04:00
2012-11-19 22:26:56 +04:00
args - > argc = count ;
2015-03-23 18:07:40 +03:00
args - > argv = ( char * * ) calloc ( args - > argc , sizeof ( char * ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
if ( ! args - > argv )
goto error_argv ;
2012-11-18 09:08:03 +04:00
2012-11-19 22:26:56 +04:00
for ( index = 0 ; index < args - > argc ; index + + )
2015-06-16 16:42:07 +03:00
{
2012-11-19 22:26:56 +04:00
args - > argv [ index ] = _strdup ( params [ index ] ) ;
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
if ( ! args - > argv [ index ] )
2015-06-18 14:00:10 +03:00
{
for ( - - index ; index > = 0 ; - - index )
free ( args - > argv [ index ] ) ;
goto error_argv_strdup ;
}
2015-06-16 16:42:07 +03:00
}
2012-11-18 09:08:03 +04:00
2015-06-16 16:42:07 +03:00
if ( ! freerdp_static_channel_collection_add ( settings , args ) )
goto error_argv_index ;
2012-11-18 09:08:03 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2015-06-16 16:42:07 +03:00
error_argv_index :
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
for ( index = 0 ; index < args - > argc ; index + + )
free ( args - > argv [ index ] ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
error_argv_strdup :
2015-06-16 16:42:07 +03:00
free ( args - > argv ) ;
error_argv :
free ( args ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-18 09:08:03 +04:00
}
2016-08-04 17:13:37 +03:00
BOOL freerdp_client_add_dynamic_channel ( rdpSettings * settings , int count ,
char * * params )
2012-11-18 09:08:03 +04:00
{
int index ;
2012-11-19 22:26:56 +04:00
ADDIN_ARGV * args ;
args = ( ADDIN_ARGV * ) malloc ( sizeof ( ADDIN_ARGV ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
if ( ! args )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-18 09:08:03 +04:00
2012-11-19 22:26:56 +04:00
args - > argc = count ;
2015-03-23 18:07:40 +03:00
args - > argv = ( char * * ) calloc ( args - > argc , sizeof ( char * ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
if ( ! args - > argv )
goto error_argv ;
2012-11-18 09:08:03 +04:00
2012-11-19 22:26:56 +04:00
for ( index = 0 ; index < args - > argc ; index + + )
2015-06-16 16:42:07 +03:00
{
2012-11-19 22:26:56 +04:00
args - > argv [ index ] = _strdup ( params [ index ] ) ;
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
if ( ! args - > argv [ index ] )
2015-06-18 14:00:10 +03:00
{
for ( - - index ; index > = 0 ; - - index )
free ( args - > argv [ index ] ) ;
goto error_argv_strdup ;
}
2015-06-16 16:42:07 +03:00
}
2012-11-18 09:08:03 +04:00
2015-06-16 16:42:07 +03:00
if ( ! freerdp_dynamic_channel_collection_add ( settings , args ) )
goto error_argv_index ;
2012-11-18 09:08:03 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2015-06-16 16:42:07 +03:00
error_argv_index :
2016-08-04 17:13:37 +03:00
2015-06-16 16:42:07 +03:00
for ( index = 0 ; index < args - > argc ; index + + )
free ( args - > argv [ index ] ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
error_argv_strdup :
2015-06-16 16:42:07 +03:00
free ( args - > argv ) ;
error_argv :
free ( args ) ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-18 09:08:03 +04:00
}
2016-08-04 17:13:37 +03:00
static char * * freerdp_command_line_parse_comma_separated_values ( char * list ,
int * count )
2012-11-18 09:08:03 +04:00
{
char * * p ;
char * str ;
int nArgs ;
int index ;
int nCommas ;
2015-01-15 15:57:28 +03:00
nCommas = 0 ;
2013-10-02 11:48:25 +04:00
assert ( NULL ! = count ) ;
* count = 0 ;
2016-08-04 17:13:37 +03:00
2013-09-12 16:55:25 +04:00
if ( ! list )
return NULL ;
2012-11-18 09:08:03 +04:00
for ( index = 0 ; list [ index ] ; index + + )
nCommas + = ( list [ index ] = = ' , ' ) ? 1 : 0 ;
nArgs = nCommas + 1 ;
2015-03-23 18:07:40 +03:00
p = ( char * * ) calloc ( ( nArgs + 1UL ) , sizeof ( char * ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! p )
return NULL ;
2012-11-19 02:32:18 +04:00
str = ( char * ) list ;
2012-11-18 09:08:03 +04:00
p [ 0 ] = str ;
for ( index = 1 ; index < nArgs ; index + + )
{
p [ index ] = strchr ( p [ index - 1 ] , ' , ' ) ;
* p [ index ] = ' \0 ' ;
p [ index ] + + ;
}
p [ index ] = str + strlen ( str ) ;
* count = nArgs ;
return p ;
}
2016-08-04 17:13:37 +03:00
static char * * freerdp_command_line_parse_comma_separated_values_offset (
char * list , int * count )
2013-02-18 16:32:15 +04:00
{
char * * p ;
2015-03-11 07:26:04 +03:00
char * * t ;
2013-02-18 16:32:15 +04:00
p = freerdp_command_line_parse_comma_separated_values ( list , count ) ;
2015-03-11 07:26:04 +03:00
t = ( char * * ) realloc ( p , sizeof ( char * ) * ( * count + 1 ) ) ;
2016-08-04 17:13:37 +03:00
2015-03-11 07:26:04 +03:00
if ( ! t )
return NULL ;
2016-08-04 17:13:37 +03:00
2015-03-11 07:26:04 +03:00
p = t ;
2016-08-04 17:13:37 +03:00
2016-10-07 15:06:46 +03:00
if ( count )
2016-08-04 17:13:37 +03:00
MoveMemory ( & p [ 1 ] , p , sizeof ( char * ) * * count ) ;
2013-02-18 16:32:15 +04:00
2016-08-04 17:13:37 +03:00
( * count ) + + ;
2013-02-18 16:32:15 +04:00
return p ;
}
2016-08-04 17:13:37 +03:00
static int freerdp_client_command_line_post_filter ( void * context ,
COMMAND_LINE_ARGUMENT_A * arg )
2012-11-07 08:07:03 +04:00
{
2013-02-19 04:29:50 +04:00
rdpSettings * settings = ( rdpSettings * ) context ;
2016-02-01 17:09:51 +03:00
BOOL status = FALSE ;
2012-11-07 08:07:03 +04:00
CommandLineSwitchStart ( arg )
2016-08-04 17:13:37 +03:00
CommandLineSwitchCase ( arg , " a " )
2012-11-07 08:07:03 +04:00
{
2012-11-18 09:08:03 +04:00
char * * p ;
int count ;
p = freerdp_command_line_parse_comma_separated_values ( arg - > Value , & count ) ;
2012-11-09 04:01:52 +04:00
2016-02-01 17:09:51 +03:00
if ( ( status = freerdp_client_add_device_channel ( settings , count , p ) ) )
2012-11-09 04:01:52 +04:00
{
2012-11-18 09:08:03 +04:00
settings - > DeviceRedirection = TRUE ;
}
2012-11-09 04:01:52 +04:00
2012-11-18 09:08:03 +04:00
free ( p ) ;
}
CommandLineSwitchCase ( arg , " vc " )
{
char * * p ;
int count ;
p = freerdp_command_line_parse_comma_separated_values ( arg - > Value , & count ) ;
2015-06-16 16:42:07 +03:00
status = freerdp_client_add_static_channel ( settings , count , p ) ;
2012-11-18 09:08:03 +04:00
free ( p ) ;
}
CommandLineSwitchCase ( arg , " dvc " )
{
char * * p ;
int count ;
p = freerdp_command_line_parse_comma_separated_values ( arg - > Value , & count ) ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_dynamic_channel ( settings , count , p ) ;
2012-11-18 09:08:03 +04:00
free ( p ) ;
2012-11-07 08:07:03 +04:00
}
2013-02-18 16:49:52 +04:00
CommandLineSwitchCase ( arg , " drive " )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " drive " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_device_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
CommandLineSwitchCase ( arg , " serial " )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " serial " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_device_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
CommandLineSwitchCase ( arg , " parallel " )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " parallel " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_device_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
CommandLineSwitchCase ( arg , " smartcard " )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " smartcard " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_device_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
CommandLineSwitchCase ( arg , " printer " )
{
2013-05-20 23:50:22 +04:00
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-05-20 23:50:22 +04:00
p [ 0 ] = " printer " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_device_channel ( settings , count , p ) ;
2013-05-20 23:50:22 +04:00
free ( p ) ;
}
else
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " printer " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_device_channel ( settings , count , p ) ;
2013-05-20 23:50:22 +04:00
}
2013-02-18 16:49:52 +04:00
}
CommandLineSwitchCase ( arg , " usb " )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " urbdrc " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_dynamic_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
2013-05-09 06:14:16 +04:00
CommandLineSwitchCase ( arg , " multitouch " )
{
settings - > MultiTouchInput = TRUE ;
}
2013-06-20 02:43:24 +04:00
CommandLineSwitchCase ( arg , " gestures " )
{
settings - > MultiTouchGestures = TRUE ;
}
2013-03-13 03:23:59 +04:00
CommandLineSwitchCase ( arg , " echo " )
{
2014-09-26 01:31:05 +04:00
settings - > SupportEchoChannel = TRUE ;
2013-03-13 03:23:59 +04:00
}
2013-07-10 00:10:59 +04:00
CommandLineSwitchCase ( arg , " disp " )
{
2014-09-26 01:31:05 +04:00
settings - > SupportDisplayControl = TRUE ;
2013-07-10 00:10:59 +04:00
}
2013-02-18 16:49:52 +04:00
CommandLineSwitchCase ( arg , " sound " )
{
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " rdpsnd " ;
2015-06-16 16:42:07 +03:00
status = freerdp_client_add_static_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
else
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " rdpsnd " ;
2015-06-16 16:42:07 +03:00
status = freerdp_client_add_static_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
}
}
CommandLineSwitchCase ( arg , " microphone " )
{
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " audin " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_dynamic_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
else
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " audin " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_dynamic_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
}
}
CommandLineSwitchCase ( arg , " multimedia " )
{
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
char * * p ;
int count ;
2016-08-04 17:13:37 +03:00
p = freerdp_command_line_parse_comma_separated_values_offset ( arg - > Value ,
& count ) ;
2013-02-18 16:49:52 +04:00
p [ 0 ] = " tsmf " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_dynamic_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
free ( p ) ;
}
else
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " tsmf " ;
2016-02-01 17:09:51 +03:00
status = freerdp_client_add_dynamic_channel ( settings , count , p ) ;
2013-02-18 16:49:52 +04:00
}
}
2014-01-30 07:53:32 +04:00
CommandLineSwitchCase ( arg , " heartbeat " )
{
settings - > SupportHeartbeatPdu = TRUE ;
}
CommandLineSwitchCase ( arg , " multitransport " )
{
settings - > SupportMultitransport = TRUE ;
2016-08-04 17:13:37 +03:00
settings - > MultitransportFlags = ( TRANSPORT_TYPE_UDP_FECR |
TRANSPORT_TYPE_UDP_FECL | TRANSPORT_TYPE_UDP_PREFERRED ) ;
2014-01-30 07:53:32 +04:00
}
2012-11-07 08:07:03 +04:00
CommandLineSwitchEnd ( arg )
2016-02-01 17:09:51 +03:00
return status ? 1 : 0 ;
2012-11-07 08:07:03 +04:00
}
2016-02-01 17:09:51 +03:00
BOOL freerdp_parse_username ( char * username , char * * user , char * * domain )
2012-11-26 23:31:31 +04:00
{
char * p ;
2015-06-15 10:47:16 +03:00
int length = 0 ;
2012-11-26 23:31:31 +04:00
p = strchr ( username , ' \\ ' ) ;
2015-06-18 13:24:22 +03:00
* user = NULL ;
* domain = NULL ;
2012-11-26 23:31:31 +04:00
if ( p )
{
2016-08-04 17:13:37 +03:00
length = ( int ) ( p - username ) ;
2015-06-15 10:47:16 +03:00
* user = _strdup ( & p [ 1 ] ) ;
2016-08-04 17:13:37 +03:00
2015-06-15 10:47:16 +03:00
if ( ! * user )
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-15 10:47:16 +03:00
2015-03-23 18:07:40 +03:00
* domain = ( char * ) calloc ( length + 1UL , sizeof ( char ) ) ;
2016-08-04 17:13:37 +03:00
2015-06-15 10:47:16 +03:00
if ( ! * domain )
{
2016-08-04 17:13:37 +03:00
free ( * user ) ;
2015-06-15 10:47:16 +03:00
* user = NULL ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-15 10:47:16 +03:00
}
2012-11-26 23:31:31 +04:00
strncpy ( * domain , username , length ) ;
( * domain ) [ length ] = ' \0 ' ;
2015-06-15 10:47:16 +03:00
}
2015-06-18 13:24:22 +03:00
else if ( username )
2012-11-26 23:31:31 +04:00
{
2014-08-16 01:45:06 +04:00
/* Do not break up the name for '@'; both credSSP and the
* ClientInfo PDU expect ' user @ corp . net ' to be transmitted
2015-06-18 13:24:22 +03:00
* as username ' user @ corp . net ' , domain empty ( not NULL ! ) .
2014-08-16 01:45:06 +04:00
*/
* user = _strdup ( username ) ;
2016-08-04 17:13:37 +03:00
2015-06-15 10:47:16 +03:00
if ( ! * user )
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-15 10:47:16 +03:00
2015-06-18 17:07:09 +03:00
* domain = _strdup ( " \0 " ) ;
2015-06-18 13:24:22 +03:00
if ( ! * domain )
{
free ( * user ) ;
* user = NULL ;
2016-02-01 17:09:51 +03:00
return FALSE ;
2015-06-18 13:24:22 +03:00
}
2012-11-26 23:31:31 +04:00
}
2015-06-18 13:24:22 +03:00
else
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-26 23:31:31 +04:00
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-26 23:31:31 +04:00
}
2016-02-01 17:09:51 +03:00
BOOL freerdp_parse_hostname ( char * hostname , char * * host , int * port )
2014-06-12 18:49:29 +04:00
{
char * p ;
int length ;
p = strrchr ( hostname , ' : ' ) ;
if ( p )
{
length = ( p - hostname ) ;
2015-03-23 18:07:40 +03:00
* host = ( char * ) calloc ( length + 1UL , sizeof ( char ) ) ;
2014-06-12 18:49:29 +04:00
if ( ! ( * host ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
2014-06-12 18:49:29 +04:00
CopyMemory ( * host , hostname , length ) ;
( * host ) [ length ] = ' \0 ' ;
* port = atoi ( p + 1 ) ;
}
else
{
* host = _strdup ( hostname ) ;
if ( ! ( * host ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
2014-06-12 18:49:29 +04:00
* port = - 1 ;
}
2016-02-01 17:09:51 +03:00
return TRUE ;
2014-06-12 18:49:29 +04:00
}
2016-02-01 17:09:51 +03:00
BOOL freerdp_set_connection_type ( rdpSettings * settings , int type )
2012-11-26 23:31:31 +04:00
{
2013-04-23 00:08:47 +04:00
settings - > ConnectionType = type ;
2014-09-25 01:23:12 +04:00
2012-11-26 23:31:31 +04:00
if ( type = = CONNECTION_TYPE_MODEM )
{
settings - > DisableWallpaper = TRUE ;
settings - > AllowFontSmoothing = FALSE ;
settings - > AllowDesktopComposition = FALSE ;
settings - > DisableFullWindowDrag = TRUE ;
settings - > DisableMenuAnims = TRUE ;
settings - > DisableThemes = TRUE ;
}
else if ( type = = CONNECTION_TYPE_BROADBAND_LOW )
{
settings - > DisableWallpaper = TRUE ;
settings - > AllowFontSmoothing = FALSE ;
settings - > AllowDesktopComposition = FALSE ;
settings - > DisableFullWindowDrag = TRUE ;
settings - > DisableMenuAnims = TRUE ;
settings - > DisableThemes = FALSE ;
}
else if ( type = = CONNECTION_TYPE_SATELLITE )
{
settings - > DisableWallpaper = TRUE ;
settings - > AllowFontSmoothing = FALSE ;
settings - > AllowDesktopComposition = TRUE ;
settings - > DisableFullWindowDrag = TRUE ;
settings - > DisableMenuAnims = TRUE ;
settings - > DisableThemes = FALSE ;
}
else if ( type = = CONNECTION_TYPE_BROADBAND_HIGH )
{
settings - > DisableWallpaper = TRUE ;
settings - > AllowFontSmoothing = FALSE ;
settings - > AllowDesktopComposition = TRUE ;
settings - > DisableFullWindowDrag = TRUE ;
settings - > DisableMenuAnims = TRUE ;
settings - > DisableThemes = FALSE ;
}
else if ( type = = CONNECTION_TYPE_WAN )
{
settings - > DisableWallpaper = FALSE ;
settings - > AllowFontSmoothing = TRUE ;
settings - > AllowDesktopComposition = TRUE ;
settings - > DisableFullWindowDrag = FALSE ;
settings - > DisableMenuAnims = FALSE ;
settings - > DisableThemes = FALSE ;
}
else if ( type = = CONNECTION_TYPE_LAN )
{
settings - > DisableWallpaper = FALSE ;
settings - > AllowFontSmoothing = TRUE ;
settings - > AllowDesktopComposition = TRUE ;
settings - > DisableFullWindowDrag = FALSE ;
settings - > DisableMenuAnims = FALSE ;
settings - > DisableThemes = FALSE ;
}
else if ( type = = CONNECTION_TYPE_AUTODETECT )
{
settings - > DisableWallpaper = FALSE ;
settings - > AllowFontSmoothing = TRUE ;
settings - > AllowDesktopComposition = TRUE ;
settings - > DisableFullWindowDrag = FALSE ;
settings - > DisableMenuAnims = FALSE ;
settings - > DisableThemes = FALSE ;
settings - > NetworkAutoDetect = TRUE ;
}
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-26 23:31:31 +04:00
}
2012-11-27 01:49:12 +04:00
int freerdp_map_keyboard_layout_name_to_id ( char * name )
{
int i ;
int id = 0 ;
RDP_KEYBOARD_LAYOUT * layouts ;
layouts = freerdp_keyboard_get_layouts ( RDP_KEYBOARD_LAYOUT_TYPE_STANDARD ) ;
2016-08-04 17:13:37 +03:00
2015-06-17 23:08:02 +03:00
if ( ! layouts )
return - 1 ;
2015-05-06 23:32:45 +03:00
2012-11-27 01:49:12 +04:00
for ( i = 0 ; layouts [ i ] . code ; i + + )
{
if ( _stricmp ( layouts [ i ] . name , name ) = = 0 )
id = layouts [ i ] . code ;
}
2015-05-06 23:32:45 +03:00
2012-11-27 01:49:12 +04:00
free ( layouts ) ;
if ( id )
return id ;
layouts = freerdp_keyboard_get_layouts ( RDP_KEYBOARD_LAYOUT_TYPE_VARIANT ) ;
2016-08-04 17:13:37 +03:00
2015-06-17 23:08:02 +03:00
if ( ! layouts )
return - 1 ;
2015-05-06 23:32:45 +03:00
2012-11-27 01:49:12 +04:00
for ( i = 0 ; layouts [ i ] . code ; i + + )
{
if ( _stricmp ( layouts [ i ] . name , name ) = = 0 )
id = layouts [ i ] . code ;
}
2015-05-06 23:32:45 +03:00
2012-11-27 01:49:12 +04:00
free ( layouts ) ;
if ( id )
return id ;
layouts = freerdp_keyboard_get_layouts ( RDP_KEYBOARD_LAYOUT_TYPE_IME ) ;
2016-08-04 17:13:37 +03:00
2015-06-17 23:08:02 +03:00
if ( ! layouts )
return - 1 ;
2015-05-06 23:32:45 +03:00
2012-11-27 01:49:12 +04:00
for ( i = 0 ; layouts [ i ] . code ; i + + )
{
if ( _stricmp ( layouts [ i ] . name , name ) = = 0 )
id = layouts [ i ] . code ;
}
2015-05-06 23:32:45 +03:00
2012-11-27 01:49:12 +04:00
free ( layouts ) ;
if ( id )
return id ;
return 0 ;
}
2016-08-04 17:13:37 +03:00
static int freerdp_detect_command_line_pre_filter ( void * context , int index ,
int argc , LPCSTR * argv )
2013-09-18 01:03:35 +04:00
{
int length ;
if ( index = = 1 )
{
2014-02-10 10:06:11 +04:00
length = ( int ) strlen ( argv [ index ] ) ;
2013-09-18 01:03:35 +04:00
if ( length > 4 )
{
if ( _stricmp ( & ( argv [ index ] ) [ length - 4 ] , " .rdp " ) = = 0 )
{
return 1 ;
}
}
2015-05-06 23:32:45 +03:00
if ( length > 13 )
{
if ( _stricmp ( & ( argv [ index ] ) [ length - 13 ] , " .msrcIncident " ) = = 0 )
{
return 1 ;
}
}
2013-09-18 01:03:35 +04:00
}
return 0 ;
}
2015-03-16 12:25:31 +03:00
int freerdp_detect_windows_style_command_line_syntax ( int argc , char * * argv ,
2016-08-04 17:13:37 +03:00
int * count , BOOL ignoreUnknown )
2012-12-05 21:12:18 +04:00
{
int status ;
DWORD flags ;
int detect_status ;
COMMAND_LINE_ARGUMENT_A * arg ;
flags = COMMAND_LINE_SEPARATOR_COLON ;
flags | = COMMAND_LINE_SIGIL_SLASH | COMMAND_LINE_SIGIL_PLUS_MINUS ;
2015-05-06 23:32:45 +03:00
2015-03-16 12:25:31 +03:00
if ( ignoreUnknown )
{
flags | = COMMAND_LINE_IGN_UNKNOWN_KEYWORD ;
}
2012-12-05 21:12:18 +04:00
* count = 0 ;
detect_status = 0 ;
CommandLineClearArgumentsA ( args ) ;
2013-09-18 01:03:35 +04:00
status = CommandLineParseArgumentsA ( argc , ( const char * * ) argv , args , flags ,
2016-08-04 17:13:37 +03:00
NULL , freerdp_detect_command_line_pre_filter , NULL ) ;
2013-09-18 01:03:35 +04:00
2013-09-09 18:07:14 +04:00
if ( status < 0 )
return status ;
2012-12-05 21:12:18 +04:00
arg = args ;
do
{
if ( ! ( arg - > Flags & COMMAND_LINE_ARGUMENT_PRESENT ) )
continue ;
( * count ) + + ;
}
while ( ( arg = CommandLineFindNextArgumentA ( arg ) ) ! = NULL ) ;
2013-07-03 18:44:06 +04:00
if ( ( status < = COMMAND_LINE_ERROR ) & & ( status > = COMMAND_LINE_ERROR_LAST ) )
detect_status = - 1 ;
2012-12-05 21:12:18 +04:00
2013-07-03 18:44:06 +04:00
return detect_status ;
2012-12-05 21:12:18 +04:00
}
2015-03-16 12:25:31 +03:00
int freerdp_detect_posix_style_command_line_syntax ( int argc , char * * argv ,
2016-08-04 17:13:37 +03:00
int * count , BOOL ignoreUnknown )
2012-12-05 21:12:18 +04:00
{
int status ;
DWORD flags ;
int detect_status ;
COMMAND_LINE_ARGUMENT_A * arg ;
flags = COMMAND_LINE_SEPARATOR_SPACE ;
flags | = COMMAND_LINE_SIGIL_DASH | COMMAND_LINE_SIGIL_DOUBLE_DASH ;
flags | = COMMAND_LINE_SIGIL_ENABLE_DISABLE ;
2015-05-06 23:32:45 +03:00
2015-03-16 12:25:31 +03:00
if ( ignoreUnknown )
{
flags | = COMMAND_LINE_IGN_UNKNOWN_KEYWORD ;
}
2012-12-05 21:12:18 +04:00
* count = 0 ;
detect_status = 0 ;
CommandLineClearArgumentsA ( args ) ;
2013-09-18 01:03:35 +04:00
status = CommandLineParseArgumentsA ( argc , ( const char * * ) argv , args , flags ,
2016-08-04 17:13:37 +03:00
NULL , freerdp_detect_command_line_pre_filter , NULL ) ;
2013-09-18 01:03:35 +04:00
2013-09-09 18:07:14 +04:00
if ( status < 0 )
return status ;
2012-12-05 21:12:18 +04:00
arg = args ;
do
{
if ( ! ( arg - > Flags & COMMAND_LINE_ARGUMENT_PRESENT ) )
continue ;
( * count ) + + ;
}
while ( ( arg = CommandLineFindNextArgumentA ( arg ) ) ! = NULL ) ;
2013-07-03 18:44:06 +04:00
if ( ( status < = COMMAND_LINE_ERROR ) & & ( status > = COMMAND_LINE_ERROR_LAST ) )
detect_status = - 1 ;
2012-12-05 21:12:18 +04:00
2013-07-03 18:44:06 +04:00
return detect_status ;
2012-12-05 21:12:18 +04:00
}
2015-03-16 12:25:31 +03:00
static BOOL freerdp_client_detect_command_line ( int argc , char * * argv ,
2016-08-04 17:13:37 +03:00
DWORD * flags , BOOL ignoreUnknown )
2012-12-05 21:12:18 +04:00
{
int old_cli_status ;
int old_cli_count ;
int posix_cli_status ;
int posix_cli_count ;
int windows_cli_status ;
int windows_cli_count ;
BOOL compatibility = FALSE ;
2016-08-04 17:13:37 +03:00
windows_cli_status = freerdp_detect_windows_style_command_line_syntax ( argc ,
argv , & windows_cli_count , ignoreUnknown ) ;
posix_cli_status = freerdp_detect_posix_style_command_line_syntax ( argc , argv ,
& posix_cli_count , ignoreUnknown ) ;
old_cli_status = freerdp_detect_old_command_line_syntax ( argc , argv ,
& old_cli_count ) ;
2012-12-05 21:12:18 +04:00
/* Default is POSIX syntax */
* flags = COMMAND_LINE_SEPARATOR_SPACE ;
* flags | = COMMAND_LINE_SIGIL_DASH | COMMAND_LINE_SIGIL_DOUBLE_DASH ;
* flags | = COMMAND_LINE_SIGIL_ENABLE_DISABLE ;
2014-09-17 00:51:01 +04:00
if ( posix_cli_status < = COMMAND_LINE_STATUS_PRINT )
return compatibility ;
2015-01-15 15:57:28 +03:00
/* Check, if this may be windows style syntax... */
2016-08-04 17:13:37 +03:00
if ( ( windows_cli_count & & ( windows_cli_count > = posix_cli_count ) )
| | ( windows_cli_status < = COMMAND_LINE_STATUS_PRINT ) )
2012-12-05 21:12:18 +04:00
{
2015-01-15 18:01:57 +03:00
windows_cli_count = 1 ;
2012-12-05 21:12:18 +04:00
* flags = COMMAND_LINE_SEPARATOR_COLON ;
* flags | = COMMAND_LINE_SIGIL_SLASH | COMMAND_LINE_SIGIL_PLUS_MINUS ;
}
2013-09-09 18:07:14 +04:00
else if ( old_cli_status > = 0 )
2012-12-05 21:12:18 +04:00
{
2013-09-18 01:03:35 +04:00
/* Ignore legacy parsing in case there is an error in the command line. */
2016-08-04 17:13:37 +03:00
if ( ( old_cli_status = = 1 ) | | ( ( old_cli_count > posix_cli_count )
& & ( old_cli_status ! = - 1 ) ) )
2012-12-05 21:12:18 +04:00
{
* flags = COMMAND_LINE_SEPARATOR_SPACE ;
* flags | = COMMAND_LINE_SIGIL_DASH | COMMAND_LINE_SIGIL_DOUBLE_DASH ;
compatibility = TRUE ;
}
}
2016-08-04 17:13:37 +03:00
WLog_DBG ( TAG , " windows: %d/%d posix: %d/%d compat: %d/%d " , windows_cli_status ,
windows_cli_count ,
posix_cli_status , posix_cli_count , old_cli_status , old_cli_count ) ;
2012-12-05 21:12:18 +04:00
return compatibility ;
}
2016-08-04 17:13:37 +03:00
int freerdp_client_settings_command_line_status_print ( rdpSettings * settings ,
int status , int argc , char * * argv )
2012-11-06 07:11:13 +04:00
{
COMMAND_LINE_ARGUMENT_A * arg ;
2013-09-09 18:07:14 +04:00
if ( status = = COMMAND_LINE_STATUS_PRINT_VERSION )
2012-11-07 03:49:02 +04:00
{
2012-11-07 07:08:09 +04:00
freerdp_client_print_version ( ) ;
2012-11-07 03:49:02 +04:00
return COMMAND_LINE_STATUS_PRINT_VERSION ;
}
2016-08-04 17:13:37 +03:00
2016-01-11 18:18:40 +03:00
if ( status = = COMMAND_LINE_STATUS_PRINT_BUILDCONFIG )
{
freerdp_client_print_version ( ) ;
freerdp_client_print_buildconfig ( ) ;
return COMMAND_LINE_STATUS_PRINT_BUILDCONFIG ;
}
2012-11-27 01:49:12 +04:00
else if ( status = = COMMAND_LINE_STATUS_PRINT )
{
arg = CommandLineFindArgumentA ( args , " kbd-list " ) ;
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
int i ;
RDP_KEYBOARD_LAYOUT * layouts ;
layouts = freerdp_keyboard_get_layouts ( RDP_KEYBOARD_LAYOUT_TYPE_STANDARD ) ;
2015-06-17 23:08:02 +03:00
//if (!layouts) /* FIXME*/
2014-09-16 23:07:38 +04:00
printf ( " \n Keyboard Layouts \n " ) ;
2016-08-04 17:13:37 +03:00
2012-11-27 01:49:12 +04:00
for ( i = 0 ; layouts [ i ] . code ; i + + )
2016-12-14 00:47:08 +03:00
printf ( " 0x%08 " PRIX32 " \t %s \n " , layouts [ i ] . code , layouts [ i ] . name ) ;
2014-09-12 19:13:01 +04:00
2016-08-04 17:13:37 +03:00
free ( layouts ) ;
2014-09-16 23:07:38 +04:00
layouts = freerdp_keyboard_get_layouts ( RDP_KEYBOARD_LAYOUT_TYPE_VARIANT ) ;
2015-06-17 23:08:02 +03:00
//if (!layouts) /* FIXME*/
2014-09-16 23:07:38 +04:00
printf ( " \n Keyboard Layout Variants \n " ) ;
2016-08-04 17:13:37 +03:00
2012-11-27 01:49:12 +04:00
for ( i = 0 ; layouts [ i ] . code ; i + + )
2016-12-14 00:47:08 +03:00
printf ( " 0x%08 " PRIX32 " \t %s \n " , layouts [ i ] . code , layouts [ i ] . name ) ;
2014-09-12 19:13:01 +04:00
2016-08-04 17:13:37 +03:00
free ( layouts ) ;
2014-09-16 23:07:38 +04:00
layouts = freerdp_keyboard_get_layouts ( RDP_KEYBOARD_LAYOUT_TYPE_IME ) ;
2015-06-17 23:08:02 +03:00
//if (!layouts) /* FIXME*/
2014-09-16 23:07:38 +04:00
printf ( " \n Keyboard Input Method Editors (IMEs) \n " ) ;
2016-08-04 17:13:37 +03:00
2012-11-27 01:49:12 +04:00
for ( i = 0 ; layouts [ i ] . code ; i + + )
2016-12-14 00:47:08 +03:00
printf ( " 0x%08 " PRIX32 " \t %s \n " , layouts [ i ] . code , layouts [ i ] . name ) ;
2014-09-16 23:07:38 +04:00
2016-08-04 17:13:37 +03:00
free ( layouts ) ;
2014-09-16 23:07:38 +04:00
printf ( " \n " ) ;
2012-11-27 01:49:12 +04:00
}
2013-04-29 01:10:43 +04:00
arg = CommandLineFindArgumentA ( args , " monitor-list " ) ;
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
settings - > ListMonitors = TRUE ;
}
2012-11-27 01:49:12 +04:00
return COMMAND_LINE_STATUS_PRINT ;
}
2013-09-09 18:07:14 +04:00
else if ( status < 0 )
{
freerdp_client_print_command_line_help ( argc , argv ) ;
return COMMAND_LINE_STATUS_PRINT_HELP ;
}
2012-11-07 03:49:02 +04:00
2013-06-15 23:13:38 +04:00
return 0 ;
}
2012-11-26 23:31:31 +04:00
2015-03-16 12:15:37 +03:00
int freerdp_client_settings_parse_command_line_arguments ( rdpSettings * settings ,
2016-08-04 17:13:37 +03:00
int argc , char * * argv , BOOL allowUnknown )
2013-06-15 23:13:38 +04:00
{
char * p ;
2015-06-18 12:35:22 +03:00
char * user = NULL ;
char * gwUser = NULL ;
2013-06-15 23:13:38 +04:00
char * str ;
int length ;
int status ;
DWORD flags ;
BOOL compatibility ;
COMMAND_LINE_ARGUMENT_A * arg ;
2016-08-04 17:13:37 +03:00
compatibility = freerdp_client_detect_command_line ( argc , argv , & flags ,
allowUnknown ) ;
2013-06-15 23:13:38 +04:00
if ( compatibility )
{
2015-06-15 10:47:16 +03:00
WLog_WARN ( TAG , " Using deprecated command-line interface! " ) ;
2013-06-15 23:13:38 +04:00
return freerdp_client_parse_old_command_line_arguments ( argc , argv , settings ) ;
}
else
2012-11-26 23:31:31 +04:00
{
2013-06-15 23:13:38 +04:00
CommandLineClearArgumentsA ( args ) ;
2013-09-18 01:03:35 +04:00
2015-03-16 12:15:37 +03:00
if ( allowUnknown )
{
flags | = COMMAND_LINE_IGN_UNKNOWN_KEYWORD ;
}
2016-08-04 17:13:37 +03:00
status = CommandLineParseArgumentsA ( argc , ( const char * * ) argv , args , flags ,
settings ,
freerdp_client_command_line_pre_filter ,
freerdp_client_command_line_post_filter ) ;
2013-09-18 01:03:35 +04:00
2013-09-09 18:07:14 +04:00
if ( status < 0 )
return status ;
2012-11-26 23:31:31 +04:00
}
2015-01-15 15:57:28 +03:00
CommandLineFindArgumentA ( args , " v " ) ;
2012-11-06 07:11:13 +04:00
arg = args ;
do
{
2012-11-27 11:49:44 +04:00
if ( ! ( arg - > Flags & COMMAND_LINE_ARGUMENT_PRESENT ) )
2012-11-06 07:11:13 +04:00
continue ;
CommandLineSwitchStart ( arg )
2016-08-04 17:13:37 +03:00
CommandLineSwitchCase ( arg , " v " )
2012-11-06 07:11:13 +04:00
{
2016-08-04 17:13:37 +03:00
free ( settings - > ServerHostname ) ;
2016-03-07 15:12:38 +03:00
settings - > ServerHostname = NULL ;
2014-10-17 14:08:39 +04:00
p = strchr ( arg - > Value , ' [ ' ) ;
2016-08-04 17:13:37 +03:00
2014-10-17 14:08:39 +04:00
/* ipv4 */
if ( ! p )
2012-11-07 03:49:02 +04:00
{
2014-10-17 14:08:39 +04:00
p = strchr ( arg - > Value , ' : ' ) ;
2016-08-04 17:13:37 +03:00
2014-10-17 14:08:39 +04:00
if ( p )
{
2016-08-04 17:13:37 +03:00
length = ( int ) ( p - arg - > Value ) ;
2014-10-17 14:08:39 +04:00
settings - > ServerPort = atoi ( & p [ 1 ] ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > ServerHostname = ( char * ) calloc ( length + 1UL , sizeof ( char ) ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2014-10-17 14:08:39 +04:00
strncpy ( settings - > ServerHostname , arg - > Value , length ) ;
settings - > ServerHostname [ length ] = ' \0 ' ;
}
else
{
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > ServerHostname = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2014-10-17 14:08:39 +04:00
}
2012-11-07 03:49:02 +04:00
}
2014-10-17 14:08:39 +04:00
else /* ipv6 */
2012-11-07 03:49:02 +04:00
{
2016-08-04 17:13:37 +03:00
char * p2 = strchr ( arg - > Value , ' ] ' ) ;
2014-10-17 14:08:39 +04:00
/* not a valid [] ipv6 addr found */
if ( ! p2 )
continue ;
length = p2 - p ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > ServerHostname = ( char * ) calloc ( length , sizeof ( char ) ) ) )
2016-02-01 17:09:51 +03:00
return COMMAND_LINE_ERROR_MEMORY ;
2016-08-04 17:13:37 +03:00
strncpy ( settings - > ServerHostname , p + 1 , length - 1 ) ;
2014-10-17 14:08:39 +04:00
if ( * ( p2 + 1 ) = = ' : ' )
{
settings - > ServerPort = atoi ( & p2 [ 2 ] ) ;
}
2016-08-04 17:13:37 +03:00
2016-12-14 00:47:08 +03:00
printf ( " hostname %s port % " PRIu32 " \n " , settings - > ServerHostname , settings - > ServerPort ) ;
2012-11-07 03:49:02 +04:00
}
}
2014-02-12 09:43:02 +04:00
CommandLineSwitchCase ( arg , " spn-class " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > AuthenticationServiceClass ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > AuthenticationServiceClass = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2014-02-12 09:43:02 +04:00
}
2014-02-14 09:43:31 +04:00
CommandLineSwitchCase ( arg , " credentials-delegation " )
{
settings - > DisableCredentialsDelegation = arg - > Value ? FALSE : TRUE ;
}
2013-01-09 02:18:34 +04:00
CommandLineSwitchCase ( arg , " vmconnect " )
{
2016-05-11 22:52:36 +03:00
settings - > VmConnectMode = TRUE ;
2013-01-09 02:18:34 +04:00
settings - > ServerPort = 2179 ;
settings - > NegotiateSecurityLayer = FALSE ;
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
settings - > SendPreconnectionPdu = TRUE ;
2016-08-04 17:13:37 +03:00
free ( settings - > PreconnectionBlob ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > PreconnectionBlob = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2013-01-09 02:18:34 +04:00
}
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " w " )
{
2012-11-07 19:33:06 +04:00
settings - > DesktopWidth = atoi ( arg - > Value ) ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " h " )
{
2012-11-07 19:33:06 +04:00
settings - > DesktopHeight = atoi ( arg - > Value ) ;
2012-11-06 07:11:13 +04:00
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " size " )
{
2015-06-18 14:00:10 +03:00
if ( ! ( str = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-07 07:08:09 +04:00
p = strchr ( str , ' x ' ) ;
if ( p )
{
* p = ' \0 ' ;
2012-11-07 19:33:06 +04:00
settings - > DesktopWidth = atoi ( str ) ;
settings - > DesktopHeight = atoi ( & p [ 1 ] ) ;
2012-11-07 07:08:09 +04:00
}
2014-08-06 14:19:50 +04:00
else
{
p = strchr ( str , ' % ' ) ;
2016-08-04 17:13:37 +03:00
if ( p )
2014-08-06 14:19:50 +04:00
{
settings - > PercentScreen = atoi ( str ) ;
}
}
2012-11-07 07:08:09 +04:00
free ( str ) ;
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " f " )
{
2012-11-08 03:23:25 +04:00
settings - > Fullscreen = TRUE ;
2012-11-06 07:11:13 +04:00
}
2012-12-13 23:38:02 +04:00
CommandLineSwitchCase ( arg , " multimon " )
{
settings - > UseMultimon = TRUE ;
2013-04-25 23:42:40 +04:00
2012-12-13 23:38:02 +04:00
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
if ( _stricmp ( arg - > Value , " force " ) = = 0 )
{
settings - > ForceMultimon = TRUE ;
}
}
}
2014-03-25 22:39:21 +04:00
CommandLineSwitchCase ( arg , " span " )
{
settings - > SpanMonitors = TRUE ;
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " workarea " )
{
2012-11-08 03:23:25 +04:00
settings - > Workarea = TRUE ;
2012-11-07 07:08:09 +04:00
}
2013-04-29 02:48:27 +04:00
CommandLineSwitchCase ( arg , " monitors " )
{
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
2014-02-11 07:23:59 +04:00
UINT32 i ;
2013-04-29 02:48:27 +04:00
char * * p ;
2014-02-11 07:23:59 +04:00
int count = 0 ;
2013-04-29 02:48:27 +04:00
p = freerdp_command_line_parse_comma_separated_values ( arg - > Value , & count ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! p )
return COMMAND_LINE_ERROR_MEMORY ;
2013-04-29 02:48:27 +04:00
2015-02-10 23:15:30 +03:00
if ( count > 16 )
count = 16 ;
2014-02-11 07:23:59 +04:00
settings - > NumMonitorIds = ( UINT32 ) count ;
2013-04-29 02:48:27 +04:00
for ( i = 0 ; i < settings - > NumMonitorIds ; i + + )
{
settings - > MonitorIds [ i ] = atoi ( p [ i ] ) ;
}
2013-08-28 18:05:02 +04:00
free ( p ) ;
2013-04-29 02:48:27 +04:00
}
}
2013-04-29 01:10:43 +04:00
CommandLineSwitchCase ( arg , " monitor-list " )
{
settings - > ListMonitors = TRUE ;
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " t " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > WindowTitle ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > WindowTitle = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-07 07:08:09 +04:00
}
CommandLineSwitchCase ( arg , " decorations " )
{
2012-11-08 03:23:25 +04:00
settings - > Decorations = arg - > Value ? TRUE : FALSE ;
2012-11-07 07:08:09 +04:00
}
2013-04-11 00:58:14 +04:00
CommandLineSwitchCase ( arg , " smart-sizing " )
{
2014-12-01 13:56:44 +03:00
settings - > SmartSizing = TRUE ;
if ( arg - > Value )
{
2015-06-18 14:00:10 +03:00
if ( ! ( str = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2016-08-04 17:13:37 +03:00
2014-12-01 13:56:44 +03:00
if ( ( p = strchr ( str , ' x ' ) ) )
{
* p = ' \0 ' ;
settings - > SmartSizingWidth = atoi ( str ) ;
settings - > SmartSizingHeight = atoi ( & p [ 1 ] ) ;
}
2016-08-04 17:13:37 +03:00
2014-12-01 13:56:44 +03:00
free ( str ) ;
}
2013-04-11 00:58:14 +04:00
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " bpp " )
{
2012-11-07 19:33:06 +04:00
settings - > ColorDepth = atoi ( arg - > Value ) ;
2016-08-04 17:13:37 +03:00
switch ( settings - > ColorDepth )
{
case 32 :
case 24 :
case 16 :
case 15 :
case 8 :
break ;
default :
return COMMAND_LINE_ERROR_UNEXPECTED_VALUE ;
}
2012-11-06 07:11:13 +04:00
}
2012-12-13 16:39:49 +04:00
CommandLineSwitchCase ( arg , " admin " )
{
settings - > ConsoleSession = TRUE ;
}
2013-11-06 10:51:55 +04:00
CommandLineSwitchCase ( arg , " restricted-admin " )
{
settings - > ConsoleSession = TRUE ;
settings - > RestrictedAdminModeRequired = TRUE ;
}
2013-11-06 19:02:58 +04:00
CommandLineSwitchCase ( arg , " pth " )
{
settings - > ConsoleSession = TRUE ;
settings - > RestrictedAdminModeRequired = TRUE ;
2016-08-04 17:13:37 +03:00
free ( settings - > PasswordHash ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > PasswordHash = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2013-11-06 19:02:58 +04:00
}
2013-11-12 04:57:44 +04:00
CommandLineSwitchCase ( arg , " client-hostname " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > ClientHostname ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > ClientHostname = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2013-11-12 04:57:44 +04:00
}
2012-11-27 01:49:12 +04:00
CommandLineSwitchCase ( arg , " kbd " )
{
2014-04-05 00:09:48 +04:00
unsigned long int id ;
2012-11-27 01:49:12 +04:00
char * pEnd ;
2014-04-05 00:09:48 +04:00
id = strtoul ( arg - > Value , & pEnd , 16 ) ;
2012-11-27 01:49:12 +04:00
if ( pEnd ! = ( arg - > Value + strlen ( arg - > Value ) ) )
id = 0 ;
if ( id = = 0 )
{
2014-04-05 00:09:48 +04:00
id = ( unsigned long int ) freerdp_map_keyboard_layout_name_to_id ( arg - > Value ) ;
2016-08-04 17:13:37 +03:00
2015-06-17 23:08:02 +03:00
if ( id = = - 1 )
2016-02-22 19:01:43 +03:00
WLog_ERR ( TAG , " A problem occurred while mapping the layout name to id " ) ;
2015-06-17 23:08:02 +03:00
else if ( id = = 0 )
2012-11-27 01:49:12 +04:00
{
2015-06-15 10:47:16 +03:00
WLog_ERR ( TAG , " Could not identify keyboard layout: %s " , arg - > Value ) ;
2015-06-17 23:08:02 +03:00
WLog_ERR ( TAG , " Use /kbd-list to list available layouts " ) ;
2012-11-27 01:49:12 +04:00
}
2016-08-04 17:13:37 +03:00
2015-06-17 23:08:02 +03:00
if ( id < = 0 )
return COMMAND_LINE_STATUS_PRINT ;
2012-11-27 01:49:12 +04:00
}
2014-04-05 00:09:48 +04:00
settings - > KeyboardLayout = ( UINT32 ) id ;
2012-11-27 01:49:12 +04:00
}
CommandLineSwitchCase ( arg , " kbd-type " )
{
settings - > KeyboardType = atoi ( arg - > Value ) ;
}
CommandLineSwitchCase ( arg , " kbd-subtype " )
{
settings - > KeyboardSubType = atoi ( arg - > Value ) ;
}
CommandLineSwitchCase ( arg , " kbd-fn-key " )
{
settings - > KeyboardFunctionKey = atoi ( arg - > Value ) ;
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " u " )
{
2015-06-18 12:35:22 +03:00
user = _strdup ( arg - > Value ) ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " d " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > Domain ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > Domain = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " p " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > Password ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > Password = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-06 07:11:13 +04:00
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " g " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > GatewayHostname ) ;
2012-11-27 11:49:44 +04:00
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
2012-11-07 07:08:09 +04:00
{
2012-11-27 11:49:44 +04:00
p = strchr ( arg - > Value , ' : ' ) ;
if ( p )
{
2016-08-04 17:13:37 +03:00
length = ( int ) ( p - arg - > Value ) ;
2012-11-27 11:49:44 +04:00
settings - > GatewayPort = atoi ( & p [ 1 ] ) ;
2016-08-04 17:13:37 +03:00
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > GatewayHostname = ( char * ) calloc ( length + 1UL , sizeof ( char ) ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2016-08-04 17:13:37 +03:00
2012-11-27 11:49:44 +04:00
strncpy ( settings - > GatewayHostname , arg - > Value , length ) ;
settings - > GatewayHostname [ length ] = ' \0 ' ;
}
else
{
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > GatewayHostname = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-27 11:49:44 +04:00
}
2012-11-07 07:08:09 +04:00
}
else
{
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > GatewayHostname = _strdup ( settings - > ServerHostname ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-07 07:08:09 +04:00
}
2014-05-30 20:31:26 +04:00
settings - > GatewayEnabled = TRUE ;
2012-11-09 04:56:37 +04:00
settings - > GatewayUseSameCredentials = TRUE ;
2015-01-28 23:16:31 +03:00
freerdp_set_gateway_usage_method ( settings , TSC_PROXY_MODE_DIRECT ) ;
2012-11-07 07:08:09 +04:00
}
2016-12-11 01:13:35 +03:00
CommandLineSwitchCase ( arg , " proxy " )
2014-03-21 21:58:28 +04:00
{
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
2016-12-11 01:13:35 +03:00
p = strstr ( arg - > Value , " :// " ) ;
if ( p ) {
* p = ' \0 ' ;
if ( ! strcmp ( " http " , arg - > Value ) ) {
settings - > ProxyType = PROXY_TYPE_HTTP ;
} else {
WLog_ERR ( TAG , " Only HTTP proxys supported by now " ) ;
return COMMAND_LINE_ERROR_UNEXPECTED_VALUE ;
}
arg - > Value = p + 3 ;
}
2014-03-21 21:58:28 +04:00
p = strchr ( arg - > Value , ' : ' ) ;
if ( p )
{
length = ( int ) ( p - arg - > Value ) ;
2016-12-11 01:13:35 +03:00
if ( ! isdigit ( p [ 1 ] ) ) {
WLog_ERR ( TAG , " Could not parse proxy port " ) ;
return COMMAND_LINE_ERROR_UNEXPECTED_VALUE ;
}
settings - > ProxyPort = atoi ( & p [ 1 ] ) ;
settings - > ProxyHostname = ( char * ) malloc ( length + 1 ) ;
strncpy ( settings - > ProxyHostname , arg - > Value , length ) ;
settings - > ProxyHostname [ length ] = ' \0 ' ;
settings - > ProxyType = PROXY_TYPE_HTTP ;
2014-03-21 21:58:28 +04:00
}
}
2016-12-11 01:13:35 +03:00
else
{
WLog_ERR ( TAG , " Option http-proxy needs argument. " ) ;
return COMMAND_LINE_ERROR_UNEXPECTED_VALUE ;
}
2014-03-21 21:58:28 +04:00
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " gu " )
{
2015-06-18 14:00:10 +03:00
if ( ! ( gwUser = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-08 00:13:14 +04:00
settings - > GatewayUseSameCredentials = FALSE ;
2012-11-07 07:08:09 +04:00
}
CommandLineSwitchCase ( arg , " gd " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > GatewayDomain ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > GatewayDomain = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2016-08-04 17:13:37 +03:00
2012-11-08 00:13:14 +04:00
settings - > GatewayUseSameCredentials = FALSE ;
2012-11-07 07:08:09 +04:00
}
CommandLineSwitchCase ( arg , " gp " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > GatewayPassword ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > GatewayPassword = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2016-08-04 17:13:37 +03:00
2012-11-08 00:13:14 +04:00
settings - > GatewayUseSameCredentials = FALSE ;
2012-11-07 07:08:09 +04:00
}
2015-03-19 18:44:47 +03:00
CommandLineSwitchCase ( arg , " gt " )
{
if ( _stricmp ( arg - > Value , " rpc " ) = = 0 )
{
settings - > GatewayRpcTransport = TRUE ;
settings - > GatewayHttpTransport = FALSE ;
}
else if ( _stricmp ( arg - > Value , " http " ) = = 0 )
{
settings - > GatewayRpcTransport = FALSE ;
settings - > GatewayHttpTransport = TRUE ;
}
else if ( _stricmp ( arg - > Value , " auto " ) = = 0 )
{
settings - > GatewayRpcTransport = TRUE ;
settings - > GatewayHttpTransport = TRUE ;
}
}
2014-05-30 20:31:26 +04:00
CommandLineSwitchCase ( arg , " gateway-usage-method " )
{
int type ;
char * pEnd ;
type = strtol ( arg - > Value , & pEnd , 10 ) ;
if ( type = = 0 )
{
if ( _stricmp ( arg - > Value , " none " ) = = 0 )
type = TSC_PROXY_MODE_NONE_DIRECT ;
else if ( _stricmp ( arg - > Value , " direct " ) = = 0 )
type = TSC_PROXY_MODE_DIRECT ;
else if ( _stricmp ( arg - > Value , " detect " ) = = 0 )
type = TSC_PROXY_MODE_DETECT ;
else if ( _stricmp ( arg - > Value , " default " ) = = 0 )
type = TSC_PROXY_MODE_DEFAULT ;
}
freerdp_set_gateway_usage_method ( settings , ( UINT32 ) type ) ;
}
2012-11-19 22:26:56 +04:00
CommandLineSwitchCase ( arg , " app " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > RemoteApplicationProgram ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > RemoteApplicationProgram = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-19 22:26:56 +04:00
settings - > RemoteApplicationMode = TRUE ;
settings - > RemoteAppLanguageBarSupported = TRUE ;
settings - > Workarea = TRUE ;
settings - > DisableWallpaper = TRUE ;
settings - > DisableFullWindowDrag = TRUE ;
}
2013-04-11 19:51:10 +04:00
CommandLineSwitchCase ( arg , " load-balance-info " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > LoadBalanceInfo ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > LoadBalanceInfo = ( BYTE * ) _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2016-08-04 17:13:37 +03:00
settings - > LoadBalanceInfoLength = ( UINT32 ) strlen ( ( char * )
settings - > LoadBalanceInfo ) ;
2013-04-11 19:51:10 +04:00
}
2012-11-19 22:26:56 +04:00
CommandLineSwitchCase ( arg , " app-name " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > RemoteApplicationName ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > RemoteApplicationName = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-19 22:26:56 +04:00
}
CommandLineSwitchCase ( arg , " app-icon " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > RemoteApplicationIcon ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > RemoteApplicationIcon = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-19 22:26:56 +04:00
}
CommandLineSwitchCase ( arg , " app-cmd " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > RemoteApplicationCmdLine ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > RemoteApplicationCmdLine = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-19 22:26:56 +04:00
}
CommandLineSwitchCase ( arg , " app-file " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > RemoteApplicationFile ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > RemoteApplicationFile = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-19 22:26:56 +04:00
}
CommandLineSwitchCase ( arg , " app-guid " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > RemoteApplicationGuid ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > RemoteApplicationGuid = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-19 22:26:56 +04:00
}
2012-11-26 23:31:31 +04:00
CommandLineSwitchCase ( arg , " compression " )
2012-11-06 07:11:13 +04:00
{
2012-11-08 03:23:25 +04:00
settings - > CompressionEnabled = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
2014-03-10 19:16:36 +04:00
CommandLineSwitchCase ( arg , " compression-level " )
{
settings - > CompressionLevel = atoi ( arg - > Value ) ;
}
2013-02-15 04:38:45 +04:00
CommandLineSwitchCase ( arg , " drives " )
{
settings - > RedirectDrives = arg - > Value ? TRUE : FALSE ;
}
CommandLineSwitchCase ( arg , " home-drive " )
{
settings - > RedirectHomeDrive = arg - > Value ? TRUE : FALSE ;
}
2012-11-21 04:34:52 +04:00
CommandLineSwitchCase ( arg , " clipboard " )
{
settings - > RedirectClipboard = arg - > Value ? TRUE : FALSE ;
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " shell " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > AlternateShell ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > AlternateShell = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-07 07:08:09 +04:00
}
CommandLineSwitchCase ( arg , " shell-dir " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > ShellWorkingDirectory ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > ShellWorkingDirectory = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-07 07:08:09 +04:00
}
2012-11-26 23:31:31 +04:00
CommandLineSwitchCase ( arg , " audio-mode " )
{
int mode ;
mode = atoi ( arg - > Value ) ;
if ( mode = = AUDIO_MODE_REDIRECT )
{
settings - > AudioPlayback = TRUE ;
}
else if ( mode = = AUDIO_MODE_PLAY_ON_SERVER )
{
settings - > RemoteConsoleAudio = TRUE ;
}
else if ( mode = = AUDIO_MODE_NONE )
{
settings - > AudioPlayback = FALSE ;
settings - > RemoteConsoleAudio = FALSE ;
}
}
CommandLineSwitchCase ( arg , " network " )
{
int type ;
char * pEnd ;
type = strtol ( arg - > Value , & pEnd , 10 ) ;
if ( type = = 0 )
{
if ( _stricmp ( arg - > Value , " modem " ) = = 0 )
type = CONNECTION_TYPE_MODEM ;
else if ( _stricmp ( arg - > Value , " broadband " ) = = 0 )
type = CONNECTION_TYPE_BROADBAND_HIGH ;
else if ( _stricmp ( arg - > Value , " broadband-low " ) = = 0 )
type = CONNECTION_TYPE_BROADBAND_LOW ;
else if ( _stricmp ( arg - > Value , " broadband-high " ) = = 0 )
type = CONNECTION_TYPE_BROADBAND_HIGH ;
else if ( _stricmp ( arg - > Value , " wan " ) = = 0 )
type = CONNECTION_TYPE_WAN ;
else if ( _stricmp ( arg - > Value , " lan " ) = = 0 )
type = CONNECTION_TYPE_LAN ;
2014-09-25 01:23:12 +04:00
else if ( ( _stricmp ( arg - > Value , " autodetect " ) = = 0 ) | |
2016-08-04 17:13:37 +03:00
( _stricmp ( arg - > Value , " auto " ) = = 0 ) | |
( _stricmp ( arg - > Value , " detect " ) = = 0 ) )
2014-09-25 01:23:12 +04:00
{
2012-11-26 23:31:31 +04:00
type = CONNECTION_TYPE_AUTODETECT ;
2014-09-25 01:23:12 +04:00
}
2012-11-26 23:31:31 +04:00
}
2016-02-01 17:09:51 +03:00
if ( ! freerdp_set_connection_type ( settings , type ) )
return COMMAND_LINE_ERROR ;
2012-11-26 23:31:31 +04:00
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " fonts " )
{
2012-11-08 00:13:14 +04:00
settings - > AllowFontSmoothing = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " wallpaper " )
{
2012-11-08 00:13:14 +04:00
settings - > DisableWallpaper = arg - > Value ? FALSE : TRUE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " window-drag " )
{
2012-11-08 00:13:14 +04:00
settings - > DisableFullWindowDrag = arg - > Value ? FALSE : TRUE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " menu-anims " )
{
2012-11-08 00:13:14 +04:00
settings - > DisableMenuAnims = arg - > Value ? FALSE : TRUE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " themes " )
{
2012-11-08 00:13:14 +04:00
settings - > DisableThemes = arg - > Value ? FALSE : TRUE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " aero " )
{
2012-11-08 00:13:14 +04:00
settings - > AllowDesktopComposition = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " gdi " )
{
2013-12-10 21:30:25 +04:00
if ( _stricmp ( arg - > Value , " sw " ) = = 0 )
2012-11-08 03:23:25 +04:00
settings - > SoftwareGdi = TRUE ;
2013-12-10 21:30:25 +04:00
else if ( _stricmp ( arg - > Value , " hw " ) = = 0 )
2012-11-08 03:23:25 +04:00
settings - > SoftwareGdi = FALSE ;
2012-11-07 07:08:09 +04:00
}
2013-10-22 07:33:25 +04:00
CommandLineSwitchCase ( arg , " gfx " )
{
settings - > SupportGraphicsPipeline = TRUE ;
2016-08-04 17:13:37 +03:00
2016-03-24 18:25:22 +03:00
if ( arg - > Value )
{
if ( _strnicmp ( " AVC444 " , arg - > Value , 6 ) = = 0 )
{
settings - > GfxH264 = TRUE ;
settings - > GfxAVC444 = TRUE ;
}
else if ( _strnicmp ( " AVC420 " , arg - > Value , 6 ) = = 0 )
{
settings - > GfxH264 = TRUE ;
}
2016-03-31 12:01:45 +03:00
else if ( _strnicmp ( " RFX " , arg - > Value , 3 ) ! = 0 )
2016-03-24 18:25:22 +03:00
return COMMAND_LINE_ERROR ;
}
2014-07-03 22:35:03 +04:00
}
CommandLineSwitchCase ( arg , " gfx-thin-client " )
{
settings - > GfxThinClient = arg - > Value ? TRUE : FALSE ;
settings - > SupportGraphicsPipeline = TRUE ;
}
CommandLineSwitchCase ( arg , " gfx-small-cache " )
{
settings - > GfxSmallCache = arg - > Value ? TRUE : FALSE ;
settings - > SupportGraphicsPipeline = TRUE ;
}
CommandLineSwitchCase ( arg , " gfx-progressive " )
{
settings - > GfxProgressive = arg - > Value ? TRUE : FALSE ;
2014-07-30 01:37:46 +04:00
settings - > GfxThinClient = settings - > GfxProgressive ? FALSE : TRUE ;
2014-07-03 22:35:03 +04:00
settings - > SupportGraphicsPipeline = TRUE ;
}
CommandLineSwitchCase ( arg , " gfx-h264 " )
{
settings - > SupportGraphicsPipeline = TRUE ;
2016-03-24 18:25:22 +03:00
settings - > GfxH264 = TRUE ;
2016-08-04 17:13:37 +03:00
2016-03-24 18:25:22 +03:00
if ( arg - > Value )
{
if ( _strnicmp ( " AVC444 " , arg - > Value , 6 ) = = 0 )
{
settings - > GfxAVC444 = TRUE ;
}
2016-03-31 12:01:45 +03:00
else if ( _strnicmp ( " AVC420 " , arg - > Value , 6 ) ! = 0 )
2016-03-24 18:25:22 +03:00
return COMMAND_LINE_ERROR ;
}
2013-10-22 07:33:25 +04:00
}
2012-11-07 07:08:09 +04:00
CommandLineSwitchCase ( arg , " rfx " )
{
2012-11-08 00:13:14 +04:00
settings - > RemoteFxCodec = TRUE ;
2012-11-07 07:08:09 +04:00
}
CommandLineSwitchCase ( arg , " rfx-mode " )
{
if ( strcmp ( arg - > Value , " video " ) = = 0 )
2012-11-08 00:13:14 +04:00
settings - > RemoteFxCodecMode = 0x00 ;
2012-11-07 07:08:09 +04:00
else if ( strcmp ( arg - > Value , " image " ) = = 0 )
2012-11-08 00:13:14 +04:00
settings - > RemoteFxCodecMode = 0x02 ;
2012-11-07 07:08:09 +04:00
}
CommandLineSwitchCase ( arg , " frame-ack " )
{
2012-11-08 00:13:14 +04:00
settings - > FrameAcknowledge = atoi ( arg - > Value ) ;
2012-11-07 07:08:09 +04:00
}
CommandLineSwitchCase ( arg , " nsc " )
{
2012-11-08 00:13:14 +04:00
settings - > NSCodec = TRUE ;
2012-11-07 07:08:09 +04:00
}
2012-11-27 01:49:12 +04:00
CommandLineSwitchCase ( arg , " jpeg " )
{
settings - > JpegCodec = TRUE ;
settings - > JpegQuality = 75 ;
}
CommandLineSwitchCase ( arg , " jpeg-quality " )
{
settings - > JpegQuality = atoi ( arg - > Value ) % 100 ;
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " nego " )
{
2012-11-07 20:02:46 +04:00
settings - > NegotiateSecurityLayer = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
2013-01-09 02:18:34 +04:00
CommandLineSwitchCase ( arg , " pcb " )
2012-11-06 07:11:13 +04:00
{
2012-11-08 00:13:14 +04:00
settings - > SendPreconnectionPdu = TRUE ;
2016-08-04 17:13:37 +03:00
free ( settings - > PreconnectionBlob ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > PreconnectionBlob = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-06 07:11:13 +04:00
}
2013-01-09 02:18:34 +04:00
CommandLineSwitchCase ( arg , " pcid " )
2012-11-06 07:11:13 +04:00
{
2012-11-08 00:13:14 +04:00
settings - > SendPreconnectionPdu = TRUE ;
2013-01-09 02:18:34 +04:00
settings - > PreconnectionId = atoi ( arg - > Value ) ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " sec " )
{
if ( strcmp ( " rdp " , arg - > Value ) = = 0 ) /* Standard RDP */
{
2012-11-07 20:02:46 +04:00
settings - > RdpSecurity = TRUE ;
settings - > TlsSecurity = FALSE ;
settings - > NlaSecurity = FALSE ;
settings - > ExtSecurity = FALSE ;
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 = TRUE ;
2012-11-06 07:11:13 +04:00
}
else if ( strcmp ( " tls " , arg - > Value ) = = 0 ) /* TLS */
{
2012-11-07 20:02:46 +04:00
settings - > RdpSecurity = FALSE ;
settings - > TlsSecurity = TRUE ;
settings - > NlaSecurity = FALSE ;
settings - > ExtSecurity = FALSE ;
2012-11-06 07:11:13 +04:00
}
else if ( strcmp ( " nla " , arg - > Value ) = = 0 ) /* NLA */
{
2012-11-07 20:02:46 +04:00
settings - > RdpSecurity = FALSE ;
settings - > TlsSecurity = FALSE ;
settings - > NlaSecurity = TRUE ;
settings - > ExtSecurity = FALSE ;
2012-11-06 07:11:13 +04:00
}
else if ( strcmp ( " ext " , arg - > Value ) = = 0 ) /* NLA Extended */
{
2012-11-07 20:02:46 +04:00
settings - > RdpSecurity = FALSE ;
settings - > TlsSecurity = FALSE ;
settings - > NlaSecurity = FALSE ;
settings - > ExtSecurity = TRUE ;
2012-11-06 07:11:13 +04:00
}
else
{
2015-06-15 10:47:16 +03:00
WLog_ERR ( TAG , " unknown protocol security: %s " , arg - > Value ) ;
2012-11-06 07:11:13 +04:00
}
}
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
CommandLineSwitchCase ( arg , " encryption-methods " )
{
if ( arg - > Flags & COMMAND_LINE_VALUE_PRESENT )
{
UINT32 i ;
char * * p ;
int count = 0 ;
p = freerdp_command_line_parse_comma_separated_values ( arg - > Value , & count ) ;
for ( i = 0 ; i < count ; i + + )
{
if ( ! strcmp ( p [ i ] , " 40 " ) )
settings - > EncryptionMethods | = ENCRYPTION_METHOD_40BIT ;
else if ( ! strcmp ( p [ i ] , " 56 " ) )
settings - > EncryptionMethods | = ENCRYPTION_METHOD_56BIT ;
else if ( ! strcmp ( p [ i ] , " 128 " ) )
settings - > EncryptionMethods | = ENCRYPTION_METHOD_128BIT ;
else if ( ! strcmp ( p [ i ] , " FIPS " ) )
settings - > EncryptionMethods | = ENCRYPTION_METHOD_FIPS ;
else
2015-06-15 10:47:16 +03:00
WLog_ERR ( TAG , " unknown encryption method '%s' " , p [ i ] ) ;
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
}
free ( p ) ;
}
}
2015-06-23 15:59:54 +03:00
CommandLineSwitchCase ( arg , " from-stdin " )
{
settings - > CredentialsFromStdin = TRUE ;
}
2016-01-23 17:16:13 +03:00
CommandLineSwitchCase ( arg , " log-level " )
{
wLog * root = WLog_GetRoot ( ) ;
2016-08-04 17:13:37 +03:00
2016-01-23 17:16:13 +03:00
if ( ! WLog_SetStringLogLevel ( root , arg - > Value ) )
return COMMAND_LINE_ERROR ;
}
CommandLineSwitchCase ( arg , " log-filters " )
{
if ( ! WLog_AddStringLogFilters ( arg - > Value ) )
return COMMAND_LINE_ERROR ;
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " sec-rdp " )
{
2012-11-07 20:02:46 +04:00
settings - > RdpSecurity = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " sec-tls " )
{
2012-11-07 20:02:46 +04:00
settings - > TlsSecurity = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " sec-nla " )
{
2012-11-07 20:02:46 +04:00
settings - > NlaSecurity = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " sec-ext " )
{
2012-11-07 20:02:46 +04:00
settings - > ExtSecurity = arg - > Value ? TRUE : FALSE ;
2012-11-06 07:11:13 +04:00
}
2014-07-17 16:59:06 +04:00
CommandLineSwitchCase ( arg , " tls-ciphers " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > AllowedTlsCiphers ) ;
2015-02-06 22:21:26 +03:00
if ( strcmp ( arg - > Value , " netmon " ) = = 0 )
{
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > AllowedTlsCiphers = _strdup ( " ALL:!ECDH " ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2015-02-06 22:21:26 +03:00
}
else if ( strcmp ( arg - > Value , " ma " ) = = 0 )
{
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > AllowedTlsCiphers = _strdup ( " AES128-SHA " ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2015-02-06 22:21:26 +03:00
}
else
{
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > AllowedTlsCiphers = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2015-02-06 22:21:26 +03:00
}
2014-07-17 16:59:06 +04:00
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchCase ( arg , " cert-name " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > CertificateName ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > CertificateName = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2012-11-06 07:11:13 +04:00
}
CommandLineSwitchCase ( arg , " cert-ignore " )
{
2012-11-08 00:13:14 +04:00
settings - > IgnoreCertificate = TRUE ;
2012-11-06 07:11:13 +04:00
}
2016-03-31 13:16:55 +03:00
CommandLineSwitchCase ( arg , " cert-tofu " )
{
settings - > AutoAcceptCertificate = TRUE ;
}
2012-11-15 08:06:56 +04:00
CommandLineSwitchCase ( arg , " authentication " )
{
settings - > Authentication = arg - > Value ? TRUE : FALSE ;
}
CommandLineSwitchCase ( arg , " encryption " )
{
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 = arg - > Value ? FALSE : TRUE ;
2012-11-15 08:06:56 +04:00
}
2012-11-15 19:00:07 +04:00
CommandLineSwitchCase ( arg , " grab-keyboard " )
{
settings - > GrabKeyboard = arg - > Value ? TRUE : FALSE ;
}
2015-07-14 02:03:33 +03:00
CommandLineSwitchCase ( arg , " unmap-buttons " )
{
settings - > UnmapButtons = arg - > Value ? TRUE : FALSE ;
}
2013-02-28 20:32:46 +04:00
CommandLineSwitchCase ( arg , " toggle-fullscreen " )
{
settings - > ToggleFullscreen = arg - > Value ? TRUE : FALSE ;
}
2012-11-27 01:49:12 +04:00
CommandLineSwitchCase ( arg , " mouse-motion " )
{
settings - > MouseMotion = arg - > Value ? TRUE : FALSE ;
}
CommandLineSwitchCase ( arg , " parent-window " )
{
settings - > ParentWindowId = strtol ( arg - > Value , NULL , 0 ) ;
}
2012-11-26 23:31:31 +04:00
CommandLineSwitchCase ( arg , " bitmap-cache " )
{
settings - > BitmapCacheEnabled = arg - > Value ? TRUE : FALSE ;
}
CommandLineSwitchCase ( arg , " offscreen-cache " )
{
2012-11-27 01:49:12 +04:00
settings - > OffscreenSupportLevel = arg - > Value ? TRUE : FALSE ;
}
CommandLineSwitchCase ( arg , " glyph-cache " )
{
2016-08-04 17:13:37 +03:00
settings - > GlyphSupportLevel = arg - > Value ? GLYPH_SUPPORT_FULL :
GLYPH_SUPPORT_NONE ;
2012-11-27 01:49:12 +04:00
}
CommandLineSwitchCase ( arg , " codec-cache " )
{
settings - > BitmapCacheV3Enabled = TRUE ;
if ( strcmp ( arg - > Value , " rfx " ) = = 0 )
{
settings - > RemoteFxCodec = TRUE ;
}
else if ( strcmp ( arg - > Value , " nsc " ) = = 0 )
{
settings - > NSCodec = TRUE ;
}
else if ( strcmp ( arg - > Value , " jpeg " ) = = 0 )
{
settings - > JpegCodec = TRUE ;
if ( settings - > JpegQuality = = 0 )
settings - > JpegQuality = 75 ;
}
2012-11-26 23:31:31 +04:00
}
CommandLineSwitchCase ( arg , " fast-path " )
{
settings - > FastPathInput = arg - > Value ? TRUE : FALSE ;
settings - > FastPathOutput = arg - > Value ? TRUE : FALSE ;
}
2013-05-14 12:24:05 +04:00
CommandLineSwitchCase ( arg , " max-fast-path-size " )
{
settings - > MultifragMaxRequestSize = atoi ( arg - > Value ) ;
}
2016-10-17 19:56:52 +03:00
CommandLineSwitchCase ( arg , " max-loop-time " )
{
settings - > MaxTimeInCheckLoop = atoi ( arg - > Value ) ;
2016-12-16 14:56:17 +03:00
2016-11-25 14:40:11 +03:00
if ( ( long ) settings - > MaxTimeInCheckLoop < 0 )
2016-10-17 19:56:52 +03:00
{
WLog_ERR ( TAG , " invalid max loop time: %s " , arg - > Value ) ;
return COMMAND_LINE_ERROR ;
}
2016-11-25 14:40:11 +03:00
if ( ( long ) settings - > MaxTimeInCheckLoop < = 0 )
2016-10-17 19:56:52 +03:00
{
settings - > MaxTimeInCheckLoop = 10 * 60 * 60 * 1000 ; /* 10 hours can be considered as infinite */
}
}
2013-01-28 03:22:46 +04:00
CommandLineSwitchCase ( arg , " async-input " )
{
settings - > AsyncInput = arg - > Value ? TRUE : FALSE ;
}
CommandLineSwitchCase ( arg , " async-update " )
{
settings - > AsyncUpdate = arg - > Value ? TRUE : FALSE ;
}
2013-02-19 21:29:15 +04:00
CommandLineSwitchCase ( arg , " async-channels " )
{
settings - > AsyncChannels = arg - > Value ? TRUE : FALSE ;
}
2013-03-27 21:03:41 +04:00
CommandLineSwitchCase ( arg , " async-transport " )
{
settings - > AsyncTransport = arg - > Value ? TRUE : FALSE ;
}
2013-03-26 18:47:39 +04:00
CommandLineSwitchCase ( arg , " wm-class " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > WmClass ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > WmClass = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2013-03-26 18:47:39 +04:00
}
2013-05-27 17:28:08 +04:00
CommandLineSwitchCase ( arg , " play-rfx " )
{
2016-08-04 17:13:37 +03:00
free ( settings - > PlayRemoteFxFile ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > PlayRemoteFxFile = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2016-08-04 17:13:37 +03:00
2013-05-27 17:28:08 +04:00
settings - > PlayRemoteFx = TRUE ;
}
2013-05-27 17:35:25 +04:00
CommandLineSwitchCase ( arg , " auth-only " )
{
settings - > AuthenticationOnly = arg - > Value ? TRUE : FALSE ;
}
2014-02-28 01:55:07 +04:00
CommandLineSwitchCase ( arg , " auto-reconnect " )
{
settings - > AutoReconnectionEnabled = arg - > Value ? TRUE : FALSE ;
}
2016-12-16 14:56:17 +03:00
CommandLineSwitchCase ( arg , " auto-reconnect-max-retries " )
{
settings - > AutoReconnectMaxRetries = atoi ( arg - > Value ) ;
2017-01-09 14:34:09 +03:00
if ( ( settings - > AutoReconnectMaxRetries < 0 ) | |
2016-12-19 11:17:08 +03:00
( settings - > AutoReconnectMaxRetries > 1000 ) )
2016-12-16 14:56:17 +03:00
return COMMAND_LINE_ERROR ;
}
2013-10-22 19:14:29 +04:00
CommandLineSwitchCase ( arg , " reconnect-cookie " )
{
2016-08-04 17:13:37 +03:00
BYTE * base64 ;
2013-10-22 19:14:29 +04:00
int length ;
2016-08-04 17:13:37 +03:00
crypto_base64_decode ( ( const char * ) ( arg - > Value ) , ( int ) strlen ( arg - > Value ) ,
& base64 , & length ) ;
2013-10-22 19:14:29 +04:00
if ( ( base64 ! = NULL ) & & ( length = = sizeof ( ARC_SC_PRIVATE_PACKET ) ) )
{
memcpy ( settings - > ServerAutoReconnectCookie , base64 , length ) ;
free ( base64 ) ;
}
else
{
2015-06-15 10:47:16 +03:00
WLog_ERR ( TAG , " reconnect-cookie: invalid base64 '%s' " , arg - > Value ) ;
2013-10-22 19:14:29 +04:00
}
}
CommandLineSwitchCase ( arg , " print-reconnect-cookie " )
{
settings - > PrintReconnectCookie = arg - > Value ? TRUE : FALSE ;
}
2014-06-29 02:33:46 +04:00
CommandLineSwitchCase ( arg , " assistance " )
{
2014-06-30 20:51:27 +04:00
settings - > RemoteAssistanceMode = TRUE ;
2016-08-04 17:13:37 +03:00
free ( settings - > RemoteAssistancePassword ) ;
2015-06-18 14:00:10 +03:00
if ( ! ( settings - > RemoteAssistancePassword = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
2014-06-29 02:33:46 +04:00
}
2015-03-04 17:37:25 +03:00
CommandLineSwitchCase ( arg , " pwidth " )
{
settings - > DesktopPhysicalWidth = atoi ( arg - > Value ) ;
}
CommandLineSwitchCase ( arg , " pheight " )
{
settings - > DesktopPhysicalHeight = atoi ( arg - > Value ) ;
}
CommandLineSwitchCase ( arg , " orientation " )
{
settings - > DesktopOrientation = atoi ( arg - > Value ) ;
}
CommandLineSwitchCase ( arg , " scale " )
{
int scaleFactor = atoi ( arg - > Value ) ;
2016-08-04 17:13:37 +03:00
if ( scaleFactor = = 100 | | scaleFactor = = 140 | | scaleFactor = = 180 )
{
2015-03-04 17:37:25 +03:00
settings - > DesktopScaleFactor = scaleFactor ;
settings - > DeviceScaleFactor = scaleFactor ;
2016-08-04 17:13:37 +03:00
}
else
{
2015-03-04 17:37:25 +03:00
WLog_ERR ( TAG , " scale: invalid scale factor (%d) " , scaleFactor ) ;
return COMMAND_LINE_ERROR ;
}
}
CommandLineSwitchCase ( arg , " scale-desktop " )
{
int desktopScaleFactor = atoi ( arg - > Value ) ;
2016-08-04 17:13:37 +03:00
2015-03-04 17:37:25 +03:00
if ( desktopScaleFactor > = 100 & & desktopScaleFactor < = 500 )
{
settings - > DesktopScaleFactor = desktopScaleFactor ;
}
else
{
WLog_ERR ( TAG , " scale: invalid desktop scale factor (%d) " , desktopScaleFactor ) ;
return COMMAND_LINE_ERROR ;
}
}
CommandLineSwitchCase ( arg , " scale-device " )
{
int deviceScaleFactor = atoi ( arg - > Value ) ;
2016-08-04 17:13:37 +03:00
if ( deviceScaleFactor = = 100 | | deviceScaleFactor = = 140
| | deviceScaleFactor = = 180 )
2015-03-04 17:37:25 +03:00
{
settings - > DeviceScaleFactor = deviceScaleFactor ;
}
else
{
WLog_ERR ( TAG , " scale: invalid device scale factor (%d) " , deviceScaleFactor ) ;
return COMMAND_LINE_ERROR ;
}
}
2017-02-06 07:54:54 +03:00
CommandLineSwitchCase ( arg , " action-script " )
{
free ( settings - > ActionScript ) ;
if ( ! ( settings - > ActionScript = _strdup ( arg - > Value ) ) )
return COMMAND_LINE_ERROR_MEMORY ;
}
2012-11-06 07:11:13 +04:00
CommandLineSwitchDefault ( arg )
{
}
CommandLineSwitchEnd ( arg )
}
while ( ( arg = CommandLineFindNextArgumentA ( arg ) ) ! = NULL ) ;
2017-02-16 22:16:56 +03:00
if ( user )
2015-06-18 12:35:22 +03:00
{
2017-02-10 23:38:52 +03:00
free ( settings - > Username ) ;
if ( ! settings - > Domain & & user )
{
BOOL ret ;
free ( settings - > Domain ) ;
2016-08-04 17:13:37 +03:00
2017-02-10 23:38:52 +03:00
ret = freerdp_parse_username ( user , & settings - > Username , & settings - > Domain ) ;
free ( user ) ;
if ( ! ret )
return COMMAND_LINE_ERROR ;
}
else
settings - > Username = user ;
2015-06-18 12:35:22 +03:00
}
2017-02-17 13:53:57 +03:00
if ( gwUser )
2015-06-18 12:35:22 +03:00
{
2017-02-17 13:53:57 +03:00
free ( settings - > GatewayUsername ) ;
if ( ! settings - > GatewayDomain & & gwUser )
{
BOOL ret ;
free ( settings - > GatewayDomain ) ;
ret = freerdp_parse_username ( gwUser , & settings - > GatewayUsername ,
& settings - > GatewayDomain ) ;
free ( gwUser ) ;
if ( ! ret )
return COMMAND_LINE_ERROR ;
}
else
settings - > GatewayUsername = gwUser ;
2015-06-18 12:35:22 +03:00
}
2013-09-17 22:56:23 +04:00
freerdp_performance_flags_make ( settings ) ;
2012-11-06 07:11:13 +04:00
2016-08-04 17:13:37 +03:00
if ( settings - > RemoteFxCodec | | settings - > NSCodec
| | settings - > SupportGraphicsPipeline )
2014-07-03 22:35:03 +04:00
{
settings - > FastPathOutput = TRUE ;
settings - > LargePointerFlag = TRUE ;
settings - > FrameMarkerCommandEnabled = TRUE ;
2016-08-04 17:13:37 +03:00
settings - > ColorDepth = 32 ;
2014-07-03 22:35:03 +04:00
}
2014-02-05 20:54:42 +04:00
arg = CommandLineFindArgumentA ( args , " port " ) ;
if ( arg - > Flags & COMMAND_LINE_ARGUMENT_PRESENT )
{
settings - > ServerPort = atoi ( arg - > Value ) ;
}
2012-12-06 01:04:01 +04:00
arg = CommandLineFindArgumentA ( args , " p " ) ;
if ( arg - > Flags & COMMAND_LINE_ARGUMENT_PRESENT )
{
FillMemory ( arg - > Value , strlen ( arg - > Value ) , ' * ' ) ;
}
arg = CommandLineFindArgumentA ( args , " gp " ) ;
if ( arg - > Flags & COMMAND_LINE_ARGUMENT_PRESENT )
{
FillMemory ( arg - > Value , strlen ( arg - > Value ) , ' * ' ) ;
}
2013-07-03 18:41:26 +04:00
return status ;
2012-11-06 07:11:13 +04:00
}
2012-11-09 04:01:52 +04:00
2016-08-04 17:13:37 +03:00
static BOOL freerdp_client_load_static_channel_addin ( rdpChannels * channels ,
rdpSettings * settings , char * name , void * data )
2012-11-09 04:01:52 +04:00
{
2016-11-15 18:58:38 +03:00
PVIRTUALCHANNELENTRY entry = NULL ;
PVIRTUALCHANNELENTRYEX entryEx = NULL ;
2016-11-16 17:52:24 +03:00
entryEx = ( PVIRTUALCHANNELENTRYEX ) freerdp_load_channel_addin_entry ( name , NULL , NULL ,
2016-12-16 14:56:17 +03:00
FREERDP_ADDIN_CHANNEL_STATIC | FREERDP_ADDIN_CHANNEL_ENTRYEX ) ;
2012-11-19 22:26:56 +04:00
2016-11-16 17:52:24 +03:00
if ( ! entryEx )
entry = freerdp_load_channel_addin_entry ( name , NULL , NULL , FREERDP_ADDIN_CHANNEL_STATIC ) ;
2016-11-15 18:58:38 +03:00
if ( entryEx )
{
if ( freerdp_channels_client_load_ex ( channels , settings , entryEx , data ) = = 0 )
{
WLog_INFO ( TAG , " loading channelEx %s " , name ) ;
return TRUE ;
}
}
else if ( entry )
2012-11-21 18:30:06 +04:00
{
if ( freerdp_channels_client_load ( channels , settings , entry , data ) = = 0 )
2012-11-19 22:26:56 +04:00
{
2015-06-15 10:47:16 +03:00
WLog_INFO ( TAG , " loading channel %s " , name ) ;
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-19 22:26:56 +04:00
}
}
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-21 18:30:06 +04:00
}
2016-02-01 17:09:51 +03:00
BOOL freerdp_client_load_addins ( rdpChannels * channels , rdpSettings * settings )
2012-11-21 18:30:06 +04:00
{
2014-02-10 10:06:11 +04:00
UINT32 index ;
2012-11-21 18:30:06 +04:00
ADDIN_ARGV * args ;
2012-11-26 10:34:40 +04:00
if ( ( freerdp_static_channel_collection_find ( settings , " rdpsnd " ) ) | |
2016-02-01 17:09:51 +03:00
( freerdp_dynamic_channel_collection_find ( settings , " tsmf " ) ) )
2012-11-26 10:34:40 +04:00
{
2013-05-11 00:39:16 +04:00
settings - > DeviceRedirection = TRUE ; /* rdpsnd requires rdpdr to be registered */
2016-08-04 17:13:37 +03:00
settings - > AudioPlayback =
TRUE ; /* Both rdpsnd and tsmf require this flag to be set */
2012-11-26 10:34:40 +04:00
}
2012-11-26 10:15:11 +04:00
2013-05-17 17:29:53 +04:00
if ( freerdp_dynamic_channel_collection_find ( settings , " audin " ) )
{
settings - > AudioCapture = TRUE ;
}
2014-01-30 07:53:32 +04:00
if ( settings - > NetworkAutoDetect | |
2016-02-01 17:09:51 +03:00
settings - > SupportHeartbeatPdu | |
settings - > SupportMultitransport )
2014-01-30 07:53:32 +04:00
{
2016-08-04 17:13:37 +03:00
settings - > DeviceRedirection =
TRUE ; /* these RDP8 features require rdpdr to be registered */
2014-01-30 07:53:32 +04:00
}
2016-08-04 17:13:37 +03:00
if ( settings - > RedirectDrives | | settings - > RedirectHomeDrive
| | settings - > RedirectSerialPorts
2016-02-01 17:09:51 +03:00
| | settings - > RedirectSmartCards | | settings - > RedirectPrinters )
2013-02-15 04:38:45 +04:00
{
2014-04-28 05:29:44 +04:00
settings - > DeviceRedirection = TRUE ; /* All of these features require rdpdr */
}
2013-02-15 04:38:45 +04:00
2014-04-28 05:29:44 +04:00
if ( settings - > RedirectDrives )
{
2013-02-15 04:38:45 +04:00
if ( ! freerdp_device_collection_find ( settings , " drive " ) )
{
char * params [ 3 ] ;
params [ 0 ] = " drive " ;
params [ 1 ] = " media " ;
params [ 2 ] = " * " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_device_channel ( settings , 3 , ( char * * ) params ) )
return FALSE ;
2013-02-15 04:38:45 +04:00
}
}
if ( settings - > RedirectHomeDrive )
{
if ( ! freerdp_device_collection_find ( settings , " drive " ) )
{
char * params [ 3 ] ;
params [ 0 ] = " drive " ;
params [ 1 ] = " home " ;
params [ 2 ] = " % " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_device_channel ( settings , 3 , ( char * * ) params ) )
return FALSE ;
2013-02-15 04:38:45 +04:00
}
}
2012-11-09 04:01:52 +04:00
if ( settings - > DeviceRedirection )
{
2016-08-04 17:13:37 +03:00
if ( ! freerdp_client_load_static_channel_addin ( channels , settings , " rdpdr " ,
settings ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-09 04:01:52 +04:00
2012-11-21 18:30:06 +04:00
if ( ! freerdp_static_channel_collection_find ( settings , " rdpsnd " ) )
2012-11-09 04:01:52 +04:00
{
2012-11-21 18:30:06 +04:00
char * params [ 2 ] ;
params [ 0 ] = " rdpsnd " ;
params [ 1 ] = " sys:fake " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_static_channel ( settings , 2 , ( char * * ) params ) )
return FALSE ;
2012-11-09 04:01:52 +04:00
}
}
2014-04-28 05:29:44 +04:00
if ( settings - > RedirectSmartCards )
{
RDPDR_SMARTCARD * smartcard ;
2016-02-26 16:50:27 +03:00
if ( ! freerdp_device_collection_find_type ( settings , RDPDR_DTYP_SMARTCARD ) )
{
smartcard = ( RDPDR_SMARTCARD * ) calloc ( 1 , sizeof ( RDPDR_SMARTCARD ) ) ;
2014-04-28 05:29:44 +04:00
2016-02-26 16:50:27 +03:00
if ( ! smartcard )
return FALSE ;
2014-04-28 05:29:44 +04:00
2016-02-26 16:50:27 +03:00
smartcard - > Type = RDPDR_DTYP_SMARTCARD ;
2016-08-04 17:13:37 +03:00
2016-02-26 16:50:27 +03:00
if ( ! freerdp_device_collection_add ( settings , ( RDPDR_DEVICE * ) smartcard ) )
return FALSE ;
}
2014-04-28 05:29:44 +04:00
}
if ( settings - > RedirectPrinters )
{
RDPDR_PRINTER * printer ;
2016-02-26 16:50:27 +03:00
if ( ! freerdp_device_collection_find_type ( settings , RDPDR_DTYP_PRINT ) )
{
printer = ( RDPDR_PRINTER * ) calloc ( 1 , sizeof ( RDPDR_PRINTER ) ) ;
2014-04-28 05:29:44 +04:00
2016-02-26 16:50:27 +03:00
if ( ! printer )
return FALSE ;
2014-04-28 05:29:44 +04:00
2016-02-26 16:50:27 +03:00
printer - > Type = RDPDR_DTYP_PRINT ;
2016-08-04 17:13:37 +03:00
2016-02-26 16:50:27 +03:00
if ( ! freerdp_device_collection_add ( settings , ( RDPDR_DEVICE * ) printer ) )
return FALSE ;
}
2014-04-28 05:29:44 +04:00
}
2012-11-21 20:56:40 +04:00
if ( settings - > RedirectClipboard )
2012-11-21 04:34:52 +04:00
{
2012-11-21 20:56:40 +04:00
if ( ! freerdp_static_channel_collection_find ( settings , " cliprdr " ) )
{
char * params [ 1 ] ;
params [ 0 ] = " cliprdr " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_static_channel ( settings , 1 , ( char * * ) params ) )
return FALSE ;
2012-11-21 20:56:40 +04:00
}
2012-11-21 18:30:06 +04:00
}
2012-11-21 04:34:52 +04:00
2014-11-21 23:10:39 +03:00
if ( settings - > LyncRdpMode )
{
settings - > EncomspVirtualChannel = TRUE ;
settings - > RemdeskVirtualChannel = TRUE ;
settings - > CompressionEnabled = FALSE ;
}
2014-06-29 02:33:46 +04:00
if ( settings - > RemoteAssistanceMode )
{
2014-11-21 23:10:39 +03:00
settings - > EncomspVirtualChannel = TRUE ;
settings - > RemdeskVirtualChannel = TRUE ;
}
if ( settings - > EncomspVirtualChannel )
2016-02-01 17:09:51 +03:00
{
2016-08-04 17:13:37 +03:00
if ( ! freerdp_client_load_static_channel_addin ( channels , settings , " encomsp " ,
settings ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
}
2014-11-21 23:10:39 +03:00
if ( settings - > RemdeskVirtualChannel )
2016-02-01 17:09:51 +03:00
{
2016-08-04 17:13:37 +03:00
if ( ! freerdp_client_load_static_channel_addin ( channels , settings , " remdesk " ,
settings ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
}
2014-06-29 02:33:46 +04:00
2012-11-21 20:56:40 +04:00
for ( index = 0 ; index < settings - > StaticChannelCount ; index + + )
2012-11-21 18:30:06 +04:00
{
2012-11-21 20:56:40 +04:00
args = settings - > StaticChannelArray [ index ] ;
2016-08-04 17:13:37 +03:00
if ( ! freerdp_client_load_static_channel_addin ( channels , settings , args - > argv [ 0 ] ,
args ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-21 04:34:52 +04:00
}
2012-11-19 22:26:56 +04:00
if ( settings - > RemoteApplicationMode )
2012-11-19 02:32:18 +04:00
{
2016-08-04 17:13:37 +03:00
if ( ! freerdp_client_load_static_channel_addin ( channels , settings , " rail " ,
settings ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-19 02:32:18 +04:00
}
2014-09-26 01:31:05 +04:00
if ( settings - > MultiTouchInput )
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " rdpei " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_dynamic_channel ( settings , count , p ) )
return FALSE ;
2014-09-26 01:31:05 +04:00
}
2013-10-22 07:33:25 +04:00
if ( settings - > SupportGraphicsPipeline )
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " rdpgfx " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_dynamic_channel ( settings , count , p ) )
return FALSE ;
2013-10-22 07:33:25 +04:00
}
2014-09-26 01:31:05 +04:00
if ( settings - > SupportEchoChannel )
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " echo " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_dynamic_channel ( settings , count , p ) )
return FALSE ;
2014-09-26 01:31:05 +04:00
}
if ( settings - > SupportDisplayControl )
{
char * p [ 1 ] ;
int count ;
count = 1 ;
p [ 0 ] = " disp " ;
2016-02-01 17:09:51 +03:00
if ( ! freerdp_client_add_dynamic_channel ( settings , count , p ) )
return FALSE ;
2014-09-26 01:31:05 +04:00
}
2012-11-19 02:32:18 +04:00
if ( settings - > DynamicChannelCount )
2014-08-15 03:23:48 +04:00
settings - > SupportDynamicChannels = TRUE ;
if ( settings - > SupportDynamicChannels )
2012-11-19 02:32:18 +04:00
{
2016-08-04 17:13:37 +03:00
if ( ! freerdp_client_load_static_channel_addin ( channels , settings , " drdynvc " ,
settings ) )
2016-02-01 17:09:51 +03:00
return FALSE ;
2012-11-19 02:32:18 +04:00
}
2016-02-01 17:09:51 +03:00
return TRUE ;
2012-11-09 04:01:52 +04:00
}