2011-07-03 05:50:11 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-03 05:50:11 +04:00
|
|
|
* Network Transport Layer
|
|
|
|
*
|
|
|
|
* Copyright 2011 Vic Lee
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#ifndef FREERDP_LIB_CORE_TRANSPORT_H
|
|
|
|
#define FREERDP_LIB_CORE_TRANSPORT_H
|
2011-07-03 05:50:11 +04:00
|
|
|
|
2011-07-10 23:34:43 +04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TRANSPORT_LAYER_TCP,
|
2011-08-25 09:30:17 +04:00
|
|
|
TRANSPORT_LAYER_TLS,
|
2012-03-26 20:20:38 +04:00
|
|
|
TRANSPORT_LAYER_TSG,
|
2013-10-11 14:12:50 +04:00
|
|
|
TRANSPORT_LAYER_TSG_TLS,
|
2011-08-25 09:30:17 +04:00
|
|
|
TRANSPORT_LAYER_CLOSED
|
2011-07-10 23:34:43 +04:00
|
|
|
} TRANSPORT_LAYER;
|
|
|
|
|
2011-07-07 21:37:48 +04:00
|
|
|
typedef struct rdp_transport rdpTransport;
|
|
|
|
|
2011-07-03 23:34:15 +04:00
|
|
|
#include "tcp.h"
|
2012-11-15 06:19:17 +04:00
|
|
|
#include "nla.h"
|
2012-05-05 03:48:53 +04:00
|
|
|
|
2012-12-13 08:18:20 +04:00
|
|
|
#include "gateway/tsg.h"
|
2015-03-17 21:54:16 +03:00
|
|
|
#include "gateway/rdg.h"
|
2012-12-13 08:18:20 +04:00
|
|
|
|
2012-05-05 03:48:53 +04:00
|
|
|
#include <winpr/sspi.h>
|
2013-10-09 07:43:57 +04:00
|
|
|
#include <winpr/wlog.h>
|
2013-03-27 21:03:41 +04:00
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/thread.h>
|
|
|
|
#include <winpr/stream.h>
|
2012-12-22 00:36:10 +04:00
|
|
|
#include <winpr/collections.h>
|
|
|
|
|
2016-08-10 10:12:55 +03:00
|
|
|
#include <freerdp/api.h>
|
2012-02-17 09:58:30 +04:00
|
|
|
#include <freerdp/crypto/tls.h>
|
2011-07-03 23:34:15 +04:00
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
#include <time.h>
|
2011-07-07 21:37:48 +04:00
|
|
|
#include <freerdp/types.h>
|
2011-07-06 07:18:00 +04:00
|
|
|
#include <freerdp/settings.h>
|
2013-03-22 00:45:25 +04:00
|
|
|
|
2014-05-21 19:32:14 +04:00
|
|
|
|
2016-08-10 10:12:55 +03:00
|
|
|
typedef int (*TransportRecv)(rdpTransport* transport, wStream* stream,
|
|
|
|
void* extra);
|
2011-07-03 05:50:11 +04:00
|
|
|
|
2011-07-03 06:59:07 +04:00
|
|
|
struct rdp_transport
|
2011-07-03 05:50:11 +04:00
|
|
|
{
|
2011-07-10 23:34:43 +04:00
|
|
|
TRANSPORT_LAYER layer;
|
2015-01-28 21:46:17 +03:00
|
|
|
BIO* frontBio;
|
2015-03-17 21:54:16 +03:00
|
|
|
rdpRdg* rdg;
|
2012-11-15 05:46:51 +04:00
|
|
|
rdpTsg* tsg;
|
2015-02-11 22:27:29 +03:00
|
|
|
rdpTls* tls;
|
2014-12-15 17:42:04 +03:00
|
|
|
rdpContext* context;
|
2015-02-15 19:10:14 +03:00
|
|
|
rdpNla* nla;
|
2012-11-15 05:46:51 +04:00
|
|
|
rdpSettings* settings;
|
2012-12-22 00:49:02 +04:00
|
|
|
void* ReceiveExtra;
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* ReceiveBuffer;
|
2012-12-22 00:49:02 +04:00
|
|
|
TransportRecv ReceiveCallback;
|
2013-04-12 21:44:23 +04:00
|
|
|
wStreamPool* ReceivePool;
|
2013-05-01 02:25:18 +04:00
|
|
|
HANDLE connectedEvent;
|
2014-03-27 22:24:15 +04:00
|
|
|
BOOL NlaMode;
|
2015-02-15 18:06:17 +03:00
|
|
|
BOOL blocking;
|
2014-03-24 22:44:18 +04:00
|
|
|
BOOL GatewayEnabled;
|
2013-11-08 00:14:59 +04:00
|
|
|
CRITICAL_SECTION ReadLock;
|
|
|
|
CRITICAL_SECTION WriteLock;
|
2015-04-14 13:49:01 +03:00
|
|
|
ULONG written;
|
2016-05-03 18:24:07 +03:00
|
|
|
HANDLE rereadEvent;
|
|
|
|
BOOL haveMoreBytesToRead;
|
2017-02-22 11:42:56 +03:00
|
|
|
wLog* log;
|
2011-07-03 05:50:11 +04:00
|
|
|
};
|
|
|
|
|
2016-08-10 10:12:55 +03:00
|
|
|
FREERDP_LOCAL wStream* transport_send_stream_init(rdpTransport* transport,
|
|
|
|
int size);
|
|
|
|
FREERDP_LOCAL BOOL transport_connect(rdpTransport* transport,
|
|
|
|
const char* hostname, UINT16 port, int timeout);
|
|
|
|
FREERDP_LOCAL BOOL transport_attach(rdpTransport* transport, int sockfd);
|
|
|
|
FREERDP_LOCAL BOOL transport_disconnect(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL BOOL transport_connect_rdp(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL BOOL transport_connect_tls(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL BOOL transport_connect_nla(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL BOOL transport_accept_rdp(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL BOOL transport_accept_tls(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL BOOL transport_accept_nla(rdpTransport* transport);
|
2018-08-22 14:40:41 +03:00
|
|
|
|
2016-08-10 10:12:55 +03:00
|
|
|
FREERDP_LOCAL int transport_read_pdu(rdpTransport* transport, wStream* s);
|
|
|
|
FREERDP_LOCAL int transport_write(rdpTransport* transport, wStream* s);
|
|
|
|
|
|
|
|
FREERDP_LOCAL void transport_get_fds(rdpTransport* transport, void** rfds,
|
|
|
|
int* rcount);
|
|
|
|
FREERDP_LOCAL int transport_check_fds(rdpTransport* transport);
|
|
|
|
|
|
|
|
FREERDP_LOCAL DWORD transport_get_event_handles(rdpTransport* transport,
|
|
|
|
HANDLE* events, DWORD nCount);
|
|
|
|
|
|
|
|
FREERDP_LOCAL BOOL transport_set_blocking_mode(rdpTransport* transport,
|
|
|
|
BOOL blocking);
|
|
|
|
FREERDP_LOCAL void transport_set_gateway_enabled(rdpTransport* transport,
|
|
|
|
BOOL GatewayEnabled);
|
|
|
|
FREERDP_LOCAL void transport_set_nla_mode(rdpTransport* transport,
|
|
|
|
BOOL NlaMode);
|
|
|
|
FREERDP_LOCAL BOOL transport_is_write_blocked(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL int transport_drain_output_buffer(rdpTransport* transport);
|
|
|
|
|
|
|
|
FREERDP_LOCAL wStream* transport_receive_pool_take(rdpTransport* transport);
|
|
|
|
FREERDP_LOCAL int transport_receive_pool_return(rdpTransport* transport,
|
|
|
|
wStream* pdu);
|
|
|
|
|
|
|
|
FREERDP_LOCAL rdpTransport* transport_new(rdpContext* context);
|
|
|
|
FREERDP_LOCAL void transport_free(rdpTransport* transport);
|
2011-07-03 05:50:11 +04:00
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_LIB_CORE_TRANSPORT_H */
|