aboutsummaryrefslogtreecommitdiff
path: root/src/util/gnunet-service-resolver.c
blob: 5b890261bb42beb1f3264ed292bba68ba19e6f3c (plain) (blame)
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
/*
     This file is part of GNUnet.
     Copyright (C) 2007-2016 GNUnet e.V.

     GNUnet is free software: you can redistribute it and/or modify it
     under the terms of the GNU Affero General Public License as published
     by the Free Software Foundation, either version 3 of the License,
     or (at your option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Affero General Public License for more details.
    
     You should have received a copy of the GNU Affero General Public License
     along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

/**
 * @file util/gnunet-service-resolver.c
 * @brief code to do DNS resolution
 * @author Christian Grothoff
 */
#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_protocols.h"
#include "gnunet_statistics_service.h"
#include "resolver.h"


struct Record
{
  struct Record *next;

  struct Record *prev;

  struct GNUNET_DNSPARSER_Record *record;
};

/**
 * A cached DNS lookup result.
 */
struct ResolveCache
{
  /**
   * This is a doubly linked list.
   */
  struct ResolveCache *next;

  /**
   * This is a doubly linked list.
   */
  struct ResolveCache *prev;

  /**
   * type of queried DNS record
   */
  uint16_t record_type;

  /**
   * a pointer to the request_id if a query for this hostname/record_type
   * is currently pending, NULL otherwise.
   */
  int16_t *request_id;

  /**
   * The client that queried the records contained in this cache entry.
   */
  struct GNUNET_SERVICE_Client *client;

  /**
   * head of a double linked list containing the lookup results
   */
  struct Record *records_head;

  /**
   * tail of a double linked list containing the lookup results
   */
  struct Record *records_tail;

  /**
   * handle for cancelling a request
   */
  struct GNUNET_DNSSTUB_RequestSocket *resolve_handle;

  /**
   * handle for the resolution timeout task
   */
  struct GNUNET_SCHEDULER_Task *timeout_task;

};


/**
 * Start of the linked list of cached DNS lookup results.
 */
static struct ResolveCache *cache_head;

/**
 * Tail of the linked list of cached DNS lookup results.
 */
static struct ResolveCache *cache_tail;

/**
 * context of dnsstub library
 */
static struct GNUNET_DNSSTUB_Context *dnsstub_ctx;


void free_cache_entry (struct ResolveCache *entry)
{
  struct Record *pos;
  struct Record *next;
 
  next = entry->records_head;
  while (NULL != (pos = next))
  {
    next = pos->next;
    GNUNET_CONTAINER_DLL_remove (entry->records_head,
				 entry->records_tail,
		       		 pos);
    if (NULL != pos->record)
    {
      GNUNET_DNSPARSER_free_record (pos->record);
      GNUNET_free (pos->record);
    }
    GNUNET_free (pos);
  }
  if (NULL != entry->resolve_handle)
  {
    GNUNET_DNSSTUB_resolve_cancel (entry->resolve_handle);
    entry->resolve_handle = NULL;
  }
  if (NULL != entry->timeout_task)
  {
    GNUNET_SCHEDULER_cancel (entry->timeout_task);
    entry->timeout_task = NULL;
  }
  GNUNET_free_non_null (entry->request_id);
  GNUNET_free (entry);
}


static char*
extract_dns_server (const char* line, size_t line_len)
{
  if (0 == strncmp (line, "nameserver ", 11))
    return GNUNET_strndup (line + 11, line_len - 11);
  return NULL;
}

 
/**
 * reads the list of nameservers from /etc/resolve.conf
 *
 * @param server_addrs[out] a list of null-terminated server address strings
 * @return the number of server addresses in @server_addrs, -1 on error
 */
static ssize_t
lookup_dns_servers (char ***server_addrs)
{
  struct GNUNET_DISK_FileHandle *fh;
  char buf[2048];
  ssize_t bytes_read;
  size_t read_offset = 0;
  unsigned int num_dns_servers = 0;
    
  fh = GNUNET_DISK_file_open ("/etc/resolv.conf",
			      GNUNET_DISK_OPEN_READ,
			      GNUNET_DISK_PERM_NONE);
  if (NULL == fh)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		"Could not open /etc/resolv.conf. "
		"DNS resolution will not be possible.\n");
    return -1;
  }
  bytes_read = GNUNET_DISK_file_read (fh,
				      buf,
				      sizeof (buf));
  *server_addrs = NULL;
  while (read_offset < bytes_read)
  {
    char *newline;
    size_t line_len;
    char *dns_server;
    
    newline = strchr (buf + read_offset, '\n');
    if (NULL == newline)
    {
      break;
    }
    line_len = newline - buf - read_offset;
    dns_server = extract_dns_server (buf + read_offset, line_len);
    if (NULL != dns_server)
    {
      GNUNET_array_append (*server_addrs,
			   num_dns_servers,
  			   dns_server);
    }
    read_offset += line_len + 1;
  }
  GNUNET_DISK_file_close (fh);
  return num_dns_servers;
}


