/* Copyright (c) 2012-2016, Matthias Schiffer All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** \file DNS resolver functions */ #include "fastd.h" #include "peer.h" #include "async.h" #include /** The argument given to the resolver thread */ typedef struct resolv_arg { uint64_t peer_id; /**< The ID of the peer the remote being resolved belongs to */ size_t remote; /**< The number of the remote to resolve */ char *hostname; /**< The hostname to resolve */ fastd_peer_address_t constraints; /**< Contains address family and port of the remote entry to resolve */ } resolv_arg_t; /** The resolver thread main routine */ static void * resolve_peer(void *varg) { resolv_arg_t *arg = varg; struct addrinfo *res = NULL, *res2; size_t n_addr = 0; int gai_ret; char portstr[6]; snprintf(portstr, 6, "%u", ntohs(arg->constraints.in.sin_port)); struct addrinfo hints = { .ai_family = arg->constraints.sa.sa_family, .ai_socktype = SOCK_DGRAM, .ai_protocol = IPPROTO_UDP, .ai_flags = AI_NUMERICSERV #ifdef HAVE_AI_ADDRCONFIG | AI_ADDRCONFIG #endif }; gai_ret = getaddrinfo(arg->hostname, portstr, &hints, &res); if (gai_ret || !res) { pr_verbose("resolving host `%s' failed: %s", arg->hostname, gai_strerror(gai_ret)); } else { for (res2 = res; res2; res2 = res2->ai_next) n_addr++; } uint8_t retbuf[sizeof(fastd_async_resolve_return_t) + n_addr*sizeof(fastd_peer_address_t)] __attribute__((aligned(8))); fastd_async_resolve_return_t *ret = (fastd_async_resolve_return_t *)retbuf; ret->peer_id = arg->peer_id; ret->remote = arg->remote; if (n_addr) { n_addr = 0; for (res2 = res; res2; res2 = res2->ai_next) { if (res2->ai_addrlen > sizeof(fastd_peer_address_t) || (res2->ai_addr->sa_family != AF_INET && res2->ai_addr->sa_family != AF_INET6)) { pr_warn("resolving host `%s': unsupported address returned", arg->hostname); continue; } memset(&ret->addr[n_addr], 0, sizeof(fastd_peer_address_t)); memcpy(&ret->addr[n_addr], res2->ai_addr, res2->ai_addrlen); fastd_peer_address_simplify(&ret->addr[n_addr]); n_addr++; } if (n_addr) pr_verbose("resolved host `%s' successfully", arg->hostname); } ret->n_addr = n_addr; fastd_async_enqueue(ASYNC_TYPE_RESOLVE_RETURN, ret, sizeof(fastd_async_resolve_return_t) + n_addr*sizeof(fastd_peer_address_t)); freeaddrinfo(res); free(arg->hostname); free(arg); return NULL; } /** Starts to resolve a given dynamic remote of a peer to an IP address asynchronously */ void fastd_resolve_peer(fastd_peer_t *peer, fastd_remote_t *remote) { if (fastd_peer_is_dynamic(peer)) exit_bug("trying to resolve dynamic peer"); if (!fastd_timed_out(remote->last_resolve_timeout)) { /* last resolve was just a few seconds ago */ return; } pr_verbose("resolving host `%s' for peer %P...", remote->hostname, peer); remote->last_resolve_timeout = ctx.now + MIN_RESOLVE_INTERVAL; resolv_arg_t *arg = fastd_new(resolv_arg_t); arg->peer_id = peer->id; arg->remote = remote - VECTOR_DATA(peer->remotes); arg->hostname = fastd_strdup(remote->hostname); arg->constraints = remote->address; pthread_t thread; if ((errno = pthread_create(&thread, &ctx.detached_thread, resolve_peer, arg)) != 0) { pr_error_errno("unable to create resolver thread"); free(arg->hostname); free(arg); return; } }