Coverage Report

Created: 2026-08-31 06:29

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/FreeRDP/libfreerdp/core/connection.c
Line
Count
Source
1
/*
2
 * FreeRDP: A Remote Desktop Protocol Implementation
3
 * Connection Sequence
4
 *
5
 * Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
6
 * Copyright 2015 Thincast Technologies GmbH
7
 * Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
8
 * Copyright 2023 Armin Novak <anovak@thincast.com>
9
 * Copyright 2023 Thincast Technologies GmbH
10
 *
11
 * Licensed under the Apache License, Version 2.0 (the "License");
12
 * you may not use this file except in compliance with the License.
13
 * You may obtain a copy of the License at
14
 *
15
 *     http://www.apache.org/licenses/LICENSE-2.0
16
 *
17
 * Unless required by applicable law or agreed to in writing, software
18
 * distributed under the License is distributed on an "AS IS" BASIS,
19
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
 * See the License for the specific language governing permissions and
21
 * limitations under the License.
22
 */
23
24
#include <freerdp/config.h>
25
26
#include "settings.h"
27
28
#include "info.h"
29
#include "input.h"
30
#include "rdp.h"
31
#include "peer.h"
32
33
#include "connection.h"
34
#include "transport.h"
35
36
#include <winpr/crt.h>
37
#include <winpr/crypto.h>
38
#include <winpr/ssl.h>
39
40
#include <freerdp/log.h>
41
#include <freerdp/error.h>
42
#include <freerdp/listener.h>
43
44
#include "../cache/cache.h"
45
#include "../cache/pointer.h"
46
#include "../crypto/crypto.h"
47
#include "../crypto/privatekey.h"
48
#include "../crypto/certificate.h"
49
#include "gateway/arm.h"
50
51
#include "utils.h"
52
53
0
#define TAG FREERDP_TAG("core.connection")
54
55
/**
56
 *                                      Connection Sequence
57
 *     client                                                                    server
58
 *        |                                                                         |
59
 *        |-----------------------X.224 Connection Request PDU--------------------->|
60
 *        |<----------------------X.224 Connection Confirm PDU----------------------|
61
 *        |-------MCS Connect-Initial PDU with GCC Conference Create Request------->|
62
 *        |<-----MCS Connect-Response PDU with GCC Conference Create Response-------|
63
 *        |------------------------MCS Erect Domain Request PDU-------------------->|
64
 *        |------------------------MCS Attach User Request PDU--------------------->|
65
 *        |<-----------------------MCS Attach User Confirm PDU----------------------|
66
 *        |------------------------MCS Channel Join Request PDU-------------------->|
67
 *        |<-----------------------MCS Channel Join Confirm PDU---------------------|
68
 *        |----------------------------Security Exchange PDU----------------------->|
69
 *        |-------------------------------Client Info PDU-------------------------->|
70
 *        |<---------------------License Error PDU - Valid Client-------------------|
71
 *        |<-----------------------------Demand Active PDU--------------------------|
72
 *        |------------------------------Confirm Active PDU------------------------>|
73
 *        |-------------------------------Synchronize PDU-------------------------->|
74
 *        |---------------------------Control PDU - Cooperate---------------------->|
75
 *        |------------------------Control PDU - Request Control------------------->|
76
 *        |--------------------------Persistent Key List PDU(s)-------------------->|
77
 *        |--------------------------------Font List PDU--------------------------->|
78
 *        |<------------------------------Synchronize PDU---------------------------|
79
 *        |<--------------------------Control PDU - Cooperate-----------------------|
80
 *        |<-----------------------Control PDU - Granted Control--------------------|
81
 *        |<-------------------------------Font Map PDU-----------------------------|
82
 *
83
 */
84
85
/**
86
 *
87
 * Connection Sequence
88
 *
89
 * 1. Connection Initiation: The client initiates the connection by sending the server a
90
 *  Class 0 X.224 Connection Request PDU (section 2.2.1.1). The server responds with a
91
 *  Class 0 X.224 Connection Confirm PDU (section 2.2.1.2). From this point, all subsequent
92
 *  data sent between client and server is wrapped in an X.224 Data Protocol Data Unit (PDU).
93
 *
94
 * 2. Basic Settings Exchange: Basic settings are exchanged between the client and server by
95
 *  using the MCS Connect Initial PDU (section 2.2.1.3) and MCS Connect Response PDU
96
 *(section 2.2.1.4). The Connect Initial PDU contains a Generic Conference Control (GCC) Conference
97
 *Create Request, while the Connect Response PDU contains a GCC Conference Create Response. These
98
 *two GCC packets contain concatenated blocks of settings data (such as core data, security data,
99
 *and network data) which are read by client and server.
100
 *
101
 * 3. Channel Connection: The client sends an MCS Erect Domain Request PDU (section 2.2.1.5),
102
 *  followed by an MCS Attach User Request PDU (section 2.2.1.6) to attach the primary user identity
103
 *  to the MCS domain. The server responds with an MCS Attach User Confirm PDU (section 2.2.1.7)
104
 *  containing the User Channel ID. The client then proceeds to join the user channel, the
105
 *  input/output (I/O) channel, and all of the static virtual channels (the I/O and static virtual
106
 *  channel IDs are obtained from the data embedded in the GCC packets) by using multiple MCS
107
 *Channel Join Request PDUs (section 2.2.1.8). The server confirms each channel with an MCS Channel
108
 *Join Confirm PDU (section 2.2.1.9). (The client only sends a Channel Join Request after it has
109
 *received the Channel Join Confirm for the previously sent request.)
110
 *
111
 *  From this point, all subsequent data sent from the client to the server is wrapped in an MCS
112
 *Send Data Request PDU, while data sent from the server to the client is wrapped in an MCS Send
113
 *Data Indication PDU. This is in addition to the data being wrapped by an X.224 Data PDU.
114
 *
115
 * 4. RDP Security Commencement: If Standard RDP Security mechanisms (section 5.3) are being
116
 *employed and encryption is in force (this is determined by examining the data embedded in the GCC
117
 *Conference Create Response packet) then the client sends a Security Exchange PDU
118
 *(section 2.2.1.10) containing an encrypted 32-byte random number to the server. This random number
119
 *is encrypted with the public key of the server as described in section 5.3.4.1 (the server's
120
 *public key, as well as a 32-byte server-generated random number, are both obtained from the data
121
 *embedded in the GCC Conference Create Response packet). The client and server then utilize the two
122
 *32-byte random numbers to generate session keys which are used to encrypt and validate the
123
 *integrity of subsequent RDP traffic.
124
 *
125
 *  From this point, all subsequent RDP traffic can be encrypted and a security header is included
126
 *with the data if encryption is in force. (The Client Info PDU (section 2.2.1.11) and licensing
127
 *PDUs ([MS-RDPELE] section 2.2.2) are an exception in that they always have a security header). The
128
 *Security Header follows the X.224 and MCS Headers and indicates whether the attached data is
129
 *encrypted. Even if encryption is in force, server-to-client traffic may not always be encrypted,
130
 *while client-to-server traffic must always be encrypted (encryption of licensing PDUs is optional,
131
 *however).
132
 *
133
 * 5. Secure Settings Exchange: Secure client data (such as the username, password, and
134
 *auto-reconnect cookie) is sent to the server by using the Client Info PDU (section 2.2.1.11).
135
 *
136
 * 6. Optional Connect-Time Auto-Detection: During the optional connect-time auto-detect phase the
137
 *goal is to determine characteristics of the network, such as the round-trip latency time and the
138
 *bandwidth of the link between the server and client. This is accomplished by exchanging a
139
 *collection of PDUs (specified in section 2.2.1.4) over a predetermined period of time with enough
140
 *data to ensure that the results are statistically relevant.
141
 *
142
 * 7. Licensing: The goal of the licensing exchange is to transfer a license from the server to
143
 *the client. The client stores this license and on subsequent connections sends the license to the
144
 *server for validation. However, in some situations the client may not be issued a license to
145
 *store. In effect, the packets exchanged during this phase of the protocol depend on the licensing
146
 *mechanisms employed by the server. Within the context of this document, it is assumed that the
147
 *client will not be issued a license to store. For details regarding more advanced licensing
148
 *scenarios that take place during the Licensing Phase, see [MS-RDPELE] section 1.3.
149
 *
150
 * 8. Optional Multitransport Bootstrapping: After the connection has been secured and the
151
 *Licensing Phase has run to completion, the server can choose to initiate multitransport
152
 *connections ([MS-RDPEMT] section 1.3). The Initiate Multitransport Request PDU (section 2.2.15.1)
153
 *is sent by the server to the client and results in the out-of-band creation of a multitransport
154
 *connection using messages from the RDP-UDP, TLS, DTLS, and multitransport protocols ([MS-RDPEMT]
155
 *section 1.3.1).
156
 *
157
 * 9. Capabilities Exchange: The server sends the set of capabilities it supports to the client in
158
 *a Demand Active PDU (section 2.2.1.13.1). The client responds with its capabilities by sending a
159
 *Confirm Active PDU (section 2.2.1.13.2).
160
 *
161
 * 10.  Connection Finalization: The client and server exchange PDUs to finalize the connection
162
 *details. The client-to-server PDUs sent during this phase have no dependencies on any of the
163
 *server-to-client PDUs; they may be sent as a single batch, provided that sequencing is maintained.
164
 *
165
 *  - The Client Synchronize PDU (section 2.2.1.14) is sent after transmitting the Confirm Active
166
 *PDU.
167
 *  - The Client Control (Cooperate) PDU (section 2.2.1.15) is sent after transmitting the Client
168
 *Synchronize PDU.
169
 *  - The Client Control (Request Control) PDU (section 2.2.1.16) is sent after transmitting the
170
 *Client Control (Cooperate) PDU.
171
 *  - The optional Persistent Key List PDUs (section 2.2.1.17) are sent after transmitting the
172
 *Client Control (Request Control) PDU.
173
 *  - The Font List PDU (section 2.2.1.18) is sent after transmitting the Persistent Key List PDUs
174
 *or, if the Persistent Key List PDUs were not sent, it is sent after transmitting the Client
175
 *Control (Request Control) PDU (section 2.2.1.16).
176
 *
177
 *  The server-to-client PDUs sent during the Connection Finalization Phase have dependencies on the
178
 *client-to-server PDUs.
179
 *
180
 *  - The optional Monitor Layout PDU (section 2.2.12.1) has no dependency on any client-to-server
181
 *PDUs and is sent after the Demand Active PDU.
182
 *  - The Server Synchronize PDU (section 2.2.1.19) is sent in response to the Confirm Active PDU.
183
 *  - The Server Control (Cooperate) PDU (section 2.2.1.20) is sent after transmitting the Server
184
 *Synchronize PDU.
185
 *  - The Server Control (Granted Control) PDU (section 2.2.1.21) is sent in response to the Client
186
 *Control (Request Control) PDU.
187
 *  - The Font Map PDU (section 2.2.1.22) is sent in response to the Font List PDU.
188
 *
189
 *  Once the client has sent the Confirm Active PDU, it can start sending mouse and keyboard input
190
 *to the server, and upon receipt of the Font List PDU the server can start sending graphics output
191
 *to the client.
192
 *
193
 *  Besides input and graphics data, other data that can be exchanged between client and server
194
 *after the connection has been finalized includes connection management information and virtual
195
 *channel messages (exchanged between client-side plug-ins and server-side applications).
196
 */
197
198
static BOOL rdp_set_state(rdpRdp* rdp, CONNECTION_STATE state);
199
200
static BOOL rdp_client_reset_codecs(rdpContext* context)
201
0
{
202
0
  rdpSettings* settings = nullptr;
203
204
0
  if (!context || !context->settings)
205
0
    return FALSE;
206
207
0
  settings = context->settings;
208
209
0
  if (!freerdp_settings_get_bool(settings, FreeRDP_DeactivateClientDecoding))
210
0
  {
211
0
    const UINT32 flags = freerdp_settings_get_uint32(settings, FreeRDP_ThreadingFlags);
212
0
    freerdp_client_codecs_free(context->codecs);
213
0
    context->codecs = freerdp_client_codecs_new(flags);
214
215
0
    if (!context->codecs)
216
0
      return FALSE;
217
218
0
    if (!freerdp_client_codecs_prepare(context->codecs,
219
0
                                       freerdp_settings_get_codecs_flags(settings),
220
0
                                       settings->DesktopWidth, settings->DesktopHeight))
221
0
      return FALSE;
222
223
/* Runtime H264 detection. (only available if dynamic backend loading is defined)
224
 * If no backend is available disable it before the channel is loaded.
225
 */
226
#if defined(WITH_GFX_H264) && defined(WITH_OPENH264_LOADING)
227
    if (!context->codecs->h264)
228
    {
229
      settings->GfxH264 = FALSE;
230
      settings->GfxAVC444 = FALSE;
231
      settings->GfxAVC444v2 = FALSE;
232
    }
233
#endif
234
0
  }
235
236
0
  return TRUE;
237
0
}
238
239
static BOOL rdp_client_wait_for_activation(rdpRdp* rdp)
240
0
{
241
0
  BOOL timedout = FALSE;
242
0
  WINPR_ASSERT(rdp);
243
244
0
  const rdpSettings* settings = rdp->settings;
245
0
  WINPR_ASSERT(settings);
246
247
0
  UINT64 now = GetTickCount64();
248
0
  UINT64 dueDate = now + freerdp_settings_get_uint32(settings, FreeRDP_TcpAckTimeout);
249
250
0
  for (; (now < dueDate) && !timedout; now = GetTickCount64())
251
0
  {
252
0
    HANDLE events[MAXIMUM_WAIT_OBJECTS] = WINPR_C_ARRAY_INIT;
253
0
    DWORD wstatus = 0;
254
0
    DWORD nevents = freerdp_get_event_handles(rdp->context, events, ARRAYSIZE(events));
255
0
    if (!nevents)
256
0
    {
257
0
      WLog_ERR(TAG, "error retrieving connection events");
258
0
      return FALSE;
259
0
    }
260
261
0
    const UINT64 timeout = (dueDate - now);
262
0
    WINPR_ASSERT(timeout <= UINT32_MAX);
263
0
    wstatus = WaitForMultipleObjectsEx(nevents, events, FALSE, (UINT32)timeout, TRUE);
264
0
    switch (wstatus)
265
0
    {
266
0
      case WAIT_TIMEOUT:
267
        /* will make us quit with a timeout */
268
0
        timedout = TRUE;
269
0
        break;
270
0
      case WAIT_ABANDONED:
271
0
      case WAIT_FAILED:
272
0
        return FALSE;
273
0
      case WAIT_IO_COMPLETION:
274
0
        break;
275
0
      case WAIT_OBJECT_0:
276
0
      default:
277
        /* handles all WAIT_OBJECT_0 + [0 .. MAXIMUM_WAIT_OBJECTS-1] cases */
278
0
        if (rdp_check_fds(rdp) < 0)
279
0
        {
280
0
          freerdp_set_last_error_if_not(rdp->context,
281
0
                                        FREERDP_ERROR_CONNECT_TRANSPORT_FAILED);
282
0
          return FALSE;
283
0
        }
284
0
        break;
285
0
    }
286
287
0
    if (rdp_is_active_state(rdp))
288
0
      return TRUE;
289
0
  }
290
291
0
  WLog_ERR(TAG, "Timeout waiting for activation");
292
0
  freerdp_set_last_error_if_not(rdp->context, FREERDP_ERROR_CONNECT_ACTIVATION_TIMEOUT);
293
0
  return FALSE;
294
0
}
295
/**
296
 * Establish RDP Connection based on the settings given in the 'rdp' parameter.
297
 * msdn{cc240452}
298
 * @param rdp RDP module
299
 * @return true if the connection succeeded. FALSE otherwise.
300
 */
