20#include <freerdp/config.h>
22#include "../settings.h"
25#include <winpr/assert.h>
26#include <winpr/cast.h>
28#include <freerdp/log.h>
30#include "rpc_client.h"
37#define TAG FREERDP_TAG("core.gateway.rpc")
39#define AUTH_PKG NTLM_SSP_NAME
54 { 0x3C, 0xDB, 0x6E, 0x7A, 0x27, 0x29 }
63 { 0x08, 0x00, 0x2B, 0x10, 0x48, 0x60 }
72 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
112static int rpc_bind_setup(rdpRpc* rpc)
114 SEC_WINNT_AUTH_IDENTITY identity = WINPR_C_ARRAY_INIT;
118 rdpContext* context = transport_get_context(rpc->transport);
119 WINPR_ASSERT(context);
121 rdpSettings* settings = context->settings;
122 WINPR_ASSERT(settings);
124 freerdp* instance = context->instance;
125 WINPR_ASSERT(instance);
127 credssp_auth_free(rpc->auth);
128 rpc->auth = credssp_auth_new(context);
132 auth_status rc = utils_authenticate_gateway(instance, GW_AUTH_RPC);
139 freerdp_set_last_error_log(instance->context, FREERDP_ERROR_CONNECT_CANCELLED);
141 case AUTH_NO_CREDENTIALS:
142 WLog_INFO(TAG,
"No credentials provided - using nullptr identity");
149 if (!credssp_auth_init(rpc->auth, AUTH_PKG,
nullptr))
152 if (!identity_set_from_settings(&identity, settings, FreeRDP_GatewayUsername,
153 FreeRDP_GatewayDomain, FreeRDP_GatewayPassword))
156 SEC_WINNT_AUTH_IDENTITY* identityArg = (settings->GatewayUsername ? &identity :
nullptr);
157 if (!credssp_auth_setup_client(rpc->auth,
nullptr, settings->GatewayHostname, identityArg,
160 sspi_FreeAuthIdentity(&identity);
163 sspi_FreeAuthIdentity(&identity);
165 credssp_auth_set_flags(rpc->auth, ISC_REQ_USE_DCE_STYLE | ISC_REQ_DELEGATE |
166 ISC_REQ_REPLAY_DETECT | ISC_REQ_SEQUENCE_DETECT);
168 if (credssp_auth_authenticate(rpc->auth) < 0)
174int rpc_send_bind_pdu(rdpRpc* rpc, BOOL initial)
188 connection = rpc->VirtualConnection;
190 WINPR_ASSERT(connection);
192 inChannel = connection->DefaultInChannel;
194 if (initial && rpc_bind_setup(rpc) < 0)
197 WLog_DBG(TAG, initial ?
"Sending Bind PDU" :
"Sending Alter Context PDU");
199 sbuffer = credssp_auth_get_output_buffer(rpc->auth);
204 bind_pdu.header = rpc_pdu_header_init(rpc);
205 bind_pdu.header.auth_length = (UINT16)sbuffer->cbBuffer;
206 bind_pdu.auth_verifier.auth_value = sbuffer->pvBuffer;
207 bind_pdu.header.ptype = initial ? PTYPE_BIND : PTYPE_ALTER_CONTEXT;
208 bind_pdu.header.pfc_flags =
209 PFC_FIRST_FRAG | PFC_LAST_FRAG | PFC_SUPPORT_HEADER_SIGN | PFC_CONC_MPX;
210 bind_pdu.header.call_id = 2;
211 bind_pdu.max_xmit_frag = rpc->max_xmit_frag;
212 bind_pdu.max_recv_frag = rpc->max_recv_frag;
213 bind_pdu.assoc_group_id = 0;
214 bind_pdu.p_context_elem.n_context_elem = 2;
215 bind_pdu.p_context_elem.reserved = 0;
216 bind_pdu.p_context_elem.reserved2 = 0;
217 bind_pdu.p_context_elem.p_cont_elem =
218 calloc(bind_pdu.p_context_elem.n_context_elem,
sizeof(
p_cont_elem_t));
220 if (!bind_pdu.p_context_elem.p_cont_elem)
223 p_cont_elem = &bind_pdu.p_context_elem.p_cont_elem[0];
224 p_cont_elem->p_cont_id = 0;
225 p_cont_elem->n_transfer_syn = 1;
226 p_cont_elem->reserved = 0;
227 CopyMemory(&(p_cont_elem->abstract_syntax.if_uuid), &TSGU_UUID,
sizeof(
p_uuid_t));
228 p_cont_elem->abstract_syntax.if_version = TSGU_SYNTAX_IF_VERSION;
229 p_cont_elem->transfer_syntaxes = malloc(
sizeof(
p_syntax_id_t));
231 if (!p_cont_elem->transfer_syntaxes)
234 CopyMemory(&(p_cont_elem->transfer_syntaxes[0].if_uuid), &NDR_UUID,
sizeof(
p_uuid_t));
235 p_cont_elem->transfer_syntaxes[0].if_version = NDR_SYNTAX_IF_VERSION;
236 p_cont_elem = &bind_pdu.p_context_elem.p_cont_elem[1];
237 p_cont_elem->p_cont_id = 1;
238 p_cont_elem->n_transfer_syn = 1;
239 p_cont_elem->reserved = 0;
240 CopyMemory(&(p_cont_elem->abstract_syntax.if_uuid), &TSGU_UUID,
sizeof(
p_uuid_t));
241 p_cont_elem->abstract_syntax.if_version = TSGU_SYNTAX_IF_VERSION;
242 p_cont_elem->transfer_syntaxes = malloc(
sizeof(
p_syntax_id_t));
244 if (!p_cont_elem->transfer_syntaxes)
247 CopyMemory(&(p_cont_elem->transfer_syntaxes[0].if_uuid), &BTFN_UUID,
sizeof(
p_uuid_t));
248 p_cont_elem->transfer_syntaxes[0].if_version = BTFN_SYNTAX_IF_VERSION;
251 bind_pdu.auth_verifier.auth_type =
252 rpc_auth_pkg_to_security_provider(credssp_auth_pkg_name(rpc->auth));
253 bind_pdu.auth_verifier.auth_level = RPC_C_AUTHN_LEVEL_PKT_INTEGRITY;
254 bind_pdu.auth_verifier.auth_reserved = 0x00;
255 bind_pdu.auth_verifier.auth_context_id = 0x00000000;
256 offset += (8 + bind_pdu.header.auth_length);
258 WINPR_ASSERT(offset <= UINT16_MAX);
259 bind_pdu.header.frag_length = (UINT16)offset;
261 buffer = Stream_New(
nullptr, bind_pdu.header.frag_length);
266 if (!rts_write_pdu_bind(buffer, &bind_pdu))
269 clientCall = rpc_client_call_new(bind_pdu.header.call_id, 0);
274 if (!ArrayList_Append(rpc->client->ClientCallList, clientCall))
276 rpc_client_call_free(clientCall);
280 Stream_SealLength(buffer);
281 status = rpc_in_channel_send_pdu(inChannel, Stream_Buffer(buffer), Stream_Length(buffer));
284 if (bind_pdu.p_context_elem.p_cont_elem)
286 free(bind_pdu.p_context_elem.p_cont_elem[0].transfer_syntaxes);
287 free(bind_pdu.p_context_elem.p_cont_elem[1].transfer_syntaxes);
290 free(bind_pdu.p_context_elem.p_cont_elem);
291 bind_pdu.p_context_elem.p_cont_elem =
nullptr;
293 Stream_Free(buffer, TRUE);
294 return (status > 0) ? 1 : -1;
323BOOL rpc_recv_bind_ack_pdu(rdpRpc* rpc,
wStream* s)
326 const BYTE* auth_data =
nullptr;
333 WINPR_ASSERT(rpc->auth);
336 pos = Stream_GetPosition(s);
337 if (!rts_read_pdu_header(s, &header))
340 WLog_DBG(TAG, header.common.ptype == PTYPE_BIND_ACK ?
"Receiving BindAck PDU"
341 :
"Receiving AlterContextResp PDU");
343 rpc->max_recv_frag = header.bind_ack.max_xmit_frag;
344 rpc->max_xmit_frag = header.bind_ack.max_recv_frag;
348 end = Stream_GetPosition(s);
349 Stream_SetPosition(s, pos + header.common.frag_length - header.common.auth_length);
350 auth_data = Stream_ConstPointer(s);
351 Stream_SetPosition(s, end);
353 buffer.cbBuffer = header.common.auth_length;
354 buffer.pvBuffer = malloc(buffer.cbBuffer);
355 if (!buffer.pvBuffer)
357 memcpy(buffer.pvBuffer, auth_data, buffer.cbBuffer);
358 credssp_auth_take_input_buffer(rpc->auth, &buffer);
360 if (credssp_auth_authenticate(rpc->auth) < 0)
365 rts_free_pdu_header(&header, FALSE);
376int rpc_send_rpc_auth_3_pdu(rdpRpc* rpc)
389 connection = rpc->VirtualConnection;
390 WINPR_ASSERT(connection);
392 inChannel = connection->DefaultInChannel;
393 WINPR_ASSERT(inChannel);
395 WLog_DBG(TAG,
"Sending RpcAuth3 PDU");
397 sbuffer = credssp_auth_get_output_buffer(rpc->auth);
402 auth_3_pdu.header = rpc_pdu_header_init(rpc);
403 auth_3_pdu.header.auth_length = (UINT16)sbuffer->cbBuffer;
404 auth_3_pdu.auth_verifier.auth_value = sbuffer->pvBuffer;
405 auth_3_pdu.header.ptype = PTYPE_RPC_AUTH_3;
406 auth_3_pdu.header.pfc_flags = PFC_FIRST_FRAG | PFC_LAST_FRAG | PFC_CONC_MPX;
407 auth_3_pdu.header.call_id = 2;
408 auth_3_pdu.max_xmit_frag = rpc->max_xmit_frag;
409 auth_3_pdu.max_recv_frag = rpc->max_recv_frag;
412 const size_t align = rpc_offset_align(&offset, 4);
413 WINPR_ASSERT(align <= UINT8_MAX);
414 auth_3_pdu.auth_verifier.auth_pad_length = (BYTE)align;
415 auth_3_pdu.auth_verifier.auth_type =
416 rpc_auth_pkg_to_security_provider(credssp_auth_pkg_name(rpc->auth));
417 auth_3_pdu.auth_verifier.auth_level = RPC_C_AUTHN_LEVEL_PKT_INTEGRITY;
418 auth_3_pdu.auth_verifier.auth_reserved = 0x00;
419 auth_3_pdu.auth_verifier.auth_context_id = 0x00000000;
420 offset += (8 + auth_3_pdu.header.auth_length);
422 WINPR_ASSERT(offset <= UINT16_MAX);
423 auth_3_pdu.header.frag_length = (UINT16)offset;
425 buffer = Stream_New(
nullptr, auth_3_pdu.header.frag_length);
430 if (!rts_write_pdu_auth3(buffer, &auth_3_pdu))
433 clientCall = rpc_client_call_new(auth_3_pdu.header.call_id, 0);
435 if (ArrayList_Append(rpc->client->ClientCallList, clientCall))
437 Stream_SealLength(buffer);
438 status = rpc_in_channel_send_pdu(inChannel, Stream_Buffer(buffer), Stream_Length(buffer));
442 Stream_Free(buffer, TRUE);
443 return (status > 0) ? 1 : -1;
446enum RPC_BIND_STATE rpc_bind_state(rdpRpc* rpc)
452 complete = credssp_auth_is_complete(rpc->auth);
453 have_token = credssp_auth_have_output_token(rpc->auth);
455 return complete ? (have_token ? RPC_BIND_STATE_LAST_LEG : RPC_BIND_STATE_COMPLETE)
456 : RPC_BIND_STATE_INCOMPLETE;
459BYTE rpc_auth_pkg_to_security_provider(
const char* name)
461 if (strcmp(name, CREDSSP_AUTH_PKG_SPNEGO) == 0)
462 return RPC_C_AUTHN_GSS_NEGOTIATE;
463 else if (strcmp(name, CREDSSP_AUTH_PKG_NTLM) == 0)
464 return RPC_C_AUTHN_WINNT;
465 else if (strcmp(name, CREDSSP_AUTH_PKG_KERBEROS) == 0)
466 return RPC_C_AUTHN_GSS_KERBEROS;
467 else if (strcmp(name, CREDSSP_AUTH_PKG_SCHANNEL) == 0)
468 return RPC_C_AUTHN_GSS_SCHANNEL;
470 return RPC_C_AUTHN_NONE;