2020-01-22 12:43:51 +01:00
|
|
|
//
|
|
|
|
// Created by Grishka on 29.03.17.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef LIBTGVOIP_NETWORKSOCKET_H
|
|
|
|
#define LIBTGVOIP_NETWORKSOCKET_H
|
|
|
|
|
2020-03-24 12:15:04 +01:00
|
|
|
#include "tools/Buffers.h"
|
|
|
|
#include "tools/utils.h"
|
|
|
|
#include <atomic>
|
|
|
|
#include <memory>
|
2020-01-22 12:43:51 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace tgvoip
|
|
|
|
{
|
|
|
|
|
2020-01-23 16:45:53 +01:00
|
|
|
// API compatibility
|
|
|
|
struct IPv4Address
|
|
|
|
{
|
2020-03-24 12:15:04 +01:00
|
|
|
IPv4Address(std::string addr) : addr(addr){};
|
|
|
|
std::string addr;
|
2020-01-23 16:45:53 +01:00
|
|
|
};
|
|
|
|
struct IPv6Address
|
|
|
|
{
|
2020-03-24 12:15:04 +01:00
|
|
|
IPv6Address(std::string addr) : addr(addr){};
|
|
|
|
std::string addr;
|
2020-01-23 16:45:53 +01:00
|
|
|
};
|
|
|
|
|
2020-01-22 12:43:51 +01:00
|
|
|
enum class NetworkProtocol
|
|
|
|
{
|
2020-03-24 12:15:04 +01:00
|
|
|
UDP = 0,
|
|
|
|
TCP
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct TCPO2State
|
|
|
|
{
|
2020-03-24 12:15:04 +01:00
|
|
|
unsigned char key[32];
|
|
|
|
unsigned char iv[16];
|
|
|
|
unsigned char ecount[16];
|
|
|
|
uint32_t num;
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class NetworkAddress
|
|
|
|
{
|
|
|
|
public:
|
2020-03-24 12:15:04 +01:00
|
|
|
virtual std::string ToString() const;
|
|
|
|
bool operator==(const NetworkAddress &other) const;
|
|
|
|
bool operator!=(const NetworkAddress &other) const;
|
|
|
|
virtual ~NetworkAddress() = default;
|
|
|
|
virtual bool IsEmpty() const;
|
|
|
|
virtual bool PrefixMatches(const unsigned int prefix, const NetworkAddress &other) const;
|
|
|
|
|
|
|
|
static NetworkAddress Empty();
|
|
|
|
static NetworkAddress IPv4(std::string str);
|
|
|
|
static NetworkAddress IPv4(uint32_t addr);
|
|
|
|
static NetworkAddress IPv4(const BufferInputStream &in);
|
|
|
|
static NetworkAddress IPv6(std::string str);
|
|
|
|
static NetworkAddress IPv6(const uint8_t addr[16]);
|
|
|
|
static NetworkAddress IPv6(const BufferInputStream &in);
|
|
|
|
|
|
|
|
bool isIPv6 = false;
|
|
|
|
union {
|
|
|
|
uint32_t ipv4;
|
|
|
|
uint8_t ipv6[16];
|
|
|
|
} addr;
|
2020-01-22 12:43:51 +01:00
|
|
|
|
2020-03-21 15:08:03 +01:00
|
|
|
public:
|
2020-03-24 12:15:04 +01:00
|
|
|
NetworkAddress(){};
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct NetworkPacket
|
|
|
|
{
|
2020-03-24 12:15:04 +01:00
|
|
|
TGVOIP_MOVE_ONLY(NetworkPacket);
|
|
|
|
std::shared_ptr<Buffer> data;
|
|
|
|
NetworkAddress address;
|
|
|
|
uint16_t port;
|
|
|
|
NetworkProtocol protocol;
|
|
|
|
|
|
|
|
static NetworkPacket Empty()
|
|
|
|
{
|
|
|
|
return NetworkPacket{std::make_shared<Buffer>(), NetworkAddress::Empty(), 0, NetworkProtocol::UDP};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsEmpty()
|
|
|
|
{
|
|
|
|
return !data || data->IsEmpty() || (protocol == NetworkProtocol::UDP && (port == 0 || address.IsEmpty()));
|
|
|
|
}
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class SocketSelectCanceller
|
|
|
|
{
|
|
|
|
public:
|
2020-03-24 12:15:04 +01:00
|
|
|
virtual ~SocketSelectCanceller();
|
|
|
|
virtual void CancelSelect() = 0;
|
|
|
|
static std::unique_ptr<SocketSelectCanceller> Create();
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class NetworkSocket
|
|
|
|
{
|
|
|
|
public:
|
2020-03-24 12:15:04 +01:00
|
|
|
friend class NetworkSocketPosix;
|
|
|
|
friend class NetworkSocketWinsock;
|
|
|
|
|
|
|
|
TGVOIP_DISALLOW_COPY_AND_ASSIGN(NetworkSocket);
|
|
|
|
NetworkSocket(NetworkProtocol protocol);
|
|
|
|
virtual ~NetworkSocket();
|
|
|
|
virtual void Send(NetworkPacket &&packet) = 0;
|
|
|
|
virtual NetworkPacket Receive(size_t maxLen = 0) = 0;
|
|
|
|
size_t Receive(unsigned char *buffer, size_t len);
|
|
|
|
virtual void Open() = 0;
|
|
|
|
virtual void Close() = 0;
|
|
|
|
virtual uint16_t GetLocalPort() { return 0; };
|
|
|
|
virtual void Connect(const NetworkAddress address, uint16_t port) = 0;
|
|
|
|
virtual std::string GetLocalInterfaceInfo(NetworkAddress *inet4addr, NetworkAddress *inet6addr);
|
|
|
|
virtual void OnActiveInterfaceChanged(){};
|
|
|
|
virtual NetworkAddress GetConnectedAddress() { return NetworkAddress::Empty(); };
|
|
|
|
virtual uint16_t GetConnectedPort() { return 0; };
|
|
|
|
virtual void SetTimeouts(int sendTimeout, int recvTimeout){};
|
|
|
|
|
|
|
|
virtual bool IsFailed();
|
|
|
|
virtual bool IsReadyToSend()
|
|
|
|
{
|
|
|
|
return readyToSend;
|
|
|
|
}
|
|
|
|
virtual bool OnReadyToSend()
|
|
|
|
{
|
|
|
|
readyToSend = true;
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
virtual bool OnReadyToReceive() { return true; };
|
|
|
|
void SetTimeout(double timeout)
|
|
|
|
{
|
|
|
|
this->timeout = timeout;
|
|
|
|
};
|
|
|
|
|
|
|
|
static std::shared_ptr<NetworkSocket> Create(NetworkProtocol protocol);
|
|
|
|
static NetworkAddress ResolveDomainName(std::string name);
|
|
|
|
static bool Select(std::vector<std::shared_ptr<NetworkSocket>> &readFds, std::vector<std::shared_ptr<NetworkSocket>> &writeFds, std::vector<std::shared_ptr<NetworkSocket>> &errorFds, const std::unique_ptr<SocketSelectCanceller> &canceller);
|
2020-01-22 12:43:51 +01:00
|
|
|
|
|
|
|
protected:
|
2020-03-24 12:15:04 +01:00
|
|
|
virtual uint16_t GenerateLocalPort();
|
|
|
|
virtual void SetMaxPriority();
|
|
|
|
|
|
|
|
static void GenerateTCPO2States(unsigned char *buffer, TCPO2State *recvState, TCPO2State *sendState);
|
|
|
|
static void EncryptForTCPO2(unsigned char *buffer, size_t len, TCPO2State *state);
|
|
|
|
double ipv6Timeout;
|
|
|
|
unsigned char nat64Prefix[12];
|
|
|
|
std::atomic<bool> failed;
|
|
|
|
bool readyToSend = false;
|
|
|
|
double lastSuccessfulOperationTime = 0.0;
|
|
|
|
double timeout = 0.0;
|
|
|
|
NetworkProtocol protocol;
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class NetworkSocketWrapper : public NetworkSocket
|
|
|
|
{
|
|
|
|
public:
|
2020-03-24 12:15:04 +01:00
|
|
|
NetworkSocketWrapper(NetworkProtocol protocol) : NetworkSocket(protocol){};
|
|
|
|
virtual ~NetworkSocketWrapper(){};
|
|
|
|
virtual std::shared_ptr<NetworkSocket> GetWrapped() = 0;
|
|
|
|
virtual void InitConnection() = 0;
|
|
|
|
virtual void SetNonBlocking(bool){};
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class NetworkSocketTCPObfuscated : public NetworkSocketWrapper
|
|
|
|
{
|
|
|
|
public:
|
2020-03-24 12:15:04 +01:00
|
|
|
NetworkSocketTCPObfuscated(const std::shared_ptr<NetworkSocket> &wrapped);
|
|
|
|
virtual ~NetworkSocketTCPObfuscated();
|
2020-03-29 16:55:33 +02:00
|
|
|
virtual std::shared_ptr<NetworkSocket> GetWrapped() override;
|
|
|
|
virtual void InitConnection() override;
|
2020-03-24 17:10:40 +01:00
|
|
|
virtual void Send(NetworkPacket &&packet) override;
|
2020-03-24 12:15:04 +01:00
|
|
|
virtual NetworkPacket Receive(size_t maxLen) override;
|
2020-03-29 16:55:33 +02:00
|
|
|
virtual void Open() override;
|
|
|
|
virtual void Close() override;
|
|
|
|
virtual void Connect(const NetworkAddress address, uint16_t port) override;
|
|
|
|
virtual bool OnReadyToSend() override;
|
2020-03-24 12:15:04 +01:00
|
|
|
|
2020-03-29 16:55:33 +02:00
|
|
|
virtual bool IsFailed() override;
|
|
|
|
virtual bool IsReadyToSend() override
|
2020-03-24 12:15:04 +01:00
|
|
|
{
|
|
|
|
return readyToSend && wrapped->IsReadyToSend();
|
|
|
|
};
|
2020-01-22 12:43:51 +01:00
|
|
|
|
|
|
|
private:
|
2020-03-24 12:15:04 +01:00
|
|
|
std::shared_ptr<NetworkSocket> wrapped;
|
|
|
|
TCPO2State recvState;
|
|
|
|
TCPO2State sendState;
|
|
|
|
bool initialized = false;
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class NetworkSocketSOCKS5Proxy : public NetworkSocketWrapper
|
|
|
|
{
|
|
|
|
public:
|
2020-03-24 12:15:04 +01:00
|
|
|
NetworkSocketSOCKS5Proxy(const std::shared_ptr<NetworkSocket> &tcp, const std::shared_ptr<NetworkSocket> &udp, std::string username, std::string password);
|
|
|
|
virtual ~NetworkSocketSOCKS5Proxy();
|
2020-03-24 17:10:40 +01:00
|
|
|
virtual void Send(NetworkPacket &&packet) override;
|
2020-03-24 12:15:04 +01:00
|
|
|
virtual NetworkPacket Receive(size_t maxLen) override;
|
|
|
|
virtual void Open() override;
|
2020-03-29 16:55:33 +02:00
|
|
|
virtual void Close() override;
|
|
|
|
virtual void Connect(const NetworkAddress address, uint16_t port) override;
|
|
|
|
virtual std::shared_ptr<NetworkSocket> GetWrapped() override;
|
|
|
|
virtual void InitConnection() override;
|
|
|
|
virtual bool IsFailed() override;
|
|
|
|
virtual NetworkAddress GetConnectedAddress() override;
|
|
|
|
virtual uint16_t GetConnectedPort() override;
|
|
|
|
virtual bool OnReadyToSend() override;
|
|
|
|
virtual bool OnReadyToReceive() override;
|
2020-03-24 12:15:04 +01:00
|
|
|
|
|
|
|
bool NeedSelectForSending();
|
2020-01-22 12:43:51 +01:00
|
|
|
|
|
|
|
private:
|
2020-03-24 12:15:04 +01:00
|
|
|
void SendConnectionCommand();
|
|
|
|
enum ConnectionState
|
|
|
|
{
|
|
|
|
Initial,
|
|
|
|
WaitingForAuthMethod,
|
|
|
|
WaitingForAuthResult,
|
|
|
|
WaitingForCommandResult,
|
|
|
|
Connected
|
|
|
|
};
|
|
|
|
std::shared_ptr<NetworkSocket> tcp;
|
|
|
|
std::shared_ptr<NetworkSocket> udp;
|
|
|
|
std::string username;
|
|
|
|
std::string password;
|
|
|
|
NetworkAddress connectedAddress = NetworkAddress::Empty();
|
|
|
|
uint16_t connectedPort;
|
|
|
|
ConnectionState state = ConnectionState::Initial;
|
2020-01-22 12:43:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace tgvoip
|
|
|
|
|
|
|
|
#endif //LIBTGVOIP_NETWORKSOCKET_H
|