Remove unreachable or otherwise redundant code
[bitcoinplatinum.git] / src / netaddress.h
blobfbc4d1a65f9e7f54eaa2b72e6a22ba13abfe2db4
1 // Copyright (c) 2009-2016 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.
5 #ifndef BITCOIN_NETADDRESS_H
6 #define BITCOIN_NETADDRESS_H
8 #if defined(HAVE_CONFIG_H)
9 #include "config/bitcoin-config.h"
10 #endif
12 #include "compat.h"
13 #include "serialize.h"
15 #include <stdint.h>
16 #include <string>
17 #include <vector>
19 enum Network
21 NET_UNROUTABLE = 0,
22 NET_IPV4,
23 NET_IPV6,
24 NET_TOR,
26 NET_MAX,
29 /** IP address (IPv6, or IPv4 using mapped IPv6 range (::FFFF:0:0/96)) */
30 class CNetAddr
32 protected:
33 unsigned char ip[16]; // in network byte order
34 uint32_t scopeId; // for scoped/link-local ipv6 addresses
36 public:
37 CNetAddr();
38 CNetAddr(const struct in_addr& ipv4Addr);
39 void Init();
40 void SetIP(const CNetAddr& ip);
42 /**
43 * Set raw IPv4 or IPv6 address (in network byte order)
44 * @note Only NET_IPV4 and NET_IPV6 are allowed for network.
46 void SetRaw(Network network, const uint8_t *data);
48 bool SetSpecial(const std::string &strName); // for Tor addresses
49 bool IsIPv4() const; // IPv4 mapped address (::FFFF:0:0/96, 0.0.0.0/0)
50 bool IsIPv6() const; // IPv6 address (not mapped IPv4, not Tor)
51 bool IsRFC1918() const; // IPv4 private networks (10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12)
52 bool IsRFC2544() const; // IPv4 inter-network communications (192.18.0.0/15)
53 bool IsRFC6598() const; // IPv4 ISP-level NAT (100.64.0.0/10)
54 bool IsRFC5737() const; // IPv4 documentation addresses (192.0.2.0/24, 198.51.100.0/24, 203.0.113.0/24)
55 bool IsRFC3849() const; // IPv6 documentation address (2001:0DB8::/32)
56 bool IsRFC3927() const; // IPv4 autoconfig (169.254.0.0/16)
57 bool IsRFC3964() const; // IPv6 6to4 tunnelling (2002::/16)
58 bool IsRFC4193() const; // IPv6 unique local (FC00::/7)
59 bool IsRFC4380() const; // IPv6 Teredo tunnelling (2001::/32)
60 bool IsRFC4843() const; // IPv6 ORCHID (2001:10::/28)
61 bool IsRFC4862() const; // IPv6 autoconfig (FE80::/64)
62 bool IsRFC6052() const; // IPv6 well-known prefix (64:FF9B::/96)
63 bool IsRFC6145() const; // IPv6 IPv4-translated address (::FFFF:0:0:0/96)
64 bool IsTor() const;
65 bool IsLocal() const;
66 bool IsRoutable() const;
67 bool IsValid() const;
68 enum Network GetNetwork() const;
69 std::string ToString() const;
70 std::string ToStringIP() const;
71 unsigned int GetByte(int n) const;
72 uint64_t GetHash() const;
73 bool GetInAddr(struct in_addr* pipv4Addr) const;
74 std::vector<unsigned char> GetGroup() const;
75 int GetReachabilityFrom(const CNetAddr *paddrPartner = NULL) const;
77 CNetAddr(const struct in6_addr& pipv6Addr, const uint32_t scope = 0);
78 bool GetIn6Addr(struct in6_addr* pipv6Addr) const;
80 friend bool operator==(const CNetAddr& a, const CNetAddr& b);
81 friend bool operator!=(const CNetAddr& a, const CNetAddr& b);
82 friend bool operator<(const CNetAddr& a, const CNetAddr& b);
84 ADD_SERIALIZE_METHODS;
86 template <typename Stream, typename Operation>
87 inline void SerializationOp(Stream& s, Operation ser_action) {
88 READWRITE(FLATDATA(ip));
91 friend class CSubNet;
94 class CSubNet
96 protected:
97 /// Network (base) address
98 CNetAddr network;
99 /// Netmask, in network byte order
100 uint8_t netmask[16];
101 /// Is this value valid? (only used to signal parse errors)
102 bool valid;
104 public:
105 CSubNet();
106 CSubNet(const CNetAddr &addr, int32_t mask);
107 CSubNet(const CNetAddr &addr, const CNetAddr &mask);
109 //constructor for single ip subnet (<ipv4>/32 or <ipv6>/128)
110 explicit CSubNet(const CNetAddr &addr);
112 bool Match(const CNetAddr &addr) const;
114 std::string ToString() const;
115 bool IsValid() const;
117 friend bool operator==(const CSubNet& a, const CSubNet& b);
118 friend bool operator!=(const CSubNet& a, const CSubNet& b);
119 friend bool operator<(const CSubNet& a, const CSubNet& b);
121 ADD_SERIALIZE_METHODS;
123 template <typename Stream, typename Operation>
124 inline void SerializationOp(Stream& s, Operation ser_action) {
125 READWRITE(network);
126 READWRITE(FLATDATA(netmask));
127 READWRITE(FLATDATA(valid));
131 /** A combination of a network address (CNetAddr) and a (TCP) port */
132 class CService : public CNetAddr
134 protected:
135 unsigned short port; // host order
137 public:
138 CService();
139 CService(const CNetAddr& ip, unsigned short port);
140 CService(const struct in_addr& ipv4Addr, unsigned short port);
141 CService(const struct sockaddr_in& addr);
142 void Init();
143 void SetPort(unsigned short portIn);
144 unsigned short GetPort() const;
145 bool GetSockAddr(struct sockaddr* paddr, socklen_t *addrlen) const;
146 bool SetSockAddr(const struct sockaddr* paddr);
147 friend bool operator==(const CService& a, const CService& b);
148 friend bool operator!=(const CService& a, const CService& b);
149 friend bool operator<(const CService& a, const CService& b);
150 std::vector<unsigned char> GetKey() const;
151 std::string ToString() const;
152 std::string ToStringPort() const;
153 std::string ToStringIPPort() const;
155 CService(const struct in6_addr& ipv6Addr, unsigned short port);
156 CService(const struct sockaddr_in6& addr);
158 ADD_SERIALIZE_METHODS;
160 template <typename Stream, typename Operation>
161 inline void SerializationOp(Stream& s, Operation ser_action) {
162 READWRITE(FLATDATA(ip));
163 unsigned short portN = htons(port);
164 READWRITE(FLATDATA(portN));
165 if (ser_action.ForRead())
166 port = ntohs(portN);
170 #endif // BITCOIN_NETADDRESS_H