aboutsummaryrefslogtreecommitdiff
path: root/src/vpn/gnunet-daemon-exit.c
blob: b6b86cfc81771c675c94137aa7fa7422522d71f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
/*
     This file is part of GNUnet.
     (C) 2010 Christian Grothoff

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

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file vpn/gnunet-daemon-exit.c
 * @brief
 * @author Philipp Toelke
 */
#include <platform.h>
#include <gnunet_common.h>
#include <gnunet_program_lib.h>
#include <gnunet_protocols.h>
#include <gnunet_mesh_service.h>
#include <gnunet_constants.h>
#include <string.h>

#include "gnunet-vpn-packet.h"
#include "gnunet-helper-vpn-api.h"
#include "gnunet-vpn-checksum.h"

/**
 * The handle to the configuration used throughout the process
 */
static const struct GNUNET_CONFIGURATION_Handle *cfg;

/**
 * The handle to the service-configuration
 */
static struct GNUNET_CONFIGURATION_Handle *servicecfg;

/**
 * The handle to the helper
 */
struct GNUNET_VPN_HELPER_Handle *helper_handle;

/**
 * Final status code.
 */
static int ret;

/**
 * The handle to mesh
 */
static struct GNUNET_MESH_Handle *mesh_handle;

/**
 * This hashmap contains the mapping from peer, service-descriptor,
 * source-port and destination-port to a socket
 */
static struct GNUNET_CONTAINER_MultiHashMap *udp_connections;
static struct GNUNET_CONTAINER_MultiHashMap *tcp_connections;

/**
 * This struct is saved into the services-hashmap
 */
struct redirect_service
{
  /**
   * One of 4 or 6
   */
  unsigned int version;
  uint16_t my_port;
  uint16_t remote_port;

  union
  {
    struct
    {
      char ip4address[4];
    } v4;
    struct
    {
      char ip6address[16];
    } v6;
  };
};

struct redirect_info
{
    /**
     * The source-address of this connection. When a packet to this address is
     * received, this tunnel is used to forward it.  ipv4-addresses will be put
     * here left-aligned */
  char addr[16];
    /**
     * The source-port of this connection
     */
  uint16_t pt;
};

/**
 * This struct is saved into {tcp,udp}_connections;
 */
struct redirect_state
{
  struct GNUNET_MESH_Tunnel *tunnel;
  GNUNET_HashCode desc;
  struct redirect_service *serv;

  /**
   * The source-address and -port of this connection
   */
  struct redirect_info redirect_info;
};

/**
 * This hashmaps saves interesting things about the configured services
 */
static struct GNUNET_CONTAINER_MultiHashMap *udp_services;
static struct GNUNET_CONTAINER_MultiHashMap *tcp_services;

/**
 * Function that frees everything from a hashmap
 */
static int
free_iterate(void* cls, const GNUNET_HashCode* hash, void* value)
{
  GNUNET_free(value);
  return GNUNET_YES;
}

/**
 * Function scheduled as very last function, cleans up after us
 */
static void
cleanup(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tskctx) {
    GNUNET_assert (0 != (tskctx->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN));

    GNUNET_CONTAINER_multihashmap_iterate(udp_connections,
                                          free_iterate,
                                          NULL);

    GNUNET_CONTAINER_multihashmap_iterate(tcp_connections,
                                          free_iterate,
                                          NULL);

    if (mesh_handle != NULL)
      {
	GNUNET_MESH_disconnect(mesh_handle);
	mesh_handle = NULL;
      }
}

/**
 * cls is the pointer to a GNUNET_MessageHeader that is
 * followed by the service-descriptor and the udp-packet that should be sent;
 */
static size_t
send_udp_to_peer_notify_callback (void *cls, size_t size, void *buf)
{
  struct GNUNET_MessageHeader *hdr = cls;
  GNUNET_assert (size >= ntohs (hdr->size));
  memcpy (buf, hdr, ntohs (hdr->size));
  size = ntohs(hdr->size);
  GNUNET_free (cls);
  return size;
}

/**
 * Receive packets from the helper-process
 */
