2011-07-10 23:34:43 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-10 23:34:43 +04:00
|
|
|
* RDP Core
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RDP_H
|
|
|
|
#define __RDP_H
|
|
|
|
|
2012-08-15 01:41:40 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2012-03-12 15:14:56 +04:00
|
|
|
#include "config.h"
|
2012-08-15 01:41:40 +04:00
|
|
|
#endif
|
|
|
|
|
2011-07-12 02:46:36 +04:00
|
|
|
#include "mcs.h"
|
|
|
|
#include "tpkt.h"
|
2014-03-10 19:41:10 +04:00
|
|
|
#include "bulk.h"
|
2011-08-09 12:40:58 +04:00
|
|
|
#include "fastpath.h"
|
2011-07-12 02:46:36 +04:00
|
|
|
#include "tpdu.h"
|
|
|
|
#include "nego.h"
|
2011-07-28 08:38:25 +04:00
|
|
|
#include "input.h"
|
2011-07-25 09:45:25 +04:00
|
|
|
#include "update.h"
|
2011-07-12 04:46:03 +04:00
|
|
|
#include "license.h"
|
2011-08-08 07:59:28 +04:00
|
|
|
#include "errinfo.h"
|
2014-01-24 03:01:31 +04:00
|
|
|
#include "autodetect.h"
|
2014-01-24 07:23:47 +04:00
|
|
|
#include "heartbeat.h"
|
2014-01-24 03:01:31 +04:00
|
|
|
#include "multitransport.h"
|
2011-07-12 02:46:36 +04:00
|
|
|
#include "security.h"
|
|
|
|
#include "transport.h"
|
|
|
|
#include "connection.h"
|
2011-09-04 00:36:27 +04:00
|
|
|
#include "redirection.h"
|
2011-07-20 00:30:05 +04:00
|
|
|
#include "capabilities.h"
|
2014-02-12 00:42:28 +04:00
|
|
|
#include "channels.h"
|
2011-07-12 02:46:36 +04:00
|
|
|
|
2011-07-10 23:34:43 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
2011-07-14 09:23:44 +04:00
|
|
|
#include <freerdp/settings.h>
|
2014-09-12 16:36:29 +04:00
|
|
|
#include <freerdp/log.h>
|
2011-07-10 23:34:43 +04:00
|
|
|
|
2013-03-22 00:45:25 +04:00
|
|
|
#include <winpr/stream.h>
|
|
|
|
|
2011-07-10 23:34:43 +04:00
|
|
|
/* Security Header Flags */
|
2013-02-05 01:39:05 +04:00
|
|
|
#define SEC_EXCHANGE_PKT 0x0001
|
2014-03-10 19:41:10 +04:00
|
|
|
#define SEC_TRANSPORT_REQ 0x0002
|
|
|
|
#define SEC_TRANSPORT_RSP 0x0004
|
2013-02-05 01:39:05 +04:00
|
|
|
#define SEC_ENCRYPT 0x0008
|
|
|
|
#define SEC_RESET_SEQNO 0x0010
|
|
|
|
#define SEC_IGNORE_SEQNO 0x0020
|
2013-04-29 04:40:49 +04:00
|
|
|
#define SEC_INFO_PKT 0x0040
|
|
|
|
#define SEC_LICENSE_PKT 0x0080
|
2013-02-05 01:39:05 +04: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-24 03:01:31 +04:00
|
|
|
#define SEC_AUTODETECT_REQ 0x1000
|
|
|
|
#define SEC_AUTODETECT_RSP 0x2000
|
|
|
|
#define SEC_HEARTBEAT 0x4000
|
2013-02-05 01:39:05 +04:00
|
|
|
#define SEC_FLAGSHI_VALID 0x8000
|
2011-07-10 23:34:43 +04:00
|
|
|
|
2013-02-05 01:39:05 +04: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-12 02:46:36 +04:00
|
|
|
|
2013-02-05 01:39:05 +04: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-12 02:46:36 +04:00
|
|
|
|
2013-02-05 01:39:05 +04: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-20 00:30:05 +04:00
|
|
|
|
2014-11-05 22:32:46 +03:00
|
|
|
#define PDU_TYPE_FLOW_TEST 0x41
|
2014-11-06 21:08:58 +03:00
|
|
|
#define PDU_TYPE_FLOW_RESPONSE 0x42
|
|
|
|
#define PDU_TYPE_FLOW_STOP 0x43
|
2014-11-05 22:32:46 +03:00
|
|
|
|
2013-02-05 01:39:05 +04: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-19 00:15:48 +04:00
|
|
|
|
2011-07-21 23: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 11:34:51 +04:00
|
|
|
#define DATA_PDU_TYPE_FRAME_ACKNOWLEDGE 0x38
|
2011-07-21 23:10:53 +04:00
|
|
|
|
2011-07-22 00:20:41 +04:00
|
|
|
/* Stream Identifiers */
|
2013-02-05 01:39:05 +04:00
|
|
|
#define STREAM_UNDEFINED 0x00
|
|
|
|
#define STREAM_LOW 0x01
|
|
|
|
#define STREAM_MED 0x02
|
|
|
|
#define STREAM_HI 0x04
|
2011-07-22 00:20:41 +04:00
|
|
|
|
2011-07-12 02:46:36 +04:00
|
|
|
struct rdp_rdp
|
|
|
|
{
|
2011-08-19 05:54:43 +04:00
|
|
|
int state;
|
2011-10-16 08:50:10 +04:00
|
|
|
freerdp* instance;
|
2013-07-20 05:52:28 +04:00
|
|
|
rdpContext* context;
|
2013-11-01 22:13:09 +04:00
|
|
|
rdpMcs* mcs;
|
|
|
|
rdpNego* nego;
|
2014-03-10 19:41:10 +04:00
|
|
|
rdpBulk* bulk;
|
2013-11-01 22:13:09 +04:00
|
|
|
rdpInput* input;
|
|
|
|
rdpUpdate* update;
|
|
|
|
rdpFastPath* fastpath;
|
|
|
|
rdpLicense* license;
|
|
|
|
rdpRedirection* redirection;
|
|
|
|
rdpSettings* settings;
|
|
|
|
rdpTransport* transport;
|
2014-01-24 03:01:31 +04:00
|
|
|
rdpAutoDetect* autodetect;
|
2014-01-24 17:38:28 +04:00
|
|
|
rdpHeartbeat* heartbeat;
|
2014-01-24 03:01:31 +04:00
|
|
|
rdpMultitransport* multitransport;
|
2011-09-13 10:40:27 +04:00
|
|
|
struct crypto_rc4_struct* rc4_decrypt_key;
|
|
|
|
int decrypt_use_count;
|
2012-02-22 22:23:48 +04:00
|
|
|
int decrypt_checksum_use_count;
|
2011-09-13 10:40:27 +04:00
|
|
|
struct crypto_rc4_struct* rc4_encrypt_key;
|
|
|
|
int encrypt_use_count;
|
2012-02-22 22:23:48 +04:00
|
|
|
int encrypt_checksum_use_count;
|
2011-09-16 03:54:03 +04:00
|
|
|
struct crypto_des3_struct* fips_encrypt;
|
|
|
|
struct crypto_des3_struct* fips_decrypt;
|
|
|
|
struct crypto_hmac_struct* fips_hmac;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 sec_flags;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL do_crypt;
|
2014-09-19 03:43:28 +04:00
|
|
|
BOOL do_crypt_license;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL do_secure_checksum;
|
2012-10-09 11: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-24 10:09:29 +04:00
|
|
|
int rc4_key_len;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE fips_sign_key[20];
|
|
|
|
BYTE fips_encrypt_key[24];
|
|
|
|
BYTE fips_decrypt_key[24];
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 errorInfo;
|
|
|
|
UINT32 finalize_sc_pdus;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL disconnect;
|
2013-04-15 14:14:09 +04:00
|
|
|
BOOL resendFocus;
|
2013-06-13 22:24:17 +04:00
|
|
|
BOOL deactivation_reactivation;
|
2013-07-19 01:15:10 +04:00
|
|
|
BOOL AwaitCapabilities;
|
2013-11-01 22:13:09 +04:00
|
|
|
rdpSettings* settingsCopy;
|
2011-07-12 02:46:36 +04:00
|
|
|
};
|
|
|
|
|
2013-03-21 23: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 23:34:43 +04:00
|
|
|
|
2013-03-21 23: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 21:57:57 +04:00
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL rdp_read_share_data_header(wStream* s, UINT16* length, BYTE* type, UINT32* share_id,
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE *compressed_type, UINT16 *compressed_len);
|
2011-09-08 09:17:58 +04:00
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void rdp_write_share_data_header(wStream* s, UINT16 length, BYTE type, UINT32 share_id);
|
2011-07-22 00:20:41 +04:00
|
|
|
|
2013-05-15 23:54:33 +04:00
|
|
|
int rdp_init_stream(rdpRdp* rdp, wStream* s);
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* rdp_send_stream_init(rdpRdp* rdp);
|
2011-08-20 12:43:29 +04:00
|
|
|
|
2013-03-21 23: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-12 02:46:36 +04:00
|
|
|
|
2013-05-15 23:54:33 +04:00
|
|
|
int rdp_init_stream_pdu(rdpRdp* rdp, wStream* s);
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL rdp_send_pdu(rdpRdp* rdp, wStream* s, UINT16 type, UINT16 channel_id);
|
2011-07-22 04:06:28 +04:00
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* rdp_data_pdu_init(rdpRdp* rdp);
|
2014-10-01 05:12:20 +04:00
|
|
|
int rdp_init_stream_data_pdu(rdpRdp* rdp, wStream* s);
|
2013-03-21 23: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 23:10:53 +04:00
|
|
|
|
2014-02-16 01:32:38 +04:00
|
|
|
BOOL rdp_send(rdpRdp* rdp, wStream* s, UINT16 channelId);
|
2011-07-12 02:46:36 +04:00
|
|
|
|
2014-02-16 01:32:38 +04:00
|
|
|
int rdp_send_channel_data(rdpRdp* rdp, UINT16 channelId, BYTE* data, int size);
|
2011-08-03 07:00:56 +04:00
|
|
|
|
2014-01-24 03:01:31 +04: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-05 00:52:29 +04:00
|
|
|
int rdp_recv_out_of_sequence_pdu(rdpRdp* rdp, wStream* s);
|
2011-09-03 05:34:51 +04:00
|
|
|
|
2014-11-05 22:32:46 +03:00
|
|
|
void rdp_read_flow_control_pdu(wStream* s, UINT16* type);
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
void rdp_set_blocking_mode(rdpRdp* rdp, BOOL blocking);
|
2011-08-01 08:43:53 +04:00
|
|
|
int rdp_check_fds(rdpRdp* rdp);
|
|
|
|
|
2013-07-20 05:52:28 +04:00
|
|
|
rdpRdp* rdp_new(rdpContext* context);
|
2013-11-04 01:25:56 +04:00
|
|
|
void rdp_reset(rdpRdp* rdp);
|
2011-07-12 02:46:36 +04:00
|
|
|
void rdp_free(rdpRdp* rdp);
|
|
|
|
|
2014-09-12 16:36:29 +04:00
|
|
|
#define RDP_TAG FREERDP_TAG("core.rdp")
|
2011-09-02 21:29:17 +04:00
|
|
|
#ifdef WITH_DEBUG_RDP
|
2014-09-12 16:36:29 +04:00
|
|
|
#define DEBUG_RDP(fmt, ...) WLog_DBG(RDP_TAG, fmt, ## __VA_ARGS__)
|
2011-09-02 21:29:17 +04:00
|
|
|
#else
|
2014-09-12 16:36:29 +04:00
|
|
|
#define DEBUG_RDP(fmt, ...) do { } while (0)
|
2011-09-02 21:29:17 +04:00
|
|
|
#endif
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL rdp_decrypt(rdpRdp* rdp, wStream* s, int length, UINT16 securityFlags);
|
2011-09-15 01:14:50 +04:00
|
|
|
|
2013-12-21 03:26:07 +04:00
|
|
|
BOOL rdp_set_error_info(rdpRdp* rdp, UINT32 errorInfo);
|
|
|
|
|
2011-07-10 23:34:43 +04:00
|
|
|
#endif /* __RDP_H */
|