2012-03-26 10:45:01 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2012-03-26 20:20:38 +04:00
|
|
|
* Terminal Server Gateway (TSG)
|
2012-03-26 10:45:01 +04:00
|
|
|
*
|
2012-03-26 20:20:38 +04:00
|
|
|
* Copyright 2012 Fujitsu Technology Solutions GmbH
|
|
|
|
* Copyright 2012 Dmitrij Jasnov <dmitrij.jasnov@ts.fujitsu.com>
|
2012-03-26 10:45:01 +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.
|
|
|
|
*/
|
|
|
|
|
2012-03-26 20:20:38 +04:00
|
|
|
#ifndef FREERDP_CORE_TSG_H
|
|
|
|
#define FREERDP_CORE_TSG_H
|
2012-03-26 10:45:01 +04:00
|
|
|
|
|
|
|
typedef struct rdp_tsg rdpTsg;
|
|
|
|
|
2012-04-14 22:19:31 +04:00
|
|
|
#include "rpc.h"
|
2012-05-05 02:32:34 +04:00
|
|
|
#include "transport.h"
|
|
|
|
|
|
|
|
#include <winpr/rpc.h>
|
2012-05-05 03:36:35 +04:00
|
|
|
#include <winpr/winpr.h>
|
2012-09-09 00:45:06 +04:00
|
|
|
#include <winpr/wtypes.h>
|
2012-03-26 10:45:01 +04:00
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <freerdp/types.h>
|
|
|
|
#include <freerdp/settings.h>
|
|
|
|
#include <freerdp/utils/stream.h>
|
|
|
|
#include <freerdp/utils/wait_obj.h>
|
|
|
|
#include <freerdp/utils/debug.h>
|
|
|
|
|
|
|
|
struct rdp_tsg
|
|
|
|
{
|
2012-04-19 19:29:53 +04:00
|
|
|
rdpRpc* rpc;
|
2012-10-30 04:54:49 +04:00
|
|
|
UINT16 port;
|
|
|
|
LPWSTR hostname;
|
2012-10-31 17:22:32 +04:00
|
|
|
LPWSTR MachineName;
|
2012-10-30 21:01:54 +04:00
|
|
|
BOOL pendingPdu;
|
|
|
|
BOOL bytesRead;
|
|
|
|
BOOL bytesAvailable;
|
2012-03-26 20:20:38 +04:00
|
|
|
rdpSettings* settings;
|
|
|
|
rdpTransport* transport;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE TunnelContext[16];
|
|
|
|
BYTE ChannelContext[16];
|
2012-03-26 10:45:01 +04:00
|
|
|
};
|
|
|
|
|
2012-10-31 11:43:21 +04:00
|
|
|
typedef WCHAR* RESOURCENAME;
|
2012-04-01 05:32:13 +04:00
|
|
|
|
2012-10-30 04:54:49 +04:00
|
|
|
#define TsProxyCreateTunnelOpnum 1
|
|
|
|
#define TsProxyAuthorizeTunnelOpnum 2
|
|
|
|
#define TsProxyMakeTunnelCallOpnum 3
|
|
|
|
#define TsProxyCreateChannelOpnum 4
|
|
|
|
#define TsProxySetupReceivePipeOpnum 8
|
|
|
|
|
2012-04-01 05:32:13 +04:00
|
|
|
#define MAX_RESOURCE_NAMES 50
|
|
|
|
|
|
|
|
typedef struct _tsendpointinfo
|
|
|
|
{
|
|
|
|
RESOURCENAME* resourceName;
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 numResourceNames;
|
2012-04-01 05:32:13 +04:00
|
|
|
RESOURCENAME* alternateResourceNames;
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT16 numAlternateResourceNames;
|
|
|
|
UINT32 Port;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSENDPOINTINFO, *PTSENDPOINTINFO;
|
|
|
|
|
2012-10-31 11:43:21 +04:00
|
|
|
#define TS_GATEWAY_TRANSPORT 0x5452
|
|
|
|
|
2012-04-01 05:32:13 +04:00
|
|
|
#define TSG_PACKET_TYPE_HEADER 0x00004844
|
|
|
|
#define TSG_PACKET_TYPE_VERSIONCAPS 0x00005643
|
|
|
|
#define TSG_PACKET_TYPE_QUARCONFIGREQUEST 0x00005143
|
|
|
|
#define TSG_PACKET_TYPE_QUARREQUEST 0x00005152
|
|
|
|
#define TSG_PACKET_TYPE_RESPONSE 0x00005052
|
|
|
|
#define TSG_PACKET_TYPE_QUARENC_RESPONSE 0x00004552
|
|
|
|
#define TSG_CAPABILITY_TYPE_NAP 0x00000001
|
|
|
|
#define TSG_PACKET_TYPE_CAPS_RESPONSE 0x00004350
|
|
|
|
#define TSG_PACKET_TYPE_MSGREQUEST_PACKET 0x00004752
|
|
|
|
#define TSG_PACKET_TYPE_MESSAGE_PACKET 0x00004750
|
|
|
|
#define TSG_PACKET_TYPE_AUTH 0x00004054
|
|
|
|
#define TSG_PACKET_TYPE_REAUTH 0x00005250
|
2012-10-31 11:43:21 +04:00
|
|
|
|
2012-04-01 05:32:13 +04:00
|
|
|
#define TSG_ASYNC_MESSAGE_CONSENT_MESSAGE 0x00000001
|
|
|
|
#define TSG_ASYNC_MESSAGE_SERVICE_MESSAGE 0x00000002
|
|
|
|
#define TSG_ASYNC_MESSAGE_REAUTH 0x00000003
|
|
|
|
#define TSG_TUNNEL_CALL_ASYNC_MSG_REQUEST 0x00000001
|
|
|
|
#define TSG_TUNNEL_CANCEL_ASYNC_MSG_REQUEST 0x00000002
|
|
|
|
|
2012-04-01 10:11:07 +04:00
|
|
|
#define TSG_NAP_CAPABILITY_QUAR_SOH 0x00000001
|
|
|
|
#define TSG_NAP_CAPABILITY_IDLE_TIMEOUT 0x00000002
|
|
|
|
#define TSG_MESSAGING_CAP_CONSENT_SIGN 0x00000004
|
|
|
|
#define TSG_MESSAGING_CAP_SERVICE_MSG 0x00000008
|
|
|
|
#define TSG_MESSAGING_CAP_REAUTH 0x00000010
|
|
|
|
|
2012-04-01 05:32:13 +04:00
|
|
|
typedef struct _TSG_PACKET_HEADER
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT16 ComponentId;
|
|
|
|
UINT16 PacketId;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_HEADER, *PTSG_PACKET_HEADER;
|
|
|
|
|
|
|
|
typedef struct _TSG_CAPABILITY_NAP
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 capabilities;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_CAPABILITY_NAP, *PTSG_CAPABILITY_NAP;
|
|
|
|
|
|
|
|
typedef union
|
|
|
|
{
|
|
|
|
TSG_CAPABILITY_NAP tsgCapNap;
|
|
|
|
} TSG_CAPABILITIES_UNION, *PTSG_CAPABILITIES_UNION;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_CAPABILITIES
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 capabilityType;
|
2012-04-01 05:32:13 +04:00
|
|
|
TSG_CAPABILITIES_UNION tsgPacket;
|
|
|
|
} TSG_PACKET_CAPABILITIES, *PTSG_PACKET_CAPABILITIES;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_VERSIONCAPS
|
|
|
|
{
|
|
|
|
TSG_PACKET_HEADER tsgHeader;
|
|
|
|
PTSG_PACKET_CAPABILITIES tsgCaps;
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 numCapabilities;
|
|
|
|
UINT16 majorVersion;
|
|
|
|
UINT16 minorVersion;
|
|
|
|
UINT16 quarantineCapabilities;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_VERSIONCAPS, *PTSG_PACKET_VERSIONCAPS;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_QUARCONFIGREQUEST
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 flags;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_QUARCONFIGREQUEST, *PTSG_PACKET_QUARCONFIGREQUEST;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_QUARREQUEST
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 flags;
|
|
|
|
WCHAR* machineName;
|
|
|
|
UINT32 nameLength;
|
|
|
|
BYTE* data;
|
|
|
|
UINT32 dataLen;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_QUARREQUEST, *PTSG_PACKET_QUARREQUEST;
|
|
|
|
|
|
|
|
typedef struct _TSG_REDIRECTION_FLAGS
|
|
|
|
{
|
|
|
|
BOOL enableAllRedirections;
|
|
|
|
BOOL disableAllRedirections;
|
|
|
|
BOOL driveRedirectionDisabled;
|
|
|
|
BOOL printerRedirectionDisabled;
|
|
|
|
BOOL portRedirectionDisabled;
|
|
|
|
BOOL reserved;
|
|
|
|
BOOL clipboardRedirectionDisabled;
|
|
|
|
BOOL pnpRedirectionDisabled;
|
|
|
|
} TSG_REDIRECTION_FLAGS, *PTSG_REDIRECTION_FLAGS;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_RESPONSE
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 flags;
|
|
|
|
UINT32 reserved;
|
|
|
|
BYTE* responseData;
|
|
|
|
UINT32 responseDataLen;
|
2012-04-01 05:32:13 +04:00
|
|
|
TSG_REDIRECTION_FLAGS redirectionFlags;
|
|
|
|
} TSG_PACKET_RESPONSE, *PTSG_PACKET_RESPONSE;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_QUARENC_RESPONSE
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 flags;
|
|
|
|
UINT32 certChainLen;
|
|
|
|
WCHAR* certChainData;
|
2012-04-01 05:32:13 +04:00
|
|
|
GUID nonce;
|
|
|
|
PTSG_PACKET_VERSIONCAPS versionCaps;
|
|
|
|
} TSG_PACKET_QUARENC_RESPONSE, *PTSG_PACKET_QUARENC_RESPONSE;
|
|
|
|
|
|
|
|
typedef struct TSG_PACKET_STRING_MESSAGE
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
INT32 isDisplayMandatory;
|
|
|
|
INT32 isConsentMandatory;
|
|
|
|
UINT32 msgBytes;
|
|
|
|
WCHAR* msgBuffer;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_STRING_MESSAGE, *PTSG_PACKET_STRING_MESSAGE;
|
|
|
|
|
|
|
|
typedef struct TSG_PACKET_REAUTH_MESSAGE
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT64 tunnelContext;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_REAUTH_MESSAGE, *PTSG_PACKET_REAUTH_MESSAGE;
|
|
|
|
|
|
|
|
typedef union
|
|
|
|
{
|
|
|
|
PTSG_PACKET_STRING_MESSAGE consentMessage;
|
|
|
|
PTSG_PACKET_STRING_MESSAGE serviceMessage;
|
|
|
|
PTSG_PACKET_REAUTH_MESSAGE reauthMessage;
|
|
|
|
} TSG_PACKET_TYPE_MESSAGE_UNION, *PTSG_PACKET_TYPE_MESSAGE_UNION;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_MSG_RESPONSE
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 msgID;
|
|
|
|
UINT32 msgType;
|
|
|
|
INT32 isMsgPresent;
|
2012-04-01 05:32:13 +04:00
|
|
|
TSG_PACKET_TYPE_MESSAGE_UNION messagePacket;
|
|
|
|
} TSG_PACKET_MSG_RESPONSE, *PTSG_PACKET_MSG_RESPONSE;
|
|
|
|
|
|
|
|
typedef struct TSG_PACKET_CAPS_RESPONSE
|
|
|
|
{
|
|
|
|
TSG_PACKET_QUARENC_RESPONSE pktQuarEncResponse;
|
|
|
|
TSG_PACKET_MSG_RESPONSE pktConsentMessage;
|
|
|
|
} TSG_PACKET_CAPS_RESPONSE, *PTSG_PACKET_CAPS_RESPONSE;
|
|
|
|
|
|
|
|
typedef struct TSG_PACKET_MSG_REQUEST
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 maxMessagesPerBatch;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_MSG_REQUEST, *PTSG_PACKET_MSG_REQUEST;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET_AUTH
|
|
|
|
{
|
|
|
|
TSG_PACKET_VERSIONCAPS tsgVersionCaps;
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 cookieLen;
|
|
|
|
BYTE* cookie;
|
2012-04-01 05:32:13 +04:00
|
|
|
} TSG_PACKET_AUTH, *PTSG_PACKET_AUTH;
|
|
|
|
|
|
|
|
typedef union
|
|
|
|
{
|
|
|
|
PTSG_PACKET_VERSIONCAPS packetVersionCaps;
|
|
|
|
PTSG_PACKET_AUTH packetAuth;
|
|
|
|
} TSG_INITIAL_PACKET_TYPE_UNION, *PTSG_INITIAL_PACKET_TYPE_UNION;
|
|
|
|
|
|
|
|
typedef struct TSG_PACKET_REAUTH
|
|
|
|
{
|
|
|
|
unsigned __int64 tunnelContext;
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 packetId;
|
2012-04-01 05:32:13 +04:00
|
|
|
TSG_INITIAL_PACKET_TYPE_UNION tsgInitialPacket;
|
|
|
|
} TSG_PACKET_REAUTH, *PTSG_PACKET_REAUTH;
|
|
|
|
|
|
|
|
typedef union
|
|
|
|
{
|
|
|
|
PTSG_PACKET_HEADER packetHeader;
|
|
|
|
PTSG_PACKET_VERSIONCAPS packetVersionCaps;
|
|
|
|
PTSG_PACKET_QUARCONFIGREQUEST packetQuarConfigRequest;
|
|
|
|
PTSG_PACKET_QUARREQUEST packetQuarRequest;
|
|
|
|
PTSG_PACKET_RESPONSE packetResponse;
|
|
|
|
PTSG_PACKET_QUARENC_RESPONSE packetQuarEncResponse;
|
|
|
|
PTSG_PACKET_CAPS_RESPONSE packetCapsResponse;
|
|
|
|
PTSG_PACKET_MSG_REQUEST packetMsgRequest;
|
|
|
|
PTSG_PACKET_MSG_RESPONSE packetMsgResponse;
|
|
|
|
PTSG_PACKET_AUTH packetAuth;
|
|
|
|
PTSG_PACKET_REAUTH packetReauth;
|
|
|
|
} TSG_PACKET_TYPE_UNION;
|
|
|
|
|
|
|
|
typedef struct _TSG_PACKET
|
|
|
|
{
|
2012-10-31 11:43:21 +04:00
|
|
|
UINT32 packetId;
|
2012-04-01 05:32:13 +04:00
|
|
|
TSG_PACKET_TYPE_UNION tsgPacket;
|
|
|
|
} TSG_PACKET, *PTSG_PACKET;
|
|
|
|
|
2012-10-31 11:43:21 +04:00
|
|
|
DWORD TsProxySendToServer(handle_t IDL_handle, BYTE pRpcMessage[], UINT32 count, UINT32* lengths);
|
2012-04-01 05:32:13 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
BOOL tsg_connect(rdpTsg* tsg, const char* hostname, UINT16 port);
|
2012-03-26 20:20:38 +04:00
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
int tsg_write(rdpTsg* tsg, BYTE* data, UINT32 length);
|
|
|
|
int tsg_read(rdpTsg* tsg, BYTE* data, UINT32 length);
|
2012-03-26 20:20:38 +04:00
|
|
|
|
2012-04-24 00:33:18 +04:00
|
|
|
rdpTsg* tsg_new(rdpTransport* transport);
|
2012-03-26 10:45:01 +04:00
|
|
|
void tsg_free(rdpTsg* tsg);
|
|
|
|
|
|
|
|
#ifdef WITH_DEBUG_TSG
|
|
|
|
#define DEBUG_TSG(fmt, ...) DEBUG_CLASS(TSG, fmt, ## __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define DEBUG_TSG(fmt, ...) DEBUG_NULL(fmt, ## __VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
2012-03-26 20:20:38 +04:00
|
|
|
#endif /* FREERDP_CORE_TSG_H */
|