2011-07-01 02:48:48 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* RDP Protocol Security Negotiation
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <freerdp/constants.h>
|
2011-07-01 02:48:48 +04:00
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
#include "tpkt.h"
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
#include "nego.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Negotiate protocol security and connect.
|
|
|
|
* @param nego
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
int nego_connect(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
if (nego->state == NEGO_STATE_INITIAL)
|
|
|
|
{
|
|
|
|
if (nego->enabled_protocols[PROTOCOL_NLA] > 0)
|
|
|
|
nego->state = NEGO_STATE_NLA;
|
|
|
|
else if (nego->enabled_protocols[PROTOCOL_TLS] > 0)
|
|
|
|
nego->state = NEGO_STATE_TLS;
|
|
|
|
else if (nego->enabled_protocols[PROTOCOL_RDP] > 0)
|
|
|
|
nego->state = NEGO_STATE_RDP;
|
|
|
|
else
|
|
|
|
nego->state = NEGO_STATE_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (nego->state != NEGO_STATE_FINAL)
|
|
|
|
{
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("state: %s", NEGO_STATE_STRINGS[nego->state]);
|
|
|
|
|
2011-07-03 23:34:15 +04:00
|
|
|
nego_send(nego);
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
if (nego->state == NEGO_STATE_FAIL)
|
|
|
|
{
|
|
|
|
nego->state = NEGO_STATE_FINAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-03 23:34:15 +04:00
|
|
|
DEBUG_NEGO("Negotiated %s security", PROTOCOL_SECURITY_STRINGS[nego->selected_protocol]);
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect TCP layer.
|
|
|
|
* @param nego
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
int nego_tcp_connect(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
if (nego->tcp_connected == 0)
|
|
|
|
{
|
2011-07-03 20:42:35 +04:00
|
|
|
if (transport_connect(nego->transport, nego->hostname, nego->port) == False)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
nego->tcp_connected = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nego->tcp_connected = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disconnect TCP layer.
|
|
|
|
* @param nego
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
int nego_tcp_disconnect(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
if (nego->tcp_connected)
|
2011-07-03 20:42:35 +04:00
|
|
|
transport_disconnect(nego->transport);
|
2011-07-01 02:48:48 +04:00
|
|
|
|
|
|
|
nego->tcp_connected = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt negotiating NLA + TLS security.
|
|
|
|
* @param nego
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_attempt_nla(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
uint8 code;
|
|
|
|
nego->requested_protocols = PROTOCOL_NLA | PROTOCOL_TLS;
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Attempting NLA security");
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
nego_tcp_connect(nego);
|
2011-07-03 20:42:35 +04:00
|
|
|
nego_send_negotiation_request(nego);
|
|
|
|
|
|
|
|
transport_check_fds(nego->transport);
|
2011-07-01 02:48:48 +04:00
|
|
|
|
|
|
|
if (nego->state != NEGO_STATE_FINAL)
|
|
|
|
{
|
|
|
|
nego_tcp_disconnect(nego);
|
|
|
|
|
|
|
|
if (nego->enabled_protocols[PROTOCOL_TLS] > 0)
|
|
|
|
nego->state = NEGO_STATE_TLS;
|
|
|
|
else if (nego->enabled_protocols[PROTOCOL_RDP] > 0)
|
|
|
|
nego->state = NEGO_STATE_RDP;
|
|
|
|
else
|
|
|
|
nego->state = NEGO_STATE_FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt negotiating TLS security.
|
|
|
|
* @param nego
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_attempt_tls(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
uint8 code;
|
|
|
|
nego->requested_protocols = PROTOCOL_TLS;
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Attempting TLS security");
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
nego_tcp_connect(nego);
|
2011-07-03 20:42:35 +04:00
|
|
|
nego_send_negotiation_request(nego);
|
|
|
|
|
|
|
|
transport_check_fds(nego->transport);
|
2011-07-01 02:48:48 +04:00
|
|
|
|
|
|
|
if (nego->state != NEGO_STATE_FINAL)
|
|
|
|
{
|
|
|
|
nego_tcp_disconnect(nego);
|
|
|
|
|
|
|
|
if (nego->enabled_protocols[PROTOCOL_RDP] > 0)
|
|
|
|
nego->state = NEGO_STATE_RDP;
|
|
|
|
else
|
|
|
|
nego->state = NEGO_STATE_FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt negotiating standard RDP security.
|
|
|
|
* @param nego
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_attempt_rdp(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
uint8 code;
|
|
|
|
nego->requested_protocols = PROTOCOL_RDP;
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Attempting RDP security");
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
nego_tcp_connect(nego);
|
2011-07-03 20:42:35 +04:00
|
|
|
nego_send_negotiation_request(nego);
|
2011-07-01 02:48:48 +04:00
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
transport_check_fds(nego->transport);
|
2011-07-01 02:48:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-05 05:35:32 +04:00
|
|
|
* Receive protocol security negotiation message.\n
|
|
|
|
* @msdn{cc240501}
|
|
|
|
* @param transport transport
|
|
|
|
* @param s stream
|
|
|
|
* @param extra nego pointer
|
2011-07-01 02:48:48 +04:00
|
|
|
*/
|
|
|
|
|
2011-07-03 21:49:06 +04:00
|
|
|
int nego_recv(rdpTransport * transport, STREAM* s, void * extra)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
2011-07-03 21:49:06 +04:00
|
|
|
uint8 li;
|
2011-07-01 02:48:48 +04:00
|
|
|
uint8 type;
|
2011-07-03 21:49:06 +04:00
|
|
|
rdpNego *nego = (rdpNego*) extra;
|
2011-07-01 02:48:48 +04:00
|
|
|
|
2011-07-03 21:49:06 +04:00
|
|
|
tpkt_read_header(s);
|
|
|
|
li = tpdu_read_connection_confirm(s);
|
|
|
|
|
|
|
|
if (li > 6)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
2011-07-03 21:49:06 +04:00
|
|
|
/* rdpNegData (optional) */
|
|
|
|
|
|
|
|
stream_read_uint8(s, type); /* Type */
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case TYPE_RDP_NEG_RSP:
|
|
|
|
nego_process_negotiation_response(nego, s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPE_RDP_NEG_FAILURE:
|
|
|
|
nego_process_negotiation_failure(nego, s);
|
|
|
|
break;
|
|
|
|
}
|
2011-07-01 02:48:48 +04:00
|
|
|
}
|
2011-07-04 03:27:02 +04:00
|
|
|
|
|
|
|
nego->state = NEGO_STATE_FINAL;
|
2011-07-03 21:49:06 +04:00
|
|
|
|
|
|
|
return 0;
|
2011-07-01 02:48:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send protocol security negotiation message.
|
|
|
|
* @param nego
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_send(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
if (nego->state == NEGO_STATE_NLA)
|
|
|
|
nego_attempt_nla(nego);
|
|
|
|
else if (nego->state == NEGO_STATE_TLS)
|
|
|
|
nego_attempt_tls(nego);
|
|
|
|
else if (nego->state == NEGO_STATE_RDP)
|
|
|
|
nego_attempt_rdp(nego);
|
|
|
|
}
|
|
|
|
|
2011-07-05 05:35:32 +04:00
|
|
|
/**
|
|
|
|
* Send RDP Negotiation Request (RDP_NEG_REQ).\n
|
|
|
|
* @msdn{cc240500}\n
|
|
|
|
* @msdn{cc240470}
|
|
|
|
* @param nego
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_send_negotiation_request(rdpNego *nego)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
int length;
|
|
|
|
uint8 *bm, *em;
|
|
|
|
|
|
|
|
s = stream_new(64);
|
|
|
|
length = TPKT_HEADER_LENGTH + TPDU_CONNECTION_REQUEST_LENGTH;
|
|
|
|
stream_get_mark(s, bm);
|
|
|
|
stream_seek(s, length);
|
|
|
|
|
|
|
|
if (nego->cookie)
|
|
|
|
{
|
|
|
|
int cookie_length = strlen(nego->cookie);
|
2011-07-06 02:26:12 +04:00
|
|
|
stream_write(s, "Cookie: mstshash=", 17);
|
|
|
|
stream_write(s, nego->cookie, cookie_length);
|
2011-07-03 20:42:35 +04:00
|
|
|
stream_write_uint8(s, 0x0D); /* CR */
|
|
|
|
stream_write_uint8(s, 0x0A); /* LF */
|
|
|
|
length += cookie_length + 19;
|
|
|
|
}
|
|
|
|
else if (nego->routing_token)
|
|
|
|
{
|
|
|
|
int routing_token_length = strlen(nego->routing_token);
|
2011-07-06 02:26:12 +04:00
|
|
|
stream_write(s, nego->routing_token, routing_token_length);
|
2011-07-03 20:42:35 +04:00
|
|
|
length += routing_token_length;
|
|
|
|
}
|
|
|
|
|
2011-07-03 21:49:06 +04:00
|
|
|
if (nego->requested_protocols > PROTOCOL_RDP)
|
|
|
|
{
|
|
|
|
/* RDP_NEG_DATA must be present for TLS and NLA */
|
|
|
|
stream_write_uint8(s, TYPE_RDP_NEG_REQ);
|
|
|
|
stream_write_uint8(s, 0); /* flags, must be set to zero */
|
|
|
|
stream_write_uint16(s, 8); /* RDP_NEG_DATA length (8) */
|
|
|
|
stream_write_uint32(s, nego->requested_protocols); /* requestedProtocols */
|
|
|
|
length += 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream_get_mark(s, em);
|
2011-07-03 20:42:35 +04:00
|
|
|
stream_set_mark(s, bm);
|
|
|
|
tpkt_write_header(s, length);
|
|
|
|
tpdu_write_connection_request(s, length - 5);
|
|
|
|
stream_set_mark(s, em);
|
|
|
|
|
|
|
|
transport_send(nego->transport, s);
|
|
|
|
}
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
/**
|
|
|
|
* Process Negotiation Response from Connection Confirm message.
|
|
|
|
* @param nego
|
|
|
|
* @param s
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_process_negotiation_response(rdpNego *nego, STREAM* s)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
uint8 flags;
|
|
|
|
uint16 length;
|
|
|
|
uint32 selectedProtocol;
|
|
|
|
|
2011-07-03 21:49:06 +04:00
|
|
|
DEBUG_NEGO("RDP_NEG_RSP");
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
stream_read_uint8(s, flags);
|
|
|
|
stream_read_uint16(s, length);
|
|
|
|
stream_read_uint32(s, selectedProtocol);
|
2011-07-01 02:48:48 +04:00
|
|
|
|
|
|
|
if (selectedProtocol == PROTOCOL_NLA)
|
|
|
|
nego->selected_protocol = PROTOCOL_NLA;
|
|
|
|
else if (selectedProtocol == PROTOCOL_TLS)
|
|
|
|
nego->selected_protocol = PROTOCOL_TLS;
|
|
|
|
else if (selectedProtocol == PROTOCOL_RDP)
|
|
|
|
nego->selected_protocol = PROTOCOL_RDP;
|
|
|
|
|
|
|
|
nego->state = NEGO_STATE_FINAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process Negotiation Failure from Connection Confirm message.
|
|
|
|
* @param nego
|
|
|
|
* @param s
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_process_negotiation_failure(rdpNego *nego, STREAM* s)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
|
|
|
uint8 flags;
|
|
|
|
uint16 length;
|
|
|
|
uint32 failureCode;
|
|
|
|
|
2011-07-03 21:49:06 +04:00
|
|
|
DEBUG_NEGO("RDP_NEG_FAILURE");
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
stream_read_uint8(s, flags);
|
|
|
|
stream_read_uint16(s, length);
|
|
|
|
stream_read_uint32(s, failureCode);
|
2011-07-01 02:48:48 +04:00
|
|
|
|
|
|
|
switch (failureCode)
|
|
|
|
{
|
|
|
|
case SSL_REQUIRED_BY_SERVER:
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Error: SSL_REQUIRED_BY_SERVER");
|
2011-07-01 02:48:48 +04:00
|
|
|
break;
|
|
|
|
case SSL_NOT_ALLOWED_BY_SERVER:
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Error: SSL_NOT_ALLOWED_BY_SERVER");
|
2011-07-01 02:48:48 +04:00
|
|
|
break;
|
|
|
|
case SSL_CERT_NOT_ON_SERVER:
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Error: SSL_CERT_NOT_ON_SERVER");
|
2011-07-01 02:48:48 +04:00
|
|
|
break;
|
|
|
|
case INCONSISTENT_FLAGS:
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Error: INCONSISTENT_FLAGS");
|
2011-07-01 02:48:48 +04:00
|
|
|
break;
|
|
|
|
case HYBRID_REQUIRED_BY_SERVER:
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Error: HYBRID_REQUIRED_BY_SERVER");
|
2011-07-01 02:48:48 +04:00
|
|
|
break;
|
|
|
|
default:
|
2011-07-03 20:42:35 +04:00
|
|
|
DEBUG_NEGO("Error: Unknown protocol security error %d", failureCode);
|
2011-07-01 02:48:48 +04:00
|
|
|
break;
|
|
|
|
}
|
2011-07-03 21:49:06 +04:00
|
|
|
|
|
|
|
nego->state = NEGO_STATE_FAIL;
|
2011-07-01 02:48:48 +04:00
|
|
|
}
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
/**
|
|
|
|
* Initialize NEGO state machine.
|
|
|
|
* @param nego
|
|
|
|
*/
|
|
|
|
|
|
|
|
void nego_init(rdpNego *nego)
|
|
|
|
{
|
|
|
|
nego->state = NEGO_STATE_INITIAL;
|
|
|
|
nego->requested_protocols = PROTOCOL_RDP;
|
2011-07-03 21:49:06 +04:00
|
|
|
nego->transport->recv_callback = nego_recv;
|
|
|
|
nego->transport->recv_extra = (void*) nego;
|
2011-07-03 20:42:35 +04:00
|
|
|
}
|
|
|
|
|
2011-07-01 02:48:48 +04:00
|
|
|
/**
|
|
|
|
* Create a new NEGO state machine instance.
|
2011-07-03 20:42:35 +04:00
|
|
|
* @param transport
|
2011-07-01 02:48:48 +04:00
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
rdpNego* nego_new(struct rdp_transport * transport)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
2011-07-03 20:42:35 +04:00
|
|
|
rdpNego *nego = (rdpNego*) xzalloc(sizeof(rdpNego));
|
2011-07-01 02:48:48 +04:00
|
|
|
|
|
|
|
if (nego != NULL)
|
|
|
|
{
|
2011-07-03 20:42:35 +04:00
|
|
|
nego->transport = transport;
|
2011-07-01 02:48:48 +04:00
|
|
|
nego_init(nego);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nego;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-03 20:42:35 +04:00
|
|
|
* Free NEGO state machine.
|
2011-07-01 02:48:48 +04:00
|
|
|
* @param nego
|
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_free(rdpNego *nego)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
2011-07-03 20:42:35 +04:00
|
|
|
xfree(nego);
|
2011-07-01 02:48:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-03 20:42:35 +04:00
|
|
|
* Set target hostname and port.
|
2011-07-01 02:48:48 +04:00
|
|
|
* @param nego
|
2011-07-03 20:42:35 +04:00
|
|
|
* @param hostname
|
|
|
|
* @param port
|
2011-07-01 02:48:48 +04:00
|
|
|
*/
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
void nego_set_target(rdpNego *nego, char* hostname, int port)
|
2011-07-01 02:48:48 +04:00
|
|
|
{
|
2011-07-03 20:42:35 +04:00
|
|
|
nego->hostname = hostname;
|
|
|
|
nego->port = port;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set enabled security protocols.
|
|
|
|
* @param nego
|
|
|
|
* @param rdp
|
|
|
|
* @param tls
|
|
|
|
* @param nla
|
|
|
|
*/
|
|
|
|
|
|
|
|
void nego_set_protocols(rdpNego *nego, int rdp, int tls, int nla)
|
|
|
|
{
|
|
|
|
nego->enabled_protocols[PROTOCOL_RDP] = rdp;
|
|
|
|
nego->enabled_protocols[PROTOCOL_TLS] = tls;
|
|
|
|
nego->enabled_protocols[PROTOCOL_NLA] = nla;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set routing token.
|
|
|
|
* @param nego
|
|
|
|
* @param routing_token
|
|
|
|
*/
|
|
|
|
|
|
|
|
void nego_set_routing_token(rdpNego *nego, char* routing_token)
|
|
|
|
{
|
|
|
|
nego->routing_token = routing_token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set cookie.
|
|
|
|
* @param nego
|
|
|
|
* @param cookie
|
|
|
|
*/
|
|
|
|
|
|
|
|
void nego_set_cookie(rdpNego *nego, char* cookie)
|
|
|
|
{
|
|
|
|
nego->cookie = cookie;
|
2011-07-01 02:48:48 +04:00
|
|
|
}
|