finished self-implementation of DNS resolver recursion; will now remove all that!
[pingcheck] / src / dns / dnsmaster.cpp
CommitLineData
36ad976b
CH
1/*
2 The software in this package is distributed under the GNU General
3 Public License version 2 (with a special exception described below).
4
5 A copy of GNU General Public License (GPL) is included in this distribution,
6 in the file COPYING.GPL.
7
8 As a special exception, if other files instantiate templates or use macros
9 or inline functions from this file, or you compile this file and link it
10 with other works to produce a work based on this file, this file
11 does not by itself cause the resulting work to be covered
12 by the GNU General Public License.
13
14 However the source code for this file must still be made available
15 in accordance with section (3) of the GNU General Public License.
16
17 This exception does not invalidate any other reasons why a work based
18 on this file might be covered by the GNU General Public License.
19
20 Christian Herdtweck, Intra2net AG 2015
21 */
22
c5b4902d 23#include "dns/dnsmaster.h"
36ad976b
CH
24
25#include <logfunc.hpp>
26#include <boost/bind.hpp>
36ad976b
CH
27#include <boost/asio/placeholders.hpp>
28
c5b4902d
CH
29#include "dns/ippseudoresolver.h"
30#include "dns/dnsresolver.h"
96779587 31
36ad976b 32using boost::bind;
36ad976b
CH
33using I2n::Logger::GlobalLogger;
34
96779587 35
36ad976b
CH
36DnsMasterItem DnsMaster::TheOnlyInstance;
37
96779587 38void DnsMaster::create_master(const IoServiceItem &io_serv,
ad83004d
CH
39 const boost::asio::ip::address &default_name_server,
40 const int resolved_ip_ttl_threshold,
41 const int max_address_resolution_attempts,
42 const std::string &cache_file)
36ad976b
CH
43{
44 if (TheOnlyInstance)
45 {
46 GlobalLogger.warning()
96779587
CH
47 << "Blocking attempt to create another DnsMaster instance!";
48 return;
36ad976b
CH
49 }
50
923626c0 51 GlobalLogger.info() << "Creating DNS Cache and Master";
96779587 52 DnsCacheItem cache( new DnsCache(io_serv, cache_file) );
923626c0 53 TheOnlyInstance.reset( new DnsMaster(io_serv,
ad83004d 54 default_name_server,
923626c0
CH
55 resolved_ip_ttl_threshold,
56 max_address_resolution_attempts,
57 cache)
58 );
36ad976b
CH
59}
60
61
62DnsMaster::DnsMaster(const IoServiceItem &io_serv,
ad83004d 63 const boost::asio::ip::address &default_name_server,
923626c0
CH
64 const int resolved_ip_ttl_threshold,
65 const int max_address_resolution_attempts,
96779587 66 const DnsCacheItem &cache)
36ad976b 67 : IoService( io_serv )
ad83004d 68 , DefaultNameServer( default_name_server )
923626c0
CH
69 , ResolvedIpTtlThreshold( resolved_ip_ttl_threshold )
70 , MaxAddressResolutionAttempts( max_address_resolution_attempts )
96779587 71 , Cache(cache)
4e7b6ff9 72 , ResolverMap()
36ad976b 73{
36ad976b
CH
74}
75
76
77DnsMasterItem& DnsMaster::get_instance()
78{
79 if ( !TheOnlyInstance )
80 GlobalLogger.error()
81 << "Request to return DnsMaster instance before creating it!";
82 return TheOnlyInstance;
83}
84
c5b4902d
CH
85DnsMaster::~DnsMaster()
86{
87 GlobalLogger.info() << "DnsMaster is being destructed";
88
89 if (DnsMaster::TheOnlyInstance)
90 { // just to be sure ...
91 GlobalLogger.warning() << "DnsMaster is being destructed that is not "
92 << "singleton instance TheOnlyInstance!";
93 DnsMaster::TheOnlyInstance.reset();
94 }
95
96 // Items in ResolverMap and the DnsCache might still be referenced by
97 // Resolvers and are smart pointers, anyway --> nothing to do here
98}
99
36ad976b
CH
100
101
923626c0
CH
102ResolverItem& DnsMaster::get_resolver_for( const std::string &hostname,
103 const PingProtocol &ping_protocol )
104{
105 // find suitable DnsIpProtocol for ping protocol
dbe986b9 106 DnsIpProtocol protocol = ping2dns_protocol(ping_protocol);
923626c0
CH
107 return get_resolver_for(hostname, protocol);
108}
109
110
ad83004d 111ResolverItem& DnsMaster::get_resolver_for(const std::string &hostname,
e18c1337 112 const DnsIpProtocol &protocol)
36ad976b 113{
923626c0
CH
114 // create key to ResolverMap
115 resolver_key_type key(hostname, protocol);
dbe986b9 116 if ( ResolverMap.count(key) == 0 )
36ad976b
CH
117 { // need to create a resolver
118
119 // check if it is an ip address, so can create a simple pseudo resolver
dbe986b9 120 if ( is_ip(hostname) )
36ad976b 121 {
923626c0
CH
122 boost::asio::ip::address ip
123 = boost::asio::ip::address::from_string(hostname);
124 if ( (protocol == DNS_IPv4 && !ip.is_v4()) ||
125 (protocol == DNS_IPv6 && !ip.is_v6()) )
126 GlobalLogger.warning() << "Asked to create a DNS resolver "
127 << "for wrong IP protocol: v4 != v6! "
128 << "We will comply.";
129 GlobalLogger.info() << "Creating PseudoResolver for IP " << ip;
4e7b6ff9
CH
130 ResolverItem new_resolver( new IpPseudoResolver(IoService,
131 hostname,
132 Cache) );
dbe986b9 133 ResolverMap[key] = new_resolver;
36ad976b
CH
134 }
135 else
136 {
dbe986b9
CH
137 GlobalLogger.info() << "DnsMaster: Creating Resolver for host "
138 << hostname << " and protocol " << to_string(protocol);
4e7b6ff9
CH
139 ResolverItem new_resolver( new DnsResolver(IoService,
140 hostname,
923626c0 141 protocol,
4e7b6ff9 142 Cache,
ad83004d 143 DefaultNameServer) );
dbe986b9 144 ResolverMap[key] = new_resolver;
36ad976b
CH
145 }
146 }
dbe986b9 147 return ResolverMap[key];
36ad976b
CH
148}
149
ad83004d
CH
150// create resolver but do not remember it in ResolverMap
151ResolverItem DnsMaster::get_recursor_for(const std::string &hostname,
152 const DnsIpProtocol &protocol,
153 const boost::asio::ip::address &name_server)
154{
dbe986b9
CH
155 resolver_key_type key(hostname, protocol);
156 if ( !ResolverMap[key] )
157 GlobalLogger.warning() << "DnsMaster: requesting recursor for host "
158 << hostname << " and protocol " << to_string(protocol)
159 << " but have no regular resolver for this combination!";
160 else
161 GlobalLogger.warning() << "DnsMaster: requesting recursor for host "
162 << hostname << " and protocol " << to_string(protocol);
163
ad83004d
CH
164 ResolverItem new_resolver( new DnsResolver(IoService,
165 hostname,
166 protocol,
167 Cache,
168 name_server) );
169 return new_resolver;
170}
171
36ad976b
CH
172/**
173 * return true if given hostname string actually is an IP
174 *
96779587 175 * delegates decision to boost::asio::ip::address::from_string
36ad976b
CH
176 */
177bool DnsMaster::is_ip(const std::string &hostname) const
178{
179 try
180 {
96779587
CH
181 boost::asio::ip::address ip = boost::asio::ip::address::from_string(
182 hostname);
36ad976b
CH
183 return ip.is_v4() || ip.is_v6();
184 }
185 catch ( const std::exception &ex )
186 {
187 return false;
188 }
189}
190
923626c0
CH
191
192DnsIpProtocol DnsMaster::ping2dns_protocol(const PingProtocol& pprot)
193{
194 switch (pprot)
195 {
196 case PingProtocol_ICMP: return DNS_IPv4; break;
197 case PingProtocol_ICMPv6: return DNS_IPv6; break;
198 case PingProtocol_TCP: return DNS_IPv4; break;
199 case PingProtocol_TCP_IPv6: return DNS_IPv6; break;
200 default:
201 GlobalLogger.warning() << "Unexpected ping protocol: "
202 << static_cast<int>(pprot);
203 return DNS_IPALL;
204 break;
205 }
206}
207
208/*boost::asio::ip::address &DnsMaster::get_name_server() const
209{
210 return NameServer;
211}*/
212
213int DnsMaster::get_resolved_ip_ttl_threshold() const
214{
215 return ResolvedIpTtlThreshold;
216}
217
218int DnsMaster::get_max_address_resolution_attempts() const
96779587 219{
923626c0 220 return MaxAddressResolutionAttempts;
96779587
CH
221}
222
e18c1337
CH
223std::string to_string(const DnsIpProtocol &protocol)
224{
225 switch (protocol)
226 {
227 case DNS_IPv4: return "IPv4"; break;
228 case DNS_IPv6: return "IPv6"; break;
229 case DNS_IPALL: return "IPv4/6"; break;
230 default: GlobalLogger.warning() << "Unexpected protocol in to_string!";
231 return "Unexpected Protocol"; break;
232 }
233}
36ad976b
CH
234// (created using vim -- the world's best text editor)
235