2011-07-25 09:45:25 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-25 09:45:25 +04:00
|
|
|
* Update Data PDUs
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
#include <winpr/crt.h>
|
2013-01-09 02:18:10 +04:00
|
|
|
#include <winpr/thread.h>
|
2013-01-25 04:08:30 +04:00
|
|
|
#include <winpr/collections.h>
|
2012-11-22 04:22:41 +04:00
|
|
|
|
2011-07-25 09:45:25 +04:00
|
|
|
#include "update.h"
|
2011-08-24 19:31:58 +04:00
|
|
|
#include "surface.h"
|
2012-09-24 12:59:18 +04:00
|
|
|
|
2012-10-08 09:32:41 +04:00
|
|
|
#include <freerdp/peer.h>
|
2011-10-03 04:28:20 +04:00
|
|
|
#include <freerdp/codec/bitmap.h>
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2011-12-01 02:40:36 +04:00
|
|
|
/*
|
|
|
|
static const char* const UPDATE_TYPE_STRINGS[] =
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
|
|
|
"Orders",
|
|
|
|
"Bitmap",
|
|
|
|
"Palette",
|
|
|
|
"Synchronize"
|
|
|
|
};
|
2011-12-01 02:40:36 +04:00
|
|
|
*/
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL update_recv_orders(rdpUpdate* update, STREAM* s)
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 numberOrders;
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 6)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* pad2OctetsA (2 bytes) */
|
|
|
|
stream_read_UINT16(s, numberOrders); /* numberOrders (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2OctetsB (2 bytes) */
|
2011-07-25 22:50:26 +04:00
|
|
|
|
|
|
|
while (numberOrders > 0)
|
|
|
|
{
|
2012-02-11 17:30:09 +04:00
|
|
|
if (!update_recv_order(update, s))
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-07-25 22:50:26 +04:00
|
|
|
numberOrders--;
|
|
|
|
}
|
2012-02-11 17:30:09 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-07-25 09:45:25 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_bitmap_data(STREAM* s, BITMAP_DATA* bitmap_data)
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 18)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, bitmap_data->destLeft);
|
|
|
|
stream_read_UINT16(s, bitmap_data->destTop);
|
|
|
|
stream_read_UINT16(s, bitmap_data->destRight);
|
|
|
|
stream_read_UINT16(s, bitmap_data->destBottom);
|
|
|
|
stream_read_UINT16(s, bitmap_data->width);
|
|
|
|
stream_read_UINT16(s, bitmap_data->height);
|
|
|
|
stream_read_UINT16(s, bitmap_data->bitsPerPixel);
|
|
|
|
stream_read_UINT16(s, bitmap_data->flags);
|
|
|
|
stream_read_UINT16(s, bitmap_data->bitmapLength);
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2011-07-25 22:50:26 +04:00
|
|
|
if (bitmap_data->flags & BITMAP_COMPRESSION)
|
|
|
|
{
|
2011-12-20 05:31:37 +04:00
|
|
|
if (!(bitmap_data->flags & NO_BITMAP_COMPRESSION_HDR))
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, bitmap_data->cbCompFirstRowSize); /* cbCompFirstRowSize (2 bytes) */
|
|
|
|
stream_read_UINT16(s, bitmap_data->cbCompMainBodySize); /* cbCompMainBodySize (2 bytes) */
|
|
|
|
stream_read_UINT16(s, bitmap_data->cbScanWidth); /* cbScanWidth (2 bytes) */
|
|
|
|
stream_read_UINT16(s, bitmap_data->cbUncompressedSize); /* cbUncompressedSize (2 bytes) */
|
2011-12-20 05:31:37 +04:00
|
|
|
bitmap_data->bitmapLength = bitmap_data->cbCompMainBodySize;
|
|
|
|
}
|
2011-07-25 22:50:26 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
bitmap_data->compressed = TRUE;
|
2011-10-21 01:28:59 +04:00
|
|
|
stream_get_mark(s, bitmap_data->bitmapDataStream);
|
|
|
|
stream_seek(s, bitmap_data->bitmapLength);
|
2011-08-04 11:39:10 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < bitmap_data->bitmapLength)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2012-10-09 10:31:28 +04:00
|
|
|
bitmap_data->compressed = FALSE;
|
2011-10-21 01:28:59 +04:00
|
|
|
stream_get_mark(s, bitmap_data->bitmapDataStream);
|
|
|
|
stream_seek(s, bitmap_data->bitmapLength);
|
2011-08-04 11:39:10 +04:00
|
|
|
}
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-07-25 09:45:25 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_bitmap(rdpUpdate* update, STREAM* s, BITMAP_UPDATE* bitmap_update)
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
2011-07-27 02:32:14 +04:00
|
|
|
int i;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
|
|
|
if (stream_get_left(s) < 2)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, bitmap_update->number); /* numberRectangles (2 bytes) */
|
2011-07-27 02:32:14 +04:00
|
|
|
|
2011-10-03 07:09:13 +04:00
|
|
|
if (bitmap_update->number > bitmap_update->count)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 count;
|
2011-10-03 07:09:13 +04:00
|
|
|
|
|
|
|
count = bitmap_update->number * 2;
|
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
bitmap_update->rectangles = (BITMAP_DATA*) realloc(bitmap_update->rectangles,
|
2011-10-21 01:28:59 +04:00
|
|
|
sizeof(BITMAP_DATA) * count);
|
2011-10-03 07:09:13 +04:00
|
|
|
|
2011-10-21 05:34:55 +04:00
|
|
|
memset(&bitmap_update->rectangles[bitmap_update->count], 0,
|
2011-10-21 01:28:59 +04:00
|
|
|
sizeof(BITMAP_DATA) * (count - bitmap_update->count));
|
2011-10-03 07:09:13 +04:00
|
|
|
|
|
|
|
bitmap_update->count = count;
|
|
|
|
}
|
2011-07-25 09:45:25 +04:00
|
|
|
|
|
|
|
/* rectangles */
|
2011-12-04 02:24:18 +04:00
|
|
|
for (i = 0; i < (int) bitmap_update->number; i++)
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_bitmap_data(s, &bitmap_update->rectangles[i]))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2011-07-25 09:45:25 +04:00
|
|
|
}
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-07-25 09:45:25 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_palette(rdpUpdate* update, STREAM* s, PALETTE_UPDATE* palette_update)
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
2011-07-27 02:32:14 +04:00
|
|
|
int i;
|
2011-10-21 20:17:04 +04:00
|
|
|
PALETTE_ENTRY* entry;
|
2011-07-27 02:32:14 +04:00
|
|
|
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 6)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_read_UINT32(s, palette_update->number); /* numberColors (4 bytes), must be set to 256 */
|
2011-07-27 02:32:14 +04:00
|
|
|
|
|
|
|
if (palette_update->number > 256)
|
|
|
|
palette_update->number = 256;
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < palette_update->number * 3)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
|
|
|
|
2011-07-25 09:45:25 +04:00
|
|
|
/* paletteEntries */
|
2011-08-17 05:08:14 +04:00
|
|
|
for (i = 0; i < (int) palette_update->number; i++)
|
2011-07-27 02:32:14 +04:00
|
|
|
{
|
2011-10-21 20:17:04 +04:00
|
|
|
entry = &palette_update->entries[i];
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, entry->blue);
|
|
|
|
stream_read_BYTE(s, entry->green);
|
|
|
|
stream_read_BYTE(s, entry->red);
|
2011-07-27 02:32:14 +04:00
|
|
|
}
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-07-25 09:45:25 +04:00
|
|
|
}
|
|
|
|
|
2011-07-28 08:38:25 +04:00
|
|
|
void update_read_synchronize(rdpUpdate* update, STREAM* s)
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
2011-07-25 09:45:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The Synchronize Update is an artifact from the
|
|
|
|
* T.128 protocol and should be ignored.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_play_sound(STREAM* s, PLAY_SOUND_UPDATE* play_sound)
|
2011-08-24 10:54:46 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 8)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_read_UINT32(s, play_sound->duration); /* duration (4 bytes) */
|
|
|
|
stream_read_UINT32(s, play_sound->frequency); /* frequency (4 bytes) */
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-08-24 10:54:46 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_recv_play_sound(rdpUpdate* update, STREAM* s)
|
2011-08-24 10:54:46 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (!update_read_play_sound(s, &update->play_sound))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
IFCALL(update->PlaySound, update->context, &update->play_sound);
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-08-24 10:54:46 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_pointer_position(STREAM* s, POINTER_POSITION_UPDATE* pointer_position)
|
2011-08-24 10:38:39 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 4)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, pointer_position->xPos); /* xPos (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointer_position->yPos); /* yPos (2 bytes) */
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-08-24 10:38:39 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_pointer_system(STREAM* s, POINTER_SYSTEM_UPDATE* pointer_system)
|
2011-08-24 10:38:39 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 4)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_read_UINT32(s, pointer_system->type); /* systemPointerType (4 bytes) */
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-08-24 10:38:39 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_pointer_color(STREAM* s, POINTER_COLOR_UPDATE* pointer_color)
|
2011-08-24 10:38:39 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 14)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, pointer_color->cacheIndex); /* cacheIndex (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointer_color->xPos); /* xPos (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointer_color->yPos); /* yPos (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointer_color->width); /* width (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointer_color->height); /* height (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointer_color->lengthAndMask); /* lengthAndMask (2 bytes) */
|
|
|
|
stream_read_UINT16(s, pointer_color->lengthXorMask); /* lengthXorMask (2 bytes) */
|
2011-08-24 10:38:39 +04:00
|
|
|
|
2012-03-18 23:34:08 +04:00
|
|
|
/**
|
|
|
|
* There does not seem to be any documentation on why
|
|
|
|
* xPos / yPos can be larger than width / height
|
|
|
|
* so it is missing in documentation or a bug in implementation
|
|
|
|
* 2.2.9.1.1.4.4 Color Pointer Update (TS_COLORPOINTERATTRIBUTE)
|
|
|
|
*/
|
|
|
|
if (pointer_color->xPos >= pointer_color->width)
|
|
|
|
pointer_color->xPos = 0;
|
|
|
|
if (pointer_color->yPos >= pointer_color->height)
|
|
|
|
pointer_color->yPos = 0;
|
|
|
|
|
2011-08-24 10:38:39 +04:00
|
|
|
if (pointer_color->lengthXorMask > 0)
|
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < pointer_color->lengthXorMask)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2012-10-09 11:01:37 +04:00
|
|
|
pointer_color->xorMaskData = (BYTE*) malloc(pointer_color->lengthXorMask);
|
2011-08-24 10:38:39 +04:00
|
|
|
stream_read(s, pointer_color->xorMaskData, pointer_color->lengthXorMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pointer_color->lengthAndMask > 0)
|
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < pointer_color->lengthAndMask)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2012-10-09 11:01:37 +04:00
|
|
|
pointer_color->andMaskData = (BYTE*) malloc(pointer_color->lengthAndMask);
|
2011-08-24 10:38:39 +04:00
|
|
|
stream_read(s, pointer_color->andMaskData, pointer_color->lengthAndMask);
|
|
|
|
}
|
|
|
|
|
2012-01-09 00:02:02 +04:00
|
|
|
if (stream_get_left(s) > 0)
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_seek_BYTE(s); /* pad (1 byte) */
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-08-24 10:38:39 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_pointer_new(STREAM* s, POINTER_NEW_UPDATE* pointer_new)
|
2011-08-24 10:38:39 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 2)
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, pointer_new->xorBpp); /* xorBpp (2 bytes) */
|
2013-01-12 03:46:04 +04:00
|
|
|
return update_read_pointer_color(s, &pointer_new->colorPtrAttr); /* colorPtrAttr */
|
2011-08-24 10:38:39 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_read_pointer_cached(STREAM* s, POINTER_CACHED_UPDATE* pointer_cached)
|
2011-08-24 10:38:39 +04:00
|
|
|
{
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 2)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, pointer_cached->cacheIndex); /* cacheIndex (2 bytes) */
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-08-24 10:38:39 +04:00
|
|
|
}
|
|
|
|
|
2013-01-12 03:46:04 +04:00
|
|
|
BOOL update_recv_pointer(rdpUpdate* update, STREAM* s)
|
2011-08-24 10:38:39 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 messageType;
|
2011-11-22 02:48:03 +04:00
|
|
|
rdpContext* context = update->context;
|
|
|
|
rdpPointerUpdate* pointer = update->pointer;
|
2011-08-24 10:38:39 +04:00
|
|
|
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 2 + 2)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, messageType); /* messageType (2 bytes) */
|
|
|
|
stream_seek_UINT16(s); /* pad2Octets (2 bytes) */
|
2011-08-24 10:38:39 +04:00
|
|
|
|
|
|
|
switch (messageType)
|
|
|
|
{
|
|
|
|
case PTR_MSG_TYPE_POSITION:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_pointer_position(s, &pointer->pointer_position))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2011-11-22 02:48:03 +04:00
|
|
|
IFCALL(pointer->PointerPosition, context, &pointer->pointer_position);
|
2011-08-24 10:38:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PTR_MSG_TYPE_SYSTEM:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_pointer_system(s, &pointer->pointer_system))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2011-11-22 02:48:03 +04:00
|
|
|
IFCALL(pointer->PointerSystem, context, &pointer->pointer_system);
|
2011-08-24 10:38:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PTR_MSG_TYPE_COLOR:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_pointer_color(s, &pointer->pointer_color))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2011-11-22 02:48:03 +04:00
|
|
|
IFCALL(pointer->PointerColor, context, &pointer->pointer_color);
|
2011-08-24 10:38:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PTR_MSG_TYPE_POINTER:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_pointer_new(s, &pointer->pointer_new))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2011-11-22 02:48:03 +04:00
|
|
|
IFCALL(pointer->PointerNew, context, &pointer->pointer_new);
|
2011-08-24 10:38:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PTR_MSG_TYPE_CACHED:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_pointer_cached(s, &pointer->pointer_cached))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2011-11-22 02:48:03 +04:00
|
|
|
IFCALL(pointer->PointerCached, context, &pointer->pointer_cached);
|
2011-08-24 10:38:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-01-12 03:46:04 +04:00
|
|
|
return TRUE;
|
2011-08-24 10:38:39 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL update_recv(rdpUpdate* update, STREAM* s)
|
2011-07-25 09:45:25 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 updateType;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpContext* context = update->context;
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < 2)
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2013-01-19 01:50:25 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, updateType); /* updateType (2 bytes) */
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2011-08-08 05:12:36 +04:00
|
|
|
//printf("%s Update Data PDU\n", UPDATE_TYPE_STRINGS[updateType]);
|
2011-07-25 09:45:25 +04:00
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
IFCALL(update->BeginPaint, context);
|
2011-07-28 21:46:36 +04:00
|
|
|
|
2011-07-25 09:45:25 +04:00
|
|
|
switch (updateType)
|
|
|
|
{
|
|
|
|
case UPDATE_TYPE_ORDERS:
|
2012-02-11 17:30:09 +04:00
|
|
|
if (!update_recv_orders(update, s))
|
|
|
|
{
|
|
|
|
/* XXX: Do we have to call EndPaint? */
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2012-02-11 17:30:09 +04:00
|
|
|
}
|
2011-07-25 09:45:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UPDATE_TYPE_BITMAP:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_bitmap(update, s, &update->bitmap_update))
|
|
|
|
return FALSE;
|
2011-11-22 04:41:49 +04:00
|
|
|
IFCALL(update->BitmapUpdate, context, &update->bitmap_update);
|
2011-07-25 09:45:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UPDATE_TYPE_PALETTE:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!update_read_palette(update, s, &update->palette_update))
|
2013-01-12 03:46:04 +04:00
|
|
|
return FALSE;
|
2011-11-22 04:41:49 +04:00
|
|
|
IFCALL(update->Palette, context, &update->palette_update);
|
2011-07-25 09:45:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UPDATE_TYPE_SYNCHRONIZE:
|
2011-07-28 08:38:25 +04:00
|
|
|
update_read_synchronize(update, s);
|
2011-11-22 04:41:49 +04:00
|
|
|
IFCALL(update->Synchronize, context);
|
2011-07-25 09:45:25 +04:00
|
|
|
break;
|
|
|
|
}
|
2011-07-28 21:46:36 +04:00
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
IFCALL(update->EndPaint, context);
|
2011-08-07 17:27:52 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-07-25 09:45:25 +04:00
|
|
|
}
|
|
|
|
|
2011-08-08 05:12:36 +04:00
|
|
|
void update_reset_state(rdpUpdate* update)
|
|
|
|
{
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpPrimaryUpdate* primary = update->primary;
|
2011-11-22 04:53:38 +04:00
|
|
|
rdpAltSecUpdate* altsec = update->altsec;
|
2011-11-22 03:11:43 +04:00
|
|
|
|
2013-01-24 23:09:44 +04:00
|
|
|
ZeroMemory(&primary->order_info, sizeof(ORDER_INFO));
|
|
|
|
ZeroMemory(&primary->dstblt, sizeof(DSTBLT_ORDER));
|
|
|
|
ZeroMemory(&primary->patblt, sizeof(PATBLT_ORDER));
|
|
|
|
ZeroMemory(&primary->scrblt, sizeof(SCRBLT_ORDER));
|
|
|
|
ZeroMemory(&primary->opaque_rect, sizeof(OPAQUE_RECT_ORDER));
|
|
|
|
ZeroMemory(&primary->draw_nine_grid, sizeof(DRAW_NINE_GRID_ORDER));
|
|
|
|
ZeroMemory(&primary->multi_dstblt, sizeof(MULTI_DSTBLT_ORDER));
|
|
|
|
ZeroMemory(&primary->multi_patblt, sizeof(MULTI_PATBLT_ORDER));
|
|
|
|
ZeroMemory(&primary->multi_scrblt, sizeof(MULTI_SCRBLT_ORDER));
|
|
|
|
ZeroMemory(&primary->multi_opaque_rect, sizeof(MULTI_OPAQUE_RECT_ORDER));
|
|
|
|
ZeroMemory(&primary->multi_draw_nine_grid, sizeof(MULTI_DRAW_NINE_GRID_ORDER));
|
|
|
|
ZeroMemory(&primary->line_to, sizeof(LINE_TO_ORDER));
|
|
|
|
ZeroMemory(&primary->polyline, sizeof(POLYLINE_ORDER));
|
|
|
|
ZeroMemory(&primary->memblt, sizeof(MEMBLT_ORDER));
|
|
|
|
ZeroMemory(&primary->mem3blt, sizeof(MEM3BLT_ORDER));
|
|
|
|
ZeroMemory(&primary->save_bitmap, sizeof(SAVE_BITMAP_ORDER));
|
|
|
|
ZeroMemory(&primary->glyph_index, sizeof(GLYPH_INDEX_ORDER));
|
|
|
|
ZeroMemory(&primary->fast_index, sizeof(FAST_INDEX_ORDER));
|
|
|
|
ZeroMemory(&primary->fast_glyph, sizeof(FAST_GLYPH_ORDER));
|
|
|
|
ZeroMemory(&primary->polygon_sc, sizeof(POLYGON_SC_ORDER));
|
|
|
|
ZeroMemory(&primary->polygon_cb, sizeof(POLYGON_CB_ORDER));
|
|
|
|
ZeroMemory(&primary->ellipse_sc, sizeof(ELLIPSE_SC_ORDER));
|
|
|
|
ZeroMemory(&primary->ellipse_cb, sizeof(ELLIPSE_CB_ORDER));
|
2011-11-22 03:11:43 +04:00
|
|
|
|
|
|
|
primary->order_info.orderType = ORDER_TYPE_PATBLT;
|
2011-11-22 04:53:38 +04:00
|
|
|
altsec->switch_surface.bitmapId = SCREEN_BITMAP_SURFACE;
|
|
|
|
IFCALL(altsec->SwitchSurface, update->context, &(altsec->switch_surface));
|
2011-08-08 05:12:36 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
static void update_begin_paint(rdpContext* context)
|
2011-08-23 16:37:08 +04:00
|
|
|
{
|
2011-09-21 01:01:38 +04:00
|
|
|
|
2011-08-23 16:37:08 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
static void update_end_paint(rdpContext* context)
|
2011-08-23 16:37:08 +04:00
|
|
|
{
|
2011-11-11 23:02:59 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
static void update_write_refresh_rect(STREAM* s, BYTE count, RECTANGLE_16* areas)
|
2011-11-11 23:02:59 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, count); /* numberOfAreas (1 byte) */
|
2011-11-11 23:02:59 +04:00
|
|
|
stream_seek(s, 3); /* pad3Octets (3 bytes) */
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
2012-09-24 12:59:18 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, areas[i].left); /* left (2 bytes) */
|
|
|
|
stream_write_UINT16(s, areas[i].top); /* top (2 bytes) */
|
|
|
|
stream_write_UINT16(s, areas[i].right); /* right (2 bytes) */
|
|
|
|
stream_write_UINT16(s, areas[i].bottom); /* bottom (2 bytes) */
|
2012-09-24 12:59:18 +04:00
|
|
|
}
|
2011-11-11 23:02:59 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
static void update_send_refresh_rect(rdpContext* context, BYTE count, RECTANGLE_16* areas)
|
2011-11-11 23:02:59 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpRdp* rdp = context->rdp;
|
2011-11-11 23:02:59 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
if (rdp->settings->RefreshRect)
|
2012-05-28 16:20:42 +04:00
|
|
|
{
|
|
|
|
s = rdp_data_pdu_init(rdp);
|
|
|
|
update_write_refresh_rect(s, count, areas);
|
2011-11-11 23:02:59 +04:00
|
|
|
|
2012-05-28 16:20:42 +04:00
|
|
|
rdp_send_data_pdu(rdp, s, DATA_PDU_TYPE_REFRESH_RECT, rdp->mcs->user_id);
|
|
|
|
}
|
2011-11-11 23:02:59 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
static void update_write_suppress_output(STREAM* s, BYTE allow, RECTANGLE_16* area)
|
2011-11-11 23:02:59 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, allow); /* allowDisplayUpdates (1 byte) */
|
2011-11-11 23:02:59 +04:00
|
|
|
stream_seek(s, 3); /* pad3Octets (3 bytes) */
|
|
|
|
|
|
|
|
if (allow > 0)
|
2012-09-24 12:59:18 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, area->left); /* left (2 bytes) */
|
|
|
|
stream_write_UINT16(s, area->top); /* top (2 bytes) */
|
|
|
|
stream_write_UINT16(s, area->right); /* right (2 bytes) */
|
|
|
|
stream_write_UINT16(s, area->bottom); /* bottom (2 bytes) */
|
2012-09-24 12:59:18 +04:00
|
|
|
}
|
2011-11-11 23:02:59 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
static void update_send_suppress_output(rdpContext* context, BYTE allow, RECTANGLE_16* area)
|
2011-11-11 23:02:59 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpRdp* rdp = context->rdp;
|
2011-11-11 23:02:59 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
if (rdp->settings->SuppressOutput)
|
2012-05-28 16:20:42 +04:00
|
|
|
{
|
|
|
|
s = rdp_data_pdu_init(rdp);
|
|
|
|
update_write_suppress_output(s, allow, area);
|
2011-11-11 23:02:59 +04:00
|
|
|
|
2012-05-28 16:20:42 +04:00
|
|
|
rdp_send_data_pdu(rdp, s, DATA_PDU_TYPE_SUPPRESS_OUTPUT, rdp->mcs->user_id);
|
|
|
|
}
|
2011-08-23 16:37:08 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
static void update_send_surface_command(rdpContext* context, STREAM* s)
|
2011-08-27 05:44:37 +04:00
|
|
|
{
|
2011-12-03 10:42:13 +04:00
|
|
|
STREAM* update;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpRdp* rdp = context->rdp;
|
2011-12-03 10:42:13 +04:00
|
|
|
|
|
|
|
update = fastpath_update_pdu_init(rdp->fastpath);
|
|
|
|
stream_check_size(update, stream_get_length(s));
|
|
|
|
stream_write(update, stream_get_head(s), stream_get_length(s));
|
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_SURFCMDS, update);
|
2011-08-27 05:44:37 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
static void update_send_surface_bits(rdpContext* context, SURFACE_BITS_COMMAND* surface_bits_command)
|
2011-08-23 19:28:28 +04:00
|
|
|
{
|
2011-12-03 10:42:13 +04:00
|
|
|
STREAM* s;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpRdp* rdp = context->rdp;
|
2011-12-03 10:42:13 +04:00
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
2011-12-04 02:24:18 +04:00
|
|
|
stream_check_size(s, SURFCMD_SURFACE_BITS_HEADER_LENGTH + (int) surface_bits_command->bitmapDataLength);
|
2011-12-03 10:42:13 +04:00
|
|
|
update_write_surfcmd_surface_bits_header(s, surface_bits_command);
|
|
|
|
stream_write(s, surface_bits_command->bitmapData, surface_bits_command->bitmapDataLength);
|
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_SURFCMDS, s);
|
2011-08-23 19:28:28 +04:00
|
|
|
}
|
|
|
|
|
2011-12-16 03:26:32 +04:00
|
|
|
static void update_send_surface_frame_marker(rdpContext* context, SURFACE_FRAME_MARKER* surface_frame_marker)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
rdpRdp* rdp = context->rdp;
|
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
|
|
|
update_write_surfcmd_frame_marker(s, surface_frame_marker->frameAction, surface_frame_marker->frameId);
|
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_SURFCMDS, s);
|
|
|
|
}
|
|
|
|
|
2013-01-17 08:58:01 +04:00
|
|
|
static void update_send_frame_acknowledge(rdpContext* context, UINT32 frameId)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
rdpRdp* rdp = context->rdp;
|
|
|
|
|
2013-01-19 12:45:24 +04:00
|
|
|
if (rdp->settings->ReceivedCapabilities[CAPSET_TYPE_FRAME_ACKNOWLEDGE])
|
|
|
|
{
|
|
|
|
s = rdp_data_pdu_init(rdp);
|
|
|
|
stream_write_UINT32(s, frameId);
|
|
|
|
rdp_send_data_pdu(rdp, s, DATA_PDU_TYPE_FRAME_ACKNOWLEDGE, rdp->mcs->user_id);
|
|
|
|
}
|
2013-01-17 08:58:01 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
static void update_send_synchronize(rdpContext* context)
|
2011-08-25 13:03:53 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpRdp* rdp = context->rdp;
|
2011-08-25 13:03:53 +04:00
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
2012-02-02 20:34:19 +04:00
|
|
|
stream_write_zero(s, 2); /* pad2Octets (2 bytes) */
|
2011-12-03 10:42:13 +04:00
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_SYNCHRONIZE, s);
|
2011-08-25 13:03:53 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
static void update_send_desktop_resize(rdpContext* context)
|
2011-09-06 13:19:16 +04:00
|
|
|
{
|
2012-10-08 09:32:41 +04:00
|
|
|
if (context->peer)
|
2012-10-09 22:03:41 +04:00
|
|
|
context->peer->activated = FALSE;
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
rdp_server_reactivate(context->rdp);
|
2011-09-06 13:19:16 +04:00
|
|
|
}
|
|
|
|
|
2011-11-24 20:47:40 +04:00
|
|
|
static void update_send_scrblt(rdpContext* context, SCRBLT_ORDER* scrblt)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
rdpRdp* rdp = context->rdp;
|
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, 1); /* numberOrders (2 bytes) */
|
|
|
|
stream_write_BYTE(s, ORDER_STANDARD | ORDER_TYPE_CHANGE); /* controlFlags (1 byte) */
|
|
|
|
stream_write_BYTE(s, ORDER_TYPE_SCRBLT); /* orderType (1 byte) */
|
|
|
|
stream_write_BYTE(s, 0x7F); /* fieldFlags (variable) */
|
2011-11-24 20:47:40 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, scrblt->nLeftRect);
|
|
|
|
stream_write_UINT16(s, scrblt->nTopRect);
|
|
|
|
stream_write_UINT16(s, scrblt->nWidth);
|
|
|
|
stream_write_UINT16(s, scrblt->nHeight);
|
|
|
|
stream_write_BYTE(s, scrblt->bRop);
|
|
|
|
stream_write_UINT16(s, scrblt->nXSrc);
|
|
|
|
stream_write_UINT16(s, scrblt->nYSrc);
|
2011-11-24 20:47:40 +04:00
|
|
|
|
2011-12-03 10:42:13 +04:00
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_ORDERS, s);
|
2011-11-24 20:47:40 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
static void update_send_pointer_system(rdpContext* context, POINTER_SYSTEM_UPDATE* pointer_system)
|
2011-08-25 13:03:53 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE updateCode;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpRdp* rdp = context->rdp;
|
2011-08-25 13:03:53 +04:00
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
2012-09-17 05:05:51 +04:00
|
|
|
|
2011-08-25 13:03:53 +04:00
|
|
|
if (pointer_system->type == SYSPTR_NULL)
|
2011-12-03 10:42:13 +04:00
|
|
|
updateCode = FASTPATH_UPDATETYPE_PTR_NULL;
|
2011-08-25 13:03:53 +04:00
|
|
|
else
|
2011-12-03 10:42:13 +04:00
|
|
|
updateCode = FASTPATH_UPDATETYPE_PTR_DEFAULT;
|
2012-09-17 05:05:51 +04:00
|
|
|
|
2011-12-03 10:42:13 +04:00
|
|
|
fastpath_send_update_pdu(rdp->fastpath, updateCode, s);
|
2011-08-25 13:03:53 +04:00
|
|
|
}
|
|
|
|
|
2011-12-03 04:54:02 +04:00
|
|
|
static void update_write_pointer_color(STREAM* s, POINTER_COLOR_UPDATE* pointer_color)
|
|
|
|
{
|
2011-12-04 02:24:18 +04:00
|
|
|
stream_check_size(s, 15 + (int) pointer_color->lengthAndMask + (int) pointer_color->lengthXorMask);
|
2012-09-17 05:05:51 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, pointer_color->cacheIndex);
|
|
|
|
stream_write_UINT16(s, pointer_color->xPos);
|
|
|
|
stream_write_UINT16(s, pointer_color->yPos);
|
|
|
|
stream_write_UINT16(s, pointer_color->width);
|
|
|
|
stream_write_UINT16(s, pointer_color->height);
|
|
|
|
stream_write_UINT16(s, pointer_color->lengthAndMask);
|
|
|
|
stream_write_UINT16(s, pointer_color->lengthXorMask);
|
2012-09-17 05:05:51 +04:00
|
|
|
|
2011-12-03 04:54:02 +04:00
|
|
|
if (pointer_color->lengthXorMask > 0)
|
|
|
|
stream_write(s, pointer_color->xorMaskData, pointer_color->lengthXorMask);
|
2012-09-17 05:05:51 +04:00
|
|
|
|
2011-12-03 04:54:02 +04:00
|
|
|
if (pointer_color->lengthAndMask > 0)
|
|
|
|
stream_write(s, pointer_color->andMaskData, pointer_color->lengthAndMask);
|
2012-09-17 05:05:51 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_BYTE(s, 0); /* pad (1 byte) */
|
2011-12-03 04:54:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void update_send_pointer_color(rdpContext* context, POINTER_COLOR_UPDATE* pointer_color)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
rdpRdp* rdp = context->rdp;
|
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
|
|
|
update_write_pointer_color(s, pointer_color);
|
2011-12-03 10:42:13 +04:00
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_COLOR, s);
|
2011-12-03 04:54:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void update_send_pointer_new(rdpContext* context, POINTER_NEW_UPDATE* pointer_new)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
rdpRdp* rdp = context->rdp;
|
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, pointer_new->xorBpp); /* xorBpp (2 bytes) */
|
2011-12-03 04:54:02 +04:00
|
|
|
update_write_pointer_color(s, &pointer_new->colorPtrAttr);
|
2011-12-03 10:42:13 +04:00
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_POINTER, s);
|
2011-12-03 04:54:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void update_send_pointer_cached(rdpContext* context, POINTER_CACHED_UPDATE* pointer_cached)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
rdpRdp* rdp = context->rdp;
|
|
|
|
|
|
|
|
s = fastpath_update_pdu_init(rdp->fastpath);
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, pointer_cached->cacheIndex); /* cacheIndex (2 bytes) */
|
2011-12-03 10:42:13 +04:00
|
|
|
fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_CACHED, s);
|
2011-12-03 04:54:02 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL update_read_refresh_rect(rdpUpdate* update, STREAM* s)
|
2012-05-26 17:34:09 +04:00
|
|
|
{
|
2012-09-16 01:51:05 +04:00
|
|
|
int index;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE numberOfAreas;
|
2012-09-16 01:51:05 +04:00
|
|
|
RECTANGLE_16* areas;
|
2012-05-26 17:34:09 +04:00
|
|
|
|
|
|
|
if (stream_get_left(s) < 4)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2012-05-26 17:34:09 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, numberOfAreas);
|
2012-05-26 17:34:09 +04:00
|
|
|
stream_seek(s, 3); /* pad3Octects */
|
|
|
|
|
2013-01-19 01:50:25 +04:00
|
|
|
if (stream_get_left(s) < numberOfAreas * 4 * 2)
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2012-09-16 01:51:05 +04:00
|
|
|
areas = (RECTANGLE_16*) malloc(sizeof(RECTANGLE_16) * numberOfAreas);
|
|
|
|
|
|
|
|
for (index = 0; index < numberOfAreas; index++)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, areas[index].left);
|
|
|
|
stream_read_UINT16(s, areas[index].top);
|
|
|
|
stream_read_UINT16(s, areas[index].right);
|
|
|
|
stream_read_UINT16(s, areas[index].bottom);
|
2012-09-16 01:51:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
IFCALL(update->RefreshRect, update->context, numberOfAreas, areas);
|
|
|
|
|
|
|
|
free(areas);
|
2012-05-26 17:34:09 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-05-26 17:34:09 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL update_read_suppress_output(rdpUpdate* update, STREAM* s)
|
2012-05-26 17:34:09 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE allowDisplayUpdates;
|
2012-05-26 17:34:09 +04:00
|
|
|
|
|
|
|
if (stream_get_left(s) < 4)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2012-05-26 17:34:09 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, allowDisplayUpdates);
|
2012-05-26 17:34:09 +04:00
|
|
|
stream_seek(s, 3); /* pad3Octects */
|
2012-09-17 05:05:51 +04:00
|
|
|
|
2012-05-26 17:34:09 +04:00
|
|
|
if (allowDisplayUpdates > 0 && stream_get_left(s) < 8)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2012-05-26 17:34:09 +04:00
|
|
|
|
|
|
|
IFCALL(update->SuppressOutput, update->context, allowDisplayUpdates,
|
|
|
|
allowDisplayUpdates > 0 ? (RECTANGLE_16*) stream_get_tail(s) : NULL);
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-05-26 17:34:09 +04:00
|
|
|
}
|
|
|
|
|
2011-08-23 16:37:08 +04:00
|
|
|
void update_register_server_callbacks(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
update->BeginPaint = update_begin_paint;
|
|
|
|
update->EndPaint = update_end_paint;
|
2011-08-25 13:03:53 +04:00
|
|
|
update->Synchronize = update_send_synchronize;
|
2011-09-06 13:19:16 +04:00
|
|
|
update->DesktopResize = update_send_desktop_resize;
|
2011-08-23 19:28:28 +04:00
|
|
|
update->SurfaceBits = update_send_surface_bits;
|
2011-12-16 03:26:32 +04:00
|
|
|
update->SurfaceFrameMarker = update_send_surface_frame_marker;
|
2011-08-27 05:44:37 +04:00
|
|
|
update->SurfaceCommand = update_send_surface_command;
|
2011-11-24 20:47:40 +04:00
|
|
|
update->primary->ScrBlt = update_send_scrblt;
|
2011-11-22 02:48:03 +04:00
|
|
|
update->pointer->PointerSystem = update_send_pointer_system;
|
2011-12-03 04:54:02 +04:00
|
|
|
update->pointer->PointerColor = update_send_pointer_color;
|
|
|
|
update->pointer->PointerNew = update_send_pointer_new;
|
|
|
|
update->pointer->PointerCached = update_send_pointer_cached;
|
2011-08-23 16:37:08 +04:00
|
|
|
}
|
|
|
|
|
2012-05-26 17:34:09 +04:00
|
|
|
void update_register_client_callbacks(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
update->RefreshRect = update_send_refresh_rect;
|
|
|
|
update->SuppressOutput = update_send_suppress_output;
|
2013-01-17 08:58:01 +04:00
|
|
|
update->SurfaceFrameAcknowledge = update_send_frame_acknowledge;
|
2012-05-26 17:34:09 +04:00
|
|
|
}
|
|
|
|
|
2013-01-09 02:18:10 +04:00
|
|
|
static void* update_thread(void* arg)
|
|
|
|
{
|
|
|
|
rdpUpdate* update;
|
|
|
|
|
|
|
|
update = (rdpUpdate*) arg;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-07-28 08:38:25 +04:00
|
|
|
rdpUpdate* update_new(rdpRdp* rdp)
|
2011-07-27 02:32:14 +04:00
|
|
|
{
|
|
|
|
rdpUpdate* update;
|
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
update = (rdpUpdate*) malloc(sizeof(rdpUpdate));
|
2011-07-27 02:32:14 +04:00
|
|
|
|
|
|
|
if (update != NULL)
|
|
|
|
{
|
2012-01-01 00:36:04 +04:00
|
|
|
OFFSCREEN_DELETE_LIST* deleteList;
|
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
ZeroMemory(update, sizeof(rdpUpdate));
|
|
|
|
|
2011-10-03 07:09:13 +04:00
|
|
|
update->bitmap_update.count = 64;
|
2012-11-22 04:22:41 +04:00
|
|
|
update->bitmap_update.rectangles = (BITMAP_DATA*) malloc(sizeof(BITMAP_DATA) * update->bitmap_update.count);
|
|
|
|
ZeroMemory(update->bitmap_update.rectangles, sizeof(BITMAP_DATA) * update->bitmap_update.count);
|
|
|
|
|
|
|
|
update->pointer = (rdpPointerUpdate*) malloc(sizeof(rdpPointerUpdate));
|
|
|
|
ZeroMemory(update->pointer, sizeof(rdpPointerUpdate));
|
|
|
|
|
|
|
|
update->primary = (rdpPrimaryUpdate*) malloc(sizeof(rdpPrimaryUpdate));
|
|
|
|
ZeroMemory(update->primary, sizeof(rdpPrimaryUpdate));
|
2011-11-22 02:48:03 +04:00
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
update->secondary = (rdpSecondaryUpdate*) malloc(sizeof(rdpSecondaryUpdate));
|
|
|
|
ZeroMemory(update->secondary, sizeof(rdpSecondaryUpdate));
|
|
|
|
|
|
|
|
update->altsec = (rdpAltSecUpdate*) malloc(sizeof(rdpAltSecUpdate));
|
|
|
|
ZeroMemory(update->altsec, sizeof(rdpAltSecUpdate));
|
|
|
|
|
|
|
|
update->window = (rdpWindowUpdate*) malloc(sizeof(rdpWindowUpdate));
|
|
|
|
ZeroMemory(update->window, sizeof(rdpWindowUpdate));
|
2012-01-01 00:36:04 +04:00
|
|
|
|
|
|
|
deleteList = &(update->altsec->create_offscreen_bitmap.deleteList);
|
|
|
|
deleteList->sIndices = 64;
|
2012-10-09 07:21:26 +04:00
|
|
|
deleteList->indices = malloc(deleteList->sIndices * 2);
|
2012-01-01 00:36:04 +04:00
|
|
|
deleteList->cIndices = 0;
|
2012-01-31 20:11:22 +04:00
|
|
|
|
|
|
|
update->SuppressOutput = update_send_suppress_output;
|
2013-01-09 02:18:10 +04:00
|
|
|
|
2013-01-24 23:09:44 +04:00
|
|
|
if (update->asynchronous)
|
|
|
|
{
|
2013-01-25 04:08:30 +04:00
|
|
|
update->queue = MessageQueue_New();
|
|
|
|
update->context->queue = (void*) update->queue;
|
2013-01-24 23:09:44 +04:00
|
|
|
update->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) update_thread, update, 0, NULL);
|
|
|
|
}
|
2011-07-27 02:32:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return update;
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_free(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
if (update != NULL)
|
|
|
|
{
|
2012-01-01 00:36:04 +04:00
|
|
|
OFFSCREEN_DELETE_LIST* deleteList;
|
2012-11-22 04:22:41 +04:00
|
|
|
|
2012-01-01 00:36:04 +04:00
|
|
|
deleteList = &(update->altsec->create_offscreen_bitmap.deleteList);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(deleteList->indices);
|
|
|
|
|
|
|
|
free(update->bitmap_update.rectangles);
|
|
|
|
free(update->pointer);
|
|
|
|
free(update->primary->polyline.points);
|
|
|
|
free(update->primary->polygon_sc.points);
|
|
|
|
free(update->primary);
|
|
|
|
free(update->secondary);
|
|
|
|
free(update->altsec);
|
|
|
|
free(update->window);
|
2013-01-09 02:18:10 +04:00
|
|
|
|
2013-01-24 23:09:44 +04:00
|
|
|
if (update->asynchronous)
|
|
|
|
{
|
|
|
|
CloseHandle(update->thread);
|
2013-01-25 04:08:30 +04:00
|
|
|
MessageQueue_Free(update->queue);
|
2013-01-24 23:09:44 +04:00
|
|
|
}
|
2013-01-18 22:50:35 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(update);
|
2011-07-27 02:32:14 +04:00
|
|
|
}
|
|
|
|
}
|