fbfd6e7f5c960a688d8331b577f2cac9aaa41238
[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)];
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
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 spt;
885   uint16_t dpt;
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       udp = payload;
898       if (udp->len < sizeof (struct GNUNET_TUN_UdpHeader))
899       {
900         GNUNET_break_op (0);
901         return;
902       }
903       spt = ntohs (udp->spt);
904       dpt = ntohs (udp->dpt);
905       get_tunnel_key_from_ips (af,
906                                IPPROTO_UDP,
907                                source_ip,
908                                spt,
909                                destination_ip,
910                                dpt,
911                                &key);
912     }
913     break;
914   case IPPROTO_TCP:
915     {
916       if (payload_length < sizeof (struct GNUNET_TUN_TcpHeader))
917       {
918         /* blame kernel? */
919         GNUNET_break (0);
920         return;
921       }      
922       tcp = payload;
923       if (tcp->off * 4 < sizeof (struct GNUNET_TUN_TcpHeader))
924       {
925         GNUNET_break_op (0);
926         return;
927       }
928       spt = ntohs (tcp->spt);
929       dpt = ntohs (tcp->dpt);
930       get_tunnel_key_from_ips (af,
931                                IPPROTO_TCP,
932                                source_ip,
933                                spt,
934                                destination_ip,
935                                dpt,
936                                &key);
937     }
938     break;
939   case IPPROTO_ICMP:
940     {
941       if (payload_length < sizeof (struct GNUNET_TUN_IcmpHeader))
942       {
943         /* blame kernel? */
944         GNUNET_break (0);
945         return;
946       }
947       icmp = payload;
948       spt = 0;
949       dpt = 0;
950       get_tunnel_key_from_ips (af,
951                                IPPROTO_ICMP,
952                                source_ip,
953                                0,
954                                destination_ip,
955                                0,
956                                &key);
957     }
958     break;
959   default:
960     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
961                 _("Protocol %u not supported, dropping\n"),
962                 (unsigned int) protocol);
963     return;
964   }
965   if (! destination->is_service)
966   {  
967     switch (destination->details.exit_destination.af)
968     {
969     case AF_INET:
970       alen = sizeof (struct in_addr);
971      break;
972     case AF_INET6:
973       alen = sizeof (struct in6_addr);
974       break;
975     default:
976       alen = 0;
977       GNUNET_assert (0);
978     }
979
980     {
981       char sbuf[INET6_ADDRSTRLEN];
982       char dbuf[INET6_ADDRSTRLEN];
983       char xbuf[INET6_ADDRSTRLEN];
984       
985       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
986                   "Routing %s packet from %s:%u -> %s:%u to destination %s:%u\n",
987                   (protocol == IPPROTO_TCP) ? "TCP" : "UDP",
988                   inet_ntop (af, source_ip, sbuf, sizeof (sbuf)),
989                   spt,
990                   inet_ntop (af, destination_ip, dbuf, sizeof (dbuf)),
991                   dpt,
992                   inet_ntop (destination->details.exit_destination.af,
993                              &destination->details.exit_destination.ip,
994                              xbuf, sizeof (xbuf)),
995                   dpt);
996     }
997   }
998   else
999   {
1000     /* make compiler happy */
1001     alen = 0;
1002     {
1003       char sbuf[INET6_ADDRSTRLEN];
1004       char dbuf[INET6_ADDRSTRLEN];
1005       
1006       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1007                   "Routing %s packet from %s:%u -> %s:%u to service %s at peer %s\n",
1008                   (protocol == IPPROTO_TCP) ? "TCP" : "UDP",
1009                   inet_ntop (af, source_ip, sbuf, sizeof (sbuf)),
1010                   spt,
1011                   inet_ntop (af, destination_ip, dbuf, sizeof (dbuf)),
1012                   dpt,
1013                   GNUNET_h2s (&destination->details.service_destination.service_descriptor),
1014                   GNUNET_i2s (&destination->details.service_destination.target));
1015     }
1016
1017   }
1018
1019   /* see if we have an existing tunnel for this destination */
1020   ts = GNUNET_CONTAINER_multihashmap_get (tunnel_map,
1021                                           &key);
1022   if (NULL == ts)
1023   {
1024     /* need to either use the existing tunnel from the destination (if still
1025        available) or create a fresh one */
1026     is_new = GNUNET_YES;
1027     if (NULL == destination->ts)
1028       ts = create_tunnel_to_destination (destination, NULL, af, 0);
1029     else
1030       ts = destination->ts;
1031     if (NULL == ts)
1032       return;
1033     destination->ts = NULL;
1034     ts->destination_container = NULL; /* no longer 'contained' */
1035     /* now bind existing "unbound" tunnel to our IP/port tuple */
1036     ts->protocol = protocol;
1037     ts->af = af; 
1038     if (af == AF_INET)
1039     {
1040       ts->source_ip.v4 = * (const struct in_addr *) source_ip;
1041       ts->destination_ip.v4 = * (const struct in_addr *) destination_ip;
1042     }
1043     else
1044     {
1045       ts->source_ip.v6 = * (const struct in6_addr *) source_ip;
1046       ts->destination_ip.v6 = * (const struct in6_addr *) destination_ip;
1047     }
1048     ts->source_port = spt;
1049     ts->destination_port = dpt;
1050     ts->heap_node = GNUNET_CONTAINER_heap_insert (tunnel_heap,
1051                                                   ts,
1052                                                   GNUNET_TIME_absolute_get ().abs_value);
1053     GNUNET_assert (GNUNET_YES ==
1054                    GNUNET_CONTAINER_multihashmap_put (tunnel_map,
1055                                                       &key,
1056                                                       ts,
1057                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY)); 
1058     GNUNET_STATISTICS_update (stats,
1059                               gettext_noop ("# Active tunnels"),
1060                               1, GNUNET_NO);
1061     while (GNUNET_CONTAINER_multihashmap_size (tunnel_map) > max_tunnel_mappings)
1062       expire_tunnel (ts);
1063   }
1064   else
1065   {
1066     is_new = GNUNET_NO;
1067     GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
1068                                        ts->heap_node,
1069                                        GNUNET_TIME_absolute_get ().abs_value);
1070   }
1071   GNUNET_assert (NULL != ts->tunnel);
1072   
1073   /* send via tunnel */
1074   switch (protocol)
1075   {
1076   case IPPROTO_UDP:
1077     if (destination->is_service)
1078     {
1079       struct GNUNET_EXIT_UdpServiceMessage *usm;
1080
1081       mlen = sizeof (struct GNUNET_EXIT_UdpServiceMessage) + 
1082         payload_length - sizeof (struct GNUNET_TUN_UdpHeader);
1083       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1084       {
1085         GNUNET_break (0);
1086         return;
1087       }
1088       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1089       tnq->len = mlen;
1090       tnq->msg = &tnq[1];
1091       usm = (struct GNUNET_EXIT_UdpServiceMessage *) &tnq[1];
1092       usm->header.size = htons ((uint16_t) mlen);
1093       usm->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_UDP_TO_SERVICE);
1094       /* if the source port is below 32000, we assume it has a special
1095          meaning; if not, we pick a random port (this is a heuristic) */
1096       usm->source_port = (ntohs (udp->spt) < 32000) ? udp->spt : 0;
1097       usm->destination_port = udp->dpt;
1098       usm->service_descriptor = destination->details.service_destination.service_descriptor;
1099       memcpy (&usm[1],
1100               &udp[1],
1101               payload_length - sizeof (struct GNUNET_TUN_UdpHeader));
1102     }
1103     else
1104     {
1105       struct GNUNET_EXIT_UdpInternetMessage *uim;
1106       struct in_addr *ip4dst;
1107       struct in6_addr *ip6dst;
1108       void *payload;
1109
1110       mlen = sizeof (struct GNUNET_EXIT_UdpInternetMessage) + 
1111         alen + payload_length - sizeof (struct GNUNET_TUN_UdpHeader);
1112       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1113       {
1114         GNUNET_break (0);
1115         return;
1116       }
1117       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + 
1118                            mlen);
1119       tnq->len = mlen;
1120       tnq->msg = &tnq[1];
1121       uim = (struct GNUNET_EXIT_UdpInternetMessage *) &tnq[1];
1122       uim->header.size = htons ((uint16_t) mlen);
1123       uim->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_UDP_TO_INTERNET); 
1124       uim->af = htonl (destination->details.exit_destination.af);
1125       uim->source_port = (ntohs (udp->spt) < 32000) ? udp->spt : 0;
1126       uim->destination_port = udp->dpt;
1127       switch (destination->details.exit_destination.af)
1128       {
1129       case AF_INET:
1130         ip4dst = (struct in_addr *) &uim[1];
1131         *ip4dst = destination->details.exit_destination.ip.v4;
1132         payload = &ip4dst[1];
1133         break;
1134       case AF_INET6:
1135         ip6dst = (struct in6_addr *) &uim[1];
1136         *ip6dst = destination->details.exit_destination.ip.v6;
1137         payload = &ip6dst[1];
1138         break;
1139       default:
1140         GNUNET_assert (0);
1141       }
1142       memcpy (payload,
1143               &udp[1],
1144               payload_length - sizeof (struct GNUNET_TUN_UdpHeader));
1145     }
1146     break;
1147   case IPPROTO_TCP:
1148     if (is_new)
1149     {
1150       if (destination->is_service)
1151       {
1152         struct GNUNET_EXIT_TcpServiceStartMessage *tsm;
1153
1154         mlen = sizeof (struct GNUNET_EXIT_TcpServiceStartMessage) + 
1155           payload_length - sizeof (struct GNUNET_TUN_TcpHeader);
1156         if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1157         {
1158           GNUNET_break (0);
1159           return;
1160         }
1161         tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1162         tnq->len = mlen;
1163         tnq->msg = &tnq[1];
1164         tsm = (struct  GNUNET_EXIT_TcpServiceStartMessage *) &tnq[1];
1165         tsm->header.size = htons ((uint16_t) mlen);
1166         tsm->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_TCP_TO_SERVICE_START);
1167         tsm->reserved = htonl (0);
1168         tsm->service_descriptor = destination->details.service_destination.service_descriptor;
1169         tsm->tcp_header = *tcp;
1170         memcpy (&tsm[1],
1171                 &tcp[1],
1172                 payload_length - sizeof (struct GNUNET_TUN_TcpHeader));
1173       }
1174       else
1175       {
1176         struct GNUNET_EXIT_TcpInternetStartMessage *tim;
1177         struct in_addr *ip4dst;
1178         struct in6_addr *ip6dst;
1179         void *payload;
1180
1181         mlen = sizeof (struct GNUNET_EXIT_TcpInternetStartMessage) + 
1182           alen + payload_length - sizeof (struct GNUNET_TUN_TcpHeader);
1183         if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1184         {
1185           GNUNET_break (0);
1186           return;
1187         }
1188         tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1189         tnq->len = mlen;
1190         tnq->msg = &tnq[1];
1191         tim = (struct  GNUNET_EXIT_TcpInternetStartMessage *) &tnq[1];
1192         tim->header.size = htons ((uint16_t) mlen);
1193         tim->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_TCP_TO_INTERNET_START);
1194         tim->af = htonl (destination->details.exit_destination.af);     
1195         tim->tcp_header = *tcp;
1196         switch (destination->details.exit_destination.af)
1197         {
1198         case AF_INET:
1199           ip4dst = (struct in_addr *) &tim[1];
1200           *ip4dst = destination->details.exit_destination.ip.v4;
1201           payload = &ip4dst[1];
1202           break;
1203         case AF_INET6:
1204           ip6dst = (struct in6_addr *) &tim[1];
1205           *ip6dst = destination->details.exit_destination.ip.v6;
1206           payload = &ip6dst[1];
1207           break;
1208         default:
1209           GNUNET_assert (0);
1210         }
1211         memcpy (payload,
1212                 &tcp[1],
1213                 payload_length - sizeof (struct GNUNET_TUN_TcpHeader));
1214       }
1215     }
1216     else
1217     {
1218       struct GNUNET_EXIT_TcpDataMessage *tdm;
1219
1220       mlen = sizeof (struct GNUNET_EXIT_TcpDataMessage) + 
1221         payload_length - sizeof (struct GNUNET_TUN_TcpHeader);
1222       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1223       {
1224         GNUNET_break (0);
1225         return;
1226       }
1227       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1228       tnq->len = mlen;
1229       tnq->msg = &tnq[1];
1230       tdm = (struct  GNUNET_EXIT_TcpDataMessage *) &tnq[1];
1231       tdm->header.size = htons ((uint16_t) mlen);
1232       tdm->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_TCP_DATA_TO_EXIT);
1233       tdm->reserved = htonl (0);
1234       tdm->tcp_header = *tcp;
1235       memcpy (&tdm[1],
1236               &tcp[1],
1237               payload_length - sizeof (struct GNUNET_TUN_TcpHeader));
1238      }
1239     break;
1240   case IPPROTO_ICMP:
1241     if (destination->is_service)
1242     {
1243       struct GNUNET_EXIT_IcmpServiceMessage *ism;
1244
1245       mlen = sizeof (struct GNUNET_EXIT_IcmpServiceMessage) + 
1246         payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);
1247       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1248       {
1249         GNUNET_break (0);
1250         return;
1251       }
1252       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + mlen);
1253       tnq->msg = &tnq[1];
1254       ism = (struct GNUNET_EXIT_IcmpServiceMessage *) &tnq[1];
1255       ism->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_ICMP_TO_SERVICE);
1256       ism->af = htonl (af); /* need to tell destination ICMP protocol family! */
1257       ism->service_descriptor = destination->details.service_destination.service_descriptor;
1258       ism->icmp_header = *icmp;
1259       /* ICMP protocol translation will be done by the receiver (as we don't know
1260          the target AF); however, we still need to possibly discard the payload
1261          depending on the ICMP type */
1262       switch (af)
1263       {
1264       case AF_INET:
1265         switch (icmp->type)
1266         {
1267         case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:
1268         case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:
1269           break;
1270         case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1271         case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1272         case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED:
1273           /* throw away ICMP payload, won't be useful for the other side anyway */
1274           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader); 
1275           break;
1276         default:
1277           GNUNET_STATISTICS_update (stats,
1278                                     gettext_noop ("# ICMPv4 packets dropped (not allowed)"),
1279                                     1, GNUNET_NO);
1280           return;
1281         }
1282         /* end of AF_INET */
1283         break;
1284       case AF_INET6:
1285         switch (icmp->type)
1286         {
1287         case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1288         case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1289         case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1290         case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1291           /* throw away ICMP payload, won't be useful for the other side anyway */
1292           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader); 
1293           break;
1294         case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1295         case GNUNET_TUN_ICMPTYPE6_ECHO_REPLY:
1296           break;
1297         default:
1298           GNUNET_STATISTICS_update (stats,
1299                                     gettext_noop ("# ICMPv6 packets dropped (not allowed)"),
1300                                     1, GNUNET_NO);
1301           return;
1302         }       
1303         /* end of AF_INET6 */
1304         break;
1305       default:
1306         GNUNET_assert (0);
1307         break;
1308       }
1309
1310       /* update length calculations, as payload_length may have changed */
1311       mlen = sizeof (struct GNUNET_EXIT_IcmpServiceMessage) + 
1312         alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);      
1313       tnq->len = mlen;
1314       ism->header.size = htons ((uint16_t) mlen);
1315       /* finally, copy payload (if there is any left...) */
1316       memcpy (&ism[1],
1317               &icmp[1],
1318               payload_length - sizeof (struct GNUNET_TUN_IcmpHeader));
1319     }
1320     else
1321     {
1322       struct GNUNET_EXIT_IcmpInternetMessage *iim;
1323       struct in_addr *ip4dst;
1324       struct in6_addr *ip6dst;
1325       void *payload;
1326
1327       mlen = sizeof (struct GNUNET_EXIT_IcmpInternetMessage) + 
1328         alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);
1329       if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1330       {
1331         GNUNET_break (0);
1332         return;
1333       }
1334       tnq = GNUNET_malloc (sizeof (struct TunnelMessageQueueEntry) + 
1335                            mlen);
1336       tnq->msg = &tnq[1];
1337       iim = (struct GNUNET_EXIT_IcmpInternetMessage *) &tnq[1];
1338       iim->header.type = htons (GNUNET_MESSAGE_TYPE_VPN_ICMP_TO_INTERNET); 
1339       iim->icmp_header = *icmp;
1340       /* Perform ICMP protocol-translation (depending on destination AF and source AF)
1341          and throw away ICMP payload depending on ICMP message type */
1342       switch (af)
1343       {
1344       case AF_INET:
1345         switch (icmp->type)
1346         {
1347         case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:      
1348           if (destination->details.exit_destination.af == AF_INET6)
1349             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_ECHO_REPLY;
1350           break;
1351         case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:    
1352           if (destination->details.exit_destination.af == AF_INET6)
1353             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST;
1354           break;
1355         case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1356           if (destination->details.exit_destination.af == AF_INET6)
1357             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE;
1358           /* throw away IP-payload, exit will have to make it up anyway */
1359           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1360           break;
1361         case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED: 
1362           if (destination->details.exit_destination.af == AF_INET6)
1363             iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED;
1364           /* throw away IP-payload, exit will have to make it up anyway */
1365           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1366           break;
1367         case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1368           if (destination->details.exit_destination.af == AF_INET6)
1369             {
1370               GNUNET_STATISTICS_update (stats,
1371                                         gettext_noop ("# ICMPv4 packets dropped (impossible PT to v6)"),
1372                                         1, GNUNET_NO);
1373               GNUNET_free (tnq);
1374               return;
1375             }
1376           /* throw away IP-payload, exit will have to make it up anyway */
1377           payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1378           break;
1379         default:
1380           GNUNET_STATISTICS_update (stats,
1381                                     gettext_noop ("# ICMPv4 packets dropped (type not allowed)"),
1382                                     1, GNUNET_NO);
1383           GNUNET_free (tnq);        
1384           return;
1385         }
1386         /* end of AF_INET */
1387         break;
1388       case AF_INET6:
1389         switch (icmp->type)
1390           {
1391           case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1392             if (destination->details.exit_destination.af == AF_INET6)
1393               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE;
1394             /* throw away IP-payload, exit will have to make it up anyway */
1395             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1396             break;
1397           case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1398             if (destination->details.exit_destination.af == AF_INET)
1399               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED;
1400             /* throw away IP-payload, exit will have to make it up anyway */
1401             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1402             break;
1403           case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1404             if (destination->details.exit_destination.af == AF_INET)
1405             {
1406               GNUNET_STATISTICS_update (stats,
1407                                         gettext_noop ("# ICMPv6 packets dropped (impossible PT to v4)"),
1408                                         1, GNUNET_NO);
1409               GNUNET_free (tnq);
1410               return;
1411             }
1412             /* throw away IP-payload, exit will have to make it up anyway */
1413             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1414             break;
1415           case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1416             if (destination->details.exit_destination.af == AF_INET)
1417             {
1418               GNUNET_STATISTICS_update (stats,
1419                                         gettext_noop ("# ICMPv6 packets dropped (impossible PT to v4)"),
1420                                         1, GNUNET_NO);
1421               GNUNET_free (tnq);
1422               return;
1423             }
1424             /* throw away IP-payload, exit will have to make it up anyway */
1425             payload_length = sizeof (struct GNUNET_TUN_IcmpHeader);
1426             break;
1427           case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1428             if (destination->details.exit_destination.af == AF_INET)
1429               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE_ECHO_REQUEST;
1430             break;
1431           case GNUNET_TUN_ICMPTYPE6_ECHO_REPLY:
1432             if (destination->details.exit_destination.af == AF_INET)
1433               iim->icmp_header.type = GNUNET_TUN_ICMPTYPE_ECHO_REPLY;
1434             break;
1435           default:
1436             GNUNET_STATISTICS_update (stats,
1437                                       gettext_noop ("# ICMPv6 packets dropped (type not allowed)"),
1438                                       1, GNUNET_NO);
1439             GNUNET_free (tnq);      
1440             return;
1441           }
1442         /* end of AF_INET6 */
1443         break;
1444       default:
1445         GNUNET_assert (0);
1446       } 
1447       /* update length calculations, as payload_length may have changed */
1448       mlen = sizeof (struct GNUNET_EXIT_IcmpInternetMessage) + 
1449         alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader);      
1450       tnq->len = mlen;
1451       iim->header.size = htons ((uint16_t) mlen);
1452
1453       /* need to tell destination ICMP protocol family! */
1454       iim->af = htonl (destination->details.exit_destination.af);
1455       switch (destination->details.exit_destination.af)
1456       {
1457       case AF_INET:
1458         ip4dst = (struct in_addr *) &iim[1];
1459         *ip4dst = destination->details.exit_destination.ip.v4;
1460         payload = &ip4dst[1];
1461         break;
1462       case AF_INET6:
1463         ip6dst = (struct in6_addr *) &iim[1];
1464         *ip6dst = destination->details.exit_destination.ip.v6;
1465         payload = &ip6dst[1];
1466         break;
1467       default:
1468         GNUNET_assert (0);
1469       }
1470       memcpy (payload,
1471               &icmp[1],
1472               payload_length - sizeof (struct GNUNET_TUN_IcmpHeader));
1473     }
1474     break;
1475   default:
1476     /* not supported above, how can we get here !? */
1477     GNUNET_assert (0);
1478     break;
1479   }
1480   send_to_tunnel (tnq, ts);
1481 }
1482
1483
1484 /**
1485  * Receive packets from the helper-process (someone send to the local
1486  * virtual tunnel interface).  Find the destination mapping, and if it
1487  * exists, identify the correct MESH tunnel (or possibly create it)
1488  * and forward the packet.
1489  *
1490  * @param cls closure, NULL
1491  * @param client NULL
1492  * @param message message we got from the client (VPN tunnel interface)
1493  */
1494 static void
1495 message_token (void *cls GNUNET_UNUSED, void *client GNUNET_UNUSED,
1496                const struct GNUNET_MessageHeader *message)
1497 {
1498   const struct GNUNET_TUN_Layer2PacketHeader *tun;
1499   size_t mlen;
1500   GNUNET_HashCode key;
1501   struct DestinationEntry *de;
1502
1503   GNUNET_STATISTICS_update (stats,
1504                             gettext_noop ("# Packets received from TUN interface"),
1505                             1, GNUNET_NO);
1506   mlen = ntohs (message->size);
1507   if ( (ntohs (message->type) != GNUNET_MESSAGE_TYPE_VPN_HELPER) ||
1508        (mlen < sizeof (struct GNUNET_MessageHeader) + sizeof (struct GNUNET_TUN_Layer2PacketHeader)) )
1509   {
1510     GNUNET_break (0);
1511     return;
1512   }
1513   tun = (const struct GNUNET_TUN_Layer2PacketHeader *) &message[1];
1514   mlen -= (sizeof (struct GNUNET_MessageHeader) + sizeof (struct GNUNET_TUN_Layer2PacketHeader));
1515   switch (ntohs (tun->proto))
1516   {
1517   case ETH_P_IPV6:
1518     {
1519       const struct GNUNET_TUN_IPv6Header *pkt6;
1520       
1521       if (mlen < sizeof (struct GNUNET_TUN_IPv6Header))
1522       {
1523         /* blame kernel */
1524         GNUNET_break (0);
1525         return;
1526       }
1527       pkt6 = (const struct GNUNET_TUN_IPv6Header *) &tun[1];
1528       get_destination_key_from_ip (AF_INET6,
1529                                    &pkt6->destination_address,
1530                                    &key);
1531       de = GNUNET_CONTAINER_multihashmap_get (destination_map, &key);
1532       /* FIXME: do we need to guard against hash collision? 
1533          (if so, we need to also store the local destination IP in the
1534          destination entry and then compare here; however, the risk
1535          of collision seems minimal AND the impact is unlikely to be
1536          super-problematic as well... */
1537       if (NULL == de)
1538       {
1539         char buf[INET6_ADDRSTRLEN];
1540         
1541         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1542                     _("Packet received for unmapped destination `%s' (dropping it)\n"),
1543                     inet_ntop (AF_INET6,
1544                                &pkt6->destination_address,
1545                                buf,
1546                                sizeof (buf)));
1547         return;
1548       }
1549       route_packet (de,
1550                     AF_INET6,
1551                     pkt6->next_header,
1552                     &pkt6->source_address,                  
1553                     &pkt6->destination_address,             
1554                     &pkt6[1],
1555                     mlen - sizeof (struct GNUNET_TUN_IPv6Header));
1556     }
1557     break;
1558   case ETH_P_IPV4:
1559     {
1560       struct GNUNET_TUN_IPv4Header *pkt4;
1561
1562       if (mlen < sizeof (struct GNUNET_TUN_IPv4Header))
1563       {
1564         /* blame kernel */
1565         GNUNET_break (0);
1566         return;
1567       }
1568       pkt4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
1569       get_destination_key_from_ip (AF_INET,
1570                                    &pkt4->destination_address,
1571                                    &key);
1572       de = GNUNET_CONTAINER_multihashmap_get (destination_map, &key);
1573       /* FIXME: do we need to guard against hash collision? 
1574          (if so, we need to also store the local destination IP in the
1575          destination entry and then compare here; however, the risk
1576          of collision seems minimal AND the impact is unlikely to be
1577          super-problematic as well... */
1578       if (NULL == de)
1579       {
1580         char buf[INET_ADDRSTRLEN];
1581         
1582         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1583                     _("Packet received for unmapped destination `%s' (dropping it)\n"),
1584                     inet_ntop (AF_INET,
1585                                &pkt4->destination_address,
1586                                buf,
1587                                sizeof (buf)));
1588         return;
1589       }
1590       if (pkt4->header_length * 4 != sizeof (struct GNUNET_TUN_IPv4Header))
1591       {
1592         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1593                     _("Received IPv4 packet with options (dropping it)\n"));                
1594         return;
1595       }
1596       route_packet (de,
1597                     AF_INET,
1598                     pkt4->protocol,
1599                     &pkt4->source_address,                  
1600                     &pkt4->destination_address,             
1601                     &pkt4[1],
1602                     mlen - sizeof (struct GNUNET_TUN_IPv4Header));
1603     }
1604     break;
1605   default:
1606     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1607                 _("Received packet of unknown protocol %d from TUN (dropping it)\n"),
1608                 (unsigned int) ntohs (tun->proto));
1609     break;
1610   }
1611 }
1612
1613
1614 /**
1615  * Synthesize a plausible ICMP payload for an ICMP error
1616  * response on the given tunnel.
1617  *
1618  * @param ts tunnel information
1619  * @param ipp IPv4 header to fill in (ICMP payload)
1620  * @param udp "UDP" header to fill in (ICMP payload); might actually
1621  *            also be the first 8 bytes of the TCP header
1622  */
1623 static void
1624 make_up_icmpv4_payload (struct TunnelState *ts,
1625                         struct GNUNET_TUN_IPv4Header *ipp,
1626                         struct GNUNET_TUN_UdpHeader *udp)
1627 {
1628   GNUNET_TUN_initialize_ipv4_header (ipp,
1629                                      ts->protocol,
1630                                      sizeof (struct GNUNET_TUN_TcpHeader),
1631                                      &ts->source_ip.v4,
1632                                      &ts->destination_ip.v4);
1633   udp->spt = htons (ts->source_port);
1634   udp->dpt = htons (ts->destination_port);
1635   udp->len = htons (0);
1636   udp->crc = htons (0);
1637 }
1638
1639
1640 /**
1641  * Synthesize a plausible ICMP payload for an ICMP error
1642  * response on the given tunnel.
1643  *
1644  * @param ts tunnel information
1645  * @param ipp IPv6 header to fill in (ICMP payload)
1646  * @param udp "UDP" header to fill in (ICMP payload); might actually
1647  *            also be the first 8 bytes of the TCP header
1648  */
1649 static void
1650 make_up_icmpv6_payload (struct TunnelState *ts,
1651                         struct GNUNET_TUN_IPv6Header *ipp,
1652                         struct GNUNET_TUN_UdpHeader *udp)
1653 {
1654   GNUNET_TUN_initialize_ipv6_header (ipp,
1655                                      ts->protocol,
1656                                      sizeof (struct GNUNET_TUN_TcpHeader),
1657                                      &ts->source_ip.v6,
1658                                      &ts->destination_ip.v6);
1659   udp->spt = htons (ts->source_port);
1660   udp->dpt = htons (ts->destination_port);
1661   udp->len = htons (0);
1662   udp->crc = htons (0);
1663 }
1664
1665
1666 /**
1667  * We got an ICMP packet back from the MESH tunnel.  Pass it on to the
1668  * local virtual interface via the helper.
1669  *
1670  * @param cls closure, NULL
1671  * @param tunnel connection to the other end
1672  * @param tunnel_ctx pointer to our 'struct TunnelState *'
1673  * @param sender who sent the message
1674  * @param message the actual message
1675  * @param atsi performance data for the connection
1676  * @return GNUNET_OK to keep the connection open,
1677  *         GNUNET_SYSERR to close it (signal serious error)
1678  */ 
1679 static int
1680 receive_icmp_back (void *cls GNUNET_UNUSED, struct GNUNET_MESH_Tunnel *tunnel,
1681                    void **tunnel_ctx, const struct GNUNET_PeerIdentity *sender,
1682                    const struct GNUNET_MessageHeader *message,
1683                    const struct GNUNET_ATS_Information *atsi GNUNET_UNUSED)
1684 {
1685   struct TunnelState *ts = *tunnel_ctx;
1686   const struct GNUNET_EXIT_IcmpToVPNMessage *i2v;
1687   size_t mlen;
1688
1689   GNUNET_STATISTICS_update (stats,
1690                             gettext_noop ("# ICMP packets received from mesh"),
1691                             1, GNUNET_NO);
1692   mlen = ntohs (message->size);
1693   if (mlen < sizeof (struct GNUNET_EXIT_IcmpToVPNMessage))
1694   {
1695     GNUNET_break_op (0);
1696     return GNUNET_SYSERR;
1697   }
1698   if (NULL == ts->heap_node)
1699   {
1700     GNUNET_break_op (0);
1701     return GNUNET_SYSERR;
1702   }
1703   if (AF_UNSPEC == ts->af)
1704   {
1705     GNUNET_break_op (0);
1706     return GNUNET_SYSERR;
1707   }
1708   i2v = (const struct GNUNET_EXIT_IcmpToVPNMessage *) message;
1709   mlen -= sizeof (struct GNUNET_EXIT_IcmpToVPNMessage);
1710   {
1711     char sbuf[INET6_ADDRSTRLEN];
1712     char dbuf[INET6_ADDRSTRLEN];
1713     
1714     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1715                 "Received ICMP packet from mesh, sending %u bytes from %s -> %s via TUN\n",
1716                 (unsigned int) mlen,
1717                 inet_ntop (ts->af, &ts->destination_ip, sbuf, sizeof (sbuf)),
1718                 inet_ntop (ts->af, &ts->source_ip, dbuf, sizeof (dbuf)));
1719   }
1720   switch (ts->af)
1721   {
1722   case AF_INET:
1723     {
1724       size_t size = sizeof (struct GNUNET_TUN_IPv4Header) 
1725         + sizeof (struct GNUNET_TUN_IcmpHeader) 
1726         + sizeof (struct GNUNET_MessageHeader) +
1727         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
1728         mlen;
1729       {
1730         /* reserve some extra space in case we have an ICMP type here where
1731            we will need to make up the payload ourselves */
1732         char buf[size + sizeof (struct GNUNET_TUN_IPv4Header) + 8];
1733         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
1734         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
1735         struct GNUNET_TUN_IPv4Header *ipv4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
1736         struct GNUNET_TUN_IcmpHeader *icmp = (struct GNUNET_TUN_IcmpHeader *) &ipv4[1];
1737         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1738         tun->flags = htons (0);
1739         tun->proto = htons (ETH_P_IPV4);
1740         GNUNET_TUN_initialize_ipv4_header (ipv4,
1741                                            IPPROTO_ICMP,
1742                                            sizeof (struct GNUNET_TUN_IcmpHeader) + mlen,
1743                                            &ts->destination_ip.v4,
1744                                            &ts->source_ip.v4);
1745         *icmp = i2v->icmp_header;
1746         memcpy (&icmp[1],
1747                 &i2v[1],
1748                 mlen);
1749         /* For some ICMP types, we need to adjust (make up) the payload here. 
1750            Also, depending on the AF used on the other side, we have to 
1751            do ICMP PT (translate ICMP types) */
1752         switch (ntohl (i2v->af))
1753         {
1754         case AF_INET:     
1755           switch (icmp->type)
1756           {
1757           case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:
1758           case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:
1759             break;
1760           case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1761           case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1762           case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED:         
1763             {
1764               struct GNUNET_TUN_IPv4Header *ipp = (struct GNUNET_TUN_IPv4Header *) &icmp[1];
1765               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1766               
1767               if (mlen != 0)
1768                 {
1769                   /* sender did not strip ICMP payload? */
1770                   GNUNET_break_op (0);
1771                   return GNUNET_SYSERR;
1772                 }
1773               size += sizeof (struct GNUNET_TUN_IPv4Header) + 8;
1774               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1775               make_up_icmpv4_payload (ts, ipp, udp);
1776             }
1777             break;
1778           default:
1779             GNUNET_break_op (0);
1780             GNUNET_STATISTICS_update (stats,
1781                                       gettext_noop ("# ICMPv4 packets dropped (type not allowed)"),
1782                                       1, GNUNET_NO);
1783             return GNUNET_SYSERR;
1784           }
1785           /* end AF_INET */
1786           break;
1787         case AF_INET6:
1788           /* ICMP PT 6-to-4 and possibly making up payloads */
1789           switch (icmp->type)
1790           {
1791           case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1792             icmp->type = GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE;
1793             {
1794               struct GNUNET_TUN_IPv4Header *ipp = (struct GNUNET_TUN_IPv4Header *) &icmp[1];
1795               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1796               
1797               if (mlen != 0)
1798                 {
1799                   /* sender did not strip ICMP payload? */
1800                   GNUNET_break_op (0);
1801                   return GNUNET_SYSERR;
1802                 }
1803               size += sizeof (struct GNUNET_TUN_IPv4Header) + 8;
1804               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1805               make_up_icmpv4_payload (ts, ipp, udp);
1806             }
1807             break;
1808           case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1809             icmp->type = GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED;
1810             {
1811               struct GNUNET_TUN_IPv4Header *ipp = (struct GNUNET_TUN_IPv4Header *) &icmp[1];
1812               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1813               
1814               if (mlen != 0)
1815                 {
1816                   /* sender did not strip ICMP payload? */
1817                   GNUNET_break_op (0);
1818                   return GNUNET_SYSERR;
1819                 }
1820               size += sizeof (struct GNUNET_TUN_IPv4Header) + 8;
1821               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1822               make_up_icmpv4_payload (ts, ipp, udp);
1823             }
1824             break;
1825           case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1826           case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1827             GNUNET_STATISTICS_update (stats,
1828                                       gettext_noop ("# ICMPv6 packets dropped (impossible PT to v4)"),
1829                                       1, GNUNET_NO);
1830             return GNUNET_OK;
1831           case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1832             icmp->type = GNUNET_TUN_ICMPTYPE_ECHO_REQUEST;
1833             break;
1834           case GNUNET_TUN_ICMPTYPE6_ECHO_REPLY:
1835             icmp->type = GNUNET_TUN_ICMPTYPE_ECHO_REPLY;
1836             break;
1837           default:
1838             GNUNET_break_op (0);
1839             GNUNET_STATISTICS_update (stats,
1840                                       gettext_noop ("# ICMPv6 packets dropped (type not allowed)"),
1841                                       1, GNUNET_NO);
1842             return GNUNET_SYSERR;
1843           }
1844           /* end AF_INET6 */
1845           break;
1846         default:
1847           GNUNET_break_op (0);
1848           return GNUNET_SYSERR;
1849         }       
1850         msg->size = htons (size);
1851         GNUNET_TUN_calculate_icmp_checksum (icmp,
1852                                             &i2v[1],
1853                                             mlen);
1854         (void) GNUNET_HELPER_send (helper_handle,
1855                                    msg,
1856                                    GNUNET_YES,
1857                                    NULL, NULL);
1858       }
1859     }
1860     break;
1861   case AF_INET6:
1862     {
1863       size_t size = sizeof (struct GNUNET_TUN_IPv6Header) 
1864         + sizeof (struct GNUNET_TUN_IcmpHeader) 
1865         + sizeof (struct GNUNET_MessageHeader) +
1866         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
1867         mlen;
1868       {
1869         char buf[size + sizeof (struct GNUNET_TUN_IPv6Header) + 8];
1870         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
1871         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
1872         struct GNUNET_TUN_IPv6Header *ipv6 = (struct GNUNET_TUN_IPv6Header *) &tun[1];
1873         struct GNUNET_TUN_IcmpHeader *icmp = (struct GNUNET_TUN_IcmpHeader *) &ipv6[1];
1874         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
1875         tun->flags = htons (0);
1876         tun->proto = htons (ETH_P_IPV6);
1877         GNUNET_TUN_initialize_ipv6_header (ipv6,
1878                                            IPPROTO_ICMP,
1879                                            sizeof (struct GNUNET_TUN_IcmpHeader) + mlen,
1880                                            &ts->destination_ip.v6,
1881                                            &ts->source_ip.v6);
1882         *icmp = i2v->icmp_header;
1883         memcpy (&icmp[1],
1884                 &i2v[1],
1885                 mlen);
1886
1887         /* For some ICMP types, we need to adjust (make up) the payload here. 
1888            Also, depending on the AF used on the other side, we have to 
1889            do ICMP PT (translate ICMP types) */
1890         switch (ntohl (i2v->af))
1891         {
1892         case AF_INET:     
1893           /* ICMP PT 4-to-6 and possibly making up payloads */
1894           switch (icmp->type)
1895           {
1896           case GNUNET_TUN_ICMPTYPE_ECHO_REPLY:
1897             icmp->type = GNUNET_TUN_ICMPTYPE6_ECHO_REPLY;
1898             break;
1899           case GNUNET_TUN_ICMPTYPE_ECHO_REQUEST:
1900             icmp->type = GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST;
1901             break;
1902           case GNUNET_TUN_ICMPTYPE_DESTINATION_UNREACHABLE:
1903             icmp->type = GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE;
1904             {
1905               struct GNUNET_TUN_IPv6Header *ipp = (struct GNUNET_TUN_IPv6Header *) &icmp[1];
1906               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1907               
1908               if (mlen != 0)
1909                 {
1910                   /* sender did not strip ICMP payload? */
1911                   GNUNET_break_op (0);
1912                   return GNUNET_SYSERR;
1913                 }
1914               size += sizeof (struct GNUNET_TUN_IPv6Header) + 8;
1915               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1916               make_up_icmpv6_payload (ts, ipp, udp);
1917             }
1918             break;
1919           case GNUNET_TUN_ICMPTYPE_TIME_EXCEEDED:         
1920             icmp->type = GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED;
1921             {
1922               struct GNUNET_TUN_IPv6Header *ipp = (struct GNUNET_TUN_IPv6Header *) &icmp[1];
1923               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1924               
1925               if (mlen != 0)
1926                 {
1927                   /* sender did not strip ICMP payload? */
1928                   GNUNET_break_op (0);
1929                   return GNUNET_SYSERR;
1930                 }
1931               size += sizeof (struct GNUNET_TUN_IPv6Header) + 8;
1932               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1933               make_up_icmpv6_payload (ts, ipp, udp);
1934             }
1935             break;
1936           case GNUNET_TUN_ICMPTYPE_SOURCE_QUENCH:
1937             GNUNET_STATISTICS_update (stats,
1938                                       gettext_noop ("# ICMPv4 packets dropped (impossible PT to v6)"),
1939                                       1, GNUNET_NO);        
1940             return GNUNET_OK;
1941           default:
1942             GNUNET_break_op (0);
1943             GNUNET_STATISTICS_update (stats,
1944                                       gettext_noop ("# ICMPv4 packets dropped (type not allowed)"),
1945                                       1, GNUNET_NO);
1946             return GNUNET_SYSERR;
1947           }
1948           /* end AF_INET */
1949           break;
1950         case AF_INET6:
1951           switch (icmp->type)
1952           {
1953           case GNUNET_TUN_ICMPTYPE6_DESTINATION_UNREACHABLE:
1954           case GNUNET_TUN_ICMPTYPE6_TIME_EXCEEDED:
1955           case GNUNET_TUN_ICMPTYPE6_PACKET_TOO_BIG:
1956           case GNUNET_TUN_ICMPTYPE6_PARAMETER_PROBLEM:
1957             {
1958               struct GNUNET_TUN_IPv6Header *ipp = (struct GNUNET_TUN_IPv6Header *) &icmp[1];
1959               struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipp[1];
1960               
1961               if (mlen != 0)
1962                 {
1963                   /* sender did not strip ICMP payload? */
1964                   GNUNET_break_op (0);
1965                   return GNUNET_SYSERR;
1966                 }
1967               size += sizeof (struct GNUNET_TUN_IPv6Header) + 8;
1968               GNUNET_assert (8 == sizeof (struct GNUNET_TUN_UdpHeader));
1969               make_up_icmpv6_payload (ts, ipp, udp);
1970             }
1971             break;
1972           case GNUNET_TUN_ICMPTYPE6_ECHO_REQUEST:
1973             break;
1974           default:
1975             GNUNET_break_op (0);
1976             GNUNET_STATISTICS_update (stats,
1977                                       gettext_noop ("# ICMPv6 packets dropped (type not allowed)"),
1978                                       1, GNUNET_NO);
1979             return GNUNET_SYSERR;
1980           }
1981           /* end AF_INET6 */
1982           break;
1983         default:
1984           GNUNET_break_op (0);
1985           return GNUNET_SYSERR;
1986         }
1987         msg->size = htons (size);
1988         GNUNET_TUN_calculate_icmp_checksum (icmp,
1989                                             &i2v[1], mlen);
1990         (void) GNUNET_HELPER_send (helper_handle,
1991                                    msg,
1992                                    GNUNET_YES,
1993                                    NULL, NULL);
1994       }
1995     }
1996     break;
1997   default:
1998     GNUNET_assert (0);
1999   }
2000   GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
2001                                      ts->heap_node,
2002                                      GNUNET_TIME_absolute_get ().abs_value);
2003   return GNUNET_OK;
2004 }
2005
2006
2007 /**
2008  * We got a UDP packet back from the MESH tunnel.  Pass it on to the
2009  * local virtual interface via the helper.
2010  *
2011  * @param cls closure, NULL
2012  * @param tunnel connection to the other end
2013  * @param tunnel_ctx pointer to our 'struct TunnelState *'
2014  * @param sender who sent the message
2015  * @param message the actual message
2016  * @param atsi performance data for the connection
2017  * @return GNUNET_OK to keep the connection open,
2018  *         GNUNET_SYSERR to close it (signal serious error)
2019  */ 
2020 static int
2021 receive_udp_back (void *cls GNUNET_UNUSED, struct GNUNET_MESH_Tunnel *tunnel,
2022                   void **tunnel_ctx, const struct GNUNET_PeerIdentity *sender,
2023                   const struct GNUNET_MessageHeader *message,
2024                   const struct GNUNET_ATS_Information *atsi GNUNET_UNUSED)
2025 {
2026   struct TunnelState *ts = *tunnel_ctx;
2027   const struct GNUNET_EXIT_UdpReplyMessage *reply;
2028   size_t mlen;
2029
2030   GNUNET_STATISTICS_update (stats,
2031                             gettext_noop ("# UDP packets received from mesh"),
2032                             1, GNUNET_NO);
2033   mlen = ntohs (message->size);
2034   if (mlen < sizeof (struct GNUNET_EXIT_UdpReplyMessage))
2035   {
2036     GNUNET_break_op (0);
2037     return GNUNET_SYSERR;
2038   }
2039   if (NULL == ts->heap_node)
2040   {
2041     GNUNET_break_op (0);
2042     return GNUNET_SYSERR;
2043   }
2044   if (AF_UNSPEC == ts->af)
2045   {
2046     GNUNET_break_op (0);
2047     return GNUNET_SYSERR;
2048   }
2049   reply = (const struct GNUNET_EXIT_UdpReplyMessage *) message;
2050   mlen -= sizeof (struct GNUNET_EXIT_UdpReplyMessage);
2051   {
2052     char sbuf[INET6_ADDRSTRLEN];
2053     char dbuf[INET6_ADDRSTRLEN];
2054     
2055     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2056                 "Received UDP reply from mesh, sending %u bytes from %s:%u -> %s:%u via TUN\n",
2057                 (unsigned int) mlen,
2058                 inet_ntop (ts->af, &ts->destination_ip, sbuf, sizeof (sbuf)),
2059                 ts->destination_port,
2060                 inet_ntop (ts->af, &ts->source_ip, dbuf, sizeof (dbuf)),
2061                 ts->source_port);
2062   }
2063   switch (ts->af)
2064   {
2065   case AF_INET:
2066     {
2067       size_t size = sizeof (struct GNUNET_TUN_IPv4Header) 
2068         + sizeof (struct GNUNET_TUN_UdpHeader) 
2069         + sizeof (struct GNUNET_MessageHeader) +
2070         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2071         mlen;
2072       {
2073         char buf[size];
2074         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2075         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2076         struct GNUNET_TUN_IPv4Header *ipv4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
2077         struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipv4[1];
2078         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2079         msg->size = htons (size);
2080         tun->flags = htons (0);
2081         tun->proto = htons (ETH_P_IPV4);
2082         GNUNET_TUN_initialize_ipv4_header (ipv4,
2083                                            IPPROTO_UDP,
2084                                            sizeof (struct GNUNET_TUN_UdpHeader) + mlen,
2085                                            &ts->destination_ip.v4,
2086                                            &ts->source_ip.v4);
2087         if (0 == ntohs (reply->source_port))
2088           udp->spt = htons (ts->destination_port);
2089         else
2090           udp->spt = reply->source_port;
2091         if (0 == ntohs (reply->destination_port))
2092           udp->dpt = htons (ts->source_port);
2093         else
2094           udp->dpt = reply->destination_port;
2095         udp->len = htons (mlen + sizeof (struct GNUNET_TUN_UdpHeader));
2096         GNUNET_TUN_calculate_udp4_checksum (ipv4,
2097                                             udp,
2098                                             &reply[1],
2099                                             mlen);
2100         memcpy (&udp[1],
2101                 &reply[1],
2102                 mlen);
2103         (void) GNUNET_HELPER_send (helper_handle,
2104                                    msg,
2105                                    GNUNET_YES,
2106                                    NULL, NULL);
2107       }
2108     }
2109     break;
2110   case AF_INET6:
2111     {
2112       size_t size = sizeof (struct GNUNET_TUN_IPv6Header) 
2113         + sizeof (struct GNUNET_TUN_UdpHeader) 
2114         + sizeof (struct GNUNET_MessageHeader) +
2115         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2116         mlen;
2117       {
2118         char buf[size];
2119         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2120         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2121         struct GNUNET_TUN_IPv6Header *ipv6 = (struct GNUNET_TUN_IPv6Header *) &tun[1];
2122         struct GNUNET_TUN_UdpHeader *udp = (struct GNUNET_TUN_UdpHeader *) &ipv6[1];
2123         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2124         msg->size = htons (size);
2125         tun->flags = htons (0);
2126         tun->proto = htons (ETH_P_IPV6);
2127         GNUNET_TUN_initialize_ipv6_header (ipv6,
2128                                            IPPROTO_UDP,
2129                                            sizeof (struct GNUNET_TUN_UdpHeader) + mlen,
2130                                            &ts->destination_ip.v6,
2131                                            &ts->source_ip.v6);
2132         if (0 == ntohs (reply->source_port))
2133           udp->spt = htons (ts->destination_port);
2134         else
2135           udp->spt = reply->source_port;
2136         if (0 == ntohs (reply->destination_port))
2137           udp->dpt = htons (ts->source_port);
2138         else
2139           udp->dpt = reply->destination_port;
2140         udp->len = htons (mlen + sizeof (struct GNUNET_TUN_UdpHeader));
2141         GNUNET_TUN_calculate_udp6_checksum (ipv6,
2142                                             udp,
2143                                             &reply[1], mlen);
2144         memcpy (&udp[1],
2145                 &reply[1],
2146                 mlen);
2147         (void) GNUNET_HELPER_send (helper_handle,
2148                                    msg,
2149                                    GNUNET_YES,
2150                                    NULL, NULL);
2151       }
2152     }
2153     break;
2154   default:
2155     GNUNET_assert (0);
2156   }
2157   GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
2158                                      ts->heap_node,
2159                                      GNUNET_TIME_absolute_get ().abs_value);
2160   return GNUNET_OK;
2161 }
2162
2163
2164 /**
2165  * We got a TCP packet back from the MESH tunnel.  Pass it on to the
2166  * local virtual interface via the helper.
2167  *
2168  * @param cls closure, NULL
2169  * @param tunnel connection to the other end
2170  * @param tunnel_ctx pointer to our 'struct TunnelState *'
2171  * @param sender who sent the message
2172  * @param message the actual message
2173  * @param atsi performance data for the connection
2174  * @return GNUNET_OK to keep the connection open,
2175  *         GNUNET_SYSERR to close it (signal serious error)
2176  */ 
2177 static int
2178 receive_tcp_back (void *cls GNUNET_UNUSED, struct GNUNET_MESH_Tunnel *tunnel,
2179                   void **tunnel_ctx,
2180                   const struct GNUNET_PeerIdentity *sender GNUNET_UNUSED,
2181                   const struct GNUNET_MessageHeader *message,
2182                   const struct GNUNET_ATS_Information *atsi GNUNET_UNUSED)
2183 {
2184   struct TunnelState *ts = *tunnel_ctx;
2185   const struct GNUNET_EXIT_TcpDataMessage *data;
2186   size_t mlen;
2187
2188   GNUNET_STATISTICS_update (stats,
2189                             gettext_noop ("# TCP packets received from mesh"),
2190                             1, GNUNET_NO);
2191   mlen = ntohs (message->size);
2192   if (mlen < sizeof (struct GNUNET_EXIT_TcpDataMessage))
2193   {
2194     GNUNET_break_op (0);
2195     return GNUNET_SYSERR;
2196   }
2197   if (NULL == ts->heap_node)
2198   {
2199     GNUNET_break_op (0);
2200     return GNUNET_SYSERR;
2201   }
2202   data = (const struct GNUNET_EXIT_TcpDataMessage *) message;
2203   mlen -= sizeof (struct GNUNET_EXIT_TcpDataMessage);
2204   {
2205     char sbuf[INET6_ADDRSTRLEN];
2206     char dbuf[INET6_ADDRSTRLEN];
2207     
2208     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2209                 "Received TCP reply from mesh, sending %u bytes from %s:%u -> %s:%u via TUN\n",
2210                 (unsigned int) mlen,
2211                 inet_ntop (ts->af, &ts->destination_ip, sbuf, sizeof (sbuf)),
2212                 ts->destination_port,
2213                 inet_ntop (ts->af, &ts->source_ip, dbuf, sizeof (dbuf)),
2214                 ts->source_port);
2215   }
2216   if (data->tcp_header.off * 4 < sizeof (struct GNUNET_TUN_TcpHeader))
2217   {
2218     GNUNET_break_op (0);
2219     return GNUNET_SYSERR;
2220   }
2221   switch (ts->af)
2222   {
2223   case AF_INET:
2224     {
2225       size_t size = sizeof (struct GNUNET_TUN_IPv4Header) 
2226         + sizeof (struct GNUNET_TUN_TcpHeader) 
2227         + sizeof (struct GNUNET_MessageHeader) +
2228         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2229         mlen;
2230       {
2231         char buf[size];
2232         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2233         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2234         struct GNUNET_TUN_IPv4Header *ipv4 = (struct GNUNET_TUN_IPv4Header *) &tun[1];
2235         struct GNUNET_TUN_TcpHeader *tcp = (struct GNUNET_TUN_TcpHeader *) &ipv4[1];
2236         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2237         msg->size = htons (size);
2238         tun->flags = htons (0);
2239         tun->proto = htons (ETH_P_IPV4);
2240         GNUNET_TUN_initialize_ipv4_header (ipv4,
2241                                            IPPROTO_TCP,
2242                                            sizeof (struct GNUNET_TUN_TcpHeader) + mlen,
2243                                            &ts->destination_ip.v4,
2244                                            &ts->source_ip.v4);
2245         *tcp = data->tcp_header;
2246         tcp->spt = htons (ts->destination_port);
2247         tcp->dpt = htons (ts->source_port);
2248         GNUNET_TUN_calculate_tcp4_checksum (ipv4,
2249                                             tcp,
2250                                             &data[1],
2251                                             mlen);
2252         memcpy (&tcp[1],
2253                 &data[1],
2254                 mlen);
2255         (void) GNUNET_HELPER_send (helper_handle,
2256                                    msg,
2257                                    GNUNET_YES,
2258                                    NULL, NULL);
2259       }
2260     }
2261     break;
2262   case AF_INET6:
2263     {
2264       size_t size = sizeof (struct GNUNET_TUN_IPv6Header) 
2265         + sizeof (struct GNUNET_TUN_TcpHeader) 
2266         + sizeof (struct GNUNET_MessageHeader) +
2267         sizeof (struct GNUNET_TUN_Layer2PacketHeader) +
2268         mlen;
2269       {
2270         char buf[size];
2271         struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) buf;
2272         struct GNUNET_TUN_Layer2PacketHeader *tun = (struct GNUNET_TUN_Layer2PacketHeader*) &msg[1];
2273         struct GNUNET_TUN_IPv6Header *ipv6 = (struct GNUNET_TUN_IPv6Header *) &tun[1];
2274         struct GNUNET_TUN_TcpHeader *tcp = (struct GNUNET_TUN_TcpHeader *) &ipv6[1];
2275         msg->type = htons (GNUNET_MESSAGE_TYPE_VPN_HELPER);
2276         msg->size = htons (size);
2277         tun->flags = htons (0);
2278         tun->proto = htons (ETH_P_IPV6);
2279         GNUNET_TUN_initialize_ipv6_header (ipv6,
2280                                            IPPROTO_TCP,
2281                                            sizeof (struct GNUNET_TUN_TcpHeader) + mlen,
2282                                            &ts->destination_ip.v6,
2283                                            &ts->source_ip.v6);
2284         tcp->spt = htons (ts->destination_port);
2285         tcp->dpt = htons (ts->source_port);
2286         GNUNET_TUN_calculate_tcp6_checksum (ipv6,
2287                                             tcp,
2288                                             &tcp[1],
2289                                             mlen);
2290         (void) GNUNET_HELPER_send (helper_handle,
2291                                    msg,
2292                                    GNUNET_YES,
2293                                    NULL, NULL);
2294       }
2295     }
2296     break;
2297   }
2298   GNUNET_CONTAINER_heap_update_cost (tunnel_heap, 
2299                                      ts->heap_node,
2300                                      GNUNET_TIME_absolute_get ().abs_value);
2301   return GNUNET_OK;
2302 }
2303
2304
2305 /**
2306  * Allocate an IPv4 address from the range of the tunnel
2307  * for a new redirection.
2308  *
2309  * @param v4 where to store the address
2310  * @return GNUNET_OK on success,
2311  *         GNUNET_SYSERR on error
2312  */
2313 static int
2314 allocate_v4_address (struct in_addr *v4)
2315 {
2316   const char *ipv4addr = vpn_argv[4];
2317   const char *ipv4mask = vpn_argv[5];
2318   struct in_addr addr;
2319   struct in_addr mask;
2320   struct in_addr rnd;
2321   GNUNET_HashCode key;
2322   unsigned int tries;
2323
2324   GNUNET_assert (1 == inet_pton (AF_INET, ipv4addr, &addr));
2325   GNUNET_assert (1 == inet_pton (AF_INET, ipv4mask, &mask));           
2326   /* Given 192.168.0.1/255.255.0.0, we want a mask 
2327      of '192.168.255.255', thus:  */
2328   mask.s_addr = addr.s_addr | ~mask.s_addr;  
2329   tries = 0;
2330   do
2331     {
2332       tries++;
2333       if (tries > 16)
2334       {
2335         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2336                     _("Failed to find unallocated IPv4 address in VPN's range\n"));
2337         return GNUNET_SYSERR;
2338       }
2339       /* Pick random IPv4 address within the subnet, except 'addr' or 'mask' itself */
2340       rnd.s_addr = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
2341                                              UINT32_MAX);       
2342       v4->s_addr = (addr.s_addr | rnd.s_addr) & mask.s_addr;          
2343       get_destination_key_from_ip (AF_INET,
2344                                    v4,
2345                                    &key);
2346     }
2347   while ( (GNUNET_YES ==
2348            GNUNET_CONTAINER_multihashmap_contains (destination_map,
2349                                                    &key)) ||
2350           (v4->s_addr == addr.s_addr) ||
2351           (v4->s_addr == mask.s_addr) );
2352   return GNUNET_OK;
2353 }
2354
2355
2356 /**
2357  * Allocate an IPv6 address from the range of the tunnel
2358  * for a new redirection.
2359  *
2360  * @param v6 where to store the address
2361  * @return GNUNET_OK on success,
2362  *         GNUNET_SYSERR on error
2363  */
2364 static int
2365 allocate_v6_address (struct in6_addr *v6)
2366 {
2367   const char *ipv6addr = vpn_argv[2];
2368   struct in6_addr addr;
2369   struct in6_addr mask;
2370   struct in6_addr rnd;
2371   int i;
2372   GNUNET_HashCode key;
2373   unsigned int tries;
2374
2375   GNUNET_assert (1 == inet_pton (AF_INET6, ipv6addr, &addr));
2376   GNUNET_assert (ipv6prefix < 128);
2377   /* Given ABCD::/96, we want a mask of 'ABCD::FFFF:FFFF,
2378      thus: */
2379   mask = addr;
2380   for (i=127;i>=ipv6prefix;i--)
2381     mask.s6_addr[i / 8] |= (1 << (i % 8));
2382   
2383   /* Pick random IPv6 address within the subnet, except 'addr' or 'mask' itself */
2384   tries = 0;
2385   do
2386     {
2387       tries++;
2388       if (tries > 16)
2389         {
2390           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2391                       _("Failed to find unallocated IPv6 address in VPN's range\n"));
2392           return GNUNET_SYSERR;
2393
2394         }
2395       for (i=0;i<16;i++)
2396         {
2397           rnd.s6_addr[i] = (unsigned char) GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
2398                                                                      256);
2399           v6->s6_addr[i]
2400             = (addr.s6_addr[i] | rnd.s6_addr[i]) & mask.s6_addr[i];
2401         }
2402       get_destination_key_from_ip (AF_INET6,
2403                                    v6,
2404                                    &key);
2405     }
2406   while ( (GNUNET_YES ==
2407            GNUNET_CONTAINER_multihashmap_contains (destination_map,
2408                                                    &key)) ||
2409           (0 == memcmp (v6,
2410                         &addr,
2411                         sizeof (struct in6_addr))) ||
2412           (0 == memcmp (v6,
2413                         &mask,
2414                         sizeof (struct in6_addr))) );
2415   return GNUNET_OK;
2416 }
2417
2418
2419 /**
2420  * Free resources occupied by a destination entry.
2421  *
2422  * @param de entry to free
2423  */
2424 static void
2425 free_destination_entry (struct DestinationEntry *de)
2426 {
2427   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2428               "Cleaning up destination entry\n");
2429   GNUNET_STATISTICS_update (stats,
2430                             gettext_noop ("# Active destinations"),
2431                             -1, GNUNET_NO);
2432   if (NULL != de->ts)
2433   {
2434     free_tunnel_state (de->ts);
2435     GNUNET_assert (NULL == de->ts);
2436   }
2437   if (NULL != de->heap_node)
2438   {
2439     GNUNET_CONTAINER_heap_remove_node (de->heap_node);
2440     de->heap_node = NULL;  
2441     GNUNET_assert (GNUNET_YES ==
2442                    GNUNET_CONTAINER_multihashmap_remove (destination_map,
2443                                                          &de->key,
2444                                                          de));
2445   }
2446   GNUNET_free (de);
2447 }
2448
2449
2450 /**
2451  * We have too many active destinations.  Clean up the oldest destination.
2452  *
2453  * @param except destination that must NOT be cleaned up, even if it is the oldest
2454  */
2455 static void 
2456 expire_destination (struct DestinationEntry *except)
2457 {
2458   struct DestinationEntry *de;
2459
2460   de = GNUNET_CONTAINER_heap_peek (destination_heap);
2461   GNUNET_assert (NULL != de);
2462   if (except == de)
2463     return; /* can't do this */
2464   free_destination_entry (de);
2465 }
2466
2467
2468 /**
2469  * A client asks us to setup a redirection via some exit
2470  * node to a particular IP.  Setup the redirection and
2471  * give the client the allocated IP.
2472  *
2473  * @param cls unused
2474  * @param client requesting client
2475  * @param message redirection request (a 'struct RedirectToIpRequestMessage')
2476  */
2477 static void
2478 service_redirect_to_ip (void *cls GNUNET_UNUSED, struct GNUNET_SERVER_Client *client,
2479                         const struct GNUNET_MessageHeader *message)
2480 {
2481   size_t mlen;
2482   size_t alen;
2483   const struct RedirectToIpRequestMessage *msg;
2484   int addr_af;
2485   int result_af;
2486   struct in_addr v4;
2487   struct in6_addr v6;
2488   void *addr;
2489   struct DestinationEntry *de;
2490   GNUNET_HashCode key;
2491   struct TunnelState *ts;
2492   
2493   /* validate and parse request */
2494   mlen = ntohs (message->size);
2495   if (mlen < sizeof (struct RedirectToIpRequestMessage))
2496   {
2497     GNUNET_break (0);
2498     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2499     return;
2500   }
2501   alen = mlen - sizeof (struct RedirectToIpRequestMessage);
2502   msg = (const struct RedirectToIpRequestMessage *) message;
2503   addr_af = (int) htonl (msg->addr_af);
2504   switch (addr_af)
2505   {
2506   case AF_INET:
2507     if (alen != sizeof (struct in_addr))
2508     {
2509       GNUNET_break (0);
2510       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2511       return;      
2512     }
2513     break;
2514   case AF_INET6:
2515     if (alen != sizeof (struct in6_addr))
2516     {
2517       GNUNET_break (0);
2518       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2519       return;      
2520     }
2521     break;
2522   default:
2523     GNUNET_break (0);
2524     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2525     return;      
2526   }
2527
2528   /* allocate response IP */
2529   addr = NULL;
2530   result_af = (int) htonl (msg->result_af);
2531   switch (result_af)
2532   {
2533   case AF_INET:
2534     if (GNUNET_OK !=
2535         allocate_v4_address (&v4))
2536       result_af = AF_UNSPEC;
2537     else
2538       addr = &v4;
2539     break;
2540   case AF_INET6:
2541     if (GNUNET_OK !=
2542         allocate_v6_address (&v6))
2543       result_af = AF_UNSPEC;
2544     else
2545       addr = &v6;
2546     break;
2547   case AF_UNSPEC:
2548     if (GNUNET_OK ==
2549         allocate_v4_address (&v4))
2550     {
2551       addr = &v4;
2552       result_af = AF_INET;
2553     }
2554     else if (GNUNET_OK ==
2555         allocate_v6_address (&v6))
2556     {
2557       addr = &v6;
2558       result_af = AF_INET6;
2559     }
2560     break;
2561   default:
2562     GNUNET_break (0);
2563     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2564     return;      
2565   }
2566   if ( (result_af == AF_UNSPEC) ||
2567        (GNUNET_NO == ntohl (msg->nac)) )
2568   {
2569     /* send reply "instantly" */
2570     send_client_reply (client,
2571                        msg->request_id,
2572                        result_af,
2573                        addr);
2574   }
2575   if (result_af == AF_UNSPEC)
2576   {
2577     /* failure, we're done */
2578     GNUNET_SERVER_receive_done (client, GNUNET_OK);
2579     return;
2580   }
2581
2582   {
2583     char sbuf[INET6_ADDRSTRLEN];
2584     char dbuf[INET6_ADDRSTRLEN];
2585     
2586     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2587                 "Allocated address %s for redirection via exit to %s\n",
2588                 inet_ntop (result_af, addr, sbuf, sizeof (sbuf)),
2589                 inet_ntop (addr_af,
2590                            &msg[1], dbuf, sizeof (dbuf)));
2591   }
2592   
2593   /* setup destination record */
2594   de = GNUNET_malloc (sizeof (struct DestinationEntry));
2595   de->is_service = GNUNET_NO;
2596   de->details.exit_destination.af = addr_af;
2597   memcpy (&de->details.exit_destination.ip,
2598           &msg[1],
2599           alen);
2600   get_destination_key_from_ip (result_af,
2601                                addr,
2602                                &key);
2603   de->key = key;
2604   GNUNET_assert (GNUNET_OK ==
2605                  GNUNET_CONTAINER_multihashmap_put (destination_map,
2606                                                     &key,
2607                                                     de,
2608                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
2609   de->heap_node = GNUNET_CONTAINER_heap_insert (destination_heap,
2610                                                 de,
2611                                                 GNUNET_TIME_absolute_ntoh (msg->expiration_time).abs_value);
2612   GNUNET_STATISTICS_update (stats,
2613                             gettext_noop ("# Active destinations"),
2614                             1, GNUNET_NO);
2615   while (GNUNET_CONTAINER_multihashmap_size (destination_map) > max_destination_mappings)
2616     expire_destination (de);
2617   
2618   /* setup tunnel to destination */
2619   ts = create_tunnel_to_destination (de, 
2620                                      (GNUNET_NO == ntohl (msg->nac)) ? NULL : client,
2621                                      result_af,
2622                                      msg->request_id);
2623   switch (result_af)
2624   {
2625   case AF_INET:
2626     ts->destination_ip.v4 = v4;
2627     break;
2628   case AF_INET6:
2629     ts->destination_ip.v6 = v6;
2630     break;
2631   default:
2632     GNUNET_assert (0);
2633   }
2634   /* we're done */
2635   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2636 }
2637
2638
2639 /**
2640  * A client asks us to setup a redirection to a particular peer
2641  * offering a service.  Setup the redirection and give the client the
2642  * allocated IP.
2643  *
2644  * @param cls unused
2645  * @param client requesting client
2646  * @param message redirection request (a 'struct RedirectToPeerRequestMessage')
2647  */
2648 static void
2649 service_redirect_to_service (void *cls GNUNET_UNUSED, struct GNUNET_SERVER_Client *client,
2650                              const struct GNUNET_MessageHeader *message)
2651 {
2652   const struct RedirectToServiceRequestMessage *msg;
2653   int result_af;
2654   struct in_addr v4;
2655   struct in6_addr v6;
2656   void *addr;
2657   struct DestinationEntry *de;
2658   GNUNET_HashCode key;
2659   struct TunnelState *ts;
2660   
2661   /*  parse request */
2662   msg = (const struct RedirectToServiceRequestMessage *) message;
2663
2664   /* allocate response IP */
2665   addr = NULL;
2666   result_af = (int) htonl (msg->result_af);
2667   switch (result_af)
2668   {
2669   case AF_INET:
2670     if (GNUNET_OK !=
2671         allocate_v4_address (&v4))
2672       result_af = AF_UNSPEC;
2673     else
2674       addr = &v4;
2675     break;
2676   case AF_INET6:
2677     if (GNUNET_OK !=
2678         allocate_v6_address (&v6))
2679       result_af = AF_UNSPEC;
2680     else
2681       addr = &v6;
2682     break;
2683   case AF_UNSPEC:
2684     if (GNUNET_OK ==
2685         allocate_v4_address (&v4))
2686     {
2687       addr = &v4;
2688       result_af = AF_INET;
2689     }
2690     else if (GNUNET_OK ==
2691         allocate_v6_address (&v6))
2692     {
2693       addr = &v6;
2694       result_af = AF_INET6;
2695     }
2696     break;
2697   default:
2698     GNUNET_break (0);
2699     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2700     return;      
2701   }
2702   if ( (result_af == AF_UNSPEC) ||
2703        (GNUNET_NO == ntohl (msg->nac)) )
2704   {
2705     /* send reply "instantly" */
2706     send_client_reply (client,
2707                        msg->request_id,
2708                        result_af,
2709                        addr);
2710   }
2711   if (result_af == AF_UNSPEC)
2712   {
2713     /* failure, we're done */
2714     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2715                 _("Failed to allocate IP address for new destination\n"));
2716     GNUNET_SERVER_receive_done (client, GNUNET_OK);
2717     return;
2718   }
2719
2720   {
2721     char sbuf[INET6_ADDRSTRLEN];
2722     
2723     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2724                 "Allocated address %s for redirection to service %s on peer %s\n",
2725                 inet_ntop (result_af, addr, sbuf, sizeof (sbuf)),
2726                 GNUNET_h2s (&msg->service_descriptor),
2727                 GNUNET_i2s (&msg->target));
2728   }
2729   
2730   /* setup destination record */
2731   de = GNUNET_malloc (sizeof (struct DestinationEntry));
2732   de->is_service = GNUNET_YES;
2733   de->details.service_destination.service_descriptor = msg->service_descriptor;
2734   de->details.service_destination.target = msg->target;
2735   get_destination_key_from_ip (result_af,
2736                                addr,
2737                                &key);
2738   de->key = key;
2739   GNUNET_assert (GNUNET_OK ==
2740                  GNUNET_CONTAINER_multihashmap_put (destination_map,
2741                                                     &key,
2742                                                     de,
2743                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
2744   de->heap_node = GNUNET_CONTAINER_heap_insert (destination_heap,
2745                                                 de,
2746                                                 GNUNET_TIME_absolute_ntoh (msg->expiration_time).abs_value);
2747   while (GNUNET_CONTAINER_multihashmap_size (destination_map) > max_destination_mappings)
2748     expire_destination (de);
2749   ts = create_tunnel_to_destination (de,
2750                                      (GNUNET_NO == ntohl (msg->nac)) ? NULL : client,
2751                                      result_af,
2752                                      msg->request_id);
2753   switch (result_af)
2754   {
2755   case AF_INET:
2756     ts->destination_ip.v4 = v4;
2757     break;
2758   case AF_INET6:
2759     ts->destination_ip.v6 = v6;
2760     break;
2761   default:
2762     GNUNET_assert (0);
2763   }
2764   /* we're done */
2765   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2766 }
2767
2768
2769
2770 /**
2771  * Function called for inbound tunnels.  As we don't offer
2772  * any mesh services, this function should never be called.
2773  *
2774  * @param cls closure
2775  * @param tunnel new handle to the tunnel
2776  * @param initiator peer that started the tunnel
2777  * @param atsi performance information for the tunnel
2778  * @return initial tunnel context for the tunnel
2779  *         (can be NULL -- that's not an error)
2780  */ 
2781 static void *
2782 inbound_tunnel_cb (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
2783                    const struct GNUNET_PeerIdentity *initiator,
2784                    const struct GNUNET_ATS_Information *atsi)
2785 {
2786   /* How can and why should anyone open an inbound tunnel to vpn? */
2787   GNUNET_break (0);
2788   return NULL;
2789 }
2790
2791
2792 /**
2793  * Function called whenever an inbound tunnel is destroyed.  Should clean up
2794  * any associated state.
2795  *
2796  * @param cls closure (set from GNUNET_MESH_connect)
2797  * @param tunnel connection to the other end (henceforth invalid)
2798  * @param tunnel_ctx place where local state associated
2799  *                   with the tunnel is stored (our 'struct TunnelState')
2800  */ 
2801 static void
2802 tunnel_cleaner (void *cls, const struct GNUNET_MESH_Tunnel *tunnel, void *tunnel_ctx)
2803 {
2804   /* we don't have inbound tunnels, so this function should never be called */
2805   GNUNET_break (0);
2806 }
2807
2808
2809 /**
2810  * Free memory occupied by an entry in the destination map.
2811  *
2812  * @param cls unused
2813  * @param key unused
2814  * @param value a 'struct DestinationEntry *'
2815  * @return GNUNET_OK (continue to iterate)
2816  */
2817 static int
2818 cleanup_destination (void *cls,
2819                      const GNUNET_HashCode *key,
2820                      void *value)
2821 {
2822   struct DestinationEntry *de = value;
2823
2824   free_destination_entry (de);
2825   return GNUNET_OK;
2826 }
2827
2828
2829 /**
2830  * Free memory occupied by an entry in the tunnel map.
2831  *
2832  * @param cls unused
2833  * @param key unused
2834  * @param value a 'struct TunnelState *'
2835  * @return GNUNET_OK (continue to iterate)
2836  */
2837 static int
2838 cleanup_tunnel (void *cls,
2839                 const GNUNET_HashCode *key,
2840                 void *value)
2841 {
2842   struct TunnelState *ts = value;
2843
2844   free_tunnel_state (ts);
2845   return GNUNET_OK;
2846 }
2847
2848
2849 /**
2850  * Function scheduled as very last function, cleans up after us
2851  *
2852  * @param cls unused
2853  * @param tc unused
2854  */
2855 static void
2856 cleanup (void *cls GNUNET_UNUSED,
2857          const struct GNUNET_SCHEDULER_TaskContext *tc)
2858 {
2859   unsigned int i;
2860
2861   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2862               "VPN is shutting down\n");
2863   if (NULL != destination_map)
2864   {  
2865     GNUNET_CONTAINER_multihashmap_iterate (destination_map,
2866                                            &cleanup_destination,
2867                                            NULL);
2868     GNUNET_CONTAINER_multihashmap_destroy (destination_map);
2869     destination_map = NULL;
2870   }
2871   if (NULL != destination_heap)
2872   {
2873     GNUNET_CONTAINER_heap_destroy (destination_heap);
2874     destination_heap = NULL;
2875   }
2876   if (NULL != tunnel_map)
2877   {  
2878     GNUNET_CONTAINER_multihashmap_iterate (tunnel_map,
2879                                            &cleanup_tunnel,
2880                                            NULL);
2881     GNUNET_CONTAINER_multihashmap_destroy (tunnel_map);
2882     tunnel_map = NULL;
2883   }
2884   if (NULL != tunnel_heap)
2885   {
2886     GNUNET_CONTAINER_heap_destroy (tunnel_heap);
2887     tunnel_heap = NULL;
2888   }
2889   if (NULL != mesh_handle)
2890   {
2891     GNUNET_MESH_disconnect (mesh_handle);
2892     mesh_handle = NULL;
2893   }
2894   if (NULL != helper_handle)
2895     {
2896     GNUNET_HELPER_stop (helper_handle);
2897     helper_handle = NULL;
2898   }
2899   if (NULL != nc)
2900   {
2901     GNUNET_SERVER_notification_context_destroy (nc);
2902     nc = NULL;
2903   }
2904   if (stats != NULL)
2905   {
2906     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
2907     stats = NULL;
2908   }
2909   for (i=0;i<5;i++)
2910     GNUNET_free_non_null (vpn_argv[i]);
2911 }
2912
2913
2914 /**
2915  * A client disconnected, clean up all references to it.
2916  *
2917  * @param cls the client that disconnected
2918  * @param key unused
2919  * @param value a 'struct TunnelState *'
2920  * @return GNUNET_OK (continue to iterate)
2921  */
2922 static int
2923 cleanup_tunnel_client (void *cls,
2924                        const GNUNET_HashCode *key,
2925                        void *value)
2926 {
2927   struct GNUNET_SERVER_Client *client = cls;
2928   struct TunnelState *ts = value;
2929
2930   if (client == ts->client)
2931   {
2932     GNUNET_SERVER_client_drop (ts->client);
2933     ts->client = NULL;
2934   }
2935   return GNUNET_OK;
2936 }
2937
2938
2939 /**
2940  * A client disconnected, clean up all references to it.
2941  *
2942  * @param cls the client that disconnected
2943  * @param key unused
2944  * @param value a 'struct DestinationEntry *'
2945  * @return GNUNET_OK (continue to iterate)
2946  */
2947 static int
2948 cleanup_destination_client (void *cls,
2949                             const GNUNET_HashCode *key,
2950                             void *value)
2951 {
2952   struct GNUNET_SERVER_Client *client = cls;
2953   struct DestinationEntry *de = value;
2954   struct TunnelState *ts;
2955
2956   if (NULL == (ts = de->ts))
2957     return GNUNET_OK;
2958   if (client == ts->client)
2959   {
2960     GNUNET_SERVER_client_drop (ts->client);
2961     ts->client = NULL;
2962   }
2963   return GNUNET_OK;
2964 }
2965
2966   
2967 /**
2968  * A client has disconnected from us.  If we are currently building
2969  * a tunnel for it, cancel the operation.
2970  *
2971  * @param cls unused
2972  * @param client handle to the client that disconnected
2973  */
2974 static void
2975 client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
2976 {
2977   if (NULL != tunnel_map)
2978     GNUNET_CONTAINER_multihashmap_iterate (tunnel_map,
2979                                            &cleanup_tunnel_client,
2980                                            client);
2981   if (NULL != destination_map)
2982     GNUNET_CONTAINER_multihashmap_iterate (destination_map,
2983                                            &cleanup_destination_client,
2984                                            client);
2985 }
2986
2987
2988 /**
2989  * Main function that will be run by the scheduler.
2990  *
2991  * @param cls closure
2992  * @param server the initialized server
2993  * @param cfg_ configuration
2994  */
2995 static void
2996 run (void *cls,
2997      struct GNUNET_SERVER_Handle *server,
2998      const struct GNUNET_CONFIGURATION_Handle *cfg_)
2999 {
3000   static const struct GNUNET_SERVER_MessageHandler service_handlers[] = {
3001     /* callback, cls, type, size */
3002     { &service_redirect_to_ip, NULL, GNUNET_MESSAGE_TYPE_VPN_CLIENT_REDIRECT_TO_IP, 0},
3003     { &service_redirect_to_service, NULL, 
3004      GNUNET_MESSAGE_TYPE_VPN_CLIENT_REDIRECT_TO_SERVICE, 
3005      sizeof (struct RedirectToServiceRequestMessage) },
3006     {NULL, NULL, 0, 0}
3007   };
3008   static const struct GNUNET_MESH_MessageHandler mesh_handlers[] = {
3009     { &receive_udp_back, GNUNET_MESSAGE_TYPE_VPN_UDP_REPLY, 0},
3010     { &receive_tcp_back, GNUNET_MESSAGE_TYPE_VPN_TCP_DATA_TO_VPN, 0},
3011     { &receive_icmp_back, GNUNET_MESSAGE_TYPE_VPN_ICMP_TO_VPN, 0},
3012     {NULL, 0, 0}
3013   };
3014   static const GNUNET_MESH_ApplicationType types[] = {
3015     GNUNET_APPLICATION_TYPE_END
3016   };
3017   char *ifname;
3018   char *ipv6addr;
3019   char *ipv6prefix_s;
3020   char *ipv4addr;
3021   char *ipv4mask;
3022   struct in_addr v4;
3023   struct in6_addr v6;
3024
3025   if (GNUNET_YES !=
3026       GNUNET_OS_check_helper_binary ("gnunet-helper-vpn"))
3027   {
3028     fprintf (stderr,
3029              "`%s' is not SUID, refusing to run.\n",
3030              "gnunet-helper-vpn");
3031     global_ret = 1;
3032     return;
3033   }
3034   cfg = cfg_;
3035   stats = GNUNET_STATISTICS_create ("vpn", cfg);
3036   if (GNUNET_OK !=
3037       GNUNET_CONFIGURATION_get_value_number (cfg, "vpn", "MAX_MAPPING",
3038                                              &max_destination_mappings))
3039     max_destination_mappings = 200;
3040   if (GNUNET_OK !=
3041       GNUNET_CONFIGURATION_get_value_number (cfg, "vpn", "MAX_TUNNELS",
3042                                              &max_tunnel_mappings))
3043     max_tunnel_mappings = 200;
3044
3045   destination_map = GNUNET_CONTAINER_multihashmap_create (max_destination_mappings * 2);
3046   destination_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
3047   tunnel_map = GNUNET_CONTAINER_multihashmap_create (max_tunnel_mappings * 2);
3048   tunnel_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
3049
3050
3051   vpn_argv[0] = GNUNET_strdup ("vpn-gnunet");
3052   if (GNUNET_SYSERR ==
3053       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IFNAME", &ifname))
3054   {
3055     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3056                 "No entry 'IFNAME' in configuration!\n");
3057     GNUNET_SCHEDULER_shutdown ();
3058     return;
3059   }
3060   vpn_argv[1] = ifname;
3061   if ( (GNUNET_SYSERR ==
3062         GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6ADDR",
3063                                                &ipv6addr) ||
3064         (1 != inet_pton (AF_INET6, ipv6addr, &v6))) )
3065   {
3066     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3067                 "No valid entry 'IPV6ADDR' in configuration!\n");
3068     GNUNET_SCHEDULER_shutdown ();
3069     return;
3070   }
3071   vpn_argv[2] = ipv6addr;
3072   if (GNUNET_SYSERR ==
3073       GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV6PREFIX",
3074                                              &ipv6prefix_s))
3075   {
3076     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3077                 "No entry 'IPV6PREFIX' in configuration!\n");
3078     GNUNET_SCHEDULER_shutdown ();
3079     return;
3080   }
3081   vpn_argv[3] = ipv6prefix_s;
3082   if ( (GNUNET_OK !=
3083         GNUNET_CONFIGURATION_get_value_number (cfg, "vpn",
3084                                                "IPV6PREFIX",
3085                                                &ipv6prefix)) ||
3086        (ipv6prefix >= 127) )
3087   {
3088     GNUNET_SCHEDULER_shutdown ();
3089     return;
3090   }
3091
3092   if ( (GNUNET_SYSERR ==
3093         GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4ADDR",
3094                                                &ipv4addr) ||
3095         (1 != inet_pton (AF_INET, ipv4addr, &v4))) )
3096   {
3097     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3098                 "No valid entry for 'IPV4ADDR' in configuration!\n");
3099     GNUNET_SCHEDULER_shutdown ();
3100     return;
3101   }
3102   vpn_argv[4] = ipv4addr;
3103   if ( (GNUNET_SYSERR ==
3104         GNUNET_CONFIGURATION_get_value_string (cfg, "vpn", "IPV4MASK",
3105                                                &ipv4mask) ||
3106         (1 != inet_pton (AF_INET, ipv4mask, &v4))) )
3107   {
3108     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3109                 "No valid entry 'IPV4MASK' in configuration!\n");
3110     GNUNET_SCHEDULER_shutdown ();
3111     return;
3112   }
3113   vpn_argv[5] = ipv4mask;
3114   vpn_argv[6] = NULL;
3115
3116   mesh_handle =
3117     GNUNET_MESH_connect (cfg_, 42 /* queue length */, NULL, 
3118                          &inbound_tunnel_cb, 
3119                          &tunnel_cleaner, 
3120                          mesh_handlers,
3121                          types);
3122   helper_handle = GNUNET_HELPER_start ("gnunet-helper-vpn", vpn_argv,
3123                                        &message_token, NULL);
3124   nc = GNUNET_SERVER_notification_context_create (server, 1);
3125   GNUNET_SERVER_add_handlers (server, service_handlers);
3126   GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
3127   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
3128 }
3129
3130
3131 /**
3132  * The main function of the VPN service.
3133  *
3134  * @param argc number of arguments from the command line
3135  * @param argv command line arguments
3136  * @return 0 ok, 1 on error
3137  */
3138 int
3139 main (int argc, char *const *argv)
3140 {
3141   return (GNUNET_OK ==
3142           GNUNET_SERVICE_run (argc, argv, "vpn", 
3143                               GNUNET_SERVICE_OPTION_NONE,
3144                               &run, NULL)) ? global_ret : 1;
3145 }
3146
3147 /* end of gnunet-service-vpn.c */