blob: 139cc9138ca27cab3b65f7d4e4a6a6e464070dd1 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:261/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#ifndef RTC_BASE_PROXY_SERVER_H_
12#define RTC_BASE_PROXY_SERVER_H_
henrike@webrtc.orgf0488722014-05-13 18:00:2613
Henrik Kjellanderec78f1c2017-06-29 05:52:5014#include <memory>
Niels Möllerd9709672019-03-25 07:57:5015#include <vector>
16
17#include "absl/memory/memory.h"
Steve Anton10542f22019-01-11 17:11:0018#include "rtc_base/async_socket.h"
19#include "rtc_base/constructor_magic.h"
Niels Möller13339482019-03-28 12:30:1520#include "rtc_base/memory/fifo_buffer.h"
Niels Möller44153152018-12-17 13:04:0521#include "rtc_base/server_socket_adapters.h"
Steve Anton10542f22019-01-11 17:11:0022#include "rtc_base/socket_address.h"
henrike@webrtc.orgf0488722014-05-13 18:00:2623
Henrik Kjellanderec78f1c2017-06-29 05:52:5024namespace rtc {
25
26class SocketFactory;
27
28// ProxyServer is a base class that allows for easy construction of proxy
29// servers. With its helper class ProxyBinding, it contains all the necessary
30// logic for receiving and bridging connections. The specific client-server
31// proxy protocol is implemented by an instance of the AsyncProxyServerSocket
32// class; children of ProxyServer implement WrapSocket appropriately to return
33// the correct protocol handler.
34
35class ProxyBinding : public sigslot::has_slots<> {
36 public:
37 ProxyBinding(AsyncProxyServerSocket* in_socket, AsyncSocket* out_socket);
38 ~ProxyBinding() override;
39 sigslot::signal1<ProxyBinding*> SignalDestroyed;
40
41 private:
42 void OnConnectRequest(AsyncProxyServerSocket* socket,
43 const SocketAddress& addr);
44 void OnInternalRead(AsyncSocket* socket);
45 void OnInternalWrite(AsyncSocket* socket);
46 void OnInternalClose(AsyncSocket* socket, int err);
47 void OnExternalConnect(AsyncSocket* socket);
48 void OnExternalRead(AsyncSocket* socket);
49 void OnExternalWrite(AsyncSocket* socket);
50 void OnExternalClose(AsyncSocket* socket, int err);
51
52 static void Read(AsyncSocket* socket, FifoBuffer* buffer);
53 static void Write(AsyncSocket* socket, FifoBuffer* buffer);
54 void Destroy();
55
56 static const int kBufferSize = 4096;
57 std::unique_ptr<AsyncProxyServerSocket> int_socket_;
58 std::unique_ptr<AsyncSocket> ext_socket_;
59 bool connected_;
60 FifoBuffer out_buffer_;
61 FifoBuffer in_buffer_;
62 RTC_DISALLOW_COPY_AND_ASSIGN(ProxyBinding);
63};
64
65class ProxyServer : public sigslot::has_slots<> {
66 public:
Yves Gerey665174f2018-06-19 13:03:0567 ProxyServer(SocketFactory* int_factory,
68 const SocketAddress& int_addr,
69 SocketFactory* ext_factory,
70 const SocketAddress& ext_ip);
Henrik Kjellanderec78f1c2017-06-29 05:52:5071 ~ProxyServer() override;
72
73 // Returns the address to which the proxy server is bound
74 SocketAddress GetServerAddress();
75
76 protected:
77 void OnAcceptEvent(AsyncSocket* socket);
78 virtual AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) = 0;
Henrik Kjellanderec78f1c2017-06-29 05:52:5079
80 private:
Henrik Kjellanderec78f1c2017-06-29 05:52:5081 SocketFactory* ext_factory_;
82 SocketAddress ext_ip_;
83 std::unique_ptr<AsyncSocket> server_socket_;
Niels Möllerd9709672019-03-25 07:57:5084 std::vector<std::unique_ptr<ProxyBinding>> bindings_;
Henrik Kjellanderec78f1c2017-06-29 05:52:5085 RTC_DISALLOW_COPY_AND_ASSIGN(ProxyServer);
86};
87
88// SocksProxyServer is a simple extension of ProxyServer to implement SOCKS.
89class SocksProxyServer : public ProxyServer {
90 public:
Yves Gerey665174f2018-06-19 13:03:0591 SocksProxyServer(SocketFactory* int_factory,
92 const SocketAddress& int_addr,
93 SocketFactory* ext_factory,
94 const SocketAddress& ext_ip)
95 : ProxyServer(int_factory, int_addr, ext_factory, ext_ip) {}
96
Henrik Kjellanderec78f1c2017-06-29 05:52:5097 protected:
98 AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) override;
99 RTC_DISALLOW_COPY_AND_ASSIGN(SocksProxyServer);
100};
101
102} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:26103
Steve Anton10542f22019-01-11 17:11:00104#endif // RTC_BASE_PROXY_SERVER_H_