add TODO
[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_mesh_service.h>
33 #include "gnunet_client_lib.h"
34 #include "gnunet_container_lib.h"
35 #include "gnunet_constants.h"
36 #include <block_dns.h>
37 #include "gnunet-daemon-vpn-helper.h"
38 #include "gnunet-daemon-vpn-dns.h"
39 #include "gnunet-daemon-vpn.h"
40 #include "gnunet-vpn-checksum.h"
41
42 const struct GNUNET_CONFIGURATION_Handle *cfg;
43 struct GNUNET_MESH_Handle *mesh_handle;
44 struct GNUNET_CONTAINER_MultiHashMap* hashmap;
45
46 /**
47  * Final status code.
48  */
49 static int ret;
50
51 /**
52  * This hashmap contains the mapping from peer, service-descriptor,
53  * source-port and destination-port to a socket
54  */
55 static struct GNUNET_CONTAINER_MultiHashMap *udp_connections;
56
57 /**
58  * Function scheduled as very last function, cleans up after us
59  *{{{
60  */
61 static void
62 cleanup(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tskctx) {
63     GNUNET_assert (0 != (tskctx->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN));
64
65     /* stop the helper */
66     cleanup_helper(helper_handle);
67
68     /* close the connection to the service-dns */
69     if (dns_connection != NULL)
70       {
71         GNUNET_CLIENT_disconnect (dns_connection, GNUNET_NO);
72         dns_connection = NULL;
73       }
74
75     if (mesh_handle != NULL)
76       {
77         GNUNET_MESH_disconnect(mesh_handle);
78         mesh_handle = NULL;
79       }
80 }
81 /*}}}*/
82
83 /**
84  * @return the hash of the IP-Address if a mapping exists, NULL otherwise
85  */
86 GNUNET_HashCode*
87 address_mapping_exists(unsigned char addr[]) {
88     GNUNET_HashCode* key = GNUNET_malloc(sizeof(GNUNET_HashCode));
89     unsigned char* k = (unsigned char*)key;
90     memset(key, 0, sizeof(GNUNET_HashCode));
91     unsigned int i;
92     for (i = 0; i < 16; i++)
93         k[15-i] = addr[i];
94
95     if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains(hashmap, key))
96       return key;
97     else
98       {
99         GNUNET_free(key);
100         return NULL;
101       }
102 }
103
104 void
105 send_icmp_response(void* cls, const struct GNUNET_SCHEDULER_TaskContext *tc) {
106     struct ip6_icmp* request = cls;
107
108     struct ip6_icmp* response = alloca(ntohs(request->shdr.size));
109     GNUNET_assert(response != NULL);
110     memset(response, 0, ntohs(request->shdr.size));
111
112     response->shdr.size = request->shdr.size;
113     response->shdr.type = htons(GNUNET_MESSAGE_TYPE_VPN_HELPER);
114
115     response->tun.flags = 0;
116     response->tun.type = htons(0x86dd);
117
118     response->ip6_hdr.hoplmt = 255;
119     response->ip6_hdr.paylgth = request->ip6_hdr.paylgth;
120     response->ip6_hdr.nxthdr = 0x3a;
121     response->ip6_hdr.version = 6;
122     memcpy(&response->ip6_hdr.sadr, &request->ip6_hdr.dadr, 16);
123     memcpy(&response->ip6_hdr.dadr, &request->ip6_hdr.sadr, 16);
124
125     response->icmp_hdr.code = 0;
126     response->icmp_hdr.type = 0x81;
127
128     /* Magic, more Magic! */
129     response->icmp_hdr.chks = request->icmp_hdr.chks - 0x1;
130
131     /* Copy the rest of the packet */
132     memcpy(response+1, request+1, ntohs(request->shdr.size) - sizeof(struct ip6_icmp));
133
134     write_to_helper(response, ntohs(response->shdr.size));
135
136     GNUNET_free(request);
137 }
138
139 /**
140  * cls is the pointer to a GNUNET_MessageHeader that is
141  * followed by the service-descriptor and the packet that should be sent;
142  */
143 static size_t
144 send_pkt_to_peer_notify_callback (void *cls, size_t size, void *buf)
145 {
146   struct GNUNET_MESH_Tunnel **tunnel = cls;
147   struct GNUNET_MessageHeader *hdr =
148     (struct GNUNET_MessageHeader *) (tunnel + 1);
149   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "send_pkt_to_peer_notify_callback: buf = %x; size = %u;\n", buf, size);
150   GNUNET_assert (size >= ntohs (hdr->size));
151   memcpy (buf, hdr, ntohs (hdr->size));
152   size = ntohs(hdr->size);
153   GNUNET_free (cls);
154   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sent!\n");
155   return size;
156 }
157
158 unsigned int
159 port_in_ports (uint64_t ports, uint16_t port)
160 {
161   uint16_t *ps = (uint16_t *) & ports;
162   return ps[0] == port || ps[1] == port || ps[2] == port || ps[3] == port;
163 }
164
165 void
166 send_pkt_to_peer (void *cls, 
167                   const struct GNUNET_PeerIdentity *peer,
168                   const struct GNUNET_TRANSPORT_ATS_Information *atsi)
169 {
170   if (peer == NULL) return;
171   struct GNUNET_MESH_Tunnel **tunnel = cls;
172   struct GNUNET_MessageHeader *hdr =
173     (struct GNUNET_MessageHeader *) (tunnel + 1);
174   GNUNET_MESH_notify_transmit_ready (*tunnel,
175                                      GNUNET_NO,
176                                      42,
177                                      GNUNET_TIME_relative_divide(GNUNET_CONSTANTS_MAX_CORK_DELAY, 2),
178                                      (const struct GNUNET_PeerIdentity *)NULL,
179                                      ntohs(hdr->size),
180                                      send_pkt_to_peer_notify_callback,
181                                      cls);
182 }
183
184 /**
185  * Create a new Address from an answer-packet
186  */
187 void
188 new_ip6addr(unsigned char* buf, const GNUNET_HashCode *peer, const GNUNET_HashCode *service_desc) { /* {{{ */
189     char* ipv6addr;
190     unsigned long long ipv6prefix;
191     GNUNET_assert(GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "vpn", "IPV6ADDR", &ipv6addr));
192     GNUNET_assert(GNUNET_OK == GNUNET_CONFIGURATION_get_value_number(cfg, "vpn", "IPV6PREFIX", &ipv6prefix));
193     GNUNET_assert(ipv6prefix < 127);
194     ipv6prefix = (ipv6prefix + 7)/8;
195
196     inet_pton (AF_INET6, ipv6addr, buf);
197     GNUNET_free(ipv6addr);
198
199     int peer_length = 16 - ipv6prefix - 6;
200     if (peer_length <= 0)
201       peer_length = 0;
202
203     int service_length = 16 - ipv6prefix - peer_length;
204     if (service_length <= 0)
205       service_length = 0;
206
207     memcpy(buf+ipv6prefix, service_desc, service_length);
208     memcpy(buf+ipv6prefix+service_length, peer, peer_length);
209 }
210 /*}}}*/
211
212 /**
213  * This gets scheduled with cls pointing to an answer_packet and does everything
214  * needed in order to send it to the helper.
215  *
216  * At the moment this means "inventing" and IPv6-Address for .gnunet-services and
217  * doing nothing for "real" services.
218  */
219 void
220 process_answer(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tc) {
221     struct answer_packet* pkt = cls;
222     struct answer_packet_list* list;
223
224     /* This answer is about a .gnunet-service
225      *
226      * It contains an almost complete DNS-Response, we have to fill in the ip
227      * at the offset pkt->addroffset
228      */
229     if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_SERVICE)
230       {
231         pkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
232
233         GNUNET_HashCode key;
234         memset(&key, 0, sizeof(GNUNET_HashCode));
235
236         unsigned char* c = ((unsigned char*)pkt)+ntohs(pkt->addroffset);
237         unsigned char* k = (unsigned char*)&key;
238         new_ip6addr(c, &pkt->service_descr.peer, &pkt->service_descr.service_descriptor);
239         /*
240          * Copy the newly generated ip-address to the key backwarts (as only the first part is hashed)
241          */
242         unsigned int i;
243         for (i = 0; i < 16; i++)
244             k[15-i] = c[i];
245
246         uint16_t namelen = strlen((char*)pkt->data+12)+1;
247
248         struct map_entry* value = GNUNET_malloc(sizeof(struct map_entry) + namelen);
249         char* name = (char*)(value +1);
250
251         value->namelen = namelen;
252         memcpy(name, pkt->data+12, namelen);
253
254         memcpy(&value->desc, &pkt->service_descr, sizeof(struct GNUNET_vpn_service_descriptor));
255
256         memset(value->additional_ports, 0, 8192);
257
258         /* FIXME save this to heap, too */
259         if (GNUNET_NO ==
260             GNUNET_CONTAINER_multihashmap_contains (hashmap, &key))
261           GNUNET_CONTAINER_multihashmap_put (hashmap, &key, value,
262                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
263         else
264           GNUNET_free(value);
265
266
267         list = GNUNET_malloc(htons(pkt->hdr.size) + 2*sizeof(struct answer_packet_list*));
268
269         memcpy(&list->pkt, pkt, htons(pkt->hdr.size));
270
271       }
272     else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_REV)
273       {
274         GNUNET_HashCode key;
275         memset(&key, 0, sizeof key);
276         unsigned char* k = (unsigned char*)&key;
277         unsigned char* s = pkt->data+12;
278         int i = 0;
279         /* Whoever designed the reverse IPv6-lookup is batshit insane */
280         for (i = 0; i < 16; i++)
281           {
282             unsigned char c1 = s[(4*i)+1];
283             unsigned char c2 = s[(4*i)+3];
284             if (c1 <= '9')
285               k[i] = c1 - '0';
286             else
287               k[i] = c1 - 87; /* 87 is the difference between 'a' and 10 */
288             if (c2 <= '9')
289               k[i] += 16*(c2 - '0');
290             else
291               k[i] += 16*(c2 - 87);
292           }
293
294         /* FIXME: update costs in heap */
295         struct map_entry* map_entry = GNUNET_CONTAINER_multihashmap_get(hashmap, &key);
296         uint16_t offset = ntohs(pkt->addroffset);
297
298         if (map_entry == NULL)
299           {
300             GNUNET_free(pkt);
301             return;
302           }
303
304         unsigned short namelen = htons(map_entry->namelen);
305         char* name = (char*)(map_entry + 1);
306
307         list = GNUNET_malloc(2*sizeof(struct answer_packet_list*) + offset + 2 + ntohs(namelen));
308
309         struct answer_packet* rpkt = &list->pkt;
310
311         /* The offset points to the first byte belonging to the address */
312         memcpy(rpkt, pkt, offset - 1);
313
314         rpkt->subtype = GNUNET_DNS_ANSWER_TYPE_IP;
315         rpkt->hdr.size = ntohs(offset + 2 + ntohs(namelen));
316
317         memcpy(((char*)rpkt)+offset, &namelen, 2);
318         memcpy(((char*)rpkt)+offset+2, name, ntohs(namelen));
319
320       }
321     else if (pkt->subtype == GNUNET_DNS_ANSWER_TYPE_IP)
322       {
323         list = GNUNET_malloc(htons(pkt->hdr.size) + 2*sizeof(struct answer_packet_list*));
324         memcpy(&list->pkt, pkt, htons(pkt->hdr.size));
325       }
326     else
327       {
328         GNUNET_break(0);
329         GNUNET_free(pkt);
330         return;
331       }
332
333     GNUNET_free(pkt);
334
335     GNUNET_CONTAINER_DLL_insert_after(answer_proc_head, answer_proc_tail, answer_proc_tail, list);
336
337     schedule_helper_write(GNUNET_TIME_UNIT_FOREVER_REL, NULL);
338
339     return;
340 }
341
342 /**
343  * Sets a bit active in a bitArray.
344  *
345  * @param bitArray memory area to set the bit in
346  * @param bitIdx which bit to set
347  */
348 void
349 setBit (char *bitArray, unsigned int bitIdx)
350 {
351   size_t arraySlot;
352   unsigned int targetBit;
353
354   arraySlot = bitIdx / 8;
355   targetBit = (1L << (bitIdx % 8));
356   bitArray[arraySlot] |= targetBit;
357 }
358
359 /**
360  * Clears a bit from bitArray.
361  *
362  * @param bitArray memory area to set the bit in
363  * @param bitIdx which bit to unset
364  */
365 void
366 clearBit (char *bitArray, unsigned int bitIdx)
367 {
368   size_t slot;
369   unsigned int targetBit;
370
371   slot = bitIdx / 8;
372   targetBit = (1L << (bitIdx % 8));
373   bitArray[slot] = bitArray[slot] & (~targetBit);
374 }
375
376 /**
377  * Checks if a bit is active in the bitArray
378  *
379  * @param bitArray memory area to set the bit in
380  * @param bitIdx which bit to test
381  * @return GNUNET_YES if the bit is set, GNUNET_NO if not.
382  */
383 int
384 testBit (char *bitArray, unsigned int bitIdx)
385 {
386   size_t slot;
387   unsigned int targetBit;
388
389   slot = bitIdx / 8;
390   targetBit = (1L << (bitIdx % 8));
391   if (bitArray[slot] & targetBit)
392     return GNUNET_YES;
393   else
394     return GNUNET_NO;
395 }
396
397 /**
398  * @brief Add the port to the list of additional ports in the map_entry
399  *
400  * @param me the map_entry
401  * @param port the port in host-byte-order
402  */
403 static void
404 add_additional_port (struct map_entry *me, uint16_t port)
405 {
406   setBit(me->additional_ports, port);
407 }
408
409 static int
410 receive_udp_back (void *cls, struct GNUNET_MESH_Tunnel* tunnel,
411                   void **tunnel_ctx,
412                   const struct GNUNET_PeerIdentity *sender,
413                   const struct GNUNET_MessageHeader *message,
414                   const struct GNUNET_TRANSPORT_ATS_Information *atsi)
415 {
416   GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
417   struct udp_pkt *pkt = (struct udp_pkt *) (desc + 1);
418   const struct GNUNET_PeerIdentity* other = GNUNET_MESH_get_peer(tunnel);
419
420   size_t size = sizeof(struct ip6_udp) + ntohs(pkt->len) - 1 - sizeof(struct udp_pkt);
421
422   struct ip6_udp* pkt6 = alloca(size);
423
424   GNUNET_assert(pkt6 != NULL);
425
426   new_ip6addr(pkt6->ip6_hdr.sadr, &other->hashPubKey, desc);
427
428   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Relaying calc:%d gnu:%d udp:%d bytes!\n", size, ntohs(message->size), ntohs(pkt->len));
429
430   pkt6->shdr.type = htons(GNUNET_MESSAGE_TYPE_VPN_HELPER);
431   pkt6->shdr.size = htons(size);
432
433   pkt6->tun.flags = 0;
434   pkt6->tun.type = htons(0x86dd);
435
436   pkt6->ip6_hdr.version = 6;
437   pkt6->ip6_hdr.tclass_h = 0;
438   pkt6->ip6_hdr.tclass_l = 0;
439   pkt6->ip6_hdr.flowlbl = 0;
440   pkt6->ip6_hdr.paylgth = pkt->len;
441   pkt6->ip6_hdr.nxthdr = 0x11;
442   pkt6->ip6_hdr.hoplmt = 0xff;
443
444   {
445     char* ipv6addr;
446     GNUNET_assert(GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "vpn", "IPV6ADDR", &ipv6addr));
447     inet_pton (AF_INET6, ipv6addr, pkt6->ip6_hdr.dadr);
448     GNUNET_free(ipv6addr);
449   }
450   memcpy(&pkt6->udp_hdr, pkt, ntohs(pkt->len));
451
452   GNUNET_HashCode* key = address_mapping_exists(pkt6->ip6_hdr.sadr);
453   GNUNET_assert (key != NULL);
454
455   /* FIXME: update costs in heap */
456   struct map_entry *me = GNUNET_CONTAINER_multihashmap_get(hashmap, key);
457
458   GNUNET_free(key);
459
460   GNUNET_assert (me != NULL);
461   GNUNET_assert (me->desc.service_type & htonl(GNUNET_DNS_SERVICE_TYPE_UDP));
462   if (!port_in_ports(me->desc.ports, pkt6->udp_hdr.spt) &&
463       !testBit(me->additional_ports, ntohs(pkt6->udp_hdr.spt))) {
464       add_additional_port(me, ntohs(pkt6->udp_hdr.spt));
465   }
466
467   pkt6->udp_hdr.crc = 0;
468   uint32_t sum = 0;
469   sum = calculate_checksum_update(sum, (uint16_t*)&pkt6->ip6_hdr.sadr, 16);
470   sum = calculate_checksum_update(sum, (uint16_t*)&pkt6->ip6_hdr.dadr, 16);
471   uint32_t tmp = (pkt6->udp_hdr.len & 0xffff);
472   sum = calculate_checksum_update(sum, (uint16_t*)&tmp, 4);
473   tmp = htons(((pkt6->ip6_hdr.nxthdr & 0x00ff)));
474   sum = calculate_checksum_update(sum, (uint16_t*)&tmp, 4);
475
476   sum = calculate_checksum_update(sum, (uint16_t*)&pkt6->udp_hdr, ntohs(pkt->len));
477   pkt6->udp_hdr.crc = calculate_checksum_end(sum);
478
479   write_to_helper(pkt6, size);
480
481   return GNUNET_OK;
482 }
483
484 static int
485 receive_tcp_back (void *cls, struct GNUNET_MESH_Tunnel* tunnel,
486                   void **tunnel_ctx,
487                   const struct GNUNET_PeerIdentity *sender,
488                   const struct GNUNET_MessageHeader *message,
489                   const struct GNUNET_TRANSPORT_ATS_Information *atsi)
490 {
491   GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
492   struct tcp_pkt *pkt = (struct tcp_pkt *) (desc + 1);
493   const struct GNUNET_PeerIdentity* other = GNUNET_MESH_get_peer(tunnel);
494
495   size_t pktlen = ntohs(message->size) - sizeof(struct GNUNET_MessageHeader) - sizeof(GNUNET_HashCode);
496   size_t size = pktlen + sizeof(struct ip6_tcp) - 1;
497
498   struct ip6_tcp* pkt6 = alloca(size);
499
500   GNUNET_assert(pkt6 != NULL);
501
502   new_ip6addr(pkt6->ip6_hdr.sadr, &other->hashPubKey, desc);
503
504   pkt6->shdr.type = htons(GNUNET_MESSAGE_TYPE_VPN_HELPER);
505   pkt6->shdr.size = htons(size);
506
507   pkt6->tun.flags = 0;
508   pkt6->tun.type = htons(0x86dd);
509
510   pkt6->ip6_hdr.version = 6;
511   pkt6->ip6_hdr.tclass_h = 0;
512   pkt6->ip6_hdr.tclass_l = 0;
513   pkt6->ip6_hdr.flowlbl = 0;
514   pkt6->ip6_hdr.paylgth = htons(pktlen);
515   pkt6->ip6_hdr.nxthdr = 0x06;
516   pkt6->ip6_hdr.hoplmt = 0xff;
517
518   {
519     char* ipv6addr;
520     GNUNET_assert(GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "vpn", "IPV6ADDR", &ipv6addr));
521     inet_pton (AF_INET6, ipv6addr, pkt6->ip6_hdr.dadr);
522     GNUNET_free(ipv6addr);
523   }
524   memcpy(&pkt6->tcp_hdr, pkt, pktlen);
525
526   GNUNET_HashCode* key = address_mapping_exists(pkt6->ip6_hdr.sadr);
527   GNUNET_assert (key != NULL);
528
529   /* FIXME: update costs in heap */
530   struct map_entry *me = GNUNET_CONTAINER_multihashmap_get(hashmap, key);
531
532   GNUNET_free(key);
533
534   GNUNET_assert (me != NULL);
535   GNUNET_assert (me->desc.service_type & htonl(GNUNET_DNS_SERVICE_TYPE_TCP));
536
537   pkt6->tcp_hdr.crc = 0;
538   uint32_t sum = 0;
539   uint32_t tmp;
540   sum =
541     calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.sadr, 16);
542   sum =
543     calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.dadr, 16);
544   tmp = htonl(pktlen);
545   sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
546   tmp = htonl (((pkt6->ip6_hdr.nxthdr & 0x000000ff)));
547   sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
548
549   sum =
550     calculate_checksum_update (sum, (uint16_t *) & pkt6->tcp_hdr,
551                                ntohs (pkt6->ip6_hdr.paylgth));
552   pkt6->tcp_hdr.crc = calculate_checksum_end (sum);
553
554   write_to_helper(pkt6, size);
555
556   return GNUNET_OK;
557 }
558
559 void init_mesh (void* cls, struct GNUNET_MESH_Handle* server, const struct GNUNET_PeerIdentity* my_identity, const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *pubkey) {
560   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Connected to MESH, I am %x\n", *((unsigned long*)my_identity));
561 }
562
563 void connect_mesh (void* cls, const struct GNUNET_PeerIdentity* peer, const struct GNUNET_TRANSPORT_ATS_Information *atsi) {
564   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Connected to peer %x\n", *((unsigned long*)peer));
565 }
566
567 /**
568  * Main function that will be run by the scheduler.
569  *
570  * @param cls closure
571  * @param args remaining command-line arguments
572  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
573  * @param cfg_ configuration
574  */
575 static void
576 run (void *cls,
577      char *const *args,
578      const char *cfgfile,
579      const struct GNUNET_CONFIGURATION_Handle *cfg_)
580 {
581     const static struct GNUNET_MESH_MessageHandler handlers[] = {
582           {receive_udp_back, GNUNET_MESSAGE_TYPE_SERVICE_UDP_BACK, 0},
583           {receive_tcp_back, GNUNET_MESSAGE_TYPE_SERVICE_TCP_BACK, 0},
584           {NULL, 0, 0}
585     };
586     mesh_handle = GNUNET_MESH_connect(cfg_,
587                                       NULL,
588                                       NULL,
589                                       handlers,
590                                       NULL);
591     cfg = cfg_;
592     restart_hijack = 0;
593     hashmap = GNUNET_CONTAINER_multihashmap_create(65536);
594     udp_connections = GNUNET_CONTAINER_multihashmap_create(65536);
595     GNUNET_SCHEDULER_TaskIdentifier conn_task = GNUNET_SCHEDULER_add_now (connect_to_service_dns, NULL);
596     GNUNET_SCHEDULER_add_after (conn_task, start_helper_and_schedule, NULL);
597     GNUNET_SCHEDULER_add_delayed(GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
598 }
599
600 /**
601  * The main function to obtain template from gnunetd.
602  *
603  * @param argc number of arguments from the command line
604  * @param argv command line arguments
605  * @return 0 ok, 1 on error
606  */
607 int
608 main (int argc, char *const *argv) {
609     static const struct GNUNET_GETOPT_CommandLineOption options[] = {
610         GNUNET_GETOPT_OPTION_END
611     };
612
613     return (GNUNET_OK ==
614             GNUNET_PROGRAM_run (argc,
615                                 argv,
616                                 "gnunet-daemon-vpn",
617                                 gettext_noop ("help text"),
618                                 options, &run, NULL)) ? ret : 1;
619 }
620
621 /* end of gnunet-daemon-vpn.c */
622