2015-03-17 21:54:16 +03:00
|
|
|
/**
|
2019-11-06 17:24:51 +03:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Remote Desktop Gateway (RDG)
|
|
|
|
*
|
|
|
|
* Copyright 2015 Denis Vincent <dvincent@devolutions.net>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2021-06-09 15:03:34 +03:00
|
|
|
#include <winpr/assert.h>
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/print.h>
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
#include <winpr/winsock.h>
|
|
|
|
|
|
|
|
#include <freerdp/log.h>
|
|
|
|
#include <freerdp/error.h>
|
|
|
|
#include <freerdp/utils/ringbuffer.h>
|
|
|
|
|
|
|
|
#include "rdg.h"
|
2016-12-09 22:43:02 +03:00
|
|
|
#include "../proxy.h"
|
2015-03-17 21:54:16 +03:00
|
|
|
#include "../rdp.h"
|
2016-11-21 19:28:54 +03:00
|
|
|
#include "../../crypto/opensslcompat.h"
|
2018-11-16 17:41:19 +03:00
|
|
|
#include "rpc_fault.h"
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
#define TAG FREERDP_TAG("core.gateway.rdg")
|
|
|
|
|
2018-10-24 16:42:44 +03:00
|
|
|
/* HTTP channel response fields present flags. */
|
|
|
|
#define HTTP_CHANNEL_RESPONSE_FIELD_CHANNELID 0x1
|
|
|
|
#define HTTP_CHANNEL_RESPONSE_OPTIONAL 0x2
|
|
|
|
#define HTTP_CHANNEL_RESPONSE_FIELD_UDPPORT 0x4
|
|
|
|
|
|
|
|
/* HTTP extended auth. */
|
|
|
|
#define HTTP_EXTENDED_AUTH_NONE 0x0
|
2019-11-06 17:24:51 +03:00
|
|
|
#define HTTP_EXTENDED_AUTH_SC 0x1 /* Smart card authentication. */
|
|
|
|
#define HTTP_EXTENDED_AUTH_PAA 0x02 /* Pluggable authentication. */
|
|
|
|
#define HTTP_EXTENDED_AUTH_SSPI_NTLM 0x04 /* NTLM extended authentication. */
|
2018-10-24 16:42:44 +03:00
|
|
|
|
|
|
|
/* HTTP packet types. */
|
|
|
|
#define PKT_TYPE_HANDSHAKE_REQUEST 0x1
|
|
|
|
#define PKT_TYPE_HANDSHAKE_RESPONSE 0x2
|
|
|
|
#define PKT_TYPE_EXTENDED_AUTH_MSG 0x3
|
|
|
|
#define PKT_TYPE_TUNNEL_CREATE 0x4
|
|
|
|
#define PKT_TYPE_TUNNEL_RESPONSE 0x5
|
|
|
|
#define PKT_TYPE_TUNNEL_AUTH 0x6
|
|
|
|
#define PKT_TYPE_TUNNEL_AUTH_RESPONSE 0x7
|
|
|
|
#define PKT_TYPE_CHANNEL_CREATE 0x8
|
|
|
|
#define PKT_TYPE_CHANNEL_RESPONSE 0x9
|
|
|
|
#define PKT_TYPE_DATA 0xA
|
|
|
|
#define PKT_TYPE_SERVICE_MESSAGE 0xB
|
|
|
|
#define PKT_TYPE_REAUTH_MESSAGE 0xC
|
|
|
|
#define PKT_TYPE_KEEPALIVE 0xD
|
|
|
|
#define PKT_TYPE_CLOSE_CHANNEL 0x10
|
|
|
|
#define PKT_TYPE_CLOSE_CHANNEL_RESPONSE 0x11
|
|
|
|
|
|
|
|
/* HTTP tunnel auth fields present flags. */
|
|
|
|
#define HTTP_TUNNEL_AUTH_FIELD_SOH 0x1
|
|
|
|
|
|
|
|
/* HTTP tunnel auth response fields present flags. */
|
|
|
|
#define HTTP_TUNNEL_AUTH_RESPONSE_FIELD_REDIR_FLAGS 0x1
|
|
|
|
#define HTTP_TUNNEL_AUTH_RESPONSE_FIELD_IDLE_TIMEOUT 0x2
|
|
|
|
#define HTTP_TUNNEL_AUTH_RESPONSE_FIELD_SOH_RESPONSE 0x4
|
|
|
|
|
|
|
|
/* HTTP tunnel packet fields present flags. */
|
|
|
|
#define HTTP_TUNNEL_PACKET_FIELD_PAA_COOKIE 0x1
|
|
|
|
#define HTTP_TUNNEL_PACKET_FIELD_REAUTH 0x2
|
|
|
|
|
|
|
|
/* HTTP tunnel redir flags. */
|
|
|
|
#define HTTP_TUNNEL_REDIR_ENABLE_ALL 0x80000000
|
|
|
|
#define HTTP_TUNNEL_REDIR_DISABLE_ALL 0x40000000
|
|
|
|
#define HTTP_TUNNEL_REDIR_DISABLE_DRIVE 0x1
|
|
|
|
#define HTTP_TUNNEL_REDIR_DISABLE_PRINTER 0x2
|
|
|
|
#define HTTP_TUNNEL_REDIR_DISABLE_PORT 0x4
|
|
|
|
#define HTTP_TUNNEL_REDIR_DISABLE_CLIPBOARD 0x8
|
|
|
|
#define HTTP_TUNNEL_REDIR_DISABLE_PNP 0x10
|
|
|
|
|
|
|
|
/* HTTP tunnel response fields present flags. */
|
|
|
|
#define HTTP_TUNNEL_RESPONSE_FIELD_TUNNEL_ID 0x1
|
|
|
|
#define HTTP_TUNNEL_RESPONSE_FIELD_CAPS 0x2
|
|
|
|
#define HTTP_TUNNEL_RESPONSE_FIELD_SOH_REQ 0x4
|
|
|
|
#define HTTP_TUNNEL_RESPONSE_FIELD_CONSENT_MSG 0x10
|
|
|
|
|
|
|
|
/* HTTP capability type enumeration. */
|
|
|
|
#define HTTP_CAPABILITY_TYPE_QUAR_SOH 0x1
|
|
|
|
#define HTTP_CAPABILITY_IDLE_TIMEOUT 0x2
|
|
|
|
#define HTTP_CAPABILITY_MESSAGING_CONSENT_SIGN 0x4
|
|
|
|
#define HTTP_CAPABILITY_MESSAGING_SERVICE_MSG 0x8
|
|
|
|
#define HTTP_CAPABILITY_REAUTH 0x10
|
|
|
|
#define HTTP_CAPABILITY_UDP_TRANSPORT 0x20
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
#define WEBSOCKET_MASK_BIT 0x80
|
|
|
|
#define WEBSOCKET_FIN_BIT 0x80
|
|
|
|
|
|
|
|
typedef enum _WEBSOCKET_OPCODE
|
|
|
|
{
|
|
|
|
WebsocketContinuationOpcode = 0x0,
|
|
|
|
WebsocketTextOpcode = 0x1,
|
|
|
|
WebsocketBinaryOpcode = 0x2,
|
|
|
|
WebsocketCloseOpcode = 0x8,
|
|
|
|
WebsocketPingOpcode = 0x9,
|
|
|
|
WebsocketPongOpcode = 0xa,
|
|
|
|
} WEBSOCKET_OPCODE;
|
|
|
|
|
|
|
|
typedef enum _WEBSOCKET_STATE
|
|
|
|
{
|
|
|
|
WebsocketStateOpcodeAndFin,
|
|
|
|
WebsocketStateLengthAndMasking,
|
|
|
|
WebsocketStateShortLength,
|
|
|
|
WebsocketStateLongLength,
|
|
|
|
WebSocketStateMaskingKey,
|
|
|
|
WebSocketStatePayload,
|
|
|
|
} WEBSOCKET_STATE;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
size_t payloadLength;
|
|
|
|
uint32_t maskingKey;
|
|
|
|
BOOL masking;
|
|
|
|
BOOL closeSent;
|
|
|
|
BYTE opcode;
|
|
|
|
BYTE fragmentOriginalOpcode;
|
|
|
|
BYTE lengthAndMaskPosition;
|
|
|
|
WEBSOCKET_STATE state;
|
|
|
|
wStream* responseStreamBuffer;
|
|
|
|
} rdg_http_websocket_context;
|
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
typedef enum _CHUNK_STATE
|
|
|
|
{
|
|
|
|
ChunkStateLenghHeader,
|
|
|
|
ChunkStateData,
|
|
|
|
ChunkStateFooter
|
|
|
|
} CHUNK_STATE;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
size_t nextOffset;
|
|
|
|
size_t headerFooterPos;
|
|
|
|
CHUNK_STATE state;
|
|
|
|
char lenBuffer[11];
|
|
|
|
} rdg_http_encoding_chunked_context;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
TRANSFER_ENCODING httpTransferEncoding;
|
2021-01-25 18:20:18 +03:00
|
|
|
BOOL isWebsocketTransport;
|
2021-01-25 10:39:30 +03:00
|
|
|
union _context
|
|
|
|
{
|
|
|
|
rdg_http_encoding_chunked_context chunked;
|
2021-01-25 18:20:18 +03:00
|
|
|
rdg_http_websocket_context websocket;
|
2021-01-25 10:39:30 +03:00
|
|
|
} context;
|
|
|
|
} rdg_http_encoding_context;
|
|
|
|
|
2018-10-24 16:42:44 +03:00
|
|
|
struct rdp_rdg
|
|
|
|
{
|
|
|
|
rdpContext* context;
|
|
|
|
rdpSettings* settings;
|
2018-11-13 14:22:09 +03:00
|
|
|
BOOL attached;
|
2018-10-24 16:42:44 +03:00
|
|
|
BIO* frontBio;
|
|
|
|
rdpTls* tlsIn;
|
|
|
|
rdpTls* tlsOut;
|
|
|
|
rdpNtlm* ntlm;
|
|
|
|
HttpContext* http;
|
|
|
|
CRITICAL_SECTION writeSection;
|
|
|
|
|
|
|
|
UUID guid;
|
|
|
|
|
|
|
|
int state;
|
|
|
|
UINT16 packetRemainingCount;
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT16 reserved1;
|
2018-10-24 16:42:44 +03:00
|
|
|
int timeout;
|
|
|
|
UINT16 extAuth;
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT16 reserved2;
|
2021-01-25 10:39:30 +03:00
|
|
|
rdg_http_encoding_context transferEncoding;
|
2018-10-24 16:42:44 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
RDG_CLIENT_STATE_INITIAL,
|
|
|
|
RDG_CLIENT_STATE_HANDSHAKE,
|
|
|
|
RDG_CLIENT_STATE_TUNNEL_CREATE,
|
|
|
|
RDG_CLIENT_STATE_TUNNEL_AUTHORIZE,
|
|
|
|
RDG_CLIENT_STATE_CHANNEL_CREATE,
|
|
|
|
RDG_CLIENT_STATE_OPENED,
|
|
|
|
};
|
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
#pragma pack(push, 1)
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
typedef struct rdg_packet_header
|
|
|
|
{
|
|
|
|
UINT16 type;
|
|
|
|
UINT16 reserved;
|
|
|
|
UINT32 packetLength;
|
|
|
|
} RdgPacketHeader;
|
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
#pragma pack(pop)
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
UINT32 code;
|
|
|
|
const char* name;
|
2020-07-30 16:22:40 +03:00
|
|
|
} t_flag_mapping;
|
2018-11-16 17:41:19 +03:00
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
static const t_flag_mapping tunnel_response_fields_present[] = {
|
2019-11-06 17:24:51 +03:00
|
|
|
{ HTTP_TUNNEL_RESPONSE_FIELD_TUNNEL_ID, "HTTP_TUNNEL_RESPONSE_FIELD_TUNNEL_ID" },
|
|
|
|
{ HTTP_TUNNEL_RESPONSE_FIELD_CAPS, "HTTP_TUNNEL_RESPONSE_FIELD_CAPS" },
|
|
|
|
{ HTTP_TUNNEL_RESPONSE_FIELD_SOH_REQ, "HTTP_TUNNEL_RESPONSE_FIELD_SOH_REQ" },
|
|
|
|
{ HTTP_TUNNEL_RESPONSE_FIELD_CONSENT_MSG, "HTTP_TUNNEL_RESPONSE_FIELD_CONSENT_MSG" }
|
2018-11-21 16:32:07 +03:00
|
|
|
};
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
static const t_flag_mapping channel_response_fields_present[] = {
|
2019-11-06 17:24:51 +03:00
|
|
|
{ HTTP_CHANNEL_RESPONSE_FIELD_CHANNELID, "HTTP_CHANNEL_RESPONSE_FIELD_CHANNELID" },
|
|
|
|
{ HTTP_CHANNEL_RESPONSE_OPTIONAL, "HTTP_CHANNEL_RESPONSE_OPTIONAL" },
|
|
|
|
{ HTTP_CHANNEL_RESPONSE_FIELD_UDPPORT, "HTTP_CHANNEL_RESPONSE_FIELD_UDPPORT" }
|
2018-11-16 17:41:19 +03:00
|
|
|
};
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
static const t_flag_mapping tunnel_authorization_response_fields_present[] = {
|
2019-11-06 17:24:51 +03:00
|
|
|
{ HTTP_TUNNEL_AUTH_RESPONSE_FIELD_REDIR_FLAGS, "HTTP_TUNNEL_AUTH_RESPONSE_FIELD_REDIR_FLAGS" },
|
|
|
|
{ HTTP_TUNNEL_AUTH_RESPONSE_FIELD_IDLE_TIMEOUT,
|
|
|
|
"HTTP_TUNNEL_AUTH_RESPONSE_FIELD_IDLE_TIMEOUT" },
|
|
|
|
{ HTTP_TUNNEL_AUTH_RESPONSE_FIELD_SOH_RESPONSE,
|
|
|
|
"HTTP_TUNNEL_AUTH_RESPONSE_FIELD_SOH_RESPONSE" }
|
2018-11-21 16:32:07 +03:00
|
|
|
};
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
static const t_flag_mapping extended_auth[] = {
|
2019-11-06 17:24:51 +03:00
|
|
|
{ HTTP_EXTENDED_AUTH_NONE, "HTTP_EXTENDED_AUTH_NONE" },
|
|
|
|
{ HTTP_EXTENDED_AUTH_SC, "HTTP_EXTENDED_AUTH_SC" },
|
|
|
|
{ HTTP_EXTENDED_AUTH_PAA, "HTTP_EXTENDED_AUTH_PAA" },
|
|
|
|
{ HTTP_EXTENDED_AUTH_SSPI_NTLM, "HTTP_EXTENDED_AUTH_SSPI_NTLM" }
|
2018-11-16 17:41:19 +03:00
|
|
|
};
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
static const t_flag_mapping capabilities_enum[] = {
|
|
|
|
{ HTTP_CAPABILITY_TYPE_QUAR_SOH, "HTTP_CAPABILITY_TYPE_QUAR_SOH" },
|
|
|
|
{ HTTP_CAPABILITY_IDLE_TIMEOUT, "HTTP_CAPABILITY_IDLE_TIMEOUT" },
|
|
|
|
{ HTTP_CAPABILITY_MESSAGING_CONSENT_SIGN, "HTTP_CAPABILITY_MESSAGING_CONSENT_SIGN" },
|
|
|
|
{ HTTP_CAPABILITY_MESSAGING_SERVICE_MSG, "HTTP_CAPABILITY_MESSAGING_SERVICE_MSG" },
|
|
|
|
{ HTTP_CAPABILITY_REAUTH, "HTTP_CAPABILITY_REAUTH" },
|
|
|
|
{ HTTP_CAPABILITY_UDP_TRANSPORT, "HTTP_CAPABILITY_UDP_TRANSPORT" }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* flags_to_string(UINT32 flags, const t_flag_mapping* map, size_t elements)
|
2018-11-16 17:41:19 +03:00
|
|
|
{
|
|
|
|
size_t x = 0;
|
|
|
|
static char buffer[1024] = { 0 };
|
|
|
|
char fields[12];
|
2018-11-26 16:11:29 +03:00
|
|
|
memset(buffer, 0, sizeof(buffer));
|
2018-11-16 17:41:19 +03:00
|
|
|
|
2018-11-21 16:32:07 +03:00
|
|
|
for (x = 0; x < elements; x++)
|
2018-11-16 17:41:19 +03:00
|
|
|
{
|
2018-11-22 16:29:22 +03:00
|
|
|
if (buffer[0] != '\0')
|
2018-11-16 17:41:19 +03:00
|
|
|
strcat(buffer, "|");
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
if ((map[x].code & flags) != 0)
|
2018-11-21 16:32:07 +03:00
|
|
|
strcat(buffer, map[x].name);
|
2018-11-16 17:41:19 +03:00
|
|
|
}
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
sprintf_s(fields, ARRAYSIZE(fields), " [%04" PRIx32 "]", flags);
|
2018-11-16 17:41:19 +03:00
|
|
|
strcat(buffer, fields);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2018-11-21 16:32:07 +03:00
|
|
|
static const char* channel_response_fields_present_to_string(UINT16 fieldsPresent)
|
2018-11-16 17:41:19 +03:00
|
|
|
{
|
2020-07-30 16:22:40 +03:00
|
|
|
return flags_to_string(fieldsPresent, channel_response_fields_present,
|
|
|
|
ARRAYSIZE(channel_response_fields_present));
|
2018-11-21 16:32:07 +03:00
|
|
|
}
|
2018-11-16 17:41:19 +03:00
|
|
|
|
2018-11-21 16:32:07 +03:00
|
|
|
static const char* tunnel_response_fields_present_to_string(UINT16 fieldsPresent)
|
|
|
|
{
|
2020-07-30 16:22:40 +03:00
|
|
|
return flags_to_string(fieldsPresent, tunnel_response_fields_present,
|
|
|
|
ARRAYSIZE(tunnel_response_fields_present));
|
2018-11-21 16:32:07 +03:00
|
|
|
}
|
2018-11-16 17:41:19 +03:00
|
|
|
|
2018-11-21 16:32:07 +03:00
|
|
|
static const char* tunnel_authorization_response_fields_present_to_string(UINT16 fieldsPresent)
|
|
|
|
{
|
2020-07-30 16:22:40 +03:00
|
|
|
return flags_to_string(fieldsPresent, tunnel_authorization_response_fields_present,
|
|
|
|
ARRAYSIZE(tunnel_authorization_response_fields_present));
|
2018-11-21 16:32:07 +03:00
|
|
|
}
|
2018-11-16 17:41:19 +03:00
|
|
|
|
2018-11-21 16:32:07 +03:00
|
|
|
static const char* extended_auth_to_string(UINT16 auth)
|
|
|
|
{
|
|
|
|
if (auth == HTTP_EXTENDED_AUTH_NONE)
|
|
|
|
return "HTTP_EXTENDED_AUTH_NONE [0x0000]";
|
2018-11-16 17:41:19 +03:00
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
return flags_to_string(auth, extended_auth, ARRAYSIZE(extended_auth));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* capabilities_enum_to_string(UINT32 capabilities)
|
|
|
|
{
|
|
|
|
return flags_to_string(capabilities, capabilities_enum, ARRAYSIZE(capabilities_enum));
|
|
|
|
}
|
|
|
|
|
2020-08-10 17:39:49 +03:00
|
|
|
static BOOL rdg_read_http_unicode_string(wStream* s, const WCHAR** string, UINT16* lengthInBytes)
|
2020-07-30 16:22:40 +03:00
|
|
|
{
|
2020-08-10 17:39:49 +03:00
|
|
|
WCHAR* str;
|
2020-07-30 16:22:40 +03:00
|
|
|
UINT16 strLenBytes;
|
2021-05-25 09:03:19 +03:00
|
|
|
size_t rem = Stream_GetRemainingLength(s);
|
2020-07-30 16:22:40 +03:00
|
|
|
|
|
|
|
/* Read length of the string */
|
2021-05-25 09:03:19 +03:00
|
|
|
if (rem < 4)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "[%s]: Could not read stream length, only have % " PRIuz " bytes", rem);
|
2020-07-30 16:22:40 +03:00
|
|
|
return FALSE;
|
2021-05-25 09:03:19 +03:00
|
|
|
}
|
2020-07-30 16:22:40 +03:00
|
|
|
Stream_Read_UINT16(s, strLenBytes);
|
|
|
|
|
|
|
|
/* Remember position of our string */
|
2020-08-10 17:39:49 +03:00
|
|
|
str = (WCHAR*)Stream_Pointer(s);
|
2020-07-30 16:22:40 +03:00
|
|
|
|
|
|
|
/* seek past the string - if this fails something is wrong */
|
|
|
|
if (!Stream_SafeSeek(s, strLenBytes))
|
2021-05-25 09:03:19 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG,
|
|
|
|
"[%s]: Could not read stream data, only have % " PRIuz " bytes, expected %" PRIu16,
|
|
|
|
rem - 4, strLenBytes);
|
2020-07-30 16:22:40 +03:00
|
|
|
return FALSE;
|
2021-05-25 09:03:19 +03:00
|
|
|
}
|
2020-07-30 16:22:40 +03:00
|
|
|
|
|
|
|
/* return the string data (if wanted) */
|
|
|
|
if (string)
|
2020-08-10 17:39:49 +03:00
|
|
|
*string = str;
|
2020-07-30 16:22:40 +03:00
|
|
|
if (lengthInBytes)
|
|
|
|
*lengthInBytes = strLenBytes;
|
|
|
|
|
|
|
|
return TRUE;
|
2018-11-16 17:41:19 +03:00
|
|
|
}
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
static BOOL rdg_write_chunked(BIO* bio, wStream* sPacket)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2021-01-25 18:20:18 +03:00
|
|
|
size_t len;
|
2015-03-17 23:09:17 +03:00
|
|
|
int status;
|
2015-03-17 21:54:16 +03:00
|
|
|
wStream* sChunk;
|
|
|
|
char chunkSize[11];
|
2019-11-06 17:24:51 +03:00
|
|
|
sprintf_s(chunkSize, sizeof(chunkSize), "%" PRIXz "\r\n", Stream_Length(sPacket));
|
2019-10-29 12:18:09 +03:00
|
|
|
sChunk = Stream_New(NULL, strnlen(chunkSize, sizeof(chunkSize)) + Stream_Length(sPacket) + 2);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!sChunk)
|
|
|
|
return FALSE;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2019-10-29 12:18:09 +03:00
|
|
|
Stream_Write(sChunk, chunkSize, strnlen(chunkSize, sizeof(chunkSize)));
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Write(sChunk, Stream_Buffer(sPacket), Stream_Length(sPacket));
|
|
|
|
Stream_Write(sChunk, "\r\n", 2);
|
|
|
|
Stream_SealLength(sChunk);
|
2021-01-25 18:20:18 +03:00
|
|
|
len = Stream_Length(sChunk);
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
if (len > INT_MAX)
|
2021-04-27 11:04:47 +03:00
|
|
|
{
|
|
|
|
Stream_Free(sChunk, TRUE);
|
2018-10-24 17:49:25 +03:00
|
|
|
return FALSE;
|
2021-04-27 11:04:47 +03:00
|
|
|
}
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
status = BIO_write(bio, Stream_Buffer(sChunk), (int)len);
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Free(sChunk, TRUE);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2021-02-16 18:10:23 +03:00
|
|
|
if (status != (SSIZE_T)len)
|
2021-01-25 18:20:18 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdg_write_websocket(BIO* bio, wStream* sPacket, WEBSOCKET_OPCODE opcode)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
size_t fullLen;
|
|
|
|
int status;
|
|
|
|
wStream* sWS;
|
|
|
|
|
|
|
|
uint32_t maskingKey;
|
|
|
|
|
|
|
|
size_t streamPos;
|
|
|
|
|
|
|
|
len = Stream_Length(sPacket);
|
|
|
|
Stream_SetPosition(sPacket, 0);
|
|
|
|
|
|
|
|
if (len > INT_MAX)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (len < 126)
|
|
|
|
fullLen = len + 6; /* 2 byte "mini header" + 4 byte masking key */
|
|
|
|
else if (len < 0x10000)
|
|
|
|
fullLen = len + 8; /* 2 byte "mini header" + 2 byte length + 4 byte masking key */
|
|
|
|
else
|
|
|
|
fullLen = len + 14; /* 2 byte "mini header" + 8 byte length + 4 byte masking key */
|
|
|
|
|
|
|
|
sWS = Stream_New(NULL, fullLen);
|
|
|
|
if (!sWS)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
winpr_RAND((BYTE*)&maskingKey, 4);
|
|
|
|
|
|
|
|
Stream_Write_UINT8(sWS, WEBSOCKET_FIN_BIT | opcode);
|
|
|
|
if (len < 126)
|
|
|
|
Stream_Write_UINT8(sWS, len | WEBSOCKET_MASK_BIT);
|
|
|
|
else if (len < 0x10000)
|
|
|
|
{
|
|
|
|
Stream_Write_UINT8(sWS, 126 | WEBSOCKET_MASK_BIT);
|
|
|
|
Stream_Write_UINT16_BE(sWS, len);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Stream_Write_UINT8(sWS, 127 | WEBSOCKET_MASK_BIT);
|
|
|
|
Stream_Write_UINT32_BE(sWS, 0); /* payload is limited to INT_MAX */
|
|
|
|
Stream_Write_UINT32_BE(sWS, len);
|
|
|
|
}
|
|
|
|
Stream_Write_UINT32(sWS, maskingKey);
|
|
|
|
|
|
|
|
/* mask as much as possible with 32bit access */
|
|
|
|
for (streamPos = 0; streamPos + 4 <= len; streamPos += 4)
|
|
|
|
{
|
|
|
|
uint32_t data;
|
|
|
|
Stream_Read_UINT32(sPacket, data);
|
|
|
|
Stream_Write_UINT32(sWS, data ^ maskingKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mask the rest byte by byte */
|
|
|
|
for (; streamPos < len; streamPos++)
|
|
|
|
{
|
|
|
|
BYTE data;
|
|
|
|
BYTE* partialMask = ((BYTE*)&maskingKey) + (streamPos % 4);
|
|
|
|
Stream_Read_UINT8(sPacket, data);
|
|
|
|
Stream_Write_UINT8(sWS, data ^ *partialMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_SealLength(sWS);
|
|
|
|
|
|
|
|
status = BIO_write(bio, Stream_Buffer(sWS), Stream_Length(sWS));
|
|
|
|
Stream_Free(sWS, TRUE);
|
|
|
|
|
2021-02-16 18:10:23 +03:00
|
|
|
if (status != (SSIZE_T)fullLen)
|
2021-01-25 18:20:18 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdg_write_packet(rdpRdg* rdg, wStream* sPacket)
|
|
|
|
{
|
|
|
|
if (rdg->transferEncoding.isWebsocketTransport)
|
|
|
|
{
|
|
|
|
if (rdg->transferEncoding.context.websocket.closeSent)
|
|
|
|
return FALSE;
|
|
|
|
return rdg_write_websocket(rdg->tlsOut->bio, sPacket, WebsocketBinaryOpcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rdg_write_chunked(rdg->tlsIn->bio, sPacket);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_websocket_read_data(BIO* bio, BYTE* pBuffer, size_t size,
|
|
|
|
rdg_http_websocket_context* encodingContext)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
{
|
|
|
|
encodingContext->state = WebsocketStateOpcodeAndFin;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
status =
|
|
|
|
BIO_read(bio, pBuffer,
|
|
|
|
(encodingContext->payloadLength < size ? encodingContext->payloadLength : size));
|
|
|
|
if (status <= 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
encodingContext->payloadLength -= status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
encodingContext->state = WebsocketStateOpcodeAndFin;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_websocket_read_discard(BIO* bio, rdg_http_websocket_context* encodingContext)
|
|
|
|
{
|
|
|
|
char _dummy[256];
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
{
|
|
|
|
encodingContext->state = WebsocketStateOpcodeAndFin;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = BIO_read(bio, _dummy, sizeof(_dummy));
|
|
|
|
if (status <= 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
encodingContext->payloadLength -= status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
encodingContext->state = WebsocketStateOpcodeAndFin;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_websocket_read_wstream(BIO* bio, wStream* s,
|
|
|
|
rdg_http_websocket_context* encodingContext)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
{
|
|
|
|
encodingContext->state = WebsocketStateOpcodeAndFin;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (s == NULL || Stream_GetRemainingCapacity(s) != encodingContext->payloadLength)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
status = BIO_read(bio, Stream_Pointer(s), encodingContext->payloadLength);
|
|
|
|
if (status <= 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
Stream_Seek(s, status);
|
|
|
|
|
|
|
|
encodingContext->payloadLength -= status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
{
|
|
|
|
encodingContext->state = WebsocketStateOpcodeAndFin;
|
|
|
|
Stream_SealLength(s);
|
|
|
|
Stream_SetPosition(s, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdg_websocket_reply_close(BIO* bio, wStream* s)
|
|
|
|
{
|
|
|
|
/* write back close */
|
|
|
|
wStream* closeFrame;
|
|
|
|
uint16_t maskingKey1;
|
|
|
|
uint16_t maskingKey2;
|
|
|
|
int status;
|
|
|
|
size_t closeDataLen;
|
|
|
|
|
|
|
|
closeDataLen = 0;
|
|
|
|
if (s != NULL && Stream_Length(s) >= 2)
|
|
|
|
closeDataLen = 2;
|
|
|
|
|
|
|
|
closeFrame = Stream_New(NULL, 6 + closeDataLen);
|
|
|
|
Stream_Write_UINT8(closeFrame, WEBSOCKET_FIN_BIT | WebsocketPongOpcode);
|
|
|
|
Stream_Write_UINT8(closeFrame, closeDataLen | WEBSOCKET_MASK_BIT); /* no payload */
|
|
|
|
winpr_RAND((BYTE*)&maskingKey1, 2);
|
|
|
|
winpr_RAND((BYTE*)&maskingKey2, 2);
|
|
|
|
Stream_Write_UINT16(closeFrame, maskingKey1);
|
|
|
|
Stream_Write_UINT16(closeFrame, maskingKey2); /* unused half, max 2 bytes of data */
|
|
|
|
|
|
|
|
if (closeDataLen == 2)
|
|
|
|
{
|
|
|
|
uint16_t data;
|
|
|
|
Stream_Read_UINT16(s, data);
|
2021-07-14 12:22:41 +03:00
|
|
|
Stream_Write_UINT16(closeFrame, data ^ maskingKey1);
|
2021-01-25 18:20:18 +03:00
|
|
|
}
|
|
|
|
Stream_SealLength(closeFrame);
|
|
|
|
|
|
|
|
status = BIO_write(bio, Stream_Buffer(closeFrame), Stream_Length(closeFrame));
|
2021-07-14 12:22:41 +03:00
|
|
|
Stream_Free(closeFrame, TRUE);
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
/* server MUST close socket now. The server is not allowed anymore to
|
|
|
|
* send frames but if he does, nothing bad would happen */
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status < 0)
|
|
|
|
return FALSE;
|
2021-01-25 18:20:18 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdg_websocket_reply_pong(BIO* bio, wStream* s)
|
|
|
|
{
|
|
|
|
wStream* closeFrame;
|
|
|
|
uint32_t maskingKey;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (s != NULL)
|
|
|
|
return rdg_write_websocket(bio, s, WebsocketPongOpcode);
|
|
|
|
|
|
|
|
closeFrame = Stream_New(NULL, 6);
|
|
|
|
Stream_Write_UINT8(closeFrame, WEBSOCKET_FIN_BIT | WebsocketPongOpcode);
|
|
|
|
Stream_Write_UINT8(closeFrame, 0 | WEBSOCKET_MASK_BIT); /* no payload */
|
|
|
|
winpr_RAND((BYTE*)&maskingKey, 4);
|
|
|
|
Stream_Write_UINT32(closeFrame, maskingKey); /* dummy masking key. */
|
|
|
|
Stream_SealLength(closeFrame);
|
|
|
|
|
|
|
|
status = BIO_write(bio, Stream_Buffer(closeFrame), Stream_Length(closeFrame));
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
if (status < 0)
|
|
|
|
return FALSE;
|
2015-03-17 21:54:16 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
static int rdg_websocket_handle_payload(BIO* bio, BYTE* pBuffer, size_t size,
|
|
|
|
rdg_http_websocket_context* encodingContext)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
BYTE effectiveOpcode = ((encodingContext->opcode & 0xf) == WebsocketContinuationOpcode
|
|
|
|
? encodingContext->fragmentOriginalOpcode & 0xf
|
|
|
|
: encodingContext->opcode & 0xf);
|
|
|
|
|
|
|
|
switch (effectiveOpcode)
|
|
|
|
{
|
|
|
|
case WebsocketBinaryOpcode:
|
|
|
|
{
|
|
|
|
status = rdg_websocket_read_data(bio, pBuffer, size, encodingContext);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WebsocketPingOpcode:
|
|
|
|
{
|
|
|
|
if (encodingContext->responseStreamBuffer == NULL)
|
|
|
|
encodingContext->responseStreamBuffer =
|
|
|
|
Stream_New(NULL, encodingContext->payloadLength);
|
|
|
|
|
|
|
|
status = rdg_websocket_read_wstream(bio, encodingContext->responseStreamBuffer,
|
|
|
|
encodingContext);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
{
|
|
|
|
if (!encodingContext->closeSent)
|
|
|
|
rdg_websocket_reply_pong(bio, encodingContext->responseStreamBuffer);
|
|
|
|
|
|
|
|
if (encodingContext->responseStreamBuffer)
|
|
|
|
Stream_Free(encodingContext->responseStreamBuffer, TRUE);
|
|
|
|
encodingContext->responseStreamBuffer = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WebsocketCloseOpcode:
|
|
|
|
{
|
|
|
|
if (encodingContext->responseStreamBuffer == NULL)
|
|
|
|
encodingContext->responseStreamBuffer =
|
|
|
|
Stream_New(NULL, encodingContext->payloadLength);
|
|
|
|
|
|
|
|
status = rdg_websocket_read_wstream(bio, encodingContext->responseStreamBuffer,
|
|
|
|
encodingContext);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
if (encodingContext->payloadLength == 0)
|
|
|
|
{
|
|
|
|
rdg_websocket_reply_close(bio, encodingContext->responseStreamBuffer);
|
|
|
|
encodingContext->closeSent = TRUE;
|
|
|
|
|
|
|
|
if (encodingContext->responseStreamBuffer)
|
|
|
|
Stream_Free(encodingContext->responseStreamBuffer, TRUE);
|
|
|
|
encodingContext->responseStreamBuffer = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WLog_WARN(TAG, "Unimplemented websocket opcode %x. Dropping", effectiveOpcode & 0xf);
|
|
|
|
|
|
|
|
status = rdg_websocket_read_discard(bio, encodingContext);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
/* return how many bytes have been written to pBuffer.
|
|
|
|
* Only WebsocketBinaryOpcode writes into it and it returns directly */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_websocket_read(BIO* bio, BYTE* pBuffer, size_t size,
|
|
|
|
rdg_http_websocket_context* encodingContext)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
int effectiveDataLen = 0;
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(encodingContext != NULL);
|
2021-01-25 18:20:18 +03:00
|
|
|
while (TRUE)
|
|
|
|
{
|
|
|
|
switch (encodingContext->state)
|
|
|
|
{
|
|
|
|
case WebsocketStateOpcodeAndFin:
|
|
|
|
{
|
|
|
|
BYTE buffer[1];
|
|
|
|
status = BIO_read(bio, (char*)buffer, 1);
|
|
|
|
if (status <= 0)
|
|
|
|
return (effectiveDataLen > 0 ? effectiveDataLen : status);
|
|
|
|
|
|
|
|
encodingContext->opcode = buffer[0];
|
|
|
|
if (((encodingContext->opcode & 0xf) != WebsocketContinuationOpcode) &&
|
|
|
|
(encodingContext->opcode & 0xf) < 0x08)
|
|
|
|
encodingContext->fragmentOriginalOpcode = encodingContext->opcode;
|
|
|
|
encodingContext->state = WebsocketStateLengthAndMasking;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WebsocketStateLengthAndMasking:
|
|
|
|
{
|
|
|
|
BYTE buffer[1];
|
|
|
|
BYTE len;
|
|
|
|
status = BIO_read(bio, (char*)buffer, 1);
|
|
|
|
if (status <= 0)
|
|
|
|
return (effectiveDataLen > 0 ? effectiveDataLen : status);
|
|
|
|
|
|
|
|
encodingContext->masking = ((buffer[0] & WEBSOCKET_MASK_BIT) == WEBSOCKET_MASK_BIT);
|
|
|
|
encodingContext->lengthAndMaskPosition = 0;
|
|
|
|
encodingContext->payloadLength = 0;
|
|
|
|
len = buffer[0] & 0x7f;
|
|
|
|
if (len < 126)
|
|
|
|
{
|
|
|
|
encodingContext->payloadLength = len;
|
|
|
|
encodingContext->state = (encodingContext->masking ? WebSocketStateMaskingKey
|
|
|
|
: WebSocketStatePayload);
|
|
|
|
}
|
|
|
|
else if (len == 126)
|
|
|
|
encodingContext->state = WebsocketStateShortLength;
|
|
|
|
else
|
|
|
|
encodingContext->state = WebsocketStateLongLength;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WebsocketStateShortLength:
|
|
|
|
case WebsocketStateLongLength:
|
|
|
|
{
|
|
|
|
BYTE buffer[1];
|
|
|
|
BYTE lenLength = (encodingContext->state == WebsocketStateShortLength ? 2 : 8);
|
|
|
|
while (encodingContext->lengthAndMaskPosition < lenLength)
|
|
|
|
{
|
|
|
|
status = BIO_read(bio, (char*)buffer, 1);
|
|
|
|
if (status <= 0)
|
|
|
|
return (effectiveDataLen > 0 ? effectiveDataLen : status);
|
|
|
|
|
|
|
|
encodingContext->payloadLength =
|
|
|
|
(encodingContext->payloadLength) << 8 | buffer[0];
|
|
|
|
encodingContext->lengthAndMaskPosition += status;
|
|
|
|
}
|
|
|
|
encodingContext->state =
|
|
|
|
(encodingContext->masking ? WebSocketStateMaskingKey : WebSocketStatePayload);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WebSocketStateMaskingKey:
|
|
|
|
{
|
|
|
|
WLog_WARN(
|
|
|
|
TAG, "Websocket Server sends data with masking key. This is against RFC 6455.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WebSocketStatePayload:
|
|
|
|
{
|
|
|
|
status = rdg_websocket_handle_payload(bio, pBuffer, size, encodingContext);
|
|
|
|
if (status < 0)
|
|
|
|
return (effectiveDataLen > 0 ? effectiveDataLen : status);
|
|
|
|
|
|
|
|
effectiveDataLen += status;
|
|
|
|
|
|
|
|
if ((size_t)status == size)
|
|
|
|
return effectiveDataLen;
|
|
|
|
pBuffer += status;
|
|
|
|
size -= status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* should be unreachable */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
static int rdg_chuncked_read(BIO* bio, BYTE* pBuffer, size_t size,
|
2021-01-25 18:20:18 +03:00
|
|
|
rdg_http_encoding_chunked_context* encodingContext)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2015-03-17 23:09:17 +03:00
|
|
|
int status;
|
2021-01-25 10:39:30 +03:00
|
|
|
int effectiveDataLen = 0;
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(encodingContext != NULL);
|
2021-01-25 10:39:30 +03:00
|
|
|
while (TRUE)
|
|
|
|
{
|
2021-01-25 18:20:18 +03:00
|
|
|
switch (encodingContext->state)
|
2021-01-25 10:39:30 +03:00
|
|
|
{
|
|
|
|
case ChunkStateData:
|
|
|
|
{
|
2021-01-25 18:20:18 +03:00
|
|
|
status = BIO_read(
|
|
|
|
bio, pBuffer,
|
|
|
|
(size > encodingContext->nextOffset ? encodingContext->nextOffset : size));
|
2021-01-25 10:39:30 +03:00
|
|
|
if (status <= 0)
|
|
|
|
return (effectiveDataLen > 0 ? effectiveDataLen : status);
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
encodingContext->nextOffset -= status;
|
|
|
|
if (encodingContext->nextOffset == 0)
|
2021-01-25 10:39:30 +03:00
|
|
|
{
|
2021-01-25 18:20:18 +03:00
|
|
|
encodingContext->state = ChunkStateFooter;
|
|
|
|
encodingContext->headerFooterPos = 0;
|
2021-01-25 10:39:30 +03:00
|
|
|
}
|
|
|
|
effectiveDataLen += status;
|
|
|
|
|
|
|
|
if ((size_t)status == size)
|
|
|
|
return effectiveDataLen;
|
|
|
|
|
|
|
|
pBuffer += status;
|
|
|
|
size -= status;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ChunkStateFooter:
|
|
|
|
{
|
|
|
|
char _dummy[2];
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(encodingContext->nextOffset == 0);
|
|
|
|
WINPR_ASSERT(encodingContext->headerFooterPos < 2);
|
2021-01-25 18:20:18 +03:00
|
|
|
status = BIO_read(bio, _dummy, 2 - encodingContext->headerFooterPos);
|
2021-01-25 10:39:30 +03:00
|
|
|
if (status >= 0)
|
|
|
|
{
|
2021-01-25 18:20:18 +03:00
|
|
|
encodingContext->headerFooterPos += status;
|
|
|
|
if (encodingContext->headerFooterPos == 2)
|
2021-01-25 10:39:30 +03:00
|
|
|
{
|
2021-01-25 18:20:18 +03:00
|
|
|
encodingContext->state = ChunkStateLenghHeader;
|
|
|
|
encodingContext->headerFooterPos = 0;
|
2021-01-25 10:39:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return (effectiveDataLen > 0 ? effectiveDataLen : status);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ChunkStateLenghHeader:
|
|
|
|
{
|
|
|
|
BOOL _haveNewLine = FALSE;
|
|
|
|
size_t tmp;
|
2021-01-25 18:20:18 +03:00
|
|
|
char* dst = &encodingContext->lenBuffer[encodingContext->headerFooterPos];
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(encodingContext->nextOffset == 0);
|
2021-01-25 18:20:18 +03:00
|
|
|
while (encodingContext->headerFooterPos < 10 && !_haveNewLine)
|
2021-01-25 10:39:30 +03:00
|
|
|
{
|
|
|
|
status = BIO_read(bio, dst, 1);
|
|
|
|
if (status >= 0)
|
|
|
|
{
|
|
|
|
if (*dst == '\n')
|
|
|
|
_haveNewLine = TRUE;
|
2021-01-25 18:20:18 +03:00
|
|
|
encodingContext->headerFooterPos += status;
|
2021-01-25 10:39:30 +03:00
|
|
|
dst += status;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return (effectiveDataLen > 0 ? effectiveDataLen : status);
|
|
|
|
}
|
|
|
|
*dst = '\0';
|
|
|
|
/* strtoul is tricky, error are reported via errno, we also need
|
|
|
|
* to ensure the result does not overflow */
|
|
|
|
errno = 0;
|
2021-01-25 18:20:18 +03:00
|
|
|
tmp = strtoul(encodingContext->lenBuffer, NULL, 16);
|
2021-01-25 10:39:30 +03:00
|
|
|
if ((errno != 0) || (tmp > SIZE_MAX))
|
|
|
|
return -1;
|
2021-01-25 18:20:18 +03:00
|
|
|
encodingContext->nextOffset = tmp;
|
|
|
|
encodingContext->state = ChunkStateData;
|
2021-01-25 10:39:30 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
if (encodingContext->nextOffset == 0)
|
|
|
|
{ /* end of stream */
|
2021-01-25 10:39:30 +03:00
|
|
|
int fd = BIO_get_fd(bio, NULL);
|
|
|
|
if (fd >= 0)
|
2021-01-25 18:20:18 +03:00
|
|
|
closesocket((SOCKET)fd);
|
2021-01-25 10:39:30 +03:00
|
|
|
|
|
|
|
WLog_WARN(TAG, "cunked encoding end of stream received");
|
2021-01-25 18:20:18 +03:00
|
|
|
encodingContext->headerFooterPos = 0;
|
|
|
|
encodingContext->state = ChunkStateFooter;
|
2021-01-25 10:39:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* invalid state */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_socket_read(BIO* bio, BYTE* pBuffer, size_t size,
|
|
|
|
rdg_http_encoding_context* encodingContext)
|
|
|
|
{
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(encodingContext != NULL);
|
2021-01-25 18:20:18 +03:00
|
|
|
|
|
|
|
if (encodingContext->isWebsocketTransport)
|
|
|
|
{
|
|
|
|
return rdg_websocket_read(bio, pBuffer, size, &encodingContext->context.websocket);
|
|
|
|
}
|
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
switch (encodingContext->httpTransferEncoding)
|
|
|
|
{
|
|
|
|
case TransferEncodingIdentity:
|
|
|
|
return BIO_read(bio, pBuffer, size);
|
|
|
|
case TransferEncodingChunked:
|
2021-01-25 18:20:18 +03:00
|
|
|
return rdg_chuncked_read(bio, pBuffer, size, &encodingContext->context.chunked);
|
2021-01-25 10:39:30 +03:00
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return -1; /* should not be reached */
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdg_read_all(rdpTls* tls, BYTE* buffer, size_t size,
|
|
|
|
rdg_http_encoding_context* transferEncoding)
|
|
|
|
{
|
|
|
|
size_t readCount = 0;
|
2018-10-19 12:56:56 +03:00
|
|
|
BYTE* pBuffer = buffer;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-04-05 05:06:59 +03:00
|
|
|
while (readCount < size)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2021-01-25 10:39:30 +03:00
|
|
|
int status = rdg_socket_read(tls->bio, pBuffer, size - readCount, transferEncoding);
|
2018-04-05 05:06:59 +03:00
|
|
|
if (status <= 0)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-04-05 05:06:59 +03:00
|
|
|
if (!BIO_should_retry(tls->bio))
|
|
|
|
return FALSE;
|
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
Sleep(10);
|
2015-03-17 21:54:16 +03:00
|
|
|
continue;
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
readCount += status;
|
2018-10-19 12:56:56 +03:00
|
|
|
pBuffer += status;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
2018-05-03 13:25:52 +03:00
|
|
|
|
2018-04-05 05:06:59 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2018-04-05 05:06:59 +03:00
|
|
|
static wStream* rdg_receive_packet(rdpRdg* rdg)
|
|
|
|
{
|
|
|
|
wStream* s;
|
2018-10-24 17:49:25 +03:00
|
|
|
const size_t header = sizeof(RdgPacketHeader);
|
2018-04-05 05:06:59 +03:00
|
|
|
size_t packetLength;
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(header <= INT_MAX);
|
2018-04-05 05:06:59 +03:00
|
|
|
s = Stream_New(NULL, 1024);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-04-05 05:06:59 +03:00
|
|
|
if (!s)
|
|
|
|
return NULL;
|
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
if (!rdg_read_all(rdg->tlsOut, Stream_Buffer(s), header, &rdg->transferEncoding))
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-04-05 05:06:59 +03:00
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-04-05 23:12:20 +03:00
|
|
|
Stream_Seek(s, 4);
|
|
|
|
Stream_Read_UINT32(s, packetLength);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2020-04-15 18:21:46 +03:00
|
|
|
if ((packetLength > INT_MAX) || !Stream_EnsureCapacity(s, packetLength) ||
|
|
|
|
(packetLength < header))
|
2018-04-05 05:06:59 +03:00
|
|
|
{
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return NULL;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
if (!rdg_read_all(rdg->tlsOut, Stream_Buffer(s) + header, (int)packetLength - (int)header,
|
|
|
|
&rdg->transferEncoding))
|
2018-04-05 05:06:59 +03:00
|
|
|
{
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_SetLength(s, packetLength);
|
2015-03-17 21:54:16 +03:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_send_handshake(rdpRdg* rdg)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
wStream* s;
|
|
|
|
BOOL status;
|
|
|
|
s = Stream_New(NULL, 14);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!s)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
Stream_Write_UINT16(s, PKT_TYPE_HANDSHAKE_REQUEST); /* Type (2 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, 0); /* Reserved (2 bytes) */
|
|
|
|
Stream_Write_UINT32(s, 14); /* PacketLength (4 bytes) */
|
|
|
|
Stream_Write_UINT8(s, 1); /* VersionMajor (1 byte) */
|
|
|
|
Stream_Write_UINT8(s, 0); /* VersionMinor (1 byte) */
|
|
|
|
Stream_Write_UINT16(s, 0); /* ClientVersion (2 bytes), must be 0 */
|
|
|
|
Stream_Write_UINT16(s, rdg->extAuth); /* ExtendedAuthentication (2 bytes) */
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_SealLength(s);
|
|
|
|
status = rdg_write_packet(rdg, s);
|
|
|
|
Stream_Free(s, TRUE);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
rdg->state = RDG_CLIENT_STATE_HANDSHAKE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_send_tunnel_request(rdpRdg* rdg)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
wStream* s;
|
|
|
|
BOOL status;
|
2018-04-05 05:08:26 +03:00
|
|
|
UINT32 packetSize = 16;
|
|
|
|
UINT16 fieldsPresent = 0;
|
2018-02-13 18:40:23 +03:00
|
|
|
WCHAR* PAACookie = NULL;
|
2018-10-24 17:49:25 +03:00
|
|
|
int PAACookieLen = 0;
|
2020-07-30 16:22:40 +03:00
|
|
|
const UINT32 capabilities = HTTP_CAPABILITY_TYPE_QUAR_SOH |
|
|
|
|
HTTP_CAPABILITY_MESSAGING_CONSENT_SIGN |
|
|
|
|
HTTP_CAPABILITY_MESSAGING_SERVICE_MSG;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-02-13 18:40:23 +03:00
|
|
|
if (rdg->extAuth == HTTP_EXTENDED_AUTH_PAA)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
PAACookieLen =
|
|
|
|
ConvertToUnicode(CP_UTF8, 0, rdg->settings->GatewayAccessToken, -1, &PAACookie, 0);
|
2018-02-13 18:40:23 +03:00
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
if (!PAACookie || (PAACookieLen < 0) || (PAACookieLen > UINT16_MAX / 2))
|
|
|
|
{
|
|
|
|
free(PAACookie);
|
2018-02-13 18:40:23 +03:00
|
|
|
return FALSE;
|
2018-10-24 17:49:25 +03:00
|
|
|
}
|
2018-02-13 18:40:23 +03:00
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
packetSize += 2 + (UINT32)PAACookieLen * sizeof(WCHAR);
|
2018-04-05 05:08:26 +03:00
|
|
|
fieldsPresent = HTTP_TUNNEL_PACKET_FIELD_PAA_COOKIE;
|
2018-02-13 18:40:23 +03:00
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:26 +03:00
|
|
|
s = Stream_New(NULL, packetSize);
|
|
|
|
|
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
free(PAACookie);
|
|
|
|
return FALSE;
|
2018-02-13 18:40:23 +03:00
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
Stream_Write_UINT16(s, PKT_TYPE_TUNNEL_CREATE); /* Type (2 bytes) */
|
|
|
|
Stream_Write_UINT16(s, 0); /* Reserved (2 bytes) */
|
|
|
|
Stream_Write_UINT32(s, packetSize); /* PacketLength (4 bytes) */
|
|
|
|
Stream_Write_UINT32(s, capabilities); /* CapabilityFlags (4 bytes) */
|
|
|
|
Stream_Write_UINT16(s, fieldsPresent); /* FieldsPresent (2 bytes) */
|
|
|
|
Stream_Write_UINT16(s, 0); /* Reserved (2 bytes), must be 0 */
|
2018-02-13 18:40:23 +03:00
|
|
|
|
2018-04-05 05:08:26 +03:00
|
|
|
if (PAACookie)
|
2018-02-13 18:40:23 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
Stream_Write_UINT16(s, (UINT16)PAACookieLen * 2); /* PAA cookie string length */
|
|
|
|
Stream_Write_UTF16_String(s, PAACookie, (size_t)PAACookieLen);
|
2018-02-13 18:40:23 +03:00
|
|
|
}
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_SealLength(s);
|
|
|
|
status = rdg_write_packet(rdg, s);
|
|
|
|
Stream_Free(s, TRUE);
|
2018-02-13 18:40:23 +03:00
|
|
|
free(PAACookie);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
rdg->state = RDG_CLIENT_STATE_TUNNEL_CREATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_send_tunnel_authorization(rdpRdg* rdg)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
wStream* s;
|
|
|
|
BOOL status;
|
2016-01-21 16:47:10 +03:00
|
|
|
WCHAR* clientName = NULL;
|
2016-01-26 11:34:22 +03:00
|
|
|
UINT32 packetSize;
|
2019-11-06 17:24:51 +03:00
|
|
|
int clientNameLen =
|
|
|
|
ConvertToUnicode(CP_UTF8, 0, rdg->settings->ClientHostname, -1, &clientName, 0);
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
if (!clientName || (clientNameLen < 0) || (clientNameLen > UINT16_MAX / 2))
|
|
|
|
{
|
|
|
|
free(clientName);
|
2016-01-21 16:47:10 +03:00
|
|
|
return FALSE;
|
2018-10-24 17:49:25 +03:00
|
|
|
}
|
2016-01-21 16:47:10 +03:00
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
packetSize = 12 + (UINT32)clientNameLen * sizeof(WCHAR);
|
2015-03-17 21:54:16 +03:00
|
|
|
s = Stream_New(NULL, packetSize);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!s)
|
2016-01-21 16:47:10 +03:00
|
|
|
{
|
|
|
|
free(clientName);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
2016-01-21 16:47:10 +03:00
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, PKT_TYPE_TUNNEL_AUTH); /* Type (2 bytes) */
|
|
|
|
Stream_Write_UINT16(s, 0); /* Reserved (2 bytes) */
|
|
|
|
Stream_Write_UINT32(s, packetSize); /* PacketLength (4 bytes) */
|
|
|
|
Stream_Write_UINT16(s, 0); /* FieldsPresent (2 bytes) */
|
2018-10-24 17:49:25 +03:00
|
|
|
Stream_Write_UINT16(s, (UINT16)clientNameLen * 2); /* Client name string length */
|
|
|
|
Stream_Write_UTF16_String(s, clientName, (size_t)clientNameLen);
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_SealLength(s);
|
|
|
|
status = rdg_write_packet(rdg, s);
|
2015-03-17 23:54:45 +03:00
|
|
|
Stream_Free(s, TRUE);
|
2016-01-21 16:47:10 +03:00
|
|
|
free(clientName);
|
2015-03-17 23:54:45 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
rdg->state = RDG_CLIENT_STATE_TUNNEL_AUTHORIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_send_channel_create(rdpRdg* rdg)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-11-13 11:30:47 +03:00
|
|
|
wStream* s = NULL;
|
|
|
|
BOOL status = FALSE;
|
2018-11-12 18:48:31 +03:00
|
|
|
WCHAR* serverName = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
int serverNameLen =
|
|
|
|
ConvertToUnicode(CP_UTF8, 0, rdg->settings->ServerHostname, -1, &serverName, 0);
|
2018-11-12 18:48:31 +03:00
|
|
|
UINT32 packetSize = 16 + ((UINT32)serverNameLen) * 2;
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2018-11-12 18:48:31 +03:00
|
|
|
if ((serverNameLen < 0) || (serverNameLen > UINT16_MAX / 2))
|
2018-11-13 11:30:47 +03:00
|
|
|
goto fail;
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
s = Stream_New(NULL, packetSize);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!s)
|
2018-11-13 11:30:47 +03:00
|
|
|
goto fail;
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2015-03-17 23:54:45 +03:00
|
|
|
Stream_Write_UINT16(s, PKT_TYPE_CHANNEL_CREATE); /* Type (2 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, 0); /* Reserved (2 bytes) */
|
|
|
|
Stream_Write_UINT32(s, packetSize); /* PacketLength (4 bytes) */
|
|
|
|
Stream_Write_UINT8(s, 1); /* Number of resources. (1 byte) */
|
|
|
|
Stream_Write_UINT8(s, 0); /* Number of alternative resources (1 byte) */
|
2018-10-24 17:49:25 +03:00
|
|
|
Stream_Write_UINT16(s, (UINT16)rdg->settings->ServerPort); /* Resource port (2 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, 3); /* Protocol number (2 bytes) */
|
2018-10-24 17:49:25 +03:00
|
|
|
Stream_Write_UINT16(s, (UINT16)serverNameLen * 2);
|
2018-11-12 18:48:31 +03:00
|
|
|
Stream_Write_UTF16_String(s, serverName, (size_t)serverNameLen);
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_SealLength(s);
|
|
|
|
status = rdg_write_packet(rdg, s);
|
2018-11-13 11:30:47 +03:00
|
|
|
fail:
|
|
|
|
free(serverName);
|
2015-03-17 23:54:45 +03:00
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status)
|
|
|
|
rdg->state = RDG_CLIENT_STATE_CHANNEL_CREATE;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:00 +03:00
|
|
|
static BOOL rdg_set_ntlm_auth_header(rdpNtlm* ntlm, HttpRequest* request)
|
|
|
|
{
|
2018-09-28 13:29:29 +03:00
|
|
|
const SecBuffer* ntlmToken = ntlm_client_get_output_buffer(ntlm);
|
2018-04-05 05:08:00 +03:00
|
|
|
char* base64NtlmToken = NULL;
|
|
|
|
|
|
|
|
if (ntlmToken)
|
2021-06-18 10:58:46 +03:00
|
|
|
{
|
|
|
|
if (ntlmToken->cbBuffer > INT_MAX)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
base64NtlmToken = crypto_base64_encode(ntlmToken->pvBuffer, (int)ntlmToken->cbBuffer);
|
|
|
|
}
|
2018-04-05 05:08:00 +03:00
|
|
|
|
|
|
|
if (base64NtlmToken)
|
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
BOOL rc = http_request_set_auth_scheme(request, "NTLM") &&
|
|
|
|
http_request_set_auth_param(request, base64NtlmToken);
|
2018-04-05 05:08:00 +03:00
|
|
|
free(base64NtlmToken);
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!rc)
|
2018-04-05 05:08:00 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
static wStream* rdg_build_http_request(rdpRdg* rdg, const char* method,
|
2021-01-25 10:39:30 +03:00
|
|
|
TRANSFER_ENCODING transferEncoding)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-08-17 16:47:46 +03:00
|
|
|
wStream* s = NULL;
|
2015-03-17 21:54:16 +03:00
|
|
|
HttpRequest* request = NULL;
|
2018-09-27 16:04:41 +03:00
|
|
|
const char* uri;
|
|
|
|
|
2018-10-25 14:19:22 +03:00
|
|
|
if (!rdg || !method)
|
2018-09-27 16:04:41 +03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
uri = http_context_get_uri(rdg->http);
|
2015-03-17 21:54:16 +03:00
|
|
|
request = http_request_new();
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!request)
|
|
|
|
return NULL;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!http_request_set_method(request, method) || !http_request_set_uri(request, uri))
|
2018-08-17 16:47:46 +03:00
|
|
|
goto out;
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (rdg->ntlm)
|
|
|
|
{
|
2018-04-05 05:08:00 +03:00
|
|
|
if (!rdg_set_ntlm_auth_header(rdg->ntlm, request))
|
2018-08-17 16:47:46 +03:00
|
|
|
goto out;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
http_request_set_transfer_encoding(request, transferEncoding);
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
s = http_request_write(rdg->http, request);
|
2018-08-17 16:47:46 +03:00
|
|
|
out:
|
2015-03-17 21:54:16 +03:00
|
|
|
http_request_free(request);
|
|
|
|
|
2015-05-26 15:50:13 +03:00
|
|
|
if (s)
|
|
|
|
Stream_SealLength(s);
|
2015-09-15 17:37:57 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:00 +03:00
|
|
|
static BOOL rdg_handle_ntlm_challenge(rdpNtlm* ntlm, HttpResponse* response)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-11-12 18:29:28 +03:00
|
|
|
BOOL continueNeeded = FALSE;
|
2018-10-24 17:49:25 +03:00
|
|
|
size_t len;
|
2018-09-27 17:05:14 +03:00
|
|
|
const char* token64 = NULL;
|
2021-04-13 12:01:43 +03:00
|
|
|
size_t ntlmTokenLength = 0;
|
2015-03-17 21:54:16 +03:00
|
|
|
BYTE* ntlmTokenData = NULL;
|
2018-09-27 16:04:41 +03:00
|
|
|
long StatusCode;
|
2018-04-05 05:08:00 +03:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!ntlm || !response)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
StatusCode = http_response_get_status_code(response);
|
|
|
|
|
|
|
|
if (StatusCode != HTTP_STATUS_DENIED)
|
2018-04-05 05:08:08 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "Unexpected NTLM challenge HTTP status: %ld", StatusCode);
|
2018-04-05 05:08:08 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
token64 = http_response_get_auth_token(response, "NTLM");
|
2018-04-05 05:08:00 +03:00
|
|
|
|
|
|
|
if (!token64)
|
|
|
|
return FALSE;
|
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
len = strlen(token64);
|
|
|
|
|
2021-04-13 12:01:43 +03:00
|
|
|
crypto_base64_decode(token64, len, &ntlmTokenData, &ntlmTokenLength);
|
2018-04-05 05:08:00 +03:00
|
|
|
|
|
|
|
if (ntlmTokenData && ntlmTokenLength)
|
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
if (!ntlm_client_set_input_buffer(ntlm, FALSE, ntlmTokenData, (size_t)ntlmTokenLength))
|
2018-09-28 13:29:29 +03:00
|
|
|
return FALSE;
|
2018-04-05 05:08:00 +03:00
|
|
|
}
|
|
|
|
|
2018-11-12 18:29:28 +03:00
|
|
|
if (!ntlm_authenticate(ntlm, &continueNeeded))
|
|
|
|
return FALSE;
|
|
|
|
|
2018-11-12 18:48:31 +03:00
|
|
|
if (continueNeeded)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2018-04-05 05:08:00 +03:00
|
|
|
}
|
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
static BOOL rdg_skip_seed_payload(rdpTls* tls, SSIZE_T lastResponseLength,
|
|
|
|
rdg_http_encoding_context* transferEncoding)
|
2018-04-05 05:07:11 +03:00
|
|
|
{
|
|
|
|
BYTE seed_payload[10];
|
2019-02-07 16:22:28 +03:00
|
|
|
const size_t size = sizeof(seed_payload);
|
|
|
|
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(size < SSIZE_MAX);
|
2018-04-05 05:07:11 +03:00
|
|
|
|
|
|
|
/* Per [MS-TSGU] 3.3.5.1 step 4, after final OK response RDG server sends
|
|
|
|
* random "seed" payload of limited size. In practice it's 10 bytes.
|
|
|
|
*/
|
2019-02-07 16:22:28 +03:00
|
|
|
if (lastResponseLength < (SSIZE_T)size)
|
2018-11-12 18:48:31 +03:00
|
|
|
{
|
2021-01-25 10:39:30 +03:00
|
|
|
if (!rdg_read_all(tls, seed_payload, size - lastResponseLength, transferEncoding))
|
2018-11-12 18:48:31 +03:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 05:07:11 +03:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_process_handshake_response(rdpRdg* rdg, wStream* s)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT32 errorCode;
|
2018-11-16 17:41:19 +03:00
|
|
|
UINT16 serverVersion, extendedAuth;
|
|
|
|
BYTE verMajor, verMinor;
|
|
|
|
const char* error;
|
2015-05-26 15:50:13 +03:00
|
|
|
WLog_DBG(TAG, "Handshake response received");
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (rdg->state != RDG_CLIENT_STATE_HANDSHAKE)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
if (Stream_GetRemainingLength(s) < 10)
|
2018-11-23 11:45:09 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short packet %" PRIuz ", expected 10", __FUNCTION__,
|
|
|
|
Stream_GetRemainingLength(s));
|
2015-05-26 15:50:13 +03:00
|
|
|
return FALSE;
|
2018-11-23 11:45:09 +03:00
|
|
|
}
|
2015-05-26 15:50:13 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Read_UINT32(s, errorCode);
|
2018-11-16 17:41:19 +03:00
|
|
|
Stream_Read_UINT8(s, verMajor);
|
|
|
|
Stream_Read_UINT8(s, verMinor);
|
|
|
|
Stream_Read_UINT16(s, serverVersion);
|
|
|
|
Stream_Read_UINT16(s, extendedAuth);
|
|
|
|
error = rpc_error_to_string(errorCode);
|
|
|
|
WLog_DBG(TAG,
|
2019-11-06 17:24:51 +03:00
|
|
|
"errorCode=%s, verMajor=%" PRId8 ", verMinor=%" PRId8 ", serverVersion=%" PRId16
|
|
|
|
", extendedAuth=%s",
|
2018-11-16 17:41:19 +03:00
|
|
|
error, verMajor, verMinor, serverVersion, extended_auth_to_string(extendedAuth));
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (FAILED(errorCode))
|
|
|
|
{
|
2018-11-23 11:45:09 +03:00
|
|
|
WLog_ERR(TAG, "Handshake error %s", error);
|
2020-01-08 19:39:25 +03:00
|
|
|
freerdp_set_last_error_log(rdg->context, errorCode);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rdg_send_tunnel_request(rdg);
|
|
|
|
}
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
static BOOL rdg_process_tunnel_response_optional(rdpRdg* rdg, wStream* s, UINT16 fieldsPresent)
|
|
|
|
{
|
|
|
|
if (fieldsPresent & HTTP_TUNNEL_RESPONSE_FIELD_TUNNEL_ID)
|
|
|
|
{
|
|
|
|
/* Seek over tunnelId (4 bytes) */
|
|
|
|
if (!Stream_SafeSeek(s, 4))
|
|
|
|
{
|
2021-05-25 09:03:19 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short tunnelId, got %" PRIuz ", expected 4", __FUNCTION__,
|
2020-07-30 16:22:40 +03:00
|
|
|
Stream_GetRemainingLength(s));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldsPresent & HTTP_TUNNEL_RESPONSE_FIELD_CAPS)
|
|
|
|
{
|
|
|
|
UINT32 caps;
|
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
|
|
|
{
|
2021-05-25 09:03:19 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short capsFlags, got %" PRIuz ", expected 4", __FUNCTION__,
|
2020-07-30 16:22:40 +03:00
|
|
|
Stream_GetRemainingLength(s));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_Read_UINT32(s, caps);
|
|
|
|
WLog_DBG(TAG, "capabilities=%s", capabilities_enum_to_string(caps));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldsPresent & HTTP_TUNNEL_RESPONSE_FIELD_SOH_REQ)
|
|
|
|
{
|
|
|
|
/* Seek over nonce (20 bytes) */
|
|
|
|
if (!Stream_SafeSeek(s, 20))
|
|
|
|
{
|
2021-05-25 09:03:19 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short nonce, got %" PRIuz ", expected 20", __FUNCTION__,
|
2020-07-30 16:22:40 +03:00
|
|
|
Stream_GetRemainingLength(s));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read serverCert */
|
|
|
|
if (!rdg_read_http_unicode_string(s, NULL, NULL))
|
|
|
|
{
|
2021-05-25 09:03:19 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Failed to read server certificate", __FUNCTION__);
|
2020-07-30 16:22:40 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldsPresent & HTTP_TUNNEL_RESPONSE_FIELD_CONSENT_MSG)
|
|
|
|
{
|
2020-08-10 17:39:49 +03:00
|
|
|
const WCHAR* msg;
|
2020-07-30 16:22:40 +03:00
|
|
|
UINT16 msgLenBytes;
|
|
|
|
rdpContext* context = rdg->context;
|
|
|
|
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(context);
|
|
|
|
WINPR_ASSERT(context->instance);
|
2020-07-30 16:22:40 +03:00
|
|
|
|
|
|
|
/* Read message string and invoke callback */
|
|
|
|
if (!rdg_read_http_unicode_string(s, &msg, &msgLenBytes))
|
|
|
|
{
|
2021-05-25 09:03:19 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Failed to read consent message", __FUNCTION__);
|
2020-07-30 16:22:40 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return IFCALLRESULT(TRUE, context->instance->PresentGatewayMessage, context->instance,
|
2020-08-04 10:11:41 +03:00
|
|
|
GATEWAY_MESSAGE_CONSENT, TRUE, TRUE, msgLenBytes, msg);
|
2020-07-30 16:22:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_process_tunnel_response(rdpRdg* rdg, wStream* s)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-11-16 17:41:19 +03:00
|
|
|
UINT16 serverVersion, fieldsPresent;
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT32 errorCode;
|
2018-11-16 17:41:19 +03:00
|
|
|
const char* error;
|
2015-03-19 18:44:47 +03:00
|
|
|
WLog_DBG(TAG, "Tunnel response received");
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (rdg->state != RDG_CLIENT_STATE_TUNNEL_CREATE)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
if (Stream_GetRemainingLength(s) < 10)
|
2018-11-23 11:45:09 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short packet %" PRIuz ", expected 10", __FUNCTION__,
|
|
|
|
Stream_GetRemainingLength(s));
|
2015-05-26 15:50:13 +03:00
|
|
|
return FALSE;
|
2018-11-23 11:45:09 +03:00
|
|
|
}
|
2015-05-26 15:50:13 +03:00
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
Stream_Read_UINT16(s, serverVersion);
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Read_UINT32(s, errorCode);
|
2018-11-16 17:41:19 +03:00
|
|
|
Stream_Read_UINT16(s, fieldsPresent);
|
|
|
|
Stream_Seek_UINT16(s); /* reserved */
|
|
|
|
error = rpc_error_to_string(errorCode);
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "serverVersion=%" PRId16 ", errorCode=%s, fieldsPresent=%s", serverVersion, error,
|
|
|
|
tunnel_response_fields_present_to_string(fieldsPresent));
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (FAILED(errorCode))
|
|
|
|
{
|
2018-11-23 11:45:09 +03:00
|
|
|
WLog_ERR(TAG, "Tunnel creation error %s", error);
|
2020-01-08 19:39:25 +03:00
|
|
|
freerdp_set_last_error_log(rdg->context, errorCode);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
if (!rdg_process_tunnel_response_optional(rdg, s, fieldsPresent))
|
|
|
|
return FALSE;
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
return rdg_send_tunnel_authorization(rdg);
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_process_tunnel_authorization_response(rdpRdg* rdg, wStream* s)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT32 errorCode;
|
2018-11-16 17:41:19 +03:00
|
|
|
UINT16 fieldsPresent;
|
|
|
|
const char* error;
|
2015-03-19 18:44:47 +03:00
|
|
|
WLog_DBG(TAG, "Tunnel authorization received");
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (rdg->state != RDG_CLIENT_STATE_TUNNEL_AUTHORIZE)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
if (Stream_GetRemainingLength(s) < 8)
|
2018-11-23 11:45:09 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short packet %" PRIuz ", expected 8", __FUNCTION__,
|
|
|
|
Stream_GetRemainingLength(s));
|
2015-05-26 15:50:13 +03:00
|
|
|
return FALSE;
|
2018-11-23 11:45:09 +03:00
|
|
|
}
|
2015-05-26 15:50:13 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Read_UINT32(s, errorCode);
|
2018-11-16 17:41:19 +03:00
|
|
|
Stream_Read_UINT16(s, fieldsPresent);
|
|
|
|
Stream_Seek_UINT16(s); /* reserved */
|
|
|
|
error = rpc_error_to_string(errorCode);
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "errorCode=%s, fieldsPresent=%s", error,
|
|
|
|
tunnel_authorization_response_fields_present_to_string(fieldsPresent));
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (FAILED(errorCode))
|
|
|
|
{
|
2018-11-23 11:45:09 +03:00
|
|
|
WLog_ERR(TAG, "Tunnel authorization error %s", error);
|
2020-01-08 19:39:25 +03:00
|
|
|
freerdp_set_last_error_log(rdg->context, errorCode);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rdg_send_channel_create(rdg);
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_process_channel_response(rdpRdg* rdg, wStream* s)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-11-16 17:41:19 +03:00
|
|
|
UINT16 fieldsPresent;
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT32 errorCode;
|
2018-11-16 17:41:19 +03:00
|
|
|
const char* error;
|
2015-03-19 18:44:47 +03:00
|
|
|
WLog_DBG(TAG, "Channel response received");
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (rdg->state != RDG_CLIENT_STATE_CHANNEL_CREATE)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
if (Stream_GetRemainingLength(s) < 8)
|
2018-11-23 11:45:09 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short packet %" PRIuz ", expected 8", __FUNCTION__,
|
|
|
|
Stream_GetRemainingLength(s));
|
2015-05-26 15:50:13 +03:00
|
|
|
return FALSE;
|
2018-11-23 11:45:09 +03:00
|
|
|
}
|
2015-05-26 15:50:13 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Read_UINT32(s, errorCode);
|
2018-11-16 17:41:19 +03:00
|
|
|
Stream_Read_UINT16(s, fieldsPresent);
|
|
|
|
Stream_Seek_UINT16(s); /* reserved */
|
|
|
|
error = rpc_error_to_string(errorCode);
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "channel response errorCode=%s, fieldsPresent=%s", error,
|
|
|
|
channel_response_fields_present_to_string(fieldsPresent));
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (FAILED(errorCode))
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "channel response errorCode=%s, fieldsPresent=%s", error,
|
|
|
|
channel_response_fields_present_to_string(fieldsPresent));
|
2020-01-08 19:39:25 +03:00
|
|
|
freerdp_set_last_error_log(rdg->context, errorCode);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
rdg->state = RDG_CLIENT_STATE_OPENED;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_process_packet(rdpRdg* rdg, wStream* s)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
BOOL status = TRUE;
|
|
|
|
UINT16 type;
|
2018-11-16 17:41:19 +03:00
|
|
|
UINT32 packetLength;
|
2015-05-27 18:35:25 +03:00
|
|
|
Stream_SetPosition(s, 0);
|
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
if (Stream_GetRemainingLength(s) < 8)
|
2018-11-23 11:45:09 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short packet %" PRIuz ", expected 8", __FUNCTION__,
|
|
|
|
Stream_GetRemainingLength(s));
|
2015-05-26 15:50:13 +03:00
|
|
|
return FALSE;
|
2018-11-23 11:45:09 +03:00
|
|
|
}
|
2015-05-26 15:50:13 +03:00
|
|
|
|
2018-11-16 17:41:19 +03:00
|
|
|
Stream_Read_UINT16(s, type);
|
|
|
|
Stream_Seek_UINT16(s); /* reserved */
|
|
|
|
Stream_Read_UINT32(s, packetLength);
|
|
|
|
|
2018-11-23 11:45:09 +03:00
|
|
|
if (Stream_Length(s) < packetLength)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Short packet %" PRIuz ", expected %" PRIuz, __FUNCTION__,
|
|
|
|
Stream_Length(s), packetLength);
|
2018-11-16 17:41:19 +03:00
|
|
|
return FALSE;
|
2018-11-23 11:45:09 +03:00
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
2015-03-17 23:09:17 +03:00
|
|
|
case PKT_TYPE_HANDSHAKE_RESPONSE:
|
|
|
|
status = rdg_process_handshake_response(rdg, s);
|
|
|
|
break;
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
case PKT_TYPE_TUNNEL_RESPONSE:
|
|
|
|
status = rdg_process_tunnel_response(rdg, s);
|
|
|
|
break;
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
case PKT_TYPE_TUNNEL_AUTH_RESPONSE:
|
|
|
|
status = rdg_process_tunnel_authorization_response(rdg, s);
|
|
|
|
break;
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
case PKT_TYPE_CHANNEL_RESPONSE:
|
|
|
|
status = rdg_process_channel_response(rdg, s);
|
|
|
|
break;
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
case PKT_TYPE_DATA:
|
2018-11-23 11:45:09 +03:00
|
|
|
WLog_ERR(TAG, "[%s] Unexpected packet type DATA", __FUNCTION__);
|
2015-03-18 23:13:32 +03:00
|
|
|
return FALSE;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-04-21 13:24:50 +03:00
|
|
|
DWORD rdg_get_event_handles(rdpRdg* rdg, HANDLE* events, DWORD count)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2015-04-21 13:35:55 +03:00
|
|
|
DWORD nCount = 0;
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(rdg != NULL);
|
2015-03-18 23:13:32 +03:00
|
|
|
|
2015-03-17 22:13:11 +03:00
|
|
|
if (rdg->tlsOut && rdg->tlsOut->bio)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2015-04-21 13:24:50 +03:00
|
|
|
if (events && (nCount < count))
|
|
|
|
{
|
2015-03-17 21:54:16 +03:00
|
|
|
BIO_get_event(rdg->tlsOut->bio, &events[nCount]);
|
2015-04-21 13:24:50 +03:00
|
|
|
nCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2021-03-05 20:19:06 +03:00
|
|
|
if (!rdg->transferEncoding.isWebsocketTransport && rdg->tlsIn && rdg->tlsIn->bio)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2015-04-21 13:24:50 +03:00
|
|
|
if (events && (nCount < count))
|
|
|
|
{
|
2015-03-17 21:54:16 +03:00
|
|
|
BIO_get_event(rdg->tlsIn->bio, &events[nCount]);
|
2015-04-21 13:24:50 +03:00
|
|
|
nCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return nCount;
|
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:00 +03:00
|
|
|
static BOOL rdg_get_gateway_credentials(rdpContext* context)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
rdpSettings* settings = context->settings;
|
|
|
|
freerdp* instance = context->instance;
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
if (!settings->GatewayPassword || !settings->GatewayUsername ||
|
|
|
|
!strlen(settings->GatewayPassword) || !strlen(settings->GatewayUsername))
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2020-02-19 18:44:42 +03:00
|
|
|
if (freerdp_shall_disconnect(instance))
|
|
|
|
return FALSE;
|
|
|
|
|
2019-08-20 15:52:39 +03:00
|
|
|
if (!instance->GatewayAuthenticate)
|
2019-07-15 11:08:39 +03:00
|
|
|
{
|
2020-01-08 19:39:25 +03:00
|
|
|
freerdp_set_last_error_log(context, FREERDP_ERROR_CONNECT_NO_OR_MISSING_CREDENTIALS);
|
2019-07-15 11:08:39 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL proceed =
|
|
|
|
instance->GatewayAuthenticate(instance, &settings->GatewayUsername,
|
|
|
|
&settings->GatewayPassword, &settings->GatewayDomain);
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (!proceed)
|
|
|
|
{
|
2020-01-08 19:39:25 +03:00
|
|
|
freerdp_set_last_error_log(context,
|
|
|
|
FREERDP_ERROR_CONNECT_NO_OR_MISSING_CREDENTIALS);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings->GatewayUseSameCredentials)
|
|
|
|
{
|
2015-06-17 23:08:02 +03:00
|
|
|
if (settings->GatewayUsername)
|
|
|
|
{
|
|
|
|
free(settings->Username);
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!(settings->Username = _strdup(settings->GatewayUsername)))
|
|
|
|
return FALSE;
|
|
|
|
}
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (settings->GatewayDomain)
|
|
|
|
{
|
|
|
|
free(settings->Domain);
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!(settings->Domain = _strdup(settings->GatewayDomain)))
|
|
|
|
return FALSE;
|
|
|
|
}
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (settings->GatewayPassword)
|
|
|
|
{
|
|
|
|
free(settings->Password);
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!(settings->Password = _strdup(settings->GatewayPassword)))
|
|
|
|
return FALSE;
|
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:00 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdg_ntlm_init(rdpRdg* rdg, rdpTls* tls)
|
|
|
|
{
|
2018-11-12 18:29:28 +03:00
|
|
|
BOOL continueNeeded = FALSE;
|
2018-04-05 05:08:00 +03:00
|
|
|
rdpContext* context = rdg->context;
|
|
|
|
rdpSettings* settings = context->settings;
|
|
|
|
rdg->ntlm = ntlm_new();
|
|
|
|
|
|
|
|
if (!rdg->ntlm)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!rdg_get_gateway_credentials(context))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!ntlm_client_init(rdg->ntlm, TRUE, settings->GatewayUsername, settings->GatewayDomain,
|
2018-01-15 14:43:37 +03:00
|
|
|
settings->GatewayPassword, tls->Bindings))
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2021-06-16 15:50:14 +03:00
|
|
|
if (!ntlm_client_make_spn(rdg->ntlm, "HTTP", settings->GatewayHostname))
|
2018-04-05 05:08:00 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2018-11-12 18:29:28 +03:00
|
|
|
if (!ntlm_authenticate(rdg->ntlm, &continueNeeded))
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2018-11-12 18:29:28 +03:00
|
|
|
return continueNeeded;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
static BOOL rdg_send_http_request(rdpRdg* rdg, rdpTls* tls, const char* method,
|
2021-01-25 10:39:30 +03:00
|
|
|
TRANSFER_ENCODING transferEncoding)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
size_t sz;
|
2015-03-17 21:54:16 +03:00
|
|
|
wStream* s = NULL;
|
2018-10-24 17:49:25 +03:00
|
|
|
int status = -1;
|
2018-04-05 05:08:08 +03:00
|
|
|
s = rdg_build_http_request(rdg, method, transferEncoding);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!s)
|
|
|
|
return FALSE;
|
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
sz = Stream_Length(s);
|
|
|
|
|
|
|
|
if (sz <= INT_MAX)
|
|
|
|
status = tls_write_all(tls, Stream_Buffer(s), (int)sz);
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Free(s, TRUE);
|
2018-04-05 05:07:25 +03:00
|
|
|
return (status >= 0);
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2018-04-05 05:07:52 +03:00
|
|
|
static BOOL rdg_tls_connect(rdpRdg* rdg, rdpTls* tls, const char* peerAddress, int timeout)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
int sockfd = 0;
|
2018-10-24 17:49:25 +03:00
|
|
|
long status = 0;
|
2015-03-17 21:54:16 +03:00
|
|
|
BIO* socketBio = NULL;
|
|
|
|
BIO* bufferedBio = NULL;
|
2015-03-17 23:54:45 +03:00
|
|
|
rdpSettings* settings = rdg->settings;
|
2018-01-15 14:43:37 +03:00
|
|
|
const char* peerHostname = settings->GatewayHostname;
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT16 peerPort = (UINT16)settings->GatewayPort;
|
2019-11-06 17:24:51 +03:00
|
|
|
const char *proxyUsername, *proxyPassword;
|
|
|
|
BOOL isProxyConnection =
|
|
|
|
proxy_prepare(settings, &peerHostname, &peerPort, &proxyUsername, &proxyPassword);
|
2018-10-24 17:49:25 +03:00
|
|
|
|
|
|
|
if (settings->GatewayPort > UINT16_MAX)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
sockfd = freerdp_tcp_connect(rdg->context, settings, peerAddress ? peerAddress : peerHostname,
|
2018-01-15 14:43:37 +03:00
|
|
|
peerPort, timeout);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-08-17 16:47:46 +03:00
|
|
|
if (sockfd < 0)
|
2018-10-24 17:49:25 +03:00
|
|
|
{
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
2018-10-24 17:49:25 +03:00
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
socketBio = BIO_new(BIO_s_simple_socket());
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!socketBio)
|
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
closesocket((SOCKET)sockfd);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BIO_set_fd(socketBio, sockfd, BIO_CLOSE);
|
|
|
|
bufferedBio = BIO_new(BIO_s_buffered_socket());
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!bufferedBio)
|
|
|
|
{
|
2018-11-12 18:29:28 +03:00
|
|
|
BIO_free_all(socketBio);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
bufferedBio = BIO_push(bufferedBio, socketBio);
|
|
|
|
status = BIO_set_nonblock(bufferedBio, TRUE);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
if (isProxyConnection)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!proxy_connect(settings, bufferedBio, proxyUsername, proxyPassword,
|
|
|
|
settings->GatewayHostname, (UINT16)settings->GatewayPort))
|
2018-11-12 18:29:28 +03:00
|
|
|
{
|
|
|
|
BIO_free_all(bufferedBio);
|
2016-12-11 01:13:35 +03:00
|
|
|
return FALSE;
|
2018-11-12 18:29:28 +03:00
|
|
|
}
|
2016-12-09 22:43:02 +03:00
|
|
|
}
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!status)
|
|
|
|
{
|
2015-03-18 23:13:32 +03:00
|
|
|
BIO_free_all(bufferedBio);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-04-05 05:07:52 +03:00
|
|
|
tls->hostname = settings->GatewayHostname;
|
2018-10-24 17:49:25 +03:00
|
|
|
tls->port = (int)settings->GatewayPort;
|
2018-04-05 05:07:52 +03:00
|
|
|
tls->isGatewayTransport = TRUE;
|
|
|
|
status = tls_connect(tls, bufferedBio);
|
2019-07-15 16:51:46 +03:00
|
|
|
if (status < 1)
|
|
|
|
{
|
|
|
|
rdpContext* context = rdg->context;
|
|
|
|
if (status < 0)
|
|
|
|
{
|
2020-01-09 12:34:27 +03:00
|
|
|
freerdp_set_last_error_if_not(context, FREERDP_ERROR_TLS_CONNECT_FAILED);
|
2019-07-15 16:51:46 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-01-09 12:34:27 +03:00
|
|
|
freerdp_set_last_error_if_not(context, FREERDP_ERROR_CONNECT_CANCELLED);
|
2019-07-15 16:51:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2018-04-05 05:07:52 +03:00
|
|
|
return (status >= 1);
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL rdg_establish_data_connection(rdpRdg* rdg, rdpTls* tls, const char* method,
|
|
|
|
const char* peerAddress, int timeout, BOOL* rpcFallback)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-04-05 05:08:08 +03:00
|
|
|
HttpResponse* response = NULL;
|
2018-10-24 17:49:25 +03:00
|
|
|
long statusCode;
|
|
|
|
SSIZE_T bodyLength;
|
2018-09-27 16:04:41 +03:00
|
|
|
long StatusCode;
|
2021-01-25 10:39:30 +03:00
|
|
|
TRANSFER_ENCODING encoding;
|
2021-01-25 18:20:18 +03:00
|
|
|
BOOL isWebsocket;
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
if (!rdg_tls_connect(rdg, tls, peerAddress, timeout))
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
if (rdg->extAuth == HTTP_EXTENDED_AUTH_NONE)
|
|
|
|
{
|
|
|
|
if (!rdg_ntlm_init(rdg, tls))
|
|
|
|
return FALSE;
|
2015-04-21 13:24:50 +03:00
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
if (!rdg_send_http_request(rdg, tls, method, TransferEncodingIdentity))
|
2018-04-05 05:08:08 +03:00
|
|
|
return FALSE;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-11-12 17:40:10 +03:00
|
|
|
response = http_response_recv(tls, TRUE);
|
2018-05-03 13:25:52 +03:00
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
if (!response)
|
|
|
|
return FALSE;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
StatusCode = http_response_get_status_code(response);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
switch (StatusCode)
|
2018-04-18 03:05:20 +03:00
|
|
|
{
|
2019-07-11 11:38:15 +03:00
|
|
|
case HTTP_STATUS_NOT_FOUND:
|
|
|
|
{
|
|
|
|
WLog_INFO(TAG, "RD Gateway does not support HTTP transport.");
|
2021-01-25 18:20:18 +03:00
|
|
|
http_context_enable_websocket_upgrade(rdg->http, FALSE);
|
2018-05-03 13:25:52 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (rpcFallback)
|
|
|
|
*rpcFallback = TRUE;
|
2019-07-11 11:38:15 +03:00
|
|
|
|
|
|
|
http_response_free(response);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
2018-04-18 03:05:20 +03:00
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
if (!rdg_handle_ntlm_challenge(rdg->ntlm, response))
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-04-05 05:08:08 +03:00
|
|
|
http_response_free(response);
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
http_response_free(response);
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
if (!rdg_send_http_request(rdg, tls, method, TransferEncodingIdentity))
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
ntlm_free(rdg->ntlm);
|
|
|
|
rdg->ntlm = NULL;
|
2018-11-12 17:40:10 +03:00
|
|
|
response = http_response_recv(tls, TRUE);
|
2018-05-03 13:25:52 +03:00
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
if (!response)
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
statusCode = http_response_get_status_code(response);
|
|
|
|
bodyLength = http_response_get_body_length(response);
|
2021-01-25 10:39:30 +03:00
|
|
|
encoding = http_response_get_transfer_encoding(response);
|
2021-01-25 18:20:18 +03:00
|
|
|
isWebsocket = http_response_is_websocket(rdg->http, response);
|
2018-04-05 05:08:08 +03:00
|
|
|
http_response_free(response);
|
|
|
|
WLog_DBG(TAG, "%s authorization result: %d", method, statusCode);
|
2015-04-21 13:24:50 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
switch (statusCode)
|
2019-07-11 11:38:15 +03:00
|
|
|
{
|
|
|
|
case HTTP_STATUS_OK:
|
2021-01-25 18:20:18 +03:00
|
|
|
/* old rdg endpoint without websocket support, don't request websocket for RDG_IN_DATA
|
|
|
|
*/
|
|
|
|
http_context_enable_websocket_upgrade(rdg->http, FALSE);
|
2019-07-11 11:38:15 +03:00
|
|
|
break;
|
|
|
|
case HTTP_STATUS_DENIED:
|
2020-01-08 19:39:25 +03:00
|
|
|
freerdp_set_last_error_log(rdg->context, FREERDP_ERROR_CONNECT_ACCESS_DENIED);
|
2019-07-11 11:38:15 +03:00
|
|
|
return FALSE;
|
2021-01-25 18:20:18 +03:00
|
|
|
case HTTP_STATUS_SWITCH_PROTOCOLS:
|
|
|
|
if (!isWebsocket)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* webserver is broken, a fallback may be possible here
|
|
|
|
* but only if already tested with oppurtonistic upgrade
|
|
|
|
*/
|
|
|
|
if (http_context_is_websocket_upgrade_enabled(rdg->http))
|
|
|
|
{
|
|
|
|
int fd = BIO_get_fd(tls->bio, NULL);
|
|
|
|
if (fd >= 0)
|
|
|
|
closesocket((SOCKET)fd);
|
|
|
|
http_context_enable_websocket_upgrade(rdg->http, FALSE);
|
|
|
|
return rdg_establish_data_connection(rdg, tls, method, peerAddress, timeout,
|
|
|
|
rpcFallback);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
rdg->transferEncoding.isWebsocketTransport = TRUE;
|
|
|
|
rdg->transferEncoding.context.websocket.state = WebsocketStateOpcodeAndFin;
|
|
|
|
rdg->transferEncoding.context.websocket.responseStreamBuffer = NULL;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
break;
|
2019-07-11 12:44:18 +03:00
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
if (strcmp(method, "RDG_OUT_DATA") == 0)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2021-01-25 10:39:30 +03:00
|
|
|
if (encoding == TransferEncodingChunked)
|
|
|
|
{
|
|
|
|
rdg->transferEncoding.httpTransferEncoding = TransferEncodingChunked;
|
|
|
|
rdg->transferEncoding.context.chunked.nextOffset = 0;
|
|
|
|
rdg->transferEncoding.context.chunked.headerFooterPos = 0;
|
|
|
|
rdg->transferEncoding.context.chunked.state = ChunkStateLenghHeader;
|
|
|
|
}
|
|
|
|
if (!rdg_skip_seed_payload(tls, bodyLength, &rdg->transferEncoding))
|
|
|
|
{
|
2018-04-05 05:08:08 +03:00
|
|
|
return FALSE;
|
2021-01-25 10:39:30 +03:00
|
|
|
}
|
2018-04-05 05:08:08 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-25 10:39:30 +03:00
|
|
|
if (!rdg_send_http_request(rdg, tls, method, TransferEncodingChunked))
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_tunnel_connect(rdpRdg* rdg)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
BOOL status;
|
2018-04-05 05:08:08 +03:00
|
|
|
wStream* s;
|
|
|
|
rdg_send_handshake(rdg);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
while (rdg->state < RDG_CLIENT_STATE_OPENED)
|
|
|
|
{
|
2018-04-05 05:08:08 +03:00
|
|
|
status = FALSE;
|
|
|
|
s = rdg_receive_packet(rdg);
|
|
|
|
|
|
|
|
if (s)
|
|
|
|
{
|
|
|
|
status = rdg_process_packet(rdg, s);
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!status)
|
|
|
|
{
|
|
|
|
rdg->context->rdp->transport->layer = TRANSPORT_LAYER_CLOSED;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2020-06-17 09:41:21 +03:00
|
|
|
BOOL rdg_connect(rdpRdg* rdg, DWORD timeout, BOOL* rpcFallback)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
BOOL status;
|
2018-05-03 13:24:16 +03:00
|
|
|
SOCKET outConnSocket = 0;
|
2018-04-05 05:08:08 +03:00
|
|
|
char* peerAddress = NULL;
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(rdg != NULL);
|
2019-11-06 17:24:51 +03:00
|
|
|
status =
|
|
|
|
rdg_establish_data_connection(rdg, rdg->tlsOut, "RDG_OUT_DATA", NULL, timeout, rpcFallback);
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2018-04-05 05:08:08 +03:00
|
|
|
if (status)
|
|
|
|
{
|
2021-01-25 18:20:18 +03:00
|
|
|
if (rdg->transferEncoding.isWebsocketTransport)
|
|
|
|
{
|
|
|
|
WLog_DBG(TAG, "Upgraded to websocket. RDG_IN_DATA not required");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Establish IN connection with the same peer/server as OUT connection,
|
|
|
|
* even when server hostname resolves to different IP addresses.
|
|
|
|
*/
|
|
|
|
BIO_get_socket(rdg->tlsOut->underlying, &outConnSocket);
|
|
|
|
peerAddress = freerdp_tcp_get_peer_address(outConnSocket);
|
|
|
|
status = rdg_establish_data_connection(rdg, rdg->tlsIn, "RDG_IN_DATA", peerAddress,
|
|
|
|
timeout, NULL);
|
|
|
|
free(peerAddress);
|
|
|
|
}
|
2018-04-05 05:08:08 +03:00
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!status)
|
2018-04-05 05:08:08 +03:00
|
|
|
{
|
|
|
|
rdg->context->rdp->transport->layer = TRANSPORT_LAYER_CLOSED;
|
2015-03-17 21:54:16 +03:00
|
|
|
return FALSE;
|
2018-04-05 05:08:08 +03:00
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
status = rdg_tunnel_connect(rdg);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!status)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
static int rdg_write_websocket_data_packet(rdpRdg* rdg, const BYTE* buf, int isize)
|
|
|
|
{
|
|
|
|
size_t payloadSize;
|
|
|
|
size_t fullLen;
|
|
|
|
int status;
|
|
|
|
wStream* sWS;
|
|
|
|
|
|
|
|
uint32_t maskingKey;
|
|
|
|
BYTE* maskingKeyByte1 = (BYTE*)&maskingKey;
|
|
|
|
BYTE* maskingKeyByte2 = maskingKeyByte1 + 1;
|
|
|
|
BYTE* maskingKeyByte3 = maskingKeyByte1 + 2;
|
|
|
|
BYTE* maskingKeyByte4 = maskingKeyByte1 + 3;
|
|
|
|
|
|
|
|
int streamPos;
|
|
|
|
|
|
|
|
winpr_RAND((BYTE*)&maskingKey, 4);
|
|
|
|
|
|
|
|
payloadSize = isize + 10;
|
|
|
|
if ((isize < 0) || (isize > UINT16_MAX))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (payloadSize < 1)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (payloadSize < 126)
|
|
|
|
fullLen = payloadSize + 6; /* 2 byte "mini header" + 4 byte masking key */
|
|
|
|
else if (payloadSize < 0x10000)
|
|
|
|
fullLen = payloadSize + 8; /* 2 byte "mini header" + 2 byte length + 4 byte masking key */
|
|
|
|
else
|
|
|
|
fullLen = payloadSize + 14; /* 2 byte "mini header" + 8 byte length + 4 byte masking key */
|
|
|
|
|
|
|
|
sWS = Stream_New(NULL, fullLen);
|
|
|
|
if (!sWS)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
Stream_Write_UINT8(sWS, WEBSOCKET_FIN_BIT | WebsocketBinaryOpcode);
|
|
|
|
if (payloadSize < 126)
|
|
|
|
Stream_Write_UINT8(sWS, payloadSize | WEBSOCKET_MASK_BIT);
|
|
|
|
else if (payloadSize < 0x10000)
|
|
|
|
{
|
|
|
|
Stream_Write_UINT8(sWS, 126 | WEBSOCKET_MASK_BIT);
|
|
|
|
Stream_Write_UINT16_BE(sWS, payloadSize);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Stream_Write_UINT8(sWS, 127 | WEBSOCKET_MASK_BIT);
|
|
|
|
/* biggest packet possible is 0xffff + 0xa, so 32bit is always enough */
|
|
|
|
Stream_Write_UINT32_BE(sWS, 0);
|
|
|
|
Stream_Write_UINT32_BE(sWS, payloadSize);
|
|
|
|
}
|
|
|
|
Stream_Write_UINT32(sWS, maskingKey);
|
|
|
|
|
|
|
|
Stream_Write_UINT16(sWS, PKT_TYPE_DATA ^ (*maskingKeyByte1 | *maskingKeyByte2 << 8)); /* Type */
|
|
|
|
Stream_Write_UINT16(sWS, 0 ^ (*maskingKeyByte3 | *maskingKeyByte4 << 8)); /* Reserved */
|
|
|
|
Stream_Write_UINT32(sWS, (UINT32)payloadSize ^ maskingKey); /* Packet length */
|
|
|
|
Stream_Write_UINT16(sWS,
|
|
|
|
(UINT16)isize ^ (*maskingKeyByte1 | *maskingKeyByte2 << 8)); /* Data size */
|
|
|
|
|
|
|
|
/* masking key is now off by 2 bytes. fix that */
|
|
|
|
maskingKey = (maskingKey & 0xffff) << 16 | (maskingKey >> 16);
|
|
|
|
|
|
|
|
/* mask as much as possible with 32bit access */
|
|
|
|
for (streamPos = 0; streamPos + 4 <= isize; streamPos += 4)
|
|
|
|
{
|
|
|
|
uint32_t masked = *((uint32_t*)((BYTE*)buf + streamPos)) ^ maskingKey;
|
|
|
|
Stream_Write_UINT32(sWS, masked);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mask the rest byte by byte */
|
|
|
|
for (; streamPos < isize; streamPos++)
|
|
|
|
{
|
|
|
|
BYTE* partialMask = (BYTE*)(&maskingKey) + streamPos % 4;
|
|
|
|
BYTE masked = *((BYTE*)((BYTE*)buf + streamPos)) ^ *partialMask;
|
|
|
|
Stream_Write_UINT8(sWS, masked);
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_SealLength(sWS);
|
|
|
|
|
|
|
|
status = tls_write_all(rdg->tlsOut, Stream_Buffer(sWS), Stream_Length(sWS));
|
|
|
|
Stream_Free(sWS, TRUE);
|
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
return isize;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_write_chunked_data_packet(rdpRdg* rdg, const BYTE* buf, int isize)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2015-03-17 23:09:17 +03:00
|
|
|
int status;
|
2021-01-25 18:20:18 +03:00
|
|
|
size_t len;
|
2015-03-17 21:54:16 +03:00
|
|
|
wStream* sChunk;
|
2018-10-24 17:49:25 +03:00
|
|
|
size_t size = (size_t)isize;
|
|
|
|
size_t packetSize = size + 10;
|
2015-03-17 21:54:16 +03:00
|
|
|
char chunkSize[11];
|
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
if ((isize < 0) || (isize > UINT16_MAX))
|
|
|
|
return -1;
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (size < 1)
|
|
|
|
return 0;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
sprintf_s(chunkSize, sizeof(chunkSize), "%" PRIxz "\r\n", packetSize);
|
2019-10-29 12:18:09 +03:00
|
|
|
sChunk = Stream_New(NULL, strnlen(chunkSize, sizeof(chunkSize)) + packetSize + 2);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!sChunk)
|
|
|
|
return -1;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2019-10-29 12:18:09 +03:00
|
|
|
Stream_Write(sChunk, chunkSize, strnlen(chunkSize, sizeof(chunkSize)));
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(sChunk, PKT_TYPE_DATA); /* Type */
|
|
|
|
Stream_Write_UINT16(sChunk, 0); /* Reserved */
|
|
|
|
Stream_Write_UINT32(sChunk, (UINT32)packetSize); /* Packet length */
|
|
|
|
Stream_Write_UINT16(sChunk, (UINT16)size); /* Data size */
|
|
|
|
Stream_Write(sChunk, buf, size); /* Data */
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Write(sChunk, "\r\n", 2);
|
|
|
|
Stream_SealLength(sChunk);
|
2021-01-25 18:20:18 +03:00
|
|
|
len = Stream_Length(sChunk);
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
if (len > INT_MAX)
|
2021-04-27 11:04:47 +03:00
|
|
|
{
|
|
|
|
Stream_Free(sChunk, TRUE);
|
2018-10-24 17:49:25 +03:00
|
|
|
return -1;
|
2021-04-27 11:04:47 +03:00
|
|
|
}
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
status = tls_write_all(rdg->tlsIn, Stream_Buffer(sChunk), (int)len);
|
2015-03-17 21:54:16 +03:00
|
|
|
Stream_Free(sChunk, TRUE);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status < 0)
|
|
|
|
return -1;
|
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
return (int)size;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
static int rdg_write_data_packet(rdpRdg* rdg, const BYTE* buf, int isize)
|
|
|
|
{
|
|
|
|
if (rdg->transferEncoding.isWebsocketTransport)
|
|
|
|
{
|
|
|
|
if (rdg->transferEncoding.context.websocket.closeSent == TRUE)
|
|
|
|
return -1;
|
|
|
|
return rdg_write_websocket_data_packet(rdg, buf, isize);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return rdg_write_chunked_data_packet(rdg, buf, isize);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-12-22 17:20:24 +03:00
|
|
|
static BOOL rdg_process_close_packet(rdpRdg* rdg, wStream* s)
|
2015-03-18 23:13:32 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
int status = -1;
|
2021-01-25 18:20:18 +03:00
|
|
|
wStream* sClose;
|
2020-12-22 17:20:24 +03:00
|
|
|
UINT32 errorCode;
|
2018-10-24 17:49:25 +03:00
|
|
|
UINT32 packetSize = 12;
|
|
|
|
|
2020-12-22 17:20:24 +03:00
|
|
|
/* Read error code */
|
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
|
|
|
return FALSE;
|
|
|
|
Stream_Read_UINT32(s, errorCode);
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2020-12-22 17:20:24 +03:00
|
|
|
if (errorCode != 0)
|
|
|
|
freerdp_set_last_error_log(rdg->context, errorCode);
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
sClose = Stream_New(NULL, packetSize);
|
|
|
|
if (!sClose)
|
2015-09-15 17:37:57 +03:00
|
|
|
return FALSE;
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
Stream_Write_UINT16(sClose, PKT_TYPE_CLOSE_CHANNEL_RESPONSE); /* Type */
|
|
|
|
Stream_Write_UINT16(sClose, 0); /* Reserved */
|
|
|
|
Stream_Write_UINT32(sClose, packetSize); /* Packet length */
|
|
|
|
Stream_Write_UINT32(sClose, 0); /* Status code */
|
|
|
|
Stream_SealLength(sClose);
|
|
|
|
status = rdg_write_packet(rdg, sClose);
|
|
|
|
Stream_Free(sClose, TRUE);
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2015-09-15 17:37:57 +03:00
|
|
|
return (status < 0 ? FALSE : TRUE);
|
2015-09-15 16:03:39 +03:00
|
|
|
}
|
2015-03-18 23:13:32 +03:00
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_process_keep_alive_packet(rdpRdg* rdg)
|
2015-09-15 16:03:39 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
int status = -1;
|
2021-01-25 18:20:18 +03:00
|
|
|
wStream* sKeepAlive;
|
2018-10-24 17:49:25 +03:00
|
|
|
size_t packetSize = 8;
|
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
sKeepAlive = Stream_New(NULL, packetSize);
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
if (!sKeepAlive)
|
2015-09-15 17:37:57 +03:00
|
|
|
return FALSE;
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
Stream_Write_UINT16(sKeepAlive, PKT_TYPE_KEEPALIVE); /* Type */
|
|
|
|
Stream_Write_UINT16(sKeepAlive, 0); /* Reserved */
|
|
|
|
Stream_Write_UINT32(sKeepAlive, (UINT32)packetSize); /* Packet length */
|
|
|
|
Stream_SealLength(sKeepAlive);
|
|
|
|
status = rdg_write_packet(rdg, sKeepAlive);
|
|
|
|
Stream_Free(sKeepAlive, TRUE);
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2015-09-15 17:37:57 +03:00
|
|
|
return (status < 0 ? FALSE : TRUE);
|
2015-03-18 23:13:32 +03:00
|
|
|
}
|
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
static BOOL rdg_process_service_message(rdpRdg* rdg, wStream* s)
|
|
|
|
{
|
2020-08-10 17:39:49 +03:00
|
|
|
const WCHAR* msg;
|
2020-07-30 16:22:40 +03:00
|
|
|
UINT16 msgLenBytes;
|
|
|
|
rdpContext* context = rdg->context;
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(context);
|
|
|
|
WINPR_ASSERT(context->instance);
|
2020-07-30 16:22:40 +03:00
|
|
|
|
|
|
|
/* Read message string */
|
|
|
|
if (!rdg_read_http_unicode_string(s, &msg, &msgLenBytes))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "[%s] Failed to read string", __FUNCTION__);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return IFCALLRESULT(TRUE, context->instance->PresentGatewayMessage, context->instance,
|
2020-08-04 10:11:41 +03:00
|
|
|
GATEWAY_MESSAGE_SERVICE, TRUE, FALSE, msgLenBytes, msg);
|
2020-07-30 16:22:40 +03:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL rdg_process_unknown_packet(rdpRdg* rdg, int type)
|
2015-03-18 23:13:32 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
WINPR_UNUSED(rdg);
|
|
|
|
WINPR_UNUSED(type);
|
2015-03-18 23:13:32 +03:00
|
|
|
WLog_WARN(TAG, "Unknown Control Packet received: %X", type);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
static BOOL rdg_process_control_packet(rdpRdg* rdg, int type, size_t packetLength)
|
2015-03-18 23:13:32 +03:00
|
|
|
{
|
2015-03-19 16:17:56 +03:00
|
|
|
wStream* s = NULL;
|
2018-01-15 18:50:01 +03:00
|
|
|
size_t readCount = 0;
|
2015-03-18 23:13:32 +03:00
|
|
|
int status;
|
2018-01-15 18:50:01 +03:00
|
|
|
size_t payloadSize = packetLength - sizeof(RdgPacketHeader);
|
2015-03-18 23:13:32 +03:00
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
if (packetLength < sizeof(RdgPacketHeader))
|
|
|
|
return FALSE;
|
|
|
|
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(sizeof(RdgPacketHeader) < INT_MAX);
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2015-03-18 23:13:32 +03:00
|
|
|
if (payloadSize)
|
|
|
|
{
|
|
|
|
s = Stream_New(NULL, payloadSize);
|
2015-09-15 17:37:57 +03:00
|
|
|
|
2015-03-18 23:13:32 +03:00
|
|
|
if (!s)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
while (readCount < payloadSize)
|
|
|
|
{
|
2021-01-25 10:39:30 +03:00
|
|
|
status = rdg_socket_read(rdg->tlsOut->bio, Stream_Pointer(s), payloadSize - readCount,
|
|
|
|
&rdg->transferEncoding);
|
2015-03-18 23:13:32 +03:00
|
|
|
|
|
|
|
if (status <= 0)
|
|
|
|
{
|
|
|
|
if (!BIO_should_retry(rdg->tlsOut->bio))
|
|
|
|
{
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-03-18 23:13:32 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
Stream_Seek(s, (size_t)status);
|
|
|
|
readCount += (size_t)status;
|
|
|
|
|
|
|
|
if (readCount > INT_MAX)
|
|
|
|
{
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2015-03-18 23:13:32 +03:00
|
|
|
}
|
2020-07-30 16:22:40 +03:00
|
|
|
|
|
|
|
Stream_SetPosition(s, 0);
|
2015-03-18 23:13:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
2015-09-15 17:37:57 +03:00
|
|
|
case PKT_TYPE_CLOSE_CHANNEL:
|
|
|
|
EnterCriticalSection(&rdg->writeSection);
|
2020-12-22 17:20:24 +03:00
|
|
|
status = rdg_process_close_packet(rdg, s);
|
2015-09-15 17:37:57 +03:00
|
|
|
LeaveCriticalSection(&rdg->writeSection);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PKT_TYPE_KEEPALIVE:
|
|
|
|
EnterCriticalSection(&rdg->writeSection);
|
|
|
|
status = rdg_process_keep_alive_packet(rdg);
|
|
|
|
LeaveCriticalSection(&rdg->writeSection);
|
|
|
|
break;
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2020-07-30 16:22:40 +03:00
|
|
|
case PKT_TYPE_SERVICE_MESSAGE:
|
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "[%s] PKT_TYPE_SERVICE_MESSAGE requires payload but none was sent",
|
|
|
|
__FUNCTION__);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
status = rdg_process_service_message(rdg, s);
|
|
|
|
break;
|
|
|
|
|
2015-09-15 17:37:57 +03:00
|
|
|
default:
|
|
|
|
status = rdg_process_unknown_packet(rdg, type);
|
|
|
|
break;
|
2015-03-18 23:13:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Stream_Free(s, TRUE);
|
2015-09-15 16:03:39 +03:00
|
|
|
return status;
|
2015-03-18 23:13:32 +03:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static int rdg_read_data_packet(rdpRdg* rdg, BYTE* buffer, int size)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
RdgPacketHeader header;
|
2018-01-15 18:50:01 +03:00
|
|
|
size_t readCount = 0;
|
2021-01-25 10:39:30 +03:00
|
|
|
size_t readSize;
|
2015-03-17 21:54:16 +03:00
|
|
|
int status;
|
|
|
|
|
|
|
|
if (!rdg->packetRemainingCount)
|
|
|
|
{
|
2021-06-09 15:03:34 +03:00
|
|
|
WINPR_ASSERT(sizeof(RdgPacketHeader) < INT_MAX);
|
2018-10-24 17:49:25 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
while (readCount < sizeof(RdgPacketHeader))
|
|
|
|
{
|
2021-01-25 10:39:30 +03:00
|
|
|
status = rdg_socket_read(rdg->tlsOut->bio, (BYTE*)(&header) + readCount,
|
|
|
|
(int)sizeof(RdgPacketHeader) - (int)readCount,
|
|
|
|
&rdg->transferEncoding);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status <= 0)
|
|
|
|
{
|
|
|
|
if (!BIO_should_retry(rdg->tlsOut->bio))
|
|
|
|
return -1;
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-09-15 16:03:39 +03:00
|
|
|
if (!readCount)
|
2015-03-17 21:54:16 +03:00
|
|
|
return 0;
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-09-16 16:54:03 +03:00
|
|
|
BIO_wait_read(rdg->tlsOut->bio, 50);
|
2015-03-17 21:54:16 +03:00
|
|
|
continue;
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
readCount += (size_t)status;
|
|
|
|
|
|
|
|
if (readCount > INT_MAX)
|
|
|
|
return -1;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (header.type != PKT_TYPE_DATA)
|
|
|
|
{
|
2015-03-18 23:13:32 +03:00
|
|
|
status = rdg_process_control_packet(rdg, header.type, header.packetLength);
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-03-18 23:13:32 +03:00
|
|
|
if (!status)
|
|
|
|
return -1;
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
readCount = 0;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
while (readCount < 2)
|
|
|
|
{
|
2021-01-25 10:39:30 +03:00
|
|
|
status =
|
|
|
|
rdg_socket_read(rdg->tlsOut->bio, (BYTE*)(&rdg->packetRemainingCount) + readCount,
|
|
|
|
2 - (int)readCount, &rdg->transferEncoding);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (status < 0)
|
|
|
|
{
|
|
|
|
if (!BIO_should_retry(rdg->tlsOut->bio))
|
|
|
|
return -1;
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-09-16 16:54:03 +03:00
|
|
|
BIO_wait_read(rdg->tlsOut->bio, 50);
|
2015-03-17 21:54:16 +03:00
|
|
|
continue;
|
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-10-24 17:49:25 +03:00
|
|
|
readCount += (size_t)status;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-25 10:39:30 +03:00
|
|
|
readSize = (rdg->packetRemainingCount < size) ? rdg->packetRemainingCount : size;
|
|
|
|
status = rdg_socket_read(rdg->tlsOut->bio, buffer, readSize, &rdg->transferEncoding);
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-09-15 16:03:39 +03:00
|
|
|
if (status <= 0)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
if (!BIO_should_retry(rdg->tlsOut->bio))
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2018-01-15 14:43:37 +03:00
|
|
|
|
2015-09-15 17:37:57 +03:00
|
|
|
return 0;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2015-03-18 23:13:32 +03:00
|
|
|
rdg->packetRemainingCount -= status;
|
|
|
|
return status;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_bio_write(BIO* bio, const char* buf, int num)
|
|
|
|
{
|
|
|
|
int status;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpRdg* rdg = (rdpRdg*)BIO_get_data(bio);
|
2015-03-19 18:44:47 +03:00
|
|
|
BIO_clear_flags(bio, BIO_FLAGS_WRITE);
|
2015-09-15 17:37:57 +03:00
|
|
|
EnterCriticalSection(&rdg->writeSection);
|
2019-11-06 17:24:51 +03:00
|
|
|
status = rdg_write_data_packet(rdg, (const BYTE*)buf, num);
|
2015-09-15 17:37:57 +03:00
|
|
|
LeaveCriticalSection(&rdg->writeSection);
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
{
|
|
|
|
BIO_clear_flags(bio, BIO_FLAGS_SHOULD_RETRY);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (status < num)
|
|
|
|
{
|
|
|
|
BIO_set_flags(bio, BIO_FLAGS_WRITE);
|
|
|
|
WSASetLastError(WSAEWOULDBLOCK);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-16 16:54:03 +03:00
|
|
|
BIO_set_flags(bio, BIO_FLAGS_WRITE);
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_bio_read(BIO* bio, char* buf, int size)
|
|
|
|
{
|
|
|
|
int status;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpRdg* rdg = (rdpRdg*)BIO_get_data(bio);
|
|
|
|
status = rdg_read_data_packet(rdg, (BYTE*)buf, size);
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
{
|
2015-09-15 20:03:11 +03:00
|
|
|
BIO_clear_retry_flags(bio);
|
2015-03-17 21:54:16 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2015-09-15 20:03:11 +03:00
|
|
|
else if (status == 0)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2015-09-15 20:03:11 +03:00
|
|
|
BIO_set_retry_read(bio);
|
2015-03-17 21:54:16 +03:00
|
|
|
WSASetLastError(WSAEWOULDBLOCK);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-16 16:54:03 +03:00
|
|
|
BIO_set_flags(bio, BIO_FLAGS_READ);
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_bio_puts(BIO* bio, const char* str)
|
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
WINPR_UNUSED(bio);
|
|
|
|
WINPR_UNUSED(str);
|
2015-09-15 16:03:39 +03:00
|
|
|
return -2;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_bio_gets(BIO* bio, char* str, int size)
|
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
WINPR_UNUSED(bio);
|
|
|
|
WINPR_UNUSED(str);
|
|
|
|
WINPR_UNUSED(size);
|
2015-09-15 16:03:39 +03:00
|
|
|
return -2;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2021-07-29 11:07:04 +03:00
|
|
|
static long rdg_bio_ctrl(BIO* in_bio, int cmd, long arg1, void* arg2)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
long status = -1;
|
2021-07-29 11:07:04 +03:00
|
|
|
rdpRdg* rdg = (rdpRdg*)BIO_get_data(in_bio);
|
2015-03-17 21:54:16 +03:00
|
|
|
rdpTls* tlsOut = rdg->tlsOut;
|
|
|
|
rdpTls* tlsIn = rdg->tlsIn;
|
|
|
|
|
|
|
|
if (cmd == BIO_CTRL_FLUSH)
|
|
|
|
{
|
2015-03-23 19:35:11 +03:00
|
|
|
(void)BIO_flush(tlsOut->bio);
|
2021-03-05 20:19:06 +03:00
|
|
|
if (!rdg->transferEncoding.isWebsocketTransport)
|
|
|
|
(void)BIO_flush(tlsIn->bio);
|
2015-03-17 21:54:16 +03:00
|
|
|
status = 1;
|
|
|
|
}
|
|
|
|
else if (cmd == BIO_C_SET_NONBLOCK)
|
|
|
|
{
|
|
|
|
status = 1;
|
|
|
|
}
|
|
|
|
else if (cmd == BIO_C_READ_BLOCKED)
|
|
|
|
{
|
2021-07-29 11:07:04 +03:00
|
|
|
BIO* cbio = tlsOut->bio;
|
|
|
|
status = BIO_read_blocked(cbio);
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
else if (cmd == BIO_C_WRITE_BLOCKED)
|
|
|
|
{
|
2021-07-29 11:07:04 +03:00
|
|
|
BIO* cbio = tlsIn->bio;
|
2021-03-05 20:19:06 +03:00
|
|
|
|
|
|
|
if (rdg->transferEncoding.isWebsocketTransport)
|
2021-07-29 11:07:04 +03:00
|
|
|
cbio = tlsOut->bio;
|
2021-03-05 20:19:06 +03:00
|
|
|
|
2021-07-29 11:07:04 +03:00
|
|
|
status = BIO_write_blocked(cbio);
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
else if (cmd == BIO_C_WAIT_READ)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
int timeout = (int)arg1;
|
2021-07-29 11:07:04 +03:00
|
|
|
BIO* cbio = tlsOut->bio;
|
2015-09-15 20:03:11 +03:00
|
|
|
|
2021-07-29 11:07:04 +03:00
|
|
|
if (BIO_read_blocked(cbio))
|
|
|
|
return BIO_wait_read(cbio, timeout);
|
|
|
|
else if (BIO_write_blocked(cbio))
|
|
|
|
return BIO_wait_write(cbio, timeout);
|
2015-09-15 20:03:11 +03:00
|
|
|
else
|
|
|
|
status = 1;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
else if (cmd == BIO_C_WAIT_WRITE)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
int timeout = (int)arg1;
|
2021-07-29 11:07:04 +03:00
|
|
|
BIO* cbio = tlsIn->bio;
|
2015-09-15 20:03:11 +03:00
|
|
|
|
2021-03-05 20:19:06 +03:00
|
|
|
if (rdg->transferEncoding.isWebsocketTransport)
|
2021-07-29 11:07:04 +03:00
|
|
|
cbio = tlsOut->bio;
|
2021-03-05 20:19:06 +03:00
|
|
|
|
2021-07-29 11:07:04 +03:00
|
|
|
if (BIO_write_blocked(cbio))
|
|
|
|
status = BIO_wait_write(cbio, timeout);
|
|
|
|
else if (BIO_read_blocked(cbio))
|
|
|
|
status = BIO_wait_read(cbio, timeout);
|
2015-09-15 20:03:11 +03:00
|
|
|
else
|
|
|
|
status = 1;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
2018-04-24 17:35:04 +03:00
|
|
|
else if (cmd == BIO_C_GET_EVENT || cmd == BIO_C_GET_FD)
|
2018-04-18 11:47:06 +03:00
|
|
|
{
|
|
|
|
/*
|
2018-04-24 17:35:04 +03:00
|
|
|
* A note about BIO_C_GET_FD:
|
2018-04-18 11:47:06 +03:00
|
|
|
* Even if two FDs are part of RDG, only one FD can be returned here.
|
|
|
|
*
|
|
|
|
* In FreeRDP, BIO FDs are only used for polling, so it is safe to use the outgoing FD only
|
|
|
|
*
|
|
|
|
* See issue #3602
|
|
|
|
*/
|
2018-04-18 22:50:47 +03:00
|
|
|
status = BIO_ctrl(tlsOut->bio, cmd, arg1, arg2);
|
2018-04-18 11:47:06 +03:00
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_bio_new(BIO* bio)
|
|
|
|
{
|
2016-11-21 19:28:54 +03:00
|
|
|
BIO_set_init(bio, 1);
|
|
|
|
BIO_set_flags(bio, BIO_FLAGS_SHOULD_RETRY);
|
2015-03-17 21:54:16 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rdg_bio_free(BIO* bio)
|
|
|
|
{
|
2018-10-24 17:49:25 +03:00
|
|
|
WINPR_UNUSED(bio);
|
2015-03-17 21:54:16 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BIO_METHOD* BIO_s_rdg(void)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
2016-11-21 19:28:54 +03:00
|
|
|
static BIO_METHOD* bio_methods = NULL;
|
|
|
|
|
|
|
|
if (bio_methods == NULL)
|
|
|
|
{
|
|
|
|
if (!(bio_methods = BIO_meth_new(BIO_TYPE_TSG, "RDGateway")))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
BIO_meth_set_write(bio_methods, rdg_bio_write);
|
|
|
|
BIO_meth_set_read(bio_methods, rdg_bio_read);
|
|
|
|
BIO_meth_set_puts(bio_methods, rdg_bio_puts);
|
|
|
|
BIO_meth_set_gets(bio_methods, rdg_bio_gets);
|
|
|
|
BIO_meth_set_ctrl(bio_methods, rdg_bio_ctrl);
|
|
|
|
BIO_meth_set_create(bio_methods, rdg_bio_new);
|
|
|
|
BIO_meth_set_destroy(bio_methods, rdg_bio_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
return bio_methods;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
2018-10-24 16:42:44 +03:00
|
|
|
rdpRdg* rdg_new(rdpContext* context)
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
rdpRdg* rdg;
|
|
|
|
RPC_CSTR stringUuid;
|
|
|
|
char bracedUuid[40];
|
|
|
|
RPC_STATUS rpcStatus;
|
2018-10-24 16:42:44 +03:00
|
|
|
|
|
|
|
if (!context)
|
|
|
|
return NULL;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rdg = (rdpRdg*)calloc(1, sizeof(rdpRdg));
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (rdg)
|
|
|
|
{
|
|
|
|
rdg->state = RDG_CLIENT_STATE_INITIAL;
|
2018-10-24 16:42:44 +03:00
|
|
|
rdg->context = context;
|
2015-03-17 23:54:45 +03:00
|
|
|
rdg->settings = rdg->context->settings;
|
2018-02-13 18:40:23 +03:00
|
|
|
rdg->extAuth = HTTP_EXTENDED_AUTH_NONE;
|
|
|
|
|
|
|
|
if (rdg->settings->GatewayAccessToken)
|
|
|
|
rdg->extAuth = HTTP_EXTENDED_AUTH_PAA;
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
UuidCreate(&rdg->guid);
|
|
|
|
rpcStatus = UuidToStringA(&rdg->guid, &stringUuid);
|
2015-03-17 23:54:45 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (rpcStatus == RPC_S_OUT_OF_MEMORY)
|
|
|
|
goto rdg_alloc_error;
|
2015-03-17 23:54:45 +03:00
|
|
|
|
|
|
|
sprintf_s(bracedUuid, sizeof(bracedUuid), "{%s}", stringUuid);
|
2015-03-17 21:54:16 +03:00
|
|
|
RpcStringFreeA(&stringUuid);
|
2015-03-17 23:54:45 +03:00
|
|
|
rdg->tlsOut = tls_new(rdg->settings);
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!rdg->tlsOut)
|
|
|
|
goto rdg_alloc_error;
|
2015-03-17 23:54:45 +03:00
|
|
|
|
|
|
|
rdg->tlsIn = tls_new(rdg->settings);
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!rdg->tlsIn)
|
|
|
|
goto rdg_alloc_error;
|
|
|
|
|
|
|
|
rdg->http = http_context_new();
|
2015-03-17 23:54:45 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!rdg->http)
|
|
|
|
goto rdg_alloc_error;
|
2015-03-17 23:54:45 +03:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!http_context_set_uri(rdg->http, "/remoteDesktopGateway/") ||
|
|
|
|
!http_context_set_accept(rdg->http, "*/*") ||
|
|
|
|
!http_context_set_cache_control(rdg->http, "no-cache") ||
|
|
|
|
!http_context_set_pragma(rdg->http, "no-cache") ||
|
|
|
|
!http_context_set_connection(rdg->http, "Keep-Alive") ||
|
|
|
|
!http_context_set_user_agent(rdg->http, "MS-RDGateway/1.0") ||
|
|
|
|
!http_context_set_host(rdg->http, rdg->settings->GatewayHostname) ||
|
2021-01-25 18:20:18 +03:00
|
|
|
!http_context_set_rdg_connection_id(rdg->http, bracedUuid) ||
|
2021-03-05 14:59:33 +03:00
|
|
|
!http_context_enable_websocket_upgrade(
|
|
|
|
rdg->http,
|
|
|
|
freerdp_settings_get_bool(rdg->settings, FreeRDP_GatewayHttpUseWebsockets)))
|
2015-03-17 21:54:16 +03:00
|
|
|
{
|
|
|
|
goto rdg_alloc_error;
|
|
|
|
}
|
|
|
|
|
2018-02-13 18:40:23 +03:00
|
|
|
if (rdg->extAuth != HTTP_EXTENDED_AUTH_NONE)
|
|
|
|
{
|
|
|
|
switch (rdg->extAuth)
|
|
|
|
{
|
|
|
|
case HTTP_EXTENDED_AUTH_PAA:
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!http_context_set_rdg_auth_scheme(rdg->http, "PAA"))
|
2018-02-13 18:40:23 +03:00
|
|
|
goto rdg_alloc_error;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "RDG extended authentication method %d not supported",
|
|
|
|
rdg->extAuth);
|
2018-02-13 18:40:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
rdg->frontBio = BIO_new(BIO_s_rdg());
|
2015-03-17 23:54:45 +03:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (!rdg->frontBio)
|
|
|
|
goto rdg_alloc_error;
|
2015-03-17 23:54:45 +03:00
|
|
|
|
2016-11-21 19:28:54 +03:00
|
|
|
BIO_set_data(rdg->frontBio, rdg);
|
2015-09-15 17:37:57 +03:00
|
|
|
InitializeCriticalSection(&rdg->writeSection);
|
2021-01-25 10:39:30 +03:00
|
|
|
|
|
|
|
rdg->transferEncoding.httpTransferEncoding = TransferEncodingIdentity;
|
2021-01-25 18:20:18 +03:00
|
|
|
rdg->transferEncoding.isWebsocketTransport = FALSE;
|
2015-03-17 21:54:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return rdg;
|
|
|
|
rdg_alloc_error:
|
|
|
|
rdg_free(rdg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-17 23:09:17 +03:00
|
|
|
void rdg_free(rdpRdg* rdg)
|
|
|
|
{
|
2015-03-17 23:54:45 +03:00
|
|
|
if (!rdg)
|
|
|
|
return;
|
2015-03-17 23:09:17 +03:00
|
|
|
|
2018-11-08 14:09:49 +03:00
|
|
|
tls_free(rdg->tlsOut);
|
|
|
|
tls_free(rdg->tlsIn);
|
|
|
|
http_context_free(rdg->http);
|
|
|
|
ntlm_free(rdg->ntlm);
|
2018-11-13 14:22:09 +03:00
|
|
|
|
|
|
|
if (!rdg->attached)
|
|
|
|
BIO_free_all(rdg->frontBio);
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
DeleteCriticalSection(&rdg->writeSection);
|
2021-01-25 10:39:30 +03:00
|
|
|
|
2021-01-25 18:20:18 +03:00
|
|
|
if (rdg->transferEncoding.isWebsocketTransport)
|
|
|
|
{
|
|
|
|
if (rdg->transferEncoding.context.websocket.responseStreamBuffer != NULL)
|
|
|
|
Stream_Free(rdg->transferEncoding.context.websocket.responseStreamBuffer, TRUE);
|
|
|
|
}
|
|
|
|
|
2015-03-17 23:54:45 +03:00
|
|
|
free(rdg);
|
2015-03-17 23:09:17 +03:00
|
|
|
}
|
2018-10-24 16:42:44 +03:00
|
|
|
|
2018-11-13 14:22:09 +03:00
|
|
|
BIO* rdg_get_front_bio_and_take_ownership(rdpRdg* rdg)
|
2018-10-24 16:42:44 +03:00
|
|
|
{
|
|
|
|
if (!rdg)
|
|
|
|
return NULL;
|
|
|
|
|
2018-11-13 14:22:09 +03:00
|
|
|
rdg->attached = TRUE;
|
2018-10-24 16:42:44 +03:00
|
|
|
return rdg->frontBio;
|
|
|
|
}
|