static void
message_token (void *cls,
               void *client, const struct GNUNET_MessageHeader *message)
{
  GNUNET_assert (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_HELPER);

  struct tun_pkt *pkt_tun = (struct tun_pkt *) message;

  struct GNUNET_MessageHeader *msg;
  struct GNUNET_MESH_Tunnel *tunnel;
  uint32_t len;

  struct udp_pkt *udp;
  struct redirect_info u_i;
  memset(&u_i, 0, sizeof(struct redirect_info));

  unsigned int version;

  /* ethertype is ipv6 */
  if (ntohs (pkt_tun->tun.type) == 0x86dd)
    {
      struct ip6_udp *pkt6 = (struct ip6_udp*)pkt_tun;
      if (pkt6->ip6_hdr.nxthdr != 0x11) return;
      /* lookup in udp_connections for dpt/dadr*/
      memcpy(&u_i.addr, pkt6->ip6_hdr.dadr, 16);
      udp = &pkt6->udp_hdr;
      version = 6;
    }
  else if (ntohs(pkt_tun->tun.type) == 0x0800)
    {
      struct ip_udp *pkt4 = (struct ip_udp*)pkt_tun;
      if (pkt4->ip_hdr.proto != 0x11) return;
      uint32_t tmp = pkt4->ip_hdr.dadr;
      memcpy(&u_i.addr, &tmp, 4);
      udp = &pkt4->udp_hdr;
      version = 4;
    }
  else
    {
      return;
    }

  u_i.pt = udp->dpt;

  /* get tunnel and service-descriptor from this*/
  GNUNET_HashCode hash;
  GNUNET_CRYPTO_hash(&u_i, sizeof(struct redirect_info), &hash);
  struct redirect_state *state = GNUNET_CONTAINER_multihashmap_get(udp_connections, &hash);

  tunnel = state->tunnel;

  /* check if spt == serv.remote if yes: set spt = serv.myport*/
  if (ntohs(udp->spt) == state->serv->remote_port)
    {
      udp->spt = htons(state->serv->my_port);
    }
  else
    {
      struct redirect_service *serv = GNUNET_malloc(sizeof(struct redirect_service));
      memcpy(serv, state->serv, sizeof(struct redirect_service));
      serv->my_port = ntohs(udp->spt);
      serv->remote_port = ntohs(udp->spt);
      uint16_t *desc = alloca (sizeof (GNUNET_HashCode) + 2);
      memcpy((GNUNET_HashCode *) (desc + 1), &state->desc, sizeof(GNUNET_HashCode));
      *desc = ntohs(udp->spt);
      GNUNET_HashCode hash;
      GNUNET_CRYPTO_hash (desc, sizeof (GNUNET_HashCode) + 2, &hash);
      GNUNET_assert (GNUNET_OK ==
		     GNUNET_CONTAINER_multihashmap_put (udp_services,
							&hash, serv,
							GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
      state->serv = serv;
    }
  /* send udp-packet back */ 
  len = sizeof(struct GNUNET_MessageHeader) + sizeof(GNUNET_HashCode) + ntohs(udp->len);
  msg = GNUNET_malloc(len);
  msg->size = htons(len);
  msg->type = htons(GNUNET_MESSAGE_TYPE_SERVICE_UDP_BACK);
  GNUNET_HashCode *desc = (GNUNET_HashCode*)(msg+1);
  memcpy(desc, &state->desc, sizeof(GNUNET_HashCode));
  void* _udp = desc+1;
  memcpy(_udp, udp, ntohs(udp->len));

  GNUNET_MESH_notify_transmit_ready (tunnel,
				     GNUNET_NO,
				     42,
				     GNUNET_TIME_relative_divide(GNUNET_CONSTANTS_MAX_CORK_DELAY, 2),
				     len,
				     send_udp_to_peer_notify_callback,
				     msg);
}


/**
 * Reads the configuration servicecfg and populates udp_services
 *
 * @param cls unused
 * @param section name of section in config, equal to hostname
 * @param option type of redirect
 * @param value specification of services, format is
 *         "OFFERED-PORT:HOSTNAME:HOST-PORT" (SPACE &lt;more of those&gt;)*
 */
static void
read_service_conf (void *cls, const char *section, const char *option,
                   const char *value)
{
  char *cpy;
  char *redirect;
  char *hostname;
  char *hostport;
  GNUNET_HashCode hash;
  uint16_t *desc = alloca (sizeof (GNUNET_HashCode) + 2);
  GNUNET_CRYPTO_hash (section, strlen (section) + 1,
                      (GNUNET_HashCode *) (desc + 1));

#define TCP 2
#define UDP 1

  unsigned int proto;
  if (0 == strcmp ("UDP_REDIRECTS", option))
    proto = UDP;
  else if (0 == strcmp ("TCP_REDIRECTS", option))
    proto = TCP;
  else
    proto = 0;

  if (0 != proto)
    {
      cpy = GNUNET_strdup (value);
      for (redirect = strtok (cpy, " "); redirect != NULL; redirect = strtok
           (NULL, " "))
        {
          if (NULL == (hostname = strstr (redirect, ":")))
            {
              GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Warning: option %s is not formatted correctly!\n",
                          redirect);
              continue;
            }
          hostname[0] = '\0';
          hostname++;
          if (NULL == (hostport = strstr (hostname, ":")))
            {
              GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Warning: option %s is not formatted correctly!\n",
                          redirect);
              continue;
            }
          hostport[0] = '\0';
          hostport++;

          int local_port = atoi (redirect);
          if (!((local_port > 0) && (local_port < 65536)))
            GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Warning: %s is not a correct port.",
                        redirect);

          *desc = local_port;

          GNUNET_CRYPTO_hash (desc, sizeof (GNUNET_HashCode) + 2, &hash);

          struct redirect_service *serv =
            GNUNET_malloc (sizeof (struct redirect_service));
          memset (serv, 0, sizeof (struct redirect_service));
          serv->my_port = local_port;

          if (0 == strcmp ("localhost4", hostname))
            {
              serv->version = 4;

              char *ip4addr;
              GNUNET_assert (GNUNET_OK ==
                             GNUNET_CONFIGURATION_get_value_string (cfg,
                                                                    "exit",
                                                                    "IPV4ADDR",
                                                                    &ip4addr));
              GNUNET_assert (1 ==
                             inet_pton (AF_INET, ip4addr,
                                        serv->v4.ip4address));
              GNUNET_free (ip4addr);
            }
          else if (0 == strcmp ("localhost6", hostname))
            {
              serv->version = 6;

              char *ip6addr;
              GNUNET_assert (GNUNET_OK ==
                             GNUNET_CONFIGURATION_get_value_string (cfg,
                                                                    "exit",
                                                                    "IPV6ADDR",
                                                                    &ip6addr));
              GNUNET_assert (1 ==
                             inet_pton (AF_INET6, ip6addr,
                                        serv->v6.ip6address));
              GNUNET_free (ip6addr);
            }
          else
            {
              // Lookup, yadayadayada
              GNUNET_assert (0);
            }
          serv->remote_port = atoi (hostport);
          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Store with key1 %x\n",
                      *((unsigned long long *) (desc + 1)));
          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Store with key2 %x\n",
                      *((unsigned long long *) &hash));
          if (UDP == proto)
            GNUNET_assert (GNUNET_OK ==
                           GNUNET_CONTAINER_multihashmap_put (udp_services,
                                                              &hash, serv,
                                                              GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
          else
            GNUNET_assert (GNUNET_OK ==
                           GNUNET_CONTAINER_multihashmap_put (tcp_services,
                                                              &hash, serv,
                                                              GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));

        }
      GNUNET_free (cpy);
    }
}

