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_NAT_SERVER_H_ |
| 12 | #define RTC_BASE_NAT_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 <map> |
| 15 | #include <set> |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 16 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 17 | #include "rtc_base/async_udp_socket.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 18 | #include "rtc_base/nat_types.h" |
| 19 | #include "rtc_base/proxy_server.h" |
| 20 | #include "rtc_base/socket_address_pair.h" |
| 21 | #include "rtc_base/socket_factory.h" |
Markus Handell | 18523c3 | 2020-07-08 15:55:58 | [diff] [blame] | 22 | #include "rtc_base/synchronization/mutex.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 23 | #include "rtc_base/thread.h" |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 24 | |
| 25 | namespace rtc { |
| 26 | |
| 27 | // Change how routes (socketaddress pairs) are compared based on the type of |
| 28 | // NAT. The NAT server maintains a hashtable of the routes that it knows |
| 29 | // about. So these affect which routes are treated the same. |
| 30 | struct RouteCmp { |
| 31 | explicit RouteCmp(NAT* nat); |
| 32 | size_t operator()(const SocketAddressPair& r) const; |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 33 | bool operator()(const SocketAddressPair& r1, |
| 34 | const SocketAddressPair& r2) const; |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 35 | |
| 36 | bool symmetric; |
| 37 | }; |
| 38 | |
| 39 | // Changes how addresses are compared based on the filtering rules of the NAT. |
| 40 | struct AddrCmp { |
| 41 | explicit AddrCmp(NAT* nat); |
| 42 | size_t operator()(const SocketAddress& r) const; |
| 43 | bool operator()(const SocketAddress& r1, const SocketAddress& r2) const; |
| 44 | |
| 45 | bool use_ip; |
| 46 | bool use_port; |
| 47 | }; |
| 48 | |
| 49 | // Implements the NAT device. It listens for packets on the internal network, |
| 50 | // translates them, and sends them out over the external network. |
| 51 | // |
| 52 | // TCP connections initiated from the internal side of the NAT server are |
| 53 | // also supported, by making a connection to the NAT server's TCP address and |
| 54 | // then sending the remote address in quasi-STUN format. The connection status |
| 55 | // will be indicated back to the client as a 1 byte status code, where '0' |
| 56 | // indicates success. |
| 57 | |
| 58 | const int NAT_SERVER_UDP_PORT = 4237; |
| 59 | const int NAT_SERVER_TCP_PORT = 4238; |
| 60 | |
Per K | a8cd2ba | 2023-12-13 07:10:06 | [diff] [blame] | 61 | class NATServer { |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 62 | public: |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 63 | NATServer(NATType type, |
Per K | a8cd2ba | 2023-12-13 07:10:06 | [diff] [blame] | 64 | rtc::Thread& internal_socket_thread, |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 65 | SocketFactory* internal, |
| 66 | const SocketAddress& internal_udp_addr, |
| 67 | const SocketAddress& internal_tcp_addr, |
Per K | a8cd2ba | 2023-12-13 07:10:06 | [diff] [blame] | 68 | rtc::Thread& external_socket_thread, |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 69 | SocketFactory* external, |
| 70 | const SocketAddress& external_ip); |
Per K | a8cd2ba | 2023-12-13 07:10:06 | [diff] [blame] | 71 | ~NATServer(); |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 72 | |
Byoungchan Lee | 14af762 | 2022-01-11 20:24:58 | [diff] [blame] | 73 | NATServer(const NATServer&) = delete; |
| 74 | NATServer& operator=(const NATServer&) = delete; |
| 75 | |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 76 | SocketAddress internal_udp_address() const { |
| 77 | return udp_server_socket_->GetLocalAddress(); |
| 78 | } |
| 79 | |
| 80 | SocketAddress internal_tcp_address() const { |
| 81 | return tcp_proxy_server_->GetServerAddress(); |
| 82 | } |
| 83 | |
| 84 | // Packets received on one of the networks. |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 85 | void OnInternalUDPPacket(AsyncPacketSocket* socket, |
Per K | a8cd2ba | 2023-12-13 07:10:06 | [diff] [blame] | 86 | const rtc::ReceivedPacket& packet); |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 87 | void OnExternalUDPPacket(AsyncPacketSocket* socket, |
Per K | a8cd2ba | 2023-12-13 07:10:06 | [diff] [blame] | 88 | const rtc::ReceivedPacket& packet); |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 89 | |
| 90 | private: |
| 91 | typedef std::set<SocketAddress, AddrCmp> AddressSet; |
| 92 | |
| 93 | /* Records a translation and the associated external socket. */ |
| 94 | struct TransEntry { |
| 95 | TransEntry(const SocketAddressPair& r, AsyncUDPSocket* s, NAT* nat); |
| 96 | ~TransEntry(); |
| 97 | |
Mirko Bonadei | c3efe1a | 2020-06-30 12:24:09 | [diff] [blame] | 98 | void AllowlistInsert(const SocketAddress& addr); |
| 99 | bool AllowlistContains(const SocketAddress& ext_addr); |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 100 | |
| 101 | SocketAddressPair route; |
| 102 | AsyncUDPSocket* socket; |
Mirko Bonadei | c3efe1a | 2020-06-30 12:24:09 | [diff] [blame] | 103 | AddressSet* allowlist; |
Markus Handell | 18523c3 | 2020-07-08 15:55:58 | [diff] [blame] | 104 | webrtc::Mutex mutex_; |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | typedef std::map<SocketAddressPair, TransEntry*, RouteCmp> InternalMap; |
| 108 | typedef std::map<SocketAddress, TransEntry*> ExternalMap; |
| 109 | |
| 110 | /* Creates a new entry that translates the given route. */ |
| 111 | void Translate(const SocketAddressPair& route); |
| 112 | |
| 113 | /* Determines whether the NAT would filter out a packet from this address. */ |
| 114 | bool ShouldFilterOut(TransEntry* entry, const SocketAddress& ext_addr); |
| 115 | |
| 116 | NAT* nat_; |
Per K | a8cd2ba | 2023-12-13 07:10:06 | [diff] [blame] | 117 | rtc::Thread& internal_socket_thread_; |
| 118 | rtc::Thread& external_socket_thread_; |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 119 | SocketFactory* external_; |
| 120 | SocketAddress external_ip_; |
| 121 | AsyncUDPSocket* udp_server_socket_; |
| 122 | ProxyServer* tcp_proxy_server_; |
| 123 | InternalMap* int_map_; |
| 124 | ExternalMap* ext_map_; |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 125 | }; |
| 126 | |
| 127 | } // namespace rtc |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 128 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 129 | #endif // RTC_BASE_NAT_SERVER_H_ |