2011-07-20 00:30:05 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-20 00:30:05 +04:00
|
|
|
* RDP Capability Sets
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
2011-10-02 23:06:41 +04:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-07-20 00:30:05 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-07-20 00:30:05 +04:00
|
|
|
#include "capabilities.h"
|
|
|
|
|
2011-11-30 05:15:50 +04:00
|
|
|
/*
|
|
|
|
static const char* const CAPSET_TYPE_STRINGS[] =
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
|
|
|
"Unknown",
|
|
|
|
"General",
|
|
|
|
"Bitmap",
|
|
|
|
"Order",
|
|
|
|
"Bitmap Cache",
|
|
|
|
"Control",
|
|
|
|
"Unknown",
|
|
|
|
"Window Activation",
|
|
|
|
"Pointer",
|
|
|
|
"Share",
|
|
|
|
"Color Cache",
|
|
|
|
"Unknown",
|
|
|
|
"Sound",
|
|
|
|
"Input",
|
|
|
|
"Font",
|
|
|
|
"Brush",
|
|
|
|
"Glyph Cache",
|
|
|
|
"Offscreen Bitmap Cache",
|
|
|
|
"Bitmap Cache Host Support",
|
|
|
|
"Bitmap Cache v2",
|
|
|
|
"Virtual Channel",
|
|
|
|
"DrawNineGrid Cache",
|
|
|
|
"Draw GDI+ Cache",
|
|
|
|
"Remote Programs",
|
|
|
|
"Window List",
|
|
|
|
"Desktop Composition",
|
|
|
|
"Multifragment Update",
|
|
|
|
"Large Pointer",
|
|
|
|
"Surface Commands",
|
2011-09-14 22:47:04 +04:00
|
|
|
"Bitmap Codecs",
|
|
|
|
"Frame Acknowledge"
|
2011-07-20 00:30:05 +04:00
|
|
|
};
|
2011-11-30 05:15:50 +04:00
|
|
|
*/
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-08-24 07:27:22 +04:00
|
|
|
/* CODEC_GUID_REMOTEFX 0x76772F12BD724463AFB3B73C9C6F7886 */
|
|
|
|
#define CODEC_GUID_REMOTEFX "\x12\x2F\x77\x76\x72\xBD\x63\x44\xAF\xB3\xB7\x3C\x9C\x6F\x78\x86"
|
|
|
|
|
2011-10-02 23:06:41 +04:00
|
|
|
/* CODEC_GUID_NSCODEC 0xCA8D1BB9000F154F589FAE2D1A87E2D6 */
|
|
|
|
#define CODEC_GUID_NSCODEC "\xb9\x1b\x8d\xca\x0f\x00\x4f\x15\x58\x9f\xae\x2d\x1a\x87\xe2\xd6"
|
|
|
|
|
2012-07-24 23:05:22 +04:00
|
|
|
/* CODEC_GUID_JPEG 0x430C9EED1BAF4CE6869ACB8B37B66237*/
|
|
|
|
#define CODEC_GUID_JPEG "\xE6\x4C\xAF\x1B\xED\x9E\x0C\x43\x86\x9A\xCB\x8B\x37\xB6\x62\x37"
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_capability_set_header(STREAM* s, UINT16* length, UINT16* type)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, *type); /* capabilitySetType */
|
|
|
|
stream_read_UINT16(s, *length); /* lengthCapability */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_write_capability_set_header(STREAM* s, UINT16 length, UINT16 type)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, type); /* capabilitySetType */
|
|
|
|
stream_write_UINT16(s, length); /* lengthCapability */
|
2011-07-21 09:56:48 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* rdp_capability_set_start(STREAM* s)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
stream_get_mark(s, header);
|
2012-01-11 08:04:10 +04:00
|
|
|
stream_write_zero(s, CAPSET_HEADER_LENGTH);
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
return header;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_capability_set_finish(STREAM* s, BYTE* header, UINT16 type)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 length;
|
|
|
|
BYTE* footer;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2012-01-11 08:04:10 +04:00
|
|
|
footer = s->p;
|
|
|
|
length = footer - header;
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_set_mark(s, header);
|
2012-01-11 08:04:10 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
rdp_write_capability_set_header(s, length, type);
|
2012-01-11 08:04:10 +04:00
|
|
|
stream_set_mark(s, footer);
|
2011-07-21 09:56:48 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
|
|
|
* Read general capability set.\n
|
|
|
|
* @msdn{cc240549}
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_general_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 extraFlags;
|
|
|
|
BYTE refreshRectSupport;
|
|
|
|
BYTE suppressOutputSupport;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2011-12-24 11:48:11 +04:00
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, settings->os_major_type); /* osMajorType (2 bytes) */
|
|
|
|
stream_read_UINT16(s, settings->os_minor_type); /* osMinorType (2 bytes) */
|
2011-12-24 11:48:11 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* osMajorType (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* osMinorType (2 bytes) */
|
2011-12-24 11:48:11 +04:00
|
|
|
}
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* protocolVersion (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsA (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* generalCompressionTypes (2 bytes) */
|
|
|
|
stream_read_UINT16(s, extraFlags); /* extraFlags (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* updateCapabilityFlag (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* remoteUnshareFlag (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* generalCompressionLevel (2 bytes) */
|
|
|
|
stream_read_BYTE(s, refreshRectSupport); /* refreshRectSupport (1 byte) */
|
|
|
|
stream_read_BYTE(s, suppressOutputSupport); /* suppressOutputSupport (1 byte) */
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2011-12-20 23:42:22 +04:00
|
|
|
if (!(extraFlags & FASTPATH_OUTPUT_SUPPORTED))
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->fastpath_output = FALSE;
|
2011-12-20 23:42:22 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (refreshRectSupport == FALSE)
|
|
|
|
settings->refresh_rect = FALSE;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (suppressOutputSupport == FALSE)
|
|
|
|
settings->suppress_output = FALSE;
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write general capability set.\n
|
|
|
|
* @msdn{cc240549}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_general_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 extraFlags;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2011-12-20 05:31:37 +04:00
|
|
|
extraFlags = LONG_CREDENTIALS_SUPPORTED | NO_BITMAP_COMPRESSION_HDR;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
if (settings->auto_reconnection)
|
|
|
|
extraFlags |= AUTORECONNECT_SUPPORTED;
|
|
|
|
|
2011-08-13 09:35:58 +04:00
|
|
|
if (settings->fastpath_output)
|
2011-07-21 09:56:48 +04:00
|
|
|
extraFlags |= FASTPATH_OUTPUT_SUPPORTED;
|
|
|
|
|
2012-02-10 23:30:44 +04:00
|
|
|
if (settings->salted_checksum)
|
|
|
|
extraFlags |= ENC_SALTED_CHECKSUM;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, settings->os_major_type); /* osMajorType (2 bytes) */
|
|
|
|
stream_write_UINT16(s, settings->os_minor_type); /* osMinorType (2 bytes) */
|
|
|
|
stream_write_UINT16(s, CAPS_PROTOCOL_VERSION); /* protocolVersion (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsA (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* generalCompressionTypes (2 bytes) */
|
|
|
|
stream_write_UINT16(s, extraFlags); /* extraFlags (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* updateCapabilityFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* remoteUnshareFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* generalCompressionLevel (2 bytes) */
|
|
|
|
stream_write_BYTE(s, settings->refresh_rect); /* refreshRectSupport (1 byte) */
|
|
|
|
stream_write_BYTE(s, settings->suppress_output); /* suppressOutputSupport (1 byte) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_GENERAL);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read bitmap capability set.\n
|
|
|
|
* @msdn{cc240554}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_bitmap_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
|
|
|
{
|
|
|
|
BYTE drawingFlags;
|
|
|
|
UINT16 desktopWidth;
|
|
|
|
UINT16 desktopHeight;
|
|
|
|
UINT16 desktopResizeFlag;
|
|
|
|
UINT16 preferredBitsPerPixel;
|
|
|
|
|
|
|
|
stream_read_UINT16(s, preferredBitsPerPixel); /* preferredBitsPerPixel (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* receive1BitPerPixel (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* receive4BitsPerPixel (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* receive8BitsPerPixel (2 bytes) */
|
|
|
|
stream_read_UINT16(s, desktopWidth); /* desktopWidth (2 bytes) */
|
|
|
|
stream_read_UINT16(s, desktopHeight); /* desktopHeight (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
|
|
|
stream_read_UINT16(s, desktopResizeFlag); /* desktopResizeFlag (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* bitmapCompressionFlag (2 bytes) */
|
|
|
|
stream_seek_BYTE(s); /* highColorFlags (1 byte) */
|
|
|
|
stream_read_BYTE(s, drawingFlags); /* drawingFlags (1 byte) */
|
|
|
|
stream_seek_UINT16(s); /* multipleRectangleSupport (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsB (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2011-09-06 11:08:07 +04:00
|
|
|
if (!settings->server_mode && preferredBitsPerPixel != settings->color_depth)
|
|
|
|
{
|
|
|
|
/* The client must respect the actual color depth used by the server */
|
|
|
|
settings->color_depth = preferredBitsPerPixel;
|
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (desktopResizeFlag == FALSE)
|
|
|
|
settings->desktop_resize = FALSE;
|
2011-09-06 12:22:08 +04:00
|
|
|
|
|
|
|
if (!settings->server_mode && settings->desktop_resize)
|
|
|
|
{
|
|
|
|
/* The server may request a different desktop size during Deactivation-Reactivation sequence */
|
|
|
|
settings->width = desktopWidth;
|
|
|
|
settings->height = desktopHeight;
|
|
|
|
}
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write bitmap capability set.\n
|
|
|
|
* @msdn{cc240554}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_bitmap_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
BYTE drawingFlags = 0;
|
|
|
|
UINT16 desktopResizeFlag;
|
|
|
|
UINT16 preferredBitsPerPixel;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2012-09-11 03:17:17 +04:00
|
|
|
drawingFlags |= DRAW_ALLOW_SKIP_ALPHA;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
if (settings->rdp_version > 5)
|
|
|
|
preferredBitsPerPixel = settings->color_depth;
|
|
|
|
else
|
|
|
|
preferredBitsPerPixel = 8;
|
|
|
|
|
2011-08-16 23:35:29 +04:00
|
|
|
desktopResizeFlag = settings->desktop_resize;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, preferredBitsPerPixel); /* preferredBitsPerPixel (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 1); /* receive1BitPerPixel (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 1); /* receive4BitsPerPixel (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 1); /* receive8BitsPerPixel (2 bytes) */
|
|
|
|
stream_write_UINT16(s, settings->width); /* desktopWidth (2 bytes) */
|
|
|
|
stream_write_UINT16(s, settings->height); /* desktopHeight (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2Octets (2 bytes) */
|
|
|
|
stream_write_UINT16(s, desktopResizeFlag); /* desktopResizeFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 1); /* bitmapCompressionFlag (2 bytes) */
|
|
|
|
stream_write_BYTE(s, 0); /* highColorFlags (1 byte) */
|
|
|
|
stream_write_BYTE(s, drawingFlags); /* drawingFlags (1 byte) */
|
|
|
|
stream_write_UINT16(s, 1); /* multipleRectangleSupport (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsB (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_BITMAP);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read order capability set.\n
|
|
|
|
* @msdn{cc240556}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_order_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
int i;
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 orderFlags;
|
|
|
|
BYTE orderSupport[32];
|
|
|
|
UINT16 orderSupportExFlags;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
|
|
|
stream_seek(s, 16); /* terminalDescriptor (16 bytes) */
|
|
|
|
stream_seek_uint32(s); /* pad4OctetsA (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* desktopSaveXGranularity (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* desktopSaveYGranularity (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsA (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* maximumOrderLevel (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* numberFonts (2 bytes) */
|
|
|
|
stream_read_UINT16(s, orderFlags); /* orderFlags (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_read(s, orderSupport, 32); /* orderSupport (32 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* textFlags (2 bytes) */
|
|
|
|
stream_read_UINT16(s, orderSupportExFlags); /* orderSupportExFlags (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek_uint32(s); /* pad4OctetsB (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* desktopSaveSize (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* pad2OctetsC (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsD (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* textANSICodePage (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsE (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
|
|
|
|
for (i = 0; i < 32; i++)
|
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
if (orderSupport[i] == FALSE)
|
|
|
|
settings->order_support[i] = FALSE;
|
2011-07-21 06:05:12 +04:00
|
|
|
}
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write order capability set.\n
|
|
|
|
* @msdn{cc240556}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_order_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 orderFlags;
|
|
|
|
UINT16 orderSupportExFlags;
|
|
|
|
UINT16 textANSICodePage;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2011-12-20 05:52:22 +04:00
|
|
|
/* see [MSDN-CP]: http://msdn.microsoft.com/en-us/library/dd317756 */
|
|
|
|
textANSICodePage = 65001; /* Unicode (UTF-8) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
orderSupportExFlags = 0;
|
2011-12-20 05:52:22 +04:00
|
|
|
orderFlags = NEGOTIATE_ORDER_SUPPORT | ZERO_BOUNDS_DELTA_SUPPORT | COLOR_INDEX_SUPPORT;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2011-12-20 05:52:22 +04:00
|
|
|
if (settings->bitmap_cache_v3)
|
|
|
|
{
|
2011-07-21 09:56:48 +04:00
|
|
|
orderSupportExFlags |= CACHE_BITMAP_V3_SUPPORT;
|
2011-12-20 05:52:22 +04:00
|
|
|
orderFlags |= ORDER_FLAGS_EXTRA_SUPPORT;
|
|
|
|
}
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2011-12-20 05:52:22 +04:00
|
|
|
if (settings->frame_marker)
|
|
|
|
{
|
2011-07-21 09:56:48 +04:00
|
|
|
orderSupportExFlags |= ALTSEC_FRAME_MARKER_SUPPORT;
|
2011-12-20 05:52:22 +04:00
|
|
|
orderFlags |= ORDER_FLAGS_EXTRA_SUPPORT;
|
|
|
|
}
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
stream_write_zero(s, 16); /* terminalDescriptor (16 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* pad4OctetsA (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 1); /* desktopSaveXGranularity (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 20); /* desktopSaveYGranularity (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsA (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 1); /* maximumOrderLevel (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* numberFonts (2 bytes) */
|
|
|
|
stream_write_UINT16(s, orderFlags); /* orderFlags (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_write(s, settings->order_support, 32); /* orderSupport (32 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 0); /* textFlags (2 bytes) */
|
|
|
|
stream_write_UINT16(s, orderSupportExFlags); /* orderSupportExFlags (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_write_uint32(s, 0); /* pad4OctetsB (4 bytes) */
|
|
|
|
stream_write_uint32(s, 230400); /* desktopSaveSize (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsC (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsD (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* textANSICodePage (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsE (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_ORDER);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read bitmap cache capability set.\n
|
|
|
|
* @msdn{cc240559}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_bitmap_cache_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek_uint32(s); /* pad1 (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* pad2 (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* pad3 (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* pad4 (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* pad5 (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* pad6 (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* Cache0Entries (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* Cache0MaximumCellSize (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* Cache1Entries (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* Cache1MaximumCellSize (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* Cache2Entries (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* Cache2MaximumCellSize (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write bitmap cache capability set.\n
|
|
|
|
* @msdn{cc240559}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_bitmap_cache_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2011-07-21 09:56:48 +04:00
|
|
|
int bpp;
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 size;
|
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
bpp = (settings->color_depth + 7) / 8;
|
|
|
|
|
|
|
|
stream_write_uint32(s, 0); /* pad1 (4 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* pad2 (4 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* pad3 (4 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* pad4 (4 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* pad5 (4 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* pad6 (4 bytes) */
|
|
|
|
|
|
|
|
size = bpp * 256;
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 200); /* Cache0Entries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, size); /* Cache0MaximumCellSize (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
size = bpp * 1024;
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 600); /* Cache1Entries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, size); /* Cache1MaximumCellSize (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
size = bpp * 4096;
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 1000); /* Cache2Entries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, size); /* Cache2MaximumCellSize (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_BITMAP_CACHE);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read control capability set.\n
|
|
|
|
* @msdn{cc240568}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_control_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* controlFlags (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* remoteDetachFlag (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* controlInterest (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* detachInterest (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write control capability set.\n
|
|
|
|
* @msdn{cc240568}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_control_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 0); /* controlFlags (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* remoteDetachFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 2); /* controlInterest (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 2); /* detachInterest (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_CONTROL);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read window activation capability set.\n
|
|
|
|
* @msdn{cc240569}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_window_activation_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* helpKeyFlag (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* helpKeyIndexFlag (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* helpExtendedKeyFlag (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* windowManagerKeyFlag (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write window activation capability set.\n
|
|
|
|
* @msdn{cc240569}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_window_activation_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 0); /* helpKeyFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* helpKeyIndexFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* helpExtendedKeyFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* windowManagerKeyFlag (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_ACTIVATION);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read pointer capability set.\n
|
|
|
|
* @msdn{cc240562}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_pointer_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 colorPointerFlag;
|
|
|
|
UINT16 colorPointerCacheSize;
|
|
|
|
UINT16 pointerCacheSize;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, colorPointerFlag); /* colorPointerFlag (2 bytes) */
|
|
|
|
stream_read_UINT16(s, colorPointerCacheSize); /* colorPointerCacheSize (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointerCacheSize); /* pointerCacheSize (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (colorPointerFlag == FALSE)
|
|
|
|
settings->color_pointer = FALSE;
|
2011-12-16 02:29:53 +04:00
|
|
|
|
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
|
|
|
settings->pointer_cache_size = pointerCacheSize;
|
|
|
|
}
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write pointer capability set.\n
|
|
|
|
* @msdn{cc240562}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_pointer_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 colorPointerFlag;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2011-12-20 21:09:53 +04:00
|
|
|
colorPointerFlag = (settings->color_pointer) ? 1 : 0;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, colorPointerFlag); /* colorPointerFlag (2 bytes) */
|
|
|
|
stream_write_UINT16(s, settings->pointer_cache_size); /* colorPointerCacheSize (2 bytes) */
|
2011-09-30 06:31:13 +04:00
|
|
|
|
|
|
|
if (settings->large_pointer)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, settings->pointer_cache_size); /* pointerCacheSize (2 bytes) */
|
2011-09-30 06:31:13 +04:00
|
|
|
}
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_POINTER);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read share capability set.\n
|
|
|
|
* @msdn{cc240570}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_share_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* nodeId (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write share capability set.\n
|
|
|
|
* @msdn{cc240570}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_share_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 nodeId;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2011-12-20 21:09:53 +04:00
|
|
|
nodeId = (settings->server_mode) ? 0x03EA : 0;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, nodeId); /* nodeId (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2Octets (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_SHARE);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read color cache capability set.\n
|
|
|
|
* @msdn{cc241564}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_color_cache_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* colorTableCacheSize (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write color cache capability set.\n
|
|
|
|
* @msdn{cc241564}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_color_cache_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 6); /* colorTableCacheSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2Octets (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_COLOR_CACHE);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read sound capability set.\n
|
|
|
|
* @msdn{cc240552}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_sound_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 soundFlags;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, soundFlags); /* soundFlags (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsA (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->sound_beeps = (soundFlags & SOUND_BEEPS_FLAG) ? TRUE : FALSE;
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write sound capability set.\n
|
|
|
|
* @msdn{cc240552}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_sound_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 soundFlags;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
soundFlags = (settings->sound_beeps) ? SOUND_BEEPS_FLAG : 0;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, soundFlags); /* soundFlags (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsA (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_SOUND);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read input capability set.\n
|
|
|
|
* @msdn{cc240563}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_input_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 inputFlags;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, inputFlags); /* inputFlags (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsA (2 bytes) */
|
2011-08-26 05:35:51 +04:00
|
|
|
|
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
|
|
|
stream_read_uint32(s, settings->kbd_layout); /* keyboardLayout (4 bytes) */
|
|
|
|
stream_read_uint32(s, settings->kbd_type); /* keyboardType (4 bytes) */
|
|
|
|
stream_read_uint32(s, settings->kbd_subtype); /* keyboardSubType (4 bytes) */
|
|
|
|
stream_read_uint32(s, settings->kbd_fn_keys); /* keyboardFunctionKeys (4 bytes) */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stream_seek_uint32(s); /* keyboardLayout (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* keyboardType (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* keyboardSubType (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* keyboardFunctionKeys (4 bytes) */
|
|
|
|
}
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek(s, 64); /* imeFileName (64 bytes) */
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (settings->server_mode != TRUE)
|
2011-07-21 06:05:12 +04:00
|
|
|
{
|
2011-12-20 21:09:53 +04:00
|
|
|
if (inputFlags & INPUT_FLAG_FASTPATH_INPUT)
|
|
|
|
{
|
|
|
|
/* advertised by RDP 5.0 and 5.1 servers */
|
|
|
|
}
|
|
|
|
else if (inputFlags & INPUT_FLAG_FASTPATH_INPUT2)
|
|
|
|
{
|
|
|
|
/* avertised by RDP 5.2, 6.0, 6.1 and 7.0 servers */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* server does not support fastpath input */
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->fastpath_input = FALSE;
|
2011-12-20 21:09:53 +04:00
|
|
|
}
|
2011-07-21 06:05:12 +04:00
|
|
|
}
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write input capability set.\n
|
|
|
|
* @msdn{cc240563}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_input_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 inputFlags;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
inputFlags = INPUT_FLAG_SCANCODES | INPUT_FLAG_MOUSEX | INPUT_FLAG_UNICODE;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-08-13 09:35:58 +04:00
|
|
|
if (settings->fastpath_input)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
|
|
|
inputFlags |= INPUT_FLAG_FASTPATH_INPUT;
|
|
|
|
inputFlags |= INPUT_FLAG_FASTPATH_INPUT2;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, inputFlags); /* inputFlags (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2OctetsA (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_write_uint32(s, settings->kbd_layout); /* keyboardLayout (4 bytes) */
|
|
|
|
stream_write_uint32(s, settings->kbd_type); /* keyboardType (4 bytes) */
|
|
|
|
stream_write_uint32(s, settings->kbd_subtype); /* keyboardSubType (4 bytes) */
|
|
|
|
stream_write_uint32(s, settings->kbd_fn_keys); /* keyboardFunctionKeys (4 bytes) */
|
|
|
|
stream_write_zero(s, 64); /* imeFileName (64 bytes) */
|
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_INPUT);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read font capability set.\n
|
|
|
|
* @msdn{cc240571}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_font_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2011-11-11 10:24:55 +04:00
|
|
|
if (length > 4)
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* fontSupportFlags (2 bytes) */
|
2011-11-11 10:24:55 +04:00
|
|
|
|
|
|
|
if (length > 6)
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write font capability set.\n
|
|
|
|
* @msdn{cc240571}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_font_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, FONTSUPPORT_FONTLIST); /* fontSupportFlags (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2Octets (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_FONT);
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read brush capability set.\n
|
|
|
|
* @msdn{cc240564}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_brush_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek_uint32(s); /* brushSupportLevel (4 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write brush capability set.\n
|
|
|
|
* @msdn{cc240564}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_brush_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
stream_write_uint32(s, BRUSH_COLOR_FULL); /* brushSupportLevel (4 bytes) */
|
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_BRUSH);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read cache definition (glyph).\n
|
|
|
|
* @msdn{cc240566}
|
|
|
|
* @param s stream
|
|
|
|
*/
|
2011-08-21 22:16:53 +04:00
|
|
|
void rdp_read_cache_definition(STREAM* s, GLYPH_CACHE_DEFINITION* cache_definition)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, cache_definition->cacheEntries); /* cacheEntries (2 bytes) */
|
|
|
|
stream_read_UINT16(s, cache_definition->cacheMaximumCellSize); /* cacheMaximumCellSize (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
}
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
/**
|
|
|
|
* Write cache definition (glyph).\n
|
|
|
|
* @msdn{cc240566}
|
|
|
|
* @param s stream
|
|
|
|
*/
|
2011-08-21 22:16:53 +04:00
|
|
|
void rdp_write_cache_definition(STREAM* s, GLYPH_CACHE_DEFINITION* cache_definition)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, cache_definition->cacheEntries); /* cacheEntries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, cache_definition->cacheMaximumCellSize); /* cacheMaximumCellSize (2 bytes) */
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read glyph cache capability set.\n
|
|
|
|
* @msdn{cc240565}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_glyph_cache_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 glyphSupportLevel;
|
2012-01-05 05:20:58 +04:00
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek(s, 40); /* glyphCache (40 bytes) */
|
|
|
|
stream_seek_uint32(s); /* fragCache (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, glyphSupportLevel); /* glyphSupportLevel (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
2012-01-05 05:20:58 +04:00
|
|
|
|
|
|
|
settings->glyphSupportLevel = glyphSupportLevel;
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write glyph cache capability set.\n
|
|
|
|
* @msdn{cc240565}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_glyph_cache_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
/* glyphCache (40 bytes) */
|
2012-01-14 23:42:36 +04:00
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[0])); /* glyphCache0 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[1])); /* glyphCache1 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[2])); /* glyphCache2 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[3])); /* glyphCache3 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[4])); /* glyphCache4 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[5])); /* glyphCache5 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[6])); /* glyphCache6 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[7])); /* glyphCache7 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[8])); /* glyphCache8 (4 bytes) */
|
|
|
|
rdp_write_cache_definition(s, &(settings->glyphCache[9])); /* glyphCache9 (4 bytes) */
|
|
|
|
|
|
|
|
rdp_write_cache_definition(s, settings->fragCache); /* fragCache (4 bytes) */
|
2011-08-21 22:16:53 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, settings->glyphSupportLevel); /* glyphSupportLevel (2 bytes) */
|
2011-08-21 22:16:53 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 0); /* pad2Octets (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_GLYPH_CACHE);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read offscreen bitmap cache capability set.\n
|
|
|
|
* @msdn{cc240550}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_offscreen_bitmap_cache_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
uint32 offscreenSupportLevel;
|
|
|
|
|
|
|
|
stream_read_uint32(s, offscreenSupportLevel); /* offscreenSupportLevel (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, settings->offscreen_bitmap_cache_size); /* offscreenCacheSize (2 bytes) */
|
|
|
|
stream_read_UINT16(s, settings->offscreen_bitmap_cache_entries); /* offscreenCacheEntries (2 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (offscreenSupportLevel & TRUE)
|
|
|
|
settings->offscreen_bitmap_cache = TRUE;
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write offscreen bitmap cache capability set.\n
|
|
|
|
* @msdn{cc240550}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_offscreen_bitmap_cache_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2012-10-09 10:31:28 +04:00
|
|
|
uint32 offscreenSupportLevel = FALSE;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2011-07-25 20:25:28 +04:00
|
|
|
if (settings->offscreen_bitmap_cache)
|
2012-10-09 10:31:28 +04:00
|
|
|
offscreenSupportLevel = TRUE;
|
2011-07-25 20:25:28 +04:00
|
|
|
|
2011-12-13 04:20:52 +04:00
|
|
|
stream_write_uint32(s, offscreenSupportLevel); /* offscreenSupportLevel (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, settings->offscreen_bitmap_cache_size); /* offscreenCacheSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, settings->offscreen_bitmap_cache_entries); /* offscreenCacheEntries (2 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_OFFSCREEN_CACHE);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read bitmap cache host support capability set.\n
|
|
|
|
* @msdn{cc240557}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_bitmap_cache_host_support_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE cacheVersion;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, cacheVersion); /* cacheVersion (1 byte) */
|
|
|
|
stream_seek_BYTE(s); /* pad1 (1 byte) */
|
|
|
|
stream_seek_UINT16(s); /* pad2 (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
|
|
|
|
if (cacheVersion & BITMAP_CACHE_V2)
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->persistent_bitmap_cache = TRUE;
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write bitmap cache host support capability set.\n
|
|
|
|
* @msdn{cc240557}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_bitmap_cache_host_support_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, BITMAP_CACHE_V2); /* cacheVersion (1 byte) */
|
|
|
|
stream_write_BYTE(s, 0); /* pad1 (1 byte) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2 (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_BITMAP_CACHE_HOST_SUPPORT);
|
|
|
|
}
|
|
|
|
|
2011-09-12 07:35:33 +04:00
|
|
|
void rdp_write_bitmap_cache_cell_info(STREAM* s, BITMAP_CACHE_V2_CELL_INFO* cellInfo)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
|
|
|
uint32 info;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* numEntries is in the first 31 bits, while the last bit (k)
|
|
|
|
* is used to indicate a persistent bitmap cache.
|
|
|
|
*/
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-12-14 00:56:06 +04:00
|
|
|
info = (cellInfo->numEntries | (cellInfo->persistent << 31));
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_write_uint32(s, info);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read bitmap cache v2 capability set.\n
|
|
|
|
* @msdn{cc240560}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_bitmap_cache_v2_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* cacheFlags (2 bytes) */
|
|
|
|
stream_seek_BYTE(s); /* pad2 (1 byte) */
|
|
|
|
stream_seek_BYTE(s); /* numCellCaches (1 byte) */
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek(s, 4); /* bitmapCache0CellInfo (4 bytes) */
|
|
|
|
stream_seek(s, 4); /* bitmapCache1CellInfo (4 bytes) */
|
|
|
|
stream_seek(s, 4); /* bitmapCache2CellInfo (4 bytes) */
|
|
|
|
stream_seek(s, 4); /* bitmapCache3CellInfo (4 bytes) */
|
|
|
|
stream_seek(s, 4); /* bitmapCache4CellInfo (4 bytes) */
|
|
|
|
stream_seek(s, 12); /* pad3 (12 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write bitmap cache v2 capability set.\n
|
|
|
|
* @msdn{cc240560}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_bitmap_cache_v2_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 cacheFlags;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
cacheFlags = ALLOW_CACHE_WAITING_LIST_FLAG;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
if (settings->persistent_bitmap_cache)
|
|
|
|
cacheFlags |= PERSISTENT_KEYS_EXPECTED_FLAG;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, cacheFlags); /* cacheFlags (2 bytes) */
|
|
|
|
stream_write_BYTE(s, 0); /* pad2 (1 byte) */
|
|
|
|
stream_write_BYTE(s, settings->bitmapCacheV2NumCells); /* numCellCaches (1 byte) */
|
2011-09-12 07:35:33 +04:00
|
|
|
rdp_write_bitmap_cache_cell_info(s, &settings->bitmapCacheV2CellInfo[0]); /* bitmapCache0CellInfo (4 bytes) */
|
|
|
|
rdp_write_bitmap_cache_cell_info(s, &settings->bitmapCacheV2CellInfo[1]); /* bitmapCache1CellInfo (4 bytes) */
|
|
|
|
rdp_write_bitmap_cache_cell_info(s, &settings->bitmapCacheV2CellInfo[2]); /* bitmapCache2CellInfo (4 bytes) */
|
|
|
|
rdp_write_bitmap_cache_cell_info(s, &settings->bitmapCacheV2CellInfo[3]); /* bitmapCache3CellInfo (4 bytes) */
|
|
|
|
rdp_write_bitmap_cache_cell_info(s, &settings->bitmapCacheV2CellInfo[4]); /* bitmapCache4CellInfo (4 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_write_zero(s, 12); /* pad3 (12 bytes) */
|
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_BITMAP_CACHE_V2);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read virtual channel capability set.\n
|
|
|
|
* @msdn{cc240551}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_virtual_channel_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-09-14 22:47:04 +04:00
|
|
|
uint32 flags;
|
2011-09-06 14:23:09 +04:00
|
|
|
uint32 VCChunkSize;
|
|
|
|
|
2011-09-14 22:47:04 +04:00
|
|
|
stream_read_uint32(s, flags); /* flags (4 bytes) */
|
2011-09-06 14:23:09 +04:00
|
|
|
|
2011-11-11 10:24:55 +04:00
|
|
|
if (length > 8)
|
|
|
|
stream_read_uint32(s, VCChunkSize); /* VCChunkSize (4 bytes) */
|
|
|
|
else
|
|
|
|
VCChunkSize = 1600;
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (settings->server_mode != TRUE)
|
2011-09-06 14:23:09 +04:00
|
|
|
settings->vc_chunk_size = VCChunkSize;
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write virtual channel capability set.\n
|
|
|
|
* @msdn{cc240551}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_virtual_channel_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-12-20 21:09:53 +04:00
|
|
|
uint32 flags;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2012-06-26 15:21:19 +04:00
|
|
|
flags = VCCAPS_NO_COMPR;
|
2011-12-20 21:09:53 +04:00
|
|
|
|
|
|
|
stream_write_uint32(s, flags); /* flags (4 bytes) */
|
2011-08-21 06:57:38 +04:00
|
|
|
stream_write_uint32(s, settings->vc_chunk_size); /* VCChunkSize (4 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_VIRTUAL_CHANNEL);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read drawn nine grid cache capability set.\n
|
|
|
|
* @msdn{cc241565}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_draw_nine_grid_cache_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
uint32 drawNineGridSupportLevel;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_read_uint32(s, drawNineGridSupportLevel); /* drawNineGridSupportLevel (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, settings->draw_nine_grid_cache_size); /* drawNineGridCacheSize (2 bytes) */
|
|
|
|
stream_read_UINT16(s, settings->draw_nine_grid_cache_entries); /* drawNineGridCacheEntries (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
|
|
|
|
if ((drawNineGridSupportLevel & DRAW_NINEGRID_SUPPORTED) ||
|
|
|
|
(drawNineGridSupportLevel & DRAW_NINEGRID_SUPPORTED_V2))
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->draw_nine_grid = TRUE;
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write drawn nine grid cache capability set.\n
|
|
|
|
* @msdn{cc241565}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_draw_nine_grid_cache_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
uint32 drawNineGridSupportLevel;
|
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2012-02-13 05:29:33 +04:00
|
|
|
drawNineGridSupportLevel = (settings->draw_nine_grid) ? DRAW_NINEGRID_SUPPORTED_V2 : DRAW_NINEGRID_NO_SUPPORT;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2012-01-11 06:32:08 +04:00
|
|
|
stream_write_uint32(s, drawNineGridSupportLevel); /* drawNineGridSupportLevel (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, settings->draw_nine_grid_cache_size); /* drawNineGridCacheSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, settings->draw_nine_grid_cache_entries); /* drawNineGridCacheEntries (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_DRAW_NINE_GRID_CACHE);
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_write_gdiplus_cache_entries(STREAM* s, UINT16 gce, UINT16 bce, UINT16 pce, UINT16 ice, UINT16 ace)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, gce); /* gdipGraphicsCacheEntries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, bce); /* gdipBrushCacheEntries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, pce); /* gdipPenCacheEntries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, ice); /* gdipImageCacheEntries (2 bytes) */
|
|
|
|
stream_write_UINT16(s, ace); /* gdipImageAttributesCacheEntries (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_write_gdiplus_cache_chunk_size(STREAM* s, UINT16 gccs, UINT16 obccs, UINT16 opccs, UINT16 oiaccs)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, gccs); /* gdipGraphicsCacheChunkSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, obccs); /* gdipObjectBrushCacheChunkSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, opccs); /* gdipObjectPenCacheChunkSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, oiaccs); /* gdipObjectImageAttributesCacheChunkSize (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
}
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_write_gdiplus_image_cache_properties(STREAM* s, UINT16 oiccs, UINT16 oicts, UINT16 oicms)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, oiccs); /* gdipObjectImageCacheChunkSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, oicts); /* gdipObjectImageCacheTotalSize (2 bytes) */
|
|
|
|
stream_write_UINT16(s, oicms); /* gdipObjectImageCacheMaxSize (2 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read GDI+ cache capability set.\n
|
|
|
|
* @msdn{cc241566}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_draw_gdiplus_cache_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
uint32 drawGDIPlusSupportLevel;
|
|
|
|
uint32 drawGdiplusCacheLevel;
|
|
|
|
|
|
|
|
stream_read_uint32(s, drawGDIPlusSupportLevel); /* drawGDIPlusSupportLevel (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* GdipVersion (4 bytes) */
|
|
|
|
stream_read_uint32(s, drawGdiplusCacheLevel); /* drawGdiplusCacheLevel (4 bytes) */
|
|
|
|
stream_seek(s, 10); /* GdipCacheEntries (10 bytes) */
|
|
|
|
stream_seek(s, 8); /* GdipCacheChunkSize (8 bytes) */
|
|
|
|
stream_seek(s, 6); /* GdipImageCacheProperties (6 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
if (drawGDIPlusSupportLevel & DRAW_GDIPLUS_SUPPORTED)
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->draw_gdi_plus = TRUE;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
|
|
|
if (drawGdiplusCacheLevel & DRAW_GDIPLUS_CACHE_LEVEL_ONE)
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->draw_gdi_plus_cache = TRUE;
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write GDI+ cache capability set.\n
|
|
|
|
* @msdn{cc241566}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
void rdp_write_draw_gdiplus_cache_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
uint32 drawGDIPlusSupportLevel;
|
|
|
|
uint32 drawGdiplusCacheLevel;
|
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
drawGDIPlusSupportLevel = (settings->draw_gdi_plus) ? DRAW_GDIPLUS_SUPPORTED : DRAW_GDIPLUS_DEFAULT;
|
|
|
|
drawGdiplusCacheLevel = (settings->draw_gdi_plus) ? DRAW_GDIPLUS_CACHE_LEVEL_ONE : DRAW_GDIPLUS_CACHE_LEVEL_DEFAULT;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_write_uint32(s, drawGDIPlusSupportLevel); /* drawGDIPlusSupportLevel (4 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* GdipVersion (4 bytes) */
|
|
|
|
stream_write_uint32(s, drawGdiplusCacheLevel); /* drawGdiplusCacheLevel (4 bytes) */
|
|
|
|
rdp_write_gdiplus_cache_entries(s, 10, 5, 5, 10, 2); /* GdipCacheEntries (10 bytes) */
|
|
|
|
rdp_write_gdiplus_cache_chunk_size(s, 512, 2048, 1024, 64); /* GdipCacheChunkSize (8 bytes) */
|
|
|
|
rdp_write_gdiplus_image_cache_properties(s, 4096, 256, 128); /* GdipImageCacheProperties (6 bytes) */
|
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_DRAW_GDI_PLUS);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read remote programs capability set.\n
|
|
|
|
* @msdn{cc242518}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_remote_programs_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
uint32 railSupportLevel;
|
|
|
|
|
|
|
|
stream_read_uint32(s, railSupportLevel); /* railSupportLevel (4 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
if ((railSupportLevel & RAIL_LEVEL_SUPPORTED) == 0)
|
2011-07-21 06:05:12 +04:00
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
if (settings->remote_app == TRUE)
|
2011-07-21 06:05:12 +04:00
|
|
|
{
|
|
|
|
/* RemoteApp Failure! */
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->remote_app = FALSE;
|
2011-07-21 06:05:12 +04:00
|
|
|
}
|
|
|
|
}
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write remote programs capability set.\n
|
|
|
|
* @msdn{cc242518}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_remote_programs_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-08-15 01:05:34 +04:00
|
|
|
uint32 railSupportLevel;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2011-08-17 10:14:02 +04:00
|
|
|
railSupportLevel = RAIL_LEVEL_SUPPORTED;
|
|
|
|
|
|
|
|
if (settings->rail_langbar_supported)
|
|
|
|
railSupportLevel |= RAIL_LEVEL_DOCKED_LANGBAR_SUPPORTED;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2011-08-15 01:05:34 +04:00
|
|
|
stream_write_uint32(s, railSupportLevel); /* railSupportLevel (4 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_RAIL);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read window list capability set.\n
|
|
|
|
* @msdn{cc242564}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_window_list_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_seek_uint32(s); /* wndSupportLevel (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_BYTE(s); /* numIconCaches (1 byte) */
|
|
|
|
stream_seek_UINT16(s); /* numIconCacheEntries (2 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write window list capability set.\n
|
|
|
|
* @msdn{cc242564}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_window_list_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
uint32 wndSupportLevel;
|
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-08-15 01:05:34 +04:00
|
|
|
wndSupportLevel = WINDOW_LEVEL_SUPPORTED_EX;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
stream_write_uint32(s, wndSupportLevel); /* wndSupportLevel (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, settings->num_icon_caches); /* numIconCaches (1 byte) */
|
|
|
|
stream_write_UINT16(s, settings->num_icon_cache_entries); /* numIconCacheEntries (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_WINDOW);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read desktop composition capability set.\n
|
|
|
|
* @msdn{cc240855}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_desktop_composition_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* compDeskSupportLevel (2 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write desktop composition capability set.\n
|
|
|
|
* @msdn{cc240855}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_desktop_composition_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 compDeskSupportLevel;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
compDeskSupportLevel = (settings->desktop_composition) ? COMPDESK_SUPPORTED : COMPDESK_NOT_SUPPORTED;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, compDeskSupportLevel); /* compDeskSupportLevel (2 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_COMP_DESK);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read multifragment update capability set.\n
|
|
|
|
* @msdn{cc240649}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_multifragment_update_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_read_uint32(s, settings->multifrag_max_request_size); /* MaxRequestSize (4 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write multifragment update capability set.\n
|
|
|
|
* @msdn{cc240649}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_multifragment_update_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
stream_write_uint32(s, settings->multifrag_max_request_size); /* MaxRequestSize (4 bytes) */
|
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_MULTI_FRAGMENT_UPDATE);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read large pointer capability set.\n
|
|
|
|
* @msdn{cc240650}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_large_pointer_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* largePointerSupportFlags (2 bytes) */
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write large pointer capability set.\n
|
|
|
|
* @msdn{cc240650}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_large_pointer_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
UINT16 largePointerSupportFlags;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
largePointerSupportFlags = (settings->large_pointer) ? LARGE_POINTER_FLAG_96x96 : 0;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, largePointerSupportFlags); /* largePointerSupportFlags (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_LARGE_POINTER);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read surface commands capability set.\n
|
|
|
|
* @msdn{dd871563}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_surface_commands_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek_uint32(s); /* cmdFlags (4 bytes) */
|
|
|
|
stream_seek_uint32(s); /* reserved (4 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->surface_commands = TRUE;
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Write surface commands capability set.\n
|
|
|
|
* @msdn{dd871563}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
void rdp_write_surface_commands_capability_set(STREAM* s, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2011-07-21 09:56:48 +04:00
|
|
|
uint32 cmdFlags;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
|
|
|
cmdFlags = SURFCMDS_FRAME_MARKER |
|
|
|
|
SURFCMDS_SET_SURFACE_BITS |
|
|
|
|
SURFCMDS_STREAM_SURFACE_BITS;
|
|
|
|
|
|
|
|
stream_write_uint32(s, cmdFlags); /* cmdFlags (4 bytes) */
|
|
|
|
stream_write_uint32(s, 0); /* reserved (4 bytes) */
|
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_SURFACE_COMMANDS);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-21 06:05:12 +04:00
|
|
|
* Read bitmap codecs capability set.\n
|
|
|
|
* @msdn{dd891377}
|
2011-07-20 09:31:04 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_bitmap_codecs_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-20 09:31:04 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE bitmapCodecCount;
|
|
|
|
UINT16 codecPropertiesLength;
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, bitmapCodecCount); /* bitmapCodecCount (1 byte) */
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2011-08-24 07:27:22 +04:00
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->rfx_codec = FALSE;
|
|
|
|
settings->ns_codec = FALSE;
|
|
|
|
settings->jpeg_codec = FALSE;
|
2011-08-24 07:27:22 +04:00
|
|
|
}
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
while (bitmapCodecCount > 0)
|
|
|
|
{
|
2011-08-24 07:27:22 +04:00
|
|
|
if (settings->server_mode && strncmp((char*)stream_get_tail(s), CODEC_GUID_REMOTEFX, 16) == 0)
|
|
|
|
{
|
|
|
|
stream_seek(s, 16); /* codecGUID (16 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, settings->rfx_codec_id);
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->rfx_codec = TRUE;
|
2011-08-24 07:27:22 +04:00
|
|
|
}
|
2012-09-16 01:51:05 +04:00
|
|
|
else if (settings->server_mode && strncmp((char*)stream_get_tail(s), CODEC_GUID_NSCODEC, 16) == 0)
|
2011-10-02 23:06:41 +04:00
|
|
|
{
|
|
|
|
stream_seek(s, 16); /*codec GUID (16 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, settings->ns_codec_id);
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->ns_codec = TRUE;
|
2011-10-02 23:06:41 +04:00
|
|
|
}
|
2011-08-24 07:27:22 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
stream_seek(s, 16); /* codecGUID (16 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_BYTE(s); /* codecID (1 byte) */
|
2011-08-24 07:27:22 +04:00
|
|
|
}
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, codecPropertiesLength); /* codecPropertiesLength (2 bytes) */
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_seek(s, codecPropertiesLength); /* codecProperties */
|
|
|
|
|
|
|
|
bitmapCodecCount--;
|
|
|
|
}
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
2011-08-24 07:27:22 +04:00
|
|
|
/**
|
|
|
|
* Write RemoteFX Client Capability Container.\n
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
void rdp_write_rfx_client_capability_container(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2011-12-04 02:24:18 +04:00
|
|
|
uint32 captureFlags;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE codecMode;
|
2011-08-28 01:11:20 +04:00
|
|
|
|
2012-09-04 01:08:46 +04:00
|
|
|
captureFlags = settings->rfx_codec_only ? CARDP_CAPS_CAPTURE_NON_CAC : 0;
|
2011-11-25 16:09:16 +04:00
|
|
|
codecMode = settings->rfx_codec_mode;
|
2011-08-28 01:11:20 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 49); /* codecPropertiesLength */
|
2011-08-24 07:27:22 +04:00
|
|
|
|
|
|
|
/* TS_RFX_CLNT_CAPS_CONTAINER */
|
|
|
|
stream_write_uint32(s, 49); /* length */
|
2011-11-25 15:23:44 +04:00
|
|
|
stream_write_uint32(s, captureFlags); /* captureFlags */
|
2011-08-24 07:27:22 +04:00
|
|
|
stream_write_uint32(s, 37); /* capsLength */
|
|
|
|
|
|
|
|
/* TS_RFX_CAPS */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, CBY_CAPS); /* blockType */
|
2011-08-24 07:27:22 +04:00
|
|
|
stream_write_uint32(s, 8); /* blockLen */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 1); /* numCapsets */
|
2011-08-24 07:27:22 +04:00
|
|
|
|
|
|
|
/* TS_RFX_CAPSET */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, CBY_CAPSET); /* blockType */
|
2011-08-24 07:27:22 +04:00
|
|
|
stream_write_uint32(s, 29); /* blockLen */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, 0x01); /* codecId (MUST be set to 0x01) */
|
|
|
|
stream_write_UINT16(s, CLY_CAPSET); /* capsetType */
|
|
|
|
stream_write_UINT16(s, 2); /* numIcaps */
|
|
|
|
stream_write_UINT16(s, 8); /* icapLen */
|
2011-08-24 07:27:22 +04:00
|
|
|
|
|
|
|
/* TS_RFX_ICAP (RLGR1) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, CLW_VERSION_1_0); /* version */
|
|
|
|
stream_write_UINT16(s, CT_TILE_64x64); /* tileSize */
|
|
|
|
stream_write_BYTE(s, codecMode); /* flags */
|
|
|
|
stream_write_BYTE(s, CLW_COL_CONV_ICT); /* colConvBits */
|
|
|
|
stream_write_BYTE(s, CLW_XFORM_DWT_53_A); /* transformBits */
|
|
|
|
stream_write_BYTE(s, CLW_ENTROPY_RLGR1); /* entropyBits */
|
2011-08-24 07:27:22 +04:00
|
|
|
|
|
|
|
/* TS_RFX_ICAP (RLGR3) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, CLW_VERSION_1_0); /* version */
|
|
|
|
stream_write_UINT16(s, CT_TILE_64x64); /* tileSize */
|
|
|
|
stream_write_BYTE(s, codecMode); /* flags */
|
|
|
|
stream_write_BYTE(s, CLW_COL_CONV_ICT); /* colConvBits */
|
|
|
|
stream_write_BYTE(s, CLW_XFORM_DWT_53_A); /* transformBits */
|
|
|
|
stream_write_BYTE(s, CLW_ENTROPY_RLGR3); /* entropyBits */
|
2011-08-24 07:27:22 +04:00
|
|
|
}
|
|
|
|
|
2011-10-02 23:06:41 +04:00
|
|
|
/**
|
|
|
|
* Write NSCODEC Client Capability Container.\n
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
void rdp_write_nsc_client_capability_container(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 3); /* codecPropertiesLength */
|
2011-10-02 23:06:41 +04:00
|
|
|
|
|
|
|
/* TS_NSCODEC_CAPABILITYSET */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, 1); /* fAllowDynamicFidelity */
|
|
|
|
stream_write_BYTE(s, 1); /* fAllowSubsampling */
|
|
|
|
stream_write_BYTE(s, 3); /* colorLossLevel */
|
2011-10-02 23:06:41 +04:00
|
|
|
}
|
|
|
|
|
2012-07-24 23:05:22 +04:00
|
|
|
void rdp_write_jpeg_client_capability_container(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 1); /* codecPropertiesLength */
|
|
|
|
stream_write_BYTE(s, settings->jpeg_quality);
|
2012-07-24 23:05:22 +04:00
|
|
|
}
|
|
|
|
|
2011-08-24 07:27:22 +04:00
|
|
|
/**
|
|
|
|
* Write RemoteFX Server Capability Container.\n
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
void rdp_write_rfx_server_capability_container(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 4); /* codecPropertiesLength */
|
2011-08-24 07:27:22 +04:00
|
|
|
stream_write_uint32(s, 0); /* reserved */
|
|
|
|
}
|
|
|
|
|
2012-07-24 23:05:22 +04:00
|
|
|
void rdp_write_jpeg_server_capability_container(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 1); /* codecPropertiesLength */
|
|
|
|
stream_write_BYTE(s, 75);
|
2012-07-24 23:05:22 +04:00
|
|
|
}
|
|
|
|
|
2011-10-02 23:06:41 +04:00
|
|
|
/**
|
|
|
|
* Write NSCODEC Server Capability Container.\n
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
void rdp_write_nsc_server_capability_container(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 4); /* codecPropertiesLength */
|
2011-10-02 23:06:41 +04:00
|
|
|
stream_write_uint32(s, 0); /* reserved */
|
|
|
|
}
|
|
|
|
|
2011-07-20 09:31:04 +04:00
|
|
|
/**
|
|
|
|
* Write bitmap codecs capability set.\n
|
|
|
|
* @msdn{dd891377}
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
|
|
|
void rdp_write_bitmap_codecs_capability_set(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
|
|
|
BYTE bitmapCodecCount;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2011-08-09 19:45:55 +04:00
|
|
|
bitmapCodecCount = 0;
|
2012-09-16 01:51:05 +04:00
|
|
|
|
2011-08-24 07:27:22 +04:00
|
|
|
if (settings->rfx_codec)
|
2011-08-09 19:45:55 +04:00
|
|
|
bitmapCodecCount++;
|
2011-10-02 23:06:41 +04:00
|
|
|
if (settings->ns_codec)
|
|
|
|
bitmapCodecCount++;
|
2012-07-24 23:05:22 +04:00
|
|
|
if (settings->jpeg_codec)
|
|
|
|
bitmapCodecCount++;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, bitmapCodecCount);
|
2011-08-09 19:45:55 +04:00
|
|
|
|
2011-08-24 07:27:22 +04:00
|
|
|
if (settings->rfx_codec)
|
2011-08-09 19:45:55 +04:00
|
|
|
{
|
2011-08-24 07:27:22 +04:00
|
|
|
stream_write(s, CODEC_GUID_REMOTEFX, 16); /* codecGUID */
|
|
|
|
|
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, 0); /* codecID is defined by the client */
|
2011-08-24 07:27:22 +04:00
|
|
|
rdp_write_rfx_server_capability_container(s, settings);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, CODEC_ID_REMOTEFX); /* codecID */
|
2011-08-24 07:27:22 +04:00
|
|
|
rdp_write_rfx_client_capability_container(s, settings);
|
|
|
|
}
|
2011-08-09 19:45:55 +04:00
|
|
|
}
|
2011-10-02 23:06:41 +04:00
|
|
|
if (settings->ns_codec)
|
|
|
|
{
|
|
|
|
stream_write(s, CODEC_GUID_NSCODEC, 16);
|
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, 0); /* codecID is defined by the client */
|
2011-10-02 23:06:41 +04:00
|
|
|
rdp_write_nsc_server_capability_container(s, settings);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, CODEC_ID_NSCODEC); /* codecID */
|
2011-10-02 23:06:41 +04:00
|
|
|
rdp_write_nsc_client_capability_container(s, settings);
|
|
|
|
}
|
|
|
|
}
|
2012-07-24 23:05:22 +04:00
|
|
|
if (settings->jpeg_codec)
|
|
|
|
{
|
|
|
|
stream_write(s, CODEC_GUID_JPEG, 16);
|
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, 0); /* codecID is defined by the client */
|
2012-07-24 23:05:22 +04:00
|
|
|
rdp_write_jpeg_server_capability_container(s, settings);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, CODEC_ID_JPEG); /* codecID */
|
2012-07-24 23:05:22 +04:00
|
|
|
rdp_write_jpeg_client_capability_container(s, settings);
|
|
|
|
}
|
|
|
|
}
|
2011-07-21 09:56:48 +04:00
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_BITMAP_CODECS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read frame acknowledge capability set.\n
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_frame_acknowledge_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2011-07-21 09:56:48 +04:00
|
|
|
{
|
2012-05-11 12:35:11 +04:00
|
|
|
if (settings->server_mode)
|
|
|
|
{
|
|
|
|
stream_read_uint32(s, settings->frame_acknowledge); /* (4 bytes) */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stream_seek_uint32(s); /* (4 bytes) */
|
|
|
|
}
|
2011-07-21 09:56:48 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
void rdp_read_bitmap_cache_v3_codec_id_capability_set(STREAM* s, UINT16 length, rdpSettings* settings)
|
2012-07-25 04:50:10 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_BYTE(s); /* (1 byte) */
|
2012-07-25 04:50:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void rdp_write_bitmap_cache_v3_codec_id_capability_set(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2012-07-25 04:50:10 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, settings->v3_codec_id);
|
2012-07-25 04:50:10 +04:00
|
|
|
rdp_capability_set_finish(s, header, 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
/**
|
|
|
|
* Write frame acknowledge capability set.\n
|
|
|
|
* @param s stream
|
|
|
|
* @param settings settings
|
|
|
|
*/
|
2011-07-20 09:31:04 +04:00
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
void rdp_write_frame_acknowledge_capability_set(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* header;
|
2012-08-15 02:39:07 +04:00
|
|
|
uint32 frame_acknowledge;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
header = rdp_capability_set_start(s);
|
|
|
|
|
2012-08-15 02:39:07 +04:00
|
|
|
frame_acknowledge = settings->frame_acknowledge;
|
|
|
|
stream_write_uint32(s, frame_acknowledge); /* (4 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
rdp_capability_set_finish(s, header, CAPSET_TYPE_FRAME_ACKNOWLEDGE);
|
2011-07-20 09:31:04 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
BOOL rdp_read_capability_sets(STREAM* s, rdpSettings* settings, UINT16 numberCapabilities)
|
2011-07-20 00:30:05 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 type;
|
|
|
|
UINT16 length;
|
|
|
|
BYTE *bm, *em;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
|
|
|
while (numberCapabilities > 0)
|
|
|
|
{
|
2011-07-21 06:05:12 +04:00
|
|
|
stream_get_mark(s, bm);
|
|
|
|
|
2011-07-20 00:30:05 +04:00
|
|
|
rdp_read_capability_set_header(s, &length, &type);
|
2011-08-06 00:56:40 +04:00
|
|
|
//printf("%s Capability Set (0x%02X), length:%d\n", CAPSET_TYPE_STRINGS[type], type, length);
|
2012-10-09 10:31:28 +04:00
|
|
|
settings->received_caps[type] = TRUE;
|
2011-07-21 06:05:12 +04:00
|
|
|
em = bm + length;
|
2011-07-20 00:30:05 +04:00
|
|
|
|
2011-08-21 11:52:44 +04:00
|
|
|
if (stream_get_left(s) < length - 4)
|
2011-09-15 01:14:50 +04:00
|
|
|
{
|
2011-09-15 08:37:37 +04:00
|
|
|
printf("error processing stream\n");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-15 01:14:50 +04:00
|
|
|
}
|
2011-08-21 11:52:44 +04:00
|
|
|
|
2011-07-20 00:30:05 +04:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case CAPSET_TYPE_GENERAL:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_general_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_BITMAP:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_bitmap_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_ORDER:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_order_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_BITMAP_CACHE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_bitmap_cache_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_CONTROL:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_control_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_ACTIVATION:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_window_activation_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_POINTER:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_pointer_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_SHARE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_share_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_COLOR_CACHE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_color_cache_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_SOUND:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_sound_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_INPUT:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_input_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_FONT:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_font_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_BRUSH:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_brush_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_GLYPH_CACHE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_glyph_cache_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_OFFSCREEN_CACHE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_offscreen_bitmap_cache_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_BITMAP_CACHE_HOST_SUPPORT:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_bitmap_cache_host_support_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_BITMAP_CACHE_V2:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_bitmap_cache_v2_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_VIRTUAL_CHANNEL:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_virtual_channel_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_DRAW_NINE_GRID_CACHE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_draw_nine_grid_cache_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_DRAW_GDI_PLUS:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_draw_gdiplus_cache_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_RAIL:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_remote_programs_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_WINDOW:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_window_list_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_COMP_DESK:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_desktop_composition_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_MULTI_FRAGMENT_UPDATE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_multifragment_update_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_LARGE_POINTER:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_large_pointer_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_SURFACE_COMMANDS:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_surface_commands_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CAPSET_TYPE_BITMAP_CODECS:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_bitmap_codecs_capability_set(s, length, settings);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
case CAPSET_TYPE_FRAME_ACKNOWLEDGE:
|
2011-11-11 10:24:55 +04:00
|
|
|
rdp_read_frame_acknowledge_capability_set(s, length, settings);
|
2011-07-21 09:56:48 +04:00
|
|
|
break;
|
|
|
|
|
2012-07-25 04:50:10 +04:00
|
|
|
case 6:
|
|
|
|
rdp_read_bitmap_cache_v3_codec_id_capability_set(s, length, settings);
|
|
|
|
break;
|
|
|
|
|
2011-07-20 00:30:05 +04:00
|
|
|
default:
|
2011-08-21 11:52:44 +04:00
|
|
|
printf("unknown capability type %d\n", type);
|
2011-07-20 00:30:05 +04:00
|
|
|
break;
|
|
|
|
}
|
2011-07-21 06:05:12 +04:00
|
|
|
|
|
|
|
if (s->p != em)
|
2011-11-11 10:24:55 +04:00
|
|
|
{
|
2011-09-14 22:47:04 +04:00
|
|
|
printf("incorrect offset, type:0x%02X actual:%d expected:%d\n",
|
2011-08-21 11:52:44 +04:00
|
|
|
type, (int) (s->p - bm), (int) (em - bm));
|
2011-11-11 10:24:55 +04:00
|
|
|
}
|
2011-07-21 06:05:12 +04:00
|
|
|
|
|
|
|
stream_set_mark(s, em);
|
|
|
|
numberCapabilities--;
|
2011-07-20 00:30:05 +04:00
|
|
|
}
|
2011-08-21 11:52:44 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-21 11:52:44 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL rdp_recv_demand_active(rdpRdp* rdp, STREAM* s)
|
2011-08-21 11:52:44 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 length;
|
|
|
|
UINT16 channelId;
|
|
|
|
UINT16 pduType;
|
|
|
|
UINT16 pduLength;
|
|
|
|
UINT16 pduSource;
|
|
|
|
UINT16 numberCapabilities;
|
|
|
|
UINT16 lengthSourceDescriptor;
|
|
|
|
UINT16 lengthCombinedCapabilities;
|
|
|
|
UINT16 securityFlags;
|
2011-08-21 11:52:44 +04:00
|
|
|
|
2011-08-22 11:03:58 +04:00
|
|
|
if (!rdp_read_header(rdp, s, &length, &channelId))
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-25 00:54:32 +04:00
|
|
|
|
2012-02-07 01:37:18 +04:00
|
|
|
if (rdp->disconnect)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-02-07 01:37:18 +04:00
|
|
|
|
2011-09-15 01:14:50 +04:00
|
|
|
if (rdp->settings->encryption)
|
|
|
|
{
|
2012-01-24 18:57:06 +04:00
|
|
|
rdp_read_security_header(s, &securityFlags);
|
|
|
|
if (securityFlags & SEC_ENCRYPT)
|
2011-09-15 01:14:50 +04:00
|
|
|
{
|
2012-01-24 18:58:30 +04:00
|
|
|
if (!rdp_decrypt(rdp, s, length - 4, securityFlags))
|
2011-09-15 01:14:50 +04:00
|
|
|
{
|
|
|
|
printf("rdp_decrypt failed\n");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-15 01:14:50 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-22 11:03:58 +04:00
|
|
|
if (channelId != MCS_GLOBAL_CHANNEL_ID)
|
2011-09-15 01:14:50 +04:00
|
|
|
{
|
2012-03-22 17:34:08 +04:00
|
|
|
printf("expected MCS_GLOBAL_CHANNEL_ID %04x, got %04x\n", MCS_GLOBAL_CHANNEL_ID, channelId);
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-15 01:14:50 +04:00
|
|
|
}
|
2011-08-22 11:03:58 +04:00
|
|
|
|
2011-11-19 11:33:49 +04:00
|
|
|
if (!rdp_read_share_control_header(s, &pduLength, &pduType, &pduSource))
|
2011-09-15 01:14:50 +04:00
|
|
|
{
|
|
|
|
printf("rdp_read_share_control_header failed\n");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-15 01:14:50 +04:00
|
|
|
}
|
2011-08-25 00:54:32 +04:00
|
|
|
|
2011-11-19 11:33:49 +04:00
|
|
|
rdp->settings->pdu_source = pduSource;
|
|
|
|
|
2011-08-22 11:03:58 +04:00
|
|
|
if (pduType != PDU_TYPE_DEMAND_ACTIVE)
|
2011-09-15 01:14:50 +04:00
|
|
|
{
|
2012-03-22 17:34:08 +04:00
|
|
|
printf("expected PDU_TYPE_DEMAND_ACTIVE %04x, got %04x\n", PDU_TYPE_DEMAND_ACTIVE, pduType);
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-15 01:14:50 +04:00
|
|
|
}
|
2011-08-22 11:03:58 +04:00
|
|
|
|
|
|
|
stream_read_uint32(s, rdp->settings->share_id); /* shareId (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, lengthSourceDescriptor); /* lengthSourceDescriptor (2 bytes) */
|
|
|
|
stream_read_UINT16(s, lengthCombinedCapabilities); /* lengthCombinedCapabilities (2 bytes) */
|
2011-08-21 11:52:44 +04:00
|
|
|
stream_seek(s, lengthSourceDescriptor); /* sourceDescriptor */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, numberCapabilities); /* numberCapabilities (2 bytes) */
|
2011-08-21 11:52:44 +04:00
|
|
|
stream_seek(s, 2); /* pad2Octets (2 bytes) */
|
|
|
|
|
|
|
|
/* capabilitySets */
|
2011-08-22 11:03:58 +04:00
|
|
|
if (!rdp_read_capability_sets(s, rdp->settings, numberCapabilities))
|
2011-09-15 01:14:50 +04:00
|
|
|
{
|
2011-11-08 02:20:00 +04:00
|
|
|
printf("rdp_read_capability_sets failed\n");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-15 01:14:50 +04:00
|
|
|
}
|
2011-08-21 22:16:53 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
rdp->update->secondary->glyph_v2 = (rdp->settings->glyphSupportLevel > GLYPH_SUPPORT_FULL) ? TRUE : FALSE;
|
2011-08-21 22:16:53 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-07-23 00:19:08 +04:00
|
|
|
}
|
|
|
|
|
2011-08-20 19:09:46 +04:00
|
|
|
void rdp_write_demand_active(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE *bm, *em, *lm;
|
|
|
|
UINT16 numberCapabilities;
|
|
|
|
UINT16 lengthCombinedCapabilities;
|
2011-08-20 19:09:46 +04:00
|
|
|
|
|
|
|
stream_write_uint32(s, settings->share_id); /* shareId (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 4); /* lengthSourceDescriptor (2 bytes) */
|
2011-08-20 19:09:46 +04:00
|
|
|
|
|
|
|
stream_get_mark(s, lm);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* lengthCombinedCapabilities (2 bytes) */
|
2011-08-20 19:09:46 +04:00
|
|
|
stream_write(s, "RDP", 4); /* sourceDescriptor */
|
|
|
|
|
|
|
|
stream_get_mark(s, bm);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* numberCapabilities (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2Octets (2 bytes) */
|
2011-08-20 19:09:46 +04:00
|
|
|
|
2012-05-11 12:35:11 +04:00
|
|
|
numberCapabilities = 14;
|
2011-08-20 19:09:46 +04:00
|
|
|
rdp_write_general_capability_set(s, settings);
|
|
|
|
rdp_write_bitmap_capability_set(s, settings);
|
|
|
|
rdp_write_order_capability_set(s, settings);
|
|
|
|
rdp_write_pointer_capability_set(s, settings);
|
|
|
|
rdp_write_input_capability_set(s, settings);
|
|
|
|
rdp_write_virtual_channel_capability_set(s, settings);
|
|
|
|
rdp_write_share_capability_set(s, settings);
|
|
|
|
rdp_write_font_capability_set(s, settings);
|
|
|
|
rdp_write_multifragment_update_capability_set(s, settings);
|
|
|
|
rdp_write_large_pointer_capability_set(s, settings);
|
|
|
|
rdp_write_desktop_composition_capability_set(s, settings);
|
|
|
|
rdp_write_surface_commands_capability_set(s, settings);
|
|
|
|
rdp_write_bitmap_codecs_capability_set(s, settings);
|
2012-05-11 12:35:11 +04:00
|
|
|
rdp_write_frame_acknowledge_capability_set(s, settings);
|
2011-08-20 19:09:46 +04:00
|
|
|
|
2012-02-11 18:09:59 +04:00
|
|
|
if (settings->persistent_bitmap_cache)
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_bitmap_cache_host_support_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
|
2011-08-20 19:09:46 +04:00
|
|
|
stream_get_mark(s, em);
|
|
|
|
|
|
|
|
stream_set_mark(s, lm); /* go back to lengthCombinedCapabilities */
|
|
|
|
lengthCombinedCapabilities = (em - bm);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, lengthCombinedCapabilities); /* lengthCombinedCapabilities (2 bytes) */
|
2011-08-20 19:09:46 +04:00
|
|
|
|
|
|
|
stream_set_mark(s, bm); /* go back to numberCapabilities */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, numberCapabilities); /* numberCapabilities (2 bytes) */
|
2011-08-20 19:09:46 +04:00
|
|
|
|
|
|
|
stream_set_mark(s, em);
|
|
|
|
|
|
|
|
stream_write_uint32(s, 0); /* sessionId */
|
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL rdp_send_demand_active(rdpRdp* rdp)
|
2011-08-20 19:09:46 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
|
|
|
|
s = rdp_pdu_init(rdp);
|
|
|
|
|
|
|
|
rdp->settings->share_id = 0x10000 + rdp->mcs->user_id;
|
|
|
|
|
|
|
|
rdp_write_demand_active(s, rdp->settings);
|
|
|
|
|
|
|
|
rdp_send_pdu(rdp, s, PDU_TYPE_DEMAND_ACTIVE, rdp->mcs->user_id);
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-20 19:09:46 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL rdp_recv_confirm_active(rdpRdp* rdp, STREAM* s)
|
2011-08-21 11:52:44 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 length;
|
|
|
|
UINT16 channelId;
|
|
|
|
UINT16 pduType;
|
|
|
|
UINT16 pduLength;
|
|
|
|
UINT16 pduSource;
|
|
|
|
UINT16 lengthSourceDescriptor;
|
|
|
|
UINT16 lengthCombinedCapabilities;
|
|
|
|
UINT16 numberCapabilities;
|
|
|
|
UINT16 securityFlags;
|
2011-08-21 11:52:44 +04:00
|
|
|
|
|
|
|
if (!rdp_read_header(rdp, s, &length, &channelId))
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2012-01-25 19:30:54 +04:00
|
|
|
|
|
|
|
if (rdp->settings->encryption)
|
|
|
|
{
|
|
|
|
rdp_read_security_header(s, &securityFlags);
|
|
|
|
if (securityFlags & SEC_ENCRYPT)
|
|
|
|
{
|
|
|
|
if (!rdp_decrypt(rdp, s, length - 4, securityFlags))
|
|
|
|
{
|
|
|
|
printf("rdp_decrypt failed\n");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2012-01-25 19:30:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-21 11:52:44 +04:00
|
|
|
if (channelId != MCS_GLOBAL_CHANNEL_ID)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-21 11:52:44 +04:00
|
|
|
|
2011-11-19 11:33:49 +04:00
|
|
|
if (!rdp_read_share_control_header(s, &pduLength, &pduType, &pduSource))
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-11-19 11:33:49 +04:00
|
|
|
|
|
|
|
rdp->settings->pdu_source = pduSource;
|
|
|
|
|
2011-08-21 11:52:44 +04:00
|
|
|
if (pduType != PDU_TYPE_CONFIRM_ACTIVE)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-21 11:52:44 +04:00
|
|
|
|
|
|
|
stream_seek_uint32(s); /* shareId (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* originatorId (2 bytes) */
|
|
|
|
stream_read_UINT16(s, lengthSourceDescriptor); /* lengthSourceDescriptor (2 bytes) */
|
|
|
|
stream_read_UINT16(s, lengthCombinedCapabilities); /* lengthCombinedCapabilities (2 bytes) */
|
2011-08-21 11:52:44 +04:00
|
|
|
stream_seek(s, lengthSourceDescriptor); /* sourceDescriptor */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, numberCapabilities); /* numberCapabilities (2 bytes) */
|
2011-08-21 11:52:44 +04:00
|
|
|
stream_seek(s, 2); /* pad2Octets (2 bytes) */
|
|
|
|
|
|
|
|
if (!rdp_read_capability_sets(s, rdp->settings, numberCapabilities))
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-21 11:52:44 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-21 11:52:44 +04:00
|
|
|
}
|
|
|
|
|
2011-07-21 09:56:48 +04:00
|
|
|
void rdp_write_confirm_active(STREAM* s, rdpSettings* settings)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE *bm, *em, *lm;
|
|
|
|
UINT16 numberCapabilities;
|
|
|
|
UINT16 lengthSourceDescriptor;
|
|
|
|
UINT16 lengthCombinedCapabilities;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
lengthSourceDescriptor = sizeof(SOURCE_DESCRIPTOR);
|
|
|
|
|
|
|
|
stream_write_uint32(s, settings->share_id); /* shareId (4 bytes) */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 0x03EA); /* originatorId (2 bytes) */
|
|
|
|
stream_write_UINT16(s, lengthSourceDescriptor);/* lengthSourceDescriptor (2 bytes) */
|
2011-07-21 21:57:57 +04:00
|
|
|
|
|
|
|
stream_get_mark(s, lm);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* lengthCombinedCapabilities (2 bytes) */
|
2011-07-21 09:56:48 +04:00
|
|
|
stream_write(s, SOURCE_DESCRIPTOR, lengthSourceDescriptor); /* sourceDescriptor */
|
2011-07-21 21:57:57 +04:00
|
|
|
|
|
|
|
stream_get_mark(s, bm);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* numberCapabilities (2 bytes) */
|
|
|
|
stream_write_UINT16(s, 0); /* pad2Octets (2 bytes) */
|
2011-07-21 21:57:57 +04:00
|
|
|
|
2011-07-23 00:19:08 +04:00
|
|
|
/* Capability Sets */
|
2011-12-14 00:56:06 +04:00
|
|
|
numberCapabilities = 15;
|
2011-07-21 21:57:57 +04:00
|
|
|
rdp_write_general_capability_set(s, settings);
|
|
|
|
rdp_write_bitmap_capability_set(s, settings);
|
|
|
|
rdp_write_order_capability_set(s, settings);
|
2011-08-06 00:56:40 +04:00
|
|
|
|
|
|
|
if (settings->rdp_version >= 5)
|
|
|
|
rdp_write_bitmap_cache_v2_capability_set(s, settings);
|
|
|
|
else
|
|
|
|
rdp_write_bitmap_cache_capability_set(s, settings);
|
|
|
|
|
2011-07-21 21:57:57 +04:00
|
|
|
rdp_write_pointer_capability_set(s, settings);
|
|
|
|
rdp_write_input_capability_set(s, settings);
|
|
|
|
rdp_write_brush_capability_set(s, settings);
|
|
|
|
rdp_write_glyph_cache_capability_set(s, settings);
|
|
|
|
rdp_write_virtual_channel_capability_set(s, settings);
|
|
|
|
rdp_write_sound_capability_set(s, settings);
|
2011-07-23 00:19:08 +04:00
|
|
|
rdp_write_share_capability_set(s, settings);
|
2011-12-14 00:56:06 +04:00
|
|
|
rdp_write_font_capability_set(s, settings);
|
2011-07-23 00:19:08 +04:00
|
|
|
rdp_write_control_capability_set(s, settings);
|
|
|
|
rdp_write_color_cache_capability_set(s, settings);
|
|
|
|
rdp_write_window_activation_capability_set(s, settings);
|
2011-07-21 21:57:57 +04:00
|
|
|
|
2011-07-25 20:25:28 +04:00
|
|
|
if (settings->offscreen_bitmap_cache)
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_offscreen_bitmap_cache_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
|
2012-02-13 04:41:39 +04:00
|
|
|
if (settings->draw_nine_grid)
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_draw_nine_grid_cache_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
|
2011-12-19 02:11:24 +04:00
|
|
|
if (settings->received_caps[CAPSET_TYPE_LARGE_POINTER])
|
2011-09-30 06:31:13 +04:00
|
|
|
{
|
2011-12-19 02:11:24 +04:00
|
|
|
if (settings->large_pointer)
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_large_pointer_capability_set(s, settings);
|
|
|
|
}
|
2011-09-30 06:31:13 +04:00
|
|
|
}
|
|
|
|
|
2011-08-08 23:06:07 +04:00
|
|
|
if (settings->remote_app)
|
|
|
|
{
|
|
|
|
numberCapabilities += 2;
|
|
|
|
rdp_write_remote_programs_capability_set(s, settings);
|
|
|
|
rdp_write_window_list_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
|
2011-07-25 20:25:28 +04:00
|
|
|
if (settings->received_caps[CAPSET_TYPE_MULTI_FRAGMENT_UPDATE])
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_multifragment_update_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings->received_caps[CAPSET_TYPE_SURFACE_COMMANDS])
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_surface_commands_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings->received_caps[CAPSET_TYPE_BITMAP_CODECS])
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_bitmap_codecs_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings->received_caps[CAPSET_TYPE_FRAME_ACKNOWLEDGE])
|
|
|
|
{
|
2012-05-11 11:34:51 +04:00
|
|
|
if (settings->frame_acknowledge > 0)
|
2011-07-25 20:25:28 +04:00
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_frame_acknowledge_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-25 04:50:10 +04:00
|
|
|
if (settings->received_caps[6])
|
|
|
|
{
|
|
|
|
if (settings->v3_codec_id != 0)
|
|
|
|
{
|
|
|
|
numberCapabilities++;
|
|
|
|
rdp_write_bitmap_cache_v3_codec_id_capability_set(s, settings);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-21 21:57:57 +04:00
|
|
|
stream_get_mark(s, em);
|
|
|
|
|
|
|
|
stream_set_mark(s, lm); /* go back to lengthCombinedCapabilities */
|
|
|
|
lengthCombinedCapabilities = (em - bm);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, lengthCombinedCapabilities); /* lengthCombinedCapabilities (2 bytes) */
|
2011-07-21 21:57:57 +04:00
|
|
|
|
|
|
|
stream_set_mark(s, bm); /* go back to numberCapabilities */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, numberCapabilities); /* numberCapabilities (2 bytes) */
|
2011-07-21 21:57:57 +04:00
|
|
|
|
|
|
|
stream_set_mark(s, em);
|
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL rdp_send_confirm_active(rdpRdp* rdp)
|
2011-07-21 21:57:57 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
|
2011-07-22 04:06:28 +04:00
|
|
|
s = rdp_pdu_init(rdp);
|
2011-07-21 21:57:57 +04:00
|
|
|
|
|
|
|
rdp_write_confirm_active(s, rdp->settings);
|
|
|
|
|
2011-08-22 11:03:58 +04:00
|
|
|
return rdp_send_pdu(rdp, s, PDU_TYPE_CONFIRM_ACTIVE, rdp->mcs->user_id);
|
2011-07-21 09:56:48 +04:00
|
|
|
}
|