301
302
BOOL rdp_client_connect(rdpRdp* rdp)
303
0
{
304
0
  UINT32 SelectedProtocol = 0;
305
0
  BOOL status = 0;
306
  /* make sure SSL is initialize for earlier enough for crypto, by taking advantage of winpr SSL
307
   * FIPS flag for openssl initialization */
308
0
  DWORD flags = WINPR_SSL_INIT_DEFAULT;
309
310
0
  WINPR_ASSERT(rdp);
311
312
0
  rdpSettings* settings = rdp->settings;
313
0
  WINPR_ASSERT(settings);
314
315
0
  if (!rdp_client_reset_codecs(rdp->context))
316
0
    return FALSE;
317
318
0
  if (settings->FIPSMode)
319
0
    flags |= WINPR_SSL_INIT_ENABLE_FIPS;
320
321
0
  if (!winpr_InitializeSSL(flags))
322
0
    return FALSE;
323
324
0
  rdp_log_build_warnings(rdp);
325
326
  /* FIPS Mode forces the following and overrides the following(by happening later
327
   * in the command line processing):
328
   * 1. Forces the only supported RDP encryption method to be FIPS.
329
   * 2. Disables NTLM authentication (not FIPS compliant due to MD4/RC4).
330
   * 3. Disables RDP Security if 3DES is not available in the crypto provider. */
331
0
  if (settings->FIPSMode || winpr_FIPSMode())
332
0
  {
333
334
0
    settings->EncryptionMethods = ENCRYPTION_METHOD_FIPS;
335
336
0
    if (!settings->AuthenticationPackageList)
337
0
    {
338
0
      if (!freerdp_settings_set_string(settings, FreeRDP_AuthenticationPackageList, "!ntlm"))
339
0
        return FALSE;
340
0
    }
341
342
0
    const BYTE key[WINPR_CIPHER_MAX_KEY_LENGTH] = WINPR_C_ARRAY_INIT;
343
0
    const BYTE iv[WINPR_CIPHER_MAX_IV_LENGTH] = WINPR_C_ARRAY_INIT;
344
0
    WINPR_CIPHER_CTX* ctx = winpr_Cipher_NewEx(WINPR_CIPHER_DES_EDE3_CBC, WINPR_ENCRYPT, key,
345
0
                                               sizeof(key), iv, sizeof(iv));
346
0
    if (ctx)
347
0
    {
348
0
      winpr_Cipher_Free(ctx);
349
0
    }
350
0
    else
351
0
    {
352
0
      settings->RdpSecurity = FALSE;
353
0
    }
354
0
  }
355
356
0
  UINT32 TcpConnectTimeout = freerdp_settings_get_uint32(settings, FreeRDP_TcpConnectTimeout);
357
0
  if (settings->GatewayArmTransport)
358
0
  {
359
0
    if (!arm_resolve_endpoint(rdp->log, rdp->context, TcpConnectTimeout))
360
0
    {
361
0
      WLog_ERR(TAG, "error retrieving ARM configuration");
362
0
      return FALSE;
363
0
    }
364
0
  }
365
366
0
  const char* hostname = settings->ServerHostname;
367
0
  if (!hostname)
368
0
  {
369
0
    WLog_ERR(TAG, "Missing hostname, can not connect to nullptr target");
370
0
    return FALSE;
371
0
  }
372
373
0
  const UINT32 port = settings->ServerPort;
374
0
  WINPR_ASSERT(port <= UINT32_MAX);
375
376
0
  if (!rdp->nego)
377
0
    return FALSE;
378
379
0
  nego_init(rdp->nego);
380
0
  nego_set_target(rdp->nego, hostname, (UINT16)port);
381
382
0
  if (settings->GatewayEnabled)
383
0
  {
384
0
    char* user = nullptr;
385
0
    char* domain = nullptr;
386
0
    size_t user_length = 0;
387
388
0
    if (settings->Username)
389
0
    {
390
0
      user = settings->Username;
391
0
      user_length = strlen(settings->Username);
392
0
    }
393
394
0
    if (settings->Domain)
395
0
      domain = settings->Domain;
396
0
    else
397
0
      domain = settings->ComputerName;
398
399
0
    const size_t domain_length = strlen(domain);
400
0
    const size_t cookie_length = domain_length + 1 + user_length;
401
0
    char* cookie = malloc(cookie_length + 1);
402
403
0
    if (!cookie)
404
0
      return FALSE;
405
406
0
    CopyMemory(cookie, domain, domain_length);
407
0
    WINPR_ASSERT(domain_length <= UINT32_MAX);
408
0
    CharUpperBuffA(cookie, (UINT32)domain_length);
409
0
    cookie[domain_length] = '\\';
410
411
0
    if (settings->Username)
412
0
      CopyMemory(&cookie[domain_length + 1], user, user_length);
413
414
0
    cookie[cookie_length] = '\0';
415
0
    status = nego_set_cookie(rdp->nego, cookie);
416
0
    free(cookie);
417
0
  }
418
0
  else
419
0
  {
420
0
    status = nego_set_cookie(rdp->nego, settings->Username);
421
0
  }
422
423
0
  if (!status)
424
0
    return FALSE;
425
426
0
  nego_set_childsession_enabled(rdp->nego, settings->ConnectChildSession);
427
0
  nego_set_send_preconnection_pdu(rdp->nego, settings->SendPreconnectionPdu);
428
0
  nego_set_preconnection_id(rdp->nego, settings->PreconnectionId);
429
0
  nego_set_preconnection_blob(rdp->nego, settings->PreconnectionBlob);
430
0
  nego_set_negotiation_enabled(rdp->nego, settings->NegotiateSecurityLayer);
431
0
  nego_set_restricted_admin_mode_required(rdp->nego, settings->RestrictedAdminModeRequired);
432
0
  nego_set_RCG_required(rdp->nego, settings->RemoteCredentialGuard);
433
0
  nego_set_gateway_enabled(rdp->nego, settings->GatewayEnabled);
434
0
  nego_set_gateway_bypass_local(rdp->nego, settings->GatewayBypassLocal);
435
0
  nego_enable_rdp(rdp->nego, settings->RdpSecurity);
436
0
  nego_enable_tls(rdp->nego, settings->TlsSecurity);
437
0
  nego_enable_nla(rdp->nego, settings->NlaSecurity);
438
0
  nego_enable_ext(rdp->nego, settings->ExtSecurity);
439
0
  nego_enable_rdstls(rdp->nego, settings->RdstlsSecurity);
440
0
  nego_enable_aad(rdp->nego, settings->AadSecurity);
441
442
0
  if (settings->MstscCookieMode)
443
0
    settings->CookieMaxLength = MSTSC_COOKIE_MAX_LENGTH;
444
445
0
  nego_set_cookie_max_length(rdp->nego, settings->CookieMaxLength);
446
447
0
  if (settings->LoadBalanceInfo && (settings->LoadBalanceInfoLength > 0))
448
0
  {
449
0
    if (!nego_set_routing_token(rdp->nego, settings->LoadBalanceInfo,
450
0
                                settings->LoadBalanceInfoLength))
451
0
      return FALSE;
452
0
  }
453
454
0
  if (!freerdp_settings_get_bool(settings, FreeRDP_TransportDumpReplay))
455
0
  {
456
0
    if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_NEGO))
457
0
      return FALSE;
458
459
0
    if (!nego_connect(rdp->nego))
460
0
    {
461
0
      if (!freerdp_get_last_error(rdp->context))
462
0
      {
463
0
        freerdp_set_last_error_log(rdp->context,
464
0
                                   FREERDP_ERROR_SECURITY_NEGO_CONNECT_FAILED);
465
0
        WLog_ERR(TAG, "Error: protocol security negotiation or connection failure");
466
0
      }
467
468
0
      return FALSE;
469
0
    }
470
471
0
    SelectedProtocol = nego_get_selected_protocol(rdp->nego);
472
473
0
    if ((SelectedProtocol & PROTOCOL_SSL) || (SelectedProtocol == PROTOCOL_RDP) ||
474
0
        (SelectedProtocol == PROTOCOL_RDSTLS))
475
0
    {
476
0
      wStream s = WINPR_C_ARRAY_INIT;
477
478
0
      if ((settings->Username != nullptr) &&
479
0
          ((freerdp_settings_get_string(settings, FreeRDP_Password) != nullptr) ||
480
0
           (settings->RedirectionPassword != nullptr &&
481
0
            settings->RedirectionPasswordLength > 0)))
482
0
        settings->AutoLogonEnabled = TRUE;
483
484
0
      if (rdp_recv_callback(rdp->transport, &s, rdp) < 0)
485
0
        return FALSE;
486
0
    }
487
488
0
    if (!transport_set_blocking_mode(rdp->transport, FALSE))
489
0
      return FALSE;
490
0
  }
491
0
  else
492
0
  {
493
0
    if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_MCS_CREATE_REQUEST))
494
0
      return FALSE;
495
0
  }
496
497
  /* everything beyond this point is event-driven and non blocking */
498
0
  if (!transport_set_recv_callbacks(rdp->transport, rdp_recv_callback, rdp))
499
0
    return FALSE;
500
501
0
  return rdp_client_wait_for_activation(rdp);
502
0
}
503
504
BOOL rdp_client_disconnect(rdpRdp* rdp)
505
0
{
506
0
  rdpContext* context = nullptr;
507
508
0
  if (!rdp || !rdp->settings || !rdp->context)
509
0
    return FALSE;
510
511
0
  context = rdp->context;
512
513
0
  if (rdp->nego)
514
0
  {
515
0
    if (!nego_disconnect(rdp->nego))
516
0
      return FALSE;
517
0
  }
518
519
0
  if (!transport_disconnect(rdp->transport))
520
0
    return FALSE;
521
522
0
  if (!rdp_reset(rdp))
523
0
    return FALSE;
524
525
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_INITIAL))
526
0
    return FALSE;
527
528
0
  if (context->channels)
529
0
  {
530
0
    if (freerdp_channels_disconnect(context->channels, context->instance) != CHANNEL_RC_OK)
531
0
      return FALSE;
532
0
  }
533
534
0
  freerdp_client_codecs_free(context->codecs);
535
0
  context->codecs = nullptr;
536
0
  return TRUE;
