summaryrefslogtreecommitdiffstats
blob: bc280ebe4caaffa3c1dfa6fd52ad30c4b088d3b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/*
 * Copyright (c) 2013 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#include "UnboundDomainNameResolver.h"

#include <vector>

#include <boost/bind.hpp>
#include <boost/smart_ptr/make_shared.hpp>
#include <boost/enable_shared_from_this.hpp>

#include <Swiften/Base/Log.h>
#include <Swiften/EventLoop/EventLoop.h>
#include <Swiften/IDN/IDNConverter.h>
#include <Swiften/Network/DomainNameAddressQuery.h>
#include <Swiften/Network/DomainNameResolveError.h>
#include <Swiften/Network/DomainNameServiceQuery.h>
#include <Swiften/Network/HostAddress.h>
#include <Swiften/Network/TimerFactory.h>

#include <arpa/inet.h>
#include <unbound.h>
#include <ldns/ldns.h>
#include <unistd.h>

namespace Swift {

class UnboundQuery {
	public:
		UnboundQuery(UnboundDomainNameResolver* resolver, ub_ctx* context) : resolver(resolver), ubContext(context) {}
		virtual ~UnboundQuery() {}
		virtual void handleResult(int err, ub_result* result) = 0;
	protected:
		UnboundDomainNameResolver* resolver;
		ub_ctx* ubContext;
};

struct UnboundWrapperHelper {
	UnboundWrapperHelper(UnboundDomainNameResolver* resolver, boost::shared_ptr<UnboundQuery> query) : resolver(resolver), query(query) {}
	UnboundDomainNameResolver* resolver;
	boost::shared_ptr<UnboundQuery> query;
};

class UnboundDomainNameServiceQuery : public DomainNameServiceQuery, public UnboundQuery, public boost::enable_shared_from_this<UnboundDomainNameServiceQuery>  {
	public:
		UnboundDomainNameServiceQuery(UnboundDomainNameResolver* resolver, ub_ctx* context, std::string name) : UnboundQuery(resolver, context), name(name) {
		}

		virtual ~UnboundDomainNameServiceQuery() { }

		virtual void run() {
			int retval;
			UnboundWrapperHelper* helper = new UnboundWrapperHelper(resolver, shared_from_this());

			retval = ub_resolve_async(ubContext, const_cast<char*>(name.c_str()), LDNS_RR_TYPE_SRV,
						  1 /* CLASS IN (internet) */,
						  helper, UnboundDomainNameResolver::unbound_callback_wrapper, NULL);
			if(retval != 0) {
				SWIFT_LOG(debug) << "resolve error: " << ub_strerror(retval) << std::endl;
				delete helper;
			}
		}

		void handleResult(int err, struct ub_result* result) {
			std::vector<DomainNameServiceQuery::Result> serviceRecords;

			if(err != 0) {
				SWIFT_LOG(debug) << "resolve error: " << ub_strerror(err) << std::endl;
			} else {
				if(result->havedata) {
					ldns_pkt* replyPacket = 0;
					ldns_buffer* buffer = ldns_buffer_new(1024);
					if (buffer && ldns_wire2pkt(&replyPacket, static_cast<const uint8_t*>(result->answer_packet), result->answer_len) == LDNS_STATUS_OK) {
						ldns_rr_list* rrList = ldns_pkt_answer(replyPacket);
						for (size_t n = 0; n < ldns_rr_list_rr_count(rrList); n++) {
							ldns_rr* rr = ldns_rr_list_rr(rrList, n);
							if ((ldns_rr_get_type(rr) != LDNS_RR_TYPE_SRV) ||
								(ldns_rr_get_class(rr) != LDNS_RR_CLASS_IN) ||
								(ldns_rr_rd_count(rr) != 4)) {
								continue;
							}

							DomainNameServiceQuery::Result serviceRecord;
							serviceRecord.priority = ldns_rdf2native_int16(ldns_rr_rdf(rr, 0));
							serviceRecord.weight = ldns_rdf2native_int16(ldns_rr_rdf(rr, 1));
							serviceRecord.port = ldns_rdf2native_int16(ldns_rr_rdf(rr, 2));

							ldns_buffer_rewind(buffer);
							if ((ldns_rdf2buffer_str_dname(buffer, ldns_rr_rdf(rr, 3)) != LDNS_STATUS_OK) ||
								(ldns_buffer_position(buffer) < 2) ||
								!ldns_buffer_reserve(buffer, 1)) {
								// either name invalid, empty or buffer to small
								continue;
							}
							char terminator = 0;
							ldns_buffer_write(buffer, &terminator, sizeof(terminator));

							serviceRecord.hostname = std::string(reinterpret_cast<char*>(ldns_buffer_at(buffer, 0)));
							serviceRecords.push_back(serviceRecord);
							SWIFT_LOG(debug) << "hostname " << serviceRecord.hostname << " added" << std::endl;
						}
					}
					if (replyPacket) ldns_pkt_free(replyPacket);
					if (buffer) ldns_buffer_free(buffer);
				}
			}

			ub_resolve_free(result);
			onResult(serviceRecords);
		}

	private:
		std::string name;
};

class UnboundDomainNameAddressQuery : public DomainNameAddressQuery, public UnboundQuery, public boost::enable_shared_from_this<UnboundDomainNameAddressQuery> {
	public:
		UnboundDomainNameAddressQuery(UnboundDomainNameResolver* resolver, ub_ctx* context, std::string name) : UnboundQuery(resolver, context), name(name) {
		}

		virtual ~UnboundDomainNameAddressQuery() { }

