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