537
0
}
538
539
BOOL rdp_client_disconnect_and_clear(rdpRdp* rdp)
540
0
{
541
0
  rdpContext* context = nullptr;
542
543
0
  if (!rdp_client_disconnect(rdp))
544
0
    return FALSE;
545
546
0
  WINPR_ASSERT(rdp);
547
548
0
  context = rdp->context;
549
0
  WINPR_ASSERT(context);
550
551
0
  if (freerdp_get_last_error(context) == FREERDP_ERROR_CONNECT_CANCELLED)
552
0
    return FALSE;
553
554
0
  context->LastError = FREERDP_ERROR_SUCCESS;
555
0
  clearChannelError(context);
556
0
  return utils_reset_abort(rdp);
557
0
}
558
559
static BOOL rdp_client_reconnect_channels(rdpRdp* rdp, BOOL redirect)
560
0
{
561
0
  BOOL status = FALSE;
562
0
  rdpContext* context = nullptr;
563
564
0
  if (!rdp || !rdp->context || !rdp->context->channels)
565
0
    return FALSE;
566
567
0
  context = rdp->context;
568
569
0
  if (context->instance->ConnectionCallbackState == CLIENT_STATE_INITIAL)
570
0
    return FALSE;
571
572
0
  if (context->instance->ConnectionCallbackState == CLIENT_STATE_PRECONNECT_PASSED)
573
0
  {
574
0
    if (redirect)
575
0
      return TRUE;
576
577
0
    pointer_cache_register_callbacks(context->update);
578
579
0
    if (!cache_resize(context))
580
0
      return FALSE;
581
582
0
    if (!IFCALLRESULT(FALSE, context->instance->PostConnect, context->instance))
583
0
      return FALSE;
584
585
0
    context->instance->ConnectionCallbackState = CLIENT_STATE_POSTCONNECT_PASSED;
586
0
  }
587
588
0
  if (context->instance->ConnectionCallbackState == CLIENT_STATE_POSTCONNECT_PASSED)
589
0
    status =
590
0
        (freerdp_channels_post_connect(context->channels, context->instance) == CHANNEL_RC_OK);
591
592
0
  return status;
593
0
}
594
595
static BOOL rdp_client_redirect_resolvable(const char* host)
596
0
{
597
0
  struct addrinfo* result = freerdp_tcp_resolve_host(host, -1, 0);
598
599
0
  if (!result)
600
0
    return FALSE;
601
602
0
  freeaddrinfo(result);
603
0
  return TRUE;
604
0
}
605
606
static BOOL rdp_client_redirect_try_fqdn(rdpSettings* settings)
607
0
{
608
0
  if (settings->RedirectionFlags & LB_TARGET_FQDN)
609
0
  {
610
0
    if (settings->GatewayEnabled ||
611
0
        rdp_client_redirect_resolvable(settings->RedirectionTargetFQDN))
612
0
    {
613
0
      return (freerdp_settings_set_string(settings, FreeRDP_ServerHostname,
614
0
                                          settings->RedirectionTargetFQDN));
615
0
    }
616
0
  }
617
618
0
  return FALSE;
619
0
}
620
621
static BOOL rdp_client_redirect_try_ip(rdpSettings* settings)
622
0
{
623
0
  if (settings->RedirectionFlags & LB_TARGET_NET_ADDRESS)
624
0
  {
625
0
    return (freerdp_settings_set_string(settings, FreeRDP_ServerHostname,
626
0
                                        settings->TargetNetAddress));
627
0
  }
628
629
0
  return FALSE;
630
0
}
631
632
static BOOL rdp_client_redirect_try_netbios(rdpSettings* settings)
633
0
{
634
0
  if (settings->RedirectionFlags & LB_TARGET_NETBIOS_NAME)
635
0
  {
636
0
    if (settings->GatewayEnabled ||
637
0
        rdp_client_redirect_resolvable(settings->RedirectionTargetNetBiosName))
638
0
    {
639
0
      return (freerdp_settings_set_string(settings, FreeRDP_ServerHostname,
640
0
                                          settings->RedirectionTargetNetBiosName));
641
0
    }
642
0
  }
643
644
0
  return FALSE;
645
0
}
646
647
BOOL rdp_client_redirect(rdpRdp* rdp)
648
0
{
649
0
  BOOL status = 0;
650
0
  rdpSettings* settings = nullptr;
651
652
0
  if (!rdp_client_disconnect_and_clear(rdp))
653
0
    return FALSE;
654
655
  /* Only disconnect & close the channels here.
656
   * they will be discarded and recreated after the new settings have been applied. */
657
0
  freerdp_channels_disconnect(rdp->context->channels, rdp->context->instance);
658
0
  freerdp_channels_close(rdp->context->channels, rdp->context->instance);
659
660
0
  if (rdp_redirection_apply_settings(rdp) != 0)
661
0
    return FALSE;
662
663
0
  WINPR_ASSERT(rdp);
664
665
0
  settings = rdp->settings;
666
0
  WINPR_ASSERT(settings);
667
668
0
  if ((settings->RedirectionFlags & LB_LOAD_BALANCE_INFO) == 0)
669
0
  {
670
0
    BOOL haveRedirectAddress = FALSE;
671
0
    UINT32 redirectionMask = settings->RedirectionPreferType;
672
673
0
    do
674
0
    {
675
0
      const BOOL tryFQDN = (redirectionMask & 0x01) == 0;
676
0
      const BOOL tryNetAddress = (redirectionMask & 0x02) == 0;
677
0
      const BOOL tryNetbios = (redirectionMask & 0x04) == 0;
678
679
0
      if (tryFQDN && !haveRedirectAddress)
680
0
        haveRedirectAddress = rdp_client_redirect_try_fqdn(settings);
681
682
0
      if (tryNetAddress && !haveRedirectAddress)
683
0
        haveRedirectAddress = rdp_client_redirect_try_ip(settings);
684
685
0
      if (tryNetbios && !haveRedirectAddress)
686
0
        haveRedirectAddress = rdp_client_redirect_try_netbios(settings);
687
688
0
      redirectionMask >>= 3;
689
0
    } while (!haveRedirectAddress && (redirectionMask != 0));
690
0
  }
691
692
0
  if (settings->RedirectionFlags & LB_USERNAME)
693
0
  {
694
0
    if (!freerdp_settings_set_string(
695
0
            settings, FreeRDP_Username,
696
0
            freerdp_settings_get_string(settings, FreeRDP_RedirectionUsername)))
697
0
      return FALSE;
698
0
  }
699
700
0
  if (settings->RedirectionFlags & LB_DOMAIN)
701
0
  {
702
0
    if (!freerdp_settings_set_string(
703
0
            settings, FreeRDP_Domain,
704
0
            freerdp_settings_get_string(settings, FreeRDP_RedirectionDomain)))
705
0
      return FALSE;
706
0
  }
707
708
0
  settings->RdstlsSecurity = ((settings->RedirectionFlags & LB_PASSWORD_IS_PK_ENCRYPTED) != 0);
709
710
0
  WINPR_ASSERT(rdp->context);
711
0
  WINPR_ASSERT(rdp->context->instance);
712
0
  if (!IFCALLRESULT(TRUE, rdp->context->instance->Redirect, rdp->context->instance))
713
0
    return FALSE;
714
715
0
  BOOL ok = utils_reload_channels(rdp->context);
716
0
  if (!ok)
717
0
    return FALSE;
718
719
0
  status = rdp_client_connect(rdp);
720
721
0
  if (status)
722
0
    status = rdp_client_reconnect_channels(rdp, TRUE);
723
724
0
  return status;
725
0
}
726
727
BOOL rdp_client_reconnect(rdpRdp* rdp)
728
0
{
729
0
  if (!rdp_client_disconnect_and_clear(rdp))
730
0
    return FALSE;
731
732
0
  if (!freerdp_settings_set_bool(rdp->settings, FreeRDP_SessionHasBeenReconnected, TRUE))
733
0
    return FALSE;
734
735
0
  BOOL status = rdp_client_connect(rdp);
736
737
0
  if (status)
738
0
    status = rdp_client_reconnect_channels(rdp, FALSE);
739
740
0
  return status;
741
0
}
742
743
static const BYTE fips_ivec[8] = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
744
745
static BOOL rdp_client_establish_keys(rdpRdp* rdp)
746
0
{
747
0
  wStream* s = nullptr;
748
0
  BOOL ret = FALSE;
749
750
0
  WINPR_ASSERT(rdp);
751
0
  rdpSettings* settings = rdp->settings;
752
0
  BYTE* crypt_client_random = nullptr;
753
754
0
  WINPR_ASSERT(settings);
755
0
  if (!settings->UseRdpSecurityLayer)
756
0
  {
757
    /* no RDP encryption */
758
0
    return TRUE;
759
0
  }
760
761
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_RDP_SECURITY_COMMENCEMENT))
762
0
    return FALSE;
763
764
  /* encrypt client random */
765
0
  if (!freerdp_settings_set_pointer_len(settings, FreeRDP_ClientRandom, nullptr,
766
0
                                        CLIENT_RANDOM_LENGTH))
767
0
    return FALSE;
768
0
  if (winpr_RAND(settings->ClientRandom, settings->ClientRandomLength) < 0)
769
0
    return FALSE;
770
771
0
  const rdpCertInfo* info = freerdp_certificate_get_info(settings->RdpServerCertificate);
772
0
  if (!info)
773
0
  {
774
0
    WLog_ERR(TAG, "Failed to get rdpCertInfo from RdpServerCertificate");
775
0
    return FALSE;
776
0
  }
777
778
  /*
779
   * client random must be (bitlen / 8) + 8 - see [MS-RDPBCGR] 5.3.4.1
780
   * for details
781
   */
782
0
  crypt_client_random = calloc(info->ModulusLength, 1);
783
784
0
  if (!crypt_client_random)
785
0
    return FALSE;
786
787
0
  if (crypto_rsa_public_encrypt(settings->ClientRandom, settings->ClientRandomLength, info,
788
0
                                crypt_client_random, info->ModulusLength) < 0)
789
0
    goto end;
790
  /* send crypt client random to server */
791
0
  const size_t length = RDP_PACKET_HEADER_MAX_LENGTH + RDP_SECURITY_HEADER_LENGTH + 4ULL +
792
0
                        info->ModulusLength + 8ULL;
793
0
  if (length > UINT16_MAX)
794
0
    goto end;
795
796
0
  s = Stream_New(nullptr, length);
797
798
0
  if (!s)
799
0
  {
800
0
    WLog_ERR(TAG, "Stream_New failed!");
801
0
    goto end;
802
0
  }
803
804
0
  {
805
0
    const UINT16 sec_flags = SEC_EXCHANGE_PKT | SEC_LICENSE_ENCRYPT_SC;
806
0
    if (!rdp_write_header(rdp, s, length, MCS_GLOBAL_CHANNEL_ID, sec_flags))
807
0
      goto end;
808
0
    if (!rdp_write_security_header(rdp, s, sec_flags))
809
0
      goto end;
810
0
  }
811
812
0
  Stream_Write_UINT32(s, info->ModulusLength + 8);
813
0
  Stream_Write(s, crypt_client_random, info->ModulusLength);
814
0
  Stream_Zero(s, 8);
815
0
  Stream_SealLength(s);
816
817
0
  {
818
0
    rdpTransport* transport = freerdp_get_transport(rdp->context);
819
0
    const int status = transport_write(transport, s);
820
821
0
    if (status < 0)
822
0
      goto end;
823
0
  }
824
825
0
  rdp->do_crypt_license = TRUE;
826
827
  /* now calculate encrypt / decrypt and update keys */
828
0
  if (!security_establish_keys(rdp))
829
0
    goto end;
830
831
0
  rdp->do_crypt = TRUE;
832
833
0
  if (settings->SaltedChecksum)
834
0
    rdp->do_secure_checksum = TRUE;
835
836
0
  if (settings->EncryptionMethods == ENCRYPTION_METHOD_FIPS)
837
0
  {
838
0
    rdp->fips_encrypt =
839
0
        winpr_Cipher_NewEx(WINPR_CIPHER_DES_EDE3_CBC, WINPR_ENCRYPT, rdp->fips_encrypt_key,
840
0
                           sizeof(rdp->fips_encrypt_key), fips_ivec, sizeof(fips_ivec));
841
842
0
    if (!rdp->fips_encrypt)
843
0
    {
844
0
      WLog_ERR(TAG, "unable to allocate des3 encrypt key");
845
0
      goto end;
846
0
    }
847
848
0
    rdp->fips_decrypt =
849
0
        winpr_Cipher_NewEx(WINPR_CIPHER_DES_EDE3_CBC, WINPR_DECRYPT, rdp->fips_decrypt_key,
850
0
                           sizeof(rdp->fips_decrypt_key), fips_ivec, sizeof(fips_ivec));
851
852
0
    if (!rdp->fips_decrypt)
853
0
    {
854
0
      WLog_ERR(TAG, "unable to allocate des3 decrypt key");
855
0
      goto end;
856
0
    }
857
858
0
    ret = TRUE;
859
0
    goto end;
860
0
  }
861
862
0
  if (!rdp_reset_rc4_encrypt_keys(rdp))
863
0
    goto end;
864
0
  if (!rdp_reset_rc4_decrypt_keys(rdp))
865
0
    goto end;
866
867
0
  ret = TRUE;
868
0
end:
869
0
  Stream_Free(s, TRUE);
870
0
  free(crypt_client_random);
871
872
0
  if (!ret)
873
0
  {
874
0
    winpr_Cipher_Free(rdp->fips_decrypt);
875
0
    winpr_Cipher_Free(rdp->fips_encrypt);
876
0
    rdp->fips_decrypt = nullptr;
877
0
    rdp->fips_encrypt = nullptr;
878
879
0
    rdp_free_rc4_decrypt_keys(rdp);
880
0
    rdp_free_rc4_encrypt_keys(rdp);
881
0
  }
882
883
0
  return ret;
884
0
}
885
886
static BOOL rdp_update_client_random(rdpSettings* settings, const BYTE* crypt_random,
887
                                     size_t crypt_random_len)
