- fix for 601 assertion
[oweals/gnunet.git] / src / vpn / gnunet-service-vpn.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010, 2011, 2012 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-service-vpn.c
23  * @brief service that opens a virtual interface and allows its clients
24  *        to allocate IPs on the virtual interface and to then redirect
25  *        IP traffic received on those IPs via the GNUnet mesh 
26  * @author Philipp Toelke
27  * @author Christian Grothoff
28  */
29 #include "platform.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_common.h"
32 #include "gnunet_protocols.h"
33 #include "gnunet_applications.h"
34 #include "gnunet_mesh_service.h"
35 #include "gnunet_statistics_service.h"
36 #include "gnunet_constants.h"
37 #include "gnunet_tun_lib.h"
38 #include "vpn.h"
39 #include "exit.h"
40
41
42 /**
43  * Maximum number of messages we allow in the queue for mesh.
44  */
45 #define MAX_MESSAGE_QUEUE_SIZE 4
46
47
48 /**
49  * State we keep for each of our tunnels.
50  */
51 struct TunnelState;
52
53
54 /**
55  * Information we track for each IP address to determine which tunnel
56  * to send the traffic over to the destination.
57  */
58 struct DestinationEntry
59 {
60
61   /**
62    * Key under which this entry is in the 'destination_map' (only valid
63    * if 'heap_node != NULL').
64    */
65   GNUNET_HashCode key;
66
67   /**
68    * Pre-allocated tunnel for this destination, or NULL for none.
69    */
70   struct TunnelState *ts;
71
72   /**
73    * Entry for this entry in the destination_heap.
74    */
75   struct GNUNET_CONTAINER_HeapNode *heap_node;
76
77   /**
78    * GNUNET_NO if this is a tunnel to an Internet-exit,
79    * GNUNET_YES if this tunnel is to a service.
80    */
81   int is_service;
82
83   /**
84    * Details about the connection (depending on is_service).
85    */
86   union
87   {
88
89     struct
90     {
91       /**
92        * The description of the service (only used for service tunnels).
93        */
94       GNUNET_HashCode service_descriptor;
95
96       /**
97        * Peer offering the service.
98        */
99       struct GNUNET_PeerIdentity target;
100
101     } service_destination;
102
103     struct 
104     {
105   
106       /**
107        * Address family used (AF_INET or AF_INET6).
108        */
109       int af;
110       
111       /**
112        * IP address of the ultimate destination (only used for exit tunnels).
113        */
114       union
115       {
116         /**
117          * Address if af is AF_INET.
118          */
119         struct in_addr v4;
120         
121         /**
122          * Address if af is AF_INET6.
123          */
124         struct in6_addr v6;
125       } ip;
126
127     } exit_destination;
128
129   } details;
130     
131 };
132
133
134 /**
135  * A messages we have in queue for a particular tunnel.
136  */
137 struct TunnelMessageQueueEntry
138 {
139   /**
140    * This is a doubly-linked list.
141    */
142   struct TunnelMessageQueueEntry *next;
143
144   /**
145    * This is a doubly-linked list.
146    */
147   struct TunnelMessageQueueEntry *prev;
148   
149   /**
150    * Number of bytes in 'msg'.
151    */
152   size_t len;
153
154   /**
155    * Message to transmit, allocated at the end of this struct.
156    */
157   const void *msg;
158 };
159
160
161 /**
162  * State we keep for each of our tunnels.
163  */
164 struct TunnelState
165 {
166
167   /**
168    * Information about the tunnel to use, NULL if no tunnel
169    * is available right now.
170    */
171   struct GNUNET_MESH_Tunnel *tunnel;
172
173   /**
174    * Active transmission handle, NULL for none.
175    */
176   struct GNUNET_MESH_TransmitHandle *th;
177
178   /**
179    * Entry for this entry in the tunnel_heap, NULL as long as this
180    * tunnel state is not fully bound.
181    */
182   struct GNUNET_CONTAINER_HeapNode *heap_node;
183
184   /**
185    * Head of list of messages scheduled for transmission.
186    */
187   struct TunnelMessageQueueEntry *tmq_head;
188
189   /**
190    * Tail of list of messages scheduled for transmission.
191    */
192   struct TunnelMessageQueueEntry *tmq_tail;  
193
194   /**
195    * Client that needs to be notified about the tunnel being
196    * up as soon as a peer is connected; NULL for none.
197    */
198   struct GNUNET_SERVER_Client *client;
199
200   /**
201    * Destination entry that has a pointer to this tunnel state;
202    * NULL if this tunnel state is in the tunnel map.
203    */
204   struct DestinationEntry *destination_container;
205
206   /**
207    * ID of the client request that caused us to setup this entry.
208    */ 
209   uint64_t request_id;
210
211   /**
212    * Destination to which this tunnel leads.  Note that
213    * this struct is NOT in the destination_map (but a
214    * local copy) and that the 'heap_node' should always
215    * be NULL.
216    */
217   struct DestinationEntry destination;
218
219   /**
220    * Task scheduled to destroy the tunnel (or NO_TASK).
221    */
222   GNUNET_SCHEDULER_TaskIdentifier destroy_task;
223
224   /**
225    * Addess family used for this tunnel on the local TUN interface.
226    */
227   int af;
228
229   /**
230    * Length of the doubly linked 'tmq_head/tmq_tail' list.
231    */
232   unsigned int tmq_length;
233
234   /**
235    * IPPROTO_TCP or IPPROTO_UDP once bound.
236    */
237   uint8_t protocol;
238
239   /**
240    * IP address of the source on our end, initially uninitialized.
241    */
242   union
243   {
244     /**
245      * Address if af is AF_INET.
246      */
247     struct in_addr v4;
248     
249     /**
250      * Address if af is AF_INET6.
251      */
252     struct in6_addr v6;
253
254   } source_ip;
255
256   /**
257    * Destination IP address used by the source on our end (this is the IP
258    * that we pick freely within the VPN's tunnel IP range).
259    */
260   union
261   {
262     /**
263      * Address if af is AF_INET.
264      */
265     struct in_addr v4;
266     
267     /**
268      * Address if af is AF_INET6.
269      */
270     struct in6_addr v6;
271
272   } destination_ip;
273
274   /**
275    * Source port used by the sender on our end; 0 for uninitialized.
276    */
277   uint16_t source_port;
278
279   /**
280    * Destination port used by the sender on our end; 0 for uninitialized.
281    */
282   uint16_t destination_port;
283
284 };
285
286
287 /**
288  * Return value from 'main'.
289  */
290 static int global_ret;
291
292 /**
293  * Configuration we use.
294  */
295 static const struct GNUNET_CONFIGURATION_Handle *cfg;
296
297 /**
298  * Handle to the mesh service.
299  */
300 static struct GNUNET_MESH_Handle *mesh_handle;
301
302 /**
303  * Map from IP address to destination information (possibly with a
304  * MESH tunnel handle for fast setup).
305  */
306 static struct GNUNET_CONTAINER_MultiHashMap *destination_map;
307
308 /**
309  * Min-Heap sorted by activity time to expire old mappings.
310  */
311 static struct GNUNET_CONTAINER_Heap *destination_heap;
312
313 /**
314  * Map from source and destination address (IP+port) to connection
315  * information (mostly with the respective MESH tunnel handle).
316  */
317 static struct GNUNET_CONTAINER_MultiHashMap *tunnel_map;
318
319 /**
320  * Min-Heap sorted by activity time to expire old mappings; values are
321  * of type 'struct TunnelState'.
322  */
323 static struct GNUNET_CONTAINER_Heap *tunnel_heap;
324
325 /**
326  * Statistics.
327  */
328 static struct GNUNET_STATISTICS_Handle *stats;
329
330 /**
331  * The handle to the VPN helper process "gnunet-helper-vpn".
332  */
333 static struct GNUNET_HELPER_Handle *helper_handle;
334
335 /**
336  * Arguments to the vpn helper.
337  */
338 static char *vpn_argv[7];
339
340 /**
341  * Length of the prefix of the VPN's IPv6 network.
342  */
343 static unsigned long long ipv6prefix;
344
345 /**
346  * Notification context for sending replies to clients.
347  */
348 static struct GNUNET_SERVER_NotificationContext *nc;
349
350 /**
351  * If there are more than this number of address-mappings, old ones
352  * will be removed
353  */
354 static unsigned long long max_destination_mappings;
355
356 /**
357  * If there are more than this number of open tunnels, old ones
358  * will be removed
359  */
360 static unsigned long long max_tunnel_mappings;
361
362
363 /**
364  * Compute the key under which we would store an entry in the
365  * destination_map for the given IP address.
366  *
367  * @param af address family (AF_INET or AF_INET6)
368  * @param address IP address, struct in_addr or struct in6_addr
369  * @param key where to store the key
370  */
371 static void
372 get_destination_key_from_ip (int af,
373                              const void *address,
374                              GNUNET_HashCode *key)
375 {
376   switch (af)
377   {
378   case AF_INET:
379     GNUNET_CRYPTO_hash (address,
380                         sizeof (struct in_addr),
381                         key);
382     break;
383   case AF_INET6:
384     GNUNET_CRYPTO_hash (address,
385                         sizeof (struct in6_addr),
386                         key);
387     break;
388   default:
389     GNUNET_assert (0);
390     break;
391   }
392 }
393
394
395 /**
396  * Compute the key under which we would store an entry in the
397  * tunnel_map for the given socket address pair.
398  *
399  * @param af address family (AF_INET or AF_INET6)
400  * @param protocol IPPROTO_TCP or IPPROTO_UDP
401  * @param source_ip sender's source IP, struct in_addr or struct in6_addr
402  * @param source_port sender's source port
403  * @param destination_ip sender's destination IP, struct in_addr or struct in6_addr
404  * @param destination_port sender's destination port
405  * @param key where to store the key
406  */
407 static void
408 get_tunnel_key_from_ips (int af,
409                          uint8_t protocol,
410                          const void *source_ip,
411                          uint16_t source_port,
412                          const void *destination_ip,
413                          uint16_t destination_port,
414                          GNUNET_HashCode *key)
415 {
416   char *off;
417
418   memset (key, 0, sizeof (GNUNET_HashCode));
419   /* the GNUnet hashmap only uses the first sizeof(unsigned int) of the hash,
420      so we put the ports in there (and hope for few collisions) */
421   off = (char*) key;
422   memcpy (off, &source_port, sizeof (uint16_t));
423   off += sizeof (uint16_t);
424   memcpy (off, &destination_port, sizeof (uint16_t));
425   off += sizeof (uint16_t);
426   switch (af)
427   {
428   case AF_INET:
429     memcpy (off, source_ip, sizeof (struct in_addr));
430     off += sizeof (struct in_addr);
431     memcpy (off, destination_ip, sizeof (struct in_addr));
432     off += sizeof (struct in_addr);
433     break;
434   case AF_INET6:
435     memcpy (off, source_ip, sizeof (struct in6_addr));
436     off += sizeof (struct in6_addr);
437     memcpy (off, destination_ip, sizeof (struct in6_addr));
438     off += sizeof (struct in6_addr);
439     break;
440   default:
441     GNUNET_assert (0);
442     break;
443   }
444   memcpy (off, &protocol, sizeof (uint8_t));
445   off += sizeof (uint8_t);  
446 }
447
448
449 /**
450  * Notify the client about the result of its request.
451  *
452  * @param client client to notify
453  * @param request_id original request ID to include in response
454  * @param result_af resulting address family
455  * @param addr resulting IP address
456  */
457 static void
458 send_client_reply (struct GNUNET_SERVER_Client *client,
459                    uint64_t request_id,
460                    int result_af,
461                    const void *addr)
462 {
463   char buf[sizeof (struct RedirectToIpResponseMessage) + sizeof (struct in6_addr)] GNUNET_ALIGN;
464   struct RedirectToIpResponseMessage *res;
465   size_t rlen;
466
467   switch (result_af)
468   {
469   case AF_INET:
470     rlen = sizeof (struct in_addr);    
471     break;
472   case AF_INET6:
473     rlen = sizeof (struct in6_addr);
474     break;
475   case AF_UNSPEC:
476     rlen = 0;
477     break;
478   default:
479     GNUNET_assert (0);
480     return;
481   }
482   res = (struct RedirectToIpResponseMessage *) buf;
483   res->header.size = htons (sizeof (struct RedirectToIpResponseMessage) + rlen);
484   res->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_CLIENT_USE_IP);
485   res->result_af = htonl (result_af);
486   res->request_id = request_id;
487   memcpy (&res[1], addr, rlen);
488   GNUNET_SERVER_notification_context_add (nc, client);
489   GNUNET_SERVER_notification_context_unicast (nc,
490                                               client,
491                                               &res->header,
492                                               GNUNET_NO);
493 }
494
495
496 /**
497  * Free resources associated with a tunnel state.
498  *
499  * @param ts state to free
500  */
501 static void
502 free_tunnel_state (struct TunnelState *ts)
503 {
504   GNUNET_HashCode key;
505   struct TunnelMessageQueueEntry *tnq;
506   struct GNUNET_MESH_Tunnel *tunnel;
507
508   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
509               "Cleaning up tunnel state\n");
510   GNUNET_STATISTICS_update (stats,
511                             gettext_noop ("# Active tunnels"),
512                             -1, GNUNET_NO);
513   while (NULL != (tnq = ts->tmq_head))
514   {
515     GNUNET_CONTAINER_DLL_remove (ts->tmq_head,
516                                  ts->tmq_tail,
517                                  tnq);
518     ts->tmq_length--;
519     GNUNET_free (tnq);
520   }
521   GNUNET_assert (0 == ts->tmq_length);
522   if (NULL != ts->client)
523   {
524     GNUNET_SERVER_client_drop (ts->client);
525     ts->client = NULL;
526   }
527   if (NULL != ts->th)
528   {
529     GNUNET_MESH_notify_transmit_ready_cancel (ts->th);
530     ts->th = NULL;
531   }
532   GNUNET_assert (NULL == ts->destination.heap_node);
533   if (NULL != (tunnel = ts->tunnel))
534   {
535     ts->tunnel = NULL;
536     GNUNET_MESH_tunnel_destroy (tunnel);
537   }
538   if (GNUNET_SCHEDULER_NO_TASK != ts->destroy_task)
539   {
540     GNUNET_SCHEDULER_cancel (ts->destroy_task);
541     ts->destroy_task = GNUNET_SCHEDULER_NO_TASK;
542   }
543   if (NULL != ts->heap_node)
544   {
545     GNUNET_CONTAINER_heap_remove_node (ts->heap_node);
546     ts->heap_node = NULL;
547     get_tunnel_key_from_ips (ts->af,
548                              ts->protocol,
549                              &ts->source_ip,
550                              ts->source_port,
551                              &ts->destination_ip,
552                              ts->destination_port,
553                              &key);
554     GNUNET_assert (GNUNET_YES ==
555                    GNUNET_CONTAINER_multihashmap_remove (tunnel_map,
556                                                          &key,
557                                                          ts));
558   }
559   if (NULL != ts->destination_container)
560   {
561     GNUNET_assert (ts == ts->destination_container->ts);
562     ts->destination_container->ts = NULL;
563     ts->destination_container = NULL;
564   }
565   GNUNET_free (ts);
566 }
567
568
569 /**
570  * Destroy the mesh tunnel.
571  *
572  * @param cls the 'struct TunnelState' with the tunnel to destroy
573  * @param tc scheduler context
574  */
575 static void
576 destroy_tunnel_task (void *cls,
577                      const struct GNUNET_SCHEDULER_TaskContext *tc)
578 {
579   struct TunnelState *ts = cls;
580   struct GNUNET_MESH_Tunnel *tunnel;
581
582   ts->destroy_task = GNUNET_SCHEDULER_NO_TASK;
583   GNUNET_assert (NULL != ts->tunnel);
584   tunnel = ts->tunnel;
585   ts->tunnel = NULL;
586   GNUNET_MESH_tunnel_destroy (tunnel);
587   free_tunnel_state (ts);
588 }
589
590
591 /**
592  * Method called whenever a peer has disconnected from the tunnel.
593  *
594  * @param cls closure
595  * @param peer peer identity the tunnel stopped working with
596  */
597 static void
598 tunnel_peer_disconnect_handler (void *cls,
599                                 const struct
600                                 GNUNET_PeerIdentity * peer)
601 {
602   struct TunnelState *ts = cls;
603
604   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
605               "Peer %s disconnected from tunnel.\n",
606               GNUNET_i2s (peer));
607   GNUNET_STATISTICS_update (stats,
608                             gettext_noop ("# Peers connected to mesh tunnels"),
609                             -1, GNUNET_NO);
610   if (NULL != ts->th)
611   {
612     GNUNET_MESH_notify_transmit_ready_cancel (ts->th);
613     ts->th = NULL;
614   }
615   if (ts->destination.is_service)
616     return; /* hope for reconnect eventually */
617   /* as we are most likely going to change the exit node now,
618      we should just destroy the tunnel entirely... */
619   if (GNUNET_SCHEDULER_NO_TASK == ts->destroy_task)
620     ts->destroy_task = GNUNET_SCHEDULER_add_now (&destroy_tunnel_task, ts);
621 }
622
623
624 /**
625  * Method called whenever a peer has connected to the tunnel.  Notifies
626  * the waiting client that the tunnel is now up.
627  *
628  * @param cls closure
629  * @param peer peer identity the tunnel was created to, NULL on timeout
630  * @param atsi performance data for the connection
631  */
632 static void
633 tunnel_peer_connect_handler (void *cls,
634                              const struct GNUNET_PeerIdentity
635                              * peer,
636                              const struct
637                              GNUNET_ATS_Information * atsi)
638 {
639   struct TunnelState *ts = cls;
640
641   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
642               "Peer %s connected to tunnel.\n",
643               GNUNET_i2s (peer));
644   GNUNET_STATISTICS_update (stats,
645                             gettext_noop ("# Peers connected to mesh tunnels"),
646                             1, GNUNET_NO);
647   if (NULL == ts->client)
648     return; /* nothing to do */
649   send_client_reply (ts->client,
650                      ts->request_id,
651                      ts->af,
652                      &ts->destination_ip);
653   GNUNET_SERVER_client_drop (ts->client);
654   ts->client = NULL;
655 }
656
657
658 /**
659  * Send a message from the message queue via mesh.
660  *
661  * @param cls the 'struct TunnelState' with the message queue
662  * @param size number of bytes available in buf
663  * @param buf where to copy the message
664  * @return number of bytes copied to buf
665  */
666 static size_t
667 send_to_peer_notify_callback (void *cls, size_t size, void *buf)
668 {
669   struct TunnelState *ts = cls;
670   struct TunnelMessageQueueEntry *tnq;
671   size_t ret;
672
673   ts->th = NULL;
674   if (NULL == buf)
675     return 0;
676   tnq = ts->tmq_head;
677   GNUNET_assert (NULL != tnq);
678   GNUNET_assert (size >= tnq->len);
679   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
680               "Sending %u bytes via mesh tunnel\n",
681               tnq->len);
682   GNUNET_CONTAINER_DLL_remove (ts->tmq_head,
683                                ts->tmq_tail,
684                                tnq);
685   ts->tmq_length--;
686   memcpy (buf, tnq->msg, tnq->len);
687   ret = tnq->len;
688   GNUNET_free (tnq);
689   if (NULL != (tnq = ts->tmq_head))
690     ts->th = GNUNET_MESH_notify_transmit_ready (ts->tunnel, 
691                                                 GNUNET_NO /* cork */, 
692                                                 42 /* priority */,
693                                                 GNUNET_TIME_UNIT_FOREVER_REL,
694                                                 NULL, 
695                                                 tnq->len,
696                                                 &send_to_peer_notify_callback,
697                                                 ts);
698   GNUNET_STATISTICS_update (stats,
699                             gettext_noop ("# Bytes given to mesh for transmission"),
700                             ret, GNUNET_NO);
701   return ret;
702 }
703
704
705 /**
706  * Add the given message to the given tunnel and trigger the
707  * transmission process.
708  *
709  * @param tnq message to queue
710  * @param ts tunnel to queue the message for
711  */
712 static void
713 send_to_tunnel (struct TunnelMessageQueueEntry *tnq,
714                 struct TunnelState *ts)
715 {
716   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
717               "Queueing %u bytes for transmission via mesh tunnel\n",
718               tnq->len);
719   GNUNET_assert (NULL != ts->tunnel);
720   GNUNET_CONTAINER_DLL_insert_tail (ts->tmq_head,
721                                     ts->tmq_tail,
722                                     tnq);
723   ts->tmq_length++;
724   if (ts->tmq_length > MAX_MESSAGE_QUEUE_SIZE)
725   {
726     struct TunnelMessageQueueEntry *dq;
727
728     dq = ts->tmq_head;
729     GNUNET_assert (dq != tnq);
730     GNUNET_CONTAINER_DLL_remove (ts->tmq_head,
731                                  ts->tmq_tail,
732                                  dq);
733     ts->tmq_length--;
734     GNUNET_MESH_notify_transmit_ready_cancel (ts->th);
735     ts->th = NULL;
736     GNUNET_STATISTICS_update (stats,
737                               gettext_noop ("# Bytes dropped in mesh queue (overflow)"),
738                               dq->len, 
739                               GNUNET_NO);
740     GNUNET_free (dq);
741   }
742   if (NULL == ts->th)
743     ts->th = GNUNET_MESH_notify_transmit_ready (ts->tunnel, 
744                                                 GNUNET_NO /* cork */,
745                                                 42 /* priority */,
746                                                 GNUNET_TIME_UNIT_FOREVER_REL,
747                                                 NULL, 
748                                                 tnq->len,
749                                                 &send_to_peer_notify_callback,
750                                                 ts);
751 }
752
753
754 /**
755  * Initialize the given destination entry's mesh tunnel.
756  *
757  * @param de destination entry for which we need to setup a tunnel
758  * @param client client to notify on successful tunnel setup, or NULL for none
759  * @param client_af address family of the address returned to the client
760  * @param request_id request ID to send in client notification (unused if client is NULL)
761  * @return tunnel state of the tunnel that was created
762  */
763 static struct TunnelState *
764 create_tunnel_to_destination (struct DestinationEntry *de,
765                               struct GNUNET_SERVER_Client *client,
766                               int client_af,
767                               uint64_t request_id)
768 {
769   struct TunnelState *ts;
770
771   GNUNET_STATISTICS_update (stats,
772                             gettext_noop ("# Mesh tunnels created"),
773                             1, GNUNET_NO);
774   GNUNET_assert (NULL == de->ts);
775   ts = GNUNET_malloc (sizeof (struct TunnelState));
776   ts->af = client_af;
777   if (NULL != client)
778   {
779     ts->request_id = request_id;
780     ts->client = client;
781     GNUNET_SERVER_client_keep (client);
782   }
783   ts->destination = *de;
784   ts->destination.heap_node = NULL; /* copy is NOT in destination heap */
785   de->ts = ts;
786   ts->destination_container = de; /* we are referenced from de */
787   ts->tunnel = GNUNET_MESH_tunnel_create (mesh_handle,
788                                           ts,
789                                           &tunnel_peer_connect_handler,
790                                           &tunnel_peer_disconnect_handler,
791                                           ts);
792   if (NULL == ts->tunnel)
793   {
794     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
795                 _("Failed to setup mesh tunnel!\n"));
796     if (NULL != client)
797       GNUNET_SERVER_client_drop (client);
798     GNUNET_free (ts);
799     return NULL;
800   }
801   if (de->is_service)
802   {
803     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
804                 "Creating tunnel to peer %s offering service %s\n",
805                 GNUNET_i2s (&de->details.service_destination.target),
806                 GNUNET_h2s (&de->details.service_destination.service_descriptor));
807     GNUNET_MESH_peer_request_connect_add (ts->tunnel,
808                                           &de->details.service_destination.target);  
809   }
810   else
811   {
812     switch (de->details.exit_destination.af)
813     {
814     case AF_INET:
815       GNUNET_MESH_peer_request_connect_by_type (ts->tunnel,
816                                                 GNUNET_APPLICATION_TYPE_IPV4_GATEWAY);
817       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
818                   "Creating tunnel to exit peer for %s\n",
819                   "IPv4");
820      break;
821     case AF_INET6:
822       GNUNET_MESH_peer_request_connect_by_type (ts->tunnel,
823                                                 GNUNET_APPLICATION_TYPE_IPV6_GATEWAY);
824       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
825                   "Creating tunnel to exit peer for %s\n",
826                   "IPv6");
827       break;
828     default:
829       GNUNET_assert (0);
830       break;
831     }
832   }  
833   return ts;
834 }
835
836
837 /**
838  * We have too many active tunnels.  Clean up the oldest tunnel.
839  *
840  * @param except tunnel that must NOT be cleaned up, even if it is the oldest
841  */
842 static void
843 expire_tunnel (struct TunnelState *except)
844 {
845   struct TunnelState *ts;
846
847   ts = GNUNET_CONTAINER_heap_peek (tunnel_heap);
848   GNUNET_assert (NULL != ts);
849   if (except == ts)
850     return; /* can't do this */
851   free_tunnel_state (ts);
852 }
853
854
855 /**
856  * Route a packet via mesh to the given destination.  
857  *
858  * @param destination description of the destination
859  * @param af address family on this end (AF_INET or AF_INET6)
860  * @param protocol IPPROTO_TCP or IPPROTO_UDP or IPPROTO_ICMP or IPPROTO_ICMPV6
861  * @param source_ip source IP used by the sender (struct in_addr or struct in6_addr)
862  * @param destination_ip destination IP used by the sender (struct in_addr or struct in6_addr)
863  * @param payload payload of the packet after the IP header
864  * @param payload_length number of bytes in payload
865  */
866 static void
867 route_packet (struct DestinationEntry *destination,
868               int af,
869               uint8_t protocol,
870               const void *source_ip,
871               const void *destination_ip,
872               const void *payload,
873               size_t payload_length)
874 {
875   GNUNET_HashCode key;
876   struct TunnelState *ts;
877   struct TunnelMessageQueueEntry *tnq;
878   size_t alen;
879   size_t mlen;
880   int is_new;
881   const struct GNUNET_TUN_UdpHeader *udp;
882   const struct GNUNET_TUN_TcpHeader *tcp;
883   const struct GNUNET_TUN_IcmpHeader *icmp;
884   uint16_t source_port;
885   uint16_t destination_port;
886
887   switch (protocol)
888   {
889   case IPPROTO_UDP:
890     {
891       if (payload_length < sizeof (struct GNUNET_TUN_UdpHeader))
892       {
893         /* blame kernel? */
894         GNUNET_break (0);
895         return;
896       }
897       tcp = NULL; /* make compiler happy */
898       icmp = NULL;  /* make compiler happy */
899       udp = payload;
900       if (udp->len < sizeof (struct GNUNET_TUN_UdpHeader))
901       {
902         GNUNET_break_op (0);
903         return;
904       }
905       source_port = ntohs (udp->source_port);
906       destination_port = ntohs (udp->destination_port);
907       get_tunnel_key_from_ips (af,
908                                IPPROTO_UDP,
909                                source_ip,
910                                source_port,
911                                destination_ip,
912                                destination_port,
913                                &key);
914     }
915     break;
916   case IPPROTO_TCP:
917     {
918       if (payload_length < sizeof (struct GNUNET_TUN_TcpHeader))
919       {
920         /* blame kernel? */
921         GNUNET_break (0);
922         return;
923       }      
924       udp = NULL; /* make compiler happy */
925       icmp = NULL;  /* make compiler happy */
926       tcp = payload;
927       if (tcp->off * 4 < sizeof (struct GNUNET_TUN_TcpHeader))
928       {
929         GNUNET_break_op (0);
930         return;
931       }
932       source_port = ntohs (tcp->source_port);
933       destination_port = ntohs (tcp->destination_port);
934       get_tunnel_key_from_ips (af,
935                                IPPROTO_TCP,
936                                source_ip,
937                                source_port,
938                                destination_ip,
939                                destination_port,
940                                &key);
941     }
942     break;
943   case IPPROTO_ICMP:  
944   case IPPROTO_ICMPV6:  
945     {
946       if ( (AF_INET == af) ^ (protocol == IPPROTO_ICMP) )
947       {
948         GNUNET_break (0);
949         return;
950       }
951       if (payload_length < sizeof (struct GNUNET_TUN_IcmpHeader))
952       {
953         /* blame kernel? */
954         GNUNET_break (0);
955         return;
956       }
957       tcp = NULL; /* make compiler happy */
958       udp = NULL;  /* make compiler happy */
959       icmp = payload;
960       source_port = 0;
961       destination_port = 0;
962       get_tunnel_key_from_ips (af,
963                                protocol,
964                                source_ip,
965                                0,
966                                destination_ip,
967                                0,
968                                &key);
969     }
970     break;
971   default:
972     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
973                 _("Protocol %u not supported, dropping\n"),
974                 (unsigned int) protocol);
975     return;
976   }
977   if (! destination->is_service)
978   {  
979     switch (destination->details.exit_destination.af)
980     {
981     case AF_INET:
982       alen = sizeof (struct in_addr);
983      break;
984     case AF_INET6:
985       alen = sizeof (struct in6_addr);
986       break;
987     default:
988       alen = 0;
989       GNUNET_assert (0);
990     }
991
992     {
993       char sbuf[INET6_ADDRSTRLEN];
994       char dbuf[INET6_ADDRSTRLEN];
995       char xbuf[INET6_ADDRSTRLEN];
996       
997       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
998                   "Routing %s packet from %s:%u -> %s:%u to destination %s:%u\n",
999                   (protocol == IPPROTO_TCP) ? "TCP" : "UDP",
1000                   inet_ntop (af, source_ip, sbuf, sizeof (sbuf)),
1001                   source_port,
1002                   inet_ntop (af, destination_ip, dbuf, sizeof (dbuf)),
1003                   destination_port,
1004                   inet_ntop (destination->details.exit_destination.af,
1005                              &destination->details.exit_destination.ip,
1006                              xbuf, sizeof (xbuf)),
1007                   destination_port);
1008     }
1009   }
1010   else
1011   {
1012     /* make compiler happy */
1013     alen = 0;
1014     {
1015       char sbuf[INET6_ADDRSTRLEN];
1016       char dbuf[INET6_ADDRSTRLEN];
1017       
1018       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1019                   "Routing %s packet from %s:%u -> %s:%u to service %s at peer %s\n",
1020                   (protocol == IPPROTO_TCP) ? "TCP" : "UDP",
1021                   inet_ntop (af, source_ip, sbuf, sizeof (sbuf)),
1022                   source_port,
1023                   inet_ntop (af, destination_ip, dbuf, sizeof (dbuf)),
1024                   destination_port,
1025                   GNUNET_h2s (&destination->details.service_destination.service_descriptor),
1026                   GNUNET_i2s (&destination->details.service_destination.target));
1027     }
1028
1029   }
1030
1031   /* see if we have an existing tunnel for this destination */
1032   ts = GNUNET_CONTAINER_multihashmap_get (tunnel_map,
1033                                           &key);
1034   if (NULL == ts)
1035   {
1036     /* need to either use the existing tunnel from the destination (if still
1037        available) or create a fresh one */
1038     is_new = GNUNET_YES;
1039     if (NULL == destination->ts)
1040       ts = create_tunnel_to_destination (destination, NULL, af, 0);
1041     else
1042       ts = destination->ts;
1043     if (NULL == ts)
1044       return;
1045     destination->ts = NULL;
1046     ts->destination_container = NULL; /* no longer 'contained' */
1047     /* now bind existing "unbound" tunnel to our IP/port tuple */
1048     ts->protocol = protocol;
1049     ts->af = af; 
1050     if (af == AF_INET)
1051     {
1052       ts->source_ip.v4 = * (const struct in_addr *) source_ip;
1053       ts->destination_ip.v4 = * (const struct in_addr *) destination_ip;
1054     }
1055     else
1056     {
1057       ts->source_ip.v6 = * (const struct in6_addr *) source_ip;
1058       ts->destination_ip.v6 = * (const struct in6_addr *) destination_ip;
1059     }
1060     ts->source_port = source_port;
1061     ts->destination_port = destination_port;
1062     ts->heap_node = GNUNET_CONTAINER_heap_insert (tunnel_heap,
1063                                                   ts,
1064                                                   GNUNET_TIME_absolute_get ().abs_value);
1065     GNUNET_assert (GNUNET_YES ==
1066                    GNUNET_CONTAINER_multihashmap_put (tunnel_map,
1067                                                       &key,
1068                                                       ts,
1069                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY)); 
1070     GNUNET_STATISTICS_update (stats,
1071                               gettext_noop ("# Active tunnels"),
1072                               1, GNUNET_NO);
1073     while (GNUNET_CONTAINER_multihashmap_size (tunnel_map) > max_tunnel_mappings)
1074       expire_tunnel (ts);
1075   }
1076   else
1077   {
1078     is_new = GNUNET_NO;
1079     GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
1080                                        ts->heap_node,
1081                                        GNUNET_TIME_absolute_get ().abs_value);
1082   }
1083   GNUNET_assert (NULL != ts->tunnel);
1084   
1085   /* send via tunnel */
1086   switch (protocol)
1087   {
1088   case IPPROTO_UDP:
1089     if (destination->is_service)
1090     {
1091       struct GNUNET_EXIT_UdpServiceMessage *usm;
1092
1093       mlen = sizeof (struct GNUNET_EXIT_UdpServiceMessage) + 
1094         payload_length - sizeof (struct GNUNET_TUN_UdpHeader);
1095       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1096       {
1097         GNUNET_break (0);
1098         return;
1099       }
1100       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1101       tnq->len = mlen;
1102       tnq->msg = &tnq[1];
1103       usm = (struct GNUNET_EXIT_UdpServiceMessage *) &tnq[1];
1104       usm->header.size = htons ((uint16_t) mlen);
1105       usm->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_UDP_TO_SERVICE);
1106       /* if the source port is below 32000, we assume it has a special
1107          meaning; if not, we pick a random port (this is a heuristic) */
1108       usm->source_port = (ntohs (udp->source_port) < 32000) ? udp->source_port : 0;
1109       usm->destination_port = udp->destination_port;
1110       usm->service_descriptor = destination->details.service_destination.service_descriptor;
1111       memcpy (&usm[1],
1112               &udp[1],
1113               payload_length - sizeof (struct GNUNET_TUN_UdpHeader));
1114     }
1115     else
1116     {
1117       struct GNUNET_EXIT_UdpInternetMessage *uim;
1118       struct in_addr *ip4dst;
1119       struct in6_addr *ip6dst;
1120       void *payload;
1121
1122       mlen = sizeof (struct GNUNET_EXIT_UdpInternetMessage) + 
1123         alen + payload_length - sizeof (struct GNUNET_TUN_UdpHeader);
1124       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1125       {
1126         GNUNET_break (0);
1127         return;
1128       }
1129       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + 
1130                            mlen);
1131       tnq->len = mlen;
1132       tnq->msg = &tnq[1];
1133       uim = (struct GNUNET_EXIT_UdpInternetMessage *) &tnq[1];
1134       uim->header.size = htons ((uint16_t) mlen);
1135       uim->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_UDP_TO_INTERNET); 
1136       uim->af = htonl (destination->details.exit_destination.af);
1137       uim->source_port = (ntohs (udp->source_port) < 32000) ? udp->source_port : 0;
1138       uim->destination_port = udp->destination_port;
1139       switch (destination->details.exit_destination.af)
1140       {
1141       case AF_INET:
1142         ip4dst = (struct in_addr *) &uim[1];
1143         *ip4dst = destination->details.exit_destination.ip.v4;
1144         payload = &ip4dst[1];
1145         break;
1146       case AF_INET6:
1147         ip6dst = (struct in6_addr *) &uim[1];
1148         *ip6dst = destination->details.exit_destination.ip.v6;
1149         payload = &ip6dst[1];
1150         break;
1151       default:
1152         GNUNET_assert (0);
1153       }
1154       memcpy (payload,
1155               &udp[1],
1156               payload_length - sizeof (struct GNUNET_TUN_UdpHeader));
1157     }
1158     break;
1159   case IPPROTO_TCP:
1160     if (is_new)
1161     {
1162       if (destination->is_service)
1163       {
1164         struct GNUNET_EXIT_TcpServiceStartMessage *tsm;
1165
1166         mlen = sizeof (struct GNUNET_EXIT_TcpServiceStartMessage) + 
1167           payload_length - sizeof (struct GNUNET_TUN_TcpHeader);
1168         if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1169         {
1170           GNUNET_break (0);
1171           return;
1172         }
1173         tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1174         tnq->len = mlen;
1175         tnq->msg = &tnq[1];
1176         tsm = (struct  GNUNET_EXIT_TcpServiceStartMessage *) &tnq[1];
1177         tsm->header.size = htons ((uint16_t) mlen);
1178         tsm->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_TCP_TO_SERVICE_START);
1179         tsm->reserved = htonl (0);
1180         tsm->service_descriptor = destination->details.service_destination.service_descriptor;
1181         tsm->tcp_header = *tcp;
1182         memcpy (&tsm[1],
1183                 &tcp[1],
1184                 payload_length - sizeof (struct GNUNET_TUN_TcpHeader));
1185       }
1186       else
1187       {
1188         struct GNUNET_EXIT_TcpInternetStartMessage *tim;
1189         struct in_addr *ip4dst;
1190         struct in6_addr *ip6dst;
1191         void *payload;
1192
1193         mlen = sizeof (struct GNUNET_EXIT_TcpInternetStartMessage) + 
1194           alen + payload_length - sizeof (struct GNUNET_TUN_TcpHeader);
1195         if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1196         {
1197           GNUNET_break (0);
1198           return;
1199         }
1200         tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1201         tnq->len = mlen;
1202         tnq->msg = &tnq[1];
1203         tim = (struct  GNUNET_EXIT_TcpInternetStartMessage *) &tnq[1];
1204         tim->header.size = htons ((uint16_t) mlen);
1205         tim->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_TCP_TO_INTERNET_START);
1206         tim->af = htonl (destination->details.exit_destination.af);     
1207         tim->tcp_header = *tcp;
1208         switch (destination->details.exit_destination.af)
1209         {
1210         case AF_INET:
1211           ip4dst = (struct in_addr *) &tim[1];
1212           *ip4dst = destination->details.exit_destination.ip.v4;
1213           payload = &ip4dst[1];
1214           break;
1215         case AF_INET6:
1216           ip6dst = (struct in6_addr *) &tim[1];
1217           *ip6dst = destination->details.exit_destination.ip.v6;
1218           payload = &ip6dst[1];
1219           break;
1220         default:
1221           GNUNET_assert (0);
1222         }
1223         memcpy (payload,
1224                 &tcp[1],
1225                 payload_length - sizeof (struct GNUNET_TUN_TcpHeader));
1226       }
1227     }
1228     else
1229     {
1230       struct GNUNET_EXIT_TcpDataMessage *tdm;
1231
1232       mlen = sizeof (struct GNUNET_EXIT_TcpDataMessage) + 
1233         payload_length - sizeof (struct GNUNET_TUN_TcpHeader);
1234       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1235       {
1236         GNUNET_break (0);
1237         return;
1238       }
1239       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1240       tnq->len = mlen;
1241       tnq->msg = &tnq[1];
1242       tdm = (struct  GNUNET_EXIT_TcpDataMessage *) &tnq[1];
1243       tdm->header.size = htons ((uint16_t) mlen);
1244       tdm->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_TCP_DATA_TO_EXIT);
1245       tdm->reserved = htonl (0);
1246       tdm->tcp_header = *tcp;
1247       memcpy (&tdm[1],
1248               &tcp[1],
1249               payload_length - sizeof (struct GNUNET_TUN_TcpHeader));
1250      }
1251     break;
1252   case IPPROTO_ICMP:
1253   case IPPROTO_ICMPV6:
1254     if (destination->is_service)
1255     {
1256       struct GNUNET_EXIT_IcmpServiceMessage *ism;
1257
1258       mlen = sizeof (struct GNUNET_EXIT_IcmpServiceMessage) + 
1259         payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);
1260       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1261       {
1262         GNUNET_break (0);
1263         return;
1264       }
1265       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1266       tnq->msg = &tnq[1];
1267       ism = (struct GNUNET_EXIT_IcmpServiceMessage *) &tnq[1];
1268       ism->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_ICMP_TO_SERVICE);
1269       ism->af = htonl (af); /* need to tell destination ICMP protocol family! */
1270       ism->service_descriptor = destination->details.service_destination.service_descriptor;
1271       ism->icmp_header = *icmp;
1272       /* ICMP protocol translation will be done by the receiver (as we don't know
1273          the target AF); however, we still need to possibly discard the payload
1274          depending on the ICMP type */
1275       switch (af)
1276       {
1277       case AF_INET:
1278         switch (icmp->type)
1279         {
1280         case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:
1281         case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:
1282           break;
1283         case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1284         case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1285         case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED:
1286           /* throw away ICMP payload, won't be useful for the other side anyway */
1287           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader); 
1288           break;
1289         default:
1290           GNUNET_STATISTICS_update (stats,
1291                                     gettext_noop ("# ICMPv4 packets dropped (not allowed)"),
1292                                     1, GNUNET_NO);
1293           return;
1294         }
1295         /* end of AF_INET */
1296         break;
1297       case AF_INET6:
1298         switch (icmp->type)
1299         {
1300         case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1301         case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1302         case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1303         case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1304           /* throw away ICMP payload, won't be useful for the other side anyway */
1305           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader); 
1306           break;
1307         case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1308         case GNUNET_TUN_ICMPTYPE6_ECHO_REPLY:
1309           break;
1310         default:
1311           GNUNET_STATISTICS_update (stats,
1312                                     gettext_noop ("# ICMPv6 packets dropped (not allowed)"),
1313                                     1, GNUNET_NO);
1314           return;
1315         }       
1316         /* end of AF_INET6 */
1317         break;
1318       default:
1319         GNUNET_assert (0);
1320         break;
1321       }
1322
1323       /* update length calculations, as payload_length may have changed */
1324       mlen = sizeof (struct GNUNET_EXIT_IcmpServiceMessage) + 
1325         alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);      
1326       tnq->len = mlen;
1327       ism->header.size = htons ((uint16_t) mlen);
1328       /* finally, copy payload (if there is any left...) */
1329       memcpy (&ism[1],
1330               &icmp[1],
1331               payload_length - sizeof (struct GNUNET_TUN_IcmpHeader));
1332     }
1333     else
1334     {
1335       struct GNUNET_EXIT_IcmpInternetMessage *iim;
1336       struct in_addr *ip4dst;
1337       struct in6_addr *ip6dst;
1338       void *payload;
1339
1340       mlen = sizeof (struct GNUNET_EXIT_IcmpInternetMessage) + 
1341         alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);
1342       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1343       {
1344         GNUNET_break (0);
1345         return;
1346       }
1347       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + 
1348                            mlen);
1349       tnq->msg = &tnq[1];
1350       iim = (struct GNUNET_EXIT_IcmpInternetMessage *) &tnq[1];
1351       iim->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_ICMP_TO_INTERNET); 
1352       iim->icmp_header = *icmp;
1353       /* Perform ICMP protocol-translation (depending on destination AF and source AF)
1354          and throw away ICMP payload depending on ICMP message type */
1355       switch (af)
1356       {
1357       case AF_INET:
1358         switch (icmp->type)
1359         {
1360         case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:      
1361           if (destination->details.exit_destination.af == AF_INET6)
1362             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_ECHO_REPLY;
1363           break;
1364         case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:    
1365           if (destination->details.exit_destination.af == AF_INET6)
1366             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST;
1367           break;
1368         case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1369           if (destination->details.exit_destination.af == AF_INET6)
1370             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE;
1371           /* throw away IP-payload, exit will have to make it up anyway */
1372           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1373           break;
1374         case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED: 
1375           if (destination->details.exit_destination.af == AF_INET6)
1376             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED;
1377           /* throw away IP-payload, exit will have to make it up anyway */
1378           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1379           break;
1380         case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1381           if (destination->details.exit_destination.af == AF_INET6)
1382             {
1383               GNUNET_STATISTICS_update (stats,
1384                                         gettext_noop ("# ICMPv4 packets dropped (impossible PT to v6)"),
1385                                         1, GNUNET_NO);
1386               GNUNET_free (tnq);
1387               return;
1388             }
1389           /* throw away IP-payload, exit will have to make it up anyway */
1390           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1391           break;
1392         default:
1393           GNUNET_STATISTICS_update (stats,
1394                                     gettext_noop ("# ICMPv4 packets dropped (type not allowed)"),
1395                                     1, GNUNET_NO);
1396           GNUNET_free (tnq);        
1397           return;
1398         }
1399         /* end of AF_INET */
1400         break;
1401       case AF_INET6:
1402         switch (icmp->type)
1403           {
1404           case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1405             if (destination->details.exit_destination.af == AF_INET6)
1406               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE;
1407             /* throw away IP-payload, exit will have to make it up anyway */
1408             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1409             break;
1410           case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1411             if (destination->details.exit_destination.af == AF_INET)
1412               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED;
1413             /* throw away IP-payload, exit will have to make it up anyway */
1414             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1415             break;
1416           case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1417             if (destination->details.exit_destination.af == AF_INET)
1418             {
1419               GNUNET_STATISTICS_update (stats,
1420                                         gettext_noop ("# ICMPv6 packets dropped (impossible PT to v4)"),
1421                                         1, GNUNET_NO);
1422               GNUNET_free (tnq);
1423               return;
1424             }
1425             /* throw away IP-payload, exit will have to make it up anyway */
1426             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1427             break;
1428           case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1429             if (destination->details.exit_destination.af == AF_INET)
1430             {
1431               GNUNET_STATISTICS_update (stats,
1432                                         gettext_noop ("# ICMPv6 packets dropped (impossible PT to v4)"),
1433                                         1, GNUNET_NO);
1434               GNUNET_free (tnq);
1435               return;
1436             }
1437             /* throw away IP-payload, exit will have to make it up anyway */
1438             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1439             break;
1440           case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1441             if (destination->details.exit_destination.af == AF_INET)
1442               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE_ECHO_REQUEST;
1443             break;
1444           case GNUNET_TUN_ICMPTYPE6_ECHO_REPLY:
1445             if (destination->details.exit_destination.af == AF_INET)
1446               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE_ECHO_REPLY;
1447             break;
1448           default:
1449             GNUNET_STATISTICS_update (stats,
1450                                       gettext_noop ("# ICMPv6 packets dropped (type not allowed)"),
1451                                       1, GNUNET_NO);
1452             GNUNET_free (tnq);      
1453             return;
1454           }
1455         /* end of AF_INET6 */
1456         break;
1457       default:
1458         GNUNET_assert (0);
1459       } 
1460       /* update length calculations, as payload_length may have changed */
1461       mlen = sizeof (struct GNUNET_EXIT_IcmpInternetMessage) + 
1462         alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);      
1463       tnq->len = mlen;
1464       iim->header.size = htons ((uint16_t) mlen);
1465
1466       /* need to tell destination ICMP protocol family! */
1467       iim->af = htonl (destination->details.exit_destination.af);
1468       switch (destination->details.exit_destination.af)
1469       {
1470       case AF_INET:
1471         ip4dst = (struct in_addr *) &iim[1];
1472         *ip4dst = destination->details.exit_destination.ip.v4;
1473         payload = &ip4dst[1];
1474         break;
1475       case AF_INET6:
1476         ip6dst = (struct in6_addr *) &iim[1];
1477         *ip6dst = destination->details.exit_destination.ip.v6;
1478         payload = &ip6dst[1];
1479         break;
1480       default:
1481         GNUNET_assert (0);
1482       }
1483       memcpy (payload,
1484               &icmp[1],
1485               payload_length - sizeof (struct GNUNET_TUN_IcmpHeader));
1486     }
1487     break;
1488   default:
1489     /* not supported above, how can we get here !? */
1490     GNUNET_assert (0);
1491     break;
1492   }
1493   send_to_tunnel (tnq, ts);
1494 }
1495
1496
1497 /**
1498  * Receive packets from the helper-process (someone send to the local
1499  * virtual tunnel interface).  Find the destination mapping, and if it
1500  * exists, identify the correct MESH tunnel (or possibly create it)
1501  * and forward the packet.
1502  *
1503  * @param cls closure, NULL
1504  * @param client NULL
1505  * @param message message we got from the client (VPN tunnel interface)
1506  */
1507 static void
1508 message_token (void *cls GNUNET_UNUSED, void *client GNUNET_UNUSED,
1509                const struct GNUNET_MessageHeader *message)
1510 {
1511   const struct GNUNET_TUN_Layer2PacketHeader *tun;
1512   size_t mlen;
1513   GNUNET_HashCode key;
1514   struct DestinationEntry *de;
1515
1516   GNUNET_STATISTICS_update (stats,
1517                             gettext_noop ("# Packets received from TUN interface"),
1518                             1, GNUNET_NO);
1519   mlen = ntohs (message->size);
1520   if ( (ntohs (message->type) != GNUNET_MESSAGE_TYPE_VPN_HELPER) ||
1521        (mlen < sizeof (struct GNUNET_MessageHeader) + sizeof (struct GNUNET_TUN_Layer2PacketHeader)) )
1522   {
1523     GNUNET_break (0);
1524     return;
1525   }
1526   tun = (const struct GNUNET_TUN_Layer2PacketHeader *) &message[1];
1527   mlen -= (sizeof (struct GNUNET_MessageHeader) + sizeof (struct GNUNET_TUN_Layer2PacketHeader));
1528   switch (ntohs (tun->proto))
1529   {
1530   case ETH_P_IPV6:
1531     {
1532       const struct GNUNET_TUN_IPv6Header *pkt6;
1533       
1534       if (mlen < sizeof (struct GNUNET_TUN_IPv6Header))
1535       {
1536         /* blame kernel */
1537         GNUNET_break (0);
1538         return;
1539       }
1540       pkt6 = (const struct GNUNET_TUN_IPv6Header *) &tun[1];
1541       get_destination_key_from_ip (AF_INET6,
1542                                    &pkt6->destination_address,
1543                                    &key);
1544       de = GNUNET_CONTAINER_multihashmap_get (destination_map, &key);
1545       /* FIXME: do we need to guard against hash collision? 
1546          (if so, we need to also store the local destination IP in the
1547          destination entry and then compare here; however, the risk
1548          of collision seems minimal AND the impact is unlikely to be
1549          super-problematic as well... */
1550       if (NULL == de)
1551       {
1552         char buf[INET6_ADDRSTRLEN];
1553         
1554         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1555                     _("Packet received for unmapped destination `%s' (dropping it)\n"),
1556                     inet_ntop (AF_INET6,
1557                                &pkt6->destination_address,
1558                                buf,
1559                                sizeof (buf)));
1560         return;
1561       }
1562       route_packet (de,
1563                     AF_INET6,
1564                     pkt6->next_header,
1565                     &pkt6->source_address,                  
1566                     &pkt6->destination_address,             
1567                     &pkt6[1],
1568                     mlen - sizeof (struct GNUNET_TUN_IPv6Header));
1569     }
1570     break;
1571   case ETH_P_IPV4:
1572     {
1573       struct GNUNET_TUN_IPv4Header *pkt4;
1574
1575       if (mlen < sizeof (struct GNUNET_TUN_IPv4Header))
1576       {
1577         /* blame kernel */
1578         GNUNET_break (0);
1579         return;
1580       }
1581       pkt4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
1582       get_destination_key_from_ip (AF_INET,
1583                                    &pkt4->destination_address,
1584                                    &key);
1585       de = GNUNET_CONTAINER_multihashmap_get (destination_map, &key);
1586       /* FIXME: do we need to guard against hash collision? 
1587          (if so, we need to also store the local destination IP in the
1588          destination entry and then compare here; however, the risk
1589          of collision seems minimal AND the impact is unlikely to be
1590          super-problematic as well... */
1591       if (NULL == de)
1592       {
1593         char buf[INET_ADDRSTRLEN];
1594         
1595         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1596                     _("Packet received for unmapped destination `%s' (dropping it)\n"),
1597                     inet_ntop (AF_INET,
1598                                &pkt4->destination_address,
1599                                buf,
1600                                sizeof (buf)));
1601         return;
1602       }
1603       if (pkt4->header_length * 4 != sizeof (struct GNUNET_TUN_IPv4Header))
1604       {
1605         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1606                     _("Received IPv4 packet with options (dropping it)\n"));                
1607         return;
1608       }
1609       route_packet (de,
1610                     AF_INET,
1611                     pkt4->protocol,
1612                     &pkt4->source_address,                  
1613                     &pkt4->destination_address,             
1614                     &pkt4[1],
1615                     mlen - sizeof (struct GNUNET_TUN_IPv4Header));
1616     }
1617     break;
1618   default:
1619     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1620                 _("Received packet of unknown protocol %d from TUN (dropping it)\n"),
1621                 (unsigned int) ntohs (tun->proto));
1622     break;
1623   }
1624 }
1625
1626
1627 /**
1628  * Synthesize a plausible ICMP payload for an ICMP error
1629  * response on the given tunnel.
1630  *
1631  * @param ts tunnel information
1632  * @param ipp IPv4 header to fill in (ICMP payload)
1633  * @param udp "UDP" header to fill in (ICMP payload); might actually
1634  *            also be the first 8 bytes of the TCP header
1635  */
1636 static void
1637 make_up_icmpv4_payload (struct TunnelState *ts,
1638                         struct GNUNET_TUN_IPv4Header *ipp,
1639                         struct GNUNET_TUN_UdpHeader *udp)
1640 {
1641   GNUNET_TUN_initialize_ipv4_header (ipp,
1642                                      ts->protocol,
1643                                      sizeof (struct GNUNET_TUN_TcpHeader),
1644                                      &ts->source_ip.v4,
1645                                      &ts->destination_ip.v4);
1646   udp->source_port = htons (ts->source_port);
1647   udp->destination_port = htons (ts->destination_port);
1648   udp->len = htons (0);
1649   udp->crc = htons (0);
1650 }
1651
1652
1653 /**
1654  * Synthesize a plausible ICMP payload for an ICMP error
1655  * response on the given tunnel.
1656  *
1657  * @param ts tunnel information
1658  * @param ipp IPv6 header to fill in (ICMP payload)
1659  * @param udp "UDP" header to fill in (ICMP payload); might actually
1660  *            also be the first 8 bytes of the TCP header
1661  */
1662 static void
1663 make_up_icmpv6_payload (struct TunnelState *ts,
1664                         struct GNUNET_TUN_IPv6Header *ipp,
1665                         struct GNUNET_TUN_UdpHeader *udp)
1666 {
1667   GNUNET_TUN_initialize_ipv6_header (ipp,
1668                                      ts->protocol,
1669                                      sizeof (struct GNUNET_TUN_TcpHeader),
1670                                      &ts->source_ip.v6,
1671                                      &ts->destination_ip.v6);
1672   udp->source_port = htons (ts->source_port);
1673   udp->destination_port = htons (ts->destination_port);
1674   udp->len = htons (0);
1675   udp->crc = htons (0);
1676 }
1677
1678
1679 /**
1680  * We got an ICMP packet back from the MESH tunnel.  Pass it on to the
1681  * local virtual interface via the helper.
1682  *
1683  * @param cls closure, NULL
1684  * @param tunnel connection to the other end
1685  * @param tunnel_ctx pointer to our 'struct TunnelState *'
1686  * @param sender who sent the message
1687  * @param message the actual message
1688  * @param atsi performance data for the connection
1689  * @return GNUNET_OK to keep the connection open,
1690  *         GNUNET_SYSERR to close it (signal serious error)
1691  */ 
1692 static int
1693 receive_icmp_back (void *cls GNUNET_UNUSED, struct GNUNET_MESH_Tunnel *tunnel,
1694                    void **tunnel_ctx, const struct GNUNET_PeerIdentity *sender,
1695                    const struct GNUNET_MessageHeader *message,
1696                    const struct GNUNET_ATS_Information *atsi GNUNET_UNUSED)
1697 {
1698   struct TunnelState *ts = *tunnel_ctx;
1699   const struct GNUNET_EXIT_IcmpToVPNMessage *i2v;
1700   size_t mlen;
1701
1702   GNUNET_STATISTICS_update (stats,
1703                             gettext_noop ("# ICMP packets received from mesh"),
1704                             1, GNUNET_NO);
1705   mlen = ntohs (message->size);
1706   if (mlen < sizeof (struct GNUNET_EXIT_IcmpToVPNMessage))
1707   {
1708     GNUNET_break_op (0);
1709     return GNUNET_SYSERR;
1710   }
1711   if (NULL == ts->heap_node)
1712   {
1713     GNUNET_break_op (0);
1714     return GNUNET_SYSERR;
1715   }
1716   if (AF_UNSPEC == ts->af)
1717   {
1718     GNUNET_break_op (0);
1719     return GNUNET_SYSERR;
1720   }
1721   i2v = (const struct GNUNET_EXIT_IcmpToVPNMessage *) message;
1722   mlen -= sizeof (struct GNUNET_EXIT_IcmpToVPNMessage);
1723   {
1724     char sbuf[INET6_ADDRSTRLEN];
1725     char dbuf[INET6_ADDRSTRLEN];
1726     
1727     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1728                 "Received ICMP packet from mesh, sending %u bytes from %s -> %s via TUN\n",
1729                 (unsigned int) mlen,
1730                 inet_ntop (ts->af, &ts->destination_ip, sbuf, sizeof (sbuf)),
1731                 inet_ntop (ts->af, &ts->source_ip, dbuf, sizeof (dbuf)));
1732   }
1733   switch (ts->af)
1734   {
1735   case AF_INET:
1736     {
1737       size_t size = sizeof (struct GNUNET_TUN_IPv4Header) 
1738         + sizeof (struct GNUNET_TUN_IcmpHeader) 
1739         + sizeof (struct GNUNET_MessageHeader) +
1740         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
1741         mlen;
1742       {
1743         /* reserve some extra space in case we have an ICMP type here where
1744            we will need to make up the payload ourselves */
1745         char buf[size + sizeof (struct GNUNET_TUN_IPv4Header) + 8] GNUNET_ALIGN;
1746         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
1747         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
1748         struct GNUNET_TUN_IPv4Header *ipv4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
1749         struct GNUNET_TUN_IcmpHeader *icmp = (struct GNUNET_TUN_IcmpHeader *) &ipv4[1];
1750         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1751         tun->flags = htons (0);
1752         tun->proto = htons (ETH_P_IPV4);
1753         GNUNET_TUN_initialize_ipv4_header (ipv4,
1754                                            IPPROTO_ICMP,
1755                                            sizeof (struct GNUNET_TUN_IcmpHeader) + mlen,
1756                                            &ts->destination_ip.v4,
1757                                            &ts->source_ip.v4);
1758         *icmp = i2v->icmp_header;
1759         memcpy (&icmp[1],
1760                 &i2v[1],
1761                 mlen);
1762         /* For some ICMP types, we need to adjust (make up) the payload here. 
1763            Also, depending on the AF used on the other side, we have to 
1764            do ICMP PT (translate ICMP types) */
1765         switch (ntohl (i2v->af))
1766         {
1767         case AF_INET:     
1768           switch (icmp->type)
1769           {
1770           case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:
1771           case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:
1772             break;
1773           case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1774           case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1775           case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED:         
1776             {
1777               struct GNUNET_TUN_IPv4Header *ipp = (struct GNUNET_TUN_IPv4Header *) &icmp[1];
1778               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1779               
1780               if (mlen != 0)
1781                 {
1782                   /* sender did not strip ICMP payload? */
1783                   GNUNET_break_op (0);
1784                   return GNUNET_SYSERR;
1785                 }
1786               size += sizeof (struct GNUNET_TUN_IPv4Header) + 8;
1787               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1788               make_up_icmpv4_payload (ts, ipp, udp);
1789             }
1790             break;
1791           default:
1792             GNUNET_break_op (0);
1793             GNUNET_STATISTICS_update (stats,
1794                                       gettext_noop ("# ICMPv4 packets dropped (type not allowed)"),
1795                                       1, GNUNET_NO);
1796             return GNUNET_SYSERR;
1797           }
1798           /* end AF_INET */
1799           break;
1800         case AF_INET6:
1801           /* ICMP PT 6-to-4 and possibly making up payloads */
1802           switch (icmp->type)
1803           {
1804           case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1805             icmp->type = GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE;
1806             {
1807               struct GNUNET_TUN_IPv4Header *ipp = (struct GNUNET_TUN_IPv4Header *) &icmp[1];
1808               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1809               
1810               if (mlen != 0)
1811                 {
1812                   /* sender did not strip ICMP payload? */
1813                   GNUNET_break_op (0);
1814                   return GNUNET_SYSERR;
1815                 }
1816               size += sizeof (struct GNUNET_TUN_IPv4Header) + 8;
1817               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1818               make_up_icmpv4_payload (ts, ipp, udp);
1819             }
1820             break;
1821           case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1822             icmp->type = GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED;
1823             {
1824               struct GNUNET_TUN_IPv4Header *ipp = (struct GNUNET_TUN_IPv4Header *) &icmp[1];
1825               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1826               
1827               if (mlen != 0)
1828                 {
1829                   /* sender did not strip ICMP payload? */
1830                   GNUNET_break_op (0);
1831                   return GNUNET_SYSERR;
1832                 }
1833               size += sizeof (struct GNUNET_TUN_IPv4Header) + 8;
1834               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1835               make_up_icmpv4_payload (ts, ipp, udp);
1836             }
1837             break;
1838           case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1839           case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1840             GNUNET_STATISTICS_update (stats,
1841                                       gettext_noop ("# ICMPv6 packets dropped (impossible PT to v4)"),
1842                                       1, GNUNET_NO);
1843             return GNUNET_OK;
1844           case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1845             icmp->type = GNUNET_TUN_ICMPTYPE_ECHO_REQUEST;
1846             break;
1847           case GNUNET_TUN_ICMPTYPE6_ECHO_REPLY:
1848             icmp->type = GNUNET_TUN_ICMPTYPE_ECHO_REPLY;
1849             break;
1850           default:
1851             GNUNET_break_op (0);
1852             GNUNET_STATISTICS_update (stats,
1853                                       gettext_noop ("# ICMPv6 packets dropped (type not allowed)"),
1854                                       1, GNUNET_NO);
1855             return GNUNET_SYSERR;
1856           }
1857           /* end AF_INET6 */
1858           break;
1859         default:
1860           GNUNET_break_op (0);
1861           return GNUNET_SYSERR;
1862         }       
1863         msg->size = htons (size);
1864         GNUNET_TUN_calculate_icmp_checksum (icmp,
1865                                             &i2v[1],
1866                                             mlen);
1867         (void) GNUNET_HELPER_send (helper_handle,
1868                                    msg,
1869                                    GNUNET_YES,
1870                                    NULL, NULL);
1871       }
1872     }
1873     break;
1874   case AF_INET6:
1875     {
1876       size_t size = sizeof (struct GNUNET_TUN_IPv6Header) 
1877         + sizeof (struct GNUNET_TUN_IcmpHeader) 
1878         + sizeof (struct GNUNET_MessageHeader) +
1879         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
1880         mlen;
1881       {
1882         char buf[size + sizeof (struct GNUNET_TUN_IPv6Header) + 8] GNUNET_ALIGN;
1883         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
1884         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
1885         struct GNUNET_TUN_IPv6Header *ipv6 = (struct GNUNET_TUN_IPv6Header *) &tun[1];
1886         struct GNUNET_TUN_IcmpHeader *icmp = (struct GNUNET_TUN_IcmpHeader *) &ipv6[1];
1887         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1888         tun->flags = htons (0);
1889         tun->proto = htons (ETH_P_IPV6);
1890         GNUNET_TUN_initialize_ipv6_header (ipv6,
1891                                            IPPROTO_ICMPV6,
1892                                            sizeof (struct GNUNET_TUN_IcmpHeader) + mlen,
1893                                            &ts->destination_ip.v6,
1894                                            &ts->source_ip.v6);
1895         *icmp = i2v->icmp_header;
1896         memcpy (&icmp[1],
1897                 &i2v[1],
1898                 mlen);
1899
1900         /* For some ICMP types, we need to adjust (make up) the payload here. 
1901            Also, depending on the AF used on the other side, we have to 
1902            do ICMP PT (translate ICMP types) */
1903         switch (ntohl (i2v->af))
1904         {
1905         case AF_INET:     
1906           /* ICMP PT 4-to-6 and possibly making up payloads */
1907           switch (icmp->type)
1908           {
1909           case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:
1910             icmp->type = GNUNET_TUN_ICMPTYPE6_ECHO_REPLY;
1911             break;
1912           case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:
1913             icmp->type = GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST;
1914             break;
1915           case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1916             icmp->type = GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE;
1917             {
1918               struct GNUNET_TUN_IPv6Header *ipp = (struct GNUNET_TUN_IPv6Header *) &icmp[1];
1919               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1920               
1921               if (mlen != 0)
1922                 {
1923                   /* sender did not strip ICMP payload? */
1924                   GNUNET_break_op (0);
1925                   return GNUNET_SYSERR;
1926                 }
1927               size += sizeof (struct GNUNET_TUN_IPv6Header) + 8;
1928               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1929               make_up_icmpv6_payload (ts, ipp, udp);
1930             }
1931             break;
1932           case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED:         
1933             icmp->type = GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED;
1934             {
1935               struct GNUNET_TUN_IPv6Header *ipp = (struct GNUNET_TUN_IPv6Header *) &icmp[1];
1936               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1937               
1938               if (mlen != 0)
1939                 {
1940                   /* sender did not strip ICMP payload? */
1941                   GNUNET_break_op (0);
1942                   return GNUNET_SYSERR;
1943                 }
1944               size += sizeof (struct GNUNET_TUN_IPv6Header) + 8;
1945               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1946               make_up_icmpv6_payload (ts, ipp, udp);
1947             }
1948             break;
1949           case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1950             GNUNET_STATISTICS_update (stats,
1951                                       gettext_noop ("# ICMPv4 packets dropped (impossible PT to v6)"),
1952                                       1, GNUNET_NO);        
1953             return GNUNET_OK;
1954           default:
1955             GNUNET_break_op (0);
1956             GNUNET_STATISTICS_update (stats,
1957                                       gettext_noop ("# ICMPv4 packets dropped (type not allowed)"),
1958                                       1, GNUNET_NO);
1959             return GNUNET_SYSERR;
1960           }
1961           /* end AF_INET */
1962           break;
1963         case AF_INET6:
1964           switch (icmp->type)
1965           {
1966           case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1967           case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1968           case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1969           case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1970             {
1971               struct GNUNET_TUN_IPv6Header *ipp = (struct GNUNET_TUN_IPv6Header *) &icmp[1];
1972               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1973               
1974               if (mlen != 0)
1975                 {
1976                   /* sender did not strip ICMP payload? */
1977                   GNUNET_break_op (0);
1978                   return GNUNET_SYSERR;
1979                 }
1980               size += sizeof (struct GNUNET_TUN_IPv6Header) + 8;
1981               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1982               make_up_icmpv6_payload (ts, ipp, udp);
1983             }
1984             break;
1985           case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1986             break;
1987           default:
1988             GNUNET_break_op (0);
1989             GNUNET_STATISTICS_update (stats,
1990                                       gettext_noop ("# ICMPv6 packets dropped (type not allowed)"),
1991                                       1, GNUNET_NO);
1992             return GNUNET_SYSERR;
1993           }
1994           /* end AF_INET6 */
1995           break;
1996         default:
1997           GNUNET_break_op (0);
1998           return GNUNET_SYSERR;
1999         }
2000         msg->size = htons (size);
2001         GNUNET_TUN_calculate_icmp_checksum (icmp,
2002                                             &i2v[1], mlen);
2003         (void) GNUNET_HELPER_send (helper_handle,
2004                                    msg,
2005                                    GNUNET_YES,
2006                                    NULL, NULL);
2007       }
2008     }
2009     break;
2010   default:
2011     GNUNET_assert (0);
2012   }
2013   GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
2014                                      ts->heap_node,
2015                                      GNUNET_TIME_absolute_get ().abs_value);
2016   return GNUNET_OK;
2017 }
2018
2019
2020 /**
2021  * We got a UDP packet back from the MESH tunnel.  Pass it on to the
2022  * local virtual interface via the helper.
2023  *
2024  * @param cls closure, NULL
2025  * @param tunnel connection to the other end
2026  * @param tunnel_ctx pointer to our 'struct TunnelState *'
2027  * @param sender who sent the message
2028  * @param message the actual message
2029  * @param atsi performance data for the connection
2030  * @return GNUNET_OK to keep the connection open,
2031  *         GNUNET_SYSERR to close it (signal serious error)
2032  */ 
2033 static int
2034 receive_udp_back (void *cls GNUNET_UNUSED, struct GNUNET_MESH_Tunnel *tunnel,
2035                   void **tunnel_ctx, const struct GNUNET_PeerIdentity *sender,
2036                   const struct GNUNET_MessageHeader *message,
2037                   const struct GNUNET_ATS_Information *atsi GNUNET_UNUSED)
2038 {
2039   struct TunnelState *ts = *tunnel_ctx;
2040   const struct GNUNET_EXIT_UdpReplyMessage *reply;
2041   size_t mlen;
2042
2043   GNUNET_STATISTICS_update (stats,
2044                             gettext_noop ("# UDP packets received from mesh"),
2045                             1, GNUNET_NO);
2046   mlen = ntohs (message->size);
2047   if (mlen < sizeof (struct GNUNET_EXIT_UdpReplyMessage))
2048   {
2049     GNUNET_break_op (0);
2050     return GNUNET_SYSERR;
2051   }
2052   if (NULL == ts->heap_node)
2053   {
2054     GNUNET_break_op (0);
2055     return GNUNET_SYSERR;
2056   }
2057   if (AF_UNSPEC == ts->af)
2058   {
2059     GNUNET_break_op (0);
2060     return GNUNET_SYSERR;
2061   }
2062   reply = (const struct GNUNET_EXIT_UdpReplyMessage *) message;
2063   mlen -= sizeof (struct GNUNET_EXIT_UdpReplyMessage);
2064   {
2065     char sbuf[INET6_ADDRSTRLEN];
2066     char dbuf[INET6_ADDRSTRLEN];
2067     
2068     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2069                 "Received UDP reply from mesh, sending %u bytes from %s:%u -> %s:%u via TUN\n",
2070                 (unsigned int) mlen,
2071                 inet_ntop (ts->af, &ts->destination_ip, sbuf, sizeof (sbuf)),
2072                 ts->destination_port,
2073                 inet_ntop (ts->af, &ts->source_ip, dbuf, sizeof (dbuf)),
2074                 ts->source_port);
2075   }
2076   switch (ts->af)
2077   {
2078   case AF_INET:
2079     {
2080       size_t size = sizeof (struct GNUNET_TUN_IPv4Header) 
2081         + sizeof (struct GNUNET_TUN_UdpHeader) 
2082         + sizeof (struct GNUNET_MessageHeader) +
2083         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2084         mlen;
2085       {
2086         char buf[size] GNUNET_ALIGN;
2087         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2088         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2089         struct GNUNET_TUN_IPv4Header *ipv4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
2090         struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipv4[1];
2091         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2092         msg->size = htons (size);
2093         tun->flags = htons (0);
2094         tun->proto = htons (ETH_P_IPV4);
2095         GNUNET_TUN_initialize_ipv4_header (ipv4,
2096                                            IPPROTO_UDP,
2097                                            sizeof (struct GNUNET_TUN_UdpHeader) + mlen,
2098                                            &ts->destination_ip.v4,
2099                                            &ts->source_ip.v4);
2100         if (0 == ntohs (reply->source_port))
2101           udp->source_port = htons (ts->destination_port);
2102         else
2103           udp->source_port = reply->source_port;
2104         if (0 == ntohs (reply->destination_port))
2105           udp->destination_port = htons (ts->source_port);
2106         else
2107           udp->destination_port = reply->destination_port;
2108         udp->len = htons (mlen + sizeof (struct GNUNET_TUN_UdpHeader));
2109         GNUNET_TUN_calculate_udp4_checksum (ipv4,
2110                                             udp,
2111                                             &reply[1],
2112                                             mlen);
2113         memcpy (&udp[1],
2114                 &reply[1],
2115                 mlen);
2116         (void) GNUNET_HELPER_send (helper_handle,
2117                                    msg,
2118                                    GNUNET_YES,
2119                                    NULL, NULL);
2120       }
2121     }
2122     break;
2123   case AF_INET6:
2124     {
2125       size_t size = sizeof (struct GNUNET_TUN_IPv6Header) 
2126         + sizeof (struct GNUNET_TUN_UdpHeader) 
2127         + sizeof (struct GNUNET_MessageHeader) +
2128         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2129         mlen;
2130       {
2131         char buf[size] GNUNET_ALIGN;
2132         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2133         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2134         struct GNUNET_TUN_IPv6Header *ipv6 = (struct GNUNET_TUN_IPv6Header *) &tun[1];
2135         struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipv6[1];
2136         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2137         msg->size = htons (size);
2138         tun->flags = htons (0);
2139         tun->proto = htons (ETH_P_IPV6);
2140         GNUNET_TUN_initialize_ipv6_header (ipv6,
2141                                            IPPROTO_UDP,
2142                                            sizeof (struct GNUNET_TUN_UdpHeader) + mlen,
2143                                            &ts->destination_ip.v6,
2144                                            &ts->source_ip.v6);
2145         if (0 == ntohs (reply->source_port))
2146           udp->source_port = htons (ts->destination_port);
2147         else
2148           udp->source_port = reply->source_port;
2149         if (0 == ntohs (reply->destination_port))
2150           udp->destination_port = htons (ts->source_port);
2151         else
2152           udp->destination_port = reply->destination_port;
2153         udp->len = htons (mlen + sizeof (struct GNUNET_TUN_UdpHeader));
2154         GNUNET_TUN_calculate_udp6_checksum (ipv6,
2155                                             udp,
2156                                             &reply[1], mlen);
2157         memcpy (&udp[1],
2158                 &reply[1],
2159                 mlen);
2160         (void) GNUNET_HELPER_send (helper_handle,
2161                                    msg,
2162                                    GNUNET_YES,
2163                                    NULL, NULL);
2164       }
2165     }
2166     break;
2167   default:
2168     GNUNET_assert (0);
2169   }
2170   GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
2171                                      ts->heap_node,
2172                                      GNUNET_TIME_absolute_get ().abs_value);
2173   return GNUNET_OK;
2174 }
2175
2176
2177 /**
2178  * We got a TCP packet back from the MESH tunnel.  Pass it on to the
2179  * local virtual interface via the helper.
2180  *
2181  * @param cls closure, NULL
2182  * @param tunnel connection to the other end
2183  * @param tunnel_ctx pointer to our 'struct TunnelState *'
2184  * @param sender who sent the message
2185  * @param message the actual message
2186  * @param atsi performance data for the connection
2187  * @return GNUNET_OK to keep the connection open,
2188  *         GNUNET_SYSERR to close it (signal serious error)
2189  */ 
2190 static int
2191 receive_tcp_back (void *cls GNUNET_UNUSED, struct GNUNET_MESH_Tunnel *tunnel,
2192                   void **tunnel_ctx,
2193                   const struct GNUNET_PeerIdentity *sender GNUNET_UNUSED,
2194                   const struct GNUNET_MessageHeader *message,
2195                   const struct GNUNET_ATS_Information *atsi GNUNET_UNUSED)
2196 {
2197   struct TunnelState *ts = *tunnel_ctx;
2198   const struct GNUNET_EXIT_TcpDataMessage *data;
2199   size_t mlen;
2200
2201   GNUNET_STATISTICS_update (stats,
2202                             gettext_noop ("# TCP packets received from mesh"),
2203                             1, GNUNET_NO);
2204   mlen = ntohs (message->size);
2205   if (mlen < sizeof (struct GNUNET_EXIT_TcpDataMessage))
2206   {
2207     GNUNET_break_op (0);
2208     return GNUNET_SYSERR;
2209   }
2210   if (NULL == ts->heap_node)
2211   {
2212     GNUNET_break_op (0);
2213     return GNUNET_SYSERR;
2214   }
2215   data = (const struct GNUNET_EXIT_TcpDataMessage *) message;
2216   mlen -= sizeof (struct GNUNET_EXIT_TcpDataMessage);
2217   {
2218     char sbuf[INET6_ADDRSTRLEN];
2219     char dbuf[INET6_ADDRSTRLEN];
2220     
2221     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2222                 "Received TCP reply from mesh, sending %u bytes from %s:%u -> %s:%u via TUN\n",
2223                 (unsigned int) mlen,
2224                 inet_ntop (ts->af, &ts->destination_ip, sbuf, sizeof (sbuf)),
2225                 ts->destination_port,
2226                 inet_ntop (ts->af, &ts->source_ip, dbuf, sizeof (dbuf)),
2227                 ts->source_port);
2228   }
2229   if (data->tcp_header.off * 4 < sizeof (struct GNUNET_TUN_TcpHeader))
2230   {
2231     GNUNET_break_op (0);
2232     return GNUNET_SYSERR;
2233   }
2234   switch (ts->af)
2235   {
2236   case AF_INET:
2237     {
2238       size_t size = sizeof (struct GNUNET_TUN_IPv4Header) 
2239         + sizeof (struct GNUNET_TUN_TcpHeader) 
2240         + sizeof (struct GNUNET_MessageHeader) +
2241         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2242         mlen;
2243       {
2244         char buf[size] GNUNET_ALIGN;
2245         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2246         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2247         struct GNUNET_TUN_IPv4Header *ipv4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
2248         struct GNUNET_TUN_TcpHeader *tcp = (struct GNUNET_TUN_TcpHeader *) &ipv4[1];
2249         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2250         msg->size = htons (size);
2251         tun->flags = htons (0);
2252         tun->proto = htons (ETH_P_IPV4);
2253         GNUNET_TUN_initialize_ipv4_header (ipv4,
2254                                            IPPROTO_TCP,
2255                                            sizeof (struct GNUNET_TUN_TcpHeader) + mlen,
2256                                            &ts->destination_ip.v4,
2257                                            &ts->source_ip.v4);
2258         *tcp = data->tcp_header;
2259         tcp->source_port = htons (ts->destination_port);
2260         tcp->destination_port = htons (ts->source_port);
2261         GNUNET_TUN_calculate_tcp4_checksum (ipv4,
2262                                             tcp,
2263                                             &data[1],
2264                                             mlen);
2265         memcpy (&tcp[1],
2266                 &data[1],
2267                 mlen);
2268         (void) GNUNET_HELPER_send (helper_handle,
2269                                    msg,
2270                                    GNUNET_YES,
2271                                    NULL, NULL);
2272       }
2273     }
2274     break;
2275   case AF_INET6:
2276     {
2277       size_t size = sizeof (struct GNUNET_TUN_IPv6Header) 
2278         + sizeof (struct GNUNET_TUN_TcpHeader) 
2279         + sizeof (struct GNUNET_MessageHeader) +
2280         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2281         mlen;
2282       {
2283         char buf[size] GNUNET_ALIGN;
2284         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2285         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2286         struct GNUNET_TUN_IPv6Header *ipv6 = (struct GNUNET_TUN_IPv6Header *) &tun[1];
2287         struct GNUNET_TUN_TcpHeader *tcp = (struct GNUNET_TUN_TcpHeader *) &ipv6[1];
2288         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2289         msg->size = htons (size);
2290         tun->flags = htons (0);
2291         tun->proto = htons (ETH_P_IPV6);
2292         GNUNET_TUN_initialize_ipv6_header (ipv6,
2293                                            IPPROTO_TCP,
2294                                            sizeof (struct GNUNET_TUN_TcpHeader) + mlen,
2295                                            &ts->destination_ip.v6,
2296                                            &ts->source_ip.v6);
2297         *tcp = data->tcp_header;
2298         tcp->source_port = htons (ts->destination_port);
2299         tcp->destination_port = htons (ts->source_port);
2300         GNUNET_TUN_calculate_tcp6_checksum (ipv6,
2301                                             tcp,
2302                                             &data[1],
2303                                             mlen);
2304         memcpy (&tcp[1],
2305                 &data[1],
2306                 mlen);
2307         (void) GNUNET_HELPER_send (helper_handle,
2308                                    msg,
2309                                    GNUNET_YES,
2310                                    NULL, NULL);
2311       }
2312     }
2313     break;
2314   }
2315   GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
2316                                      ts->heap_node,
2317                                      GNUNET_TIME_absolute_get ().abs_value);
2318   return GNUNET_OK;
2319 }
2320
2321
2322 /**
2323  * Allocate an IPv4 address from the range of the tunnel
2324  * for a new redirection.
2325  *
2326  * @param v4 where to store the address
2327  * @return GNUNET_OK on success,
2328  *         GNUNET_SYSERR on error
2329  */
2330 static int
2331 allocate_v4_address (struct in_addr *v4)
2332 {
2333   const char *ipv4addr = vpn_argv[4];
2334   const char *ipv4mask = vpn_argv[5];
2335   struct in_addr addr;
2336   struct in_addr mask;
2337   struct in_addr rnd;
2338   GNUNET_HashCode key;
2339   unsigned int tries;
2340
2341   GNUNET_assert (1 == inet_pton (AF_INET, ipv4addr, &addr));
2342   GNUNET_assert (1 == inet_pton (AF_INET, ipv4mask, &mask));           
2343   /* Given 192.168.0.1/255.255.0.0, we want a mask 
2344      of '192.168.255.255', thus:  */
2345   mask.s_addr = addr.s_addr | ~mask.s_addr;  
2346   tries = 0;
2347   do
2348     {
2349       tries++;
2350       if (tries > 16)
2351       {
2352         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2353                     _("Failed to find unallocated IPv4 address in VPN's range\n"));
2354         return GNUNET_SYSERR;
2355       }
2356       /* Pick random IPv4 address within the subnet, except 'addr' or 'mask' itself */
2357       rnd.s_addr = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
2358                                              UINT32_MAX);       
2359       v4->s_addr = (addr.s_addr | rnd.s_addr) & mask.s_addr;          
2360       get_destination_key_from_ip (AF_INET,
2361                                    v4,
2362                                    &key);
2363     }
2364   while ( (GNUNET_YES ==
2365            GNUNET_CONTAINER_multihashmap_contains (destination_map,
2366                                                    &key)) ||
2367           (v4->s_addr == addr.s_addr) ||
2368           (v4->s_addr == mask.s_addr) );
2369   return GNUNET_OK;
2370 }
2371
2372
2373 /**
2374  * Allocate an IPv6 address from the range of the tunnel
2375  * for a new redirection.
2376  *
2377  * @param v6 where to store the address
2378  * @return GNUNET_OK on success,
2379  *         GNUNET_SYSERR on error
2380  */
2381 static int
2382 allocate_v6_address (struct in6_addr *v6)
2383 {
2384   const char *ipv6addr = vpn_argv[2];
2385   struct in6_addr addr;
2386   struct in6_addr mask;
2387   struct in6_addr rnd;
2388   int i;
2389   GNUNET_HashCode key;
2390   unsigned int tries;
2391
2392   GNUNET_assert (1 == inet_pton (AF_INET6, ipv6addr, &addr));
2393   GNUNET_assert (ipv6prefix < 128);
2394   /* Given ABCD::/96, we want a mask of 'ABCD::FFFF:FFFF,
2395      thus: */
2396   mask = addr;
2397   for (i=127;i>=ipv6prefix;i--)
2398     mask.s6_addr[i / 8] |= (1 << (i % 8));
2399   
2400   /* Pick random IPv6 address within the subnet, except 'addr' or 'mask' itself */
2401   tries = 0;
2402   do
2403     {
2404       tries++;
2405       if (tries > 16)
2406         {
2407           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2408                       _("Failed to find unallocated IPv6 address in VPN's range\n"));
2409           return GNUNET_SYSERR;
2410
2411         }
2412       for (i=0;i<16;i++)
2413         {
2414           rnd.s6_addr[i] = (unsigned char) GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
2415                                                                      256);
2416           v6->s6_addr[i]
2417             = (addr.s6_addr[i] | rnd.s6_addr[i]) & mask.s6_addr[i];
2418         }
2419       get_destination_key_from_ip (AF_INET6,
2420                                    v6,
2421                                    &key);
2422     }
2423   while ( (GNUNET_YES ==
2424            GNUNET_CONTAINER_multihashmap_contains (destination_map,
2425                                                    &key)) ||
2426           (0 == memcmp (v6,
2427                         &addr,
2428                         sizeof (struct in6_addr))) ||
2429           (0 == memcmp (v6,
2430                         &mask,
2431                         sizeof (struct in6_addr))) );
2432   return GNUNET_OK;
2433 }
2434
2435
2436 /**
2437  * Free resources occupied by a destination entry.
2438  *
2439  * @param de entry to free
2440  */
2441 static void
2442 free_destination_entry (struct DestinationEntry *de)
2443 {
2444   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2445               "Cleaning up destination entry\n");
2446   GNUNET_STATISTICS_update (stats,
2447                             gettext_noop ("# Active destinations"),
2448                             -1, GNUNET_NO);
2449   if (NULL != de->ts)
2450   {
2451     free_tunnel_state (de->ts);
2452     GNUNET_assert (NULL == de->ts);
2453   }
2454   if (NULL != de->heap_node)
2455   {
2456     GNUNET_CONTAINER_heap_remove_node (de->heap_node);
2457     de->heap_node = NULL;  
2458     GNUNET_assert (GNUNET_YES ==
2459                    GNUNET_CONTAINER_multihashmap_remove (destination_map,
2460                                                          &de->key,
2461                                                          de));
2462   }
2463   GNUNET_free (de);
2464 }
2465
2466
2467 /**
2468  * We have too many active destinations.  Clean up the oldest destination.
2469  *
2470  * @param except destination that must NOT be cleaned up, even if it is the oldest
2471  */
2472 static void 
2473 expire_destination (struct DestinationEntry *except)
2474 {
2475   struct DestinationEntry *de;
2476
2477   de = GNUNET_CONTAINER_heap_peek (destination_heap);
2478   GNUNET_assert (NULL != de);
2479   if (except == de)
2480     return; /* can't do this */
2481   free_destination_entry (de);
2482 }
2483
2484
2485 /**
2486  * Allocate an IP address for the response.  
2487  *
2488  * @param result_af desired address family; set to the actual
2489  *        address family; can initially be AF_UNSPEC if there
2490  *        is no preference; will be set to AF_UNSPEC if the
2491  *        allocation failed
2492  * @param addr set to either v4 or v6 depending on which 
2493  *         storage location was used; set to NULL if allocation failed
2494  * @param v4 storage space for an IPv4 address
2495  * @param v6 storage space for an IPv6 address
2496  * @return GNUNET_OK normally, GNUNET_SYSERR if '*result_af' was
2497  *         an unsupported address family (not AF_INET, AF_INET6 or AF_UNSPEC)
2498  */
2499 static int
2500 allocate_response_ip (int *result_af,
2501                       void **addr,
2502                       struct in_addr *v4,
2503                       struct in6_addr *v6)
2504 {
2505   *addr = NULL;
2506   switch (*result_af)
2507   {
2508   case AF_INET:
2509     if (GNUNET_OK !=
2510         allocate_v4_address (v4))
2511       *result_af = AF_UNSPEC;
2512     else
2513       *addr = v4;
2514     break;
2515   case AF_INET6:
2516     if (GNUNET_OK !=
2517         allocate_v6_address (v6))
2518       *result_af = AF_UNSPEC;
2519     else
2520       *addr = v6;
2521     break;
2522   case AF_UNSPEC:
2523     if (GNUNET_OK ==
2524         allocate_v4_address (v4))
2525     {
2526       *addr = v4;
2527       *result_af = AF_INET;
2528     }
2529     else if (GNUNET_OK ==
2530         allocate_v6_address (v6))
2531     {
2532       *addr = v6;
2533       *result_af = AF_INET6;
2534     }
2535     break;
2536   default:
2537     GNUNET_break (0);
2538     return GNUNET_SYSERR;
2539   }
2540   return GNUNET_OK;
2541 }                     
2542
2543
2544 /**
2545  * A client asks us to setup a redirection via some exit
2546  * node to a particular IP.  Setup the redirection and
2547  * give the client the allocated IP.
2548  *
2549  * @param cls unused
2550  * @param client requesting client
2551  * @param message redirection request (a 'struct RedirectToIpRequestMessage')
2552  */
2553 static void
2554 service_redirect_to_ip (void *cls GNUNET_UNUSED, struct GNUNET_SERVER_Client *client,
2555                         const struct GNUNET_MessageHeader *message)
2556 {
2557   size_t mlen;
2558   size_t alen;
2559   const struct RedirectToIpRequestMessage *msg;
2560   int addr_af;
2561   int result_af;
2562   struct in_addr v4;
2563   struct in6_addr v6;
2564   void *addr;
2565   struct DestinationEntry *de;
2566   GNUNET_HashCode key;
2567   struct TunnelState *ts;
2568   
2569   /* validate and parse request */
2570   mlen = ntohs (message->size);
2571   if (mlen < sizeof (struct RedirectToIpRequestMessage))
2572   {
2573     GNUNET_break (0);
2574     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2575     return;
2576   }
2577   alen = mlen - sizeof (struct RedirectToIpRequestMessage);
2578   msg = (const struct RedirectToIpRequestMessage *) message;
2579   addr_af = (int) htonl (msg->addr_af);
2580   switch (addr_af)
2581   {
2582   case AF_INET:
2583     if (alen != sizeof (struct in_addr))
2584     {
2585       GNUNET_break (0);
2586       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2587       return;      
2588     }
2589     break;
2590   case AF_INET6:
2591     if (alen != sizeof (struct in6_addr))
2592     {
2593       GNUNET_break (0);
2594       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2595       return;      
2596     }
2597     break;
2598   default:
2599     GNUNET_break (0);
2600     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2601     return;      
2602   }
2603
2604   /* allocate response IP */
2605   result_af = (int) htonl (msg->result_af);
2606   if (GNUNET_OK != allocate_response_ip (&result_af,
2607                                          &addr,
2608                                          &v4, &v6))
2609   {
2610     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2611     return;      
2612   }
2613   if ( (result_af == AF_UNSPEC) ||
2614        (GNUNET_NO == ntohl (msg->nac)) )
2615   {
2616     /* send reply "instantly" */
2617     send_client_reply (client,
2618                        msg->request_id,
2619                        result_af,
2620                        addr);
2621   }
2622   if (result_af == AF_UNSPEC)
2623   {
2624     /* failure, we're done */
2625     GNUNET_SERVER_receive_done (client, GNUNET_OK);
2626     return;
2627   }
2628
2629   {
2630     char sbuf[INET6_ADDRSTRLEN];
2631     char dbuf[INET6_ADDRSTRLEN];
2632     
2633     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2634                 "Allocated address %s for redirection via exit to %s\n",
2635                 inet_ntop (result_af, addr, sbuf, sizeof (sbuf)),
2636                 inet_ntop (addr_af,
2637                            &msg[1], dbuf, sizeof (dbuf)));
2638   }
2639   
2640   /* setup destination record */
2641   de = GNUNET_malloc (sizeof (struct DestinationEntry));
2642   de->is_service = GNUNET_NO;
2643   de->details.exit_destination.af = addr_af;
2644   memcpy (&de->details.exit_destination.ip,
2645           &msg[1],
2646           alen);
2647   get_destination_key_from_ip (result_af,
2648                                addr,
2649                                &key);
2650   de->key = key;
2651   GNUNET_assert (GNUNET_OK ==
2652                  GNUNET_CONTAINER_multihashmap_put (destination_map,
2653                                                     &key,
2654                                                     de,
2655                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
2656   de->heap_node = GNUNET_CONTAINER_heap_insert (destination_heap,
2657                                                 de,
2658                                                 GNUNET_TIME_absolute_ntoh (msg->expiration_time).abs_value);
2659   GNUNET_STATISTICS_update (stats,
2660                             gettext_noop ("# Active destinations"),
2661                             1, GNUNET_NO);
2662   while (GNUNET_CONTAINER_multihashmap_size (destination_map) > max_destination_mappings)
2663     expire_destination (de);
2664   
2665   /* setup tunnel to destination */
2666   ts = create_tunnel_to_destination (de, 
2667                                      (GNUNET_NO == ntohl (msg->nac)) ? NULL : client,
2668                                      result_af,
2669                                      msg->request_id);
2670   switch (result_af)
2671   {
2672   case AF_INET:
2673     ts->destination_ip.v4 = v4;
2674     break;
2675   case AF_INET6:
2676     ts->destination_ip.v6 = v6;
2677     break;
2678   default:
2679     GNUNET_assert (0);
2680   }
2681   /* we're done */
2682   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2683 }
2684
2685
2686 /**
2687  * A client asks us to setup a redirection to a particular peer
2688  * offering a service.  Setup the redirection and give the client the
2689  * allocated IP.
2690  *
2691  * @param cls unused
2692  * @param client requesting client
2693  * @param message redirection request (a 'struct RedirectToPeerRequestMessage')
2694  */
2695 static void
2696 service_redirect_to_service (void *cls GNUNET_UNUSED, struct GNUNET_SERVER_Client *client,
2697                              const struct GNUNET_MessageHeader *message)
2698 {
2699   const struct RedirectToServiceRequestMessage *msg;
2700   int result_af;
2701   struct in_addr v4;
2702   struct in6_addr v6;
2703   void *addr;
2704   struct DestinationEntry *de;
2705   GNUNET_HashCode key;
2706   struct TunnelState *ts;
2707   
2708   /*  parse request */
2709   msg = (const struct RedirectToServiceRequestMessage *) message;
2710
2711   /* allocate response IP */
2712   result_af = (int) htonl (msg->result_af);
2713   if (GNUNET_OK != allocate_response_ip (&result_af,
2714                                          &addr,
2715                                          &v4, &v6))
2716   {
2717     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2718     return;      
2719   }
2720   if ( (result_af == AF_UNSPEC) ||
2721        (GNUNET_NO == ntohl (msg->nac)) )
2722   {
2723     /* send reply "instantly" */
2724     send_client_reply (client,
2725                        msg->request_id,
2726                        result_af,
2727                        addr);
2728   }
2729   if (result_af == AF_UNSPEC)
2730   {
2731     /* failure, we're done */
2732     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2733                 _("Failed to allocate IP address for new destination\n"));
2734     GNUNET_SERVER_receive_done (client, GNUNET_OK);
2735     return;
2736   }
2737
2738   {
2739     char sbuf[INET6_ADDRSTRLEN];
2740     
2741     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2742                 "Allocated address %s for redirection to service %s on peer %s\n",
2743                 inet_ntop (result_af, addr, sbuf, sizeof (sbuf)),
2744                 GNUNET_h2s (&msg->service_descriptor),
2745                 GNUNET_i2s (&msg->target));
2746   }
2747   
2748   /* setup destination record */
2749   de = GNUNET_malloc (sizeof (struct DestinationEntry));
2750   de->is_service = GNUNET_YES;
2751   de->details.service_destination.service_descriptor = msg->service_descriptor;
2752   de->details.service_destination.target = msg->target;
2753   get_destination_key_from_ip (result_af,
2754                                addr,
2755                                &key);
2756   de->key = key;
2757   GNUNET_assert (GNUNET_OK ==
2758                  GNUNET_CONTAINER_multihashmap_put (destination_map,
2759                                                     &key,
2760                                                     de,
2761                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
2762   de->heap_node = GNUNET_CONTAINER_heap_insert (destination_heap,
2763                                                 de,
2764                                                 GNUNET_TIME_absolute_ntoh (msg->expiration_time).abs_value);
2765   while (GNUNET_CONTAINER_multihashmap_size (destination_map) > max_destination_mappings)
2766     expire_destination (de);
2767   ts = create_tunnel_to_destination (de,
2768                                      (GNUNET_NO == ntohl (msg->nac)) ? NULL : client,
2769                                      result_af,
2770                                      msg->request_id);
2771   switch (result_af)
2772   {
2773   case AF_INET:
2774     ts->destination_ip.v4 = v4;
2775     break;
2776   case AF_INET6:
2777     ts->destination_ip.v6 = v6;
2778     break;
2779   default:
2780     GNUNET_assert (0);
2781   }
2782   /* we're done */
2783   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2784 }
2785
2786
2787
2788 /**
2789  * Function called for inbound tunnels.  As we don't offer
2790  * any mesh services, this function should never be called.
2791  *
2792  * @param cls closure
2793  * @param tunnel new handle to the tunnel
2794  * @param initiator peer that started the tunnel
2795  * @param atsi performance information for the tunnel
2796  * @return initial tunnel context for the tunnel
2797  *         (can be NULL -- that's not an error)
2798  */ 
2799 static void *
2800 inbound_tunnel_cb (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
2801                    const struct GNUNET_PeerIdentity *initiator,
2802                    const struct GNUNET_ATS_Information *atsi)
2803 {
2804   /* How can and why should anyone open an inbound tunnel to vpn? */
2805   GNUNET_break (0);
2806   return NULL;
2807 }
2808
2809
2810 /**
2811  * Function called whenever an inbound tunnel is destroyed.  Should clean up
2812  * any associated state.
2813  *
2814  * @param cls closure (set from GNUNET_MESH_connect)
2815  * @param tunnel connection to the other end (henceforth invalid)
2816  * @param tunnel_ctx place where local state associated
2817  *                   with the tunnel is stored (our 'struct TunnelState')
2818  */ 
2819 static void
2820 tunnel_cleaner (void *cls, const struct GNUNET_MESH_Tunnel *tunnel, void *tunnel_ctx)
2821 {
2822   /* we don't have inbound tunnels, so this function should never be called */
2823   GNUNET_break (0);
2824 }
2825
2826
2827 /**
2828  * Free memory occupied by an entry in the destination map.
2829  *
2830  * @param cls unused
2831  * @param key unused
2832  * @param value a 'struct DestinationEntry *'
2833  * @return GNUNET_OK (continue to iterate)
2834  */
2835 static int
2836 cleanup_destination (void *cls,
2837                      const GNUNET_HashCode *key,
2838                      void *value)
2839 {
2840   struct DestinationEntry *de = value;
2841
2842   free_destination_entry (de);
2843   return GNUNET_OK;
2844 }
2845
2846
2847 /**
2848  * Free memory occupied by an entry in the tunnel map.
2849  *
2850  * @param cls unused
2851  * @param key unused
2852  * @param value a 'struct TunnelState *'
2853  * @return GNUNET_OK (continue to iterate)
2854  */
2855 static int
2856 cleanup_tunnel (void *cls,
2857                 const GNUNET_HashCode *key,
2858                 void *value)
2859 {
2860   struct TunnelState *ts = value;
2861
2862   free_tunnel_state (ts);
2863   return GNUNET_OK;
2864 }
2865
2866
2867 /**
2868  * Function scheduled as very last function, cleans up after us
2869  *
2870  * @param cls unused
2871  * @param tc unused
2872  */
2873 static void
2874 cleanup (void *cls GNUNET_UNUSED,
2875          const struct GNUNET_SCHEDULER_TaskContext *tc)
2876 {
2877   unsigned int i;
2878
2879   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2880               "VPN is shutting down\n");
2881   if (NULL != destination_map)
2882   {  
2883     GNUNET_CONTAINER_multihashmap_iterate (destination_map,
2884                                            &cleanup_destination,
2885                                            NULL);
2886     GNUNET_CONTAINER_multihashmap_destroy (destination_map);
2887     destination_map = NULL;
2888   }
2889   if (NULL != destination_heap)
2890   {
2891     GNUNET_CONTAINER_heap_destroy (destination_heap);
2892     destination_heap = NULL;
2893   }
2894   if (NULL != tunnel_map)
2895   {  
2896     GNUNET_CONTAINER_multihashmap_iterate (tunnel_map,
2897                                            &cleanup_tunnel,
2898                                            NULL);
2899     GNUNET_CONTAINER_multihashmap_destroy (tunnel_map);
2900     tunnel_map = NULL;
2901   }
2902   if (NULL != tunnel_heap)
2903   {
2904     GNUNET_CONTAINER_heap_destroy (tunnel_heap);
2905     tunnel_heap = NULL;
2906   }
2907   if (NULL != mesh_handle)
2908   {
2909     GNUNET_MESH_disconnect (mesh_handle);
2910     mesh_handle = NULL;
2911   }
2912   if (NULL != helper_handle)
2913     {
2914     GNUNET_HELPER_stop (helper_handle);
2915     helper_handle = NULL;
2916   }
2917   if (NULL != nc)
2918   {
2919     GNUNET_SERVER_notification_context_destroy (nc);
2920     nc = NULL;
2921   }
2922   if (stats != NULL)
2923   {
2924     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
2925     stats = NULL;
2926   }
2927   for (i=0;i<5;i++)
2928     GNUNET_free_non_null (vpn_argv[i]);
2929 }
2930
2931
2932 /**
2933  * A client disconnected, clean up all references to it.
2934  *
2935  * @param cls the client that disconnected
2936  * @param key unused
2937  * @param value a 'struct TunnelState *'
2938  * @return GNUNET_OK (continue to iterate)
2939  */
2940 static int
2941 cleanup_tunnel_client (void *cls,
2942                        const GNUNET_HashCode *key,
2943                        void *value)
2944 {
2945   struct GNUNET_SERVER_Client *client = cls;
2946   struct TunnelState *ts = value;
2947
2948   if (client == ts->client)
2949   {
2950     GNUNET_SERVER_client_drop (ts->client);
2951     ts->client = NULL;
2952   }
2953   return GNUNET_OK;
2954 }
2955
2956
2957 /**
2958  * A client disconnected, clean up all references to it.
2959  *
2960  * @param cls the client that disconnected
2961  * @param key unused
2962  * @param value a 'struct DestinationEntry *'
2963  * @return GNUNET_OK (continue to iterate)
2964  */
2965 static int
2966 cleanup_destination_client (void *cls,
2967                             const GNUNET_HashCode *key,
2968                             void *value)
2969 {
2970   struct GNUNET_SERVER_Client *client = cls;
2971   struct DestinationEntry *de = value;
2972   struct TunnelState *ts;
2973
2974   if (NULL == (ts = de->ts))
2975     return GNUNET_OK;
2976   if (client == ts->client)
2977   {
2978     GNUNET_SERVER_client_drop (ts->client);
2979     ts->client = NULL;
2980   }
2981   return GNUNET_OK;
2982 }
2983
2984   
2985 /**
2986  * A client has disconnected from us.  If we are currently building
2987  * a tunnel for it, cancel the operation.
2988  *
2989  * @param cls unused
2990  * @param client handle to the client that disconnected
2991  */
2992 static void
2993 client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
2994 {
2995   if (NULL != tunnel_map)
2996     GNUNET_CONTAINER_multihashmap_iterate (tunnel_map,
2997                                            &cleanup_tunnel_client,
2998                                            client);
2999   if (NULL != destination_map)
3000     GNUNET_CONTAINER_multihashmap_iterate (destination_map,
3001                                            &cleanup_destination_client,
3002                                            client);
3003 }
3004
3005
3006 /**
3007  * Test if the given AF is supported by this system.
3008  * 
3009  * @param af to test
3010  * @return GNUNET_OK if the AF is supported
3011  */
3012 static int
3013 test_af (int af)
3014 {
3015   int s;
3016
3017   s = socket (af, SOCK_STREAM, 0);
3018   if (-1 == s)
3019   {
3020     if (EAFNOSUPPORT == errno)
3021       return GNUNET_NO;
3022     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
3023                          "socket");
3024     return GNUNET_SYSERR;
3025   }
3026   close (s);
3027   return GNUNET_OK;
3028 }
3029
3030
3031 /**
3032  * Main function that will be run by the scheduler.
3033  *
3034  * @param cls closure
3035  * @param server the initialized server
3036  * @param cfg_ configuration
3037  */
3038 static void
3039 run (void *cls,
3040      struct GNUNET_SERVER_Handle *server,
3041      const struct GNUNET_CONFIGURATION_Handle *cfg_)
3042 {
3043   static const struct GNUNET_SERVER_MessageHandler service_handlers[] = {
3044     /* callback, cls, type, size */
3045     { &service_redirect_to_ip, NULL, GNUNET_MESSAGE_TYPE_VPN_CLIENT_REDIRECT_TO_IP, 0},
3046     { &service_redirect_to_service, NULL, 
3047      GNUNET_MESSAGE_TYPE_VPN_CLIENT_REDIRECT_TO_SERVICE, 
3048      sizeof (struct RedirectToServiceRequestMessage) },
3049     {NULL, NULL, 0, 0}
3050   };
3051   static const struct GNUNET_MESH_MessageHandler mesh_handlers[] = {
3052     { &receive_udp_back, GNUNET_MESSAGE_TYPE_VPN_UDP_REPLY, 0},
3053     { &receive_tcp_back, GNUNET_MESSAGE_TYPE_VPN_TCP_DATA_TO_VPN, 0},
3054     { &receive_icmp_back, GNUNET_MESSAGE_TYPE_VPN_ICMP_TO_VPN, 0},
3055     {NULL, 0, 0}
3056   };
3057   static const GNUNET_MESH_ApplicationType types[] = {
3058     GNUNET_APPLICATION_TYPE_END
3059   };
3060   char *ifname;
3061   char *ipv6addr;
3062   char *ipv6prefix_s;
3063   char *ipv4addr;
3064   char *ipv4mask;
3065   struct in_addr v4;
3066   struct in6_addr v6;
3067
3068   if (GNUNET_YES !=
3069       GNUNET_OS_check_helper_binary ("gnunet-helper-vpn"))
3070   {
3071     fprintf (stderr,
3072              "`%s' is not SUID, refusing to run.\n",
3073              "gnunet-helper-vpn");
3074     global_ret = 1;
3075     return;
3076   }
3077   cfg = cfg_;
3078   stats = GNUNET_STATISTICS_create ("vpn", cfg);
3079   if (GNUNET_OK !=
3080       GNUNET_CONFIGURATION_get_value_number (cfg, "vpn", "MAX_MAPPING",
3081                                              &max_destination_mappings))
3082     max_destination_mappings = 200;
3083   if (GNUNET_OK !=
3084       GNUNET_CONFIGURATION_get_value_number (cfg, "vpn", "MAX_TUNNELS",
3085                                              &max_tunnel_mappings))
3086     max_tunnel_mappings = 200;
3087
3088   destination_map = GNUNET_CONTAINER_multihashmap_create (max_destination_mappings * 2);
3089   destination_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
3090   tunnel_map = GNUNET_CONTAINER_multihashmap_create (max_tunnel_mappings * 2);
3091   tunnel_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
3092
3093
3094   vpn_argv[0] = GNUNET_strdup ("vpn-gnunet");
3095   if (GNUNET_SYSERR ==
3096       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IFNAME", &ifname))
3097   {
3098     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3099                 "No entry 'IFNAME' in configuration!\n");
3100     GNUNET_SCHEDULER_shutdown ();
3101     return;
3102   }
3103   vpn_argv[1] = ifname;
3104   if (GNUNET_OK == test_af (AF_INET6))
3105   {
3106     if ( (GNUNET_SYSERR ==
3107           GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6ADDR",
3108                                                  &ipv6addr) ||
3109           (1 != inet_pton (AF_INET6, ipv6addr, &v6))) )
3110     {
3111       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3112                   "No valid entry 'IPV6ADDR' in configuration!\n");
3113       GNUNET_SCHEDULER_shutdown ();
3114       return;
3115     }
3116     vpn_argv[2] = ipv6addr;
3117     if (GNUNET_SYSERR ==
3118         GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6PREFIX",
3119                                                &ipv6prefix_s))
3120     {
3121       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3122                   "No entry 'IPV6PREFIX' in configuration!\n");
3123       GNUNET_SCHEDULER_shutdown ();
3124       return;
3125     }
3126     vpn_argv[3] = ipv6prefix_s;
3127     if ( (GNUNET_OK !=
3128           GNUNET_CONFIGURATION_get_value_number (cfg, "vpn",
3129                                                  "IPV6PREFIX",
3130                                                  &ipv6prefix)) ||
3131          (ipv6prefix >= 127) )
3132     {
3133       GNUNET_SCHEDULER_shutdown ();
3134       return;
3135     }
3136   }
3137   else
3138   {
3139     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3140                 _("IPv6 support disabled as this system does not support IPv6\n"));
3141     vpn_argv[2] = GNUNET_strdup ("-");
3142     vpn_argv[3] = GNUNET_strdup ("-");
3143   }
3144   if (GNUNET_OK == test_af (AF_INET))
3145   {
3146     if ( (GNUNET_SYSERR ==
3147           GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4ADDR",
3148                                                  &ipv4addr) ||
3149           (1 != inet_pton (AF_INET, ipv4addr, &v4))) )
3150     {
3151       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3152                   "No valid entry for 'IPV4ADDR' in configuration!\n");
3153       GNUNET_SCHEDULER_shutdown ();
3154       return;
3155     }
3156     vpn_argv[4] = ipv4addr;
3157     if ( (GNUNET_SYSERR ==
3158           GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4MASK",
3159                                                  &ipv4mask) ||
3160           (1 != inet_pton (AF_INET, ipv4mask, &v4))) )
3161     {
3162       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3163                   "No valid entry 'IPV4MASK' in configuration!\n");
3164       GNUNET_SCHEDULER_shutdown ();
3165       return;
3166     }
3167     vpn_argv[5] = ipv4mask;
3168   }
3169   else
3170   {
3171     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3172                 _("IPv4 support disabled as this system does not support IPv4\n"));
3173     vpn_argv[4] = GNUNET_strdup ("-");
3174     vpn_argv[5] = GNUNET_strdup ("-");
3175   }
3176   vpn_argv[6] = NULL;
3177
3178   mesh_handle =
3179     GNUNET_MESH_connect (cfg_, 42 /* queue length */, NULL, 
3180                          &inbound_tunnel_cb, 
3181                          &tunnel_cleaner, 
3182                          mesh_handlers,
3183                          types);
3184   helper_handle = GNUNET_HELPER_start ("gnunet-helper-vpn", vpn_argv,
3185                                        &message_token, NULL);
3186   nc = GNUNET_SERVER_notification_context_create (server, 1);
3187   GNUNET_SERVER_add_handlers (server, service_handlers);
3188   GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
3189   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
3190 }
3191
3192
3193 /**
3194  * The main function of the VPN service.
3195  *
3196  * @param argc number of arguments from the command line
3197  * @param argv command line arguments
3198  * @return 0 ok, 1 on error
3199  */
3200 int
3201 main (int argc, char *const *argv)
3202 {
3203   return (GNUNET_OK ==
3204           GNUNET_SERVICE_run (argc, argv, "vpn", 
3205                               GNUNET_SERVICE_OPTION_NONE,
3206                               &run, NULL)) ? global_ret : 1;
3207 }
3208
3209 /* end of gnunet-service-vpn.c */