compile before commiting
[oweals/gnunet.git] / src / vpn / gnunet-daemon-vpn-helper.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-helper.c
23  * @brief
24  * @author Philipp Toelke
25  */
26 #include <platform.h>
27 #include <gnunet_common.h>
28 #include <gnunet_client_lib.h>
29 #include <gnunet_os_lib.h>
30 #include <gnunet_mesh_service.h>
31 #include <gnunet_protocols.h>
32 #include <gnunet_server_lib.h>
33 #include <gnunet_container_lib.h>
34 #include <block_dns.h>
35 #include <gnunet_configuration_lib.h>
36 #include <gnunet_applications.h>
37
38 #include "gnunet-daemon-vpn-dns.h"
39 #include "gnunet-daemon-vpn.h"
40 #include "gnunet-daemon-vpn-helper.h"
41 #include "gnunet-service-dns-p.h"
42 #include "gnunet-vpn-packet.h"
43 #include "gnunet-vpn-checksum.h"
44 #include "gnunet-helper-vpn-api.h"
45
46 struct GNUNET_VPN_HELPER_Handle *helper_handle;
47
48 /**
49  * The tunnels that will be used to send tcp- and udp-packets
50  */
51 static struct GNUNET_MESH_Tunnel *tcp_tunnel;
52 static struct GNUNET_MESH_Tunnel *udp_tunnel;
53
54 /**
55  * Start the helper-process
56  *
57  * If cls != NULL it is assumed that this function is called as a result of a dying
58  * helper. cls is then taken as handle to the old helper and is cleaned up.
59  * {{{
60  */
61 void
62 start_helper_and_schedule (void *cls,
63                            const struct GNUNET_SCHEDULER_TaskContext *tc)
64 {
65   shs_task = GNUNET_SCHEDULER_NO_TASK;
66   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
67     return;
68
69   if (cls != NULL)
70     cleanup_helper (cls);
71   cls = NULL;
72
73   char *ifname;
74   char *ipv6addr;
75   char *ipv6prefix;
76   char *ipv4addr;
77   char *ipv4mask;
78
79   if (GNUNET_SYSERR ==
80       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IFNAME", &ifname))
81   {
82     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
83                 "No entry 'IFNAME' in configuration!\n");
84     exit (1);
85   }
86
87   if (GNUNET_SYSERR ==
88       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6ADDR", &ipv6addr))
89   {
90     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
91                 "No entry 'IPV6ADDR' in configuration!\n");
92     exit (1);
93   }
94
95   if (GNUNET_SYSERR ==
96       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6PREFIX",
97                                              &ipv6prefix))
98   {
99     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
100                 "No entry 'IPV6PREFIX' in configuration!\n");
101     exit (1);
102   }
103
104   if (GNUNET_SYSERR ==
105       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4ADDR", &ipv4addr))
106   {
107     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
108                 "No entry 'IPV4ADDR' in configuration!\n");
109     exit (1);
110   }
111
112   if (GNUNET_SYSERR ==
113       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4MASK", &ipv4mask))
114   {
115     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
116                 "No entry 'IPV4MASK' in configuration!\n");
117     exit (1);
118   }
119
120   /* Start the helper
121    * Messages get passed to the function message_token
122    * When the helper dies, this function will be called again with the
123    * helper_handle as cls.
124    */
125   helper_handle =
126       start_helper (ifname, ipv6addr, ipv6prefix, ipv4addr, ipv4mask,
127                     "vpn-gnunet", start_helper_and_schedule, message_token,
128                     NULL);
129
130   GNUNET_free (ipv6addr);
131   GNUNET_free (ipv6prefix);
132   GNUNET_free (ipv4addr);
133   GNUNET_free (ipv4mask);
134   GNUNET_free (ifname);
135
136   /* Tell the dns-service to rehijack the dns-port
137    * The routing-table gets flushed if an interface disappears.
138    */
139   restart_hijack = 1;
140   if (NULL != dns_connection)
141     GNUNET_CLIENT_notify_transmit_ready (dns_connection,
142                                          sizeof (struct GNUNET_MessageHeader),
143                                          GNUNET_TIME_UNIT_FOREVER_REL,
144                                          GNUNET_YES, &send_query, NULL);
145
146   GNUNET_SCHEDULER_add_write_file (GNUNET_TIME_UNIT_FOREVER_REL,
147                                    helper_handle->fh_to_helper, &helper_write,
148                                    NULL);
149 }
150
151 /*}}}*/
152
153 /**
154  * Send an dns-answer-packet to the helper
155  */
156 void
157 helper_write (void *cls
158               __attribute__ ((unused)),
159               const struct GNUNET_SCHEDULER_TaskContext *tsdkctx)
160 {
161   if (tsdkctx->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN)
162     return;
163
164   struct answer_packet_list *ans = answer_proc_head;
165
166   if (NULL == ans)
167     return;
168
169   size_t len = ntohs (ans->pkt.hdr.size);
170
171   GNUNET_assert (ans->pkt.subtype == GNUNET_DNS_ANSWER_TYPE_IP);
172
173   GNUNET_assert (20 == sizeof (struct ip_hdr));
174   GNUNET_assert (8 == sizeof (struct udp_pkt));
175   size_t data_len = len - sizeof (struct answer_packet) + 1;
176   size_t net_len = sizeof (struct ip_hdr) + sizeof (struct udp_dns) + data_len;
177   size_t pkt_len =
178       sizeof (struct GNUNET_MessageHeader) + sizeof (struct pkt_tun) + net_len;
179
180   struct ip_udp_dns *pkt = alloca (pkt_len);
181
182   GNUNET_assert (pkt != NULL);
183   memset (pkt, 0, pkt_len);
184
185   /* set the gnunet-header */
186   pkt->shdr.size = htons (pkt_len);
187   pkt->shdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
188
189   /* set the tun-header (no flags and ethertype of IPv4) */
190   pkt->tun.flags = 0;
191   pkt->tun.type = htons (0x0800);
192
193   /* set the ip-header */
194   pkt->ip_hdr.version = 4;
195   pkt->ip_hdr.hdr_lngth = 5;
196   pkt->ip_hdr.diff_serv = 0;
197   pkt->ip_hdr.tot_lngth = htons (net_len);
198   pkt->ip_hdr.ident = 0;
199   pkt->ip_hdr.flags = 0;
200   pkt->ip_hdr.frag_off = 0;
201   pkt->ip_hdr.ttl = 255;
202   pkt->ip_hdr.proto = IPPROTO_UDP;
203   pkt->ip_hdr.chks = 0;         /* Will be calculated later */
204   pkt->ip_hdr.sadr = ans->pkt.from;
205   pkt->ip_hdr.dadr = ans->pkt.to;
206
207   pkt->ip_hdr.chks = calculate_ip_checksum ((uint16_t *) & pkt->ip_hdr, 5 * 4);
208
209   /* set the udp-header */
210   pkt->udp_dns.udp_hdr.spt = htons (53);
211   pkt->udp_dns.udp_hdr.dpt = ans->pkt.dst_port;
212   pkt->udp_dns.udp_hdr.len = htons (net_len - sizeof (struct ip_hdr));
213   pkt->udp_dns.udp_hdr.crc = 0; /* Optional for IPv4 */
214
215   memcpy (&pkt->udp_dns.data, ans->pkt.data, data_len);
216
217   GNUNET_CONTAINER_DLL_remove (answer_proc_head, answer_proc_tail, ans);
218   GNUNET_free (ans);
219
220   if (GNUNET_DISK_file_write (helper_handle->fh_to_helper, pkt, pkt_len) < 0)
221   {
222     cleanup_helper (helper_handle);
223     GNUNET_SCHEDULER_add_now (start_helper_and_schedule, NULL);
224     return;
225   }
226
227   /* if more packets are available, reschedule */
228   if (answer_proc_head != NULL)
229     GNUNET_SCHEDULER_add_write_file (GNUNET_TIME_UNIT_FOREVER_REL,
230                                      helper_handle->fh_to_helper, &helper_write,
231                                      NULL);
232 }
233
234 /**
235  * Receive packets from the helper-process
236  */
237 void
238 message_token (void *cls __attribute__ ((unused)), void *client
239                __attribute__ ((unused)),
240                const struct GNUNET_MessageHeader *message)
241 {
242   GNUNET_assert (ntohs (message->type) == GNUNET_MESSAGE_TYPE_VPN_HELPER);
243
244   struct tun_pkt *pkt_tun = (struct tun_pkt *) message;
245   GNUNET_HashCode *key;
246
247   /* ethertype is ipv6 */
248   if (ntohs (pkt_tun->tun.type) == 0x86dd)
249   {
250     struct ip6_pkt *pkt6 = (struct ip6_pkt *) message;
251
252     GNUNET_assert (pkt6->ip6_hdr.version == 6);
253     struct ip6_tcp *pkt6_tcp;
254     struct ip6_udp *pkt6_udp;
255     struct ip6_icmp *pkt6_icmp;
256
257     switch (pkt6->ip6_hdr.nxthdr)
258     {
259     case IPPROTO_TCP:
260     case IPPROTO_UDP:
261       pkt6_tcp = (struct ip6_tcp *) pkt6;
262       pkt6_udp = (struct ip6_udp *) pkt6;
263
264       if ((key = address6_mapping_exists (pkt6->ip6_hdr.dadr)) != NULL)
265       {
266         struct map_entry *me = GNUNET_CONTAINER_multihashmap_get (hashmap, key);
267
268         GNUNET_assert (me != NULL);
269         GNUNET_free (key);
270
271         size_t size =
272             sizeof (struct GNUNET_MESH_Tunnel *) +
273             sizeof (struct GNUNET_MessageHeader) + sizeof (GNUNET_HashCode) +
274             ntohs (pkt6->ip6_hdr.paylgth);
275
276         struct GNUNET_MESH_Tunnel **cls = GNUNET_malloc (size);
277         struct GNUNET_MessageHeader *hdr =
278             (struct GNUNET_MessageHeader *) (cls + 1);
279         GNUNET_HashCode *hc = (GNUNET_HashCode *) (hdr + 1);
280
281         hdr->size =
282             htons (sizeof (struct GNUNET_MessageHeader) +
283                    sizeof (GNUNET_HashCode) + ntohs (pkt6->ip6_hdr.paylgth));
284
285         GNUNET_MESH_ApplicationType app_type;
286
287         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "me->addrlen is %d\n",
288                     me->addrlen);
289         if (me->addrlen == 0)
290         {
291           /* This is a mapping to a gnunet-service */
292           memcpy (hc, &me->desc.service_descriptor, sizeof (GNUNET_HashCode));
293
294           if (IPPROTO_UDP == pkt6->ip6_hdr.nxthdr &&
295               (me->desc.service_type & htonl (GNUNET_DNS_SERVICE_TYPE_UDP)) &&
296               (port_in_ports (me->desc.ports, pkt6_udp->udp_hdr.dpt) ||
297                testBit (me->additional_ports, ntohs (pkt6_udp->udp_hdr.dpt))))
298           {
299             hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP);
300
301             memcpy (hc + 1, &pkt6_udp->udp_hdr, ntohs (pkt6_udp->udp_hdr.len));
302
303           }
304           else if (IPPROTO_TCP == pkt6->ip6_hdr.nxthdr &&
305                    (me->desc.service_type & htonl (GNUNET_DNS_SERVICE_TYPE_TCP))
306                    && (port_in_ports (me->desc.ports, pkt6_tcp->tcp_hdr.dpt)))
307           {
308             hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP);
309
310             memcpy (hc + 1, &pkt6_tcp->tcp_hdr, ntohs (pkt6->ip6_hdr.paylgth));
311
312           }
313           else
314           {
315             GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "pip: %d\n", port_in_ports(me->desc.ports, pkt6_tcp->tcp_hdr.dpt));
316               GNUNET_assert(0);
317           }
318           if (me->tunnel == NULL && NULL != cls)
319           {
320             *cls =
321                 GNUNET_MESH_peer_request_connect_all (mesh_handle,
322                                                       GNUNET_TIME_UNIT_FOREVER_REL,
323                                                       1,
324                                                       (struct
325                                                        GNUNET_PeerIdentity *)
326                                                       &me->desc.peer,
327                                                       send_pkt_to_peer, NULL,
328                                                       cls);
329             me->tunnel = *cls;
330           }
331           else if (NULL != cls)
332           {
333             *cls = me->tunnel;
334             send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
335             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
336                         "Queued to send IPv6 to peer %x, type %d\n",
337                         *((unsigned int *) &me->desc.peer), ntohs (hdr->type));
338           }
339         }
340         else
341         {
342           /* This is a mapping to a "real" address */
343           struct remote_addr *s = (struct remote_addr *) hc;
344
345           s->addrlen = me->addrlen;
346           memcpy (s->addr, me->addr, me->addrlen);
347           s->proto = pkt6->ip6_hdr.nxthdr;
348           if (s->proto == IPPROTO_UDP)
349           {
350             hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP);
351             memcpy (hc + 1, &pkt6_udp->udp_hdr, ntohs (pkt6_udp->udp_hdr.len));
352             app_type = GNUNET_APPLICATION_TYPE_INTERNET_UDP_GATEWAY;
353             if (NULL != udp_tunnel)
354               me->tunnel = udp_tunnel;
355           }
356           else if (s->proto == IPPROTO_TCP)
357           {
358             hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP);
359             memcpy (hc + 1, &pkt6_tcp->tcp_hdr, ntohs (pkt6->ip6_hdr.paylgth));
360             app_type = GNUNET_APPLICATION_TYPE_INTERNET_TCP_GATEWAY;
361             if (NULL != tcp_tunnel)
362               me->tunnel = tcp_tunnel;
363           }
364           else
365           {
366             GNUNET_assert (0);
367           }
368           if (me->tunnel == NULL && NULL != cls)
369           {
370             *cls =
371                 GNUNET_MESH_peer_request_connect_by_type (mesh_handle,
372                                                           GNUNET_TIME_UNIT_FOREVER_REL,
373                                                           app_type,
374                                                           send_pkt_to_peer,
375                                                           NULL, cls);
376             me->tunnel = *cls;
377             if (GNUNET_APPLICATION_TYPE_INTERNET_UDP_GATEWAY == app_type)
378               udp_tunnel = *cls;
379             else if (GNUNET_APPLICATION_TYPE_INTERNET_TCP_GATEWAY == app_type)
380               tcp_tunnel = *cls;
381           }
382           else if (NULL != cls)
383           {
384             *cls = me->tunnel;
385             send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
386           }
387         }
388       }
389       else
390       {
391         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
392                     "Packet to %02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x, which has no mapping\n",
393                     pkt6->ip6_hdr.dadr[0], pkt6->ip6_hdr.dadr[1],
394                     pkt6->ip6_hdr.dadr[2], pkt6->ip6_hdr.dadr[3],
395                     pkt6->ip6_hdr.dadr[4], pkt6->ip6_hdr.dadr[5],
396                     pkt6->ip6_hdr.dadr[6], pkt6->ip6_hdr.dadr[7],
397                     pkt6->ip6_hdr.dadr[8], pkt6->ip6_hdr.dadr[9],
398                     pkt6->ip6_hdr.dadr[10], pkt6->ip6_hdr.dadr[11],
399                     pkt6->ip6_hdr.dadr[12], pkt6->ip6_hdr.dadr[13],
400                     pkt6->ip6_hdr.dadr[14], pkt6->ip6_hdr.dadr[15]);
401       }
402       break;
403     case 0x3a:
404       /* ICMPv6 */
405       pkt6_icmp = (struct ip6_icmp *) pkt6;
406       /* If this packet is an icmp-echo-request and a mapping exists, answer */
407       if (pkt6_icmp->icmp_hdr.type == 0x80 &&
408           (key = address6_mapping_exists (pkt6->ip6_hdr.dadr)) != NULL)
409       {
410         GNUNET_free (key);
411         pkt6_icmp = GNUNET_malloc (ntohs (pkt6->shdr.size));
412         memcpy (pkt6_icmp, pkt6, ntohs (pkt6->shdr.size));
413         GNUNET_SCHEDULER_add_now (&send_icmp6_response, pkt6_icmp);
414       }
415       break;
416     }
417   }
418   /* ethertype is ipv4 */
419   else if (ntohs (pkt_tun->tun.type) == 0x0800)
420   {
421     struct ip_pkt *pkt = (struct ip_pkt *) message;
422     struct ip_udp *udp = (struct ip_udp *) message;
423     struct ip_tcp *pkt_tcp;
424     struct ip_udp *pkt_udp;
425     struct ip_icmp *pkt_icmp;
426
427     GNUNET_assert (pkt->ip_hdr.version == 4);
428
429     /* Send dns-packets to the service-dns */
430     if (pkt->ip_hdr.proto == IPPROTO_UDP && ntohs (udp->udp_hdr.dpt) == 53)
431     {
432       /* 9 = 8 for the udp-header + 1 for the unsigned char data[1]; */
433       size_t len = sizeof (struct query_packet) + ntohs (udp->udp_hdr.len) - 9;
434
435       struct query_packet_list *query =
436           GNUNET_malloc (len + 2 * sizeof (struct query_packet_list *));
437       query->pkt.hdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_DNS_LOCAL_QUERY_DNS);
438       query->pkt.hdr.size = htons (len);
439       query->pkt.orig_to = pkt->ip_hdr.dadr;
440       query->pkt.orig_from = pkt->ip_hdr.sadr;
441       query->pkt.src_port = udp->udp_hdr.spt;
442       memcpy (query->pkt.data, udp->data, ntohs (udp->udp_hdr.len) - 8);
443
444       GNUNET_CONTAINER_DLL_insert_after (head, tail, tail, query);
445
446       GNUNET_assert (head != NULL);
447
448       if (dns_connection != NULL)
449         GNUNET_CLIENT_notify_transmit_ready (dns_connection, len,
450                                              GNUNET_TIME_UNIT_FOREVER_REL,
451                                              GNUNET_YES, &send_query, NULL);
452     }
453     else
454     {
455       uint32_t dadr = pkt->ip_hdr.dadr;
456       unsigned char *c = (unsigned char *) &dadr;
457
458       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Packet to %d.%d.%d.%d, proto %x\n",
459                   c[0], c[1], c[2], c[3], pkt->ip_hdr.proto);
460       switch (pkt->ip_hdr.proto)
461       {
462       case IPPROTO_TCP:
463       case IPPROTO_UDP:
464         pkt_tcp = (struct ip_tcp *) pkt;
465         pkt_udp = (struct ip_udp *) pkt;
466
467         if ((key = address4_mapping_exists (dadr)) != NULL)
468         {
469           struct map_entry *me =
470               GNUNET_CONTAINER_multihashmap_get (hashmap, key);
471           GNUNET_assert (me != NULL);
472           GNUNET_free (key);
473
474           size_t size =
475               sizeof (struct GNUNET_MESH_Tunnel *) +
476               sizeof (struct GNUNET_MessageHeader) + sizeof (GNUNET_HashCode) +
477               ntohs (pkt->ip_hdr.tot_lngth) - 4 * pkt->ip_hdr.hdr_lngth;
478
479           struct GNUNET_MESH_Tunnel **cls = GNUNET_malloc (size);
480           struct GNUNET_MessageHeader *hdr =
481               (struct GNUNET_MessageHeader *) (cls + 1);
482           GNUNET_HashCode *hc = (GNUNET_HashCode *) (hdr + 1);
483
484           hdr->size =
485               htons (sizeof (struct GNUNET_MessageHeader) +
486                      sizeof (GNUNET_HashCode) + ntohs (pkt->ip_hdr.tot_lngth) -
487                      4 * pkt->ip_hdr.hdr_lngth);
488
489           GNUNET_MESH_ApplicationType app_type;
490
491           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "me->addrlen is %d\n",
492                       me->addrlen);
493           if (me->addrlen == 0)
494           {
495             /* This is a mapping to a gnunet-service */
496             memcpy (hc, &me->desc.service_descriptor, sizeof (GNUNET_HashCode));
497
498             if ((IPPROTO_UDP == pkt->ip_hdr.proto) &&
499                 (me->desc.service_type & htonl (GNUNET_DNS_SERVICE_TYPE_UDP)) &&
500                 (port_in_ports (me->desc.ports, pkt_udp->udp_hdr.dpt) ||
501                  testBit (me->additional_ports, ntohs (pkt_udp->udp_hdr.dpt))))
502             {
503               hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP);
504
505               memcpy (hc + 1, &pkt_udp->udp_hdr, ntohs (pkt_udp->udp_hdr.len));
506
507             }
508             else if ((IPPROTO_TCP == pkt->ip_hdr.proto) &&
509                      (me->
510                       desc.service_type & htonl (GNUNET_DNS_SERVICE_TYPE_TCP))
511                      && (port_in_ports (me->desc.ports, pkt_tcp->tcp_hdr.dpt)))
512             {
513               hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP);
514
515               memcpy (hc + 1, &pkt_tcp->tcp_hdr,
516                       ntohs (pkt->ip_hdr.tot_lngth) -
517                       4 * pkt->ip_hdr.hdr_lngth);
518
519             }
520             if (me->tunnel == NULL && NULL != cls)
521             {
522               *cls =
523                   GNUNET_MESH_peer_request_connect_all (mesh_handle,
524                                                         GNUNET_TIME_UNIT_FOREVER_REL,
525                                                         1,
526                                                         (struct
527                                                          GNUNET_PeerIdentity *)
528                                                         &me->desc.peer,
529                                                         send_pkt_to_peer, NULL,
530                                                         cls);
531               me->tunnel = *cls;
532             }
533             else if (NULL != cls)
534             {
535               *cls = me->tunnel;
536               send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
537               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
538                           "Queued to send IPv4 to peer %x, type %d\n",
539                           *((unsigned int *) &me->desc.peer),
540                           ntohs (hdr->type));
541             }
542           }
543           else
544           {
545             /* This is a mapping to a "real" address */
546             struct remote_addr *s = (struct remote_addr *) hc;
547
548             s->addrlen = me->addrlen;
549             memcpy (s->addr, me->addr, me->addrlen);
550             s->proto = pkt->ip_hdr.proto;
551             if (s->proto == IPPROTO_UDP)
552             {
553               hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP);
554               memcpy (hc + 1, &pkt_udp->udp_hdr, ntohs (pkt_udp->udp_hdr.len));
555               app_type = GNUNET_APPLICATION_TYPE_INTERNET_UDP_GATEWAY;
556             }
557             else if (s->proto == IPPROTO_TCP)
558             {
559               hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP);
560               memcpy (hc + 1, &pkt_tcp->tcp_hdr,
561                       ntohs (pkt->ip_hdr.tot_lngth) -
562                       4 * pkt->ip_hdr.hdr_lngth);
563               app_type = GNUNET_APPLICATION_TYPE_INTERNET_TCP_GATEWAY;
564             }
565             if (me->tunnel == NULL && NULL != cls)
566             {
567               *cls =
568                   GNUNET_MESH_peer_request_connect_by_type (mesh_handle,
569                                                             GNUNET_TIME_UNIT_FOREVER_REL,
570                                                             app_type,
571                                                             send_pkt_to_peer,
572                                                             NULL, cls);
573               me->tunnel = *cls;
574             }
575             else if (NULL != cls)
576             {
577               *cls = me->tunnel;
578               send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
579             }
580           }
581         }
582         else
583         {
584           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
585                       "Packet to %x which has no mapping\n", dadr);
586         }
587         break;
588       case 0x01:
589         /* ICMP */
590         pkt_icmp = (struct ip_icmp *) pkt;
591         if (pkt_icmp->icmp_hdr.type == 0x8 &&
592             (key = address4_mapping_exists (dadr)) != NULL)
593         {
594           GNUNET_free (key);
595           pkt_icmp = GNUNET_malloc (ntohs (pkt->shdr.size));
596           memcpy (pkt_icmp, pkt, ntohs (pkt->shdr.size));
597           GNUNET_SCHEDULER_add_now (&send_icmp4_response, pkt_icmp);
598         }
599         break;
600       }
601     }
602   }
603 }
604
605 void
606 write_to_helper (void *buf, size_t len)
607 {
608   (void) GNUNET_DISK_file_write (helper_handle->fh_to_helper, buf, len);
609 }
610
611 void
612 schedule_helper_write (struct GNUNET_TIME_Relative time, void *cls)
613 {
614   if (GNUNET_SCHEDULER_NO_TASK != shs_task)
615     return;
616   GNUNET_SCHEDULER_add_write_file (time, helper_handle->fh_to_helper,
617                                    &helper_write, cls);
618 }