static char *
make_reverse_hostname (const void *ip, int af)
{
  char *buf = GNUNET_new_array (80, char);
  int pos = 0;
  if (AF_INET == af)
  {
    struct in_addr *addr = (struct in_addr *)ip;
    uint32_t ip_int = addr->s_addr;
    for (int i = 3; i >= 0; i--)
    {
      int n = GNUNET_snprintf (buf + pos,
			       80 - pos,
			       "%u.",
			       ((uint8_t *)&ip_int)[i]);
      if (n < 0)
      {
	GNUNET_free (buf);
	return NULL;
      }
      pos += n;
    }
    pos += GNUNET_snprintf (buf + pos, 80 - pos, "in-addr.arpa");
  }
  else if (AF_INET6 == af)
  {
    struct in6_addr *addr = (struct in6_addr *)ip;
    for (int i = 15; i >= 0; i--)
    {
      int n = GNUNET_snprintf (buf + pos, 80 - pos, "%x.", addr->s6_addr[i] & 0xf);
      if (n < 0)
      {
	GNUNET_free (buf);
	return NULL;
      }
      pos += n;
      n = GNUNET_snprintf (buf + pos, 80 - pos, "%x.", addr->s6_addr[i] >> 4);
      if (n < 0)
      {
	GNUNET_free (buf);
	return NULL;
      }
      pos += n;
    }
    pos += GNUNET_snprintf (buf + pos, 80 - pos, "ip6.arpa");
  }
  buf[pos] = '\0';
  return buf;
}


static void
send_reply (struct GNUNET_DNSPARSER_Record *record,
	    uint16_t request_id,
	    struct GNUNET_SERVICE_Client *client)
{
  struct GNUNET_RESOLVER_ResponseMessage *msg;
  struct GNUNET_MQ_Envelope *env;
  void *payload;
  size_t payload_len;

  switch (record->type)
  {
    case GNUNET_DNSPARSER_TYPE_PTR:
    {
      char *hostname = record->data.hostname;
      payload = hostname;
      payload_len = strlen (hostname) + 1;
      break;
    }
    case GNUNET_DNSPARSER_TYPE_A:
    case GNUNET_DNSPARSER_TYPE_AAAA:
    {
      payload = record->data.raw.data;
      payload_len = record->data.raw.data_len;
      break;         
    }
    default:
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		  "Cannot handle DNS response type: unimplemented\n");
      return;
    }
  }
  env = GNUNET_MQ_msg_extra (msg,
        		     payload_len,
        		     GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
  msg->id = request_id;
  GNUNET_memcpy (&msg[1],
        	 payload,
        	 payload_len);
  GNUNET_MQ_send (GNUNET_SERVICE_client_get_mq (client),
        	  env);
}


static void
send_end_msg (uint16_t request_id,
	      struct GNUNET_SERVICE_Client *client)
{
  struct GNUNET_RESOLVER_ResponseMessage *msg;
  struct GNUNET_MQ_Envelope *env;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "Sending end message\n");
  env = GNUNET_MQ_msg (msg,
        	       GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
  msg->id = request_id;
  GNUNET_MQ_send (GNUNET_SERVICE_client_get_mq (client),
        	  env);
}