/**
 * Start the helper-process
 *
 * If cls != NULL it is assumed that this function is called as a result of a dying
 * helper. cls is then taken as handle to the old helper and is cleaned up.
 */
static void
start_helper_and_schedule(void *cls,
			  const struct GNUNET_SCHEDULER_TaskContext *tc) {
    if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
      return;

    if (cls != NULL)
      cleanup_helper(cls);
    cls = NULL;

    char* ifname;
    char* ipv6addr;
    char* ipv6prefix;
    char* ipv4addr;
    char* ipv4mask;

    if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string(cfg, "exit", "IFNAME", &ifname))
      {
	GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "No entry 'IFNAME' in configuration!\n");
	exit(1);
      }

    if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string(cfg, "exit", "IPV6ADDR", &ipv6addr))
      {
	GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "No entry 'IPV6ADDR' in configuration!\n");
	exit(1);
      }

    if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string(cfg, "exit", "IPV6PREFIX", &ipv6prefix))
      {
	GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "No entry 'IPV6PREFIX' in configuration!\n");
	exit(1);
      }

    if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string(cfg, "exit", "IPV4ADDR", &ipv4addr))
      {
	GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "No entry 'IPV4ADDR' in configuration!\n");
	exit(1);
      }

    if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string(cfg, "exit", "IPV4MASK", &ipv4mask))
      {
	GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "No entry 'IPV4MASK' in configuration!\n");
	exit(1);
      }

    /* Start the helper
     * Messages get passed to the function message_token
     * When the helper dies, this function will be called again with the
     * helper_handle as cls.
     */
    helper_handle = start_helper(ifname,
				 ipv6addr,
				 ipv6prefix,
                                 ipv4addr,
                                 ipv4mask,
				 "exit-gnunet",
				 start_helper_and_schedule,
				 message_token,
				 NULL,
				 NULL);

    GNUNET_free(ipv6addr);
    GNUNET_free(ipv6prefix);
    GNUNET_free(ipv4addr);
    GNUNET_free(ipv4mask);
    GNUNET_free(ifname);
}

