e86c114d479dc1b0d77b2eb8d87a26a19a509981
[novacoin.git] / src / netbase.h
1 // Copyright (c) 2009-2012 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
4 #ifndef BITCOIN_NETBASE_H
5 #define BITCOIN_NETBASE_H
6
7 #include <string>
8 #include <vector>
9
10 #ifdef WIN32
11 #define _WIN32_WINNT 0x0501
12 #include <winsock2.h>
13 #include <mswsock.h>
14 #include <ws2tcpip.h>
15 #else
16 #include <sys/types.h>
17 #include <sys/socket.h>
18 #include <arpa/inet.h>
19 #include <netdb.h>
20 #include <net/if.h>
21 #include <ifaddrs.h>
22 #endif
23 #ifdef BSD
24 #include <netinet/in.h>
25 #endif
26
27 #include "serialize.h"
28 #include "compat.h"
29
30 extern int nConnectTimeout;
31
32
33 /** IP address (IPv6, or IPv4 using mapped IPv6 range (::FFFF:0:0/96)) */
34 class CNetAddr
35 {
36     protected:
37         unsigned char ip[16]; // in network byte order
38
39     public:
40         CNetAddr();
41         CNetAddr(const struct in_addr& ipv4Addr);
42         explicit CNetAddr(const char *pszIp, bool fAllowLookup = false);
43         explicit CNetAddr(const std::string &strIp, bool fAllowLookup = false);
44         void Init();
45         void SetIP(const CNetAddr& ip);
46         bool IsIPv4() const;    // IPv4 mapped address (::FFFF:0:0/96, 0.0.0.0/0)
47         bool IsRFC1918() const; // IPv4 private networks (10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12)
48         bool IsRFC3849() const; // IPv6 documentation address (2001:0DB8::/32)
49         bool IsRFC3927() const; // IPv4 autoconfig (169.254.0.0/16)
50         bool IsRFC3964() const; // IPv6 6to4 tunneling (2002::/16)
51         bool IsRFC4193() const; // IPv6 unique local (FC00::/15)
52         bool IsRFC4380() const; // IPv6 Teredo tunneling (2001::/32)
53         bool IsRFC4843() const; // IPv6 ORCHID (2001:10::/28)
54         bool IsRFC4862() const; // IPv6 autoconfig (FE80::/64)
55         bool IsRFC6052() const; // IPv6 well-known prefix (64:FF9B::/96)
56         bool IsRFC6145() const; // IPv6 IPv4-translated address (::FFFF:0:0:0/96)
57         bool IsLocal() const;
58         bool IsRoutable() const;
59         bool IsValid() const;
60         bool IsMulticast() const;
61         std::string ToString() const;
62         std::string ToStringIP() const;
63         int GetByte(int n) const;
64         int64 GetHash() const;
65         bool GetInAddr(struct in_addr* pipv4Addr) const;
66         std::vector<unsigned char> GetGroup() const;
67         void print() const;
68
69 #ifdef USE_IPV6
70         CNetAddr(const struct in6_addr& pipv6Addr);
71         bool GetIn6Addr(struct in6_addr* pipv6Addr) const;
72 #endif
73
74         friend bool operator==(const CNetAddr& a, const CNetAddr& b);
75         friend bool operator!=(const CNetAddr& a, const CNetAddr& b);
76         friend bool operator<(const CNetAddr& a, const CNetAddr& b);
77
78         IMPLEMENT_SERIALIZE
79             (
80              READWRITE(FLATDATA(ip));
81             )
82 };
83
84 /** A combnation of a network address (CNetAddr) and a (TCP) port */
85 class CService : public CNetAddr
86 {
87     protected:
88         unsigned short port; // host order
89
90     public:
91         CService();
92         CService(const CNetAddr& ip, unsigned short port);
93         CService(const struct in_addr& ipv4Addr, unsigned short port);
94         CService(const struct sockaddr_in& addr);
95         explicit CService(const char *pszIpPort, int portDefault, bool fAllowLookup = false);
96         explicit CService(const char *pszIpPort, bool fAllowLookup = false);
97         explicit CService(const std::string& strIpPort, int portDefault, bool fAllowLookup = false);
98         explicit CService(const std::string& strIpPort, bool fAllowLookup = false);
99         void Init();
100         void SetPort(unsigned short portIn);
101         unsigned short GetPort() const;
102         bool GetSockAddr(struct sockaddr_in* paddr) const;
103         friend bool operator==(const CService& a, const CService& b);
104         friend bool operator!=(const CService& a, const CService& b);
105         friend bool operator<(const CService& a, const CService& b);
106         std::vector<unsigned char> GetKey() const;
107         std::string ToString() const;
108         std::string ToStringPort() const;
109         std::string ToStringIPPort() const;
110         void print() const;
111
112 #ifdef USE_IPV6
113         CService(const struct in6_addr& ipv6Addr, unsigned short port);
114         bool GetSockAddr6(struct sockaddr_in6* paddr) const;
115         CService(const struct sockaddr_in6& addr);
116 #endif
117
118         IMPLEMENT_SERIALIZE
119             (
120              CService* pthis = const_cast<CService*>(this);
121              READWRITE(FLATDATA(ip));
122              unsigned short portN = htons(port);
123              READWRITE(portN);
124              if (fRead)
125                  pthis->port = ntohs(portN);
126             )
127 };
128
129 bool LookupHost(const char *pszName, std::vector<CNetAddr>& vIP, unsigned int nMaxSolutions = 0, bool fAllowLookup = true);
130 bool LookupHostNumeric(const char *pszName, std::vector<CNetAddr>& vIP, unsigned int nMaxSolutions = 0);
131 bool Lookup(const char *pszName, CService& addr, int portDefault = 0, bool fAllowLookup = true);
132 bool Lookup(const char *pszName, std::vector<CService>& vAddr, int portDefault = 0, bool fAllowLookup = true, unsigned int nMaxSolutions = 0);
133 bool LookupNumeric(const char *pszName, CService& addr, int portDefault = 0);
134 bool ConnectSocket(const CService &addr, SOCKET& hSocketRet, int nTimeout = nConnectTimeout);
135
136 // Settings
137 extern int fUseProxy;
138 extern CService addrProxy;
139
140 #endif