run indent twice, it alternates between two 'canonical' forms, also run whitespace...
[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 = 0x11;     /* 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 0x06:                 /* TCP */
260     case 0x11:                 /* 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 (0x11 == 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 = ntohs (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 (0x06 == 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 = ntohs (GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP);
309
310             memcpy (hc + 1, &pkt6_tcp->tcp_hdr, ntohs (pkt6->ip6_hdr.paylgth));
311
312           }
313           if (me->tunnel == NULL && NULL != cls)
314           {
315             *cls =
316                 GNUNET_MESH_peer_request_connect_all (mesh_handle,
317                                                       GNUNET_TIME_UNIT_FOREVER_REL,
318                                                       1,
319                                                       (struct
320                                                        GNUNET_PeerIdentity *)
321                                                       &me->desc.peer,
322                                                       send_pkt_to_peer, NULL,
323                                                       cls);
324             me->tunnel = *cls;
325           }
326           else if (NULL != cls)
327           {
328             *cls = me->tunnel;
329             send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
330             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
331                         "Queued to send to peer %x, type %d\n",
332                         *((unsigned int *) &me->desc.peer), ntohs (hdr->type));
333           }
334         }
335         else
336         {
337           /* This is a mapping to a "real" address */
338           struct remote_addr *s = (struct remote_addr *) hc;
339
340           s->addrlen = me->addrlen;
341           memcpy (s->addr, me->addr, me->addrlen);
342           s->proto = pkt6->ip6_hdr.nxthdr;
343           if (s->proto == 0x11)
344           {
345             hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP);
346             memcpy (hc + 1, &pkt6_udp->udp_hdr, ntohs (pkt6_udp->udp_hdr.len));
347             app_type = GNUNET_APPLICATION_TYPE_INTERNET_UDP_GATEWAY;
348             if (NULL != udp_tunnel)
349               me->tunnel = udp_tunnel;
350           }
351           else if (s->proto == 0x06)
352           {
353             hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP);
354             memcpy (hc + 1, &pkt6_tcp->tcp_hdr, ntohs (pkt6->ip6_hdr.paylgth));
355             app_type = GNUNET_APPLICATION_TYPE_INTERNET_TCP_GATEWAY;
356             if (NULL != tcp_tunnel)
357               me->tunnel = tcp_tunnel;
358           }
359           if (me->tunnel == NULL && NULL != cls)
360           {
361             *cls =
362                 GNUNET_MESH_peer_request_connect_by_type (mesh_handle,
363                                                           GNUNET_TIME_UNIT_FOREVER_REL,
364                                                           app_type,
365                                                           send_pkt_to_peer,
366                                                           NULL, cls);
367             me->tunnel = *cls;
368             if (GNUNET_APPLICATION_TYPE_INTERNET_UDP_GATEWAY == app_type)
369               udp_tunnel = *cls;
370             else if (GNUNET_APPLICATION_TYPE_INTERNET_TCP_GATEWAY == app_type)
371               tcp_tunnel = *cls;
372           }
373           else if (NULL != cls)
374           {
375             *cls = me->tunnel;
376             send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
377           }
378         }
379       }
380       else
381       {
382         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
383                     "Packet to %02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x, which has no mapping\n",
384                     pkt6->ip6_hdr.dadr[0], pkt6->ip6_hdr.dadr[1],
385                     pkt6->ip6_hdr.dadr[2], pkt6->ip6_hdr.dadr[3],
386                     pkt6->ip6_hdr.dadr[4], pkt6->ip6_hdr.dadr[5],
387                     pkt6->ip6_hdr.dadr[6], pkt6->ip6_hdr.dadr[7],
388                     pkt6->ip6_hdr.dadr[8], pkt6->ip6_hdr.dadr[9],
389                     pkt6->ip6_hdr.dadr[10], pkt6->ip6_hdr.dadr[11],
390                     pkt6->ip6_hdr.dadr[12], pkt6->ip6_hdr.dadr[13],
391                     pkt6->ip6_hdr.dadr[14], pkt6->ip6_hdr.dadr[15]);
392       }
393       break;
394     case 0x3a:
395       /* ICMPv6 */
396       pkt6_icmp = (struct ip6_icmp *) pkt6;
397       /* If this packet is an icmp-echo-request and a mapping exists, answer */
398       if (pkt6_icmp->icmp_hdr.type == 0x80 &&
399           (key = address6_mapping_exists (pkt6->ip6_hdr.dadr)) != NULL)
400       {
401         GNUNET_free (key);
402         pkt6_icmp = GNUNET_malloc (ntohs (pkt6->shdr.size));
403         memcpy (pkt6_icmp, pkt6, ntohs (pkt6->shdr.size));
404         GNUNET_SCHEDULER_add_now (&send_icmp6_response, pkt6_icmp);
405       }
406       break;
407     }
408   }
409   /* ethertype is ipv4 */
410   else if (ntohs (pkt_tun->tun.type) == 0x0800)
411   {
412     struct ip_pkt *pkt = (struct ip_pkt *) message;
413     struct ip_udp *udp = (struct ip_udp *) message;
414     struct ip_tcp *pkt_tcp;
415     struct ip_udp *pkt_udp;
416     struct ip_icmp *pkt_icmp;
417
418     GNUNET_assert (pkt->ip_hdr.version == 4);
419
420     /* Send dns-packets to the service-dns */
421     if (pkt->ip_hdr.proto == 0x11 && ntohs (udp->udp_hdr.dpt) == 53)
422     {
423       /* 9 = 8 for the udp-header + 1 for the unsigned char data[1]; */
424       size_t len = sizeof (struct query_packet) + ntohs (udp->udp_hdr.len) - 9;
425
426       struct query_packet_list *query =
427           GNUNET_malloc (len + 2 * sizeof (struct query_packet_list *));
428       query->pkt.hdr.type = htons (GNUNET_MESSAGE_TYPE_VPN_DNS_LOCAL_QUERY_DNS);
429       query->pkt.hdr.size = htons (len);
430       query->pkt.orig_to = pkt->ip_hdr.dadr;
431       query->pkt.orig_from = pkt->ip_hdr.sadr;
432       query->pkt.src_port = udp->udp_hdr.spt;
433       memcpy (query->pkt.data, udp->data, ntohs (udp->udp_hdr.len) - 8);
434
435       GNUNET_CONTAINER_DLL_insert_after (head, tail, tail, query);
436
437       GNUNET_assert (head != NULL);
438
439       if (dns_connection != NULL)
440         GNUNET_CLIENT_notify_transmit_ready (dns_connection, len,
441                                              GNUNET_TIME_UNIT_FOREVER_REL,
442                                              GNUNET_YES, &send_query, NULL);
443     }
444     else
445     {
446       uint32_t dadr = pkt->ip_hdr.dadr;
447       unsigned char *c = (unsigned char *) &dadr;
448
449       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Packet to %d.%d.%d.%d, proto %x\n",
450                   c[0], c[1], c[2], c[3], pkt->ip_hdr.proto);
451       switch (pkt->ip_hdr.proto)
452       {
453       case 0x06:               /* TCP */
454       case 0x11:               /* UDP */
455         pkt_tcp = (struct ip_tcp *) pkt;
456         pkt_udp = (struct ip_udp *) pkt;
457
458         if ((key = address4_mapping_exists (dadr)) != NULL)
459         {
460           struct map_entry *me =
461               GNUNET_CONTAINER_multihashmap_get (hashmap, key);
462           GNUNET_assert (me != NULL);
463           GNUNET_free (key);
464
465           size_t size =
466               sizeof (struct GNUNET_MESH_Tunnel *) +
467               sizeof (struct GNUNET_MessageHeader) + sizeof (GNUNET_HashCode) +
468               ntohs (pkt->ip_hdr.tot_lngth) - 4 * pkt->ip_hdr.hdr_lngth;
469
470           struct GNUNET_MESH_Tunnel **cls = GNUNET_malloc (size);
471           struct GNUNET_MessageHeader *hdr =
472               (struct GNUNET_MessageHeader *) (cls + 1);
473           GNUNET_HashCode *hc = (GNUNET_HashCode *) (hdr + 1);
474
475           hdr->size =
476               htons (sizeof (struct GNUNET_MessageHeader) +
477                      sizeof (GNUNET_HashCode) + ntohs (pkt->ip_hdr.tot_lngth) -
478                      4 * pkt->ip_hdr.hdr_lngth);
479
480           GNUNET_MESH_ApplicationType app_type;
481
482           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "me->addrlen is %d\n",
483                       me->addrlen);
484           if (me->addrlen == 0)
485           {
486             /* This is a mapping to a gnunet-service */
487             memcpy (hc, &me->desc.service_descriptor, sizeof (GNUNET_HashCode));
488
489             if (0x11 == pkt->ip_hdr.proto &&
490                 (me->desc.service_type & htonl (GNUNET_DNS_SERVICE_TYPE_UDP)) &&
491                 (port_in_ports (me->desc.ports, pkt_udp->udp_hdr.dpt) ||
492                  testBit (me->additional_ports, ntohs (pkt_udp->udp_hdr.dpt))))
493             {
494               hdr->type = ntohs (GNUNET_MESSAGE_TYPE_VPN_SERVICE_UDP);
495
496               memcpy (hc + 1, &pkt_udp->udp_hdr, ntohs (pkt_udp->udp_hdr.len));
497
498             }
499             else if (0x06 == pkt->ip_hdr.proto &&
500                      (me->
501                       desc.service_type & htonl (GNUNET_DNS_SERVICE_TYPE_TCP))
502                      && (port_in_ports (me->desc.ports, pkt_tcp->tcp_hdr.dpt)))
503             {
504               hdr->type = ntohs (GNUNET_MESSAGE_TYPE_VPN_SERVICE_TCP);
505
506               memcpy (hc + 1, &pkt_tcp->tcp_hdr,
507                       ntohs (pkt->ip_hdr.tot_lngth) -
508                       4 * pkt->ip_hdr.hdr_lngth);
509
510             }
511             if (me->tunnel == NULL && NULL != cls)
512             {
513               *cls =
514                   GNUNET_MESH_peer_request_connect_all (mesh_handle,
515                                                         GNUNET_TIME_UNIT_FOREVER_REL,
516                                                         1,
517                                                         (struct
518                                                          GNUNET_PeerIdentity *)
519                                                         &me->desc.peer,
520                                                         send_pkt_to_peer, NULL,
521                                                         cls);
522               me->tunnel = *cls;
523             }
524             else if (NULL != cls)
525             {
526               *cls = me->tunnel;
527               send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
528               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
529                           "Queued to send to peer %x, type %d\n",
530                           *((unsigned int *) &me->desc.peer),
531                           ntohs (hdr->type));
532             }
533           }
534           else
535           {
536             /* This is a mapping to a "real" address */
537             struct remote_addr *s = (struct remote_addr *) hc;
538
539             s->addrlen = me->addrlen;
540             memcpy (s->addr, me->addr, me->addrlen);
541             s->proto = pkt->ip_hdr.proto;
542             if (s->proto == 0x11)
543             {
544               hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_UDP);
545               memcpy (hc + 1, &pkt_udp->udp_hdr, ntohs (pkt_udp->udp_hdr.len));
546               app_type = GNUNET_APPLICATION_TYPE_INTERNET_UDP_GATEWAY;
547             }
548             else if (s->proto == 0x06)
549             {
550               hdr->type = htons (GNUNET_MESSAGE_TYPE_VPN_REMOTE_TCP);
551               memcpy (hc + 1, &pkt_tcp->tcp_hdr,
552                       ntohs (pkt->ip_hdr.tot_lngth) -
553                       4 * pkt->ip_hdr.hdr_lngth);
554               app_type = GNUNET_APPLICATION_TYPE_INTERNET_TCP_GATEWAY;
555             }
556             if (me->tunnel == NULL && NULL != cls)
557             {
558               *cls =
559                   GNUNET_MESH_peer_request_connect_by_type (mesh_handle,
560                                                             GNUNET_TIME_UNIT_FOREVER_REL,
561                                                             app_type,
562                                                             send_pkt_to_peer,
563                                                             NULL, cls);
564               me->tunnel = *cls;
565             }
566             else if (NULL != cls)
567             {
568               *cls = me->tunnel;
569               send_pkt_to_peer (cls, (struct GNUNET_PeerIdentity *) 1, NULL);
570             }
571           }
572         }
573         else
574         {
575           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
576                       "Packet to %x which has no mapping\n", dadr);
577         }
578         break;
579       case 0x01:
580         /* ICMP */
581         pkt_icmp = (struct ip_icmp *) pkt;
582         if (pkt_icmp->icmp_hdr.type == 0x8 &&
583             (key = address4_mapping_exists (dadr)) != NULL)
584         {
585           GNUNET_free (key);
586           pkt_icmp = GNUNET_malloc (ntohs (pkt->shdr.size));
587           memcpy (pkt_icmp, pkt, ntohs (pkt->shdr.size));
588           GNUNET_SCHEDULER_add_now (&send_icmp4_response, pkt_icmp);
589         }
590         break;
591       }
592     }
593   }
594 }
595
596 void
597 write_to_helper (void *buf, size_t len)
598 {
599   (void) GNUNET_DISK_file_write (helper_handle->fh_to_helper, buf, len);
600 }
601
602 void
603 schedule_helper_write (struct GNUNET_TIME_Relative time, void *cls)
604 {
605   if (GNUNET_SCHEDULER_NO_TASK != shs_task)
606     return;
607   GNUNET_SCHEDULER_add_write_file (time, helper_handle->fh_to_helper,
608                                    &helper_write, cls);
609 }