2014-02-16 02:42:59 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Server Channels
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-05-29 14:46:50 +03:00
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2014-02-16 02:42:59 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 13:20:38 +03:00
|
|
|
#include <freerdp/config.h>
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
|
2014-09-12 16:36:29 +04:00
|
|
|
#include <freerdp/log.h>
|
2014-02-16 02:42:59 +04:00
|
|
|
#include <freerdp/constants.h>
|
|
|
|
#include <freerdp/server/channels.h>
|
2021-08-25 11:02:46 +03:00
|
|
|
#include <freerdp/channels/drdynvc.h>
|
2023-01-12 15:58:47 +03:00
|
|
|
#include <freerdp/utils/drdynvc.h>
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
#include "rdp.h"
|
|
|
|
|
|
|
|
#include "server.h"
|
|
|
|
|
2014-09-12 16:36:29 +04:00
|
|
|
#define TAG FREERDP_TAG("core.server")
|
2014-02-16 02:42:59 +04:00
|
|
|
#ifdef WITH_DEBUG_DVC
|
2016-10-07 15:04:40 +03:00
|
|
|
#define DEBUG_DVC(...) WLog_DBG(TAG, __VA_ARGS__)
|
2014-02-16 02:42:59 +04:00
|
|
|
#else
|
2019-11-06 17:24:51 +03:00
|
|
|
#define DEBUG_DVC(...) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
} while (0)
|
2014-02-16 02:42:59 +04:00
|
|
|
#endif
|
|
|
|
|
2023-04-27 11:43:36 +03:00
|
|
|
#define DVC_MAX_DATA_PDU_SIZE 1600
|
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
typedef struct
|
2014-07-14 16:00:38 +04:00
|
|
|
{
|
|
|
|
UINT16 channelId;
|
|
|
|
UINT16 reserved;
|
|
|
|
UINT32 length;
|
|
|
|
UINT32 offset;
|
2022-02-14 16:59:22 +03:00
|
|
|
} wtsChannelMessage;
|
2014-07-14 16:00:38 +04:00
|
|
|
|
2014-02-17 08:00:58 +04:00
|
|
|
static DWORD g_SessionId = 1;
|
|
|
|
static wHashTable* g_ServerHandles = NULL;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static rdpPeerChannel* wts_get_dvc_channel_by_id(WTSVirtualChannelManager* vcm, UINT32 ChannelId)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(vcm);
|
2023-10-03 22:41:39 +03:00
|
|
|
return HashTable_GetItemValue(vcm->dynamicVirtualChannels, &ChannelId);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL wts_queue_receive_data(rdpPeerChannel* channel, const BYTE* Buffer, UINT32 Length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
BYTE* buffer = NULL;
|
|
|
|
wtsChannelMessage* messageCtx = NULL;
|
2021-08-24 15:09:40 +03:00
|
|
|
|
|
|
|
WINPR_ASSERT(channel);
|
2019-11-06 17:24:51 +03:00
|
|
|
messageCtx = (wtsChannelMessage*)malloc(sizeof(wtsChannelMessage) + Length);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-25 23:55:37 +03:00
|
|
|
if (!messageCtx)
|
|
|
|
return FALSE;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-07-14 16:00:38 +04:00
|
|
|
messageCtx->channelId = channel->channelId;
|
|
|
|
messageCtx->length = Length;
|
|
|
|
messageCtx->offset = 0;
|
2016-10-07 15:04:40 +03:00
|
|
|
buffer = (BYTE*)(messageCtx + 1);
|
2014-07-14 16:00:38 +04:00
|
|
|
CopyMemory(buffer, Buffer, Length);
|
2015-05-23 23:47:18 +03:00
|
|
|
return MessageQueue_Post(channel->queue, messageCtx, 0, NULL, NULL);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL wts_queue_send_item(rdpPeerChannel* channel, BYTE* Buffer, UINT32 Length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
BYTE* buffer = NULL;
|
|
|
|
UINT32 length = 0;
|
|
|
|
UINT16 channelId = 0;
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
WINPR_ASSERT(channel->vcm);
|
2014-02-16 04:21:41 +04:00
|
|
|
buffer = Buffer;
|
|
|
|
length = Length;
|
|
|
|
channelId = channel->channelId;
|
2019-11-06 17:24:51 +03:00
|
|
|
return MessageQueue_Post(channel->vcm->queue, (void*)(UINT_PTR)channelId, 0, (void*)buffer,
|
|
|
|
(void*)(UINT_PTR)length);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int wts_read_variable_uint(wStream* s, int cbLen, UINT32* val)
|
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(s);
|
|
|
|
WINPR_ASSERT(val);
|
2014-02-16 02:42:59 +04:00
|
|
|
switch (cbLen)
|
|
|
|
{
|
|
|
|
case 0:
|
2022-04-19 15:29:17 +03:00
|
|
|
if (!Stream_CheckAndLogRequiredLength(TAG, s, 1))
|
2014-02-16 02:42:59 +04:00
|
|
|
return 0;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_Read_UINT8(s, *val);
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case 1:
|
2022-04-19 15:29:17 +03:00
|
|
|
if (!Stream_CheckAndLogRequiredLength(TAG, s, 2))
|
2014-02-16 02:42:59 +04:00
|
|
|
return 0;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_Read_UINT16(s, *val);
|
|
|
|
return 2;
|
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
case 2:
|
2022-04-19 15:29:17 +03:00
|
|
|
if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
|
2014-02-16 02:42:59 +04:00
|
|
|
return 0;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_Read_UINT32(s, *val);
|
|
|
|
return 4;
|
2022-03-07 15:40:09 +03:00
|
|
|
|
|
|
|
default:
|
|
|
|
WLog_ERR(TAG, "invalid wts variable uint len %d", cbLen);
|
|
|
|
return 0;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL wts_read_drdynvc_capabilities_response(rdpPeerChannel* channel, UINT32 length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
UINT16 Version = 0;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
WINPR_ASSERT(channel->vcm);
|
2014-02-16 02:42:59 +04:00
|
|
|
if (length < 3)
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
Stream_Seek_UINT8(channel->receiveData); /* Pad (1 byte) */
|
|
|
|
Stream_Read_UINT16(channel->receiveData, Version);
|
2019-11-06 17:24:51 +03:00
|
|
|
DEBUG_DVC("Version: %" PRIu16 "", Version);
|
2023-09-14 16:11:23 +03:00
|
|
|
|
|
|
|
if (Version < 1)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "invalid version %" PRIu16 " for DRDYNVC", Version);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
WTSVirtualChannelManager* vcm = channel->vcm;
|
|
|
|
vcm->drdynvc_state = DRDYNVC_STATE_READY;
|
|
|
|
|
|
|
|
/* we only support version 1 for now (no compression yet) */
|
|
|
|
vcm->dvc_spoken_version = MAX(Version, 1);
|
|
|
|
|
|
|
|
return SetEvent(MessageQueue_Event(vcm->queue));
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL wts_read_drdynvc_create_response(rdpPeerChannel* channel, wStream* s, UINT32 length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
UINT32 CreationStatus = 0;
|
2022-06-07 07:31:48 +03:00
|
|
|
BOOL status = TRUE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
WINPR_ASSERT(s);
|
2014-02-16 02:42:59 +04:00
|
|
|
if (length < 4)
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
Stream_Read_UINT32(s, CreationStatus);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if ((INT32)CreationStatus < 0)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
DEBUG_DVC("ChannelId %" PRIu32 " creation failed (%" PRId32 ")", channel->channelId,
|
|
|
|
(INT32)CreationStatus);
|
2014-02-16 02:42:59 +04:00
|
|
|
channel->dvc_open_state = DVC_OPEN_STATE_FAILED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
DEBUG_DVC("ChannelId %" PRIu32 " creation succeeded", channel->channelId);
|
2014-02-16 02:42:59 +04:00
|
|
|
channel->dvc_open_state = DVC_OPEN_STATE_SUCCEEDED;
|
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2022-12-26 02:01:27 +03:00
|
|
|
channel->creationStatus = (INT32)CreationStatus;
|
2022-06-07 07:31:48 +03:00
|
|
|
IFCALLRET(channel->vcm->dvc_creation_status, status, channel->vcm->dvc_creation_status_userdata,
|
|
|
|
channel->channelId, (INT32)CreationStatus);
|
|
|
|
if (!status)
|
|
|
|
WLog_ERR(TAG, "vcm->dvc_creation_status failed!");
|
|
|
|
|
|
|
|
return status;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL wts_read_drdynvc_data_first(rdpPeerChannel* channel, wStream* s, int cbLen,
|
|
|
|
UINT32 length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
int value = 0;
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
WINPR_ASSERT(s);
|
2014-02-16 02:42:59 +04:00
|
|
|
value = wts_read_variable_uint(s, cbLen, &channel->dvc_total_length);
|
|
|
|
|
|
|
|
if (value == 0)
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
length -= value;
|
|
|
|
|
|
|
|
if (length > channel->dvc_total_length)
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
Stream_SetPosition(channel->receiveData, 0);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2020-04-15 18:47:42 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(channel->receiveData, channel->dvc_total_length))
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2023-06-07 16:38:21 +03:00
|
|
|
Stream_Write(channel->receiveData, Stream_ConstPointer(s), length);
|
2015-05-23 23:47:18 +03:00
|
|
|
return TRUE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL wts_read_drdynvc_data(rdpPeerChannel* channel, wStream* s, UINT32 length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2015-06-23 13:08:47 +03:00
|
|
|
BOOL ret = FALSE;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
WINPR_ASSERT(s);
|
2014-02-16 02:42:59 +04:00
|
|
|
if (channel->dvc_total_length > 0)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
if (Stream_GetPosition(channel->receiveData) + length > channel->dvc_total_length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
|
|
|
channel->dvc_total_length = 0;
|
2015-05-23 23:47:18 +03:00
|
|
|
WLog_ERR(TAG, "incorrect fragment data, discarded.");
|
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2023-06-07 16:38:21 +03:00
|
|
|
Stream_Write(channel->receiveData, Stream_ConstPointer(s), length);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2019-02-07 16:22:28 +03:00
|
|
|
if (Stream_GetPosition(channel->receiveData) >= channel->dvc_total_length)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2016-10-07 15:04:40 +03:00
|
|
|
ret = wts_queue_receive_data(channel, Stream_Buffer(channel->receiveData),
|
|
|
|
channel->dvc_total_length);
|
2014-02-16 02:42:59 +04:00
|
|
|
channel->dvc_total_length = 0;
|
|
|
|
}
|
2020-03-03 14:27:01 +03:00
|
|
|
else
|
|
|
|
ret = TRUE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-06-07 16:38:21 +03:00
|
|
|
ret = wts_queue_receive_data(channel, Stream_ConstPointer(s), length);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
return ret;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wts_read_drdynvc_close_response(rdpPeerChannel* channel)
|
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
2019-11-06 17:24:51 +03:00
|
|
|
DEBUG_DVC("ChannelId %" PRIu32 " close response", channel->channelId);
|
2014-02-16 02:42:59 +04:00
|
|
|
channel->dvc_open_state = DVC_OPEN_STATE_CLOSED;
|
2019-10-25 14:20:28 +03:00
|
|
|
MessageQueue_PostQuit(channel->queue, 0);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
static BOOL wts_read_drdynvc_pdu(rdpPeerChannel* channel)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
UINT32 length = 0;
|
|
|
|
UINT8 value = 0;
|
|
|
|
UINT8 Cmd = 0;
|
|
|
|
UINT8 Sp = 0;
|
|
|
|
UINT8 cbChId = 0;
|
2023-01-13 15:25:32 +03:00
|
|
|
UINT32 ChannelId = 0;
|
2022-04-28 13:16:04 +03:00
|
|
|
rdpPeerChannel* dvc = NULL;
|
2021-08-24 15:09:40 +03:00
|
|
|
|
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
WINPR_ASSERT(channel->vcm);
|
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
length = Stream_GetPosition(channel->receiveData);
|
|
|
|
|
|
|
|
if (length < 1)
|
2015-05-23 23:47:18 +03:00
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
Stream_SetPosition(channel->receiveData, 0);
|
|
|
|
Stream_Read_UINT8(channel->receiveData, value);
|
|
|
|
length--;
|
|
|
|
Cmd = (value & 0xf0) >> 4;
|
|
|
|
Sp = (value & 0x0c) >> 2;
|
|
|
|
cbChId = (value & 0x03) >> 0;
|
|
|
|
|
|
|
|
if (Cmd == CAPABILITY_REQUEST_PDU)
|
2015-05-23 23:47:18 +03:00
|
|
|
return wts_read_drdynvc_capabilities_response(channel, length);
|
2022-03-07 15:40:09 +03:00
|
|
|
|
|
|
|
if (channel->vcm->drdynvc_state == DRDYNVC_STATE_READY)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
BOOL haveChannelId = 0;
|
2022-03-07 15:40:09 +03:00
|
|
|
switch (Cmd)
|
|
|
|
{
|
2022-06-23 08:57:38 +03:00
|
|
|
case SOFT_SYNC_REQUEST_PDU:
|
|
|
|
case SOFT_SYNC_RESPONSE_PDU:
|
|
|
|
haveChannelId = FALSE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
haveChannelId = TRUE;
|
|
|
|
break;
|
2022-03-07 15:40:09 +03:00
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
if (haveChannelId)
|
|
|
|
{
|
|
|
|
value = wts_read_variable_uint(channel->receiveData, cbChId, &ChannelId);
|
|
|
|
if (value == 0)
|
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
length -= value;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2023-01-12 15:58:47 +03:00
|
|
|
DEBUG_DVC("Cmd %s ChannelId %" PRIu32 " length %" PRIu32 "",
|
|
|
|
drdynvc_get_packet_type(Cmd), ChannelId, length);
|
2022-03-07 15:40:09 +03:00
|
|
|
dvc = wts_get_dvc_channel_by_id(channel->vcm, ChannelId);
|
|
|
|
if (!dvc)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2023-10-03 22:41:39 +03:00
|
|
|
DEBUG_DVC("ChannelId %" PRIu32 " does not exist.", ChannelId);
|
2022-03-07 15:40:09 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
switch (Cmd)
|
|
|
|
{
|
|
|
|
case CREATE_REQUEST_PDU:
|
|
|
|
return wts_read_drdynvc_create_response(dvc, channel->receiveData, length);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
case DATA_FIRST_PDU:
|
core/server: Ignore data PDUs for DVCs that were not opened successfully
When a FreeRDP-based server tried to open a DVC, but the client answered
the DVC create request with a negative CreationStatus in the DVC create
response PDU, the server can then assume that no actual PDUs can be
received for that channel.
However, as long as the channel handle exists, FreeRDP happily forwards
any potential PDU for that handle disregarding the CreationStatus.
This is problematic, since the channel handling usually runs in its own
thread and as a result, the channel may not be destructed yet, when
receiving such stray PDU.
The PDU may be processed, even though it is not expected to be.
A situation, where this becomes problematic is the AUDIO_PLAYBACK_DVC
channel.
It may be the case, that the client answered the DVC create request
with a negative result, the server may try to close the handle and open
the static channel (RDPSND) instead, but before the server can close the
channel handle, the client actually sends PDUs regarding the format
negotiation.
In this case, the server may unintentionally already set things up,
which was not desired (the DVC is about to be closed anyway).
While this specific situation is hypothetical, since it would depend on
a malicious client, it is still possible to happen, especially since the
server implementation does not invoke the format negotiation, but
FreeRDP does it automatically, as soon as the DVC create request is
sent.
Fix this issue by discarding any data PDUs (DYNVC_DATA_FIRST and
DYNVC_DATA) of channels, that were not opened successfully.
2022-12-30 15:38:09 +03:00
|
|
|
if (dvc->dvc_open_state != DVC_OPEN_STATE_SUCCEEDED)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG,
|
|
|
|
"ChannelId %" PRIu32 " did not open successfully. "
|
|
|
|
"Ignoring DYNVC_DATA_FIRST PDU",
|
|
|
|
ChannelId);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
return wts_read_drdynvc_data_first(dvc, channel->receiveData, Sp, length);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
case DATA_PDU:
|
core/server: Ignore data PDUs for DVCs that were not opened successfully
When a FreeRDP-based server tried to open a DVC, but the client answered
the DVC create request with a negative CreationStatus in the DVC create
response PDU, the server can then assume that no actual PDUs can be
received for that channel.
However, as long as the channel handle exists, FreeRDP happily forwards
any potential PDU for that handle disregarding the CreationStatus.
This is problematic, since the channel handling usually runs in its own
thread and as a result, the channel may not be destructed yet, when
receiving such stray PDU.
The PDU may be processed, even though it is not expected to be.
A situation, where this becomes problematic is the AUDIO_PLAYBACK_DVC
channel.
It may be the case, that the client answered the DVC create request
with a negative result, the server may try to close the handle and open
the static channel (RDPSND) instead, but before the server can close the
channel handle, the client actually sends PDUs regarding the format
negotiation.
In this case, the server may unintentionally already set things up,
which was not desired (the DVC is about to be closed anyway).
While this specific situation is hypothetical, since it would depend on
a malicious client, it is still possible to happen, especially since the
server implementation does not invoke the format negotiation, but
FreeRDP does it automatically, as soon as the DVC create request is
sent.
Fix this issue by discarding any data PDUs (DYNVC_DATA_FIRST and
DYNVC_DATA) of channels, that were not opened successfully.
2022-12-30 15:38:09 +03:00
|
|
|
if (dvc->dvc_open_state != DVC_OPEN_STATE_SUCCEEDED)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG,
|
|
|
|
"ChannelId %" PRIu32 " did not open successfully. "
|
|
|
|
"Ignoring DYNVC_DATA PDU",
|
|
|
|
ChannelId);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
return wts_read_drdynvc_data(dvc, channel->receiveData, length);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-03-07 15:40:09 +03:00
|
|
|
case CLOSE_REQUEST_PDU:
|
|
|
|
wts_read_drdynvc_close_response(dvc);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DATA_FIRST_COMPRESSED_PDU:
|
|
|
|
case DATA_COMPRESSED_PDU:
|
|
|
|
WLog_ERR(TAG, "Compressed data not handled");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOFT_SYNC_RESPONSE_PDU:
|
2022-06-23 08:57:38 +03:00
|
|
|
WLog_ERR(TAG, "SoftSync response not handled yet(and rather strange to receive "
|
|
|
|
"that packet as our code doesn't send SoftSync requests");
|
2022-03-07 15:40:09 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SOFT_SYNC_REQUEST_PDU:
|
|
|
|
WLog_ERR(TAG, "Not expecting a SoftSyncRequest on the server");
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
WLog_ERR(TAG, "Cmd %d not recognized.", Cmd);
|
|
|
|
break;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "received Cmd %d but channel is not ready.", Cmd);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
return TRUE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2014-10-07 22:56:57 +04:00
|
|
|
static int wts_write_variable_uint(wStream* s, UINT32 val)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
int cb = 0;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(s);
|
2014-02-16 02:42:59 +04:00
|
|
|
if (val <= 0xFF)
|
|
|
|
{
|
|
|
|
cb = 0;
|
2014-10-07 22:56:57 +04:00
|
|
|
Stream_Write_UINT8(s, val);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
else if (val <= 0xFFFF)
|
|
|
|
{
|
|
|
|
cb = 1;
|
2014-10-07 22:56:57 +04:00
|
|
|
Stream_Write_UINT16(s, val);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-29 10:21:37 +04:00
|
|
|
cb = 2;
|
2014-10-07 22:56:57 +04:00
|
|
|
Stream_Write_UINT32(s, val);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return cb;
|
|
|
|
}
|
|
|
|
|
2014-10-07 22:56:57 +04:00
|
|
|
static void wts_write_drdynvc_header(wStream* s, BYTE Cmd, UINT32 ChannelId)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
BYTE* bm = NULL;
|
|
|
|
int cbChId = 0;
|
2021-08-24 15:09:40 +03:00
|
|
|
|
|
|
|
WINPR_ASSERT(s);
|
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_GetPointer(s, bm);
|
|
|
|
Stream_Seek_UINT8(s);
|
|
|
|
cbChId = wts_write_variable_uint(s, ChannelId);
|
|
|
|
*bm = ((Cmd & 0x0F) << 4) | cbChId;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL wts_write_drdynvc_create_request(wStream* s, UINT32 ChannelId, const char* ChannelName)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
size_t len = 0;
|
2021-08-24 15:09:40 +03:00
|
|
|
|
|
|
|
WINPR_ASSERT(s);
|
|
|
|
WINPR_ASSERT(ChannelName);
|
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
wts_write_drdynvc_header(s, CREATE_REQUEST_PDU, ChannelId);
|
2019-11-11 12:01:19 +03:00
|
|
|
len = strlen(ChannelName) + 1;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2019-10-29 12:18:09 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(s, len))
|
2015-05-18 12:28:00 +03:00
|
|
|
return FALSE;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_Write(s, ChannelName, len);
|
2015-05-18 12:28:00 +03:00
|
|
|
return TRUE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL WTSProcessChannelData(rdpPeerChannel* channel, UINT16 channelId, const BYTE* data,
|
2020-03-04 16:52:19 +03:00
|
|
|
size_t s, UINT32 flags, size_t t)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2015-05-23 23:47:18 +03:00
|
|
|
BOOL ret = TRUE;
|
2024-08-29 12:11:11 +03:00
|
|
|
const size_t size = s;
|
|
|
|
const size_t totalSize = t;
|
2020-03-04 16:52:19 +03:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
WINPR_ASSERT(channel->vcm);
|
2020-03-04 16:52:19 +03:00
|
|
|
WINPR_UNUSED(channelId);
|
2015-05-23 23:47:18 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
if (flags & CHANNEL_FLAG_FIRST)
|
|
|
|
{
|
|
|
|
Stream_SetPosition(channel->receiveData, 0);
|
|
|
|
}
|
|
|
|
|
2015-05-23 23:47:18 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(channel->receiveData, size))
|
|
|
|
return FALSE;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_Write(channel->receiveData, data, size);
|
|
|
|
|
|
|
|
if (flags & CHANNEL_FLAG_LAST)
|
|
|
|
{
|
2014-02-16 03:41:40 +04:00
|
|
|
if (Stream_GetPosition(channel->receiveData) != totalSize)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2015-05-23 23:47:18 +03:00
|
|
|
WLog_ERR(TAG, "read error");
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
if (channel == channel->vcm->drdynvc_channel)
|
|
|
|
{
|
2015-05-23 23:47:18 +03:00
|
|
|
ret = wts_read_drdynvc_pdu(channel);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-07 15:04:40 +03:00
|
|
|
ret = wts_queue_receive_data(channel, Stream_Buffer(channel->receiveData),
|
|
|
|
Stream_GetPosition(channel->receiveData));
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_SetPosition(channel->receiveData, 0);
|
|
|
|
}
|
2015-05-23 23:47:18 +03:00
|
|
|
|
|
|
|
return ret;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2020-03-09 12:58:02 +03:00
|
|
|
static BOOL WTSReceiveChannelData(freerdp_peer* client, UINT16 channelId, const BYTE* data,
|
|
|
|
size_t size, UINT32 flags, size_t totalSize)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcs* mcs = NULL;
|
2021-08-24 15:09:40 +03:00
|
|
|
|
|
|
|
WINPR_ASSERT(client);
|
|
|
|
WINPR_ASSERT(client->context);
|
|
|
|
WINPR_ASSERT(client->context->rdp);
|
2022-10-10 12:27:46 +03:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
mcs = client->context->rdp->mcs;
|
|
|
|
WINPR_ASSERT(mcs);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2024-01-30 12:25:38 +03:00
|
|
|
for (UINT32 i = 0; i < mcs->channelCount; i++)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
rdpMcsChannel* cur = &mcs->channels[i];
|
|
|
|
if (cur->ChannelId == channelId)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
rdpPeerChannel* channel = (rdpPeerChannel*)cur->handle;
|
2020-02-21 11:17:00 +03:00
|
|
|
|
|
|
|
if (channel)
|
2021-02-15 12:04:50 +03:00
|
|
|
return WTSProcessChannelData(channel, channelId, data, size, flags, totalSize);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_WARN(TAG, "unknown channelId %" PRIu16 " ignored", channelId);
|
2021-02-15 12:04:50 +03:00
|
|
|
|
|
|
|
return TRUE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2021-08-24 16:04:58 +03:00
|
|
|
#if defined(WITH_FREERDP_DEPRECATED)
|
2019-11-06 17:24:51 +03:00
|
|
|
void WTSVirtualChannelManagerGetFileDescriptor(HANDLE hServer, void** fds, int* fds_count)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
void* fd = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
WTSVirtualChannelManager* vcm = (WTSVirtualChannelManager*)hServer;
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(vcm);
|
|
|
|
WINPR_ASSERT(fds);
|
|
|
|
WINPR_ASSERT(fds_count);
|
|
|
|
|
2014-02-16 04:21:41 +04:00
|
|
|
fd = GetEventWaitObject(MessageQueue_Event(vcm->queue));
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
if (fd)
|
|
|
|
{
|
|
|
|
fds[*fds_count] = fd;
|
|
|
|
(*fds_count)++;
|
|
|
|
}
|
|
|
|
|
2014-02-16 03:41:40 +04:00
|
|
|
#if 0
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
if (vcm->drdynvc_channel)
|
|
|
|
{
|
|
|
|
fd = GetEventWaitObject(vcm->drdynvc_channel->receiveEvent);
|
|
|
|
|
|
|
|
if (fd)
|
|
|
|
{
|
|
|
|
fds[*fds_count] = fd;
|
|
|
|
(*fds_count)++;
|
|
|
|
}
|
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-16 03:41:40 +04:00
|
|
|
#endif
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
2021-08-24 16:04:58 +03:00
|
|
|
#endif
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-06-23 10:17:49 +03:00
|
|
|
BOOL WTSVirtualChannelManagerOpen(HANDLE hServer)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2022-06-23 10:17:49 +03:00
|
|
|
WTSVirtualChannelManager* vcm = (WTSVirtualChannelManager*)hServer;
|
|
|
|
|
2020-08-09 13:38:50 +03:00
|
|
|
if (!vcm)
|
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2022-06-23 10:17:49 +03:00
|
|
|
if (vcm->drdynvc_state == DRDYNVC_STATE_NONE)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpPeerChannel* channel = NULL;
|
2020-08-09 13:38:50 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
/* Initialize drdynvc channel once and only once. */
|
|
|
|
vcm->drdynvc_state = DRDYNVC_STATE_INITIALIZED;
|
2021-08-25 11:02:46 +03:00
|
|
|
channel = (rdpPeerChannel*)WTSVirtualChannelOpen((HANDLE)vcm, WTS_CURRENT_SESSION,
|
|
|
|
DRDYNVC_SVC_CHANNEL_NAME);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
if (channel)
|
|
|
|
{
|
2023-09-14 16:11:23 +03:00
|
|
|
BYTE capaBuffer[12];
|
|
|
|
wStream staticS;
|
|
|
|
wStream* s = Stream_StaticInit(&staticS, capaBuffer, sizeof(capaBuffer));
|
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
vcm->drdynvc_channel = channel;
|
2023-09-14 16:11:23 +03:00
|
|
|
vcm->dvc_spoken_version = 1;
|
|
|
|
Stream_Write_UINT8(s, 0x50); /* Cmd=5 sp=0 cbId=0 */
|
|
|
|
Stream_Write_UINT8(s, 0x00); /* Pad */
|
|
|
|
Stream_Write_UINT16(s, 0x0001); /* Version */
|
|
|
|
|
|
|
|
/* TODO: shall implement version 2 and 3 */
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2024-01-23 18:49:54 +03:00
|
|
|
ULONG written = 0;
|
2023-09-14 16:11:23 +03:00
|
|
|
if (!WTSVirtualChannelWrite(channel, (PCHAR)capaBuffer, Stream_GetPosition(s),
|
|
|
|
&written))
|
2015-05-29 14:46:50 +03:00
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-09 13:38:50 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WTSVirtualChannelManagerCheckFileDescriptorEx(HANDLE hServer, BOOL autoOpen)
|
|
|
|
{
|
2023-06-05 13:16:57 +03:00
|
|
|
wMessage message = { 0 };
|
2020-08-09 13:38:50 +03:00
|
|
|
BOOL status = TRUE;
|
2023-06-05 13:16:57 +03:00
|
|
|
WTSVirtualChannelManager* vcm = NULL;
|
2020-08-09 13:38:50 +03:00
|
|
|
|
|
|
|
if (!hServer || hServer == INVALID_HANDLE_VALUE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
vcm = (WTSVirtualChannelManager*)hServer;
|
|
|
|
|
|
|
|
if (autoOpen)
|
|
|
|
{
|
2022-06-23 10:17:49 +03:00
|
|
|
if (!WTSVirtualChannelManagerOpen(hServer))
|
2020-08-09 13:38:50 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-16 04:21:41 +04:00
|
|
|
while (MessageQueue_Peek(vcm->queue, &message, TRUE))
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
BYTE* buffer = NULL;
|
|
|
|
UINT32 length = 0;
|
|
|
|
UINT16 channelId = 0;
|
2019-11-06 17:24:51 +03:00
|
|
|
channelId = (UINT16)(UINT_PTR)message.context;
|
|
|
|
buffer = (BYTE*)message.wParam;
|
|
|
|
length = (UINT32)(UINT_PTR)message.lParam;
|
2014-02-16 03:41:40 +04:00
|
|
|
|
2021-09-17 10:27:01 +03:00
|
|
|
WINPR_ASSERT(vcm->client);
|
|
|
|
WINPR_ASSERT(vcm->client->SendChannelData);
|
2020-03-09 12:33:58 +03:00
|
|
|
if (!vcm->client->SendChannelData(vcm->client, channelId, buffer, length))
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2014-02-16 03:41:40 +04:00
|
|
|
status = FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2014-02-16 04:21:41 +04:00
|
|
|
free(buffer);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2014-02-16 03:41:40 +04:00
|
|
|
if (!status)
|
2014-02-16 02:42:59 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-02-16 03:41:40 +04:00
|
|
|
return status;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2020-08-09 13:38:50 +03:00
|
|
|
BOOL WTSVirtualChannelManagerCheckFileDescriptor(HANDLE hServer)
|
|
|
|
{
|
|
|
|
return WTSVirtualChannelManagerCheckFileDescriptorEx(hServer, TRUE);
|
|
|
|
}
|
|
|
|
|
2014-02-27 22:30:04 +04:00
|
|
|
HANDLE WTSVirtualChannelManagerGetEventHandle(HANDLE hServer)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WTSVirtualChannelManager* vcm = (WTSVirtualChannelManager*)hServer;
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(vcm);
|
2014-02-16 04:21:41 +04:00
|
|
|
return MessageQueue_Event(vcm->queue);
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static rdpMcsChannel* wts_get_joined_channel_by_name(rdpMcs* mcs, const char* channel_name)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
if (!mcs || !channel_name || !strnlen(channel_name, CHANNEL_NAME_LEN + 1))
|
2014-05-07 22:20:02 +04:00
|
|
|
return NULL;
|
|
|
|
|
2024-01-30 12:25:38 +03:00
|
|
|
for (UINT32 index = 0; index < mcs->channelCount; index++)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
rdpMcsChannel* mchannel = &mcs->channels[index];
|
|
|
|
if (mchannel->joined)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
if (_strnicmp(mchannel->Name, channel_name, CHANNEL_NAME_LEN + 1) == 0)
|
|
|
|
return mchannel;
|
2014-10-07 22:56:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2014-05-07 22:20:02 +04:00
|
|
|
}
|
2014-02-27 22:30:04 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static rdpMcsChannel* wts_get_joined_channel_by_id(rdpMcs* mcs, const UINT16 channel_id)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
|
|
|
if (!mcs || !channel_id)
|
|
|
|
return NULL;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(mcs->channels);
|
2024-01-30 12:25:38 +03:00
|
|
|
for (UINT32 index = 0; index < mcs->channelCount; index++)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
rdpMcsChannel* mchannel = &mcs->channels[index];
|
|
|
|
if (mchannel->joined)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
if (mchannel->ChannelId == channel_id)
|
2014-05-07 22:20:02 +04:00
|
|
|
return &mcs->channels[index];
|
2014-10-07 22:56:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2014-05-07 22:20:02 +04:00
|
|
|
}
|
|
|
|
|
2014-10-07 22:56:57 +04:00
|
|
|
BOOL WTSIsChannelJoinedByName(freerdp_peer* client, const char* channel_name)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
return wts_get_joined_channel_by_name(client->context->rdp->mcs, channel_name) == NULL ? FALSE
|
|
|
|
: TRUE;
|
2014-05-07 22:20:02 +04:00
|
|
|
}
|
|
|
|
|
2014-10-07 22:56:57 +04:00
|
|
|
BOOL WTSIsChannelJoinedById(freerdp_peer* client, const UINT16 channel_id)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
return wts_get_joined_channel_by_id(client->context->rdp->mcs, channel_id) == NULL ? FALSE
|
|
|
|
: TRUE;
|
2014-05-07 22:20:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WTSVirtualChannelManagerIsChannelJoined(HANDLE hServer, const char* name)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WTSVirtualChannelManager* vcm = (WTSVirtualChannelManager*)hServer;
|
2014-05-07 22:20:02 +04:00
|
|
|
|
|
|
|
if (!vcm || !vcm->rdp)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
return wts_get_joined_channel_by_name(vcm->rdp->mcs, name) == NULL ? FALSE : TRUE;
|
2014-05-07 22:20:02 +04:00
|
|
|
}
|
|
|
|
|
2016-05-03 19:48:59 +03:00
|
|
|
BYTE WTSVirtualChannelManagerGetDrdynvcState(HANDLE hServer)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WTSVirtualChannelManager* vcm = (WTSVirtualChannelManager*)hServer;
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(vcm);
|
2016-05-03 19:48:59 +03:00
|
|
|
return vcm->drdynvc_state;
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:31:48 +03:00
|
|
|
void WTSVirtualChannelManagerSetDVCCreationCallback(HANDLE hServer, psDVCCreationStatusCallback cb,
|
|
|
|
void* userdata)
|
|
|
|
{
|
|
|
|
WTSVirtualChannelManager* vcm = hServer;
|
|
|
|
|
|
|
|
WINPR_ASSERT(vcm);
|
|
|
|
|
|
|
|
vcm->dvc_creation_status = cb;
|
|
|
|
vcm->dvc_creation_status_userdata = userdata;
|
|
|
|
}
|
|
|
|
|
2014-10-07 22:56:57 +04:00
|
|
|
UINT16 WTSChannelGetId(freerdp_peer* client, const char* channel_name)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcsChannel* channel = NULL;
|
2014-05-07 22:20:02 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel_name);
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return 0;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
channel = wts_get_joined_channel_by_name(client->context->rdp->mcs, channel_name);
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!channel)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return channel->ChannelId;
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:31:48 +03:00
|
|
|
UINT32 WTSChannelGetIdByHandle(HANDLE hChannelHandle)
|
|
|
|
{
|
|
|
|
rdpPeerChannel* channel = hChannelHandle;
|
|
|
|
|
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
|
|
|
|
return channel->channelId;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WTSChannelSetHandleByName(freerdp_peer* client, const char* channel_name, void* handle)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcsChannel* channel = NULL;
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel_name);
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
channel = wts_get_joined_channel_by_name(client->context->rdp->mcs, channel_name);
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!channel)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
channel->handle = handle;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WTSChannelSetHandleById(freerdp_peer* client, const UINT16 channel_id, void* handle)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcsChannel* channel = NULL;
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
channel = wts_get_joined_channel_by_id(client->context->rdp->mcs, channel_id);
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!channel)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
channel->handle = handle;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
void* WTSChannelGetHandleByName(freerdp_peer* client, const char* channel_name)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcsChannel* channel = NULL;
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel_name);
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return NULL;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
channel = wts_get_joined_channel_by_name(client->context->rdp->mcs, channel_name);
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!channel)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return channel->handle;
|
|
|
|
}
|
|
|
|
|
2014-10-07 22:56:57 +04:00
|
|
|
void* WTSChannelGetHandleById(freerdp_peer* client, const UINT16 channel_id)
|
2014-05-07 22:20:02 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcsChannel* channel = NULL;
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
channel = wts_get_joined_channel_by_id(client->context->rdp->mcs, channel_id);
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
if (!channel)
|
|
|
|
return NULL;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2014-05-07 22:20:02 +04:00
|
|
|
return channel->handle;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2020-02-02 16:01:38 +03:00
|
|
|
const char* WTSChannelGetName(freerdp_peer* client, UINT16 channel_id)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcsChannel* channel = NULL;
|
2020-02-02 16:01:38 +03:00
|
|
|
|
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
channel = wts_get_joined_channel_by_id(client->context->rdp->mcs, channel_id);
|
|
|
|
|
|
|
|
if (!channel)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return (const char*)channel->Name;
|
|
|
|
}
|
|
|
|
|
2020-09-21 10:43:23 +03:00
|
|
|
char** WTSGetAcceptedChannelNames(freerdp_peer* client, size_t* count)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcs* mcs = NULL;
|
|
|
|
char** names = NULL;
|
2020-09-21 10:43:23 +03:00
|
|
|
|
|
|
|
if (!client || !client->context || !count)
|
|
|
|
return NULL;
|
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(client->context->rdp);
|
2020-09-21 10:43:23 +03:00
|
|
|
mcs = client->context->rdp->mcs;
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(mcs);
|
2020-09-21 10:43:23 +03:00
|
|
|
*count = mcs->channelCount;
|
|
|
|
|
|
|
|
names = (char**)calloc(mcs->channelCount, sizeof(char*));
|
|
|
|
if (!names)
|
|
|
|
return NULL;
|
|
|
|
|
2024-01-30 12:25:38 +03:00
|
|
|
for (UINT32 index = 0; index < mcs->channelCount; index++)
|
2021-08-24 15:09:40 +03:00
|
|
|
{
|
|
|
|
rdpMcsChannel* mchannel = &mcs->channels[index];
|
|
|
|
names[index] = mchannel->Name;
|
|
|
|
}
|
2020-09-21 10:43:23 +03:00
|
|
|
|
|
|
|
return names;
|
|
|
|
}
|
|
|
|
|
2022-06-02 14:34:07 +03:00
|
|
|
INT64 WTSChannelGetOptions(freerdp_peer* client, UINT16 channel_id)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcsChannel* channel = NULL;
|
2022-06-02 14:34:07 +03:00
|
|
|
|
|
|
|
if (!client || !client->context || !client->context->rdp)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
channel = wts_get_joined_channel_by_id(client->context->rdp->mcs, channel_id);
|
|
|
|
|
|
|
|
if (!channel)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return (INT64)channel->options;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSStartRemoteControlSessionW(LPWSTR pTargetServerName, ULONG TargetLogonId,
|
|
|
|
BYTE HotkeyVk, USHORT HotkeyModifiers)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2014-02-17 06:19:25 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSStartRemoteControlSessionA(LPSTR pTargetServerName, ULONG TargetLogonId,
|
|
|
|
BYTE HotkeyVk, USHORT HotkeyModifiers)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-16 03:41:40 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSStartRemoteControlSessionExW(LPWSTR pTargetServerName, ULONG TargetLogonId,
|
|
|
|
BYTE HotkeyVk, USHORT HotkeyModifiers,
|
|
|
|
DWORD flags)
|
2015-02-16 14:16:54 +03:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSStartRemoteControlSessionExA(LPSTR pTargetServerName, ULONG TargetLogonId,
|
|
|
|
BYTE HotkeyVk, USHORT HotkeyModifiers,
|
|
|
|
DWORD flags)
|
2015-02-16 14:16:54 +03:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSStopRemoteControlSession(ULONG LogonId)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSConnectSessionW(ULONG LogonId, ULONG TargetLogonId, PWSTR pPassword,
|
|
|
|
BOOL bWait)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSConnectSessionA(ULONG LogonId, ULONG TargetLogonId, PSTR pPassword,
|
|
|
|
BOOL bWait)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateServersW(LPWSTR pDomainName, DWORD Reserved, DWORD Version,
|
|
|
|
PWTS_SERVER_INFOW* ppServerInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateServersA(LPSTR pDomainName, DWORD Reserved, DWORD Version,
|
|
|
|
PWTS_SERVER_INFOA* ppServerInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
HANDLE WINAPI FreeRDP_WTSOpenServerW(LPWSTR pServerName)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2020-01-02 16:48:13 +03:00
|
|
|
static void wts_virtual_channel_manager_free_message(void* obj)
|
|
|
|
{
|
|
|
|
wMessage* msg = (wMessage*)obj;
|
|
|
|
|
|
|
|
if (msg)
|
|
|
|
{
|
|
|
|
BYTE* buffer = (BYTE*)msg->wParam;
|
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
free(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-16 22:52:11 +03:00
|
|
|
static void channel_free(rdpPeerChannel* channel)
|
|
|
|
{
|
|
|
|
server_channel_common_free(channel);
|
|
|
|
}
|
2021-09-17 10:27:01 +03:00
|
|
|
|
2021-10-18 12:36:14 +03:00
|
|
|
static void array_channel_free(void* ptr)
|
|
|
|
{
|
|
|
|
rdpPeerChannel* channel = ptr;
|
|
|
|
channel_free(channel);
|
|
|
|
}
|
|
|
|
|
2023-10-03 22:41:39 +03:00
|
|
|
static BOOL dynChannelMatch(const void* v1, const void* v2)
|
|
|
|
{
|
|
|
|
const UINT32* p1 = (const UINT32*)v1;
|
|
|
|
const UINT32* p2 = (const UINT32*)v2;
|
|
|
|
return *p1 == *p2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT32 channelId_Hash(const void* key)
|
|
|
|
{
|
|
|
|
const UINT32* v = (const UINT32*)key;
|
|
|
|
return *v;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
HANDLE WINAPI FreeRDP_WTSOpenServerA(LPSTR pServerName)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpContext* context = NULL;
|
|
|
|
freerdp_peer* client = NULL;
|
|
|
|
WTSVirtualChannelManager* vcm = NULL;
|
2014-02-17 07:07:00 +04:00
|
|
|
HANDLE hServer = INVALID_HANDLE_VALUE;
|
2020-01-02 16:48:13 +03:00
|
|
|
wObject queueCallbacks = { 0 };
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
context = (rdpContext*)pServerName;
|
2014-02-17 07:07:00 +04:00
|
|
|
|
|
|
|
if (!context)
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
|
|
|
|
client = context->peer;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 07:07:00 +04:00
|
|
|
if (!client)
|
2015-05-20 20:19:50 +03:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_DATA);
|
2014-02-17 07:07:00 +04:00
|
|
|
return INVALID_HANDLE_VALUE;
|
2015-05-20 20:19:50 +03:00
|
|
|
}
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
vcm = (WTSVirtualChannelManager*)calloc(1, sizeof(WTSVirtualChannelManager));
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!vcm)
|
2015-05-20 20:19:50 +03:00
|
|
|
goto error_vcm_alloc;
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
vcm->client = client;
|
|
|
|
vcm->rdp = context->rdp;
|
|
|
|
vcm->SessionId = g_SessionId++;
|
2014-02-17 08:00:58 +04:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!g_ServerHandles)
|
|
|
|
{
|
|
|
|
g_ServerHandles = HashTable_New(TRUE);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 08:00:58 +04:00
|
|
|
if (!g_ServerHandles)
|
2015-05-18 12:28:00 +03:00
|
|
|
goto error_free;
|
|
|
|
}
|
2014-02-17 08:00:58 +04:00
|
|
|
|
2021-06-09 13:31:10 +03:00
|
|
|
if (!HashTable_Insert(g_ServerHandles, (void*)(UINT_PTR)vcm->SessionId, (void*)vcm))
|
2015-05-18 12:28:00 +03:00
|
|
|
goto error_free;
|
2014-02-17 08:00:58 +04:00
|
|
|
|
2020-01-02 16:48:13 +03:00
|
|
|
queueCallbacks.fnObjectFree = wts_virtual_channel_manager_free_message;
|
|
|
|
vcm->queue = MessageQueue_New(&queueCallbacks);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!vcm->queue)
|
|
|
|
goto error_queue;
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
vcm->dvc_channel_id_seq = 0;
|
2023-10-03 22:41:39 +03:00
|
|
|
vcm->dynamicVirtualChannels = HashTable_New(TRUE);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!vcm->dynamicVirtualChannels)
|
|
|
|
goto error_dynamicVirtualChannels;
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2023-10-03 22:41:39 +03:00
|
|
|
if (!HashTable_SetHashFunction(vcm->dynamicVirtualChannels, channelId_Hash))
|
|
|
|
goto error_hashFunction;
|
|
|
|
|
2021-09-17 10:27:01 +03:00
|
|
|
{
|
2023-10-03 22:41:39 +03:00
|
|
|
wObject* obj = HashTable_ValueObject(vcm->dynamicVirtualChannels);
|
2021-09-17 10:27:01 +03:00
|
|
|
WINPR_ASSERT(obj);
|
2021-10-18 12:36:14 +03:00
|
|
|
obj->fnObjectFree = array_channel_free;
|
2023-10-03 22:41:39 +03:00
|
|
|
|
|
|
|
obj = HashTable_KeyObject(vcm->dynamicVirtualChannels);
|
|
|
|
obj->fnObjectEquals = dynChannelMatch;
|
2021-09-17 10:27:01 +03:00
|
|
|
}
|
2015-05-18 12:28:00 +03:00
|
|
|
client->ReceiveChannelData = WTSReceiveChannelData;
|
2019-11-06 17:24:51 +03:00
|
|
|
hServer = (HANDLE)vcm;
|
2014-02-17 07:07:00 +04:00
|
|
|
return hServer;
|
2023-10-03 22:41:39 +03:00
|
|
|
|
|
|
|
error_hashFunction:
|
|
|
|
HashTable_Free(vcm->dynamicVirtualChannels);
|
2015-05-18 12:28:00 +03:00
|
|
|
error_dynamicVirtualChannels:
|
|
|
|
MessageQueue_Free(vcm->queue);
|
|
|
|
error_queue:
|
2019-11-06 17:24:51 +03:00
|
|
|
HashTable_Remove(g_ServerHandles, (void*)(UINT_PTR)vcm->SessionId);
|
2015-05-18 12:28:00 +03:00
|
|
|
error_free:
|
|
|
|
free(vcm);
|
2015-05-20 20:19:50 +03:00
|
|
|
error_vcm_alloc:
|
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
2015-05-18 12:28:00 +03:00
|
|
|
return INVALID_HANDLE_VALUE;
|
2014-02-17 06:19:25 +04:00
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
HANDLE WINAPI FreeRDP_WTSOpenServerExW(LPWSTR pServerName)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
HANDLE WINAPI FreeRDP_WTSOpenServerExA(LPSTR pServerName)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
2014-02-17 07:07:00 +04:00
|
|
|
return FreeRDP_WTSOpenServerA(pServerName);
|
2014-02-17 06:19:25 +04:00
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
VOID WINAPI FreeRDP_WTSCloseServer(HANDLE hServer)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
WTSVirtualChannelManager* vcm = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
vcm = (WTSVirtualChannelManager*)hServer;
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2021-09-17 10:27:01 +03:00
|
|
|
if (vcm && (vcm != INVALID_HANDLE_VALUE))
|
2014-02-17 07:07:00 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
HashTable_Remove(g_ServerHandles, (void*)(UINT_PTR)vcm->SessionId);
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2023-10-03 22:41:39 +03:00
|
|
|
HashTable_Free(vcm->dynamicVirtualChannels);
|
2014-02-17 07:07:00 +04:00
|
|
|
|
|
|
|
if (vcm->drdynvc_channel)
|
|
|
|
{
|
2024-09-14 22:07:03 +03:00
|
|
|
(void)WTSVirtualChannelClose(vcm->drdynvc_channel);
|
2014-02-17 07:07:00 +04:00
|
|
|
vcm->drdynvc_channel = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageQueue_Free(vcm->queue);
|
|
|
|
free(vcm);
|
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateSessionsW(HANDLE hServer, DWORD Reserved, DWORD Version,
|
|
|
|
PWTS_SESSION_INFOW* ppSessionInfo, DWORD* pCount)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2014-02-17 06:19:25 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateSessionsA(HANDLE hServer, DWORD Reserved, DWORD Version,
|
|
|
|
PWTS_SESSION_INFOA* ppSessionInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateSessionsExW(HANDLE hServer, DWORD* pLevel, DWORD Filter,
|
|
|
|
PWTS_SESSION_INFO_1W* ppSessionInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateSessionsExA(HANDLE hServer, DWORD* pLevel, DWORD Filter,
|
|
|
|
PWTS_SESSION_INFO_1A* ppSessionInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateProcessesW(HANDLE hServer, DWORD Reserved, DWORD Version,
|
|
|
|
PWTS_PROCESS_INFOW* ppProcessInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateProcessesA(HANDLE hServer, DWORD Reserved, DWORD Version,
|
|
|
|
PWTS_PROCESS_INFOA* ppProcessInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSTerminateProcess(HANDLE hServer, DWORD ProcessId, DWORD ExitCode)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSQuerySessionInformationW(HANDLE hServer, DWORD SessionId,
|
2019-11-06 17:24:51 +03:00
|
|
|
WTS_INFO_CLASS WTSInfoClass, LPWSTR* ppBuffer,
|
|
|
|
DWORD* pBytesReturned)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSQuerySessionInformationA(HANDLE hServer, DWORD SessionId,
|
2019-11-06 17:24:51 +03:00
|
|
|
WTS_INFO_CLASS WTSInfoClass, LPSTR* ppBuffer,
|
|
|
|
DWORD* pBytesReturned)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
DWORD BytesReturned = 0;
|
|
|
|
WTSVirtualChannelManager* vcm = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
vcm = (WTSVirtualChannelManager*)hServer;
|
2014-02-17 08:00:58 +04:00
|
|
|
|
|
|
|
if (!vcm)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (WTSInfoClass == WTSSessionId)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
ULONG* pBuffer = NULL;
|
2014-02-17 08:00:58 +04:00
|
|
|
BytesReturned = sizeof(ULONG);
|
2019-11-06 17:24:51 +03:00
|
|
|
pBuffer = (ULONG*)malloc(sizeof(BytesReturned));
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!pBuffer)
|
|
|
|
{
|
|
|
|
SetLastError(E_OUTOFMEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-17 08:00:58 +04:00
|
|
|
|
|
|
|
*pBuffer = vcm->SessionId;
|
2019-11-06 17:24:51 +03:00
|
|
|
*ppBuffer = (LPSTR)pBuffer;
|
2014-02-17 08:00:58 +04:00
|
|
|
*pBytesReturned = BytesReturned;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-02-17 06:19:25 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSQueryUserConfigW(LPWSTR pServerName, LPWSTR pUserName,
|
2019-11-06 17:24:51 +03:00
|
|
|
WTS_CONFIG_CLASS WTSConfigClass, LPWSTR* ppBuffer,
|
|
|
|
DWORD* pBytesReturned)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSQueryUserConfigA(LPSTR pServerName, LPSTR pUserName,
|
2019-11-06 17:24:51 +03:00
|
|
|
WTS_CONFIG_CLASS WTSConfigClass, LPSTR* ppBuffer,
|
|
|
|
DWORD* pBytesReturned)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSSetUserConfigW(LPWSTR pServerName, LPWSTR pUserName,
|
2019-11-06 17:24:51 +03:00
|
|
|
WTS_CONFIG_CLASS WTSConfigClass, LPWSTR pBuffer,
|
|
|
|
DWORD DataLength)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSSetUserConfigA(LPSTR pServerName, LPSTR pUserName,
|
2019-11-06 17:24:51 +03:00
|
|
|
WTS_CONFIG_CLASS WTSConfigClass, LPSTR pBuffer,
|
|
|
|
DWORD DataLength)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSSendMessageW(HANDLE hServer, DWORD SessionId, LPWSTR pTitle,
|
|
|
|
DWORD TitleLength, LPWSTR pMessage, DWORD MessageLength,
|
|
|
|
DWORD Style, DWORD Timeout, DWORD* pResponse, BOOL bWait)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSSendMessageA(HANDLE hServer, DWORD SessionId, LPSTR pTitle,
|
|
|
|
DWORD TitleLength, LPSTR pMessage, DWORD MessageLength,
|
|
|
|
DWORD Style, DWORD Timeout, DWORD* pResponse, BOOL bWait)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSDisconnectSession(HANDLE hServer, DWORD SessionId, BOOL bWait)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSLogoffSession(HANDLE hServer, DWORD SessionId, BOOL bWait)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSShutdownSystem(HANDLE hServer, DWORD ShutdownFlag)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSWaitSystemEvent(HANDLE hServer, DWORD EventMask, DWORD* pEventFlags)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 12:25:43 +03:00
|
|
|
static void peer_channel_queue_free_message(void* obj)
|
|
|
|
{
|
2020-02-04 15:51:47 +03:00
|
|
|
wMessage* msg = (wMessage*)obj;
|
|
|
|
if (!msg)
|
|
|
|
return;
|
|
|
|
|
|
|
|
free(msg->context);
|
2023-08-21 13:48:23 +03:00
|
|
|
msg->context = NULL;
|
2020-01-16 12:25:43 +03:00
|
|
|
}
|
|
|
|
|
2020-01-16 13:31:13 +03:00
|
|
|
static rdpPeerChannel* channel_new(WTSVirtualChannelManager* vcm, freerdp_peer* client,
|
2022-10-10 12:27:46 +03:00
|
|
|
UINT32 ChannelId, UINT16 index, UINT16 type, size_t chunkSize,
|
|
|
|
const char* name)
|
2020-01-16 13:31:13 +03:00
|
|
|
{
|
|
|
|
wObject queueCallbacks = { 0 };
|
2023-12-16 22:52:11 +03:00
|
|
|
queueCallbacks.fnObjectFree = peer_channel_queue_free_message;
|
|
|
|
|
|
|
|
rdpPeerChannel* channel =
|
|
|
|
server_channel_common_new(client, index, ChannelId, chunkSize, &queueCallbacks, name);
|
2020-01-16 13:31:13 +03:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(vcm);
|
|
|
|
WINPR_ASSERT(client);
|
|
|
|
|
2020-01-16 13:31:13 +03:00
|
|
|
if (!channel)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
channel->vcm = vcm;
|
|
|
|
channel->channelType = type;
|
2022-12-26 02:01:27 +03:00
|
|
|
channel->creationStatus =
|
|
|
|
(type == RDP_PEER_CHANNEL_TYPE_SVC) ? ERROR_SUCCESS : ERROR_OPERATION_IN_PROGRESS;
|
2020-01-16 13:31:13 +03:00
|
|
|
|
|
|
|
return channel;
|
|
|
|
fail:
|
|
|
|
channel_free(channel);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
HANDLE WINAPI FreeRDP_WTSVirtualChannelOpen(HANDLE hServer, DWORD SessionId, LPSTR pVirtualName)
|
2014-02-17 05:41:19 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
size_t length = 0;
|
|
|
|
rdpMcs* mcs = NULL;
|
2021-08-24 15:09:40 +03:00
|
|
|
rdpMcsChannel* joined_channel = NULL;
|
2024-01-23 18:49:54 +03:00
|
|
|
freerdp_peer* client = NULL;
|
2021-10-18 12:36:14 +03:00
|
|
|
rdpPeerChannel* channel = NULL;
|
2024-01-23 18:49:54 +03:00
|
|
|
WTSVirtualChannelManager* vcm = NULL;
|
2014-02-17 07:07:00 +04:00
|
|
|
HANDLE hChannelHandle = NULL;
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpContext* context = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
vcm = (WTSVirtualChannelManager*)hServer;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 07:07:00 +04:00
|
|
|
if (!vcm)
|
2015-05-20 20:19:50 +03:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_DATA);
|
2014-02-17 07:07:00 +04:00
|
|
|
return NULL;
|
2015-05-20 20:19:50 +03:00
|
|
|
}
|
2014-02-17 07:07:00 +04:00
|
|
|
|
|
|
|
client = vcm->client;
|
2022-03-23 15:18:35 +03:00
|
|
|
WINPR_ASSERT(client);
|
|
|
|
|
|
|
|
context = client->context;
|
|
|
|
WINPR_ASSERT(context);
|
|
|
|
WINPR_ASSERT(context->rdp);
|
|
|
|
WINPR_ASSERT(context->settings);
|
|
|
|
|
|
|
|
mcs = context->rdp->mcs;
|
|
|
|
WINPR_ASSERT(mcs);
|
|
|
|
|
2022-10-10 12:27:46 +03:00
|
|
|
length = strnlen(pVirtualName, CHANNEL_NAME_LEN + 1);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2022-10-10 12:27:46 +03:00
|
|
|
if (length > CHANNEL_NAME_LEN)
|
2014-02-17 07:07:00 +04:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2024-01-30 12:25:38 +03:00
|
|
|
UINT32 index = 0;
|
|
|
|
for (; index < mcs->channelCount; index++)
|
2014-02-17 07:07:00 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
rdpMcsChannel* mchannel = &mcs->channels[index];
|
|
|
|
if (mchannel->joined && (strncmp(mchannel->Name, pVirtualName, length) == 0))
|
2014-02-17 07:07:00 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
joined_channel = mchannel;
|
2014-02-17 07:07:00 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
if (!joined_channel)
|
2014-02-17 07:07:00 +04:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
channel = (rdpPeerChannel*)joined_channel->handle;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 07:07:00 +04:00
|
|
|
if (!channel)
|
|
|
|
{
|
2023-11-02 18:41:00 +03:00
|
|
|
const UINT32 VCChunkSize =
|
|
|
|
freerdp_settings_get_uint32(context->settings, FreeRDP_VCChunkSize);
|
2022-10-10 12:27:46 +03:00
|
|
|
channel = channel_new(vcm, client, joined_channel->ChannelId, index,
|
2023-11-02 18:41:00 +03:00
|
|
|
RDP_PEER_CHANNEL_TYPE_SVC, VCChunkSize, pVirtualName);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-20 20:19:50 +03:00
|
|
|
if (!channel)
|
2020-01-16 13:31:13 +03:00
|
|
|
goto fail;
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
joined_channel->handle = channel;
|
2014-02-17 07:07:00 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
hChannelHandle = (HANDLE)channel;
|
2014-02-17 07:07:00 +04:00
|
|
|
return hChannelHandle;
|
2020-01-16 13:31:13 +03:00
|
|
|
fail:
|
|
|
|
channel_free(channel);
|
2015-05-18 12:28:00 +03:00
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
return NULL;
|
2014-02-17 05:41:19 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
HANDLE WINAPI FreeRDP_WTSVirtualChannelOpenEx(DWORD SessionId, LPSTR pVirtualName, DWORD flags)
|
2014-02-17 05:41:19 +04:00
|
|
|
{
|
2020-01-16 13:31:13 +03:00
|
|
|
wStream* s = NULL;
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpMcs* mcs = NULL;
|
2014-02-17 08:00:58 +04:00
|
|
|
BOOL joined = FALSE;
|
2024-01-23 18:49:54 +03:00
|
|
|
freerdp_peer* client = NULL;
|
2020-01-16 13:31:13 +03:00
|
|
|
rdpPeerChannel* channel = NULL;
|
2024-01-23 18:49:54 +03:00
|
|
|
ULONG written = 0;
|
2020-01-16 13:31:13 +03:00
|
|
|
WTSVirtualChannelManager* vcm = NULL;
|
2014-02-17 08:00:58 +04:00
|
|
|
|
|
|
|
if (SessionId == WTS_CURRENT_SESSION)
|
|
|
|
return NULL;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
vcm = (WTSVirtualChannelManager*)HashTable_GetItemValue(g_ServerHandles,
|
|
|
|
(void*)(UINT_PTR)SessionId);
|
2014-02-17 08:00:58 +04:00
|
|
|
|
|
|
|
if (!vcm)
|
|
|
|
return NULL;
|
|
|
|
|
2014-02-17 07:07:00 +04:00
|
|
|
if (!(flags & WTS_CHANNEL_OPTION_DYNAMIC))
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
return FreeRDP_WTSVirtualChannelOpen((HANDLE)vcm, SessionId, pVirtualName);
|
2014-02-17 08:00:58 +04:00
|
|
|
}
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2014-02-17 08:00:58 +04:00
|
|
|
client = vcm->client;
|
|
|
|
mcs = client->context->rdp->mcs;
|
|
|
|
|
2024-01-30 12:25:38 +03:00
|
|
|
for (UINT32 index = 0; index < mcs->channelCount; index++)
|
2014-02-17 08:00:58 +04:00
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
rdpMcsChannel* mchannel = &mcs->channels[index];
|
2021-08-25 11:02:46 +03:00
|
|
|
if (mchannel->joined &&
|
|
|
|
(strncmp(mchannel->Name, DRDYNVC_SVC_CHANNEL_NAME, CHANNEL_NAME_LEN + 1) == 0))
|
2014-02-17 08:00:58 +04:00
|
|
|
{
|
|
|
|
joined = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2014-02-17 07:07:00 +04:00
|
|
|
}
|
2014-02-17 08:00:58 +04:00
|
|
|
|
|
|
|
if (!joined)
|
2014-02-17 07:07:00 +04:00
|
|
|
{
|
2014-02-17 08:00:58 +04:00
|
|
|
SetLastError(ERROR_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-02-17 07:07:00 +04:00
|
|
|
|
2014-02-17 08:00:58 +04:00
|
|
|
if (!vcm->drdynvc_channel || (vcm->drdynvc_state != DRDYNVC_STATE_READY))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_NOT_READY);
|
|
|
|
return NULL;
|
2014-02-17 07:07:00 +04:00
|
|
|
}
|
|
|
|
|
2022-03-23 15:18:35 +03:00
|
|
|
WINPR_ASSERT(client);
|
|
|
|
WINPR_ASSERT(client->context);
|
|
|
|
WINPR_ASSERT(client->context->settings);
|
2022-10-10 12:27:46 +03:00
|
|
|
|
2023-11-02 18:41:00 +03:00
|
|
|
const UINT32 VCChunkSize =
|
|
|
|
freerdp_settings_get_uint32(client->context->settings, FreeRDP_VCChunkSize);
|
|
|
|
channel = channel_new(vcm, client, 0, 0, RDP_PEER_CHANNEL_TYPE_DVC, VCChunkSize, pVirtualName);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!channel)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-02-17 08:00:58 +04:00
|
|
|
|
2014-12-19 06:58:30 +03:00
|
|
|
channel->channelId = InterlockedIncrement(&vcm->dvc_channel_id_seq);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2023-10-03 22:41:39 +03:00
|
|
|
if (!HashTable_Insert(vcm->dynamicVirtualChannels, &channel->channelId, channel))
|
2022-04-28 09:00:39 +03:00
|
|
|
{
|
|
|
|
channel_free(channel);
|
|
|
|
channel = NULL;
|
2020-01-16 13:31:13 +03:00
|
|
|
goto fail;
|
2022-04-28 09:00:39 +03:00
|
|
|
}
|
2014-02-17 08:00:58 +04:00
|
|
|
s = Stream_New(NULL, 64);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!s)
|
2022-04-28 09:00:39 +03:00
|
|
|
goto fail;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!wts_write_drdynvc_create_request(s, channel->channelId, pVirtualName))
|
2022-04-28 09:00:39 +03:00
|
|
|
goto fail;
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2024-10-01 11:25:30 +03:00
|
|
|
if (!WTSVirtualChannelWrite(vcm->drdynvc_channel, Stream_BufferAs(s, char),
|
2016-10-07 15:04:40 +03:00
|
|
|
Stream_GetPosition(s), &written))
|
2022-04-28 09:00:39 +03:00
|
|
|
goto fail;
|
2014-02-17 08:00:58 +04:00
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
Stream_Free(s, TRUE);
|
2014-04-22 15:02:23 +04:00
|
|
|
return channel;
|
2020-01-16 13:31:13 +03:00
|
|
|
fail:
|
2021-09-17 10:27:01 +03:00
|
|
|
Stream_Free(s, TRUE);
|
2022-04-28 09:00:39 +03:00
|
|
|
if (channel)
|
2023-10-03 22:41:39 +03:00
|
|
|
HashTable_Remove(vcm->dynamicVirtualChannels, &channel->channelId);
|
2021-09-17 10:27:01 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
return NULL;
|
2014-02-17 05:41:19 +04:00
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSVirtualChannelClose(HANDLE hChannelHandle)
|
2014-02-17 05:41:19 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
wStream* s = NULL;
|
|
|
|
rdpMcs* mcs = NULL;
|
2021-08-24 15:09:40 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpPeerChannel* channel = (rdpPeerChannel*)hChannelHandle;
|
2015-05-29 14:46:50 +03:00
|
|
|
BOOL ret = TRUE;
|
2014-02-17 05:41:19 +04:00
|
|
|
|
|
|
|
if (channel)
|
|
|
|
{
|
2021-08-24 15:09:40 +03:00
|
|
|
WTSVirtualChannelManager* vcm = channel->vcm;
|
|
|
|
|
|
|
|
WINPR_ASSERT(vcm);
|
|
|
|
WINPR_ASSERT(vcm->client);
|
|
|
|
WINPR_ASSERT(vcm->client->context);
|
|
|
|
WINPR_ASSERT(vcm->client->context->rdp);
|
2014-02-17 05:41:19 +04:00
|
|
|
mcs = vcm->client->context->rdp->mcs;
|
|
|
|
|
|
|
|
if (channel->channelType == RDP_PEER_CHANNEL_TYPE_SVC)
|
|
|
|
{
|
|
|
|
if (channel->index < mcs->channelCount)
|
2021-08-24 15:09:40 +03:00
|
|
|
{
|
|
|
|
rdpMcsChannel* cur = &mcs->channels[channel->index];
|
2021-10-18 12:36:14 +03:00
|
|
|
rdpPeerChannel* peerChannel = (rdpPeerChannel*)cur->handle;
|
2023-12-16 22:52:11 +03:00
|
|
|
channel_free(peerChannel);
|
2021-08-24 15:09:40 +03:00
|
|
|
cur->handle = NULL;
|
|
|
|
}
|
2014-02-17 05:41:19 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (channel->dvc_open_state == DVC_OPEN_STATE_SUCCEEDED)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
ULONG written = 0;
|
2014-02-17 05:41:19 +04:00
|
|
|
s = Stream_New(NULL, 8);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-29 14:46:50 +03:00
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Stream_New failed!");
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wts_write_drdynvc_header(s, CLOSE_REQUEST_PDU, channel->channelId);
|
2024-10-01 11:25:30 +03:00
|
|
|
ret = WTSVirtualChannelWrite(vcm->drdynvc_channel, Stream_BufferAs(s, char),
|
2016-10-07 15:04:40 +03:00
|
|
|
Stream_GetPosition(s), &written);
|
2015-05-29 14:46:50 +03:00
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
}
|
2014-02-17 05:41:19 +04:00
|
|
|
}
|
2023-10-03 22:41:39 +03:00
|
|
|
HashTable_Remove(vcm->dynamicVirtualChannels, &channel->channelId);
|
2014-02-17 05:41:19 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-29 14:46:50 +03:00
|
|
|
return ret;
|
2014-02-17 05:41:19 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSVirtualChannelRead(HANDLE hChannelHandle, ULONG TimeOut, PCHAR Buffer,
|
|
|
|
ULONG BufferSize, PULONG pBytesRead)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2023-06-05 13:16:57 +03:00
|
|
|
BYTE* buffer = NULL;
|
|
|
|
wMessage message = { 0 };
|
|
|
|
wtsChannelMessage* messageCtx = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpPeerChannel* channel = (rdpPeerChannel*)hChannelHandle;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
|
2014-07-14 16:00:38 +04:00
|
|
|
if (!MessageQueue_Peek(channel->queue, &message, FALSE))
|
2014-02-16 03:41:40 +04:00
|
|
|
{
|
2014-07-14 16:00:38 +04:00
|
|
|
SetLastError(ERROR_NO_DATA);
|
2014-02-16 03:41:40 +04:00
|
|
|
*pBytesRead = 0;
|
2014-07-14 16:00:38 +04:00
|
|
|
return FALSE;
|
2014-02-16 03:41:40 +04:00
|
|
|
}
|
|
|
|
|
2023-06-06 18:46:20 +03:00
|
|
|
messageCtx = message.context;
|
2019-12-10 14:59:10 +03:00
|
|
|
|
|
|
|
if (messageCtx == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
buffer = (BYTE*)(messageCtx + 1);
|
2014-07-14 16:00:38 +04:00
|
|
|
*pBytesRead = messageCtx->length - messageCtx->offset;
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-07-14 16:00:38 +04:00
|
|
|
if (Buffer == NULL || BufferSize == 0)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-07-14 16:00:38 +04:00
|
|
|
if (*pBytesRead > BufferSize)
|
|
|
|
*pBytesRead = BufferSize;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2014-07-14 16:00:38 +04:00
|
|
|
CopyMemory(Buffer, buffer + messageCtx->offset, *pBytesRead);
|
|
|
|
messageCtx->offset += *pBytesRead;
|
2014-10-07 22:56:57 +04:00
|
|
|
|
2014-07-14 16:00:38 +04:00
|
|
|
if (messageCtx->offset >= messageCtx->length)
|
|
|
|
{
|
2024-09-15 11:19:56 +03:00
|
|
|
(void)MessageQueue_Peek(channel->queue, &message, TRUE);
|
2020-02-04 15:51:47 +03:00
|
|
|
peer_channel_queue_free_message(&message);
|
2014-07-14 16:00:38 +04:00
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSVirtualChannelWrite(HANDLE hChannelHandle, PCHAR Buffer, ULONG Length,
|
|
|
|
PULONG pBytesWritten)
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
wStream* s = NULL;
|
|
|
|
int cbLen = 0;
|
|
|
|
int cbChId = 0;
|
|
|
|
int first = 0;
|
|
|
|
BYTE* buffer = NULL;
|
|
|
|
UINT32 length = 0;
|
|
|
|
UINT32 written = 0;
|
2016-05-03 19:48:59 +03:00
|
|
|
UINT32 totalWritten = 0;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpPeerChannel* channel = (rdpPeerChannel*)hChannelHandle;
|
2023-12-16 22:52:11 +03:00
|
|
|
BOOL ret = FALSE;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
|
|
|
if (!channel)
|
|
|
|
return FALSE;
|
|
|
|
|
2023-12-16 22:52:11 +03:00
|
|
|
EnterCriticalSection(&channel->writeLock);
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel->vcm);
|
2014-02-16 02:42:59 +04:00
|
|
|
if (channel->channelType == RDP_PEER_CHANNEL_TYPE_SVC)
|
|
|
|
{
|
2014-02-16 04:21:41 +04:00
|
|
|
length = Length;
|
2016-10-07 15:04:40 +03:00
|
|
|
buffer = (BYTE*)malloc(length);
|
|
|
|
|
2015-05-25 23:55:37 +03:00
|
|
|
if (!buffer)
|
2015-06-16 16:42:07 +03:00
|
|
|
{
|
|
|
|
SetLastError(E_OUTOFMEMORY);
|
2023-12-16 22:52:11 +03:00
|
|
|
goto fail;
|
2015-06-16 16:42:07 +03:00
|
|
|
}
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
CopyMemory(buffer, Buffer, length);
|
2016-05-03 19:48:59 +03:00
|
|
|
totalWritten = Length;
|
2024-08-29 16:10:21 +03:00
|
|
|
if (!wts_queue_send_item(channel, buffer, length))
|
|
|
|
goto fail;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
2019-11-06 17:24:51 +03:00
|
|
|
else if (!channel->vcm->drdynvc_channel || (channel->vcm->drdynvc_state != DRDYNVC_STATE_READY))
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
|
|
|
DEBUG_DVC("drdynvc not ready");
|
2023-12-16 22:52:11 +03:00
|
|
|
goto fail;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpContext* context = NULL;
|
2022-03-23 15:18:35 +03:00
|
|
|
|
2014-02-16 02:42:59 +04:00
|
|
|
first = TRUE;
|
2021-08-24 15:09:40 +03:00
|
|
|
WINPR_ASSERT(channel->client);
|
2022-03-23 15:18:35 +03:00
|
|
|
context = channel->client->context;
|
|
|
|
WINPR_ASSERT(context);
|
2014-02-16 02:42:59 +04:00
|
|
|
while (Length > 0)
|
|
|
|
{
|
2023-04-27 11:43:36 +03:00
|
|
|
s = Stream_New(NULL, DVC_MAX_DATA_PDU_SIZE);
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-05-29 14:46:50 +03:00
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Stream_New failed!");
|
2015-06-16 16:42:07 +03:00
|
|
|
SetLastError(E_OUTOFMEMORY);
|
2023-12-16 22:52:11 +03:00
|
|
|
goto fail;
|
2015-05-29 14:46:50 +03:00
|
|
|
}
|
2015-05-23 23:47:18 +03:00
|
|
|
|
2014-02-16 04:21:41 +04:00
|
|
|
buffer = Stream_Buffer(s);
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_Seek_UINT8(s);
|
|
|
|
cbChId = wts_write_variable_uint(s, channel->channelId);
|
|
|
|
|
2022-11-19 08:22:09 +03:00
|
|
|
if (first && (Length > Stream_GetRemainingLength(s)))
|
2014-02-16 02:42:59 +04:00
|
|
|
{
|
|
|
|
cbLen = wts_write_variable_uint(s, Length);
|
2014-02-16 04:21:41 +04:00
|
|
|
buffer[0] = (DATA_FIRST_PDU << 4) | (cbLen << 2) | cbChId;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-16 04:21:41 +04:00
|
|
|
buffer[0] = (DATA_PDU << 4) | cbChId;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
first = FALSE;
|
|
|
|
written = Stream_GetRemainingLength(s);
|
|
|
|
|
|
|
|
if (written > Length)
|
|
|
|
written = Length;
|
|
|
|
|
|
|
|
Stream_Write(s, Buffer, written);
|
2014-02-16 04:21:41 +04:00
|
|
|
length = Stream_GetPosition(s);
|
2014-02-16 02:42:59 +04:00
|
|
|
Stream_Free(s, FALSE);
|
|
|
|
Length -= written;
|
|
|
|
Buffer += written;
|
2016-05-03 19:48:59 +03:00
|
|
|
totalWritten += written;
|
2023-12-16 22:52:11 +03:00
|
|
|
if (!wts_queue_send_item(channel->vcm->drdynvc_channel, buffer, length))
|
|
|
|
goto fail;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-16 04:21:41 +04:00
|
|
|
if (pBytesWritten)
|
2016-05-03 19:48:59 +03:00
|
|
|
*pBytesWritten = totalWritten;
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2023-12-16 22:52:11 +03:00
|
|
|
ret = TRUE;
|
|
|
|
fail:
|
|
|
|
LeaveCriticalSection(&channel->writeLock);
|
2015-05-23 23:47:18 +03:00
|
|
|
return ret;
|
2014-02-16 02:42:59 +04:00
|
|
|
}
|
2014-02-17 06:19:25 +04:00
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSVirtualChannelPurgeInput(HANDLE hChannelHandle)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSVirtualChannelPurgeOutput(HANDLE hChannelHandle)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSVirtualChannelQuery(HANDLE hChannelHandle, WTS_VIRTUAL_CLASS WtsVirtualClass,
|
|
|
|
PVOID* ppBuffer, DWORD* pBytesReturned)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
void* pfd = NULL;
|
|
|
|
BOOL bval = 0;
|
2021-08-24 15:09:40 +03:00
|
|
|
void* fds[10] = { 0 };
|
2024-01-23 18:49:54 +03:00
|
|
|
HANDLE hEvent = NULL;
|
2014-02-17 06:19:25 +04:00
|
|
|
int fds_count = 0;
|
|
|
|
BOOL status = FALSE;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpPeerChannel* channel = (rdpPeerChannel*)hChannelHandle;
|
2021-08-24 15:09:40 +03:00
|
|
|
|
|
|
|
WINPR_ASSERT(channel);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
switch ((UINT32)WtsVirtualClass)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
case WTSVirtualFileHandle:
|
2022-12-26 02:01:27 +03:00
|
|
|
hEvent = MessageQueue_Event(channel->queue);
|
2014-02-17 06:19:25 +04:00
|
|
|
pfd = GetEventWaitObject(hEvent);
|
|
|
|
|
|
|
|
if (pfd)
|
|
|
|
{
|
|
|
|
fds[fds_count] = pfd;
|
|
|
|
(fds_count)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppBuffer = malloc(sizeof(void*));
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!*ppBuffer)
|
|
|
|
{
|
|
|
|
SetLastError(E_OUTOFMEMORY);
|
2016-10-07 15:04:40 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-16 16:42:07 +03:00
|
|
|
CopyMemory(*ppBuffer, &fds[0], sizeof(void*));
|
|
|
|
*pBytesReturned = sizeof(void*);
|
|
|
|
status = TRUE;
|
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 06:19:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WTSVirtualEventHandle:
|
2022-12-26 02:01:27 +03:00
|
|
|
hEvent = MessageQueue_Event(channel->queue);
|
|
|
|
|
2014-02-17 06:19:25 +04:00
|
|
|
*ppBuffer = malloc(sizeof(HANDLE));
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!*ppBuffer)
|
|
|
|
{
|
|
|
|
SetLastError(E_OUTOFMEMORY);
|
2016-10-07 15:04:40 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-16 16:42:07 +03:00
|
|
|
CopyMemory(*ppBuffer, &(hEvent), sizeof(HANDLE));
|
|
|
|
*pBytesReturned = sizeof(void*);
|
|
|
|
status = TRUE;
|
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 06:19:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WTSVirtualChannelReady:
|
|
|
|
if (channel->channelType == RDP_PEER_CHANNEL_TYPE_SVC)
|
|
|
|
{
|
|
|
|
bval = TRUE;
|
|
|
|
status = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (channel->dvc_open_state)
|
|
|
|
{
|
|
|
|
case DVC_OPEN_STATE_NONE:
|
|
|
|
bval = FALSE;
|
|
|
|
status = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DVC_OPEN_STATE_SUCCEEDED:
|
|
|
|
bval = TRUE;
|
|
|
|
status = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2022-12-23 18:16:58 +03:00
|
|
|
*ppBuffer = NULL;
|
|
|
|
*pBytesReturned = 0;
|
|
|
|
return FALSE;
|
2014-02-17 06:19:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppBuffer = malloc(sizeof(BOOL));
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!*ppBuffer)
|
|
|
|
{
|
|
|
|
SetLastError(E_OUTOFMEMORY);
|
|
|
|
status = FALSE;
|
2016-10-07 15:04:40 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-16 16:42:07 +03:00
|
|
|
CopyMemory(*ppBuffer, &bval, sizeof(BOOL));
|
|
|
|
*pBytesReturned = sizeof(BOOL);
|
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 06:19:25 +04:00
|
|
|
break;
|
2022-12-26 02:01:27 +03:00
|
|
|
case WTSVirtualChannelOpenStatus:
|
|
|
|
{
|
|
|
|
INT32 value = channel->creationStatus;
|
|
|
|
status = TRUE;
|
2014-02-17 06:19:25 +04:00
|
|
|
|
2022-12-26 02:01:27 +03:00
|
|
|
*ppBuffer = malloc(sizeof(value));
|
|
|
|
if (!*ppBuffer)
|
|
|
|
{
|
|
|
|
SetLastError(E_OUTOFMEMORY);
|
|
|
|
status = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CopyMemory(*ppBuffer, &value, sizeof(value));
|
|
|
|
*pBytesReturned = sizeof(value);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-02-17 06:19:25 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-10-07 15:04:40 +03:00
|
|
|
|
2014-02-17 06:19:25 +04:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
VOID WINAPI FreeRDP_WTSFreeMemory(PVOID pMemory)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
free(pMemory);
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSFreeMemoryExW(WTS_TYPE_CLASS WTSTypeClass, PVOID pMemory,
|
|
|
|
ULONG NumberOfEntries)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:04:40 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSFreeMemoryExA(WTS_TYPE_CLASS WTSTypeClass, PVOID pMemory,
|
|
|
|
ULONG NumberOfEntries)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSRegisterSessionNotification(HWND hWnd, DWORD dwFlags)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSUnRegisterSessionNotification(HWND hWnd)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSRegisterSessionNotificationEx(HANDLE hServer, HWND hWnd, DWORD dwFlags)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSUnRegisterSessionNotificationEx(HANDLE hServer, HWND hWnd)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL WINAPI FreeRDP_WTSQueryUserToken(ULONG SessionId, PHANDLE phToken)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateProcessesExW(HANDLE hServer, DWORD* pLevel, DWORD SessionId,
|
|
|
|
LPWSTR* ppProcessInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateProcessesExA(HANDLE hServer, DWORD* pLevel, DWORD SessionId,
|
|
|
|
LPSTR* ppProcessInfo, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateListenersW(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
PWTSLISTENERNAMEW pListeners, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSEnumerateListenersA(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
PWTSLISTENERNAMEA pListeners, DWORD* pCount)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSQueryListenerConfigW(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
LPWSTR pListenerName, PWTSLISTENERCONFIGW pBuffer)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSQueryListenerConfigA(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
LPSTR pListenerName, PWTSLISTENERCONFIGA pBuffer)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSCreateListenerW(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
LPWSTR pListenerName, PWTSLISTENERCONFIGW pBuffer,
|
|
|
|
DWORD flag)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSCreateListenerA(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
2016-10-07 15:04:40 +03:00
|
|
|
LPSTR pListenerName, PWTSLISTENERCONFIGA pBuffer, DWORD flag)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSSetListenerSecurityW(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
LPWSTR pListenerName,
|
|
|
|
SECURITY_INFORMATION SecurityInformation,
|
|
|
|
PSECURITY_DESCRIPTOR pSecurityDescriptor)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSSetListenerSecurityA(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
LPSTR pListenerName,
|
|
|
|
SECURITY_INFORMATION SecurityInformation,
|
|
|
|
PSECURITY_DESCRIPTOR pSecurityDescriptor)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSGetListenerSecurityW(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
LPWSTR pListenerName,
|
|
|
|
SECURITY_INFORMATION SecurityInformation,
|
|
|
|
PSECURITY_DESCRIPTOR pSecurityDescriptor, DWORD nLength,
|
|
|
|
LPDWORD lpnLengthNeeded)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSGetListenerSecurityA(HANDLE hServer, PVOID pReserved, DWORD Reserved,
|
|
|
|
LPSTR pListenerName,
|
|
|
|
SECURITY_INFORMATION SecurityInformation,
|
|
|
|
PSECURITY_DESCRIPTOR pSecurityDescriptor, DWORD nLength,
|
|
|
|
LPDWORD lpnLengthNeeded)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL CDECL FreeRDP_WTSEnableChildSessions(BOOL bEnable)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL CDECL FreeRDP_WTSIsChildSessionsEnabled(PBOOL pbEnabled)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
BOOL CDECL FreeRDP_WTSGetChildSessionId(PULONG pSessionId)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:49:57 +04:00
|
|
|
DWORD WINAPI FreeRDP_WTSGetActiveConsoleSessionId(void)
|
2014-02-17 06:19:25 +04:00
|
|
|
{
|
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
2015-02-12 12:31:00 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSLogoffUser(HANDLE hServer)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL WINAPI FreeRDP_WTSLogonUser(HANDLE hServer, LPCSTR username, LPCSTR password, LPCSTR domain)
|
2015-02-12 12:31:00 +03:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2023-12-16 22:52:11 +03:00
|
|
|
|
|
|
|
void server_channel_common_free(rdpPeerChannel* channel)
|
|
|
|
{
|
|
|
|
if (!channel)
|
|
|
|
return;
|
|
|
|
MessageQueue_Free(channel->queue);
|
|
|
|
Stream_Free(channel->receiveData, TRUE);
|
|
|
|
DeleteCriticalSection(&channel->writeLock);
|
|
|
|
free(channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
rdpPeerChannel* server_channel_common_new(freerdp_peer* client, UINT16 index, UINT32 channelId,
|
|
|
|
size_t chunkSize, const wObject* callback,
|
|
|
|
const char* name)
|
|
|
|
{
|
|
|
|
rdpPeerChannel* channel = (rdpPeerChannel*)calloc(1, sizeof(rdpPeerChannel));
|
|
|
|
if (!channel)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
InitializeCriticalSection(&channel->writeLock);
|
|
|
|
|
|
|
|
channel->receiveData = Stream_New(NULL, chunkSize);
|
|
|
|
if (!channel->receiveData)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
channel->queue = MessageQueue_New(callback);
|
|
|
|
if (!channel->queue)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
channel->index = index;
|
|
|
|
channel->client = client;
|
|
|
|
channel->channelId = channelId;
|
|
|
|
strncpy(channel->channelName, name, ARRAYSIZE(channel->channelName) - 1);
|
|
|
|
return channel;
|
|
|
|
fail:
|
2024-02-04 13:11:29 +03:00
|
|
|
WINPR_PRAGMA_DIAG_PUSH
|
|
|
|
WINPR_PRAGMA_DIAG_IGNORED_MISMATCHED_DEALLOC
|
2023-12-16 22:52:11 +03:00
|
|
|
server_channel_common_free(channel);
|
2024-02-04 13:11:29 +03:00
|
|
|
WINPR_PRAGMA_DIAG_POP
|
2023-12-16 22:52:11 +03:00
|
|
|
return NULL;
|
|
|
|
}
|