static void
handle_resolve_result (void *cls,
		       const struct GNUNET_TUN_DnsHeader *dns,
                       size_t dns_len)
{
  struct ResolveCache *cache = cls;
  struct GNUNET_DNSPARSER_Packet *parsed;
  uint16_t request_id = *cache->request_id;
  struct GNUNET_SERVICE_Client *client = cache->client;

  parsed = GNUNET_DNSPARSER_parse ((const char *)dns,
				   dns_len);
  if (NULL == parsed)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		"Failed to parse DNS reply (request ID %u\n",
		request_id);
    return;
  }
  if (request_id != ntohs (parsed->id))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		"Request ID in DNS reply does not match\n");
    return;
  }
  else if (0 == parsed->num_answers)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		"DNS reply (request ID %u) contains no answers\n",
		request_id);
    GNUNET_CONTAINER_DLL_remove (cache_head,
				 cache_tail,
		       		 cache);
    free_cache_entry (cache);
    cache = NULL;
  }
  else
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		"Got reply for request ID %u\n",
		request_id);
    for (unsigned int i = 0; i != parsed->num_answers; i++)
    {
      struct Record *cache_entry = GNUNET_new (struct Record);
      struct GNUNET_DNSPARSER_Record *record = &parsed->answers[i];
      cache_entry->record = GNUNET_DNSPARSER_duplicate_record (record);
      GNUNET_CONTAINER_DLL_insert (cache->records_head,
          			   cache->records_tail,
          			   cache_entry);
      send_reply (cache_entry->record,
		  request_id,
          	  cache->client);
    }
    GNUNET_free_non_null (cache->request_id);
    cache->request_id = NULL;
  }
  send_end_msg (request_id,
		client);
  if (NULL != cache)
    cache->client = NULL;
  if (NULL != cache)
  {
    if (NULL != cache->timeout_task)
    { 
      GNUNET_SCHEDULER_cancel (cache->timeout_task);
      cache->timeout_task = NULL;
    }
    if (NULL != cache->resolve_handle)
    {
      GNUNET_DNSSTUB_resolve_cancel (cache->resolve_handle);
      cache->resolve_handle = NULL;
    }
  }
  GNUNET_DNSPARSER_free_packet (parsed);
}


static void
handle_resolve_timeout (void *cls)
{
  struct ResolveCache *cache = cls;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "timeout!\n");
  if (NULL != cache->resolve_handle)
  {
    GNUNET_DNSSTUB_resolve_cancel (cache->resolve_handle);
    cache->resolve_handle = NULL;
  }
  GNUNET_CONTAINER_DLL_remove (cache_head,
			       cache_tail,
			       cache);
  free_cache_entry (cache);
}


static int
resolve_and_cache (const char* hostname,
		   uint16_t record_type,
	 	   uint16_t request_id,
		   struct GNUNET_SERVICE_Client *client)
{
  char *packet_buf;
  size_t packet_size;
  struct GNUNET_DNSPARSER_Query query;
  struct GNUNET_DNSPARSER_Packet packet;
  struct ResolveCache *cache;
  struct GNUNET_TIME_Relative timeout =
    GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "resolve_and_cache\n");
  query.name = (char *)hostname;
  query.type = record_type;
  query.dns_traffic_class = GNUNET_TUN_DNS_CLASS_INTERNET;
  memset (&packet,
	  0,
	  sizeof (packet));
  packet.num_queries = 1;
  packet.queries = &query;
  packet.id = htons (request_id);
  packet.flags.recursion_desired = 1;
  if (GNUNET_OK != 
      GNUNET_DNSPARSER_pack (&packet,
			     UINT16_MAX,
			     &packet_buf,
			     &packet_size))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		"Failed to pack query for hostname `%s'\n",
                hostname);
    return GNUNET_SYSERR;
 
  }
  cache = GNUNET_malloc (sizeof (struct ResolveCache));
  cache->record_type = record_type;
  cache->request_id = GNUNET_memdup (&request_id, sizeof (request_id));
  cache->client = client;
  cache->timeout_task = GNUNET_SCHEDULER_add_delayed (timeout,
						      &handle_resolve_timeout,
						      cache);
  cache->resolve_handle = 
    GNUNET_DNSSTUB_resolve (dnsstub_ctx,
          		    packet_buf,
          		    packet_size,
          		    &handle_resolve_result,
          		    cache);
  GNUNET_CONTAINER_DLL_insert (cache_head,
			       cache_tail,
			       cache);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "resolve %s, request_id = %u\n",
	      hostname,
	      request_id);
  GNUNET_free (packet_buf);
  return GNUNET_OK;
}


static const char *
get_hostname (struct ResolveCache *cache_entry)
{
  if (NULL != cache_entry->records_head)
  {
    GNUNET_assert (NULL != cache_entry->records_head);
    GNUNET_assert (NULL != cache_entry->records_head->record);
    GNUNET_assert (NULL != cache_entry->records_head->record->name);
    return cache_entry->records_head->record->name;
  }
  return NULL;
}


static const uint16_t *
get_record_type (struct ResolveCache *cache_entry)
{
  if (NULL != cache_entry->records_head)
    return &cache_entry->record_type;
  return NULL; 
}