static void
prepare_ipv4_packet (ssize_t len, ssize_t pktlen, void *payload,
                     uint16_t protocol, void *ipaddress, void *tunnel,
                     struct redirect_state *state, struct ip_pkt *pkt4)
{
  uint32_t tmp, tmp2;

  pkt4->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
  pkt4->shdr.size = htons (len);
  pkt4->tun.flags = 0;
  pkt4->tun.type = htons (0x0800);

  memcpy (&pkt4->data, payload, pktlen);

  pkt4->ip_hdr.version = 4;
  pkt4->ip_hdr.hdr_lngth = 5;
  pkt4->ip_hdr.diff_serv = 0;
  pkt4->ip_hdr.tot_lngth = htons (20 + pktlen);
  pkt4->ip_hdr.ident = 0;
  pkt4->ip_hdr.flags = 0;
  pkt4->ip_hdr.frag_off = 0;
  pkt4->ip_hdr.ttl = 255;
  pkt4->ip_hdr.proto = protocol;
  pkt4->ip_hdr.chks = 0;        /* Will be calculated later */

  memcpy (&tmp, ipaddress, 4);
  pkt4->ip_hdr.dadr = tmp;

  /* Generate a new src-address */
  char *ipv4addr;
  char *ipv4mask;
  GNUNET_assert (GNUNET_OK ==
                 GNUNET_CONFIGURATION_get_value_string (cfg, "exit",
                                                        "IPV4ADDR",
                                                        &ipv4addr));
  GNUNET_assert (GNUNET_OK ==
                 GNUNET_CONFIGURATION_get_value_string (cfg, "exit",
                                                        "IPV4MASK",
                                                        &ipv4mask));
  inet_pton (AF_INET, ipv4addr, &tmp);
  inet_pton (AF_INET, ipv4mask, &tmp2);
  GNUNET_free (ipv4addr);
  GNUNET_free (ipv4mask);

  /* This should be a noop */
  tmp = tmp & tmp2;

  tmp |= ntohl (*((uint32_t *) tunnel)) & (~tmp2);

  pkt4->ip_hdr.sadr = tmp;

  memcpy (&state->redirect_info.addr, &tmp, 4);
  if (0x11 == protocol)
    {
      struct ip_udp* pkt4_udp = (struct ip_udp*)pkt4;
      state->redirect_info.pt = pkt4_udp->udp_hdr.spt;

      pkt4_udp->udp_hdr.crc = 0;        /* Optional for IPv4 */
    }
  else if (0x06 == protocol)
    {
      struct ip_tcp* pkt4_tcp = (struct ip_tcp*)pkt4;
      state->redirect_info.pt = pkt4_tcp->tcp_hdr.spt;

      pkt4_tcp->tcp_hdr.crc = 0;
      uint32_t sum = 0;
      tmp = pkt4->ip_hdr.sadr;
      sum =
        calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
      tmp = pkt4->ip_hdr.dadr;
      sum =
        calculate_checksum_update (sum, (uint16_t *) & tmp, 4);

      tmp = (protocol << 16) | (0xffff & pktlen);

      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "line: %08x, %x \n", tmp, (0xffff & pktlen));

      tmp = htonl(tmp);

      sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);

      sum =
        calculate_checksum_update (sum, (uint16_t *) & pkt4_tcp->tcp_hdr, pktlen);
      pkt4_tcp->tcp_hdr.crc = calculate_checksum_end (sum);
    }

  pkt4->ip_hdr.chks =
    calculate_ip_checksum ((uint16_t *) & pkt4->ip_hdr, 5 * 4);
}