888
0
{
889
0
  const size_t length = 32;
890
0
  WINPR_ASSERT(settings);
891
892
0
  const rdpPrivateKey* rsa = freerdp_settings_get_pointer(settings, FreeRDP_RdpServerRsaKey);
893
0
  WINPR_ASSERT(rsa);
894
895
0
  const rdpCertInfo* cinfo = freerdp_key_get_info(rsa);
896
0
  WINPR_ASSERT(cinfo);
897
898
0
  if (crypt_random_len != cinfo->ModulusLength + 8)
899
0
  {
900
0
    WLog_ERR(TAG, "invalid encrypted client random length");
901
0
    return FALSE;
902
0
  }
903
0
  if (!freerdp_settings_set_pointer_len(settings, FreeRDP_ClientRandom, nullptr, length))
904
0
    return FALSE;
905
906
0
  BYTE* client_random = freerdp_settings_get_pointer_writable(settings, FreeRDP_ClientRandom);
907
0
  WINPR_ASSERT(client_random);
908
0
  return crypto_rsa_private_decrypt(crypt_random, crypt_random_len - 8, rsa, client_random,
909
0
                                    length) > 0;
910
0
}
911
912
BOOL rdp_server_establish_keys(rdpRdp* rdp, wStream* s)
913
0
{
914
0
  UINT32 rand_len = 0;
915
0
  UINT16 channel_id = 0;
916
0
  UINT16 length = 0;
917
0
  UINT16 sec_flags = 0;
918
0
  BOOL ret = FALSE;
919
920
0
  WINPR_ASSERT(rdp);
921
922
0
  if (!rdp->settings->UseRdpSecurityLayer)
923
0
  {
924
    /* No RDP Security. */
925
0
    return TRUE;
926
0
  }
927
928
0
  if (!rdp_read_header(rdp, s, &length, &channel_id))
929
0
    return FALSE;
930
931
0
  if (!rdp_read_security_header(rdp, s, &sec_flags, nullptr))
932
0
  {
933
0
    WLog_Print(rdp->log, WLOG_ERROR, "invalid security header");
934
0
    return FALSE;
935
0
  }
936
937
0
  if ((sec_flags & SEC_EXCHANGE_PKT) == 0)
938
0
  {
939
0
    WLog_Print(rdp->log, WLOG_ERROR, "missing SEC_EXCHANGE_PKT in security header");
940
0
    return FALSE;
941
0
  }
942
943
0
  rdp->do_crypt_license = ((sec_flags & SEC_LICENSE_ENCRYPT_SC) != 0);
944
945
0
  if (!Stream_CheckAndLogRequiredLengthWLog(rdp->log, s, 4))
946
0
    return FALSE;
947
948
0
  Stream_Read_UINT32(s, rand_len);
949
950
  /* rand_len already includes 8 bytes of padding */
951
0
  if (!Stream_CheckAndLogRequiredLengthWLog(rdp->log, s, rand_len))
952
0
    return FALSE;
953
954
0
  const BYTE* crypt_random = Stream_ConstPointer(s);
955
0
  if (!Stream_SafeSeek(s, rand_len))
956
0
    goto end;
957
0
  if (!rdp_update_client_random(rdp->settings, crypt_random, rand_len))
958
0
    goto end;
959
960
  /* now calculate encrypt / decrypt and update keys */
961
0
  if (!security_establish_keys(rdp))
962
0
    goto end;
963
964
0
  rdp->do_crypt = TRUE;
965
966
0
  if (rdp->settings->EncryptionMethods == ENCRYPTION_METHOD_FIPS)
967
0
  {
968
0
    rdp->fips_encrypt =
969
0
        winpr_Cipher_NewEx(WINPR_CIPHER_DES_EDE3_CBC, WINPR_ENCRYPT, rdp->fips_encrypt_key,
970
0
                           sizeof(rdp->fips_encrypt_key), fips_ivec, sizeof(fips_ivec));
971
972
0
    if (!rdp->fips_encrypt)
973
0
    {
974
0
      WLog_Print(rdp->log, WLOG_ERROR, "unable to allocate des3 encrypt key");
975
0
      goto end;
976
0
    }
977
978
0
    rdp->fips_decrypt =
979
0
        winpr_Cipher_NewEx(WINPR_CIPHER_DES_EDE3_CBC, WINPR_DECRYPT, rdp->fips_decrypt_key,
980
0
                           sizeof(rdp->fips_decrypt_key), fips_ivec, sizeof(fips_ivec));
981
982
0
    if (!rdp->fips_decrypt)
983
0
    {
984
0
      WLog_Print(rdp->log, WLOG_ERROR, "unable to allocate des3 decrypt key");
985
0
      goto end;
986
0
    }
987
988
0
    ret = TRUE;
989
0
    goto end;
990
0
  }
991
992
0
  if (!rdp_reset_rc4_encrypt_keys(rdp))
993
0
    goto end;
994
995
0
  if (!rdp_reset_rc4_decrypt_keys(rdp))
996
0
    goto end;
997
998
0
  ret = tpkt_ensure_stream_consumed(rdp->log, s, length);
999
0
end:
1000
1001
0
  if (!ret)
1002
0
  {
1003
0
    winpr_Cipher_Free(rdp->fips_encrypt);
1004
0
    winpr_Cipher_Free(rdp->fips_decrypt);
1005
0
    rdp->fips_encrypt = nullptr;
1006
0
    rdp->fips_decrypt = nullptr;
1007
1008
0
    rdp_free_rc4_encrypt_keys(rdp);
1009
0
    rdp_free_rc4_decrypt_keys(rdp);
1010
0
  }
1011
1012
0
  return ret;
1013
0
}
1014
1015
static BOOL rdp_client_send_client_info_and_change_state(rdpRdp* rdp)
1016
0
{
1017
0
  WINPR_ASSERT(rdp);
1018
0
  if (!rdp_client_establish_keys(rdp))
1019
0
    return FALSE;
1020
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_SECURE_SETTINGS_EXCHANGE))
1021
0
    return FALSE;
1022
0
  if (!rdp_send_client_info(rdp))
1023
0
    return FALSE;
1024
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_CONNECT_TIME_AUTO_DETECT_REQUEST))
1025
0
    return FALSE;
1026
0
  return TRUE;
1027
0
}
1028
1029
BOOL rdp_client_skip_mcs_channel_join(rdpRdp* rdp)
1030
0
{
1031
0
  WINPR_ASSERT(rdp);
1032
1033
0
  rdpMcs* mcs = rdp->mcs;
1034
0
  WINPR_ASSERT(mcs);
1035
1036
0
  mcs->userChannelJoined = TRUE;
1037
0
  mcs->globalChannelJoined = TRUE;
1038
0
  mcs->messageChannelJoined = TRUE;
1039
1040
0
  for (UINT32 i = 0; i < mcs->channelCount; i++)
1041
0
  {
1042
0
    rdpMcsChannel* cur = &mcs->channels[i];
1043
0
    WLog_DBG(TAG, " %s [%" PRIu16 "]", cur->Name, cur->ChannelId);
1044
0
    cur->joined = TRUE;
1045
0
  }
1046
1047
0
  return rdp_client_send_client_info_and_change_state(rdp);
1048
0
}
1049
1050
static BOOL rdp_client_join_channel(rdpRdp* rdp, UINT16 ChannelId)
1051
0
{
1052
0
  WINPR_ASSERT(rdp);
1053
1054
0
  rdpMcs* mcs = rdp->mcs;
1055
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_MCS_CHANNEL_JOIN_REQUEST))
1056
0
    return FALSE;
1057
0
  if (!mcs_send_channel_join_request(mcs, ChannelId))
1058
0
    return FALSE;
1059
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_MCS_CHANNEL_JOIN_RESPONSE))
1060
0
    return FALSE;
1061
0
  return TRUE;