		virtual void run() {
			int retval;
			UnboundWrapperHelper* helper = new UnboundWrapperHelper(resolver, shared_from_this());

			//FIXME: support AAAA queries in some way
			retval = ub_resolve_async(ubContext, const_cast<char*>(name.c_str()), LDNS_RR_TYPE_A,
						  1 /* CLASS IN (internet) */,
						  helper, UnboundDomainNameResolver::unbound_callback_wrapper, NULL);
			if(retval != 0) {
				SWIFT_LOG(debug) << "resolve error: " << ub_strerror(retval) << std::endl;
				delete helper;
			}
		}

		void handleResult(int err, struct ub_result* result) {
			std::vector<HostAddress> addresses;
			boost::optional<DomainNameResolveError> error;
			SWIFT_LOG(debug) << "Result for: " << name << std::endl;

			if(err != 0) {
				SWIFT_LOG(debug) << "resolve error: " << ub_strerror(err) << std::endl;
				error = DomainNameResolveError();
			} else {
				if(result->havedata) {
					for(int i=0; result->data[i]; i++) {
						char address[100];
						const char* addressStr = 0;
						if ((addressStr = inet_ntop(AF_INET, result->data[i], address, 100))) {
							SWIFT_LOG(debug) << "IPv4 address: " << addressStr << std::endl;
							addresses.push_back(HostAddress(std::string(addressStr)));
						} else if ((addressStr = inet_ntop(AF_INET6, result->data[i], address, 100))) {
							SWIFT_LOG(debug) << "IPv6 address: " << addressStr << std::endl;
							addresses.push_back(HostAddress(std::string(addressStr)));
						} else {
							SWIFT_LOG(debug) << "inet_ntop() failed" << std::endl;
							error = DomainNameResolveError();
						}
					}
				} else {
					error = DomainNameResolveError();
				}
			}

			ub_resolve_free(result);
			onResult(addresses, error);
		}

	private:
		std::string name;
};

UnboundDomainNameResolver::UnboundDomainNameResolver(IDNConverter* idnConverter, boost::shared_ptr<boost::asio::io_service> ioService, EventLoop* eventLoop) : idnConverter(idnConverter), ioService(ioService), ubDescriptior(*ioService), eventLoop(eventLoop) {
	ubContext = ub_ctx_create();
	if(!ubContext) {
		SWIFT_LOG(debug) << "could not create unbound context" << std::endl;
	}
	eventOwner = boost::make_shared<EventOwner>();

	ub_ctx_async(ubContext, true);

	int ret;

	/* read /etc/resolv.conf for DNS proxy settings (from DHCP) */
	if( (ret=ub_ctx_resolvconf(ubContext, const_cast<char*>("/etc/resolv.conf"))) != 0) {
		SWIFT_LOG(error) << "error reading resolv.conf: " << ub_strerror(ret) << ". errno says: " << strerror(errno) << std::endl;
	}
	/* read /etc/hosts for locally supplied host addresses */
	if( (ret=ub_ctx_hosts(ubContext, const_cast<char*>("/etc/hosts"))) != 0) {
		SWIFT_LOG(error) << "error reading hosts: " << ub_strerror(ret) << ". errno says: " << strerror(errno) << std::endl;
	}

	ubDescriptior.assign(ub_fd(ubContext));

	ubDescriptior.async_read_some(boost::asio::null_buffers(), boost::bind(&UnboundDomainNameResolver::handleUBSocketReadable, this, boost::asio::placeholders::error));
}

UnboundDomainNameResolver::~UnboundDomainNameResolver() {
	eventLoop->removeEventsFromOwner(eventOwner);
	if (ubContext) {
		ub_ctx_delete(ubContext);
	}
}

void UnboundDomainNameResolver::unbound_callback(boost::shared_ptr<UnboundQuery> query, int err, ub_result* result) {
	query->handleResult(err, result);
}

void UnboundDomainNameResolver::unbound_callback_wrapper(void* data, int err, ub_result* result) {
	UnboundWrapperHelper* helper = static_cast<UnboundWrapperHelper*>(data);
	UnboundDomainNameResolver* resolver = helper->resolver;
	resolver->unbound_callback(helper->query, err, result);
	delete helper;
}

void UnboundDomainNameResolver::handleUBSocketReadable(boost::system::error_code) {
	eventLoop->postEvent(boost::bind(&UnboundDomainNameResolver::processData, this), eventOwner);
	ubDescriptior.async_read_some(boost::asio::null_buffers(), boost::bind(&UnboundDomainNameResolver::handleUBSocketReadable, this, boost::asio::placeholders::error));
}

void UnboundDomainNameResolver::processData() {
	if (ub_poll(ubContext)) {
		int ret = ub_process(ubContext);
		if(ret != 0) {
			SWIFT_LOG(debug) << "resolve error: " << ub_strerror(ret) << std::endl;
		}
	}	
}

boost::shared_ptr<DomainNameServiceQuery> UnboundDomainNameResolver::createServiceQuery(const std::string& serviceLookupPrefix, const std::string& domain) {
	boost::optional<std::string> encodedDomain = idnConverter->getIDNAEncoded(domain);
	std::string result;
	if (encodedDomain) {
		result = serviceLookupPrefix + *encodedDomain;
	}
	return boost::make_shared<UnboundDomainNameServiceQuery>(this, ubContext, result);
}

boost::shared_ptr<DomainNameAddressQuery> UnboundDomainNameResolver::createAddressQuery(const std::string& name) {
	return boost::make_shared<UnboundDomainNameAddressQuery>(this, ubContext, idnConverter->getIDNAEncoded(name).get_value_or(""));
}

}