a6d051e9ce234a9628b62efbc467933a2a4cafb4
[oweals/gnunet.git] / src / vpn / gnunet-daemon-vpn.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Christian Grothoff
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file vpn/gnunet-daemon-vpn.c
23  * @brief
24  * @author Philipp Toelke
25  */
26 #include "platform.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_program_lib.h"
29 #include "gnunet-vpn-packet.h"
30 #include "gnunet_common.h"
31 #include "gnunet_protocols.h"
32 #include "gnunet_applications.h"
33 #include <gnunet_mesh_service.h>
34 #include "gnunet_client_lib.h"
35 #include "gnunet_container_lib.h"
36 #include "gnunet_constants.h"
37 #include <block_dns.h>
38 #include "gnunet-daemon-vpn-helper.h"
39 #include "gnunet-daemon-vpn-dns.h"
40 #include "gnunet-daemon-vpn.h"
41 #include "gnunet-vpn-checksum.h"
42
43 const struct GNUNET_CONFIGURATION_Handle *cfg;
44 struct GNUNET_MESH_Handle *mesh_handle;
45 struct GNUNET_CONTAINER_MultiHashMap *hashmap;
46 static struct GNUNET_CONTAINER_Heap *heap;
47
48 struct tunnel_notify_queue
49 {
50   struct tunnel_notify_queue *next;
51   struct tunnel_notify_queue *prev;
52   size_t len;
53   void *cls;
54 };
55
56 /**
57  * If there are at least this many address-mappings, old ones will be removed
58  */
59 static long long unsigned int max_mappings = 200;
60
61 /**
62  * Final status code.
63  */
64 static int ret;
65
66 /**
67  * This hashmap contains the mapping from peer, service-descriptor,
68  * source-port and destination-port to a socket
69  */
70 static struct GNUNET_CONTAINER_MultiHashMap *udp_connections;
71
72 GNUNET_SCHEDULER_TaskIdentifier conn_task;
73
74 GNUNET_SCHEDULER_TaskIdentifier shs_task;
75
76 /**
77  * Function scheduled as very last function, cleans up after us
78  *{{{
79  */
80 static void
81 cleanup (void *cls
82          __attribute__ ((unused)),
83          const struct GNUNET_SCHEDULER_TaskContext *tskctx)
84 {
85   GNUNET_assert (0 != (tskctx->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN));
86
87   /* stop the helper */
88   cleanup_helper (helper_handle);
89
90   /* close the connection to the service-dns */
91   if (dns_connection != NULL)
92   {
93     GNUNET_CLIENT_disconnect (dns_connection, GNUNET_NO);
94     dns_connection = NULL;
95   }
96
97   if (mesh_handle != NULL)
98   {
99     GNUNET_MESH_disconnect (mesh_handle);
100     mesh_handle = NULL;
101   }
102   if (GNUNET_SCHEDULER_NO_TASK != shs_task)
103   {
104     GNUNET_SCHEDULER_cancel (shs_task);
105     shs_task = GNUNET_SCHEDULER_NO_TASK;
106   }
107   if (GNUNET_SCHEDULER_NO_TASK != conn_task)
108   {
109     GNUNET_SCHEDULER_cancel (conn_task);
110     conn_task = GNUNET_SCHEDULER_NO_TASK;
111   }
112 }
113
114 /*}}}*/
115
116 /**
117  * @return the hash of the IP-Address if a mapping exists, NULL otherwise
118  */
119 GNUNET_HashCode *
120 address6_mapping_exists (unsigned char addr[])
121 {
122   GNUNET_HashCode *key = GNUNET_malloc (sizeof (GNUNET_HashCode));
123   unsigned char *k = (unsigned char *) key;
124
125   memset (key, 0, sizeof (GNUNET_HashCode));
126   unsigned int i;
127
128   for (i = 0; i < 16; i++)
129     k[15 - i] = addr[i];
130
131   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains (hashmap, key))
132     return key;
133   else
134   {
135     GNUNET_free (key);
136     return NULL;
137   }
138 }
139
140 /**
141  * @return the hash of the IP-Address if a mapping exists, NULL otherwise
142  */
143 GNUNET_HashCode *
144 address4_mapping_exists (uint32_t addr)
145 {
146   GNUNET_HashCode *key = GNUNET_malloc (sizeof (GNUNET_HashCode));
147
148   memset (key, 0, sizeof (GNUNET_HashCode));
149   unsigned char *c = (unsigned char *) &addr;
150   unsigned char *k = (unsigned char *) key;
151   unsigned int i;
152
153   for (i = 0; i < 4; i++)
154     k[3 - i] = c[i];
155
156   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
157               "a4_m_e: getting with key %08x, addr is %08x, %d.%d.%d.%d\n",
158               *((uint32_t *) (key)), addr, c[0], c[1], c[2], c[3]);
159
160   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains (hashmap, key))
161     return key;
162   else
163   {
164     GNUNET_free (key);
165     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mapping not found!\n");
166     return NULL;
167   }
168 }
169
170 static void
171 collect_mappings (void *cls
172                   __attribute__ ((unused)),
173                   const struct GNUNET_SCHEDULER_TaskContext *tc)
174 {
175   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
176     return;
177
178   struct map_entry *me = GNUNET_CONTAINER_heap_remove_root (heap);
179
180   /* This is free()ed memory! */
181   me->heap_node = NULL;
182
183   /* FIXME! GNUNET_MESH_close_tunnel(me->tunnel); */
184
185   GNUNET_assert (GNUNET_YES ==
186                  GNUNET_CONTAINER_multihashmap_remove (hashmap, &me->hash, me));
187
188   GNUNET_free (me);
189 }
190
191 void
192 send_icmp4_response (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
193 {
194   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
195     return;
196
197   struct ip_icmp *request = cls;
198
199   struct ip_icmp *response = alloca (ntohs (request->shdr.size));
200
201   GNUNET_assert (response != NULL);
202   memset (response, 0, ntohs (request->shdr.size));
203
204   response->shdr.size = request->shdr.size;
205   response->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
206
207   response->tun.flags = 0;
208   response->tun.type = htons (0x0800);
209
210   response->ip_hdr.hdr_lngth = 5;
211   response->ip_hdr.version = 4;
212   response->ip_hdr.proto = 0x01;
213   response->ip_hdr.dadr = request->ip_hdr.sadr;
214   response->ip_hdr.sadr = request->ip_hdr.dadr;
215   response->ip_hdr.tot_lngth = request->ip_hdr.tot_lngth;
216
217   response->ip_hdr.chks =
218       calculate_ip_checksum ((uint16_t *) & response->ip_hdr, 20);
219
220   response->icmp_hdr.code = 0;
221   response->icmp_hdr.type = 0x0;
222
223   /* Magic, more Magic! */
224   response->icmp_hdr.chks = request->icmp_hdr.chks + 0x8;
225
226   /* Copy the rest of the packet */
227   memcpy (response + 1, request + 1,
228           ntohs (request->shdr.size) - sizeof (struct ip_icmp));
229
230   write_to_helper (response, ntohs (response->shdr.size));
231
232   GNUNET_free (request);
233 }
234
235 void
236 send_icmp6_response (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
237 {
238   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
239     return;
240
241   struct ip6_icmp *request = cls;
242
243   struct ip6_icmp *response = alloca (ntohs (request->shdr.size));
244
245   GNUNET_assert (response != NULL);
246   memset (response, 0, ntohs (request->shdr.size));
247
248   response->shdr.size = request->shdr.size;
249   response->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
250
251   response->tun.flags = 0;
252   response->tun.type = htons (0x86dd);
253
254   response->ip6_hdr.hoplmt = 255;
255   response->ip6_hdr.paylgth = request->ip6_hdr.paylgth;
256   response->ip6_hdr.nxthdr = 0x3a;
257   response->ip6_hdr.version = 6;
258   memcpy (&response->ip6_hdr.sadr, &request->ip6_hdr.dadr, 16);
259   memcpy (&response->ip6_hdr.dadr, &request->ip6_hdr.sadr, 16);
260
261   response->icmp_hdr.code = 0;
262   response->icmp_hdr.type = 0x81;
263
264   /* Magic, more Magic! */
265   response->icmp_hdr.chks = request->icmp_hdr.chks - 0x1;
266
267   /* Copy the rest of the packet */
268   memcpy (response + 1, request + 1,
269           ntohs (request->shdr.size) - sizeof (struct ip6_icmp));
270
271   write_to_helper (response, ntohs (response->shdr.size));
272
273   GNUNET_free (request);
274 }
275
276 /**
277  * cls is the pointer to a GNUNET_MessageHeader that is
278  * followed by the service-descriptor and the packet that should be sent;
279  */
280 static size_t
281 send_pkt_to_peer_notify_callback (void *cls, size_t size, void *buf)
282 {
283   struct GNUNET_MESH_Tunnel **tunnel = cls;
284
285   GNUNET_MESH_tunnel_set_data (*tunnel, NULL);
286
287   if (NULL != buf)
288     {
289       struct GNUNET_MessageHeader *hdr =
290         (struct GNUNET_MessageHeader *) (tunnel + 1);
291       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
292                   "send_pkt_to_peer_notify_callback: buf = %x; size = %u;\n", buf,
293                   size);
294       GNUNET_assert (size >= ntohs (hdr->size));
295       memcpy (buf, hdr, ntohs (hdr->size));
296       size = ntohs (hdr->size);
297       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sent!\n");
298     }
299   else
300     size = 0;
301
302   if (NULL != GNUNET_MESH_tunnel_get_head (*tunnel))
303   {
304     struct tunnel_notify_queue *element = GNUNET_MESH_tunnel_get_head (*tunnel);
305     struct tunnel_notify_queue *head = GNUNET_MESH_tunnel_get_head (*tunnel);
306     struct tunnel_notify_queue *tail = GNUNET_MESH_tunnel_get_tail (*tunnel);
307
308     GNUNET_CONTAINER_DLL_remove (head, tail, element);
309
310     GNUNET_MESH_tunnel_set_head (*tunnel, head);
311     GNUNET_MESH_tunnel_set_tail (*tunnel, tail);
312
313     struct GNUNET_MESH_TransmitHandle *th =
314         GNUNET_MESH_notify_transmit_ready (*tunnel,
315                                            GNUNET_NO,
316                                            42,
317                                            GNUNET_TIME_relative_divide
318                                            (GNUNET_CONSTANTS_MAX_CORK_DELAY, 2),
319                                            (const struct GNUNET_PeerIdentity *)
320                                            NULL, element->len,
321                                            send_pkt_to_peer_notify_callback,
322                                            element->cls);
323
324     /* save the handle */
325     GNUNET_MESH_tunnel_set_data (*tunnel, th);
326     GNUNET_free (element);
327   }
328   GNUNET_free (cls);
329
330   return size;
331 }
332
333 unsigned int
334 port_in_ports (uint64_t ports, uint16_t port)
335 {
336   uint16_t *ps = (uint16_t *) & ports;
337
338   return ports == 0 || ps[0] == port || ps[1] == port || ps[2] == port || ps[3] == port;
339 }
340
341 void
342 send_pkt_to_peer (void *cls, const struct GNUNET_PeerIdentity *peer,
343                   const struct GNUNET_ATS_Information *atsi
344                   __attribute__ ((unused)),
345                   unsigned int atsi_count
346                   __attribute__ ((unused)))
347 {
348   /* peer == NULL means that all peers in this request are connected */
349   if (peer == NULL)
350     return;
351   struct GNUNET_MESH_Tunnel **tunnel = cls;
352   struct GNUNET_MessageHeader *hdr =
353       (struct GNUNET_MessageHeader *) (tunnel + 1);
354
355   GNUNET_assert (NULL != tunnel);
356   GNUNET_assert (NULL != *tunnel);
357
358   if (NULL == GNUNET_MESH_tunnel_get_data (*tunnel))
359   {
360     struct GNUNET_MESH_TransmitHandle *th =
361         GNUNET_MESH_notify_transmit_ready (*tunnel,
362                                            GNUNET_NO,
363                                            42,
364                                            GNUNET_TIME_relative_divide
365                                            (GNUNET_CONSTANTS_MAX_CORK_DELAY, 2),
366                                            (const struct GNUNET_PeerIdentity *)
367                                            NULL,
368                                            ntohs (hdr->size),
369                                            send_pkt_to_peer_notify_callback,
370                                            cls);
371
372     GNUNET_MESH_tunnel_set_data (*tunnel, th);
373   }
374   else
375   {
376     struct tunnel_notify_queue *head = GNUNET_MESH_tunnel_get_head (*tunnel);
377     struct tunnel_notify_queue *tail = GNUNET_MESH_tunnel_get_tail (*tunnel);
378     struct tunnel_notify_queue *element = GNUNET_malloc (sizeof *element);
379
380     element->cls = cls;
381     element->len = ntohs (hdr->size);
382
383     GNUNET_CONTAINER_DLL_insert_tail (head, tail, element);
384
385     GNUNET_MESH_tunnel_set_head (*tunnel, head);
386     GNUNET_MESH_tunnel_set_tail (*tunnel, tail);
387   }
388 }
389
390 /**
391  * Create a new Address from an answer-packet
392  */
393 void
394 new_ip6addr (unsigned char *buf, const GNUNET_HashCode * peer,
395              const GNUNET_HashCode * service_desc)
396 {                               /* {{{ */
397   char *ipv6addr;
398   unsigned long long ipv6prefix;
399
400   GNUNET_assert (GNUNET_OK ==
401                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6ADDR",
402                                                         &ipv6addr));
403   GNUNET_assert (GNUNET_OK ==
404                  GNUNET_CONFIGURATION_get_value_number (cfg, "vpn",
405                                                         "IPV6PREFIX",
406                                                         &ipv6prefix));
407   GNUNET_assert (ipv6prefix < 127);
408   ipv6prefix = (ipv6prefix + 7) / 8;
409
410   inet_pton (AF_INET6, ipv6addr, buf);
411   GNUNET_free (ipv6addr);
412
413   int peer_length = 16 - ipv6prefix - 6;
414
415   if (peer_length <= 0)
416     peer_length = 0;
417
418   int service_length = 16 - ipv6prefix - peer_length;
419
420   if (service_length <= 0)
421     service_length = 0;
422
423   memcpy (buf + ipv6prefix, service_desc, service_length);
424   memcpy (buf + ipv6prefix + service_length, peer, peer_length);
425 }
426
427 /*}}}*/
428
429
430 /**
431  * Create a new Address from an answer-packet
432  */
433 void
434 new_ip6addr_remote (unsigned char *buf, unsigned char *addr, char addrlen)
435 {                               /* {{{ */
436   char *ipv6addr;
437   unsigned long long ipv6prefix;
438
439   GNUNET_assert (GNUNET_OK ==
440                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6ADDR",
441                                                         &ipv6addr));
442   GNUNET_assert (GNUNET_OK ==
443                  GNUNET_CONFIGURATION_get_value_number (cfg, "vpn",
444                                                         "IPV6PREFIX",
445                                                         &ipv6prefix));
446   GNUNET_assert (ipv6prefix < 127);
447   ipv6prefix = (ipv6prefix + 7) / 8;
448
449   inet_pton (AF_INET6, ipv6addr, buf);
450   GNUNET_free (ipv6addr);
451
452   int local_length = 16 - ipv6prefix;
453
454   memcpy (buf + ipv6prefix, addr, GNUNET_MIN (addrlen, local_length));
455 }
456
457 /*}}}*/
458
459 /**
460  * Create a new Address from an answer-packet
461  */
462 void
463 new_ip4addr_remote (unsigned char *buf, unsigned char *addr, char addrlen)
464 {                               /* {{{ */
465   char *ipv4addr;
466   char *ipv4mask;
467
468   GNUNET_assert (GNUNET_OK ==
469                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4ADDR",
470                                                         &ipv4addr));
471   GNUNET_assert (GNUNET_OK ==
472                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4MASK",
473                                                         &ipv4mask));
474   uint32_t mask;
475
476   inet_pton (AF_INET, ipv4addr, buf);
477   int r = inet_pton (AF_INET, ipv4mask, &mask);
478
479   mask = htonl (mask);
480   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "inet_pton: %d; %m; mask: %08x\n", r,
481               mask);
482
483   GNUNET_free (ipv4addr);
484
485   int c;
486
487   if (mask)
488   {
489     mask = (mask ^ (mask - 1)) >> 1;
490     for (c = 0; mask; c++)
491     {
492       mask >>= 1;
493     }
494   }
495   else
496   {
497     c = CHAR_BIT * sizeof (mask);
498   }
499
500   c = 32 - c;
501   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "The mask %s has %d leading 1s.\n",
502               ipv4mask, c);
503
504   GNUNET_free (ipv4mask);
505
506   if (c % 8 == 0)
507     c = c / 8;
508   else
509     GNUNET_assert (0);
510
511   memcpy (buf + c, addr, GNUNET_MIN (addrlen, 4 - c));
512 }
513
514 /*}}}*/
515
516 /**
517  * This gets scheduled with cls pointing to an answer_packet and does everything
518  * needed in order to send it to the helper.
519  *
520  * At the moment this means "inventing" and IPv6-Address for .gnunet-services and
521  * doing nothing for "real" services.
522  */
523 void
524 process_answer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
525 {
526   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
527     return;
528
529   struct answer_packet *pkt = cls;
530   struct answer_packet_list *list;
531
532   /* This answer is about a .gnunet-service
533    *
534    * It contains an almost complete DNS-Response, we have to fill in the ip
535    * at the offset pkt->addroffset
536    */
537   if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_SERVICE)
538   {
539     pkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
540
541     GNUNET_HashCode key;
542
543     memset (&key, 0, sizeof (GNUNET_HashCode));
544
545     unsigned char *c = ((unsigned char *) pkt) + ntohs (pkt->addroffset);
546     unsigned char *k = (unsigned char *) &key;
547
548     new_ip6addr (c, &pkt->service_descr.peer,
549                  &pkt->service_descr.service_descriptor);
550     /*
551      * Copy the newly generated ip-address to the key backwarts (as only the first part is hashed)
552      */
553     unsigned int i;
554
555     for (i = 0; i < 16; i++)
556       k[15 - i] = c[i];
557
558     uint16_t namelen = strlen ((char *) pkt->data + 12) + 1;
559
560     struct map_entry *value =
561         GNUNET_malloc (sizeof (struct map_entry) + namelen);
562     char *name = (char *) (value + 1);
563
564     value->namelen = namelen;
565     memcpy (name, pkt->data + 12, namelen);
566
567     memcpy (&value->desc, &pkt->service_descr,
568             sizeof (struct GNUNET_vpn_service_descriptor));
569
570     memset (value->additional_ports, 0, 8192);
571
572     memcpy (&value->hash, &key, sizeof (GNUNET_HashCode));
573
574     if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (hashmap, &key))
575     {
576       GNUNET_CONTAINER_multihashmap_put (hashmap, &key, value,
577                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
578
579       value->heap_node =
580           GNUNET_CONTAINER_heap_insert (heap, value,
581                                         GNUNET_TIME_absolute_get ().abs_value);
582       if (GNUNET_CONTAINER_heap_get_size (heap) > max_mappings)
583         GNUNET_SCHEDULER_add_now (collect_mappings, NULL);
584     }
585     else
586       GNUNET_free (value);
587
588
589     list =
590         GNUNET_malloc (htons (pkt->hdr.size) +
591                        2 * sizeof (struct answer_packet_list *));
592
593     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
594
595   }
596   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_REV)
597   {
598     GNUNET_HashCode key;
599
600     memset (&key, 0, sizeof key);
601     unsigned char *k = (unsigned char *) &key;
602     unsigned char *s = pkt->data + 12;
603     int i = 0;
604
605     /* Whoever designed the reverse IPv6-lookup is batshit insane */
606     for (i = 0; i < 16; i++)
607     {
608       unsigned char c1 = s[(4 * i) + 1];
609       unsigned char c2 = s[(4 * i) + 3];
610
611       if (c1 <= '9')
612         k[i] = c1 - '0';
613       else
614         k[i] = c1 - 87;         /* 87 is the difference between 'a' and 10 */
615       if (c2 <= '9')
616         k[i] += 16 * (c2 - '0');
617       else
618         k[i] += 16 * (c2 - 87);
619     }
620
621     struct map_entry *map_entry =
622         GNUNET_CONTAINER_multihashmap_get (hashmap, &key);
623     uint16_t offset = ntohs (pkt->addroffset);
624
625     if (map_entry == NULL)
626     {
627       GNUNET_free (pkt);
628       return;
629     }
630
631     GNUNET_CONTAINER_heap_update_cost (heap, map_entry->heap_node,
632                                        GNUNET_TIME_absolute_get ().abs_value);
633
634
635     unsigned short namelen = htons (map_entry->namelen);
636     char *name = (char *) (map_entry + 1);
637
638     list =
639         GNUNET_malloc (2 * sizeof (struct answer_packet_list *) + offset + 2 +
640                        ntohs (namelen));
641
642     struct answer_packet *rpkt = &list->pkt;
643
644     /* The offset points to the first byte belonging to the address */
645     memcpy (rpkt, pkt, offset - 1);
646
647     rpkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
648     rpkt->hdr.size = ntohs (offset + 2 + ntohs (namelen));
649
650     memcpy (((char *) rpkt) + offset, &namelen, 2);
651     memcpy (((char *) rpkt) + offset + 2, name, ntohs (namelen));
652
653   }
654   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_IP)
655   {
656     list =
657         GNUNET_malloc (htons (pkt->hdr.size) +
658                        2 * sizeof (struct answer_packet_list *));
659     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
660   }
661   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_REMOTE_AAAA)
662   {
663     pkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
664
665     GNUNET_HashCode key;
666
667     memset (&key, 0, sizeof (GNUNET_HashCode));
668
669     unsigned char *c = ((unsigned char *) pkt) + ntohs (pkt->addroffset);
670
671     new_ip6addr_remote (c, pkt->addr, pkt->addrsize);
672     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
673                 "New mapping to %02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x\n",
674                 c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7], c[8], c[9],
675                 c[10], c[11], c[12], c[13], c[14], c[15]);
676     unsigned char *k = (unsigned char *) &key;
677
678     /*
679      * Copy the newly generated ip-address to the key backwards (as only the first part is used in the hash-table)
680      */
681     unsigned int i;
682
683     for (i = 0; i < 16; i++)
684       k[15 - i] = c[i];
685
686     uint16_t namelen = strlen ((char *) pkt->data + 12) + 1;
687
688     struct map_entry *value =
689         GNUNET_malloc (sizeof (struct map_entry) + namelen);
690     char *name = (char *) (value + 1);
691
692     value->namelen = namelen;
693     memcpy (name, pkt->data + 12, namelen);
694
695     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting addrlen to %d\n",
696                 pkt->addrsize);
697     value->addrlen = pkt->addrsize;
698     memcpy (&value->addr, &pkt->addr, pkt->addrsize);
699     memset (value->additional_ports, 0, 8192);
700
701     memcpy (&value->hash, &key, sizeof (GNUNET_HashCode));
702
703     if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (hashmap, &key))
704     {
705       GNUNET_CONTAINER_multihashmap_put (hashmap, &key, value,
706                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
707       value->heap_node =
708           GNUNET_CONTAINER_heap_insert (heap, value,
709                                         GNUNET_TIME_absolute_get ().abs_value);
710       if (GNUNET_CONTAINER_heap_get_size (heap) > max_mappings)
711         GNUNET_SCHEDULER_add_now (collect_mappings, NULL);
712     }
713     else
714       GNUNET_free (value);
715
716     list =
717         GNUNET_malloc (htons (pkt->hdr.size) +
718                        2 * sizeof (struct answer_packet_list *));
719
720     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
721   }
722   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_REMOTE_A)
723   {
724     pkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
725
726     GNUNET_HashCode key;
727
728     memset (&key, 0, sizeof (GNUNET_HashCode));
729
730     unsigned char *c = ((unsigned char *) pkt) + ntohs (pkt->addroffset);
731
732     new_ip4addr_remote (c, pkt->addr, pkt->addrsize);
733     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "New mapping to %d.%d.%d.%d\n", c[0],
734                 c[1], c[2], c[3]);
735     unsigned char *k = (unsigned char *) &key;
736
737     /*
738      * Copy the newly generated ip-address to the key backwards (as only the first part is used in the hash-table)
739      */
740     unsigned int i;
741
742     for (i = 0; i < 4; i++)
743       k[3 - i] = c[i];
744
745     uint16_t namelen = strlen ((char *) pkt->data + 12) + 1;
746
747     struct map_entry *value =
748         GNUNET_malloc (sizeof (struct map_entry) + namelen);
749     char *name = (char *) (value + 1);
750
751     value->namelen = namelen;
752     memcpy (name, pkt->data + 12, namelen);
753
754     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting addrlen to %d\n",
755                 pkt->addrsize);
756     value->addrlen = pkt->addrsize;
757     memcpy (&value->addr, &pkt->addr, pkt->addrsize);
758     memset (value->additional_ports, 0, 8192);
759
760     memcpy (&value->hash, &key, sizeof (GNUNET_HashCode));
761
762     if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (hashmap, &key))
763     {
764       GNUNET_CONTAINER_multihashmap_put (hashmap, &key, value,
765                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
766       value->heap_node =
767           GNUNET_CONTAINER_heap_insert (heap, value,
768                                         GNUNET_TIME_absolute_get ().abs_value);
769       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
770                   "Mapping is saved in the hashmap with key %08x.\n",
771                   *((uint32_t *) (&key)));
772       if (GNUNET_CONTAINER_heap_get_size (heap) > max_mappings)
773         GNUNET_SCHEDULER_add_now (collect_mappings, NULL);
774     }
775     else
776       GNUNET_free (value);
777
778     list =
779         GNUNET_malloc (htons (pkt->hdr.size) +
780                        2 * sizeof (struct answer_packet_list *));
781
782     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
783   }
784   else
785   {
786     GNUNET_break (0);
787     GNUNET_free (pkt);
788     return;
789   }
790
791   GNUNET_free (pkt);
792
793   GNUNET_CONTAINER_DLL_insert_after (answer_proc_head, answer_proc_tail,
794                                      answer_proc_tail, list);
795
796   schedule_helper_write (GNUNET_TIME_UNIT_FOREVER_REL, NULL);
797
798   return;
799 }
800
801 /**
802  * Sets a bit active in a bitArray.
803  *
804  * @param bitArray memory area to set the bit in
805  * @param bitIdx which bit to set
806  */
807 void
808 setBit (char *bitArray, unsigned int bitIdx)
809 {
810   size_t arraySlot;
811   unsigned int targetBit;
812
813   arraySlot = bitIdx / 8;
814   targetBit = (1L << (bitIdx % 8));
815   bitArray[arraySlot] |= targetBit;
816 }
817
818 /**
819  * Clears a bit from bitArray.
820  *
821  * @param bitArray memory area to set the bit in
822  * @param bitIdx which bit to unset
823  */
824 void
825 clearBit (char *bitArray, unsigned int bitIdx)
826 {
827   size_t slot;
828   unsigned int targetBit;
829
830   slot = bitIdx / 8;
831   targetBit = (1L << (bitIdx % 8));
832   bitArray[slot] = bitArray[slot] & (~targetBit);
833 }
834
835 /**
836  * Checks if a bit is active in the bitArray
837  *
838  * @param bitArray memory area to set the bit in
839  * @param bitIdx which bit to test
840  * @return GNUNET_YES if the bit is set, GNUNET_NO if not.
841  */
842 int
843 testBit (char *bitArray, unsigned int bitIdx)
844 {
845   size_t slot;
846   unsigned int targetBit;
847
848   slot = bitIdx / 8;
849   targetBit = (1L << (bitIdx % 8));
850   if (bitArray[slot] & targetBit)
851     return GNUNET_YES;
852   else
853     return GNUNET_NO;
854 }
855
856 /**
857  * @brief Add the port to the list of additional ports in the map_entry
858  *
859  * @param me the map_entry
860  * @param port the port in host-byte-order
861  */
862 static void
863 add_additional_port (struct map_entry *me, uint16_t port)
864 {
865   setBit (me->additional_ports, port);
866 }
867
868 static int
869 receive_udp_back (void *cls
870                   __attribute__ ((unused)), struct GNUNET_MESH_Tunnel *tunnel,
871                   void **tunnel_ctx
872                   __attribute__ ((unused)),
873                   const struct GNUNET_PeerIdentity *sender
874                   __attribute__ ((unused)),
875                   const struct GNUNET_MessageHeader *message,
876                   const struct GNUNET_ATS_Information *atsi
877                   __attribute__ ((unused)),
878                   unsigned int atsi_count
879                   __attribute__ ((unused)))
880 {
881   GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
882   struct remote_addr *s = (struct remote_addr *) desc;
883   struct udp_pkt *pkt = (struct udp_pkt *) (desc + 1);
884   const struct GNUNET_PeerIdentity *other = GNUNET_MESH_get_peer (tunnel);
885
886   if (16 == s->addrlen)
887   {
888     size_t size =
889         sizeof (struct ip6_udp) + ntohs (pkt->len) - 1 -
890         sizeof (struct udp_pkt);
891
892     struct ip6_udp *pkt6 = alloca (size);
893
894     GNUNET_assert (pkt6 != NULL);
895
896     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK)
897       new_ip6addr (pkt6->ip6_hdr.sadr, &other->hashPubKey, desc);
898     else
899       new_ip6addr_remote (pkt6->ip6_hdr.sadr, s->addr, s->addrlen);
900
901     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
902                 "Relaying calc:%d gnu:%d udp:%d bytes!\n", size,
903                 ntohs (message->size), ntohs (pkt->len));
904
905     pkt6->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
906     pkt6->shdr.size = htons (size);
907
908     pkt6->tun.flags = 0;
909     pkt6->tun.type = htons (0x86dd);
910
911     pkt6->ip6_hdr.version = 6;
912     pkt6->ip6_hdr.tclass_h = 0;
913     pkt6->ip6_hdr.tclass_l = 0;
914     pkt6->ip6_hdr.flowlbl = 0;
915     pkt6->ip6_hdr.paylgth = pkt->len;
916     pkt6->ip6_hdr.nxthdr = IPPROTO_UDP;
917     pkt6->ip6_hdr.hoplmt = 0xff;
918
919     {
920       char *ipv6addr;
921
922       GNUNET_assert (GNUNET_OK ==
923                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
924                                                             "IPV6ADDR",
925                                                             &ipv6addr));
926       inet_pton (AF_INET6, ipv6addr, pkt6->ip6_hdr.dadr);
927       GNUNET_free (ipv6addr);
928     }
929     memcpy (&pkt6->udp_hdr, pkt, ntohs (pkt->len));
930
931     GNUNET_HashCode *key = address6_mapping_exists (pkt6->ip6_hdr.sadr);
932
933     GNUNET_assert (key != NULL);
934
935     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
936
937     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
938                                        GNUNET_TIME_absolute_get ().abs_value);
939
940     GNUNET_free (key);
941
942     GNUNET_assert (me != NULL);
943     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK)
944     {
945       GNUNET_assert (me->desc.
946                      service_type & htonl (GNUNET_DNS_SERVICE_TYPE_UDP));
947       if (!port_in_ports (me->desc.ports, pkt6->udp_hdr.spt) &&
948           !testBit (me->additional_ports, ntohs (pkt6->udp_hdr.spt)))
949       {
950         add_additional_port (me, ntohs (pkt6->udp_hdr.spt));
951       }
952     }
953
954     pkt6->udp_hdr.crc = 0;
955     uint32_t sum = 0;
956
957     sum =
958         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.sadr, 16);
959     sum =
960         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.dadr, 16);
961     uint32_t tmp = (pkt6->udp_hdr.len & 0xffff);
962
963     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
964     tmp = htons (((pkt6->ip6_hdr.nxthdr & 0x00ff)));
965     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
966
967     sum =
968         calculate_checksum_update (sum, (uint16_t *) & pkt6->udp_hdr,
969                                    ntohs (pkt->len));
970     pkt6->udp_hdr.crc = calculate_checksum_end (sum);
971
972     write_to_helper (pkt6, size);
973   }
974   else
975   {
976     size_t size =
977         sizeof (struct ip_udp) + ntohs (pkt->len) - 1 - sizeof (struct udp_pkt);
978
979     struct ip_udp *pkt4 = alloca (size);
980
981     GNUNET_assert (pkt4 != NULL);
982
983     GNUNET_assert (ntohs (message->type) ==
984                    GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP_BACK);
985     uint32_t sadr;
986
987     new_ip4addr_remote ((unsigned char *) &sadr, s->addr, s->addrlen);
988     pkt4->ip_hdr.sadr = sadr;
989
990     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
991                 "Relaying calc:%d gnu:%d udp:%d bytes!\n", size,
992                 ntohs (message->size), ntohs (pkt->len));
993
994     pkt4->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
995     pkt4->shdr.size = htons (size);
996
997     pkt4->tun.flags = 0;
998     pkt4->tun.type = htons (0x0800);
999
1000     pkt4->ip_hdr.version = 4;
1001     pkt4->ip_hdr.hdr_lngth = 5;
1002     pkt4->ip_hdr.diff_serv = 0;
1003     pkt4->ip_hdr.tot_lngth = htons (20 + ntohs (pkt->len));
1004     pkt4->ip_hdr.ident = 0;
1005     pkt4->ip_hdr.flags = 0;
1006     pkt4->ip_hdr.frag_off = 0;
1007     pkt4->ip_hdr.ttl = 255;
1008     pkt4->ip_hdr.proto = IPPROTO_UDP;
1009     pkt4->ip_hdr.chks = 0;      /* Will be calculated later */
1010
1011     {
1012       char *ipv4addr;
1013       uint32_t dadr;
1014
1015       GNUNET_assert (GNUNET_OK ==
1016                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
1017                                                             "IPV4ADDR",
1018                                                             &ipv4addr));
1019       inet_pton (AF_INET, ipv4addr, &dadr);
1020       GNUNET_free (ipv4addr);
1021       pkt4->ip_hdr.dadr = dadr;
1022     }
1023     memcpy (&pkt4->udp_hdr, pkt, ntohs (pkt->len));
1024
1025     GNUNET_HashCode *key = address4_mapping_exists (pkt4->ip_hdr.sadr);
1026
1027     GNUNET_assert (key != NULL);
1028
1029     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
1030
1031     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
1032                                        GNUNET_TIME_absolute_get ().abs_value);
1033
1034     GNUNET_free (key);
1035
1036     GNUNET_assert (me != NULL);
1037
1038     pkt4->udp_hdr.crc = 0;      /* Optional for IPv4 */
1039
1040     pkt4->ip_hdr.chks =
1041         calculate_ip_checksum ((uint16_t *) & pkt4->ip_hdr, 5 * 4);
1042
1043     write_to_helper (pkt4, size);
1044   }
1045
1046   return GNUNET_OK;
1047 }
1048
1049 static int
1050 receive_tcp_back (void *cls
1051                   __attribute__ ((unused)), struct GNUNET_MESH_Tunnel *tunnel,
1052                   void **tunnel_ctx
1053                   __attribute__ ((unused)),
1054                   const struct GNUNET_PeerIdentity *sender
1055                   __attribute__ ((unused)),
1056                   const struct GNUNET_MessageHeader *message,
1057                   const struct GNUNET_ATS_Information *atsi
1058                   __attribute__ ((unused)),
1059                   unsigned int atsi_count
1060                   __attribute__ ((unused)))
1061 {
1062   GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
1063   struct remote_addr *s = (struct remote_addr *) desc;
1064   struct tcp_pkt *pkt = (struct tcp_pkt *) (desc + 1);
1065   const struct GNUNET_PeerIdentity *other = GNUNET_MESH_get_peer (tunnel);
1066
1067   size_t pktlen =
1068       ntohs (message->size) - sizeof (struct GNUNET_MessageHeader) -
1069       sizeof (GNUNET_HashCode);
1070
1071   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Received TCP-Packet back, addrlen = %d\n", s->addrlen);
1072
1073   if (ntohs(message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP_BACK ||
1074       s->addrlen == 16)
1075   {
1076     size_t size = pktlen + sizeof (struct ip6_tcp) - 1;
1077
1078     struct ip6_tcp *pkt6 = alloca (size);
1079
1080     memset (pkt6, 0, size);
1081
1082     GNUNET_assert (pkt6 != NULL);
1083
1084     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP_BACK)
1085       new_ip6addr (pkt6->ip6_hdr.sadr, &other->hashPubKey, desc);
1086     else
1087       new_ip6addr_remote (pkt6->ip6_hdr.sadr, s->addr, s->addrlen);
1088
1089     pkt6->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1090     pkt6->shdr.size = htons (size);
1091
1092     pkt6->tun.flags = 0;
1093     pkt6->tun.type = htons (0x86dd);
1094
1095     pkt6->ip6_hdr.version = 6;
1096     pkt6->ip6_hdr.tclass_h = 0;
1097     pkt6->ip6_hdr.tclass_l = 0;
1098     pkt6->ip6_hdr.flowlbl = 0;
1099     pkt6->ip6_hdr.paylgth = htons (pktlen);
1100     pkt6->ip6_hdr.nxthdr = IPPROTO_TCP;
1101     pkt6->ip6_hdr.hoplmt = 0xff;
1102
1103     {
1104       char *ipv6addr;
1105
1106       GNUNET_assert (GNUNET_OK ==
1107                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
1108                                                             "IPV6ADDR",
1109                                                             &ipv6addr));
1110       inet_pton (AF_INET6, ipv6addr, pkt6->ip6_hdr.dadr);
1111       GNUNET_free (ipv6addr);
1112     }
1113     memcpy (&pkt6->tcp_hdr, pkt, pktlen);
1114
1115     GNUNET_HashCode *key = address6_mapping_exists (pkt6->ip6_hdr.sadr);
1116
1117     GNUNET_assert (key != NULL);
1118
1119     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
1120
1121     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
1122                                        GNUNET_TIME_absolute_get ().abs_value);
1123
1124     GNUNET_free (key);
1125
1126     GNUNET_assert (me != NULL);
1127     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK)
1128       GNUNET_assert (me->desc.
1129                      service_type & htonl (GNUNET_DNS_SERVICE_TYPE_TCP));
1130
1131     pkt6->tcp_hdr.crc = 0;
1132     uint32_t sum = 0;
1133     uint32_t tmp;
1134
1135     sum =
1136         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.sadr, 16);
1137     sum =
1138         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.dadr, 16);
1139     tmp = htonl (pktlen);
1140     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1141     tmp = htonl (((pkt6->ip6_hdr.nxthdr & 0x000000ff)));
1142     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1143
1144     sum =
1145         calculate_checksum_update (sum, (uint16_t *) & pkt6->tcp_hdr,
1146                                    ntohs (pkt6->ip6_hdr.paylgth));
1147     pkt6->tcp_hdr.crc = calculate_checksum_end (sum);
1148
1149     write_to_helper (pkt6, size);
1150   }
1151   else
1152   {
1153     size_t size = pktlen + sizeof (struct ip_tcp) - 1;
1154
1155     struct ip_tcp *pkt4 = alloca (size);
1156
1157     GNUNET_assert (pkt4 != NULL);
1158     memset (pkt4, 0, size);
1159
1160     GNUNET_assert (ntohs (message->type) ==
1161                    GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP_BACK);
1162     uint32_t sadr;
1163
1164     new_ip4addr_remote ((unsigned char *) &sadr, s->addr, s->addrlen);
1165     pkt4->ip_hdr.sadr = sadr;
1166
1167     pkt4->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1168     pkt4->shdr.size = htons (size);
1169
1170     pkt4->tun.flags = 0;
1171     pkt4->tun.type = htons (0x0800);
1172
1173     pkt4->ip_hdr.version = 4;
1174     pkt4->ip_hdr.hdr_lngth = 5;
1175     pkt4->ip_hdr.diff_serv = 0;
1176     pkt4->ip_hdr.tot_lngth = htons (20 + pktlen);
1177     pkt4->ip_hdr.ident = 0;
1178     pkt4->ip_hdr.flags = 0;
1179     pkt4->ip_hdr.frag_off = 0;
1180     pkt4->ip_hdr.ttl = 255;
1181     pkt4->ip_hdr.proto = IPPROTO_TCP;
1182     pkt4->ip_hdr.chks = 0;      /* Will be calculated later */
1183
1184     {
1185       char *ipv4addr;
1186       uint32_t dadr;
1187
1188       GNUNET_assert (GNUNET_OK ==
1189                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
1190                                                             "IPV4ADDR",
1191                                                             &ipv4addr));
1192       inet_pton (AF_INET, ipv4addr, &dadr);
1193       GNUNET_free (ipv4addr);
1194       pkt4->ip_hdr.dadr = dadr;
1195     }
1196
1197     memcpy (&pkt4->tcp_hdr, pkt, pktlen);
1198
1199     GNUNET_HashCode *key = address4_mapping_exists (pkt4->ip_hdr.sadr);
1200
1201     GNUNET_assert (key != NULL);
1202
1203     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
1204
1205     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
1206                                        GNUNET_TIME_absolute_get ().abs_value);
1207
1208     GNUNET_free (key);
1209
1210     GNUNET_assert (me != NULL);
1211     pkt4->tcp_hdr.crc = 0;
1212     uint32_t sum = 0;
1213     uint32_t tmp;
1214
1215     tmp = pkt4->ip_hdr.sadr;
1216     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1217     tmp = pkt4->ip_hdr.dadr;
1218     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1219
1220     tmp = (0x06 << 16) | (0xffff & pktlen); // 0x06 for TCP?
1221
1222     tmp = htonl (tmp);
1223
1224     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1225
1226     sum = calculate_checksum_update (sum, (uint16_t *) & pkt4->tcp_hdr, pktlen);
1227     pkt4->tcp_hdr.crc = calculate_checksum_end (sum);
1228
1229     pkt4->ip_hdr.chks =
1230         calculate_ip_checksum ((uint16_t *) & pkt4->ip_hdr, 5 * 4);
1231
1232     write_to_helper (pkt4, size);
1233   }
1234
1235   return GNUNET_OK;
1236 }
1237
1238 /**
1239  * Main function that will be run by the scheduler.
1240  *
1241  * @param cls closure
1242  * @param args remaining command-line arguments
1243  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
1244  * @param cfg_ configuration
1245  */
1246 static void
1247 run (void *cls, char *const *args __attribute__ ((unused)), const char *cfgfilep
1248      __attribute__ ((unused)), const struct GNUNET_CONFIGURATION_Handle *cfg_)
1249 {
1250   static const struct GNUNET_MESH_MessageHandler handlers[] = {
1251     {receive_udp_back, GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK, 0},
1252     {receive_tcp_back, GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP_BACK, 0},
1253     {receive_udp_back, GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP_BACK, 0},
1254     {receive_tcp_back, GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP_BACK, 0},
1255     {NULL, 0, 0}
1256   };
1257
1258   static const GNUNET_MESH_ApplicationType types[] = {
1259     GNUNET_APPLICATION_TYPE_END
1260   };
1261
1262   mesh_handle = GNUNET_MESH_connect (cfg_, NULL, NULL, handlers, types);
1263   cfg = cfg_;
1264   restart_hijack = 0;
1265   hashmap = GNUNET_CONTAINER_multihashmap_create (65536);
1266   heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1267   GNUNET_CONFIGURATION_get_value_number (cfg, "vpn", "MAX_MAPPINGg",
1268                                          &max_mappings);
1269   udp_connections = GNUNET_CONTAINER_multihashmap_create (65536);
1270   conn_task = GNUNET_SCHEDULER_add_now (connect_to_service_dns, NULL);
1271   shs_task =
1272       GNUNET_SCHEDULER_add_after (conn_task, start_helper_and_schedule, NULL);
1273   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
1274 }
1275
1276 /**
1277  * The main function to obtain template from gnunetd.
1278  *
1279  * @param argc number of arguments from the command line
1280  * @param argv command line arguments
1281  * @return 0 ok, 1 on error
1282  */
1283 int
1284 main (int argc, char *const *argv)
1285 {
1286   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
1287     GNUNET_GETOPT_OPTION_END
1288   };
1289
1290   return (GNUNET_OK ==
1291           GNUNET_PROGRAM_run (argc, argv, "vpn", gettext_noop ("help text"),
1292                               options, &run, NULL)) ? ret : 1;
1293 }
1294
1295 /* end of gnunet-daemon-vpn.c */