1062
0
}
1063
1064
BOOL rdp_client_connect_mcs_channel_join_confirm(rdpRdp* rdp, wStream* s)
1065
0
{
1066
0
  UINT16 channelId = 0;
1067
0
  BOOL allJoined = TRUE;
1068
1069
0
  WINPR_ASSERT(rdp);
1070
0
  rdpMcs* mcs = rdp->mcs;
1071
1072
0
  if (!mcs_recv_channel_join_confirm(mcs, s, &channelId))
1073
0
    return FALSE;
1074
1075
0
  if (!mcs->userChannelJoined)
1076
0
  {
1077
0
    if (channelId != mcs->userId)
1078
0
    {
1079
0
      WLog_ERR(TAG, "expected user channel id %" PRIu16 ", but received %" PRIu16,
1080
0
               mcs->userId, channelId);
1081
0
      return FALSE;
1082
0
    }
1083
1084
0
    mcs->userChannelJoined = TRUE;
1085
0
    if (!rdp_client_join_channel(rdp, MCS_GLOBAL_CHANNEL_ID))
1086
0
      return FALSE;
1087
0
  }
1088
0
  else if (!mcs->globalChannelJoined)
1089
0
  {
1090
0
    if (channelId != MCS_GLOBAL_CHANNEL_ID)
1091
0
    {
1092
0
      WLog_ERR(TAG, "expected uglobalser channel id %d, but received %" PRIu16,
1093
0
               MCS_GLOBAL_CHANNEL_ID, channelId);
1094
0
      return FALSE;
1095
0
    }
1096
0
    mcs->globalChannelJoined = TRUE;
1097
1098
0
    if (mcs->messageChannelId != 0)
1099
0
    {
1100
0
      if (!rdp_client_join_channel(rdp, mcs->messageChannelId))
1101
0
        return FALSE;
1102
0
      allJoined = FALSE;
1103
0
    }
1104
0
    else
1105
0
    {
1106
0
      if (mcs->channelCount > 0)
1107
0
      {
1108
0
        const rdpMcsChannel* cur = &mcs->channels[0];
1109
0
        if (!rdp_client_join_channel(rdp, cur->ChannelId))
1110
0
          return FALSE;
1111
0
        allJoined = FALSE;
1112
0
      }
1113
0
    }
1114
0
  }
1115
0
  else if ((mcs->messageChannelId != 0) && !mcs->messageChannelJoined)
1116
0
  {
1117
0
    if (channelId != mcs->messageChannelId)
1118
0
    {
1119
0
      WLog_ERR(TAG, "expected messageChannelId=%" PRIu16 ", got %" PRIu16,
1120
0
               mcs->messageChannelId, channelId);
1121
0
      return FALSE;
1122
0
    }
1123
1124
0
    mcs->messageChannelJoined = TRUE;
1125
1126
0
    if (mcs->channelCount > 0)
1127
0
    {
1128
0
      const rdpMcsChannel* cur = &mcs->channels[0];
1129
0
      if (!rdp_client_join_channel(rdp, cur->ChannelId))
1130
0
        return FALSE;
1131
0
      allJoined = FALSE;
1132
0
    }
1133
0
  }
1134
0
  else
1135
0
  {
1136
0
    UINT32 i = 0;
1137
0
    for (; i < mcs->channelCount; i++)
1138
0
    {
1139
0
      rdpMcsChannel* cur = &mcs->channels[i];
1140
0
      if (cur->joined)
1141
0
        continue;
1142
1143
0
      if (cur->ChannelId != channelId)
1144
0
      {
1145
0
        WLog_ERR(TAG, "expected channel id %d, but received %" PRIu16,
1146
0
                 MCS_GLOBAL_CHANNEL_ID, channelId);
1147
0
        return FALSE;
1148
0
      }
1149
0
      cur->joined = TRUE;
1150
0
      break;
1151
0
    }
1152
1153
0
    if (i + 1 < mcs->channelCount)
1154
0
    {
1155
0
      const rdpMcsChannel* cur = &mcs->channels[i + 1];
1156
0
      if (!rdp_client_join_channel(rdp, cur->ChannelId))
1157
0
        return FALSE;
1158
0
      allJoined = FALSE;
1159
0
    }
1160
0
  }
1161
1162
0
  if (mcs->userChannelJoined && mcs->globalChannelJoined && allJoined)
1163
0
  {
1164
0
    if (!rdp_client_send_client_info_and_change_state(rdp))
1165
0
      return FALSE;
1166
0
  }
1167
1168
0
  return TRUE;
1169
0
}
1170
1171
state_run_t rdp_handle_message_channel(rdpRdp* rdp, wStream* s, UINT16 channelId, UINT16 length)
1172
0
{
1173
0
  WINPR_ASSERT(rdp);
1174
0
  WINPR_ASSERT(rdp->mcs);
1175
1176
0
  if (!rdp->mcs->messageChannelJoined)
1177
0
  {
1178
0
    WLog_Print(rdp->log, WLOG_WARN, "MCS message channel not joined!");
1179
0
    return STATE_RUN_FAILED;
1180
0
  }
1181
0
  const UINT16 messageChannelId = rdp->mcs->messageChannelId;
1182
0
  if (messageChannelId == 0)
1183
0
  {
1184
0
    WLog_Print(rdp->log, WLOG_WARN, "MCS message channel id == 0");
1185
0
    return STATE_RUN_FAILED;
1186
0
  }
1187
1188
0
  if ((channelId != messageChannelId) && (channelId != MCS_GLOBAL_CHANNEL_ID))
1189
0
  {
1190
0
    WLog_Print(rdp->log, WLOG_WARN,
1191
0
               "MCS message channel expected id=[%" PRIu16 "|%d], got %" PRIu16,
1192
0
               messageChannelId, MCS_GLOBAL_CHANNEL_ID, channelId);
1193
0
    return STATE_RUN_FAILED;
1194
0
  }
1195
1196
0
  UINT16 securityFlags = 0;
1197
0
  if (!rdp_read_security_header(rdp, s, &securityFlags, &length))
1198
0
    return STATE_RUN_FAILED;
1199
1200
0
  if (securityFlags & SEC_ENCRYPT)
1201
0
  {
1202
0
    if (!rdp_decrypt(rdp, s, &length, securityFlags))
1203
0
      return STATE_RUN_FAILED;
1204
0
  }
1205
1206
0
  const state_run_t rc = rdp_recv_message_channel_pdu(rdp, s, securityFlags);
1207
0
  if (state_run_success(rc))
1208
0
  {
1209
0
    if (!tpkt_ensure_stream_consumed(rdp->log, s, length))
1210
0
      return STATE_RUN_FAILED;
1211
0
  }
1212
0
  return rc;
1213
0
}
1214
1215
BOOL rdp_client_connect_auto_detect(rdpRdp* rdp, wStream* s, DWORD logLevel)
1216
0
{
1217
0
  BOOL res = TRUE;
1218
0
  WINPR_ASSERT(rdp);
1219
0
  WINPR_ASSERT(rdp->mcs);
1220
1221
0
  size_t pos = Stream_GetPosition(s);
1222
0
  UINT16 length = 0;
1223
0
  UINT16 channelId = 0;
1224
1225
0
  if (!rdp_read_header(rdp, s, &length, &channelId))
1226
0
    res = FALSE;
1227
0
  else
1228
0
  {
1229
0
    const UINT16 messageChannelId = rdp->mcs->messageChannelId;
1230
    /* If the MCS message channel has been joined... */
1231
1232
    /* Process any MCS message channel PDUs. */
1233
0
    if (rdp->mcs->messageChannelJoined && (channelId == messageChannelId))
1234
0
    {
1235
0
      const state_run_t rc = rdp_handle_message_channel(rdp, s, channelId, length);
1236
0
      res = state_run_success(rc);
1237
0
      pos = Stream_GetPosition(s);
1238
0
    }
1239
0
    else
1240
0
    {
1241
0
      wLog* log = WLog_Get(TAG);
1242
0
      WLog_Print(log, logLevel, "expected messageChannelId=%" PRIu16 ", got %" PRIu16,
1243
0
                 messageChannelId, channelId);
1244
0
      res = FALSE;
1245
0
    }
1246
0
  }
1247
1248
0
  if (!Stream_SetPosition(s, pos))
1249
0
    res = FALSE;
1250
0
  return res;
1251
0
}
1252
1253
state_run_t rdp_client_connect_license(rdpRdp* rdp, wStream* s)
1254
0
{
1255
0
  state_run_t status = STATE_RUN_FAILED;
1256
0
  LICENSE_STATE state = LICENSE_STATE_ABORTED;
1257
0
  UINT16 length = 0;
1258
0
  UINT16 channelId = 0;
1259
0
  UINT16 securityFlags = 0;
1260
1261
0
  WINPR_ASSERT(rdp);
1262
0
  if (!rdp_read_header(rdp, s, &length, &channelId))
1263
0
    return STATE_RUN_FAILED;
1264
1265
  /* there might be autodetect messages mixed in between licensing messages.
1266
   * that has been observed with 2k12 R2 and 2k19
1267
   */
1268
0
  const UINT16 messageChannelId = rdp->mcs->messageChannelId;
1269
0
  if (rdp->mcs->messageChannelJoined && (channelId == messageChannelId))
1270
0
  {
1271
0
    return rdp_handle_message_channel(rdp, s, channelId, length);
1272
0
  }
1273
1274
0
  if (!rdp_read_security_header(rdp, s, &securityFlags, &length))
1275
0
    return STATE_RUN_FAILED;
1276
1277
0
  if (securityFlags & SEC_ENCRYPT)
1278
0
  {
1279
0
    if (!rdp_decrypt(rdp, s, &length, securityFlags))
1280
0
      return STATE_RUN_FAILED;
1281
0
  }
1282
1283
0
  if (channelId != MCS_GLOBAL_CHANNEL_ID)
1284
0
    WLog_WARN(TAG, "unexpected message for channel %u, expected %d", channelId,
1285
0
              MCS_GLOBAL_CHANNEL_ID);
1286
1287
0
  if ((securityFlags & SEC_LICENSE_PKT) == 0)
1288
0
  {
1289
0
    char buffer[512] = WINPR_C_ARRAY_INIT;
1290
0
    char lbuffer[32] = WINPR_C_ARRAY_INIT;
1291
0
    WLog_ERR(TAG, "securityFlags=%s, missing required flag %s",
1292
0
             rdp_security_flag_string(securityFlags, buffer, sizeof(buffer)),
1293
0
             rdp_security_flag_string(SEC_LICENSE_PKT, lbuffer, sizeof(lbuffer)));
1294
0
    return STATE_RUN_FAILED;
1295
0
  }
1296
1297
0
  status = license_recv(rdp->license, s);
1298
1299
0
  if (state_run_failed(status))
1300
0
    return status;
1301
1302
0
  state = license_get_state(rdp->license);
1303
0
  switch (state)
1304
0
  {
1305
0
    case LICENSE_STATE_ABORTED:
1306
0
      WLog_ERR(TAG, "license connection sequence aborted.");
1307
0
      return STATE_RUN_FAILED;
1308
0
    case LICENSE_STATE_COMPLETED:
1309
0
      if (rdp->settings->MultitransportFlags)
1310
0
      {
1311
0
        if (!rdp_client_transition_to_state(
1312
0
                rdp, CONNECTION_STATE_MULTITRANSPORT_BOOTSTRAPPING_REQUEST))
1313
0
          return STATE_RUN_FAILED;
1314
0
      }
1315
0
      else
1316
0
      {
1317
0
        if (!rdp_client_transition_to_state(
1318
0
                rdp, CONNECTION_STATE_CAPABILITIES_EXCHANGE_DEMAND_ACTIVE))
1319
0
          return STATE_RUN_FAILED;
1320
0
      }
1321
0
      return STATE_RUN_SUCCESS;
1322
0
    default:
1323
0
      return STATE_RUN_SUCCESS;
1324
0
  }
1325
0
}
1326
1327
state_run_t rdp_client_connect_demand_active(rdpRdp* rdp, wStream* s)
1328
0
{
1329
0
  UINT16 length = 0;
1330
0
  UINT16 channelId = 0;
1331
0
  UINT16 pduType = 0;
1332
0
  UINT16 pduSource = 0;
1333
1334
0
  WINPR_ASSERT(rdp);
1335
0
  WINPR_ASSERT(s);
1336
0
  WINPR_ASSERT(rdp->settings);
1337
1338
0
  if (!rdp_recv_get_active_header(rdp, s, &channelId, &length))
1339
0
    return STATE_RUN_FAILED;
1340
1341
0
  if (freerdp_shall_disconnect_context(rdp->context))
1342
0
    return STATE_RUN_QUIT_SESSION;
1343
1344
0
  if (rdp->mcs->messageChannelId && (channelId == rdp->mcs->messageChannelId))
1345
0
  {
1346
0
    rdp->inPackets++;
1347
0
    return rdp_handle_message_channel(rdp, s, channelId, length);
1348
0
  }
1349
1350
0
  if (!rdp_handle_optional_rdp_decryption(rdp, s, &length, nullptr))
1351
0
    return STATE_RUN_FAILED;
1352
1353
0
  if (!rdp_read_share_control_header(rdp, s, nullptr, nullptr, &pduType, &pduSource))
1354
0
    return STATE_RUN_FAILED;
1355
1356
0
  switch (pduType)
1357
0
  {
1358
0
    case PDU_TYPE_DEMAND_ACTIVE:
1359
0
      if (!rdp_recv_demand_active(rdp, s, pduSource, length))
1360
0
        return STATE_RUN_FAILED;
1361
0
      return STATE_RUN_ACTIVE;
1362
0
    default:
1363
0
      return rdp_recv_out_of_sequence_pdu(rdp, s, pduType, length);
1364
0
  }
1365
0
}
1366
1367
state_run_t rdp_client_connect_finalize(rdpRdp* rdp)
1368
0
{
1369
0
  WINPR_ASSERT(rdp);
1370
  /**
1371
   * [MS-RDPBCGR] 1.3.1.1 - 8.
1372
   * The client-to-server PDUs sent during this phase have no dependencies on any of the
1373
   * server-to- client PDUs; they may be sent as a single batch, provided that sequencing is
1374
   * maintained.
1375
   */
1376
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_SYNC))
1377
0
    return STATE_RUN_FAILED;
1378
1379
0
  if (!rdp_send_client_synchronize_pdu(rdp))
1380
0
    return STATE_RUN_FAILED;
1381
1382
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_COOPERATE))
1383
0
    return STATE_RUN_FAILED;
1384
0
  if (!rdp_send_client_control_pdu(rdp, CTRLACTION_COOPERATE))
1385
0
    return STATE_RUN_FAILED;
1386
1387
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_REQUEST_CONTROL))
1388
0
    return STATE_RUN_FAILED;
1389
0
  if (!rdp_send_client_control_pdu(rdp, CTRLACTION_REQUEST_CONTROL))
1390
0
    return STATE_RUN_FAILED;
1391
1392
  /**
1393
   * [MS-RDPBCGR] 2.2.1.17
1394
   * Client persistent key list must be sent if a bitmap is
1395
   * stored in persistent bitmap cache or the server has advertised support for bitmap
1396
   * host cache and a deactivation reactivation sequence is *not* in progress.
1397
   */
1398
1399
0
  if (!rdp_finalize_is_flag_set(rdp, FINALIZE_DEACTIVATE_REACTIVATE) &&
1400
0
      freerdp_settings_get_bool(rdp->settings, FreeRDP_BitmapCachePersistEnabled))
1401
0
  {
1402
0
    if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_PERSISTENT_KEY_LIST))
1403
0
      return STATE_RUN_FAILED;
1404
0
    if (!rdp_send_client_persistent_key_list_pdu(rdp))
1405
0
      return STATE_RUN_FAILED;
1406
0
  }
1407
1408
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_FONT_LIST))
1409
0
    return STATE_RUN_FAILED;
1410
0
  if (!rdp_send_client_font_list_pdu(rdp, FONTLIST_FIRST | FONTLIST_LAST))
1411
0
    return STATE_RUN_FAILED;
1412
1413
0
  if (!rdp_client_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_CLIENT_SYNC))
1414
0
    return STATE_RUN_FAILED;
1415
0
  return STATE_RUN_SUCCESS;
