2 This file is part of GNUnet.
3 Copyright (C) 2007-2016 GNUnet e.V.
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 SPDX-License-Identifier: AGPL3.0-or-later
22 * @file util/gnunet-service-resolver.c
23 * @brief code to do DNS resolution
24 * @author Christian Grothoff
27 #include "gnunet_util_lib.h"
28 #include "gnunet_protocols.h"
29 #include "gnunet_statistics_service.h"
34 * How long do we wait for DNS answers?
36 #define DNS_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
39 * Maximum number of hostnames we cache results for.
41 #define MAX_CACHE 1024
44 * Entry in list of cached DNS records for a hostname.
46 struct RecordListEntry
49 * This is a doubly linked list.
51 struct RecordListEntry *next;
54 * This is a doubly linked list.
56 struct RecordListEntry *prev;
61 struct GNUNET_DNSPARSER_Record *record;
67 * A cached DNS lookup result.
72 * This is a doubly linked list.
74 struct ResolveCache *next;
77 * This is a doubly linked list.
79 struct ResolveCache *prev;
82 * Which hostname is this cache for?
87 * head of a double linked list containing the lookup results
89 struct RecordListEntry *records_head;
92 * tail of a double linked list containing the lookup results
94 struct RecordListEntry *records_tail;
100 * Information about pending lookups.
107 struct ActiveLookup *next;
112 struct ActiveLookup *prev;
115 * The client that queried the records contained in this cache entry.
117 struct GNUNET_SERVICE_Client *client;
120 * handle for cancelling a request
122 struct GNUNET_DNSSTUB_RequestSocket *resolve_handle;
125 * handle for the resolution timeout task
127 struct GNUNET_SCHEDULER_Task *timeout_task;
130 * Which hostname are we resolving?
135 * If @a record_type is #GNUNET_DNSPARSER_TYPE_ALL, did we go again
136 * for the AAAA records yet?
141 * type of queried DNS record
143 uint16_t record_type;
146 * Unique request ID of a client if a query for this hostname/record_type
147 * is currently pending, undefined otherwise.
149 uint32_t client_request_id;
152 * Unique DNS request ID of a client if a query for this hostname/record_type
153 * is currently pending, undefined otherwise.
161 * Start of the linked list of cached DNS lookup results.
163 static struct ResolveCache *cache_head;
166 * Tail of the linked list of cached DNS lookup results.
168 static struct ResolveCache *cache_tail;
171 * Head of the linked list of DNS lookup results from /etc/hosts.
173 static struct ResolveCache *hosts_head;
176 * Tail of the linked list of DNS lookup results from /etc/hosts.
178 static struct ResolveCache *hosts_tail;
181 * Start of the linked list of active DNS lookups.
183 static struct ActiveLookup *lookup_head;
186 * Tail of the linked list of active DNS lookups.
188 static struct ActiveLookup *lookup_tail;
191 * context of dnsstub library
193 static struct GNUNET_DNSSTUB_Context *dnsstub_ctx;
196 * My domain, to be appended to the hostname to get a FQDN.
198 static char *my_domain;
201 * How many entries do we have in #cache_head DLL?
203 static unsigned int cache_size;
207 * Remove @a entry from cache.
209 * @param rc entry to free
212 free_cache_entry (struct ResolveCache *rc)
214 struct RecordListEntry *pos;
216 while (NULL != (pos = rc->records_head))
218 GNUNET_CONTAINER_DLL_remove (rc->records_head,
221 GNUNET_DNSPARSER_free_record (pos->record);
222 GNUNET_free (pos->record);
225 GNUNET_free_non_null (rc->hostname);
226 GNUNET_CONTAINER_DLL_remove (cache_head,
235 * Remove @a entry from cache.
237 * @param rc entry to free
240 free_hosts_entry (struct ResolveCache *rc)
242 struct RecordListEntry *pos;
244 while (NULL != (pos = rc->records_head))
246 GNUNET_CONTAINER_DLL_remove (rc->records_head,
249 GNUNET_DNSPARSER_free_record (pos->record);
250 GNUNET_free (pos->record);
253 GNUNET_free_non_null (rc->hostname);
254 GNUNET_CONTAINER_DLL_remove (hosts_head,
263 * Release resources associated with @a al
265 * @param al an active lookup
268 free_active_lookup (struct ActiveLookup *al)
270 GNUNET_CONTAINER_DLL_remove (lookup_head,
273 if (NULL != al->resolve_handle)
275 GNUNET_DNSSTUB_resolve_cancel (al->resolve_handle);
276 al->resolve_handle = NULL;
278 if (NULL != al->timeout_task)
280 GNUNET_SCHEDULER_cancel (al->timeout_task);
281 al->timeout_task = NULL;
283 GNUNET_free_non_null (al->hostname);
290 * Find out if the configuration file line contains a string
291 * starting with "nameserver ", and if so, return a copy of
292 * the nameserver's IP.
294 * @param line line to parse
295 * @param line_len number of characters in @a line
296 * @return NULL if no nameserver is configured in this @a line
299 extract_dns_server (const char* line,
302 if (0 == strncmp (line,
304 strlen ("nameserver ")))
305 return GNUNET_strndup (line + strlen ("nameserver "),
306 line_len - strlen ("nameserver "));
312 * Find out if the configuration file line contains a string
313 * starting with "search ", and if so, return a copy of
314 * the machine's search domain.
316 * @param line line to parse
317 * @param line_len number of characters in @a line
318 * @return NULL if no nameserver is configured in this @a line
321 extract_search_domain (const char* line,
324 if (0 == strncmp (line,
327 return GNUNET_strndup (line + strlen ("search "),
328 line_len - strlen ("search "));
334 * Reads the list of nameservers from /etc/resolve.conf
336 * @param server_addrs[out] a list of null-terminated server address strings
337 * @return the number of server addresses in @server_addrs, -1 on error
340 lookup_dns_servers (char ***server_addrs)
342 struct GNUNET_DISK_FileHandle *fh;
343 struct GNUNET_DISK_MapHandle *mh;
347 unsigned int num_dns_servers;
349 fh = GNUNET_DISK_file_open ("/etc/resolv.conf",
350 GNUNET_DISK_OPEN_READ,
351 GNUNET_DISK_PERM_NONE);
354 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
355 "Could not open /etc/resolv.conf. "
356 "DNS resolution will not be possible.\n");
360 GNUNET_DISK_file_handle_size (fh,
363 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
364 "Could not determine size of /etc/resolv.conf. "
365 "DNS resolution will not be possible.\n");
366 GNUNET_DISK_file_close (fh);
369 if ((size_t) bytes_read > SIZE_MAX)
371 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
372 "/etc/resolv.conf file too large to mmap. "
373 "DNS resolution will not be possible.\n");
374 GNUNET_DISK_file_close (fh);
377 buf = GNUNET_DISK_file_map (fh,
379 GNUNET_DISK_MAP_TYPE_READ,
380 (size_t) bytes_read);
381 *server_addrs = NULL;
384 while (read_offset < (size_t) bytes_read)
390 newline = strchr (buf + read_offset,
394 line_len = newline - buf - read_offset;
395 dns_server = extract_dns_server (buf + read_offset,
397 if (NULL != dns_server)
399 GNUNET_array_append (*server_addrs,
403 else if (NULL == my_domain)
405 my_domain = extract_search_domain (buf + read_offset,
408 read_offset += line_len + 1;
410 GNUNET_DISK_file_unmap (mh);
411 GNUNET_DISK_file_close (fh);
412 return (int) num_dns_servers;
417 * Compute name to use for DNS reverse lookups from @a ip.
419 * @param ip IP address to resolve, in binary format, network byte order
420 * @param af address family of @a ip, AF_INET or AF_INET6
423 make_reverse_hostname (const void *ip,
426 char *buf = GNUNET_new_array (80,
432 struct in_addr *addr = (struct in_addr *)ip;
433 uint32_t ip_int = addr->s_addr;
435 for (int i = 3; i >= 0; i--)
437 int n = GNUNET_snprintf (buf + pos,
440 ((uint8_t *)&ip_int)[i]);
448 pos += GNUNET_snprintf (buf + pos,
452 else if (AF_INET6 == af)
454 struct in6_addr *addr = (struct in6_addr *)ip;
455 for (int i = 15; i >= 0; i--)
457 int n = GNUNET_snprintf (buf + pos,
460 addr->s6_addr[i] & 0xf);
467 n = GNUNET_snprintf (buf + pos,
470 addr->s6_addr[i] >> 4);
478 pos += GNUNET_snprintf (buf + pos,
488 * Send DNS @a record back to our @a client.
490 * @param record information to transmit
491 * @param record_type requested record type from client
492 * @param client_request_id to which request are we responding
493 * @param client where to send @a record
494 * @return #GNUNET_YES if we sent a reply,
495 * #GNUNET_NO if the record type is not understood or
496 * does not match @a record_type
499 send_reply (struct GNUNET_DNSPARSER_Record *record,
500 uint16_t record_type,
501 uint32_t client_request_id,
502 struct GNUNET_SERVICE_Client *client)
504 struct GNUNET_RESOLVER_ResponseMessage *msg;
505 struct GNUNET_MQ_Envelope *env;
509 switch (record->type)
511 case GNUNET_DNSPARSER_TYPE_CNAME:
512 if (GNUNET_DNSPARSER_TYPE_CNAME != record_type)
514 payload = record->data.hostname;
515 payload_len = strlen (record->data.hostname) + 1;
517 case GNUNET_DNSPARSER_TYPE_PTR:
518 if (GNUNET_DNSPARSER_TYPE_PTR != record_type)
520 payload = record->data.hostname;
521 payload_len = strlen (record->data.hostname) + 1;
523 case GNUNET_DNSPARSER_TYPE_A:
524 if ( (GNUNET_DNSPARSER_TYPE_A != record_type) &&
525 (GNUNET_DNSPARSER_TYPE_ALL != record_type) )
527 payload = record->data.raw.data;
528 payload_len = record->data.raw.data_len;
530 case GNUNET_DNSPARSER_TYPE_AAAA:
531 if ( (GNUNET_DNSPARSER_TYPE_AAAA != record_type) &&
532 (GNUNET_DNSPARSER_TYPE_ALL != record_type) )
534 payload = record->data.raw.data;
535 payload_len = record->data.raw.data_len;
538 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
539 "Cannot handle DNS response type %u: not supported here\n",
543 env = GNUNET_MQ_msg_extra (msg,
545 GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
546 msg->client_id = client_request_id;
547 GNUNET_memcpy (&msg[1],
550 GNUNET_MQ_send (GNUNET_SERVICE_client_get_mq (client),
557 * Send message to @a client that we transmitted all
558 * responses for @a client_request_id
560 * @param client_request_id to which request are we responding
561 * @param client where to send @a record
564 send_end_msg (uint32_t client_request_id,
565 struct GNUNET_SERVICE_Client *client)
567 struct GNUNET_RESOLVER_ResponseMessage *msg;
568 struct GNUNET_MQ_Envelope *env;
570 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
571 "Sending END message\n");
572 env = GNUNET_MQ_msg (msg,
573 GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
574 msg->client_id = client_request_id;
575 GNUNET_MQ_send (GNUNET_SERVICE_client_get_mq (client),
581 * Remove expired entries from @a rc
583 * @param rc entry in resolver cache
584 * @return #GNUNET_YES if @a rc was completely expired
585 * #GNUNET_NO if some entries are left
588 remove_expired (struct ResolveCache *rc)
590 struct GNUNET_TIME_Absolute now = GNUNET_TIME_absolute_get ();
591 struct RecordListEntry *n;
593 for (struct RecordListEntry *pos = rc->records_head;
598 if (now.abs_value_us > pos->record->expiration_time.abs_value_us)
600 GNUNET_CONTAINER_DLL_remove (rc->records_head,
603 GNUNET_DNSPARSER_free_record (pos->record);
604 GNUNET_free (pos->record);
608 if (NULL == rc->records_head)
610 free_cache_entry (rc);
618 * Process DNS request for @a hostname with request ID @a request_id
619 * from @a client demanding records of type @a record_type.
621 * @param hostname DNS name to resolve
622 * @param record_type desired record type
623 * @param client_request_id client's request ID
624 * @param client who should get the result?
627 process_get (const char *hostname,
628 uint16_t record_type,
629 uint32_t client_request_id,
630 struct GNUNET_SERVICE_Client *client);
634 * Get an IP address as a string (works for both IPv4 and IPv6). Note
635 * that the resolution happens asynchronously and that the first call
636 * may not immediately result in the FQN (but instead in a
637 * human-readable IP address).
639 * @param hostname what hostname was to be resolved
640 * @param record_type what type of record was requested
641 * @param client_request_id unique identification of the client's request
642 * @param client handle to the client making the request (for sending the reply)
645 try_cache (const char *hostname,
646 uint16_t record_type,
647 uint32_t client_request_id,
648 struct GNUNET_SERVICE_Client *client)
650 struct ResolveCache *pos;
651 struct ResolveCache *next;
655 in_hosts = GNUNET_NO;
656 for (pos = hosts_head; NULL != pos; pos = pos->next)
657 if (0 == strcmp (pos->hostname,
660 in_hosts = GNUNET_YES;
666 for (pos = next; NULL != pos; pos = next)
669 if (GNUNET_YES == remove_expired (pos))
671 if (0 == strcmp (pos->hostname,
678 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
679 "No cache entry for '%s'\n",
683 if ( (GNUNET_NO == in_hosts) &&
684 (cache_head != pos) )
686 /* move result to head to achieve LRU for cache eviction */
687 GNUNET_CONTAINER_DLL_remove (cache_head,
690 GNUNET_CONTAINER_DLL_insert (cache_head,
695 for (struct RecordListEntry *rle = pos->records_head;
699 const struct GNUNET_DNSPARSER_Record *record = rle->record;
701 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
702 "Found cache entry for '%s', record type '%u'\n",
705 if ( (GNUNET_DNSPARSER_TYPE_CNAME == record->type) &&
706 (GNUNET_DNSPARSER_TYPE_CNAME != record_type) &&
707 (GNUNET_NO == found) )
709 const char *hostname = record->data.hostname;
711 process_get (hostname,
715 return GNUNET_YES; /* counts as a cache "hit" */
717 found |= send_reply (rle->record,
722 if (GNUNET_NO == found)
723 return GNUNET_NO; /* had records, but none matched! */
724 send_end_msg (client_request_id,
731 * Create DNS query for @a hostname of type @a type
732 * with DNS request ID @a dns_id.
734 * @param hostname DNS name to query
735 * @param type requested DNS record type
736 * @param dns_id what should be the DNS request ID
737 * @param packet_buf[out] where to write the request packet
738 * @param packet_size[out] set to size of @a packet_buf on success
739 * @return #GNUNET_OK on success
742 pack (const char *hostname,
748 struct GNUNET_DNSPARSER_Query query;
749 struct GNUNET_DNSPARSER_Packet packet;
751 query.name = (char *)hostname;
753 query.dns_traffic_class = GNUNET_TUN_DNS_CLASS_INTERNET;
757 packet.num_queries = 1;
758 packet.queries = &query;
759 packet.id = htons (dns_id);
760 packet.flags.recursion_desired = 1;
762 GNUNET_DNSPARSER_pack (&packet,
767 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
768 "Failed to pack query for hostname `%s'\n",
771 return GNUNET_SYSERR;
778 * We got a result from DNS. Add it to the cache and
779 * see if we can make our client happy...
781 * @param cls the `struct ActiveLookup`
782 * @param dns the DNS response
783 * @param dns_len number of bytes in @a dns
786 handle_resolve_result (void *cls,
787 const struct GNUNET_TUN_DnsHeader *dns,
790 struct ActiveLookup *al = cls;
791 struct GNUNET_DNSPARSER_Packet *parsed;
792 struct ResolveCache *rc;
794 parsed = GNUNET_DNSPARSER_parse ((const char *)dns,
798 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
799 "Failed to parse DNS reply (hostname %s, request ID %u)\n",
804 if (al->dns_id != ntohs (parsed->id))
806 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
807 "Request ID in DNS reply does not match\n");
808 GNUNET_DNSPARSER_free_packet (parsed);
811 if (0 == parsed->num_answers + parsed->num_authority_records + parsed->num_additional_records)
813 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
814 "DNS reply (hostname %s, request ID %u) contains no answers\n",
816 (unsigned int) al->client_request_id);
817 GNUNET_DNSPARSER_free_packet (parsed);
818 send_end_msg (al->client_request_id,
820 free_active_lookup (al);
823 /* LRU-based cache eviction: we remove from tail */
824 while (cache_size > MAX_CACHE)
825 free_cache_entry (cache_tail);
827 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
828 "Got reply for hostname %s and request ID %u\n",
830 (unsigned int) al->client_request_id);
832 for (unsigned int i = 0; i != parsed->num_answers; i++)
834 struct GNUNET_DNSPARSER_Record *record = &parsed->answers[i];
835 struct RecordListEntry *rle;
837 for (rc = cache_head; NULL != rc; rc = rc->next)
838 if (0 == strcasecmp (rc->hostname,
843 rc = GNUNET_new (struct ResolveCache);
844 rc->hostname = GNUNET_strdup (record->name);
845 GNUNET_CONTAINER_DLL_insert (cache_head,
850 /* TODO: ought to check first if we have this exact record
851 already in the cache! */
852 rle = GNUNET_new (struct RecordListEntry);
853 rle->record = GNUNET_DNSPARSER_duplicate_record (record);
854 GNUNET_CONTAINER_DLL_insert (rc->records_head,
858 for (unsigned int i = 0; i != parsed->num_authority_records; i++)
860 struct GNUNET_DNSPARSER_Record *record = &parsed->authority_records[i];
861 struct RecordListEntry *rle;
863 for (rc = cache_head; NULL != rc; rc = rc->next)
864 if (0 == strcasecmp (rc->hostname,
869 rc = GNUNET_new (struct ResolveCache);
870 rc->hostname = GNUNET_strdup (record->name);
871 GNUNET_CONTAINER_DLL_insert (cache_head,
876 /* TODO: ought to check first if we have this exact record
877 already in the cache! */
878 rle = GNUNET_new (struct RecordListEntry);
879 rle->record = GNUNET_DNSPARSER_duplicate_record (record);
880 GNUNET_CONTAINER_DLL_insert (rc->records_head,
884 for (unsigned int i = 0; i != parsed->num_additional_records; i++)
886 struct GNUNET_DNSPARSER_Record *record = &parsed->additional_records[i];
887 struct RecordListEntry *rle;
889 for (rc = cache_head; NULL != rc; rc = rc->next)
890 if (0 == strcasecmp (rc->hostname,
895 rc = GNUNET_new (struct ResolveCache);
896 rc->hostname = GNUNET_strdup (record->name);
897 GNUNET_CONTAINER_DLL_insert (cache_head,
902 /* TODO: ought to check first if we have this exact record
903 already in the cache! */
904 rle = GNUNET_new (struct RecordListEntry);
905 rle->record = GNUNET_DNSPARSER_duplicate_record (record);
906 GNUNET_CONTAINER_DLL_insert (rc->records_head,
910 /* see if we need to do the 2nd request for AAAA records */
911 if ( (GNUNET_DNSPARSER_TYPE_ALL == al->record_type) &&
912 (GNUNET_NO == al->did_aaaa) )
918 dns_id = (uint16_t) GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
922 GNUNET_DNSPARSER_TYPE_AAAA,
927 al->did_aaaa = GNUNET_YES;
929 GNUNET_DNSSTUB_resolve_cancel (al->resolve_handle);
931 GNUNET_DNSSTUB_resolve (dnsstub_ctx,
934 &handle_resolve_result,
936 GNUNET_free (packet_buf);
937 GNUNET_DNSPARSER_free_packet (parsed);
942 /* resume by trying again from cache */
944 try_cache (al->hostname,
946 al->client_request_id,
948 /* cache failed, tell client we could not get an answer */
950 send_end_msg (al->client_request_id,
953 free_active_lookup (al);
954 GNUNET_DNSPARSER_free_packet (parsed);
959 * We encountered a timeout trying to perform a
962 * @param cls a `struct ActiveLookup`
965 handle_resolve_timeout (void *cls)
967 struct ActiveLookup *al = cls;
969 al->timeout_task = NULL;
970 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
971 "DNS lookup timeout!\n");
972 send_end_msg (al->client_request_id,
974 free_active_lookup (al);
979 * Initiate an active lookup, then cache the result and
980 * try to then complete the resolution.
982 * @param hostname DNS name to resolve
983 * @param record_type record type to locate
984 * @param client_request_id client request ID
985 * @param client handle to the client
986 * @return #GNUNET_OK if the DNS query is now pending
989 resolve_and_cache (const char* hostname,
990 uint16_t record_type,
991 uint32_t client_request_id,
992 struct GNUNET_SERVICE_Client *client)
996 struct ActiveLookup *al;
1000 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1001 "resolve_and_cache `%s'\n",
1003 dns_id = (uint16_t) GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
1006 if (GNUNET_DNSPARSER_TYPE_ALL == record_type)
1007 type = GNUNET_DNSPARSER_TYPE_A;
1017 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1018 "Failed to pack query for hostname `%s'\n",
1020 return GNUNET_SYSERR;
1023 al = GNUNET_new (struct ActiveLookup);
1024 al->hostname = GNUNET_strdup (hostname);
1025 al->record_type = record_type;
1026 al->client_request_id = client_request_id;
1027 al->dns_id = dns_id;
1028 al->client = client;
1029 al->timeout_task = GNUNET_SCHEDULER_add_delayed (DNS_TIMEOUT,
1030 &handle_resolve_timeout,
1032 al->resolve_handle =
1033 GNUNET_DNSSTUB_resolve (dnsstub_ctx,
1036 &handle_resolve_result,
1038 GNUNET_free (packet_buf);
1039 GNUNET_CONTAINER_DLL_insert (lookup_head,
1042 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1043 "Resolving %s, client_request_id = %u, dns_id = %u\n",
1045 (unsigned int) client_request_id,
1046 (unsigned int) dns_id);
1052 * Process DNS request for @a hostname with request ID @a client_request_id
1053 * from @a client demanding records of type @a record_type.
1055 * @param hostname DNS name to resolve
1056 * @param record_type desired record type
1057 * @param client_request_id client's request ID
1058 * @param client who should get the result?
1061 process_get (const char *hostname,
1062 uint16_t record_type,
1063 uint32_t client_request_id,
1064 struct GNUNET_SERVICE_Client *client)
1068 if ( (NULL != my_domain) &&
1069 (NULL == strchr (hostname,
1070 (unsigned char) '.')) &&
1071 (strlen (hostname) + strlen (my_domain) <= 253) )
1073 GNUNET_snprintf (fqdn,
1079 else if (strlen (hostname) < 255)
1081 GNUNET_snprintf (fqdn,
1089 GNUNET_SERVICE_client_drop (client);
1099 resolve_and_cache (fqdn,
1104 send_end_msg (client_request_id,
1112 * Verify well-formedness of GET-message.
1114 * @param cls closure, unused
1115 * @param get the actual message
1116 * @return #GNUNET_OK if @a get is well-formed
1119 check_get (void *cls,
1120 const struct GNUNET_RESOLVER_GetMessage *get)
1127 size = ntohs (get->header.size) - sizeof (*get);
1128 direction = ntohl (get->direction);
1129 if (GNUNET_NO == direction)
1131 GNUNET_MQ_check_zero_termination (get);
1134 af = ntohl (get->af);
1138 if (size != sizeof (struct in_addr))
1141 return GNUNET_SYSERR;
1145 if (size != sizeof (struct in6_addr))
1148 return GNUNET_SYSERR;
1153 return GNUNET_SYSERR;
1160 * Handle GET-message.
1162 * @param cls identification of the client
1163 * @param msg the actual message
1166 handle_get (void *cls,
1167 const struct GNUNET_RESOLVER_GetMessage *msg)
1169 struct GNUNET_SERVICE_Client *client = cls;
1172 uint32_t client_request_id;
1175 direction = ntohl (msg->direction);
1176 af = ntohl (msg->af);
1177 client_request_id = msg->client_id;
1178 GNUNET_SERVICE_client_continue (client);
1179 if (GNUNET_NO == direction)
1181 /* IP from hostname */
1182 hostname = GNUNET_strdup ((const char *) &msg[1]);
1187 process_get (hostname,
1188 GNUNET_DNSPARSER_TYPE_ALL,
1195 process_get (hostname,
1196 GNUNET_DNSPARSER_TYPE_A,
1203 process_get (hostname,
1204 GNUNET_DNSPARSER_TYPE_AAAA,
1211 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1212 "got invalid af: %d\n",
1220 /* hostname from IP */
1221 hostname = make_reverse_hostname (&msg[1],
1223 process_get (hostname,
1224 GNUNET_DNSPARSER_TYPE_PTR,
1228 GNUNET_free_non_null (hostname);
1233 * Service is shutting down, clean up.
1235 * @param cls NULL, unused
1238 shutdown_task (void *cls)
1242 while (NULL != lookup_head)
1243 free_active_lookup (lookup_head);
1244 while (NULL != cache_head)
1245 free_cache_entry (cache_head);
1246 while (NULL != hosts_head)
1247 free_hosts_entry (hosts_head);
1248 GNUNET_DNSSTUB_stop (dnsstub_ctx);
1249 GNUNET_free (my_domain);
1254 * Add information about a host from /etc/hosts
1257 * @param hostname the name of the host
1258 * @param rec_type DNS record type to use
1259 * @param data payload
1260 * @param data_size number of bytes in @a data
1263 add_host (const char *hostname,
1268 struct ResolveCache *rc;
1269 struct RecordListEntry *rle;
1270 struct GNUNET_DNSPARSER_Record *rec;
1272 rec = GNUNET_malloc (sizeof (struct GNUNET_DNSPARSER_Record));
1273 rec->expiration_time = GNUNET_TIME_UNIT_FOREVER_ABS;
1274 rec->type = rec_type;
1275 rec->dns_traffic_class = GNUNET_TUN_DNS_CLASS_INTERNET;
1276 rec->name = GNUNET_strdup (hostname);
1277 rec->data.raw.data = GNUNET_memdup (data,
1279 rec->data.raw.data_len = data_size;
1280 rle = GNUNET_new (struct RecordListEntry);
1282 rc = GNUNET_new (struct ResolveCache);
1283 rc->hostname = GNUNET_strdup (hostname);
1284 GNUNET_CONTAINER_DLL_insert (rc->records_head,
1287 GNUNET_CONTAINER_DLL_insert (hosts_head,
1294 * Extract host information from a line in /etc/hosts
1296 * @param line the line to parse
1297 * @param line_len number of bytes in @a line
1300 extract_hosts (const char *line,
1309 /* ignore everything after '#' */
1311 (unsigned char) '#',
1314 line_len = c - line;
1315 /* ignore leading whitespace */
1316 while ( (0 < line_len) &&
1317 isspace ((unsigned char) *line) )
1322 tbuf = GNUNET_strndup (line,
1324 tok = strtok (tbuf, " \t");
1330 if (1 == inet_pton (AF_INET,
1334 while (NULL != (tok = strtok (NULL, " \t")))
1336 GNUNET_DNSPARSER_TYPE_A,
1338 sizeof (struct in_addr));
1340 else if (1 == inet_pton (AF_INET6,
1344 while (NULL != (tok = strtok (NULL, " \t")))
1346 GNUNET_DNSPARSER_TYPE_AAAA,
1348 sizeof (struct in6_addr));
1355 * Reads the list of hosts from /etc/hosts.
1358 load_etc_hosts (void)
1360 struct GNUNET_DISK_FileHandle *fh;
1361 struct GNUNET_DISK_MapHandle *mh;
1366 fh = GNUNET_DISK_file_open ("/etc/hosts",
1367 GNUNET_DISK_OPEN_READ,
1368 GNUNET_DISK_PERM_NONE);
1371 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1372 "Failed to open /etc/hosts");
1376 GNUNET_DISK_file_handle_size (fh,
1379 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1380 "Could not determin size of /etc/hosts. "
1381 "DNS resolution will not be possible.\n");
1382 GNUNET_DISK_file_close (fh);
1385 if ((size_t) bytes_read > SIZE_MAX)
1387 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1388 "/etc/hosts file too large to mmap. "
1389 "DNS resolution will not be possible.\n");
1390 GNUNET_DISK_file_close (fh);
1393 buf = GNUNET_DISK_file_map (fh,
1395 GNUNET_DISK_MAP_TYPE_READ,
1396 (size_t) bytes_read);
1398 while (read_offset < (size_t) bytes_read)
1400 const char *newline;
1403 newline = strchr (buf + read_offset,
1405 if (NULL == newline)
1407 line_len = newline - buf - read_offset;
1408 extract_hosts (buf + read_offset,
1410 read_offset += line_len + 1;
1412 GNUNET_DISK_file_unmap (mh);
1413 GNUNET_DISK_file_close (fh);
1418 * Service is starting, initialize everything.
1420 * @param cls NULL, unused
1421 * @param cfg our configuration
1422 * @param sh service handle
1426 const struct GNUNET_CONFIGURATION_Handle *cfg,
1427 struct GNUNET_SERVICE_Handle *sh)
1430 int num_dns_servers;
1435 GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
1437 dnsstub_ctx = GNUNET_DNSSTUB_start (128);
1439 num_dns_servers = lookup_dns_servers (&dns_servers);
1440 if (0 >= num_dns_servers)
1442 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1443 _("No DNS server available. DNS resolution will not be possible.\n"));
1446 for (int i = 0; i < num_dns_servers; i++)
1448 int result = GNUNET_DNSSTUB_add_dns_ip (dnsstub_ctx, dns_servers[i]);
1449 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1450 "Adding DNS server '%s': %s\n",
1452 GNUNET_OK == result ? "success" : "failure");
1453 GNUNET_free (dns_servers[i]);
1455 GNUNET_free_non_null (dns_servers);
1460 * Callback called when a client connects to the service.
1462 * @param cls closure for the service, unused
1463 * @param c the new client that connected to the service
1464 * @param mq the message queue used to send messages to the client
1468 connect_cb (void *cls,
1469 struct GNUNET_SERVICE_Client *c,
1470 struct GNUNET_MQ_Handle *mq)
1480 * Callback called when a client disconnected from the service
1482 * @param cls closure for the service
1483 * @param c the client that disconnected
1484 * @param internal_cls should be equal to @a c
1487 disconnect_cb (void *cls,
1488 struct GNUNET_SERVICE_Client *c,
1491 struct ActiveLookup *n;
1494 GNUNET_assert (c == internal_cls);
1496 for (struct ActiveLookup *al = n;
1501 if (al->client == c)
1502 free_active_lookup (al);
1508 * Define "main" method using service macro.
1512 GNUNET_SERVICE_OPTION_NONE,
1517 GNUNET_MQ_hd_var_size (get,
1518 GNUNET_MESSAGE_TYPE_RESOLVER_REQUEST,
1519 struct GNUNET_RESOLVER_GetMessage,
1521 GNUNET_MQ_handler_end ());
1524 #if defined(LINUX) && defined(__GLIBC__)
1528 * MINIMIZE heap size (way below 128k) since this process doesn't need much.
1530 void __attribute__ ((constructor))
1531 GNUNET_RESOLVER_memory_init ()
1533 mallopt (M_TRIM_THRESHOLD, 4 * 1024);
1534 mallopt (M_TOP_PAD, 1 * 1024);
1540 /* end of gnunet-service-resolver.c */