2011-08-04 19:22:58 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol client.
|
|
|
|
* File System Virtual Channel
|
|
|
|
*
|
|
|
|
* Copyright 2010-2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
* Copyright 2010-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.
|
|
|
|
*/
|
|
|
|
|
2011-08-05 06:24:46 +04:00
|
|
|
#include "config.h"
|
2011-08-04 19:22:58 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <freerdp/constants.h>
|
|
|
|
#include <freerdp/types.h>
|
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
#include <freerdp/utils/stream.h>
|
|
|
|
#include <freerdp/utils/svc_plugin.h>
|
|
|
|
|
2011-08-05 06:24:46 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2011-08-04 19:22:58 +04:00
|
|
|
#include "rdpdr_types.h"
|
|
|
|
#include "rdpdr_constants.h"
|
|
|
|
#include "devman.h"
|
|
|
|
|
|
|
|
typedef struct rdpdr_plugin rdpdrPlugin;
|
|
|
|
struct rdpdr_plugin
|
|
|
|
{
|
|
|
|
rdpSvcPlugin plugin;
|
|
|
|
|
|
|
|
DEVMAN* devman;
|
|
|
|
|
2011-08-05 06:24:46 +04:00
|
|
|
uint16 versionMajor;
|
2011-08-04 19:22:58 +04:00
|
|
|
uint16 versionMinor;
|
|
|
|
uint16 clientID;
|
2011-08-05 06:24:46 +04:00
|
|
|
char computerName[256];
|
2011-08-04 19:22:58 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static void rdpdr_process_connect(rdpSvcPlugin* plugin)
|
|
|
|
{
|
|
|
|
rdpdrPlugin* rdpdr = (rdpdrPlugin*)plugin;
|
|
|
|
FRDP_PLUGIN_DATA* data;
|
|
|
|
|
|
|
|
rdpdr->devman = devman_new(plugin);
|
|
|
|
data = (FRDP_PLUGIN_DATA*)plugin->channel_entry_points.pExtendedData;
|
|
|
|
while (data && data->size > 0)
|
|
|
|
{
|
|
|
|
if (strcmp((char*)data->data[0], "clientname") == 0)
|
|
|
|
{
|
2011-08-05 06:24:46 +04:00
|
|
|
strncpy(rdpdr->computerName, (char*)data->data[1], sizeof(rdpdr->computerName) - 1);
|
2011-08-04 19:22:58 +04:00
|
|
|
DEBUG_SVC("computerName %s", rdpdr->computerName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
devman_load_device_service(rdpdr->devman, data);
|
|
|
|
}
|
|
|
|
data = (FRDP_PLUGIN_DATA*)(((void*)data) + data->size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-05 06:24:46 +04:00
|
|
|
static void rdpdr_process_server_announce_request(rdpdrPlugin* rdpdr, STREAM* data_in)
|
|
|
|
{
|
|
|
|
stream_read_uint16(data_in, rdpdr->versionMajor);
|
|
|
|
stream_read_uint16(data_in, rdpdr->versionMinor);
|
|
|
|
stream_read_uint32(data_in, rdpdr->clientID);
|
|
|
|
|
|
|
|
DEBUG_SVC("version %d.%d clientID %d", rdpdr->versionMajor, rdpdr->versionMinor, rdpdr->clientID);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rdpdr_send_client_announce_reply(rdpdrPlugin* rdpdr)
|
|
|
|
{
|
|
|
|
STREAM* data_out;
|
|
|
|
|
|
|
|
data_out = stream_new(12);
|
|
|
|
|
|
|
|
stream_write_uint16(data_out, RDPDR_CTYP_CORE);
|
|
|
|
stream_write_uint16(data_out, PAKID_CORE_CLIENTID_CONFIRM);
|
|
|
|
|
|
|
|
stream_write_uint16(data_out, rdpdr->versionMajor);
|
|
|
|
stream_write_uint16(data_out, rdpdr->versionMinor);
|
|
|
|
stream_write_uint32(data_out, rdpdr->clientID);
|
|
|
|
|
|
|
|
svc_plugin_send((rdpSvcPlugin*)rdpdr, data_out);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rdpdr_send_client_name_request(rdpdrPlugin* rdpdr)
|
|
|
|
{
|
|
|
|
STREAM* data_out;
|
|
|
|
size_t computerNameLenW;
|
|
|
|
UNICONV* uniconv;
|
|
|
|
char* s;
|
|
|
|
|
|
|
|
uniconv = freerdp_uniconv_new();
|
|
|
|
if (!rdpdr->computerName[0])
|
|
|
|
gethostname(rdpdr->computerName, sizeof(rdpdr->computerName) - 1);
|
|
|
|
s = freerdp_uniconv_out(uniconv, rdpdr->computerName, &computerNameLenW);
|
|
|
|
data_out = stream_new(16 + computerNameLenW + 2);
|
|
|
|
|
|
|
|
stream_write_uint16(data_out, RDPDR_CTYP_CORE);
|
|
|
|
stream_write_uint16(data_out, PAKID_CORE_CLIENT_NAME);
|
|
|
|
|
|
|
|
stream_write_uint32(data_out, 1); /* unicodeFlag, 0 for ASCII and 1 for Unicode */
|
|
|
|
stream_write_uint32(data_out, 0); /* codePage, must be set to zero */
|
|
|
|
stream_write_uint32(data_out, computerNameLenW + 2); /* computerNameLen, including null terminator */
|
|
|
|
stream_write(data_out, s, computerNameLenW);
|
|
|
|
stream_write_uint16(data_out, 0); /* null terminator */
|
|
|
|
xfree(s);
|
|
|
|
freerdp_uniconv_free(uniconv);
|
|
|
|
|
|
|
|
svc_plugin_send((rdpSvcPlugin*)rdpdr, data_out);
|
|
|
|
}
|
|
|
|
|
2011-08-04 19:22:58 +04:00
|
|
|
static void rdpdr_process_receive(rdpSvcPlugin* plugin, STREAM* data_in)
|
|
|
|
{
|
2011-08-05 06:24:46 +04:00
|
|
|
rdpdrPlugin* rdpdr = (rdpdrPlugin*)plugin;
|
2011-08-04 19:22:58 +04:00
|
|
|
uint16 component;
|
|
|
|
uint16 packetID;
|
|
|
|
uint32 deviceID;
|
|
|
|
uint32 status;
|
|
|
|
|
|
|
|
stream_read_uint16(data_in, component);
|
|
|
|
stream_read_uint16(data_in, packetID);
|
|
|
|
|
|
|
|
if (component == RDPDR_CTYP_CORE)
|
|
|
|
{
|
|
|
|
switch (packetID)
|
|
|
|
{
|
|
|
|
case PAKID_CORE_SERVER_ANNOUNCE:
|
|
|
|
DEBUG_SVC("RDPDR_CTYP_CORE / PAKID_CORE_SERVER_ANNOUNCE");
|
2011-08-05 06:24:46 +04:00
|
|
|
rdpdr_process_server_announce_request(rdpdr, data_in);
|
|
|
|
rdpdr_send_client_announce_reply(rdpdr);
|
|
|
|
rdpdr_send_client_name_request(rdpdr);
|
2011-08-04 19:22:58 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PAKID_CORE_SERVER_CAPABILITY:
|
|
|
|
DEBUG_SVC("RDPDR_CTYP_CORE / PAKID_CORE_SERVER_CAPABILITY");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAKID_CORE_CLIENTID_CONFIRM:
|
|
|
|
DEBUG_SVC("RDPDR_CTYP_CORE / PAKID_CORE_CLIENTID_CONFIRM");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAKID_CORE_USER_LOGGEDON:
|
|
|
|
DEBUG_SVC("RDPDR_CTYP_CORE / PAKID_CORE_USER_LOGGEDON");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAKID_CORE_DEVICE_REPLY:
|
|
|
|
/* connect to a specific resource */
|
|
|
|
stream_get_uint32(data_in, deviceID);
|
|
|
|
stream_get_uint32(data_in, status);
|
|
|
|
DEBUG_SVC("RDPDR_CTYP_CORE / PAKID_CORE_DEVICE_REPLY (deviceID=%d status=%d)", deviceID, status);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAKID_CORE_DEVICE_IOREQUEST:
|
|
|
|
DEBUG_SVC("RDPDR_CTYP_CORE / PAKID_CORE_DEVICE_IOREQUEST");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DEBUG_WARN("RDPDR_CTYP_CORE / unknown packetID: 0x%02X", packetID);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (component == RDPDR_CTYP_PRN)
|
|
|
|
{
|
|
|
|
DEBUG_SVC("RDPDR_CTYP_PRN");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DEBUG_WARN("RDPDR component: 0x%02X packetID: 0x%02X\n", component, packetID);
|
|
|
|
}
|
|
|
|
|
|
|
|
stream_free(data_in);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rdpdr_process_event(rdpSvcPlugin* plugin, FRDP_EVENT* event)
|
|
|
|
{
|
|
|
|
freerdp_event_free(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rdpdr_process_terminate(rdpSvcPlugin* plugin)
|
|
|
|
{
|
|
|
|
rdpdrPlugin* rdpdr = (rdpdrPlugin*)plugin;
|
|
|
|
|
|
|
|
devman_free(rdpdr->devman);
|
|
|
|
xfree(plugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_SVC_PLUGIN(rdpdr, "rdpdr",
|
|
|
|
CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP |
|
|
|
|
CHANNEL_OPTION_COMPRESS_RDP)
|