2011-07-10 09:48:10 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* Connection Sequence
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "connection.h"
|
2011-07-27 03:14:11 +04:00
|
|
|
#include "info.h"
|
2011-07-10 09:48:10 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Connection Sequence
|
|
|
|
* client server
|
|
|
|
* | |
|
|
|
|
* |-----------------------X.224 Connection Request PDU--------------------->|
|
|
|
|
* |<----------------------X.224 Connection Confirm PDU----------------------|
|
|
|
|
* |-------MCS Connect-Initial PDU with GCC Conference Create Request------->|
|
|
|
|
* |<-----MCS Connect-Response PDU with GCC Conference Create Response-------|
|
|
|
|
* |------------------------MCS Erect Domain Request PDU-------------------->|
|
|
|
|
* |------------------------MCS Attach User Request PDU--------------------->|
|
|
|
|
* |<-----------------------MCS Attach User Confirm PDU----------------------|
|
|
|
|
* |------------------------MCS Channel Join Request PDU-------------------->|
|
|
|
|
* |<-----------------------MCS Channel Join Confirm PDU---------------------|
|
|
|
|
* |----------------------------Security Exchange PDU----------------------->|
|
|
|
|
* |-------------------------------Client Info PDU-------------------------->|
|
2011-07-11 00:42:37 +04:00
|
|
|
* |<---------------------License Error PDU - Valid Client-------------------|
|
|
|
|
* |<-----------------------------Demand Active PDU--------------------------|
|
|
|
|
* |------------------------------Confirm Active PDU------------------------>|
|
|
|
|
* |-------------------------------Synchronize PDU-------------------------->|
|
|
|
|
* |---------------------------Control PDU - Cooperate---------------------->|
|
|
|
|
* |------------------------Control PDU - Request Control------------------->|
|
|
|
|
* |--------------------------Persistent Key List PDU(s)-------------------->|
|
|
|
|
* |--------------------------------Font List PDU--------------------------->|
|
|
|
|
* |<------------------------------Synchronize PDU---------------------------|
|
|
|
|
* |<--------------------------Control PDU - Cooperate-----------------------|
|
|
|
|
* |<-----------------------Control PDU - Granted Control--------------------|
|
|
|
|
* |<-------------------------------Font Map PDU-----------------------------|
|
2011-07-10 09:48:10 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-07-11 23:58:39 +04:00
|
|
|
/**
|
|
|
|
* Establish RDP Connection.\n
|
|
|
|
* @msdn{cc240452}
|
2011-07-12 02:46:36 +04:00
|
|
|
* @param rdp RDP module
|
2011-07-11 23:58:39 +04:00
|
|
|
*/
|
|
|
|
|
2011-07-18 07:16:31 +04:00
|
|
|
boolean rdp_client_connect(rdpRdp* rdp)
|
2011-07-10 09:48:10 +04:00
|
|
|
{
|
2011-07-12 02:46:36 +04:00
|
|
|
rdp->settings->autologon = 1;
|
2011-07-10 09:48:10 +04:00
|
|
|
|
2011-07-12 02:46:36 +04:00
|
|
|
nego_init(rdp->nego);
|
|
|
|
nego_set_target(rdp->nego, rdp->settings->hostname, 3389);
|
|
|
|
nego_set_cookie(rdp->nego, rdp->settings->username);
|
|
|
|
nego_set_protocols(rdp->nego, 1, 1, 1);
|
2011-07-10 20:10:24 +04:00
|
|
|
|
2011-07-18 10:34:28 +04:00
|
|
|
if (nego_connect(rdp->nego) != True)
|
2011-07-18 07:16:31 +04:00
|
|
|
{
|
|
|
|
printf("Error: protocol security negotiation failure\n");
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rdp->nego->selected_protocol & PROTOCOL_NLA)
|
|
|
|
transport_connect_nla(rdp->transport);
|
|
|
|
else if (rdp->nego->selected_protocol & PROTOCOL_TLS)
|
|
|
|
transport_connect_tls(rdp->transport);
|
|
|
|
else if (rdp->nego->selected_protocol & PROTOCOL_RDP)
|
|
|
|
transport_connect_rdp(rdp->transport);
|
2011-07-10 09:48:10 +04:00
|
|
|
|
2011-07-18 10:34:28 +04:00
|
|
|
if (mcs_connect(rdp->mcs) != True)
|
|
|
|
{
|
|
|
|
printf("Error: Multipoint Connection Service (MCS) connection failure\n");
|
|
|
|
return False;
|
|
|
|
}
|
2011-07-10 09:48:10 +04:00
|
|
|
|
2011-07-12 02:46:36 +04:00
|
|
|
rdp_send_client_info(rdp);
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2011-07-18 10:34:28 +04:00
|
|
|
if (license_connect(rdp->license) != True)
|
|
|
|
{
|
|
|
|
printf("Error: license connection sequence failure\n");
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
2011-07-24 00:40:33 +04:00
|
|
|
rdp->licensed = True;
|
|
|
|
|
|
|
|
rdp_client_activate(rdp);
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|