1416
0
}
1417
1418
BOOL rdp_client_transition_to_state(rdpRdp* rdp, CONNECTION_STATE state)
1419
17.8k
{
1420
17.8k
  const char* name = rdp_state_string(state);
1421
1422
17.8k
  WINPR_ASSERT(rdp);
1423
17.8k
  WLog_Print(rdp->log, WLOG_DEBUG, "%s --> %s", rdp_get_state_string(rdp), name);
1424
1425
17.8k
  if (!rdp_set_state(rdp, state))
1426
0
    return FALSE;
1427
1428
17.8k
  switch (state)
1429
17.8k
  {
1430
0
    case CONNECTION_STATE_FINALIZATION_SYNC:
1431
0
    case CONNECTION_STATE_FINALIZATION_COOPERATE:
1432
0
    case CONNECTION_STATE_FINALIZATION_REQUEST_CONTROL:
1433
0
    case CONNECTION_STATE_FINALIZATION_PERSISTENT_KEY_LIST:
1434
0
    case CONNECTION_STATE_FINALIZATION_FONT_LIST:
1435
0
      update_reset_state(rdp->update);
1436
0
      break;
1437
1438
0
    case CONNECTION_STATE_CAPABILITIES_EXCHANGE_CONFIRM_ACTIVE:
1439
0
    {
1440
0
      ActivatedEventArgs activatedEvent = WINPR_C_ARRAY_INIT;
1441
0
      rdpContext* context = rdp->context;
1442
0
      EventArgsInit(&activatedEvent, "libfreerdp");
1443
0
      activatedEvent.firstActivation =
1444
0
          !rdp_finalize_is_flag_set(rdp, FINALIZE_DEACTIVATE_REACTIVATE);
1445
0
      if (PubSub_OnActivated(rdp->pubSub, context, &activatedEvent) < 0)
1446
0
        return FALSE;
1447
0
    }
1448
1449
0
    break;
1450
1451
17.8k
    default:
1452
17.8k
      break;
1453
17.8k
  }
1454
1455
17.8k
  {
1456
17.8k
    ConnectionStateChangeEventArgs stateEvent = WINPR_C_ARRAY_INIT;
1457
17.8k
    rdpContext* context = rdp->context;
1458
17.8k
    EventArgsInit(&stateEvent, "libfreerdp");
1459
17.8k
    stateEvent.state = WINPR_ASSERTING_INT_CAST(int32_t, rdp_get_state(rdp));
1460
17.8k
    stateEvent.active = rdp_is_active_state(rdp);
1461
17.8k
    if (PubSub_OnConnectionStateChange(rdp->pubSub, context, &stateEvent) < 0)
1462
0
      return FALSE;
1463
17.8k
  }
1464
1465
17.8k
  return TRUE;
1466
17.8k
}
1467
1468
BOOL rdp_server_accept_nego(rdpRdp* rdp, wStream* s)
1469
0
{
1470
0
  UINT32 SelectedProtocol = 0;
1471
0
  UINT32 RequestedProtocols = 0;
1472
0
  BOOL status = 0;
1473
0
  rdpSettings* settings = nullptr;
1474
0
  rdpNego* nego = nullptr;
1475
1476
0
  WINPR_ASSERT(rdp);
1477
0
  WINPR_ASSERT(s);
1478
1479
0
  settings = rdp->settings;
1480
0
  WINPR_ASSERT(settings);
1481
1482
0
  nego = rdp->nego;
1483
0
  WINPR_ASSERT(nego);
1484
1485
0
  if (!transport_set_blocking_mode(rdp->transport, TRUE))
1486
0
    return FALSE;
1487
1488
0
  if (!nego_read_request(nego, s))
1489
0
    return FALSE;
1490
1491
0
  RequestedProtocols = nego_get_requested_protocols(nego);
1492
0
  WLog_DBG(TAG, "Client Security: RDSTLS:%d NLA:%d TLS:%d RDP:%d",
1493
0
           (RequestedProtocols & PROTOCOL_RDSTLS) ? 1 : 0,
1494
0
           (RequestedProtocols & PROTOCOL_HYBRID) ? 1 : 0,
1495
0
           (RequestedProtocols & PROTOCOL_SSL) ? 1 : 0,
1496
0
           (RequestedProtocols == PROTOCOL_RDP) ? 1 : 0);
1497
0
  WLog_DBG(TAG,
1498
0
           "Server Security: RDSTLS:%" PRId32 " NLA:%" PRId32 " TLS:%" PRId32 " RDP:%" PRId32 "",
1499
0
           settings->RdstlsSecurity, settings->NlaSecurity, settings->TlsSecurity,
1500
0
           settings->RdpSecurity);
1501
1502
0
  if ((settings->RdstlsSecurity) && (RequestedProtocols & PROTOCOL_RDSTLS))
1503
0
  {
1504
0
    SelectedProtocol = PROTOCOL_RDSTLS;
1505
0
  }
1506
0
  else if ((settings->NlaSecurity) && (RequestedProtocols & PROTOCOL_HYBRID))
1507
0
  {
1508
0
    SelectedProtocol = PROTOCOL_HYBRID;
1509
0
  }
1510
0
  else if ((settings->TlsSecurity) && (RequestedProtocols & PROTOCOL_SSL))
1511
0
  {
1512
0
    SelectedProtocol = PROTOCOL_SSL;
1513
0
  }
1514
0
  else if ((settings->RdpSecurity) && (RequestedProtocols == PROTOCOL_RDP))
1515
0
  {
1516
0
    SelectedProtocol = PROTOCOL_RDP;
1517
0
  }
1518
0
  else
1519
0
  {
1520
    /*
1521
     * when here client and server aren't compatible, we select the right
1522
     * error message to return to the client in the nego failure packet
1523
     */
1524
0
    SelectedProtocol = PROTOCOL_FAILED_NEGO;
1525
1526
0
    if (settings->RdpSecurity)
1527
0
    {
1528
0
      WLog_ERR(TAG, "server supports only Standard RDP Security");
1529
0
      SelectedProtocol |= SSL_NOT_ALLOWED_BY_SERVER;
1530
0
    }
1531
0
    else
1532
0
    {
1533
0
      if (settings->NlaSecurity && !settings->TlsSecurity)
1534
0
      {
1535
0
        WLog_WARN(TAG, "server supports only NLA Security");
1536
0
        SelectedProtocol |= HYBRID_REQUIRED_BY_SERVER;
1537
0
      }
1538
0
      else
1539
0
      {
1540
0
        WLog_WARN(TAG, "server supports only a SSL based Security (TLS or NLA)");
1541
0
        SelectedProtocol |= SSL_REQUIRED_BY_SERVER;
1542
0
      }
1543
0
    }
1544
1545
0
    WLog_ERR(TAG, "Protocol security negotiation failure");
1546
0
  }
1547
1548
0
  if (!(SelectedProtocol & PROTOCOL_FAILED_NEGO))
1549
0
  {
1550
0
    WLog_DBG(TAG, "Negotiated Security: RDSTLS:%d NLA:%d TLS:%d RDP:%d",
1551
0
             (SelectedProtocol & PROTOCOL_RDSTLS) ? 1 : 0,
1552
0
             (SelectedProtocol & PROTOCOL_HYBRID) ? 1 : 0,
1553
0
             (SelectedProtocol & PROTOCOL_SSL) ? 1 : 0,
1554
0
             (SelectedProtocol == PROTOCOL_RDP) ? 1 : 0);
1555
0
  }
1556
1557
0
  if (!nego_set_selected_protocol(nego, SelectedProtocol))
1558
0
    return FALSE;
1559
1560
0
  if (!nego_send_negotiation_response(nego))
1561
0
    return FALSE;
1562
1563
0
  if ((SelectedProtocol & PROTOCOL_FAILED_NEGO) != 0)
1564
0
  {
1565
0
    WLog_ERR(TAG, "Protocol security negotiation failed, disconnecting.");
1566
0
    return FALSE;
1567
0
  }
1568
1569
0
  SelectedProtocol = nego_get_selected_protocol(nego);
1570
0
  status = FALSE;
1571
1572
0
  if (freerdp_settings_get_bool(rdp->settings, FreeRDP_VmConnectMode) &&
1573
0
      SelectedProtocol != PROTOCOL_RDP)
1574
    /* When behind a Hyper-V proxy, security != RDP is handled by the host. */
1575
0
    status = TRUE;
1576
0
  else if (SelectedProtocol & PROTOCOL_RDSTLS)
1577
0
    status = transport_accept_rdstls(rdp->transport);
1578
0
  else if (SelectedProtocol & PROTOCOL_HYBRID)
1579
0
    status = transport_accept_nla(rdp->transport);
1580
0
  else if (SelectedProtocol & PROTOCOL_SSL)
1581
0
    status = transport_accept_tls(rdp->transport);
1582
0
  else if (SelectedProtocol == PROTOCOL_RDP) /* 0 */
1583
0
    status = transport_accept_rdp(rdp->transport);
1584
1585
0
  if (!status)
1586
0
    return FALSE;
1587
1588
0
  return transport_set_blocking_mode(rdp->transport, FALSE);
1589
0
}
1590
1591
static BOOL rdp_update_encryption_level(rdpSettings* settings)
1592
0
{
1593
0
  WINPR_ASSERT(settings);
1594
1595
0
  UINT32 EncryptionLevel = freerdp_settings_get_uint32(settings, FreeRDP_EncryptionLevel);
1596
0
  UINT32 EncryptionMethods = freerdp_settings_get_uint32(settings, FreeRDP_EncryptionMethods);
1597
1598
  /**
1599
   * Re: settings->EncryptionLevel:
1600
   * This is configured/set by the server implementation and serves the same
1601
   * purpose as the "Encryption Level" setting in the RDP-Tcp configuration
1602
   * dialog of Microsoft's Remote Desktop Session Host Configuration.
1603
   * Re: settings->EncryptionMethods:
1604
   * at this point this setting contains the client's supported encryption
1605
   * methods we've received in gcc_read_client_security_data()
1606
   */
1607
1608
0
  if (!settings->UseRdpSecurityLayer)
1609
0
  {
1610
    /* TLS/NLA is used: disable rdp style encryption */
1611
0
    EncryptionLevel = ENCRYPTION_LEVEL_NONE;
1612
0
  }
1613
0
  else
1614
0
  {
1615
    /* verify server encryption level value */
1616
0
    switch (EncryptionLevel)
1617
0
    {
1618
0
      case ENCRYPTION_LEVEL_NONE:
1619
0
        WLog_INFO(TAG, "Active rdp encryption level: NONE");
1620
0
        break;
1621
1622
0
      case ENCRYPTION_LEVEL_FIPS:
1623
0
        WLog_INFO(TAG, "Active rdp encryption level: FIPS Compliant");
1624
0
        break;
1625
1626
0
      case ENCRYPTION_LEVEL_HIGH:
1627
0
        WLog_INFO(TAG, "Active rdp encryption level: HIGH");
1628
0
        break;
1629
1630
0
      case ENCRYPTION_LEVEL_LOW:
1631
0
        WLog_INFO(TAG, "Active rdp encryption level: LOW");
1632
0
        break;
1633
1634
0
      case ENCRYPTION_LEVEL_CLIENT_COMPATIBLE:
1635
0
        WLog_INFO(TAG, "Active rdp encryption level: CLIENT-COMPATIBLE");
1636
0
        break;
1637
1638
0
      default:
1639
0
        WLog_ERR(TAG, "Invalid server encryption level 0x%08" PRIX32 "", EncryptionLevel);
1640
0
        WLog_ERR(TAG, "Switching to encryption level CLIENT-COMPATIBLE");
1641
0
        EncryptionLevel = ENCRYPTION_LEVEL_CLIENT_COMPATIBLE;
1642
0
    }
1643
0
  }
1644
1645
  /* choose rdp encryption method based on server level and client methods */
1646
0
  switch (EncryptionLevel)
1647
0
  {
1648
0
    case ENCRYPTION_LEVEL_NONE:
1649
      /* The only valid method is NONE in this case */
1650
0
      EncryptionMethods = ENCRYPTION_METHOD_NONE;
1651
0
      break;
1652
1653
0
    case ENCRYPTION_LEVEL_FIPS:
1654
1655
      /* The only valid method is FIPS in this case */
1656
0
      if (!(EncryptionMethods & ENCRYPTION_METHOD_FIPS))
1657
0
      {
1658
0
        WLog_WARN(TAG, "client does not support FIPS as required by server configuration");
1659
0
      }
1660
1661
0
      EncryptionMethods = ENCRYPTION_METHOD_FIPS;
1662
0
      break;
1663
1664
0
    case ENCRYPTION_LEVEL_HIGH:
1665
1666
      /* Maximum key strength supported by the server must be used (128 bit)*/
1667
0
      if (!(EncryptionMethods & ENCRYPTION_METHOD_128BIT))
1668
0
      {
1669
0
        WLog_WARN(TAG, "client does not support 128 bit encryption method as required by "
1670
0
                       "server configuration");
1671
0
      }
1672
1673
0
      EncryptionMethods = ENCRYPTION_METHOD_128BIT;
1674
0
      break;
1675
1676
0
    case ENCRYPTION_LEVEL_LOW:
1677
0
    case ENCRYPTION_LEVEL_CLIENT_COMPATIBLE:
1678
1679
      /* Maximum key strength supported by the client must be used */
1680
0
      if (EncryptionMethods & ENCRYPTION_METHOD_128BIT)
1681
0
        EncryptionMethods = ENCRYPTION_METHOD_128BIT;
1682
0
      else if (EncryptionMethods & ENCRYPTION_METHOD_56BIT)
1683
0
        EncryptionMethods = ENCRYPTION_METHOD_56BIT;
1684
0
      else if (EncryptionMethods & ENCRYPTION_METHOD_40BIT)
1685
0
        EncryptionMethods = ENCRYPTION_METHOD_40BIT;
1686
0
      else if (EncryptionMethods & ENCRYPTION_METHOD_FIPS)
1687
0
        EncryptionMethods = ENCRYPTION_METHOD_FIPS;
1688
0
      else
1689
0
      {
1690
0
        WLog_WARN(TAG, "client has not announced any supported encryption methods");
1691
0
        EncryptionMethods = ENCRYPTION_METHOD_128BIT;
1692
0
      }
1693
1694
0
      break;
1695
1696
0
    default:
1697
0
      WLog_ERR(TAG, "internal error: unknown encryption level");
1698
0
      return FALSE;
1699
0
  }
1700
1701
  /* log selected encryption method */
1702
0
  if (settings->UseRdpSecurityLayer)
1703
0
  {
1704
0
    switch (EncryptionMethods)
1705
0
    {
1706
0
      case ENCRYPTION_METHOD_NONE:
1707
0
        WLog_INFO(TAG, "Selected rdp encryption method: NONE");
1708
0
        break;
1709
1710
0
      case ENCRYPTION_METHOD_40BIT:
1711
0
        WLog_INFO(TAG, "Selected rdp encryption method: 40BIT");
1712
0
        break;
1713
1714
0
      case ENCRYPTION_METHOD_56BIT:
1715
0
        WLog_INFO(TAG, "Selected rdp encryption method: 56BIT");
1716
0
        break;
1717
1718
0
      case ENCRYPTION_METHOD_128BIT:
1719
0
        WLog_INFO(TAG, "Selected rdp encryption method: 128BIT");
1720
0
        break;
1721
1722
0
      case ENCRYPTION_METHOD_FIPS:
1723
0
        WLog_INFO(TAG, "Selected rdp encryption method: FIPS");
1724
0
        break;
1725
1726
0
      default:
1727
0
        WLog_ERR(TAG, "internal error: unknown encryption method");
1728
0
        return FALSE;
1729
0
    }
1730
0
  }
1731
1732
0
  if (!freerdp_settings_set_uint32(settings, FreeRDP_EncryptionLevel, EncryptionLevel))
1733
0
    return FALSE;
1734
0
  if (!freerdp_settings_set_uint32(settings, FreeRDP_EncryptionMethods, EncryptionMethods))
1735
0
    return FALSE;
1736
0
  return TRUE;
1737
0
}
1738
1739
BOOL rdp_server_accept_mcs_connect_initial(rdpRdp* rdp, wStream* s)
1740
0
{
1741
0
  WINPR_ASSERT(rdp);
1742
0
  WINPR_ASSERT(s);
1743
1744
0
  rdpMcs* mcs = rdp->mcs;
1745
0
  WINPR_ASSERT(mcs);
1746
1747
0
  WINPR_ASSERT(rdp_get_state(rdp) == CONNECTION_STATE_MCS_CREATE_REQUEST);
1748
0
  if (!mcs_recv_connect_initial(mcs, s))
1749
0
    return FALSE;
1750
0
  WINPR_ASSERT(rdp->settings);
1751
1752
0
  if (!mcs_server_apply_to_settings(mcs, rdp->settings))
1753
0
    return FALSE;
1754
1755
0
  WLog_DBG(TAG, "Accepted client: %s", rdp->settings->ClientHostname);
1756
0
  WLog_DBG(TAG, "Accepted channels:");
1757
1758
0
  WINPR_ASSERT(mcs->channels || (mcs->channelCount == 0));
1759
0
  for (UINT32 i = 0; i < mcs->channelCount; i++)
1760
0
  {
1761
0
    ADDIN_ARGV* arg = nullptr;
1762
0
    rdpMcsChannel* cur = &mcs->channels[i];
1763
0
    const char* params[1] = { cur->Name };
1764
0
    WLog_DBG(TAG, " %s [%" PRIu16 "]", cur->Name, cur->ChannelId);
1765
0
    arg = freerdp_addin_argv_new(ARRAYSIZE(params), params);
1766
0
    if (!arg)
1767
0
      return FALSE;
1768
1769
0
    if (!freerdp_static_channel_collection_add(rdp->settings, arg))
1770
0
    {
1771
0
      freerdp_addin_argv_free(arg);
1772
0
      return FALSE;
1773
0
    }
1774
0
  }
1775
1776
0
  if (!rdp_server_transition_to_state(rdp, CONNECTION_STATE_MCS_CREATE_RESPONSE))
1777
0
    return FALSE;
1778
0
  if (!rdp_update_encryption_level(rdp->settings))
1779
0
    return FALSE;
1780
0
  if (!mcs_send_connect_response(mcs))
1781
0
    return FALSE;
1782
0
  if (!rdp_server_transition_to_state(rdp, CONNECTION_STATE_MCS_ERECT_DOMAIN))
1783
0
    return FALSE;
1784
1785
0
  return TRUE;
1786
0
}
1787
1788
BOOL rdp_server_accept_mcs_erect_domain_request(rdpRdp* rdp, wStream* s)
1789
0
{
1790
0
  WINPR_ASSERT(rdp);
1791
0
  WINPR_ASSERT(s);
1792
0
  WINPR_ASSERT(rdp_get_state(rdp) == CONNECTION_STATE_MCS_ERECT_DOMAIN);
1793
1794
0
  if (!mcs_recv_erect_domain_request(rdp->mcs, s))
1795
0
    return FALSE;
1796
1797
0
  return rdp_server_transition_to_state(rdp, CONNECTION_STATE_MCS_ATTACH_USER);
1798
0
}
1799
1800
static BOOL rdp_server_skip_mcs_channel_join(rdpRdp* rdp)
1801
0
{
1802
0
  WINPR_ASSERT(rdp);
1803
1804
0
  rdpMcs* mcs = rdp->mcs;
1805
0
  WINPR_ASSERT(mcs);
1806
1807
0
  mcs->userChannelJoined = TRUE;
1808
0
  mcs->globalChannelJoined = TRUE;
1809
0
  mcs->messageChannelJoined = TRUE;
1810
1811
0
  for (UINT32 i = 0; i < mcs->channelCount; i++)
1812
0
  {
1813
0
    rdpMcsChannel* cur = &mcs->channels[i];
1814
0
    WLog_DBG(TAG, " %s [%" PRIu16 "]", cur->Name, cur->ChannelId);
1815
0
    cur->joined = TRUE;
1816
0
  }
1817
0
  return rdp_server_transition_to_state(rdp, CONNECTION_STATE_RDP_SECURITY_COMMENCEMENT);
1818
0
}
1819
1820
BOOL rdp_server_accept_mcs_attach_user_request(rdpRdp* rdp, wStream* s)
1821
0
{
1822
0
  if (!mcs_recv_attach_user_request(rdp->mcs, s))
1823
0
    return FALSE;
1824
1825
0
  if (!rdp_server_transition_to_state(rdp, CONNECTION_STATE_MCS_ATTACH_USER_CONFIRM))
1826
0
    return FALSE;
1827
1828
0
  if (!mcs_send_attach_user_confirm(rdp->mcs))
1829
0
    return FALSE;
1830
1831
0
  if (freerdp_settings_get_bool(rdp->settings, FreeRDP_SupportSkipChannelJoin))
1832
0
    return rdp_server_skip_mcs_channel_join(rdp);
1833
0
  return rdp_server_transition_to_state(rdp, CONNECTION_STATE_MCS_CHANNEL_JOIN_REQUEST);
1834
0
}
1835
1836
BOOL rdp_server_accept_mcs_channel_join_request(rdpRdp* rdp, wStream* s)
1837
0
{
1838
0
  UINT16 channelId = 0;
1839
0
  BOOL allJoined = TRUE;
1840
0
  rdpMcs* mcs = nullptr;
1841
1842
0
  WINPR_ASSERT(rdp);
1843
0
  WINPR_ASSERT(rdp->context);
1844
1845
0
  mcs = rdp->mcs;
1846
0
  WINPR_ASSERT(mcs);
1847
1848
0
  WINPR_ASSERT(rdp_get_state(rdp) == CONNECTION_STATE_MCS_CHANNEL_JOIN_REQUEST);
1849
1850
0
  if (!mcs_recv_channel_join_request(mcs, rdp->settings, s, &channelId))
1851
0
    return FALSE;
1852
1853
0
  if (!rdp_server_transition_to_state(rdp, CONNECTION_STATE_MCS_CHANNEL_JOIN_RESPONSE))
1854
0
    return FALSE;
1855
1856
0
  if (!mcs_send_channel_join_confirm(mcs, channelId))
1857
0
    return FALSE;
1858
1859
0
  if (channelId == mcs->userId)
1860
0
    mcs->userChannelJoined = TRUE;
1861
0
  if (channelId == MCS_GLOBAL_CHANNEL_ID)
1862
0
    mcs->globalChannelJoined = TRUE;
1863
0
  if (channelId == mcs->messageChannelId)
1864
0
    mcs->messageChannelJoined = TRUE;
1865
1866
0
  for (UINT32 i = 0; i < mcs->channelCount; i++)
1867
0
  {
1868
0
    rdpMcsChannel* cur = &mcs->channels[i];
1869
0
    WLog_DBG(TAG, " %s [%" PRIu16 "]", cur->Name, cur->ChannelId);
1870
0
    if (cur->ChannelId == channelId)
1871
0
      cur->joined = TRUE;
1872
1873
0
    if (!cur->joined)
1874
0
      allJoined = FALSE;
1875
0
  }
1876
1877
0
  CONNECTION_STATE rc = CONNECTION_STATE_INITIAL;
1878
0
  if ((mcs->userChannelJoined) && (mcs->globalChannelJoined) &&
1879
0
      (mcs->messageChannelId == 0 || mcs->messageChannelJoined) && allJoined)
1880
0
    rc = CONNECTION_STATE_RDP_SECURITY_COMMENCEMENT;
1881
0
  else
1882
0
    rc = CONNECTION_STATE_MCS_CHANNEL_JOIN_REQUEST;
1883
1884
0
  return rdp_server_transition_to_state(rdp, rc);
1885
0
}
1886
1887
static BOOL rdp_server_send_sync(rdpRdp* rdp)
1888
0
{
1889
0
  WINPR_ASSERT(rdp);
1890
1891
0
  if (!rdp_server_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_CLIENT_SYNC))