static void
prepare_ipv6_packet (ssize_t len, ssize_t pktlen, void *payload,
                     uint16_t protocol, void *ipaddress, void *tunnel,
                     struct redirect_state *state, struct ip6_pkt *pkt6)
{
  uint32_t tmp;

  pkt6->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
  pkt6->shdr.size = htons (len);
  pkt6->tun.flags = 0;

  pkt6->tun.type = htons (0x86dd);

  memcpy (&pkt6->data, payload, pktlen);

  pkt6->ip6_hdr.version = 6;
  pkt6->ip6_hdr.nxthdr = protocol;
  pkt6->ip6_hdr.paylgth = htons (pktlen);
  pkt6->ip6_hdr.hoplmt = 64;

  memcpy (pkt6->ip6_hdr.dadr, ipaddress, 16);

  /* Generate a new src-address
   * This takes as much from the address of the tunnel as fits into
   * the host-mask*/
  char *ipv6addr;
  unsigned long long ipv6prefix;
  GNUNET_assert (GNUNET_OK ==
                 GNUNET_CONFIGURATION_get_value_string (cfg, "exit",
                                                        "IPV6ADDR",
                                                        &ipv6addr));
  GNUNET_assert (GNUNET_OK ==
                 GNUNET_CONFIGURATION_get_value_number (cfg, "exit",
                                                        "IPV6PREFIX",
                                                        &ipv6prefix));
  GNUNET_assert (ipv6prefix < 127);
  ipv6prefix = (ipv6prefix + 7) / 8;

  inet_pton (AF_INET6, ipv6addr, &pkt6->ip6_hdr.sadr);
  GNUNET_free (ipv6addr);

  if (ipv6prefix < (16 - sizeof (void *)))
    ipv6prefix = 16 - sizeof (void *);

  unsigned int offset = ipv6prefix - (16 - sizeof (void *));
  memcpy ((((char *) &pkt6->ip6_hdr.sadr)) + ipv6prefix,
          ((char *) &tunnel) + offset, 16 - ipv6prefix);

  /* copy the needed information into the state */
  memcpy (&state->redirect_info.addr, &pkt6->ip6_hdr.sadr, 16);

  if (0x11 == protocol)
    {
      struct ip6_udp* pkt6_udp = (struct ip6_udp*)pkt6;
      state->redirect_info.pt = pkt6_udp->udp_hdr.spt;

      pkt6_udp->udp_hdr.crc = 0;
      uint32_t sum = 0;
      sum =
        calculate_checksum_update (sum, (uint16_t *) & pkt6_udp->ip6_hdr.sadr, 16);
      sum =
        calculate_checksum_update (sum, (uint16_t *) & pkt6_udp->ip6_hdr.dadr, 16);
      tmp = (htons (pktlen) & 0xffff);
      sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
      tmp = htons (((pkt6_udp->ip6_hdr.nxthdr & 0x00ff)));
      sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);

      sum =
        calculate_checksum_update (sum, (uint16_t *) & pkt6_udp->udp_hdr,
                                   ntohs (pkt6_udp->udp_hdr.len));
      pkt6_udp->udp_hdr.crc = calculate_checksum_end (sum);
    }
  else if (0x06 == protocol)
    {
      struct ip6_tcp* pkt6_tcp = (struct ip6_tcp*)pkt6;
      state->redirect_info.pt = pkt6_tcp->tcp_hdr.spt;

      pkt6_tcp->tcp_hdr.crc = 0;
      uint32_t sum = 0;
      sum =
        calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.sadr, 16);
      sum =
        calculate_checksum_update (sum, (uint16_t *) & pkt6->ip6_hdr.dadr, 16);
      tmp = htonl(pktlen);
      sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);
      tmp = htonl (((pkt6->ip6_hdr.nxthdr & 0x000000ff)));
      sum = calculate_checksum_update (sum, (uint16_t *) & tmp, 4);

      sum =
        calculate_checksum_update (sum, (uint16_t *) & pkt6_tcp->tcp_hdr,
                                   ntohs (pkt6->ip6_hdr.paylgth));
      pkt6_tcp->tcp_hdr.crc = calculate_checksum_end (sum);
    }
}

/**
 * The messages are one GNUNET_HashCode for the service followed by a struct tcp_pkt
 */
