Branch data Line data Source code
# 1 : : // Copyright (c) 2009-2020 The Bitcoin Core developers
# 2 : : // Distributed under the MIT software license, see the accompanying
# 3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
# 4 : :
# 5 : : #ifndef BITCOIN_NETADDRESS_H
# 6 : : #define BITCOIN_NETADDRESS_H
# 7 : :
# 8 : : #if defined(HAVE_CONFIG_H)
# 9 : : #include <config/bitcoin-config.h>
# 10 : : #endif
# 11 : :
# 12 : : #include <compat.h>
# 13 : : #include <serialize.h>
# 14 : :
# 15 : : #include <stdint.h>
# 16 : : #include <string>
# 17 : : #include <vector>
# 18 : :
# 19 : : enum Network
# 20 : : {
# 21 : : NET_UNROUTABLE = 0,
# 22 : : NET_IPV4,
# 23 : : NET_IPV6,
# 24 : : NET_ONION,
# 25 : : NET_INTERNAL,
# 26 : :
# 27 : : NET_MAX,
# 28 : : };
# 29 : :
# 30 : : /** IP address (IPv6, or IPv4 using mapped IPv6 range (::FFFF:0:0/96)) */
# 31 : : class CNetAddr
# 32 : : {
# 33 : : protected:
# 34 : : unsigned char ip[16]; // in network byte order
# 35 : : uint32_t scopeId{0}; // for scoped/link-local ipv6 addresses
# 36 : :
# 37 : : public:
# 38 : : CNetAddr();
# 39 : : explicit CNetAddr(const struct in_addr& ipv4Addr);
# 40 : : void SetIP(const CNetAddr& ip);
# 41 : :
# 42 : : /**
# 43 : : * Set raw IPv4 or IPv6 address (in network byte order)
# 44 : : * @note Only NET_IPV4 and NET_IPV6 are allowed for network.
# 45 : : */
# 46 : : void SetRaw(Network network, const uint8_t *data);
# 47 : :
# 48 : : bool SetInternal(const std::string& name);
# 49 : :
# 50 : : bool SetSpecial(const std::string &strName); // for Tor addresses
# 51 : : bool IsBindAny() const; // INADDR_ANY equivalent
# 52 : : bool IsIPv4() const; // IPv4 mapped address (::FFFF:0:0/96, 0.0.0.0/0)
# 53 : : bool IsIPv6() const; // IPv6 address (not mapped IPv4, not Tor)
# 54 : : bool IsRFC1918() const; // IPv4 private networks (10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12)
# 55 : : bool IsRFC2544() const; // IPv4 inter-network communications (198.18.0.0/15)
# 56 : : bool IsRFC6598() const; // IPv4 ISP-level NAT (100.64.0.0/10)
# 57 : : bool IsRFC5737() const; // IPv4 documentation addresses (192.0.2.0/24, 198.51.100.0/24, 203.0.113.0/24)
# 58 : : bool IsRFC3849() const; // IPv6 documentation address (2001:0DB8::/32)
# 59 : : bool IsRFC3927() const; // IPv4 autoconfig (169.254.0.0/16)
# 60 : : bool IsRFC3964() const; // IPv6 6to4 tunnelling (2002::/16)
# 61 : : bool IsRFC4193() const; // IPv6 unique local (FC00::/7)
# 62 : : bool IsRFC4380() const; // IPv6 Teredo tunnelling (2001::/32)
# 63 : : bool IsRFC4843() const; // IPv6 ORCHID (deprecated) (2001:10::/28)
# 64 : : bool IsRFC7343() const; // IPv6 ORCHIDv2 (2001:20::/28)
# 65 : : bool IsRFC4862() const; // IPv6 autoconfig (FE80::/64)
# 66 : : bool IsRFC6052() const; // IPv6 well-known prefix for IPv4-embedded address (64:FF9B::/96)
# 67 : : bool IsRFC6145() const; // IPv6 IPv4-translated address (::FFFF:0:0:0/96) (actually defined in RFC2765)
# 68 : : bool IsHeNet() const; // IPv6 Hurricane Electric - https://he.net (2001:0470::/36)
# 69 : : bool IsTor() const;
# 70 : : bool IsLocal() const;
# 71 : : bool IsRoutable() const;
# 72 : : bool IsInternal() const;
# 73 : : bool IsValid() const;
# 74 : : enum Network GetNetwork() const;
# 75 : : std::string ToString() const;
# 76 : : std::string ToStringIP() const;
# 77 : : unsigned int GetByte(int n) const;
# 78 : : uint64_t GetHash() const;
# 79 : :
# 80 : : /**
# 81 : : * Get an identifier unique to this address.
# 82 : : */
# 83 : : std::vector<unsigned char> GetAddrKey() const;
# 84 : :
# 85 : : bool GetInAddr(struct in_addr* pipv4Addr) const;
# 86 : : uint32_t GetNetClass() const;
# 87 : :
# 88 : : //! For IPv4, mapped IPv4, SIIT translated IPv4, Teredo, 6to4 tunneled addresses, return the relevant IPv4 address as a uint32.
# 89 : : uint32_t GetLinkedIPv4() const;
# 90 : : //! Whether this address has a linked IPv4 address (see GetLinkedIPv4()).
# 91 : : bool HasLinkedIPv4() const;
# 92 : :
# 93 : : // The AS on the BGP path to the node we use to diversify
# 94 : : // peers in AddrMan bucketing based on the AS infrastructure.
# 95 : : // The ip->AS mapping depends on how asmap is constructed.
# 96 : : uint32_t GetMappedAS(const std::vector<bool> &asmap) const;
# 97 : :
# 98 : : std::vector<unsigned char> GetGroup(const std::vector<bool> &asmap) const;
# 99 : : int GetReachabilityFrom(const CNetAddr *paddrPartner = nullptr) const;
# 100 : :
# 101 : : explicit CNetAddr(const struct in6_addr& pipv6Addr, const uint32_t scope = 0);
# 102 : : bool GetIn6Addr(struct in6_addr* pipv6Addr) const;
# 103 : :
# 104 : : friend bool operator==(const CNetAddr& a, const CNetAddr& b);
# 105 : 0 : friend bool operator!=(const CNetAddr& a, const CNetAddr& b) { return !(a == b); }
# 106 : : friend bool operator<(const CNetAddr& a, const CNetAddr& b);
# 107 : :
# 108 : 184 : SERIALIZE_METHODS(CNetAddr, obj) { READWRITE(obj.ip); }
# 109 : :
# 110 : : friend class CSubNet;
# 111 : : };
# 112 : :
# 113 : : class CSubNet
# 114 : : {
# 115 : : protected:
# 116 : : /// Network (base) address
# 117 : : CNetAddr network;
# 118 : : /// Netmask, in network byte order
# 119 : : uint8_t netmask[16];
# 120 : : /// Is this value valid? (only used to signal parse errors)
# 121 : : bool valid;
# 122 : :
# 123 : : public:
# 124 : : CSubNet();
# 125 : : CSubNet(const CNetAddr &addr, int32_t mask);
# 126 : : CSubNet(const CNetAddr &addr, const CNetAddr &mask);
# 127 : :
# 128 : : //constructor for single ip subnet (<ipv4>/32 or <ipv6>/128)
# 129 : : explicit CSubNet(const CNetAddr &addr);
# 130 : :
# 131 : : bool Match(const CNetAddr &addr) const;
# 132 : :
# 133 : : std::string ToString() const;
# 134 : : bool IsValid() const;
# 135 : :
# 136 : : friend bool operator==(const CSubNet& a, const CSubNet& b);
# 137 : 2 : friend bool operator!=(const CSubNet& a, const CSubNet& b) { return !(a == b); }
# 138 : : friend bool operator<(const CSubNet& a, const CSubNet& b);
# 139 : :
# 140 : 40 : SERIALIZE_METHODS(CSubNet, obj) { READWRITE(obj.network, obj.netmask, obj.valid); }
# 141 : : };
# 142 : :
# 143 : : /** A combination of a network address (CNetAddr) and a (TCP) port */
# 144 : : class CService : public CNetAddr
# 145 : : {
# 146 : : protected:
# 147 : : uint16_t port; // host order
# 148 : :
# 149 : : public:
# 150 : : CService();
# 151 : : CService(const CNetAddr& ip, unsigned short port);
# 152 : : CService(const struct in_addr& ipv4Addr, unsigned short port);
# 153 : : explicit CService(const struct sockaddr_in& addr);
# 154 : : unsigned short GetPort() const;
# 155 : : bool GetSockAddr(struct sockaddr* paddr, socklen_t *addrlen) const;
# 156 : : bool SetSockAddr(const struct sockaddr* paddr);
# 157 : : friend bool operator==(const CService& a, const CService& b);
# 158 : 874 : friend bool operator!=(const CService& a, const CService& b) { return !(a == b); }
# 159 : : friend bool operator<(const CService& a, const CService& b);
# 160 : : std::vector<unsigned char> GetKey() const;
# 161 : : std::string ToString() const;
# 162 : : std::string ToStringPort() const;
# 163 : : std::string ToStringIPPort() const;
# 164 : :
# 165 : : CService(const struct in6_addr& ipv6Addr, unsigned short port);
# 166 : : explicit CService(const struct sockaddr_in6& addr);
# 167 : :
# 168 : : SERIALIZE_METHODS(CService, obj)
# 169 : 92 : {
# 170 : 92 : READWRITEAS(CNetAddr, obj);
# 171 : 92 : READWRITE(Using<BigEndianFormatter<2>>(obj.port));
# 172 : 92 : }
# 173 : : };
# 174 : :
# 175 : : bool SanityCheckASMap(const std::vector<bool>& asmap);
# 176 : :
# 177 : : #endif // BITCOIN_NETADDRESS_H
|