1892
0
    return FALSE;
1893
0
  if (!rdp_send_server_synchronize_pdu(rdp))
1894
0
    return FALSE;
1895
0
  if (!rdp_server_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_CLIENT_COOPERATE))
1896
0
    return FALSE;
1897
0
  if (!rdp_send_server_control_cooperate_pdu(rdp))
1898
0
    return FALSE;
1899
0
  if (!rdp_finalize_reset_flags(rdp, FALSE))
1900
0
    return FALSE;
1901
0
  return rdp_server_transition_to_state(rdp, CONNECTION_STATE_FINALIZATION_SYNC);
1902
0
}
1903
1904
BOOL rdp_server_accept_confirm_active(rdpRdp* rdp, wStream* s, UINT16 pduLength)
1905
0
{
1906
0
  WINPR_ASSERT(rdp);
1907
0
  WINPR_ASSERT(rdp->context);
1908
0
  WINPR_ASSERT(rdp->settings);
1909
0
  WINPR_ASSERT(s);
1910
1911
0
  freerdp_peer* peer = rdp->context->peer;
1912
0
  WINPR_ASSERT(peer);
1913
1914
0
  if (rdp_get_state(rdp) != CONNECTION_STATE_CAPABILITIES_EXCHANGE_CONFIRM_ACTIVE)
1915
0
  {
1916
0
    if (freerdp_settings_get_bool(rdp->settings, FreeRDP_TransportDumpReplay))
1917
0
      rdp_finalize_set_flag(rdp, FINALIZE_DEACTIVATE_REACTIVATE);
1918
0
    else
1919
0
    {
1920
0
      WLog_WARN(TAG, "Invalid state, got %s, expected %s", rdp_get_state_string(rdp),
1921
0
                rdp_state_string(CONNECTION_STATE_CAPABILITIES_EXCHANGE_CONFIRM_ACTIVE));
1922
0
      return FALSE;
1923
0
    }
1924
0
  }
1925
1926
0
  if (!rdp_recv_confirm_active(rdp, s, pduLength))
1927
0
    return FALSE;
1928
1929
0
  if (peer->ClientCapabilities && !peer->ClientCapabilities(peer))
1930
0
  {
1931
0
    WLog_WARN(TAG, "peer->ClientCapabilities failed");
1932
0
    return FALSE;
1933
0
  }
1934
1935
0
  if (rdp->settings->SaltedChecksum)
1936
0
    rdp->do_secure_checksum = TRUE;
1937
1938
0
  return rdp_server_send_sync(rdp);
1939
0
}
1940
1941
BOOL rdp_server_reactivate(rdpRdp* rdp)
1942
0
{
1943
0
  freerdp_peer* client = nullptr;
1944
1945
0
  if (rdp->context && rdp->context->peer)
1946
0
    client = rdp->context->peer;
1947
1948
0
  if (client)
1949
0
    client->activated = FALSE;
1950
1951
0
  if (!rdp_send_deactivate_all(rdp))
1952
0
    return FALSE;
1953
1954
0
  rdp_finalize_set_flag(rdp, FINALIZE_DEACTIVATE_REACTIVATE);
1955
0
  if (!rdp_server_transition_to_state(rdp, CONNECTION_STATE_CAPABILITIES_EXCHANGE_DEMAND_ACTIVE))
1956
0
    return FALSE;
1957
1958
0
  state_run_t rc = rdp_peer_handle_state_demand_active(client);
1959
0
  return state_run_success(rc);
1960
0
}
1961
1962
static BOOL rdp_is_active_peer_state(CONNECTION_STATE state)
1963
10.6k
{
1964
  /* [MS-RDPBCGR] 1.3.1.1 Connection Sequence states:
1965
   * 'upon receipt of the Font List PDU the server can start sending graphics
1966
   *  output to the client'
1967
   */
1968
10.6k
  switch (state)
1969
10.6k
  {
1970
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_SYNC:
1971
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_COOPERATE:
1972
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_GRANTED_CONTROL:
1973
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_FONT_MAP:
1974
0
    case CONNECTION_STATE_ACTIVE:
1975
0
      return TRUE;
1976
10.6k
    default:
1977
10.6k
      return FALSE;
1978
10.6k
  }
1979
10.6k
}
1980
1981
static BOOL rdp_is_active_client_state(CONNECTION_STATE state)
1982
9.62k
{
1983
  /* [MS-RDPBCGR] 1.3.1.1 Connection Sequence states:
1984
   * 'Once the client has sent the Confirm Active PDU, it can start sending
1985
   *  mouse and keyboard input to the server'
1986
   */
1987
9.62k
  switch (state)
1988
9.62k
  {
1989
0
    case CONNECTION_STATE_FINALIZATION_SYNC:
1990
0
    case CONNECTION_STATE_FINALIZATION_COOPERATE:
1991
0
    case CONNECTION_STATE_FINALIZATION_REQUEST_CONTROL:
1992
0
    case CONNECTION_STATE_FINALIZATION_PERSISTENT_KEY_LIST:
1993
0
    case CONNECTION_STATE_FINALIZATION_FONT_LIST:
1994
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_SYNC:
1995
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_COOPERATE:
1996
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_GRANTED_CONTROL:
1997
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_FONT_MAP:
1998
0
    case CONNECTION_STATE_ACTIVE:
1999
0
      return TRUE;
2000
9.62k
    default:
2001
9.62k
      return FALSE;
2002
9.62k
  }
2003
9.62k
}
2004
2005
BOOL rdp_is_active_state(const rdpRdp* rdp)
2006
17.8k
{
2007
17.8k
  WINPR_ASSERT(rdp);
2008
17.8k
  WINPR_ASSERT(rdp->context);
2009
2010
17.8k
  const CONNECTION_STATE state = rdp_get_state(rdp);
2011
17.8k
  if (freerdp_settings_get_bool(rdp->context->settings, FreeRDP_ServerMode))
2012
8.26k
    return rdp_is_active_peer_state(state);
2013
9.62k
  else
2014
9.62k
    return rdp_is_active_client_state(state);
2015
17.8k
}
2016
2017
BOOL rdp_server_transition_to_state(rdpRdp* rdp, CONNECTION_STATE state)
2018
2.35k
{
2019
2.35k
  BOOL status = FALSE;
2020
2.35k
  freerdp_peer* client = nullptr;
2021
2.35k
  const CONNECTION_STATE cstate = rdp_get_state(rdp);
2022
2023
2.35k
  if (cstate >= CONNECTION_STATE_RDP_SECURITY_COMMENCEMENT)
2024
2.35k
  {
2025
2.35k
    WINPR_ASSERT(rdp->context);
2026
2.35k
    client = rdp->context->peer;
2027
2.35k
  }
2028
2029
2.35k
  if (!rdp_is_active_peer_state(cstate))
2030
2.35k
  {
2031
2.35k
    if (client)
2032
2.35k
      client->activated = FALSE;
2033
2.35k
  }
2034
2035
2.35k
  WLog_Print(rdp->log, WLOG_DEBUG, "%s --> %s", rdp_get_state_string(rdp),
2036
2.35k
             rdp_state_string(state));
2037
2.35k
  if (!rdp_set_state(rdp, state))
2038
0
    goto fail;
2039
2040
2.35k
  status = TRUE;
2041
2.35k
fail:
2042
2.35k
  return status;
2043
2.35k
}
2044
2045
const char* rdp_client_connection_state_string(UINT state)
2046
0
{
2047
0
  switch (state)
2048
0
  {
2049
0
    case CLIENT_STATE_INITIAL:
2050
0
      return "CLIENT_STATE_INITIAL";
2051
0
    case CLIENT_STATE_PRECONNECT_PASSED:
2052
0
      return "CLIENT_STATE_PRECONNECT_PASSED";
2053
0
    case CLIENT_STATE_POSTCONNECT_PASSED:
2054
0
      return "CLIENT_STATE_POSTCONNECT_PASSED";
2055
0
    default:
2056
0
      return "UNKNOWN";
2057
0
  }
2058
0
}
2059
2060
const char* rdp_state_string(CONNECTION_STATE state)
2061
56.3k
{
2062
56.3k
  switch (state)
2063
56.3k
  {
2064
38.4k
    case CONNECTION_STATE_INITIAL:
2065
38.4k
      return "CONNECTION_STATE_INITIAL";
2066
0
    case CONNECTION_STATE_NEGO:
2067
0
      return "CONNECTION_STATE_NEGO";
2068
0
    case CONNECTION_STATE_NLA:
2069
0
      return "CONNECTION_STATE_NLA";
2070
0
    case CONNECTION_STATE_AAD:
2071
0
      return "CONNECTION_STATE_AAD";
2072
0
    case CONNECTION_STATE_MCS_CREATE_REQUEST:
2073
0
      return "CONNECTION_STATE_MCS_CREATE_REQUEST";
2074
0
    case CONNECTION_STATE_MCS_CREATE_RESPONSE:
2075
0
      return "CONNECTION_STATE_MCS_CREATE_RESPONSE";
2076
0
    case CONNECTION_STATE_MCS_ERECT_DOMAIN:
2077
0
      return "CONNECTION_STATE_MCS_ERECT_DOMAIN";
2078
0
    case CONNECTION_STATE_MCS_ATTACH_USER:
2079
0
      return "CONNECTION_STATE_MCS_ATTACH_USER";
2080
0
    case CONNECTION_STATE_MCS_ATTACH_USER_CONFIRM:
2081
0
      return "CONNECTION_STATE_MCS_ATTACH_USER_CONFIRM";
2082
0
    case CONNECTION_STATE_MCS_CHANNEL_JOIN_REQUEST:
2083
0
      return "CONNECTION_STATE_MCS_CHANNEL_JOIN_REQUEST";
2084
0
    case CONNECTION_STATE_MCS_CHANNEL_JOIN_RESPONSE:
2085
0
      return "CONNECTION_STATE_MCS_CHANNEL_JOIN_RESPONSE";
2086
0
    case CONNECTION_STATE_RDP_SECURITY_COMMENCEMENT:
2087
0
      return "CONNECTION_STATE_RDP_SECURITY_COMMENCEMENT";
2088
0
    case CONNECTION_STATE_SECURE_SETTINGS_EXCHANGE:
2089
0
      return "CONNECTION_STATE_SECURE_SETTINGS_EXCHANGE";
2090
0
    case CONNECTION_STATE_CONNECT_TIME_AUTO_DETECT_REQUEST:
2091
0
      return "CONNECTION_STATE_CONNECT_TIME_AUTO_DETECT_REQUEST";
2092
0
    case CONNECTION_STATE_CONNECT_TIME_AUTO_DETECT_RESPONSE:
2093
0
      return "CONNECTION_STATE_CONNECT_TIME_AUTO_DETECT_RESPONSE";
2094
0
    case CONNECTION_STATE_LICENSING:
2095
0
      return "CONNECTION_STATE_LICENSING";
2096
0
    case CONNECTION_STATE_MULTITRANSPORT_BOOTSTRAPPING_REQUEST:
2097
0
      return "CONNECTION_STATE_MULTITRANSPORT_BOOTSTRAPPING_REQUEST";
2098
0
    case CONNECTION_STATE_MULTITRANSPORT_BOOTSTRAPPING_RESPONSE:
2099
0
      return "CONNECTION_STATE_MULTITRANSPORT_BOOTSTRAPPING_RESPONSE";
2100
17.8k
    case CONNECTION_STATE_CAPABILITIES_EXCHANGE_DEMAND_ACTIVE:
2101
17.8k
      return "CONNECTION_STATE_CAPABILITIES_EXCHANGE_DEMAND_ACTIVE";
2102
0
    case CONNECTION_STATE_CAPABILITIES_EXCHANGE_MONITOR_LAYOUT:
2103
0
      return "CONNECTION_STATE_CAPABILITIES_EXCHANGE_MONITOR_LAYOUT";
2104
0
    case CONNECTION_STATE_CAPABILITIES_EXCHANGE_CONFIRM_ACTIVE:
2105
0
      return "CONNECTION_STATE_CAPABILITIES_EXCHANGE_CONFIRM_ACTIVE";
2106
0
    case CONNECTION_STATE_FINALIZATION_SYNC:
2107
0
      return "CONNECTION_STATE_FINALIZATION_SYNC";
2108
0
    case CONNECTION_STATE_FINALIZATION_COOPERATE:
2109
0
      return "CONNECTION_STATE_FINALIZATION_COOPERATE";
2110
0
    case CONNECTION_STATE_FINALIZATION_REQUEST_CONTROL:
2111
0
      return "CONNECTION_STATE_FINALIZATION_REQUEST_CONTROL";
2112
0
    case CONNECTION_STATE_FINALIZATION_PERSISTENT_KEY_LIST:
2113
0
      return "CONNECTION_STATE_FINALIZATION_PERSISTENT_KEY_LIST";
2114
0
    case CONNECTION_STATE_FINALIZATION_FONT_LIST:
2115
0
      return "CONNECTION_STATE_FINALIZATION_FONT_LIST";
2116
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_SYNC:
2117
0
      return "CONNECTION_STATE_FINALIZATION_CLIENT_SYNC";
2118
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_COOPERATE:
2119
0
      return "CONNECTION_STATE_FINALIZATION_CLIENT_COOPERATE";
2120
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_GRANTED_CONTROL:
2121
0
      return "CONNECTION_STATE_FINALIZATION_CLIENT_GRANTED_CONTROL";
2122
0
    case CONNECTION_STATE_FINALIZATION_CLIENT_FONT_MAP:
2123
0
      return "CONNECTION_STATE_FINALIZATION_CLIENT_FONT_MAP";
2124
0
    case CONNECTION_STATE_ACTIVE:
2125
0
      return "CONNECTION_STATE_ACTIVE";
2126
0
    default:
2127
0
      return "UNKNOWN";
2128
56.3k
  }
2129
56.3k
}
2130
2131
CONNECTION_STATE rdp_get_state(const rdpRdp* rdp)
2132
131k
{
2133
131k
  WINPR_ASSERT(rdp);
2134
131k
  return rdp->state;
2135
131k
}
2136
2137
BOOL rdp_set_state(rdpRdp* rdp, CONNECTION_STATE state)
2138
20.2k
{
2139
20.2k
  WINPR_ASSERT(rdp);
2140
2141
20.2k
  rdpContext* context = rdp->context;
2142
20.2k
  WINPR_ASSERT(context);
2143
2144
20.2k
  if (context->pubSub)
2145
9.62k
  {
2146
9.62k
    StateChangedEventArgs e = WINPR_C_ARRAY_INIT;
2147
9.62k
    EventArgsInit(&e, "freerdp");
2148
9.62k
    e.oldState = rdp->state;
2149
9.62k
    e.newState = state;
2150
2151
9.62k
    const int rc = PubSub_OnStateChanged(context->pubSub, context, &e);
2152
9.62k
    if (rc < 0)
2153
0
      WLog_WARN(TAG, "PubSub_OnStateChanged() failed");
2154
9.62k
  }
2155
20.2k
  rdp->state = state;
2156
20.2k
  return TRUE;
2157
20.2k
}
2158
2159
const char* rdp_get_state_string(const rdpRdp* rdp)
2160
38.4k
{
2161
38.4k
  CONNECTION_STATE state = rdp_get_state(rdp);
2162
38.4k
  return rdp_state_string(state);
2163
38.4k
}
2164
2165
BOOL rdp_channels_from_mcs(rdpSettings* settings, const rdpRdp* rdp)
2166
0
{
2167
0
  const rdpMcs* mcs = nullptr;
2168
2169
0
  WINPR_ASSERT(rdp);
2170
2171
0
  mcs = rdp->mcs;
2172
0
  WINPR_ASSERT(mcs);
2173
2174
0
  if (!freerdp_settings_set_pointer_len(settings, FreeRDP_ChannelDefArray, nullptr,
2175
0
                                        CHANNEL_MAX_COUNT))
2176
0
    return FALSE;
2177
2178
0
  for (UINT32 x = 0; x < mcs->channelCount; x++)
2179
0
  {
2180
0
    const rdpMcsChannel* mchannel = &mcs->channels[x];
2181
0
    CHANNEL_DEF cur = WINPR_C_ARRAY_INIT;
2182
2183
0
    memcpy(cur.name, mchannel->Name, sizeof(cur.name));
2184
0
    cur.options = mchannel->options;
2185
0
    if (!freerdp_settings_set_pointer_array(settings, FreeRDP_ChannelDefArray, x, &cur))
2186
0
      return FALSE;
2187
0
  }
2188
2189
0
  return freerdp_settings_set_uint32(settings, FreeRDP_ChannelCount, mcs->channelCount);
2190
0
}
2191
2192
/* Here we are in client state CONFIRM_ACTIVE.
2193
 *
2194
 * This means:
2195
 * 1. send the CONFIRM_ACTIVE PDU to the server
2196
 * 2. register callbacks, the server can now start sending stuff
2197
 */
