fix
[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   struct tunnel_state *ts = GNUNET_MESH_tunnel_get_data(*tunnel);
286   ts->th = NULL;
287
288   if (NULL != buf)
289     {
290       struct GNUNET_MessageHeader *hdr =
291         (struct GNUNET_MessageHeader *) (tunnel + 1);
292       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
293                   "send_pkt_to_peer_notify_callback: buf = %x; size = %u;\n", buf,
294                   size);
295       GNUNET_assert (size >= ntohs (hdr->size));
296       memcpy (buf, hdr, ntohs (hdr->size));
297       size = ntohs (hdr->size);
298       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sent!\n");
299     }
300   else
301     size = 0;
302
303   if (NULL != ts->head)
304   {
305     struct tunnel_notify_queue *element = ts->head;
306
307     GNUNET_CONTAINER_DLL_remove (ts->head, ts->tail, element);
308
309     ts->th =
310         GNUNET_MESH_notify_transmit_ready (*tunnel,
311                                            GNUNET_NO,
312                                            42,
313                                            GNUNET_TIME_relative_divide
314                                            (GNUNET_CONSTANTS_MAX_CORK_DELAY, 2),
315                                            (const struct GNUNET_PeerIdentity *)
316                                            NULL, element->len,
317                                            send_pkt_to_peer_notify_callback,
318                                            element->cls);
319
320     /* save the handle */
321     GNUNET_free (element);
322   }
323   GNUNET_free (cls);
324
325   return size;
326 }
327
328 unsigned int
329 port_in_ports (uint64_t ports, uint16_t port)
330 {
331   uint16_t *ps = (uint16_t *) & ports;
332
333   return ports == 0 || ps[0] == port || ps[1] == port || ps[2] == port || ps[3] == port;
334 }
335
336 void
337 send_pkt_to_peer (void *cls, const struct GNUNET_PeerIdentity *peer,
338                   const struct GNUNET_ATS_Information *atsi __attribute__ ((unused)))
339 {
340   /* peer == NULL means that all peers in this request are connected */
341   if (peer == NULL)
342     return;
343   struct GNUNET_MESH_Tunnel **tunnel = cls;
344   struct GNUNET_MessageHeader *hdr =
345       (struct GNUNET_MessageHeader *) (tunnel + 1);
346
347   GNUNET_assert (NULL != tunnel);
348   GNUNET_assert (NULL != *tunnel);
349
350   struct tunnel_state *ts = GNUNET_MESH_tunnel_get_data(*tunnel);
351   if (NULL == ts->th)
352   {
353     ts->th =
354         GNUNET_MESH_notify_transmit_ready (*tunnel,
355                                            GNUNET_NO,
356                                            42,
357                                            GNUNET_TIME_relative_divide
358                                            (GNUNET_CONSTANTS_MAX_CORK_DELAY, 2),
359                                            (const struct GNUNET_PeerIdentity *)
360                                            NULL,
361                                            ntohs (hdr->size),
362                                            send_pkt_to_peer_notify_callback,
363                                            cls);
364   }
365   else
366   {
367     struct tunnel_notify_queue *head = ts->head;
368     struct tunnel_notify_queue *tail = ts->tail;
369     struct tunnel_notify_queue *element = GNUNET_malloc (sizeof *element);
370
371     element->cls = cls;
372     element->len = ntohs (hdr->size);
373
374     GNUNET_CONTAINER_DLL_insert_tail (head, tail, element);
375   }
376 }
377
378 /**
379  * Create a new Address from an answer-packet
380  */
381 void
382 new_ip6addr (unsigned char *buf, const GNUNET_HashCode * peer,
383              const GNUNET_HashCode * service_desc)
384 {                               /* {{{ */
385   char *ipv6addr;
386   unsigned long long ipv6prefix;
387
388   GNUNET_assert (GNUNET_OK ==
389                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6ADDR",
390                                                         &ipv6addr));
391   GNUNET_assert (GNUNET_OK ==
392                  GNUNET_CONFIGURATION_get_value_number (cfg, "vpn",
393                                                         "IPV6PREFIX",
394                                                         &ipv6prefix));
395   GNUNET_assert (ipv6prefix < 127);
396   ipv6prefix = (ipv6prefix + 7) / 8;
397
398   inet_pton (AF_INET6, ipv6addr, buf);
399   GNUNET_free (ipv6addr);
400
401   int peer_length = 16 - ipv6prefix - 6;
402
403   if (peer_length <= 0)
404     peer_length = 0;
405
406   int service_length = 16 - ipv6prefix - peer_length;
407
408   if (service_length <= 0)
409     service_length = 0;
410
411   memcpy (buf + ipv6prefix, service_desc, service_length);
412   memcpy (buf + ipv6prefix + service_length, peer, peer_length);
413 }
414
415 /*}}}*/
416
417
418 /**
419  * Create a new Address from an answer-packet
420  */
421 void
422 new_ip6addr_remote (unsigned char *buf, unsigned char *addr, char addrlen)
423 {                               /* {{{ */
424   char *ipv6addr;
425   unsigned long long ipv6prefix;
426
427   GNUNET_assert (GNUNET_OK ==
428                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6ADDR",
429                                                         &ipv6addr));
430   GNUNET_assert (GNUNET_OK ==
431                  GNUNET_CONFIGURATION_get_value_number (cfg, "vpn",
432                                                         "IPV6PREFIX",
433                                                         &ipv6prefix));
434   GNUNET_assert (ipv6prefix < 127);
435   ipv6prefix = (ipv6prefix + 7) / 8;
436
437   inet_pton (AF_INET6, ipv6addr, buf);
438   GNUNET_free (ipv6addr);
439
440   int local_length = 16 - ipv6prefix;
441
442   memcpy (buf + ipv6prefix, addr, GNUNET_MIN (addrlen, local_length));
443 }
444
445 /*}}}*/
446
447 /**
448  * Create a new Address from an answer-packet
449  */
450 void
451 new_ip4addr_remote (unsigned char *buf, unsigned char *addr, char addrlen)
452 {                               /* {{{ */
453   char *ipv4addr;
454   char *ipv4mask;
455
456   GNUNET_assert (GNUNET_OK ==
457                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4ADDR",
458                                                         &ipv4addr));
459   GNUNET_assert (GNUNET_OK ==
460                  GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4MASK",
461                                                         &ipv4mask));
462   uint32_t mask;
463
464   inet_pton (AF_INET, ipv4addr, buf);
465   int r = inet_pton (AF_INET, ipv4mask, &mask);
466
467   mask = htonl (mask);
468   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "inet_pton: %d; %m; mask: %08x\n", r,
469               mask);
470
471   GNUNET_free (ipv4addr);
472
473   int c;
474
475   if (mask)
476   {
477     mask = (mask ^ (mask - 1)) >> 1;
478     for (c = 0; mask; c++)
479     {
480       mask >>= 1;
481     }
482   }
483   else
484   {
485     c = CHAR_BIT * sizeof (mask);
486   }
487
488   c = 32 - c;
489   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "The mask %s has %d leading 1s.\n",
490               ipv4mask, c);
491
492   GNUNET_free (ipv4mask);
493
494   if (c % 8 == 0)
495     c = c / 8;
496   else
497     GNUNET_assert (0);
498
499   memcpy (buf + c, addr, GNUNET_MIN (addrlen, 4 - c));
500 }
501
502 /*}}}*/
503
504 /**
505  * This gets scheduled with cls pointing to an answer_packet and does everything
506  * needed in order to send it to the helper.
507  *
508  * At the moment this means "inventing" and IPv6-Address for .gnunet-services and
509  * doing nothing for "real" services.
510  */
511 void
512 process_answer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
513 {
514   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
515     return;
516
517   struct answer_packet *pkt = cls;
518   struct answer_packet_list *list;
519
520   /* This answer is about a .gnunet-service
521    *
522    * It contains an almost complete DNS-Response, we have to fill in the ip
523    * at the offset pkt->addroffset
524    */
525   if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_SERVICE)
526   {
527     pkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
528
529     GNUNET_HashCode key;
530
531     memset (&key, 0, sizeof (GNUNET_HashCode));
532
533     unsigned char *c = ((unsigned char *) pkt) + ntohs (pkt->addroffset);
534     unsigned char *k = (unsigned char *) &key;
535
536     new_ip6addr (c, &pkt->service_descr.peer,
537                  &pkt->service_descr.service_descriptor);
538     /*
539      * Copy the newly generated ip-address to the key backwarts (as only the first part is hashed)
540      */
541     unsigned int i;
542
543     for (i = 0; i < 16; i++)
544       k[15 - i] = c[i];
545
546     uint16_t namelen = strlen ((char *) pkt->data + 12) + 1;
547
548     struct map_entry *value =
549         GNUNET_malloc (sizeof (struct map_entry) + namelen);
550     char *name = (char *) (value + 1);
551
552     value->namelen = namelen;
553     memcpy (name, pkt->data + 12, namelen);
554
555     memcpy (&value->desc, &pkt->service_descr,
556             sizeof (struct GNUNET_vpn_service_descriptor));
557
558     memset (value->additional_ports, 0, 8192);
559
560     memcpy (&value->hash, &key, sizeof (GNUNET_HashCode));
561
562     if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (hashmap, &key))
563     {
564       GNUNET_CONTAINER_multihashmap_put (hashmap, &key, value,
565                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
566
567       value->heap_node =
568           GNUNET_CONTAINER_heap_insert (heap, value,
569                                         GNUNET_TIME_absolute_get ().abs_value);
570       if (GNUNET_CONTAINER_heap_get_size (heap) > max_mappings)
571         GNUNET_SCHEDULER_add_now (collect_mappings, NULL);
572     }
573     else
574       GNUNET_free (value);
575
576
577     list =
578         GNUNET_malloc (htons (pkt->hdr.size) +
579                        2 * sizeof (struct answer_packet_list *));
580
581     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
582
583   }
584   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_REV)
585   {
586     GNUNET_HashCode key;
587
588     memset (&key, 0, sizeof key);
589     unsigned char *k = (unsigned char *) &key;
590     unsigned char *s = pkt->data + 12;
591     int i = 0;
592
593     /* Whoever designed the reverse IPv6-lookup is batshit insane */
594     for (i = 0; i < 16; i++)
595     {
596       unsigned char c1 = s[(4 * i) + 1];
597       unsigned char c2 = s[(4 * i) + 3];
598
599       if (c1 <= '9')
600         k[i] = c1 - '0';
601       else
602         k[i] = c1 - 87;         /* 87 is the difference between 'a' and 10 */
603       if (c2 <= '9')
604         k[i] += 16 * (c2 - '0');
605       else
606         k[i] += 16 * (c2 - 87);
607     }
608
609     struct map_entry *map_entry =
610         GNUNET_CONTAINER_multihashmap_get (hashmap, &key);
611     uint16_t offset = ntohs (pkt->addroffset);
612
613     if (map_entry == NULL)
614     {
615       GNUNET_free (pkt);
616       return;
617     }
618
619     GNUNET_CONTAINER_heap_update_cost (heap, map_entry->heap_node,
620                                        GNUNET_TIME_absolute_get ().abs_value);
621
622
623     unsigned short namelen = htons (map_entry->namelen);
624     char *name = (char *) (map_entry + 1);
625
626     list =
627         GNUNET_malloc (2 * sizeof (struct answer_packet_list *) + offset + 2 +
628                        ntohs (namelen));
629
630     struct answer_packet *rpkt = &list->pkt;
631
632     /* The offset points to the first byte belonging to the address */
633     memcpy (rpkt, pkt, offset - 1);
634
635     rpkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
636     rpkt->hdr.size = ntohs (offset + 2 + ntohs (namelen));
637
638     memcpy (((char *) rpkt) + offset, &namelen, 2);
639     memcpy (((char *) rpkt) + offset + 2, name, ntohs (namelen));
640
641   }
642   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_IP)
643   {
644     list =
645         GNUNET_malloc (htons (pkt->hdr.size) +
646                        2 * sizeof (struct answer_packet_list *));
647     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
648   }
649   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_REMOTE_AAAA)
650   {
651     pkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
652
653     GNUNET_HashCode key;
654
655     memset (&key, 0, sizeof (GNUNET_HashCode));
656
657     unsigned char *c = ((unsigned char *) pkt) + ntohs (pkt->addroffset);
658
659     new_ip6addr_remote (c, pkt->addr, pkt->addrsize);
660     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
661                 "New mapping to %02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x\n",
662                 c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7], c[8], c[9],
663                 c[10], c[11], c[12], c[13], c[14], c[15]);
664     unsigned char *k = (unsigned char *) &key;
665
666     /*
667      * Copy the newly generated ip-address to the key backwards (as only the first part is used in the hash-table)
668      */
669     unsigned int i;
670
671     for (i = 0; i < 16; i++)
672       k[15 - i] = c[i];
673
674     uint16_t namelen = strlen ((char *) pkt->data + 12) + 1;
675
676     struct map_entry *value =
677         GNUNET_malloc (sizeof (struct map_entry) + namelen);
678     char *name = (char *) (value + 1);
679
680     value->namelen = namelen;
681     memcpy (name, pkt->data + 12, namelen);
682
683     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting addrlen to %d\n",
684                 pkt->addrsize);
685     value->addrlen = pkt->addrsize;
686     memcpy (&value->addr, &pkt->addr, pkt->addrsize);
687     memset (value->additional_ports, 0, 8192);
688
689     memcpy (&value->hash, &key, sizeof (GNUNET_HashCode));
690
691     if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (hashmap, &key))
692     {
693       GNUNET_CONTAINER_multihashmap_put (hashmap, &key, value,
694                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
695       value->heap_node =
696           GNUNET_CONTAINER_heap_insert (heap, value,
697                                         GNUNET_TIME_absolute_get ().abs_value);
698       if (GNUNET_CONTAINER_heap_get_size (heap) > max_mappings)
699         GNUNET_SCHEDULER_add_now (collect_mappings, NULL);
700     }
701     else
702       GNUNET_free (value);
703
704     list =
705         GNUNET_malloc (htons (pkt->hdr.size) +
706                        2 * sizeof (struct answer_packet_list *));
707
708     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
709   }
710   else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_REMOTE_A)
711   {
712     pkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
713
714     GNUNET_HashCode key;
715
716     memset (&key, 0, sizeof (GNUNET_HashCode));
717
718     unsigned char *c = ((unsigned char *) pkt) + ntohs (pkt->addroffset);
719
720     new_ip4addr_remote (c, pkt->addr, pkt->addrsize);
721     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "New mapping to %d.%d.%d.%d\n", c[0],
722                 c[1], c[2], c[3]);
723     unsigned char *k = (unsigned char *) &key;
724
725     /*
726      * Copy the newly generated ip-address to the key backwards (as only the first part is used in the hash-table)
727      */
728     unsigned int i;
729
730     for (i = 0; i < 4; i++)
731       k[3 - i] = c[i];
732
733     uint16_t namelen = strlen ((char *) pkt->data + 12) + 1;
734
735     struct map_entry *value =
736         GNUNET_malloc (sizeof (struct map_entry) + namelen);
737     char *name = (char *) (value + 1);
738
739     value->namelen = namelen;
740     memcpy (name, pkt->data + 12, namelen);
741
742     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting addrlen to %d\n",
743                 pkt->addrsize);
744     value->addrlen = pkt->addrsize;
745     memcpy (&value->addr, &pkt->addr, pkt->addrsize);
746     memset (value->additional_ports, 0, 8192);
747
748     memcpy (&value->hash, &key, sizeof (GNUNET_HashCode));
749
750     if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (hashmap, &key))
751     {
752       GNUNET_CONTAINER_multihashmap_put (hashmap, &key, value,
753                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
754       value->heap_node =
755           GNUNET_CONTAINER_heap_insert (heap, value,
756                                         GNUNET_TIME_absolute_get ().abs_value);
757       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
758                   "Mapping is saved in the hashmap with key %08x.\n",
759                   *((uint32_t *) (&key)));
760       if (GNUNET_CONTAINER_heap_get_size (heap) > max_mappings)
761         GNUNET_SCHEDULER_add_now (collect_mappings, NULL);
762     }
763     else
764       GNUNET_free (value);
765
766     list =
767         GNUNET_malloc (htons (pkt->hdr.size) +
768                        2 * sizeof (struct answer_packet_list *));
769
770     memcpy (&list->pkt, pkt, htons (pkt->hdr.size));
771   }
772   else
773   {
774     GNUNET_break (0);
775     GNUNET_free (pkt);
776     return;
777   }
778
779   GNUNET_free (pkt);
780
781   GNUNET_CONTAINER_DLL_insert_after (answer_proc_head, answer_proc_tail,
782                                      answer_proc_tail, list);
783
784   schedule_helper_write (GNUNET_TIME_UNIT_FOREVER_REL, NULL);
785
786   return;
787 }
788
789 /**
790  * Sets a bit active in a bitArray.
791  *
792  * @param bitArray memory area to set the bit in
793  * @param bitIdx which bit to set
794  */
795 void
796 setBit (char *bitArray, unsigned int bitIdx)
797 {
798   size_t arraySlot;
799   unsigned int targetBit;
800
801   arraySlot = bitIdx / 8;
802   targetBit = (1L << (bitIdx % 8));
803   bitArray[arraySlot] |= targetBit;
804 }
805
806 /**
807  * Clears a bit from bitArray.
808  *
809  * @param bitArray memory area to set the bit in
810  * @param bitIdx which bit to unset
811  */
812 void
813 clearBit (char *bitArray, unsigned int bitIdx)
814 {
815   size_t slot;
816   unsigned int targetBit;
817
818   slot = bitIdx / 8;
819   targetBit = (1L << (bitIdx % 8));
820   bitArray[slot] = bitArray[slot] & (~targetBit);
821 }
822
823 /**
824  * Checks if a bit is active in the bitArray
825  *
826  * @param bitArray memory area to set the bit in
827  * @param bitIdx which bit to test
828  * @return GNUNET_YES if the bit is set, GNUNET_NO if not.
829  */
830 int
831 testBit (char *bitArray, unsigned int bitIdx)
832 {
833   size_t slot;
834   unsigned int targetBit;
835
836   slot = bitIdx / 8;
837   targetBit = (1L << (bitIdx % 8));
838   if (bitArray[slot] & targetBit)
839     return GNUNET_YES;
840   else
841     return GNUNET_NO;
842 }
843
844 /**
845  * @brief Add the port to the list of additional ports in the map_entry
846  *
847  * @param me the map_entry
848  * @param port the port in host-byte-order
849  */
850 static void
851 add_additional_port (struct map_entry *me, uint16_t port)
852 {
853   setBit (me->additional_ports, port);
854 }
855
856 static int
857 receive_udp_back (void *cls __attribute__ ((unused)),
858                   struct GNUNET_MESH_Tunnel *tunnel,
859                   void **tunnel_ctx,
860                   const struct GNUNET_PeerIdentity *sender,
861                   const struct GNUNET_MessageHeader *message,
862                   const struct GNUNET_ATS_Information *atsi __attribute__ ((unused)))
863 {
864   GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
865   struct remote_addr *s = (struct remote_addr *) desc;
866   struct udp_pkt *pkt = (struct udp_pkt *) (desc + 1);
867   const struct GNUNET_PeerIdentity *other = sender;
868   struct tunnel_state *ts = *tunnel_ctx;
869
870   if (16 == ts->addrlen)
871   {
872     size_t size =
873         sizeof (struct ip6_udp) + ntohs (pkt->len) - 1 -
874         sizeof (struct udp_pkt);
875
876     struct ip6_udp *pkt6 = alloca (size);
877
878     GNUNET_assert (pkt6 != NULL);
879
880     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK)
881       new_ip6addr (pkt6->ip6_hdr.sadr, &other->hashPubKey, desc);
882     else
883       new_ip6addr_remote (pkt6->ip6_hdr.sadr, s->addr, s->addrlen);
884
885     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
886                 "Relaying calc:%d gnu:%d udp:%d bytes!\n", size,
887                 ntohs (message->size), ntohs (pkt->len));
888
889     pkt6->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
890     pkt6->shdr.size = htons (size);
891
892     pkt6->tun.flags = 0;
893     pkt6->tun.type = htons (0x86dd);
894
895     pkt6->ip6_hdr.version = 6;
896     pkt6->ip6_hdr.tclass_h = 0;
897     pkt6->ip6_hdr.tclass_l = 0;
898     pkt6->ip6_hdr.flowlbl = 0;
899     pkt6->ip6_hdr.paylgth = pkt->len;
900     pkt6->ip6_hdr.nxthdr = IPPROTO_UDP;
901     pkt6->ip6_hdr.hoplmt = 0xff;
902
903     {
904       char *ipv6addr;
905
906       GNUNET_assert (GNUNET_OK ==
907                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
908                                                             "IPV6ADDR",
909                                                             &ipv6addr));
910       inet_pton (AF_INET6, ipv6addr, pkt6->ip6_hdr.dadr);
911       GNUNET_free (ipv6addr);
912     }
913     memcpy (&pkt6->udp_hdr, pkt, ntohs (pkt->len));
914
915     GNUNET_HashCode *key = address6_mapping_exists (pkt6->ip6_hdr.sadr);
916
917     GNUNET_assert (key != NULL);
918
919     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
920
921     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
922                                        GNUNET_TIME_absolute_get ().abs_value);
923
924     GNUNET_free (key);
925
926     GNUNET_assert (me != NULL);
927     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK)
928     {
929       GNUNET_assert (me->desc.
930                      service_type & htonl (GNUNET_DNS_SERVICE_TYPE_UDP));
931       if (!port_in_ports (me->desc.ports, pkt6->udp_hdr.spt) &&
932           !testBit (me->additional_ports, ntohs (pkt6->udp_hdr.spt)))
933       {
934         add_additional_port (me, ntohs (pkt6->udp_hdr.spt));
935       }
936     }
937
938     pkt6->udp_hdr.crc = 0;
939     uint32_t sum = 0;
940
941     sum =
942         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.sadr, 16);
943     sum =
944         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.dadr, 16);
945     uint32_t tmp = (pkt6->udp_hdr.len & 0xffff);
946
947     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
948     tmp = htons (((pkt6->ip6_hdr.nxthdr & 0x00ff)));
949     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
950
951     sum =
952         calculate_checksum_update (sum, (uint16_t *) & pkt6->udp_hdr,
953                                    ntohs (pkt->len));
954     pkt6->udp_hdr.crc = calculate_checksum_end (sum);
955
956     write_to_helper (pkt6, size);
957   }
958   else
959   {
960     size_t size =
961         sizeof (struct ip_udp) + ntohs (pkt->len) - 1 - sizeof (struct udp_pkt);
962
963     struct ip_udp *pkt4 = alloca (size);
964
965     GNUNET_assert (pkt4 != NULL);
966
967     GNUNET_assert (ntohs (message->type) ==
968                    GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP_BACK);
969     uint32_t sadr;
970
971     new_ip4addr_remote ((unsigned char *) &sadr, s->addr, s->addrlen);
972     pkt4->ip_hdr.sadr = sadr;
973
974     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
975                 "Relaying calc:%d gnu:%d udp:%d bytes!\n", size,
976                 ntohs (message->size), ntohs (pkt->len));
977
978     pkt4->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
979     pkt4->shdr.size = htons (size);
980
981     pkt4->tun.flags = 0;
982     pkt4->tun.type = htons (0x0800);
983
984     pkt4->ip_hdr.version = 4;
985     pkt4->ip_hdr.hdr_lngth = 5;
986     pkt4->ip_hdr.diff_serv = 0;
987     pkt4->ip_hdr.tot_lngth = htons (20 + ntohs (pkt->len));
988     pkt4->ip_hdr.ident = 0;
989     pkt4->ip_hdr.flags = 0;
990     pkt4->ip_hdr.frag_off = 0;
991     pkt4->ip_hdr.ttl = 255;
992     pkt4->ip_hdr.proto = IPPROTO_UDP;
993     pkt4->ip_hdr.chks = 0;      /* Will be calculated later */
994
995     {
996       char *ipv4addr;
997       uint32_t dadr;
998
999       GNUNET_assert (GNUNET_OK ==
1000                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
1001                                                             "IPV4ADDR",
1002                                                             &ipv4addr));
1003       inet_pton (AF_INET, ipv4addr, &dadr);
1004       GNUNET_free (ipv4addr);
1005       pkt4->ip_hdr.dadr = dadr;
1006     }
1007     memcpy (&pkt4->udp_hdr, pkt, ntohs (pkt->len));
1008
1009     GNUNET_HashCode *key = address4_mapping_exists (pkt4->ip_hdr.sadr);
1010
1011     GNUNET_assert (key != NULL);
1012
1013     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
1014
1015     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
1016                                        GNUNET_TIME_absolute_get ().abs_value);
1017
1018     GNUNET_free (key);
1019
1020     GNUNET_assert (me != NULL);
1021
1022     pkt4->udp_hdr.crc = 0;      /* Optional for IPv4 */
1023
1024     pkt4->ip_hdr.chks =
1025         calculate_ip_checksum ((uint16_t *) & pkt4->ip_hdr, 5 * 4);
1026
1027     write_to_helper (pkt4, size);
1028   }
1029
1030   return GNUNET_OK;
1031 }
1032
1033 static int
1034 receive_tcp_back (void *cls __attribute__ ((unused)),
1035                   struct GNUNET_MESH_Tunnel *tunnel,
1036                   void **tunnel_ctx,
1037                   const struct GNUNET_PeerIdentity *sender __attribute__ ((unused)),
1038                   const struct GNUNET_MessageHeader *message,
1039                   const struct GNUNET_ATS_Information *atsi __attribute__ ((unused)))
1040 {
1041   GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
1042   struct remote_addr *s = (struct remote_addr *) desc;
1043   struct tcp_pkt *pkt = (struct tcp_pkt *) (desc + 1);
1044   const struct GNUNET_PeerIdentity *other = sender;
1045   struct tunnel_state *ts = *tunnel_ctx;
1046
1047   size_t pktlen =
1048       ntohs (message->size) - sizeof (struct GNUNET_MessageHeader) -
1049       sizeof (GNUNET_HashCode);
1050
1051   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Received TCP-Packet back, addrlen = %d\n", s->addrlen);
1052
1053   if (ntohs(message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP_BACK ||
1054       ts->addrlen == 16)
1055   {
1056     size_t size = pktlen + sizeof (struct ip6_tcp) - 1;
1057
1058     struct ip6_tcp *pkt6 = alloca (size);
1059
1060     memset (pkt6, 0, size);
1061
1062     GNUNET_assert (pkt6 != NULL);
1063
1064     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP_BACK)
1065       new_ip6addr (pkt6->ip6_hdr.sadr, &other->hashPubKey, desc);
1066     else
1067       new_ip6addr_remote (pkt6->ip6_hdr.sadr, s->addr, s->addrlen);
1068
1069     pkt6->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1070     pkt6->shdr.size = htons (size);
1071
1072     pkt6->tun.flags = 0;
1073     pkt6->tun.type = htons (0x86dd);
1074
1075     pkt6->ip6_hdr.version = 6;
1076     pkt6->ip6_hdr.tclass_h = 0;
1077     pkt6->ip6_hdr.tclass_l = 0;
1078     pkt6->ip6_hdr.flowlbl = 0;
1079     pkt6->ip6_hdr.paylgth = htons (pktlen);
1080     pkt6->ip6_hdr.nxthdr = IPPROTO_TCP;
1081     pkt6->ip6_hdr.hoplmt = 0xff;
1082
1083     {
1084       char *ipv6addr;
1085
1086       GNUNET_assert (GNUNET_OK ==
1087                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
1088                                                             "IPV6ADDR",
1089                                                             &ipv6addr));
1090       inet_pton (AF_INET6, ipv6addr, pkt6->ip6_hdr.dadr);
1091       GNUNET_free (ipv6addr);
1092     }
1093     memcpy (&pkt6->tcp_hdr, pkt, pktlen);
1094
1095     GNUNET_HashCode *key = address6_mapping_exists (pkt6->ip6_hdr.sadr);
1096
1097     GNUNET_assert (key != NULL);
1098
1099     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
1100
1101     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
1102                                        GNUNET_TIME_absolute_get ().abs_value);
1103
1104     GNUNET_free (key);
1105
1106     GNUNET_assert (me != NULL);
1107     if (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK)
1108       GNUNET_assert (me->desc.
1109                      service_type & htonl (GNUNET_DNS_SERVICE_TYPE_TCP));
1110
1111     pkt6->tcp_hdr.crc = 0;
1112     uint32_t sum = 0;
1113     uint32_t tmp;
1114
1115     sum =
1116         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.sadr, 16);
1117     sum =
1118         calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.dadr, 16);
1119     tmp = htonl (pktlen);
1120     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1121     tmp = htonl (((pkt6->ip6_hdr.nxthdr & 0x000000ff)));
1122     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1123
1124     sum =
1125         calculate_checksum_update (sum, (uint16_t *) & pkt6->tcp_hdr,
1126                                    ntohs (pkt6->ip6_hdr.paylgth));
1127     pkt6->tcp_hdr.crc = calculate_checksum_end (sum);
1128
1129     write_to_helper (pkt6, size);
1130   }
1131   else
1132   {
1133     size_t size = pktlen + sizeof (struct ip_tcp) - 1;
1134
1135     struct ip_tcp *pkt4 = alloca (size);
1136
1137     GNUNET_assert (pkt4 != NULL);
1138     memset (pkt4, 0, size);
1139
1140     GNUNET_assert (ntohs (message->type) ==
1141                    GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP_BACK);
1142     uint32_t sadr;
1143
1144     new_ip4addr_remote ((unsigned char *) &sadr, s->addr, s->addrlen);
1145     pkt4->ip_hdr.sadr = sadr;
1146
1147     pkt4->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1148     pkt4->shdr.size = htons (size);
1149
1150     pkt4->tun.flags = 0;
1151     pkt4->tun.type = htons (0x0800);
1152
1153     pkt4->ip_hdr.version = 4;
1154     pkt4->ip_hdr.hdr_lngth = 5;
1155     pkt4->ip_hdr.diff_serv = 0;
1156     pkt4->ip_hdr.tot_lngth = htons (20 + pktlen);
1157     pkt4->ip_hdr.ident = 0;
1158     pkt4->ip_hdr.flags = 0;
1159     pkt4->ip_hdr.frag_off = 0;
1160     pkt4->ip_hdr.ttl = 255;
1161     pkt4->ip_hdr.proto = IPPROTO_TCP;
1162     pkt4->ip_hdr.chks = 0;      /* Will be calculated later */
1163
1164     {
1165       char *ipv4addr;
1166       uint32_t dadr;
1167
1168       GNUNET_assert (GNUNET_OK ==
1169                      GNUNET_CONFIGURATION_get_value_string (cfg, "vpn",
1170                                                             "IPV4ADDR",
1171                                                             &ipv4addr));
1172       inet_pton (AF_INET, ipv4addr, &dadr);
1173       GNUNET_free (ipv4addr);
1174       pkt4->ip_hdr.dadr = dadr;
1175     }
1176
1177     memcpy (&pkt4->tcp_hdr, pkt, pktlen);
1178
1179     GNUNET_HashCode *key = address4_mapping_exists (pkt4->ip_hdr.sadr);
1180
1181     GNUNET_assert (key != NULL);
1182
1183     struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
1184
1185     GNUNET_CONTAINER_heap_update_cost (heap, me->heap_node,
1186                                        GNUNET_TIME_absolute_get ().abs_value);
1187
1188     GNUNET_free (key);
1189
1190     GNUNET_assert (me != NULL);
1191     pkt4->tcp_hdr.crc = 0;
1192     uint32_t sum = 0;
1193     uint32_t tmp;
1194
1195     tmp = pkt4->ip_hdr.sadr;
1196     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1197     tmp = pkt4->ip_hdr.dadr;
1198     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1199
1200     tmp = (0x06 << 16) | (0xffff & pktlen); // 0x06 for TCP?
1201
1202     tmp = htonl (tmp);
1203
1204     sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
1205
1206     sum = calculate_checksum_update (sum, (uint16_t *) & pkt4->tcp_hdr, pktlen);
1207     pkt4->tcp_hdr.crc = calculate_checksum_end (sum);
1208
1209     pkt4->ip_hdr.chks =
1210         calculate_ip_checksum ((uint16_t *) & pkt4->ip_hdr, 5 * 4);
1211
1212     write_to_helper (pkt4, size);
1213   }
1214
1215   return GNUNET_OK;
1216 }
1217
1218 static void* new_tunnel(void* cls,
1219                         struct GNUNET_MESH_Tunnel *tunnel,
1220                         const struct GNUNET_PeerIdentity *initiator,
1221                         const struct GNUNET_ATS_Information *atsi)
1222 {
1223   /* Why should anyone open an inbound tunnel to vpn? */
1224   GNUNET_break(0);
1225   return NULL;
1226 }
1227
1228 static void cleaner(void *cls,
1229                     const struct GNUNET_MESH_Tunnel *tunnel,
1230                     void *tunnel_ctx)
1231 {
1232   /* Why should anyone open an inbound tunnel to vpn? */
1233   GNUNET_break(0);
1234 }
1235
1236 /**
1237  * Main function that will be run by the scheduler.
1238  *
1239  * @param cls closure
1240  * @param args remaining command-line arguments
1241  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
1242  * @param cfg_ configuration
1243  */
1244 static void
1245 run (void *cls, char *const *args __attribute__ ((unused)), const char *cfgfilep
1246      __attribute__ ((unused)), const struct GNUNET_CONFIGURATION_Handle *cfg_)
1247 {
1248   static const struct GNUNET_MESH_MessageHandler handlers[] = {
1249     {receive_udp_back, GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP_BACK, 0},
1250     {receive_tcp_back, GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP_BACK, 0},
1251     {receive_udp_back, GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP_BACK, 0},
1252     {receive_tcp_back, GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP_BACK, 0},
1253     {NULL, 0, 0}
1254   };
1255
1256   static const GNUNET_MESH_ApplicationType types[] = {
1257     GNUNET_APPLICATION_TYPE_END
1258   };
1259
1260   mesh_handle = GNUNET_MESH_connect (cfg_, 42, NULL, new_tunnel, cleaner, handlers, types);
1261   cfg = cfg_;
1262   restart_hijack = 0;
1263   hashmap = GNUNET_CONTAINER_multihashmap_create (65536);
1264   heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1265   GNUNET_CONFIGURATION_get_value_number (cfg, "vpn", "MAX_MAPPINGg",
1266                                          &max_mappings);
1267   udp_connections = GNUNET_CONTAINER_multihashmap_create (65536);
1268   conn_task = GNUNET_SCHEDULER_add_now (connect_to_service_dns, NULL);
1269   shs_task =
1270       GNUNET_SCHEDULER_add_after (conn_task, start_helper_and_schedule, NULL);
1271   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
1272 }
1273
1274 /**
1275  * The main function to obtain template from gnunetd.
1276  *
1277  * @param argc number of arguments from the command line
1278  * @param argv command line arguments
1279  * @return 0 ok, 1 on error
1280  */
1281 int
1282 main (int argc, char *const *argv)
1283 {
1284   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
1285     GNUNET_GETOPT_OPTION_END
1286   };
1287
1288   return (GNUNET_OK ==
1289           GNUNET_PROGRAM_run (argc, argv, "vpn", gettext_noop ("help text"),
1290                               options, &run, NULL)) ? ret : 1;
1291 }
1292
1293 /* end of gnunet-daemon-vpn.c */