2011-08-23 17:01:19 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-23 17:01:19 +04:00
|
|
|
* Surface Commands
|
|
|
|
*
|
|
|
|
* Copyright 2011 Vic Lee
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2011-08-27 04:26:40 +04:00
|
|
|
#include <freerdp/utils/pcap.h>
|
|
|
|
|
2011-08-23 17:01:19 +04:00
|
|
|
#include "surface.h"
|
|
|
|
|
|
|
|
static int update_recv_surfcmd_surface_bits(rdpUpdate* update, STREAM* s)
|
|
|
|
{
|
|
|
|
int pos;
|
2011-08-27 05:44:37 +04:00
|
|
|
SURFACE_BITS_COMMAND* cmd = &update->surface_bits_command;
|
2011-08-23 17:01:19 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, cmd->destLeft);
|
|
|
|
stream_read_UINT16(s, cmd->destTop);
|
|
|
|
stream_read_UINT16(s, cmd->destRight);
|
|
|
|
stream_read_UINT16(s, cmd->destBottom);
|
|
|
|
stream_read_BYTE(s, cmd->bpp);
|
2011-08-23 17:01:19 +04:00
|
|
|
stream_seek(s, 2); /* reserved1, reserved2 */
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_BYTE(s, cmd->codecID);
|
|
|
|
stream_read_UINT16(s, cmd->width);
|
|
|
|
stream_read_UINT16(s, cmd->height);
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_read_UINT32(s, cmd->bitmapDataLength);
|
2011-08-23 17:01:19 +04:00
|
|
|
pos = stream_get_pos(s) + cmd->bitmapDataLength;
|
|
|
|
cmd->bitmapData = stream_get_tail(s);
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
IFCALL(update->SurfaceBits, update->context, cmd);
|
2011-08-23 17:01:19 +04:00
|
|
|
|
|
|
|
stream_set_pos(s, pos);
|
|
|
|
|
|
|
|
return 20 + cmd->bitmapDataLength;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
static void update_send_frame_acknowledge(rdpRdp* rdp, UINT32 frameId)
|
2012-05-11 11:34:51 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
|
|
|
|
s = rdp_data_pdu_init(rdp);
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_write_UINT32(s, frameId);
|
2012-05-11 11:34:51 +04:00
|
|
|
rdp_send_data_pdu(rdp, s, DATA_PDU_TYPE_FRAME_ACKNOWLEDGE, rdp->mcs->user_id);
|
|
|
|
}
|
|
|
|
|
2011-08-23 17:01:19 +04:00
|
|
|
static int update_recv_surfcmd_frame_marker(rdpUpdate* update, STREAM* s)
|
|
|
|
{
|
2011-11-25 20:30:15 +04:00
|
|
|
SURFACE_FRAME_MARKER* marker = &update->surface_frame_marker;
|
2011-08-23 17:01:19 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, marker->frameAction);
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_read_UINT32(s, marker->frameId);
|
2011-08-23 17:01:19 +04:00
|
|
|
|
2011-11-25 20:30:15 +04:00
|
|
|
IFCALL(update->SurfaceFrameMarker, update->context, marker);
|
2011-11-25 14:48:51 +04:00
|
|
|
|
2012-11-08 00:13:14 +04:00
|
|
|
if (update->context->rdp->settings->ReceivedCapabilities[CAPSET_TYPE_FRAME_ACKNOWLEDGE] && update->context->rdp->settings->FrameAcknowledge > 0 && marker->frameAction == SURFACECMD_FRAMEACTION_END)
|
2012-05-11 11:34:51 +04:00
|
|
|
{
|
|
|
|
update_send_frame_acknowledge(update->context->rdp, marker->frameId);
|
|
|
|
}
|
|
|
|
|
2011-08-23 17:01:19 +04:00
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
|
2013-01-09 02:18:10 +04:00
|
|
|
int update_recv_surfcmds(rdpUpdate* update, UINT32 size, STREAM* s)
|
2011-08-23 17:01:19 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* mark;
|
|
|
|
UINT16 cmdType;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 cmdLength;
|
2011-08-27 04:26:40 +04:00
|
|
|
|
2011-08-27 05:44:37 +04:00
|
|
|
while (size > 2)
|
|
|
|
{
|
2011-08-28 01:11:20 +04:00
|
|
|
stream_get_mark(s, mark);
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_read_UINT16(s, cmdType);
|
2011-08-23 17:01:19 +04:00
|
|
|
size -= 2;
|
|
|
|
|
|
|
|
switch (cmdType)
|
|
|
|
{
|
|
|
|
case CMDTYPE_SET_SURFACE_BITS:
|
|
|
|
case CMDTYPE_STREAM_SURFACE_BITS:
|
2011-08-28 01:11:20 +04:00
|
|
|
cmdLength = update_recv_surfcmd_surface_bits(update, s);
|
2011-08-23 17:01:19 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CMDTYPE_FRAME_MARKER:
|
2011-08-28 01:11:20 +04:00
|
|
|
cmdLength = update_recv_surfcmd_frame_marker(update, s);
|
2011-08-23 17:01:19 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DEBUG_WARN("unknown cmdType 0x%X", cmdType);
|
2013-01-09 02:18:10 +04:00
|
|
|
return -1;
|
2011-08-23 17:01:19 +04:00
|
|
|
}
|
2011-08-28 01:11:20 +04:00
|
|
|
|
|
|
|
size -= cmdLength;
|
|
|
|
|
|
|
|
if (update->dump_rfx)
|
|
|
|
{
|
|
|
|
pcap_add_record(update->pcap_rfx, mark, cmdLength + 2);
|
|
|
|
pcap_flush(update->pcap_rfx);
|
|
|
|
}
|
2011-08-23 17:01:19 +04:00
|
|
|
}
|
2013-01-09 02:18:10 +04:00
|
|
|
|
|
|
|
return 0;
|
2011-08-23 17:01:19 +04:00
|
|
|
}
|
|
|
|
|
2011-08-24 06:07:06 +04:00
|
|
|
void update_write_surfcmd_surface_bits_header(STREAM* s, SURFACE_BITS_COMMAND* cmd)
|
2011-08-23 19:28:28 +04:00
|
|
|
{
|
2011-08-24 06:07:06 +04:00
|
|
|
stream_check_size(s, SURFCMD_SURFACE_BITS_HEADER_LENGTH);
|
2011-08-23 19:28:28 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, CMDTYPE_STREAM_SURFACE_BITS);
|
|
|
|
|
|
|
|
stream_write_UINT16(s, cmd->destLeft);
|
|
|
|
stream_write_UINT16(s, cmd->destTop);
|
|
|
|
stream_write_UINT16(s, cmd->destRight);
|
|
|
|
stream_write_UINT16(s, cmd->destBottom);
|
|
|
|
stream_write_BYTE(s, cmd->bpp);
|
|
|
|
stream_write_UINT16(s, 0); /* reserved1, reserved2 */
|
|
|
|
stream_write_BYTE(s, cmd->codecID);
|
|
|
|
stream_write_UINT16(s, cmd->width);
|
|
|
|
stream_write_UINT16(s, cmd->height);
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_write_UINT32(s, cmd->bitmapDataLength);
|
2011-08-23 19:28:28 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
void update_write_surfcmd_frame_marker(STREAM* s, UINT16 frameAction, UINT32 frameId)
|
2011-08-23 19:28:28 +04:00
|
|
|
{
|
2011-08-24 06:07:06 +04:00
|
|
|
stream_check_size(s, SURFCMD_FRAME_MARKER_LENGTH);
|
2011-08-23 19:28:28 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, CMDTYPE_FRAME_MARKER);
|
2011-08-23 19:28:28 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
stream_write_UINT16(s, frameAction);
|
2012-10-09 11:26:39 +04:00
|
|
|
stream_write_UINT32(s, frameId);
|
2011-08-23 19:28:28 +04:00
|
|
|
}
|
|
|
|
|