2198
state_run_t rdp_client_connect_confirm_active(rdpRdp* rdp, WINPR_ATTR_UNUSED wStream* s)
2199
0
{
2200
0
  WINPR_ASSERT(rdp);
2201
0
  WINPR_ASSERT(rdp->settings);
2202
0
  WINPR_ASSERT(s);
2203
2204
0
  const UINT32 width = rdp->settings->DesktopWidth;
2205
0
  const UINT32 height = rdp->settings->DesktopHeight;
2206
2207
0
  if (!rdp_send_confirm_active(rdp))
2208
0
    return STATE_RUN_FAILED;
2209
2210
0
  if (!input_register_client_callbacks(rdp->input))
2211
0
  {
2212
0
    WLog_ERR(TAG, "error registering client callbacks");
2213
0
    return STATE_RUN_FAILED;
2214
0
  }
2215
2216
  /**
2217
   * The server may request a different desktop size during Deactivation-Reactivation sequence.
2218
   * In this case, the UI should be informed and do actual window resizing at this point.
2219
   */
2220
0
  const BOOL deactivate_reactivate =
2221
0
      rdp->was_deactivated && ((rdp->deactivated_width != rdp->settings->DesktopWidth) ||
2222
0
                               (rdp->deactivated_height != rdp->settings->DesktopHeight));
2223
0
  const BOOL resolution_change =
2224
0
      ((width != rdp->settings->DesktopWidth) || (height != rdp->settings->DesktopHeight));
2225
0
  if (deactivate_reactivate || resolution_change)
2226
0
  {
2227
0
    BOOL status = TRUE;
2228
0
    WLog_DBG(TAG, "new size %" PRIu32 "x%" PRIu32, rdp->settings->DesktopWidth,
2229
0
             rdp->settings->DesktopHeight);
2230
2231
0
    rdp_update_internal* up = update_cast(rdp->update);
2232
0
    up->stats.base[RDP_STATS_RESIZE]++;
2233
0
    IFCALLRET(rdp->update->DesktopResize, status, rdp->update->context);
2234
2235
0
    if (!status)
2236
0
    {
2237
0
      WLog_ERR(TAG, "client desktop resize callback failed");
2238
0
      return STATE_RUN_FAILED;
2239
0
    }
2240
0
  }
2241
2242
0
  WINPR_ASSERT(rdp->context);
2243
0
  if (freerdp_shall_disconnect_context(rdp->context))
2244
0
    return STATE_RUN_SUCCESS;
2245
2246
0
  if (!cache_resize(rdp->context))
2247
0
    return STATE_RUN_FAILED;
2248
2249
0
  state_run_t status = STATE_RUN_SUCCESS;
2250
0
  if (!rdp->settings->SupportMonitorLayoutPdu)
2251
0
    status = rdp_client_connect_finalize(rdp);
2252
0
  else
2253
0
  {
2254
0
    if (!rdp_client_transition_to_state(rdp,
2255
0
                                        CONNECTION_STATE_CAPABILITIES_EXCHANGE_MONITOR_LAYOUT))
2256
0
      status = STATE_RUN_FAILED;
2257
0
  }
2258
0
  if (!rdp_finalize_reset_flags(rdp, FALSE))
2259
0
    status = STATE_RUN_FAILED;
2260
0
  return status;
2261
0
}
2262
2263
BOOL rdp_handle_optional_rdp_decryption(rdpRdp* rdp, wStream* s, UINT16* length,
2264
                                        UINT16* pSecurityFlags)
2265
0
{
2266
0
  BOOL rc = FALSE;
2267
0
  WINPR_ASSERT(rdp);
2268
0
  WINPR_ASSERT(rdp->settings);
2269
2270
0
  UINT16 securityFlags = 0;
2271
0
  if (rdp->settings->UseRdpSecurityLayer)
2272
0
  {
2273
0
    if (!rdp_read_security_header(rdp, s, &securityFlags, length))
2274
0
      goto fail;
2275
2276
0
    if (securityFlags & SEC_ENCRYPT)
2277
0
    {
2278
0
      if (!rdp_decrypt(rdp, s, length, securityFlags))
2279
0
        goto fail;
2280
0
    }
2281
0
  }
2282
2283
0
  rc = TRUE;
2284
2285
0
fail:
2286
0
  if (pSecurityFlags)
2287
0
    *pSecurityFlags = securityFlags;
2288
0
  return rc;
2289
0
}