static const struct GNUNET_TIME_Absolute *
get_expiration_time (struct ResolveCache *cache_entry)
{
  if (NULL != cache_entry->records_head)
    return &cache_entry->records_head->record->expiration_time;
  return NULL;
}


static int
remove_if_expired (struct ResolveCache *cache_entry)
{
  struct GNUNET_TIME_Absolute now = GNUNET_TIME_absolute_get ();

  if ( (NULL != cache_entry->records_head) &&
       (now.abs_value_us > get_expiration_time (cache_entry)->abs_value_us) )
  {
    GNUNET_CONTAINER_DLL_remove (cache_head,
				 cache_tail,
		       		 cache_entry);
    free_cache_entry (cache_entry);
    return GNUNET_YES;
  }
  return GNUNET_NO;
}


/**
 * Get an IP address as a string (works for both IPv4 and IPv6).  Note
 * that the resolution happens asynchronously and that the first call
 * may not immediately result in the FQN (but instead in a
 * human-readable IP address).
 *
 * @param client handle to the client making the request (for sending the reply)
 * @param af AF_INET or AF_INET6
 * @param ip `struct in_addr` or `struct in6_addr`
 */
static int
try_cache (const char *hostname,
           uint16_t record_type,
	   uint16_t request_id,
	   struct GNUNET_SERVICE_Client *client)
{
  struct ResolveCache *pos;
  struct ResolveCache *next;

  next = cache_head;
  while ( (NULL != (pos = next)) &&
	  ( (NULL == pos->records_head) ||
	    (0 != strcmp (get_hostname (pos), hostname)) ||
	    (*get_record_type (pos) != record_type) ) )
  {
    next = pos->next;
    remove_if_expired (pos);
  }
  if (NULL != pos)
  {
    if (GNUNET_NO == remove_if_expired (pos))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
  		  "found cache entry for '%s', record type '%u'\n",
  		  hostname,
		  record_type);
      struct Record *cache_pos = pos->records_head;
      while (NULL != cache_pos)
      {
	send_reply (cache_pos->record,
		    request_id,
		    client);
	cache_pos = cache_pos->next;
      }
      send_end_msg (request_id,
		    client);
      return GNUNET_YES;
    }
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "no cache entry for '%s'\n",
	      hostname);
  return GNUNET_NO;
}


/**
 * Verify well-formedness of GET-message.
 *
 * @param cls closure, unused
 * @param get the actual message
 * @return #GNUNET_OK if @a get is well-formed
 */
static int
check_get (void *cls,
	   const struct GNUNET_RESOLVER_GetMessage *get)
{
  uint16_t size;
  int direction;
  int af;

  (void) cls;
  size = ntohs (get->header.size) - sizeof (*get);
  direction = ntohl (get->direction);
  if (GNUNET_NO == direction)
  {
    /* IP from hostname */
    const char *hostname;

    hostname = (const char *) &get[1];
    if (hostname[size - 1] != '\0')
    {
      GNUNET_break (0);
      return GNUNET_SYSERR;
    }
    return GNUNET_OK;
  }
  af = ntohl (get->af);
  switch (af)
  {
  case AF_INET:
    if (size != sizeof (struct in_addr))
    {
      GNUNET_break (0);
      return GNUNET_SYSERR;
    }
    break;
  case AF_INET6:
    if (size != sizeof (struct in6_addr))
    {
      GNUNET_break (0);
      return GNUNET_SYSERR;
    }
    break;
  default:
    GNUNET_break (0);
    return GNUNET_SYSERR;
  }
  return GNUNET_OK;
}


static void
process_get (const char *hostname,
	     uint16_t record_type,
	     uint16_t request_id,
	     struct GNUNET_SERVICE_Client *client)
{
  if (GNUNET_NO == try_cache (hostname, record_type, request_id, client))
  {
    int result = resolve_and_cache (hostname,
				    record_type,
		       		    request_id,
		       		    client);
    GNUNET_assert (GNUNET_OK == result);
  }
}


/**
 * Handle GET-message.
 *
 * @param cls identification of the client
 * @param msg the actual message
 */