static int
receive_tcp_service (void *cls,
                     struct GNUNET_MESH_Tunnel *tunnel,
                     void **tunnel_ctx,
		     const struct GNUNET_PeerIdentity *sender,
                     const struct GNUNET_MessageHeader *message,
                     const struct GNUNET_TRANSPORT_ATS_Information *atsi)
{
  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Received TCP-Packet\n");
  GNUNET_HashCode hash;
  GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
  struct tcp_pkt *pkt = (struct tcp_pkt *) (desc + 1);
  unsigned int pkt_len = ntohs(message->size) - sizeof (struct
                                                        GNUNET_MessageHeader) -
    sizeof(GNUNET_HashCode);

  /** Get the configuration from the services-hashmap.
   *
   * Which service is needed only depends on the service-descriptor and the
   * destination-port
   */
  uint16_t *tcp_desc = alloca (sizeof (GNUNET_HashCode) + 2);

  memcpy (tcp_desc + 1, desc, sizeof (GNUNET_HashCode));
  *tcp_desc = ntohs (pkt->dpt);
  GNUNET_CRYPTO_hash (tcp_desc, sizeof (GNUNET_HashCode) + 2, &hash);
  struct redirect_service *serv =
    GNUNET_CONTAINER_multihashmap_get (tcp_services, &hash);
  if (NULL == serv)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_INFO, "No service found for TCP dpt %d!\n",
                  *tcp_desc);
      return GNUNET_YES;
    }

  pkt->dpt = htons (serv->remote_port);
  /* FIXME -> check acl etc */

  char *buf;
  size_t len;

  /* Prepare the state.
   * This will be saved in the hashmap, so that the receiving procedure knows
   * through which tunnel this connection has to be routed.
   */
  struct redirect_state *state = GNUNET_malloc (sizeof (struct redirect_state));
  memset (state, 0, sizeof (struct redirect_state));
  state->tunnel = tunnel;
  state->serv = serv;
  memcpy (&state->desc, desc, sizeof (GNUNET_HashCode));

  len = sizeof (struct GNUNET_MessageHeader) + sizeof (struct pkt_tun) +
    sizeof (struct ip6_hdr) + pkt_len;
  buf = alloca (len);

  memset (buf, 0, len);

  switch (serv->version)
    {
    case 4:
      prepare_ipv4_packet (len, pkt_len, pkt, 0x06,    /* TCP */
                           &serv->v4.ip4address,
                           tunnel, state, (struct ip_pkt *) buf);
      break;
    case 6:
      prepare_ipv6_packet (len, pkt_len, pkt, 0x06,    /* TCP */
                           &serv->v6.ip6address,
                           tunnel, state, (struct ip6_pkt *) buf);

      break;
    default:
      GNUNET_assert (0);
      break;
    }

  GNUNET_CRYPTO_hash (&state->redirect_info, sizeof (struct redirect_info), &hash);

  if (GNUNET_NO ==
      GNUNET_CONTAINER_multihashmap_contains (tcp_connections, &hash))
    GNUNET_CONTAINER_multihashmap_put (tcp_connections, &hash, state,
                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
  else
    GNUNET_free (state);

  (void) GNUNET_DISK_file_write (helper_handle->fh_to_helper, buf, len);
  return GNUNET_YES;
}

/**
 * The messages are one GNUNET_HashCode for the service, followed by a struct udp_pkt
 */
