2 This file is part of catta.
4 catta is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 catta is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
12 Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with catta; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
26 #include <catta/timeval.h>
27 #include <catta/malloc.h>
28 #include <catta/error.h>
29 #include <catta/domain.h>
33 #define TIMEOUT_MSEC 5000
35 struct CattaSAddressResolver {
39 CattaSRecordBrowser *record_browser;
41 CattaSAddressResolverCallback callback;
44 CattaRecord *ptr_record;
46 CattaProtocol protocol;
47 CattaLookupResultFlags flags;
49 int retry_with_multicast;
52 CattaTimeEvent *time_event;
54 CATTA_LLIST_FIELDS(CattaSAddressResolver, resolver);
57 static void finish(CattaSAddressResolver *r, CattaResolverEvent event) {
61 catta_time_event_free(r->time_event);
66 case CATTA_RESOLVER_FAILURE:
67 r->callback(r, r->iface, r->protocol, event, &r->address, NULL, r->flags, r->userdata);
70 case CATTA_RESOLVER_FOUND:
71 assert(r->ptr_record);
72 r->callback(r, r->iface, r->protocol, event, &r->address, r->ptr_record->data.ptr.name, r->flags, r->userdata);
77 static void time_event_callback(CattaTimeEvent *e, void *userdata) {
78 CattaSAddressResolver *r = userdata;
83 catta_server_set_errno(r->server, CATTA_ERR_TIMEOUT);
84 finish(r, CATTA_RESOLVER_FAILURE);
87 static void start_timeout(CattaSAddressResolver *r) {
94 catta_elapse_time(&tv, TIMEOUT_MSEC, 0);
95 r->time_event = catta_time_event_new(r->server->time_event_queue, &tv, time_event_callback, r);
98 static void record_browser_callback(
99 CattaSRecordBrowser*rr,
101 CattaProtocol protocol,
102 CattaBrowserEvent event,
104 CattaLookupResultFlags flags,
107 CattaSAddressResolver *r = userdata;
113 case CATTA_BROWSER_NEW:
115 assert(record->key->type == CATTA_DNS_TYPE_PTR);
117 if (r->iface > 0 && iface != r->iface)
120 if (r->protocol != CATTA_PROTO_UNSPEC && protocol != r->protocol)
126 if (r->protocol == CATTA_PROTO_UNSPEC)
127 r->protocol = protocol;
129 if (!r->ptr_record) {
130 r->ptr_record = catta_record_ref(record);
133 finish(r, CATTA_RESOLVER_FOUND);
137 case CATTA_BROWSER_REMOVE:
139 assert(record->key->type == CATTA_DNS_TYPE_PTR);
141 if (r->ptr_record && catta_record_equal_no_ttl(record, r->ptr_record)) {
142 catta_record_unref(r->ptr_record);
143 r->ptr_record = NULL;
146 /** Look for a replacement */
147 catta_s_record_browser_restart(r->record_browser);
153 case CATTA_BROWSER_CACHE_EXHAUSTED:
154 case CATTA_BROWSER_ALL_FOR_NOW:
157 case CATTA_BROWSER_FAILURE:
159 if (r->retry_with_multicast) {
160 r->retry_with_multicast = 0;
162 catta_s_record_browser_free(r->record_browser);
163 r->record_browser = catta_s_record_browser_new(r->server, r->iface, r->protocol, r->key, CATTA_LOOKUP_USE_MULTICAST, record_browser_callback, r);
165 if (r->record_browser) {
172 finish(r, CATTA_RESOLVER_FAILURE);
177 CattaSAddressResolver *catta_s_address_resolver_new(
180 CattaProtocol protocol,
181 const CattaAddress *address,
182 CattaLookupFlags flags,
183 CattaSAddressResolverCallback callback,
186 CattaSAddressResolver *r;
188 char n[CATTA_DOMAIN_NAME_MAX];
194 CATTA_CHECK_VALIDITY_RETURN_NULL(server, CATTA_IF_VALID(iface), CATTA_ERR_INVALID_INTERFACE);
195 CATTA_CHECK_VALIDITY_RETURN_NULL(server, CATTA_PROTO_VALID(protocol), CATTA_ERR_INVALID_PROTOCOL);
196 CATTA_CHECK_VALIDITY_RETURN_NULL(server, address->proto == CATTA_PROTO_INET || address->proto == CATTA_PROTO_INET6, CATTA_ERR_INVALID_PROTOCOL);
197 CATTA_CHECK_VALIDITY_RETURN_NULL(server, CATTA_FLAGS_VALID(flags, CATTA_LOOKUP_USE_WIDE_AREA|CATTA_LOOKUP_USE_MULTICAST), CATTA_ERR_INVALID_FLAGS);
199 catta_reverse_lookup_name(address, n, sizeof(n));
201 if (!(k = catta_key_new(n, CATTA_DNS_CLASS_IN, CATTA_DNS_TYPE_PTR))) {
202 catta_server_set_errno(server, CATTA_ERR_NO_MEMORY);
206 if (!(r = catta_new(CattaSAddressResolver, 1))) {
207 catta_server_set_errno(server, CATTA_ERR_NO_MEMORY);
213 r->address = *address;
214 r->callback = callback;
215 r->userdata = userdata;
216 r->ptr_record = NULL;
218 r->protocol = protocol;
220 r->retry_with_multicast = 0;
223 r->record_browser = NULL;
224 CATTA_LLIST_PREPEND(CattaSAddressResolver, resolver, server->address_resolvers, r);
226 r->time_event = NULL;
228 if (!(flags & (CATTA_LOOKUP_USE_MULTICAST|CATTA_LOOKUP_USE_WIDE_AREA))) {
230 if (!server->wide_area_lookup_engine || !catta_wide_area_has_servers(server->wide_area_lookup_engine))
231 flags |= CATTA_LOOKUP_USE_MULTICAST;
233 flags |= CATTA_LOOKUP_USE_WIDE_AREA;
234 r->retry_with_multicast = 1;
238 r->record_browser = catta_s_record_browser_new(server, iface, protocol, k, flags, record_browser_callback, r);
240 if (!r->record_browser) {
241 catta_s_address_resolver_free(r);
250 void catta_s_address_resolver_free(CattaSAddressResolver *r) {
253 CATTA_LLIST_REMOVE(CattaSAddressResolver, resolver, r->server->address_resolvers, r);
255 if (r->record_browser)
256 catta_s_record_browser_free(r->record_browser);
259 catta_time_event_free(r->time_event);
262 catta_record_unref(r->ptr_record);
265 catta_key_unref(r->key);