static void
handle_get (void *cls,
	    const struct GNUNET_RESOLVER_GetMessage *msg)
{
  struct GNUNET_SERVICE_Client *client = cls;
  int direction;
  int af;
  uint16_t request_id;
  const char *hostname;

  direction = ntohl (msg->direction);
  af = ntohl (msg->af);
  request_id = ntohs (msg->id);
  if (GNUNET_NO == direction)
  {
    /* IP from hostname */
    hostname = GNUNET_strdup ((const char *) &msg[1]);
    switch (af)
    {
      case AF_UNSPEC:
      {
	process_get (hostname, GNUNET_DNSPARSER_TYPE_ALL, request_id, client);
	break;
      }
      case AF_INET:
      {
	process_get (hostname, GNUNET_DNSPARSER_TYPE_A, request_id, client);
        break;
      }
      case AF_INET6:
      {
	process_get (hostname, GNUNET_DNSPARSER_TYPE_AAAA, request_id, client);
        break;
      }
      default:
      {
        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
          	  "got invalid af: %d\n",
          	  af);
        GNUNET_assert (0);
      }
    }
  }
  else
  {
    /* hostname from IP */
    hostname = make_reverse_hostname (&msg[1], af); 
    process_get (hostname, GNUNET_DNSPARSER_TYPE_PTR, request_id, client);
  }
  GNUNET_free_non_null ((char *)hostname);
  GNUNET_SERVICE_client_continue (client);
}


static void 
shutdown_task (void *cls)
{
  (void) cls;
  struct ResolveCache *pos;

  while (NULL != (pos = cache_head))
  {
    GNUNET_CONTAINER_DLL_remove (cache_head,
				 cache_tail,
				 pos);
    free_cache_entry (pos);
  }
  GNUNET_DNSSTUB_stop (dnsstub_ctx);
}


static void
init_cb (void *cls,
	 const struct GNUNET_CONFIGURATION_Handle *cfg,
	 struct GNUNET_SERVICE_Handle *sh)
{
  (void) cfg;
  (void) sh;

  GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
				 cls);
  dnsstub_ctx = GNUNET_DNSSTUB_start (128);
  char **dns_servers;
  ssize_t num_dns_servers = lookup_dns_servers (&dns_servers);
  if (0 == num_dns_servers)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
  	        "no DNS server available. DNS resolution will not be possible.\n");
  }
  for (int i = 0; i != num_dns_servers; i++)
  {
    int result = GNUNET_DNSSTUB_add_dns_ip (dnsstub_ctx, dns_servers[i]);
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	        "Adding DNS server '%s': %s\n",
		dns_servers[i],
		GNUNET_OK == result ? "success" : "failure");
    GNUNET_free (dns_servers[i]);
  }
  GNUNET_free_non_null (dns_servers);
}


/**
 * Callback called when a client connects to the service.
 *
 * @param cls closure for the service, unused
 * @param c the new client that connected to the service
 * @param mq the message queue used to send messages to the client
 * @return @a c
 */
static void *
connect_cb (void *cls,
	    struct GNUNET_SERVICE_Client *c,
	    struct GNUNET_MQ_Handle *mq)
{
  (void) cls;
  (void) mq;

  return c;
}


/**
 * Callback called when a client disconnected from the service
 *
 * @param cls closure for the service
 * @param c the client that disconnected
 * @param internal_cls should be equal to @a c
 */
static void
disconnect_cb (void *cls,
	       struct GNUNET_SERVICE_Client *c,
	       void *internal_cls)
{
  (void) cls;
  struct ResolveCache *pos = cache_head; 

  while (NULL != pos)
  {
    if (pos->client == c)
    {
      pos->client = NULL;
    }
    pos = pos->next;
  }
  GNUNET_assert (c == internal_cls);
}


/**
 * Define "main" method using service macro.
 */
GNUNET_SERVICE_MAIN
("resolver",
 GNUNET_SERVICE_OPTION_NONE,
 &init_cb,
 &connect_cb,
 &disconnect_cb,
 NULL,
 GNUNET_MQ_hd_var_size (get,
			GNUNET_MESSAGE_TYPE_RESOLVER_REQUEST,
			struct GNUNET_RESOLVER_GetMessage,
			NULL),
 GNUNET_MQ_handler_end ());


#if defined(LINUX) && defined(__GLIBC__)
#include <malloc.h>

/**
 * MINIMIZE heap size (way below 128k) since this process doesn't need much.
 */
void __attribute__ ((constructor))
GNUNET_RESOLVER_memory_init ()
{
  mallopt (M_TRIM_THRESHOLD, 4 * 1024);
  mallopt (M_TOP_PAD, 1 * 1024);
  malloc_trim (0);
}
#endif


/* end of gnunet-service-resolver.c */