static int
receive_udp_service (void *cls,
                     struct GNUNET_MESH_Tunnel *tunnel,
                     void **tunnel_ctx,
		     const struct GNUNET_PeerIdentity *sender,
                     const struct GNUNET_MessageHeader *message,
                     const struct GNUNET_TRANSPORT_ATS_Information *atsi)
{
  GNUNET_HashCode hash;
  GNUNET_HashCode *desc = (GNUNET_HashCode *) (message + 1);
  struct udp_pkt *pkt = (struct udp_pkt *) (desc + 1);

  GNUNET_assert (ntohs (pkt->len) ==
                 ntohs (message->size) -
                 sizeof (struct GNUNET_MessageHeader) -
                 sizeof (GNUNET_HashCode));

  /* Get the configuration from the hashmap */
  uint16_t *udp_desc = alloca (sizeof (GNUNET_HashCode) + 2);
  memcpy (udp_desc + 1, desc, sizeof (GNUNET_HashCode));
  *udp_desc = ntohs (pkt->dpt);
  GNUNET_CRYPTO_hash (udp_desc, sizeof (GNUNET_HashCode) + 2, &hash);
  struct redirect_service *serv =
    GNUNET_CONTAINER_multihashmap_get (udp_services, &hash);
  if (NULL == serv)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_INFO, "No service found for UDP dpt %d!\n",
                  *udp_desc);
      return GNUNET_YES;
    }

  pkt->dpt = htons (serv->remote_port);
  /* FIXME -> check acl etc */

  char *buf;
  size_t len;

  /* Prepare the state.
   * This will be saved in the hashmap, so that the receiving procedure knows
   * through which tunnel this connection has to be routed.
   */
  struct redirect_state *state = GNUNET_malloc (sizeof (struct redirect_state));
  memset (state, 0, sizeof (struct redirect_state));
  state->tunnel = tunnel;
  state->serv = serv;
  memcpy (&state->desc, desc, sizeof (GNUNET_HashCode));

  len = sizeof (struct GNUNET_MessageHeader) + sizeof (struct pkt_tun) +
    sizeof (struct ip6_hdr) + ntohs (pkt->len);
  buf = alloca (len);

  memset (buf, 0, len);

  switch (serv->version)
    {
    case 4:
      prepare_ipv4_packet (len, ntohs (pkt->len), pkt, 0x11,    /* UDP */
                           &serv->v4.ip4address,
                           tunnel, state, (struct ip_pkt *) buf);
      break;
    case 6:
      prepare_ipv6_packet (len, ntohs (pkt->len), pkt, 0x11,    /* UDP */
                           &serv->v6.ip6address,
                           tunnel, state, (struct ip6_pkt *) buf);

      break;
    default:
      GNUNET_assert (0);
      break;
    }

  GNUNET_CRYPTO_hash (&state->redirect_info, sizeof (struct redirect_info), &hash);

  if (GNUNET_NO ==
      GNUNET_CONTAINER_multihashmap_contains (udp_connections, &hash))
    GNUNET_CONTAINER_multihashmap_put (udp_connections, &hash, state,
                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
  else
    GNUNET_free (state);

  (void) GNUNET_DISK_file_write (helper_handle->fh_to_helper, buf, len);
  return GNUNET_YES;
}

/**
 * @brief Main function that will be run by the scheduler.
 *
 * @param cls closure
 * @param args remaining command-line arguments
 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
 * @param cfg_ configuration
 */
static void
run (void *cls,
     char *const *args,
     const char *cfgfile,
     const struct GNUNET_CONFIGURATION_Handle *cfg_)
{
  const static struct GNUNET_MESH_MessageHandler handlers[] = {
	{receive_udp_service, GNUNET_MESSAGE_TYPE_SERVICE_UDP, 0},
	{receive_tcp_service, GNUNET_MESSAGE_TYPE_SERVICE_TCP, 0},
	{NULL, 0, 0}
  };
  mesh_handle = GNUNET_MESH_connect(cfg_,
				    NULL,
				    NULL,
				    handlers);

  cfg = cfg_;
  udp_connections = GNUNET_CONTAINER_multihashmap_create(65536);
  tcp_connections = GNUNET_CONTAINER_multihashmap_create(65536);
  udp_services = GNUNET_CONTAINER_multihashmap_create(65536);
  tcp_services = GNUNET_CONTAINER_multihashmap_create(65536);

  char *services;
  GNUNET_CONFIGURATION_get_value_filename(cfg, "dns", "SERVICES", &services);
  servicecfg = GNUNET_CONFIGURATION_create();
  if (GNUNET_OK == GNUNET_CONFIGURATION_parse(servicecfg, services))
    {
      GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Parsing services %s\n", services);
      GNUNET_CONFIGURATION_iterate(servicecfg, read_service_conf, NULL);
    }
  if (NULL != services)
    GNUNET_free(services);

  GNUNET_SCHEDULER_add_now (start_helper_and_schedule, NULL);
  GNUNET_SCHEDULER_add_delayed(GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
}

/**
 * The main function to obtain template from gnunetd.
 *
 * @param argc number of arguments from the command line
 * @param argv command line arguments
 * @return 0 ok, 1 on error
 */
int
main (int argc, char *const *argv) {
    static const struct GNUNET_GETOPT_CommandLineOption options[] = {
	GNUNET_GETOPT_OPTION_END
    };

    return (GNUNET_OK ==
	    GNUNET_PROGRAM_run (argc,
				argv,
				"exit",
				gettext_noop ("help text"),
				options, &run, NULL)) ? ret : 1;
}

/* end of gnunet-daemon-exit.c */