2011-07-10 15:34:43 -04:00
|
|
|
/**
|
2012-10-08 23:02:04 -04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-10 15:34:43 -04:00
|
|
|
* RDP Core
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-01-13 08:09:36 -08:00
|
|
|
* Copyright 2014 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2011-07-10 15:34:43 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RDP_H
|
|
|
|
#define __RDP_H
|
|
|
|
|
2012-08-14 17:41:40 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2012-03-12 19:14:56 +08:00
|
|
|
#include "config.h"
|
2012-08-14 17:41:40 -04:00
|
|
|
#endif
|
|
|
|
|
2015-02-15 16:04:59 -05:00
|
|
|
#include "nla.h"
|
2011-07-11 18:46:36 -04:00
|
|
|
#include "mcs.h"
|
|
|
|
#include "tpkt.h"
|
2014-03-10 11:41:10 -04:00
|
|
|
#include "bulk.h"
|
2011-08-09 16:40:58 +08:00
|
|
|
#include "fastpath.h"
|
2011-07-11 18:46:36 -04:00
|
|
|
#include "tpdu.h"
|
|
|
|
#include "nego.h"
|
2011-07-28 00:38:25 -04:00
|
|
|
#include "input.h"
|
2011-07-25 01:45:25 -04:00
|
|
|
#include "update.h"
|
2011-07-11 20:46:03 -04:00
|
|
|
#include "license.h"
|
2011-08-07 23:59:28 -04:00
|
|
|
#include "errinfo.h"
|
2014-01-23 18:01:31 -05:00
|
|
|
#include "autodetect.h"
|
2014-01-23 22:23:47 -05:00
|
|
|
#include "heartbeat.h"
|
2014-01-23 18:01:31 -05:00
|
|
|
#include "multitransport.h"
|
2011-07-11 18:46:36 -04:00
|
|
|
#include "security.h"
|
|
|
|
#include "transport.h"
|
|
|
|
#include "connection.h"
|
2011-09-03 16:36:27 -04:00
|
|
|
#include "redirection.h"
|
2011-07-19 16:30:05 -04:00
|
|
|
#include "capabilities.h"
|
2014-02-11 15:42:28 -05:00
|
|
|
#include "channels.h"
|
2011-07-11 18:46:36 -04:00
|
|
|
|
2011-07-10 15:34:43 -04:00
|
|
|
#include <freerdp/freerdp.h>
|
2011-07-14 01:23:44 -04:00
|
|
|
#include <freerdp/settings.h>
|
2014-09-12 14:36:29 +02:00
|
|
|
#include <freerdp/log.h>
|
2011-07-10 15:34:43 -04:00
|
|
|
|
2013-03-21 16:45:25 -04:00
|
|
|
#include <winpr/stream.h>
|
|
|
|
|
2011-07-10 15:34:43 -04:00
|
|
|
/* Security Header Flags */
|
2013-02-04 16:39:05 -05:00
|
|
|
#define SEC_EXCHANGE_PKT 0x0001
|
2014-03-10 11:41:10 -04:00
|
|
|
#define SEC_TRANSPORT_REQ 0x0002
|
|
|
|
#define SEC_TRANSPORT_RSP 0x0004
|
2013-02-04 16:39:05 -05:00
|
|
|
#define SEC_ENCRYPT 0x0008
|
|
|
|
#define SEC_RESET_SEQNO 0x0010
|
|
|
|
#define SEC_IGNORE_SEQNO 0x0020
|
2013-04-28 20:40:49 -04:00
|
|
|
#define SEC_INFO_PKT 0x0040
|
|
|
|
#define SEC_LICENSE_PKT 0x0080
|
2013-02-04 16:39:05 -05:00
|
|
|
#define SEC_LICENSE_ENCRYPT_CS 0x0200
|
|
|
|
#define SEC_LICENSE_ENCRYPT_SC 0x0200
|
|
|
|
#define SEC_REDIRECTION_PKT 0x0400
|
|
|
|
#define SEC_SECURE_CHECKSUM 0x0800
|
2014-01-23 18:01:31 -05:00
|
|
|
#define SEC_AUTODETECT_REQ 0x1000
|
|
|
|
#define SEC_AUTODETECT_RSP 0x2000
|
|
|
|
#define SEC_HEARTBEAT 0x4000
|
2013-02-04 16:39:05 -05:00
|
|
|
#define SEC_FLAGSHI_VALID 0x8000
|
2011-07-10 15:34:43 -04:00
|
|
|
|
2013-02-04 16:39:05 -05:00
|
|
|
#define SEC_PKT_CS_MASK (SEC_EXCHANGE_PKT | SEC_INFO_PKT)
|
|
|
|
#define SEC_PKT_SC_MASK (SEC_LICENSE_PKT | SEC_REDIRECTION_PKT)
|
|
|
|
#define SEC_PKT_MASK (SEC_PKT_CS_MASK | SEC_PKT_SC_MASK)
|
2011-07-11 18:46:36 -04:00
|
|
|
|
2013-02-04 16:39:05 -05:00
|
|
|
#define RDP_SECURITY_HEADER_LENGTH 4
|
|
|
|
#define RDP_SHARE_CONTROL_HEADER_LENGTH 6
|
|
|
|
#define RDP_SHARE_DATA_HEADER_LENGTH 12
|
|
|
|
#define RDP_PACKET_HEADER_MAX_LENGTH (TPDU_DATA_LENGTH + MCS_SEND_DATA_HEADER_MAX_LENGTH)
|
2011-07-11 18:46:36 -04:00
|
|
|
|
2013-02-04 16:39:05 -05:00
|
|
|
#define PDU_TYPE_DEMAND_ACTIVE 0x1
|
|
|
|
#define PDU_TYPE_CONFIRM_ACTIVE 0x3
|
|
|
|
#define PDU_TYPE_DEACTIVATE_ALL 0x6
|
|
|
|
#define PDU_TYPE_DATA 0x7
|
|
|
|
#define PDU_TYPE_SERVER_REDIRECTION 0xA
|
2011-07-19 16:30:05 -04:00
|
|
|
|
2014-11-05 11:32:46 -08:00
|
|
|
#define PDU_TYPE_FLOW_TEST 0x41
|
2014-11-06 10:08:58 -08:00
|
|
|
#define PDU_TYPE_FLOW_RESPONSE 0x42
|
|
|
|
#define PDU_TYPE_FLOW_STOP 0x43
|
2014-11-05 11:32:46 -08:00
|
|
|
|
2013-02-04 16:39:05 -05:00
|
|
|
#define FINALIZE_SC_SYNCHRONIZE_PDU 0x01
|
|
|
|
#define FINALIZE_SC_CONTROL_COOPERATE_PDU 0x02
|
|
|
|
#define FINALIZE_SC_CONTROL_GRANTED_PDU 0x04
|
|
|
|
#define FINALIZE_SC_FONT_MAP_PDU 0x08
|
|
|
|
#define FINALIZE_SC_COMPLETE 0x0F
|
2011-12-18 15:15:48 -05:00
|
|
|
|
2011-07-21 15:10:53 -04:00
|
|
|
/* Data PDU Types */
|
|
|
|
#define DATA_PDU_TYPE_UPDATE 0x02
|
|
|
|
#define DATA_PDU_TYPE_CONTROL 0x14
|
|
|
|
#define DATA_PDU_TYPE_POINTER 0x1B
|
|
|
|
#define DATA_PDU_TYPE_INPUT 0x1C
|
|
|
|
#define DATA_PDU_TYPE_SYNCHRONIZE 0x1F
|
|
|
|
#define DATA_PDU_TYPE_REFRESH_RECT 0x21
|
|
|
|
#define DATA_PDU_TYPE_PLAY_SOUND 0x22
|
|
|
|
#define DATA_PDU_TYPE_SUPPRESS_OUTPUT 0x23
|
|
|
|
#define DATA_PDU_TYPE_SHUTDOWN_REQUEST 0x24
|
|
|
|
#define DATA_PDU_TYPE_SHUTDOWN_DENIED 0x25
|
|
|
|
#define DATA_PDU_TYPE_SAVE_SESSION_INFO 0x26
|
|
|
|
#define DATA_PDU_TYPE_FONT_LIST 0x27
|
|
|
|
#define DATA_PDU_TYPE_FONT_MAP 0x28
|
|
|
|
#define DATA_PDU_TYPE_SET_KEYBOARD_INDICATORS 0x29
|
|
|
|
#define DATA_PDU_TYPE_BITMAP_CACHE_PERSISTENT_LIST 0x2B
|
|
|
|
#define DATA_PDU_TYPE_BITMAP_CACHE_ERROR 0x2C
|
|
|
|
#define DATA_PDU_TYPE_SET_KEYBOARD_IME_STATUS 0x2D
|
|
|
|
#define DATA_PDU_TYPE_OFFSCREEN_CACHE_ERROR 0x2E
|
|
|
|
#define DATA_PDU_TYPE_SET_ERROR_INFO 0x2F
|
|
|
|
#define DATA_PDU_TYPE_DRAW_NINEGRID_ERROR 0x30
|
|
|
|
#define DATA_PDU_TYPE_DRAW_GDIPLUS_ERROR 0x31
|
|
|
|
#define DATA_PDU_TYPE_ARC_STATUS 0x32
|
|
|
|
#define DATA_PDU_TYPE_STATUS_INFO 0x36
|
|
|
|
#define DATA_PDU_TYPE_MONITOR_LAYOUT 0x37
|
2012-05-11 15:34:51 +08:00
|
|
|
#define DATA_PDU_TYPE_FRAME_ACKNOWLEDGE 0x38
|
2011-07-21 15:10:53 -04:00
|
|
|
|
2011-07-21 16:20:41 -04:00
|
|
|
/* Stream Identifiers */
|
2013-02-04 16:39:05 -05:00
|
|
|
#define STREAM_UNDEFINED 0x00
|
|
|
|
#define STREAM_LOW 0x01
|
|
|
|
#define STREAM_MED 0x02
|
|
|
|
#define STREAM_HI 0x04
|
2011-07-21 16:20:41 -04:00
|
|
|
|
2011-07-11 18:46:36 -04:00
|
|
|
struct rdp_rdp
|
|
|
|
{
|
2011-08-19 09:54:43 +08:00
|
|
|
int state;
|
2011-10-16 00:50:10 -04:00
|
|
|
freerdp* instance;
|
2013-07-19 21:52:28 -04:00
|
|
|
rdpContext* context;
|
2015-02-15 16:04:59 -05:00
|
|
|
rdpNla* nla;
|
2013-11-01 14:13:09 -04:00
|
|
|
rdpMcs* mcs;
|
|
|
|
rdpNego* nego;
|
2014-03-10 11:41:10 -04:00
|
|
|
rdpBulk* bulk;
|
2013-11-01 14:13:09 -04:00
|
|
|
rdpInput* input;
|
|
|
|
rdpUpdate* update;
|
|
|
|
rdpFastPath* fastpath;
|
|
|
|
rdpLicense* license;
|
|
|
|
rdpRedirection* redirection;
|
|
|
|
rdpSettings* settings;
|
|
|
|
rdpTransport* transport;
|
2014-01-23 18:01:31 -05:00
|
|
|
rdpAutoDetect* autodetect;
|
2014-01-24 08:38:28 -05:00
|
|
|
rdpHeartbeat* heartbeat;
|
2014-01-23 18:01:31 -05:00
|
|
|
rdpMultitransport* multitransport;
|
2011-09-12 23:40:27 -07:00
|
|
|
struct crypto_rc4_struct* rc4_decrypt_key;
|
|
|
|
int decrypt_use_count;
|
2012-02-22 19:23:48 +01:00
|
|
|
int decrypt_checksum_use_count;
|
2011-09-12 23:40:27 -07:00
|
|
|
struct crypto_rc4_struct* rc4_encrypt_key;
|
|
|
|
int encrypt_use_count;
|
2012-02-22 19:23:48 +01:00
|
|
|
int encrypt_checksum_use_count;
|
2011-09-15 18:54:03 -05:00
|
|
|
struct crypto_des3_struct* fips_encrypt;
|
|
|
|
struct crypto_des3_struct* fips_decrypt;
|
|
|
|
struct crypto_hmac_struct* fips_hmac;
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 sec_flags;
|
2012-10-09 02:38:39 -04:00
|
|
|
BOOL do_crypt;
|
2014-09-18 19:43:28 -04:00
|
|
|
BOOL do_crypt_license;
|
2012-10-09 02:38:39 -04:00
|
|
|
BOOL do_secure_checksum;
|
2012-10-09 03:01:37 -04:00
|
|
|
BYTE sign_key[16];
|
|
|
|
BYTE decrypt_key[16];
|
|
|
|
BYTE encrypt_key[16];
|
|
|
|
BYTE decrypt_update_key[16];
|
|
|
|
BYTE encrypt_update_key[16];
|
2011-09-23 23:09:29 -07:00
|
|
|
int rc4_key_len;
|
2012-10-09 03:01:37 -04:00
|
|
|
BYTE fips_sign_key[20];
|
|
|
|
BYTE fips_encrypt_key[24];
|
|
|
|
BYTE fips_decrypt_key[24];
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 errorInfo;
|
|
|
|
UINT32 finalize_sc_pdus;
|
2012-10-09 02:38:39 -04:00
|
|
|
BOOL disconnect;
|
2013-04-15 11:14:09 +01:00
|
|
|
BOOL resendFocus;
|
2013-06-13 20:24:17 +02:00
|
|
|
BOOL deactivation_reactivation;
|
2013-07-18 17:15:10 -04:00
|
|
|
BOOL AwaitCapabilities;
|
2013-11-01 14:13:09 -04:00
|
|
|
rdpSettings* settingsCopy;
|
2011-07-11 18:46:36 -04:00
|
|
|
};
|
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
BOOL rdp_read_security_header(wStream* s, UINT16* flags);
|
|
|
|
void rdp_write_security_header(wStream* s, UINT16 flags);
|
2011-07-10 15:34:43 -04:00
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
BOOL rdp_read_share_control_header(wStream* s, UINT16* length, UINT16* type, UINT16* channel_id);
|
|
|
|
void rdp_write_share_control_header(wStream* s, UINT16 length, UINT16 type, UINT16 channel_id);
|
2011-07-21 13:57:57 -04:00
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
BOOL rdp_read_share_data_header(wStream* s, UINT16* length, BYTE* type, UINT32* share_id,
|
2012-10-09 03:01:37 -04:00
|
|
|
BYTE *compressed_type, UINT16 *compressed_len);
|
2011-09-07 22:17:58 -07:00
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
void rdp_write_share_data_header(wStream* s, UINT16 length, BYTE type, UINT32 share_id);
|
2011-07-21 16:20:41 -04:00
|
|
|
|
2013-05-15 15:54:33 -04:00
|
|
|
int rdp_init_stream(rdpRdp* rdp, wStream* s);
|
2013-03-21 15:19:33 -04:00
|
|
|
wStream* rdp_send_stream_init(rdpRdp* rdp);
|
2011-08-20 16:43:29 +08:00
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
BOOL rdp_read_header(rdpRdp* rdp, wStream* s, UINT16* length, UINT16* channel_id);
|
|
|
|
void rdp_write_header(rdpRdp* rdp, wStream* s, UINT16 length, UINT16 channel_id);
|
2011-07-11 18:46:36 -04:00
|
|
|
|
2013-05-15 15:54:33 -04:00
|
|
|
int rdp_init_stream_pdu(rdpRdp* rdp, wStream* s);
|
2013-03-21 15:19:33 -04:00
|
|
|
BOOL rdp_send_pdu(rdpRdp* rdp, wStream* s, UINT16 type, UINT16 channel_id);
|
2011-07-21 20:06:28 -04:00
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
wStream* rdp_data_pdu_init(rdpRdp* rdp);
|
2014-09-30 21:12:20 -04:00
|
|
|
int rdp_init_stream_data_pdu(rdpRdp* rdp, wStream* s);
|
2013-03-21 15:19:33 -04:00
|
|
|
BOOL rdp_send_data_pdu(rdpRdp* rdp, wStream* s, BYTE type, UINT16 channel_id);
|
|
|
|
int rdp_recv_data_pdu(rdpRdp* rdp, wStream* s);
|
2011-07-21 15:10:53 -04:00
|
|
|
|
2014-02-15 16:32:38 -05:00
|
|
|
BOOL rdp_send(rdpRdp* rdp, wStream* s, UINT16 channelId);
|
2011-07-11 18:46:36 -04:00
|
|
|
|
2014-02-15 16:32:38 -05:00
|
|
|
int rdp_send_channel_data(rdpRdp* rdp, UINT16 channelId, BYTE* data, int size);
|
2011-08-03 11:00:56 +08:00
|
|
|
|
2014-01-23 18:01:31 -05:00
|
|
|
wStream* rdp_message_channel_pdu_init(rdpRdp* rdp);
|
|
|
|
BOOL rdp_send_message_channel_pdu(rdpRdp* rdp, wStream* s, UINT16 sec_flags);
|
|
|
|
int rdp_recv_message_channel_pdu(rdpRdp* rdp, wStream* s);
|
|
|
|
|
2013-11-04 15:52:29 -05:00
|
|
|
int rdp_recv_out_of_sequence_pdu(rdpRdp* rdp, wStream* s);
|
2011-09-02 21:34:51 -04:00
|
|
|
|
2014-11-05 11:32:46 -08:00
|
|
|
void rdp_read_flow_control_pdu(wStream* s, UINT16* type);
|
|
|
|
|
2015-02-15 14:54:10 -05:00
|
|
|
int rdp_recv_callback(rdpTransport* transport, wStream* s, void* extra);
|
|
|
|
|
2011-08-01 12:43:53 +08:00
|
|
|
int rdp_check_fds(rdpRdp* rdp);
|
|
|
|
|
2013-07-19 21:52:28 -04:00
|
|
|
rdpRdp* rdp_new(rdpContext* context);
|
2013-11-03 16:25:56 -05:00
|
|
|
void rdp_reset(rdpRdp* rdp);
|
2011-07-11 18:46:36 -04:00
|
|
|
void rdp_free(rdpRdp* rdp);
|
|
|
|
|
2014-09-12 14:36:29 +02:00
|
|
|
#define RDP_TAG FREERDP_TAG("core.rdp")
|
2011-09-02 13:29:17 -04:00
|
|
|
#ifdef WITH_DEBUG_RDP
|
2014-09-12 14:36:29 +02:00
|
|
|
#define DEBUG_RDP(fmt, ...) WLog_DBG(RDP_TAG, fmt, ## __VA_ARGS__)
|
2011-09-02 13:29:17 -04:00
|
|
|
#else
|
2014-09-12 14:36:29 +02:00
|
|
|
#define DEBUG_RDP(fmt, ...) do { } while (0)
|
2011-09-02 13:29:17 -04:00
|
|
|
#endif
|
|
|
|
|
2013-03-21 15:19:33 -04:00
|
|
|
BOOL rdp_decrypt(rdpRdp* rdp, wStream* s, int length, UINT16 securityFlags);
|
2011-09-14 14:14:50 -07:00
|
|
|
|
2013-12-20 18:26:07 -05:00
|
|
|
BOOL rdp_set_error_info(rdpRdp* rdp, UINT32 errorInfo);
|
2015-01-13 08:09:36 -08:00
|
|
|
BOOL rdp_send_error_info(rdpRdp* rdp);
|
2013-12-20 18:26:07 -05:00
|
|
|
|
2011-07-10 15:34:43 -04:00
|
|
|
#endif /* __RDP_H */
|