henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 1 | /* |
| 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 Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 11 | #ifndef RTC_BASE_PROXY_SERVER_H_ |
| 12 | #define RTC_BASE_PROXY_SERVER_H_ |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 13 | |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 14 | #include <memory> |
Niels Möller | d970967 | 2019-03-25 07:57:50 | [diff] [blame] | 15 | #include <vector> |
| 16 | |
| 17 | #include "absl/memory/memory.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 18 | #include "rtc_base/async_socket.h" |
| 19 | #include "rtc_base/constructor_magic.h" |
Niels Möller | 1333948 | 2019-03-28 12:30:15 | [diff] [blame] | 20 | #include "rtc_base/memory/fifo_buffer.h" |
Niels Möller | 4415315 | 2018-12-17 13:04:05 | [diff] [blame] | 21 | #include "rtc_base/server_socket_adapters.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 22 | #include "rtc_base/socket_address.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 23 | |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 24 | namespace rtc { |
| 25 | |
| 26 | class 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 | |
| 35 | class 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 | |
| 65 | class ProxyServer : public sigslot::has_slots<> { |
| 66 | public: |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 67 | ProxyServer(SocketFactory* int_factory, |
| 68 | const SocketAddress& int_addr, |
| 69 | SocketFactory* ext_factory, |
| 70 | const SocketAddress& ext_ip); |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 71 | ~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 Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 79 | |
| 80 | private: |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 81 | SocketFactory* ext_factory_; |
| 82 | SocketAddress ext_ip_; |
| 83 | std::unique_ptr<AsyncSocket> server_socket_; |
Niels Möller | d970967 | 2019-03-25 07:57:50 | [diff] [blame] | 84 | std::vector<std::unique_ptr<ProxyBinding>> bindings_; |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 85 | RTC_DISALLOW_COPY_AND_ASSIGN(ProxyServer); |
| 86 | }; |
| 87 | |
| 88 | // SocksProxyServer is a simple extension of ProxyServer to implement SOCKS. |
| 89 | class SocksProxyServer : public ProxyServer { |
| 90 | public: |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 91 | 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 Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 97 | protected: |
| 98 | AsyncProxyServerSocket* WrapSocket(AsyncSocket* socket) override; |
| 99 | RTC_DISALLOW_COPY_AND_ASSIGN(SocksProxyServer); |
| 100 | }; |
| 101 | |
| 102 | } // namespace rtc |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 103 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 104 | #endif // RTC_BASE_PROXY_SERVER_H_ |