133 lines
2.8 KiB
C
133 lines
2.8 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* Virtual Channels
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <freerdp/freerdp.h>
|
|
#include <freerdp/peer.h>
|
|
#include <freerdp/constants.h>
|
|
#include <winpr/stream.h>
|
|
|
|
#include "rdp.h"
|
|
#include "channel.h"
|
|
|
|
BOOL freerdp_channel_send(rdpRdp* rdp, UINT16 channel_id, BYTE* data, int size)
|
|
{
|
|
wStream* s;
|
|
UINT32 flags;
|
|
int i, left;
|
|
int chunk_size;
|
|
rdpChannel* channel = NULL;
|
|
|
|
for (i = 0; i < rdp->settings->ChannelCount; i++)
|
|
{
|
|
if (rdp->settings->ChannelDefArray[i].ChannelId == channel_id)
|
|
{
|
|
channel = &rdp->settings->ChannelDefArray[i];
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!channel)
|
|
{
|
|
fprintf(stderr, "freerdp_channel_send: unknown channel_id %d\n", channel_id);
|
|
return FALSE;
|
|
}
|
|
|
|
flags = CHANNEL_FLAG_FIRST;
|
|
left = size;
|
|
|
|
while (left > 0)
|
|
{
|
|
s = rdp_send_stream_init(rdp);
|
|
|
|
if (left > (int) rdp->settings->VirtualChannelChunkSize)
|
|
{
|
|
chunk_size = rdp->settings->VirtualChannelChunkSize;
|
|
}
|
|
else
|
|
{
|
|
chunk_size = left;
|
|
flags |= CHANNEL_FLAG_LAST;
|
|
}
|
|
|
|
if ((channel->options & CHANNEL_OPTION_SHOW_PROTOCOL))
|
|
{
|
|
flags |= CHANNEL_FLAG_SHOW_PROTOCOL;
|
|
}
|
|
|
|
Stream_Write_UINT32(s, size);
|
|
Stream_Write_UINT32(s, flags);
|
|
Stream_EnsureCapacity(s, chunk_size);
|
|
Stream_Write(s, data, chunk_size);
|
|
|
|
rdp_send(rdp, s, channel_id);
|
|
|
|
data += chunk_size;
|
|
left -= chunk_size;
|
|
flags = 0;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL freerdp_channel_process(freerdp* instance, wStream* s, UINT16 channel_id)
|
|
{
|
|
UINT32 length;
|
|
UINT32 flags;
|
|
int chunk_length;
|
|
|
|
if (Stream_GetRemainingLength(s) < 8)
|
|
return FALSE;
|
|
|
|
Stream_Read_UINT32(s, length);
|
|
Stream_Read_UINT32(s, flags);
|
|
chunk_length = Stream_GetRemainingLength(s);
|
|
|
|
IFCALL(instance->ReceiveChannelData, instance,
|
|
channel_id, Stream_Pointer(s), chunk_length, flags, length);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL freerdp_channel_peer_process(freerdp_peer* client, wStream* s, UINT16 channel_id)
|
|
{
|
|
UINT32 length;
|
|
UINT32 flags;
|
|
int chunk_length;
|
|
|
|
if (Stream_GetRemainingLength(s) < 8)
|
|
return FALSE;
|
|
|
|
Stream_Read_UINT32(s, length);
|
|
Stream_Read_UINT32(s, flags);
|
|
chunk_length = Stream_GetRemainingLength(s);
|
|
|
|
IFCALL(client->ReceiveChannelData, client,
|
|
channel_id, Stream_Pointer(s), chunk_length, flags, length);
|
|
|
|
return TRUE;
|
|
}
|