-modify NAT API to return error messages about problems detected
[oweals/gnunet.git] / src / nat / nat.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
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 nat/nat.c
23  * @brief Library handling UPnP and NAT-PMP port forwarding and
24  *     external IP address retrieval
25  * @author Milan Bouchet-Valat
26  * @author Christian Grothoff
27  */
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_resolver_service.h"
31 #include "gnunet_nat_lib.h"
32 #include "nat.h"
33
34 #define LOG(kind,...) GNUNET_log_from (kind, "nat", __VA_ARGS__)
35
36 /**
37  * How often do we scan for changes in our IP address from our local
38  * interfaces?
39  */
40 #define IFC_SCAN_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
41
42 /**
43  * How often do we scan for changes in how our hostname resolves?
44  */
45 #define HOSTNAME_DNS_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 20)
46
47
48 /**
49  * How often do we scan for changes in how our external (dyndns) hostname resolves?
50  */
51 #define DYNDNS_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 7)
52
53 /**
54  * How long until we give up trying to resolve our own hostname?
55  */
56 #define HOSTNAME_RESOLVE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
57
58
59 /**
60  * Where did the given local address originate from?
61  * To be used for debugging as well as in the future
62  * to remove all addresses from a certain source when
63  * we reevaluate the source.
64  */
65 enum LocalAddressSource
66 {
67   /**
68    * Address was obtained by DNS resolution of the external hostname
69    * given in the configuration (i.e. hole-punched DynDNS setup).
70    */
71   LAL_EXTERNAL_IP,
72
73   /**
74    * Address was obtained by DNS resolution of the external hostname
75    * given in the configuration (i.e. hole-punched DynDNS setup)
76    * during the previous iteration (see #3213).
77    */
78   LAL_EXTERNAL_IP_OLD,
79
80   /**
81    * Address was obtained by looking up our own hostname in DNS.
82    */
83   LAL_HOSTNAME_DNS,
84
85   /**
86    * Address was obtained by scanning our hosts's network interfaces
87    * and taking their address (no DNS involved).
88    */
89   LAL_INTERFACE_ADDRESS,
90
91   /**
92    * Addresses we were explicitly bound to.
93    */
94   LAL_BINDTO_ADDRESS,
95
96   /**
97    * Addresses from UPnP or PMP
98    */
99   LAL_UPNP,
100
101   /**
102    * End of the list.
103    */
104   LAL_END
105 };
106
107
108 /**
109  * List of local addresses that we currently deem valid.  Actual
110  * struct is followed by the 'struct sockaddr'.  Note that the code
111  * intentionally makes no attempt to ensure that a particular address
112  * is only listed once (especially since it may come from different
113  * sources, and the source is an "internal" construct).
114  */
115 struct LocalAddressList
116 {
117   /**
118    * This is a linked list.
119    */
120   struct LocalAddressList *next;
121
122   /**
123    * Previous entry.
124    */
125   struct LocalAddressList *prev;
126
127   /**
128    * Number of bytes of address that follow.
129    */
130   socklen_t addrlen;
131
132   /**
133    * Origin of the local address.
134    */
135   enum LocalAddressSource source;
136 };
137
138
139 /**
140  * Handle for miniupnp-based NAT traversal actions.
141  */
142 struct MiniList
143 {
144
145   /**
146    * Doubly-linked list.
147    */
148   struct MiniList *next;
149
150   /**
151    * Doubly-linked list.
152    */
153   struct MiniList *prev;
154
155   /**
156    * Handle to mini-action.
157    */
158   struct GNUNET_NAT_MiniHandle *mini;
159
160   /**
161    * Local port number that was mapped.
162    */
163   uint16_t port;
164
165 };
166
167
168 /**
169  * Handle for active NAT registrations.
170  */
171 struct GNUNET_NAT_Handle
172 {
173
174   /**
175    * Configuration to use.
176    */
177   const struct GNUNET_CONFIGURATION_Handle *cfg;
178
179   /**
180    * Function to call when we learn about a new address.
181    */
182   GNUNET_NAT_AddressCallback address_callback;
183
184   /**
185    * Function to call when we notice another peer asking for
186    * connection reversal.
187    */
188   GNUNET_NAT_ReversalCallback reversal_callback;
189
190   /**
191    * Closure for callbacks (@e address_callback and @e reversal_callback)
192    */
193   void *callback_cls;
194
195   /**
196    * Handle for (DYN)DNS lookup of our external IP.
197    */
198   struct GNUNET_RESOLVER_RequestHandle *ext_dns;
199
200   /**
201    * Handle for request of hostname resolution, non-NULL if pending.
202    */
203   struct GNUNET_RESOLVER_RequestHandle *hostname_dns;
204
205   /**
206    * stdout pipe handle for the gnunet-helper-nat-server process
207    */
208   struct GNUNET_DISK_PipeHandle *server_stdout;
209
210   /**
211    * stdout file handle (for reading) for the gnunet-helper-nat-server process
212    */
213   const struct GNUNET_DISK_FileHandle *server_stdout_handle;
214
215   /**
216    * Linked list of currently valid addresses (head).
217    */
218   struct LocalAddressList *lal_head;
219
220   /**
221    * Linked list of currently valid addresses (tail).
222    */
223   struct LocalAddressList *lal_tail;
224
225   /**
226    * How long do we wait for restarting a crashed gnunet-helper-nat-server?
227    */
228   struct GNUNET_TIME_Relative server_retry_delay;
229
230   /**
231    * ID of select gnunet-helper-nat-server stdout read task
232    */
233   GNUNET_SCHEDULER_TaskIdentifier server_read_task;
234
235   /**
236    * ID of interface IP-scan task
237    */
238   GNUNET_SCHEDULER_TaskIdentifier ifc_task;
239
240   /**
241    * ID of hostname DNS lookup task
242    */
243   GNUNET_SCHEDULER_TaskIdentifier hostname_task;
244
245   /**
246    * ID of DynDNS lookup task
247    */
248   GNUNET_SCHEDULER_TaskIdentifier dns_task;
249
250   /**
251    * ID of task to add addresses from bind.
252    */
253   GNUNET_SCHEDULER_TaskIdentifier bind_task;
254
255   /**
256    * How often do we scan for changes in our IP address from our local
257    * interfaces?
258    */
259   struct GNUNET_TIME_Relative ifc_scan_frequency;
260
261   /**
262    * How often do we scan for changes in how our hostname resolves?
263    */
264   struct GNUNET_TIME_Relative hostname_dns_frequency;
265
266   /**
267    * How often do we scan for changes in how our external (dyndns) hostname resolves?
268    */
269   struct GNUNET_TIME_Relative dyndns_frequency;
270
271   /**
272    * The process id of the server process (if behind NAT)
273    */
274   struct GNUNET_OS_Process *server_proc;
275
276   /**
277    * LAN address as passed by the caller (array).
278    */
279   struct sockaddr **local_addrs;
280
281   /**
282    * Length of the @e local_addrs.
283    */
284   socklen_t *local_addrlens;
285
286   /**
287    * List of handles for UPnP-traversal, one per local port (if
288    * not IPv6-only).
289    */
290   struct MiniList *mini_head;
291
292   /**
293    * List of handles for UPnP-traversal, one per local port (if
294    * not IPv6-only).
295    */
296   struct MiniList *mini_tail;
297
298   /**
299    * Number of entries in 'local_addrs' array.
300    */
301   unsigned int num_local_addrs;
302
303   /**
304    * Our external address (according to config, UPnP may disagree...),
305    * in dotted decimal notation, IPv4-only. Or NULL if not known.
306    */
307   char *external_address;
308
309   /**
310    * Presumably our internal address (according to config)
311    */
312   char *internal_address;
313
314   /**
315    * Is this transport configured to be behind a NAT?
316    */
317   int behind_nat;
318
319   /**
320    * Has the NAT been punched? (according to config)
321    */
322   int nat_punched;
323
324   /**
325    * Is this transport configured to allow connections to NAT'd peers?
326    */
327   int enable_nat_client;
328
329   /**
330    * Should we run the gnunet-helper-nat-server?
331    */
332   int enable_nat_server;
333
334   /**
335    * Are we allowed to try UPnP/PMP for NAT traversal?
336    */
337   int enable_upnp;
338
339   /**
340    * Should we use local addresses (loopback)? (according to config)
341    */
342   int use_localaddresses;
343
344   /**
345    * Should we return local addresses to clients
346    */
347   int return_localaddress;
348
349   /**
350    * Should we do a DNS lookup of our hostname to find out our own IP?
351    */
352   int use_hostname;
353
354   /**
355    * Is using IPv6 disabled?
356    */
357   int disable_ipv6;
358
359   /**
360    * Is this TCP or UDP?
361    */
362   int is_tcp;
363
364   /**
365    * Port we advertise to the outside.
366    */
367   uint16_t adv_port;
368
369 };
370
371
372 /**
373  * Try to start the gnunet-helper-nat-server (if it is not
374  * already running).
375  *
376  * @param h handle to NAT
377  */
378 static void
379 start_gnunet_nat_server (struct GNUNET_NAT_Handle *h);
380
381
382 /**
383  * Remove all addresses from the list of 'local' addresses
384  * that originated from the given source.
385  *
386  * @param h handle to NAT
387  * @param src source that identifies addresses to remove
388  */
389 static void
390 remove_from_address_list_by_source (struct GNUNET_NAT_Handle *h,
391                                     enum LocalAddressSource src)
392 {
393   struct LocalAddressList *pos;
394   struct LocalAddressList *next;
395
396   next = h->lal_head;
397   while (NULL != (pos = next))
398   {
399     next = pos->next;
400     if (pos->source != src)
401       continue;
402     GNUNET_CONTAINER_DLL_remove (h->lal_head, h->lal_tail, pos);
403     if (NULL != h->address_callback)
404       h->address_callback (h->callback_cls, GNUNET_NO,
405                            (const struct sockaddr *) &pos[1], pos->addrlen);
406     GNUNET_free (pos);
407   }
408 }
409
410
411 /**
412  * Add the given address to the list of 'local' addresses, thereby
413  * making it a 'legal' address for this peer to have.
414  *
415  * @param h handle to NAT
416  * @param src where did the local address originate from?
417  * @param arg the address, some `struct sockaddr`
418  * @param arg_size number of bytes in @a arg
419  */
420 static void
421 add_to_address_list_as_is (struct GNUNET_NAT_Handle *h,
422                            enum LocalAddressSource src,
423                            const struct sockaddr *arg, socklen_t arg_size)
424 {
425   struct LocalAddressList *lal;
426
427   lal = GNUNET_malloc (sizeof (struct LocalAddressList) + arg_size);
428   memcpy (&lal[1], arg, arg_size);
429   lal->addrlen = arg_size;
430   lal->source = src;
431   GNUNET_CONTAINER_DLL_insert (h->lal_head, h->lal_tail, lal);
432   LOG (GNUNET_ERROR_TYPE_DEBUG,
433        "Adding address `%s' from source %d\n",
434        GNUNET_a2s (arg, arg_size),
435        src);
436   if (NULL != h->address_callback)
437     h->address_callback (h->callback_cls, GNUNET_YES, arg, arg_size);
438 }
439
440
441 /**
442  * Add the given address to the list of 'local' addresses, thereby
443  * making it a 'legal' address for this peer to have.   Set the
444  * port number in the process to the advertised port and possibly
445  * also to zero (if we have the gnunet-helper-nat-server).
446  *
447  * @param h handle to NAT
448  * @param src where did the local address originate from?
449  * @param arg the address, some `struct sockaddr`
450  * @param arg_size number of bytes in @a arg
451  */
452 static void
453 add_to_address_list (struct GNUNET_NAT_Handle *h,
454                      enum LocalAddressSource src,
455                      const struct sockaddr *arg,
456                      socklen_t arg_size)
457 {
458   struct sockaddr_in s4;
459   const struct sockaddr_in *in4;
460   struct sockaddr_in6 s6;
461   const struct sockaddr_in6 *in6;
462
463   if (arg_size == sizeof (struct sockaddr_in))
464   {
465     in4 = (const struct sockaddr_in *) arg;
466     s4 = *in4;
467     s4.sin_port = htons (h->adv_port);
468     add_to_address_list_as_is (h, src, (const struct sockaddr *) &s4,
469                                sizeof (struct sockaddr_in));
470     if (GNUNET_YES == h->enable_nat_server)
471     {
472       /* also add with PORT = 0 to indicate NAT server is enabled */
473       s4.sin_port = htons (0);
474       add_to_address_list_as_is (h, src, (const struct sockaddr *) &s4,
475                                  sizeof (struct sockaddr_in));
476     }
477   }
478   else if (arg_size == sizeof (struct sockaddr_in6))
479   {
480     if (GNUNET_YES != h->disable_ipv6)
481     {
482       in6 = (const struct sockaddr_in6 *) arg;
483       s6 = *in6;
484       s6.sin6_port = htons (h->adv_port);
485       add_to_address_list_as_is (h, src, (const struct sockaddr *) &s6,
486                                  sizeof (struct sockaddr_in6));
487     }
488   }
489   else
490   {
491     GNUNET_assert (0);
492   }
493 }
494
495
496 /**
497  * Add the given IP address to the list of 'local' addresses, thereby
498  * making it a 'legal' address for this peer to have.
499  *
500  * @param h handle to NAT
501  * @param src where did the local address originate from?
502  * @param addr the address, some `struct in_addr` or `struct in6_addr`
503  * @param addrlen number of bytes in addr
504  */
505 static void
506 add_ip_to_address_list (struct GNUNET_NAT_Handle *h,
507                         enum LocalAddressSource src, const void *addr,
508                         socklen_t addrlen)
509 {
510   struct sockaddr_in s4;
511   const struct in_addr *in4;
512   struct sockaddr_in6 s6;
513   const struct in6_addr *in6;
514
515   if (addrlen == sizeof (struct in_addr))
516   {
517     in4 = (const struct in_addr *) addr;
518     memset (&s4, 0, sizeof (s4));
519     s4.sin_family = AF_INET;
520     s4.sin_port = 0;
521 #if HAVE_SOCKADDR_IN_SIN_LEN
522     s4.sin_len = (u_char) sizeof (struct sockaddr_in);
523 #endif
524     s4.sin_addr = *in4;
525     add_to_address_list (h, src, (const struct sockaddr *) &s4,
526                          sizeof (struct sockaddr_in));
527     if (GNUNET_YES == h->enable_nat_server)
528     {
529       /* also add with PORT = 0 to indicate NAT server is enabled */
530       s4.sin_port = htons (0);
531       add_to_address_list (h, src, (const struct sockaddr *) &s4,
532                            sizeof (struct sockaddr_in));
533
534     }
535   }
536   else if (addrlen == sizeof (struct in6_addr))
537   {
538     if (GNUNET_YES != h->disable_ipv6)
539     {
540       in6 = (const struct in6_addr *) addr;
541       memset (&s6, 0, sizeof (s6));
542       s6.sin6_family = AF_INET6;
543       s6.sin6_port = htons (h->adv_port);
544 #if HAVE_SOCKADDR_IN_SIN_LEN
545       s6.sin6_len = (u_char) sizeof (struct sockaddr_in6);
546 #endif
547       s6.sin6_addr = *in6;
548       add_to_address_list (h, src, (const struct sockaddr *) &s6,
549                            sizeof (struct sockaddr_in6));
550     }
551   }
552   else
553   {
554     GNUNET_assert (0);
555   }
556 }
557
558
559 /**
560  * Task to do DNS lookup on our external hostname to
561  * get DynDNS-IP addresses.
562  *
563  * @param cls the NAT handle
564  * @param tc scheduler context
565  */
566 static void
567 resolve_dns (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
568
569
570 /**
571  * Our (external) hostname was resolved and the configuration says that
572  * the NAT was hole-punched.
573  *
574  * @param cls the `struct GNUNET_NAT_Handle`
575  * @param addr NULL on error, otherwise result of DNS lookup
576  * @param addrlen number of bytes in @a addr
577  */
578 static void
579 process_external_ip (void *cls,
580                      const struct sockaddr *addr,
581                      socklen_t addrlen)
582 {
583   struct GNUNET_NAT_Handle *h = cls;
584   struct in_addr dummy;
585
586   if (NULL == addr)
587   {
588     h->ext_dns = NULL;
589     /* Current iteration is over, remove 'old' IPs now */
590     LOG (GNUNET_ERROR_TYPE_DEBUG,
591          "Purging old IPs for external address\n");
592     remove_from_address_list_by_source (h, LAL_EXTERNAL_IP_OLD);
593     if (1 == inet_pton (AF_INET,
594                         h->external_address,
595                         &dummy))
596     {
597       LOG (GNUNET_ERROR_TYPE_DEBUG,
598            "Got numeric IP for external address, not repeating lookup\n");
599       return;                   /* repated lookup pointless: was numeric! */
600     }
601     h->dns_task =
602       GNUNET_SCHEDULER_add_delayed (h->dyndns_frequency,
603                                     &resolve_dns, h);
604     return;
605   }
606   LOG (GNUNET_ERROR_TYPE_DEBUG,
607        "Got IP `%s' for external address `%s'\n",
608        GNUNET_a2s (addr, addrlen),
609        h->external_address);
610   add_to_address_list (h, LAL_EXTERNAL_IP, addr, addrlen);
611 }
612
613
614 /**
615  * Task to do a lookup on our hostname for IP addresses.
616  *
617  * @param cls the NAT handle
618  * @param tc scheduler context
619  */
620 static void
621 resolve_hostname (void *cls,
622                   const struct GNUNET_SCHEDULER_TaskContext *tc);
623
624
625 /**
626  * Function called by the resolver for each address obtained from DNS
627  * for our own hostname.  Add the addresses to the list of our IP
628  * addresses.
629  *
630  * @param cls closure
631  * @param addr one of the addresses of the host, NULL for the last address
632  * @param addrlen length of the @a addr
633  */
634 static void
635 process_hostname_ip (void *cls,
636                      const struct sockaddr *addr,
637                      socklen_t addrlen)
638 {
639   struct GNUNET_NAT_Handle *h = cls;
640
641   if (NULL == addr)
642   {
643     h->hostname_dns = NULL;
644     h->hostname_task =
645         GNUNET_SCHEDULER_add_delayed (h->hostname_dns_frequency,
646                                       &resolve_hostname, h);
647     return;
648   }
649   add_to_address_list (h, LAL_HOSTNAME_DNS, addr, addrlen);
650 }
651
652
653 /**
654  * Add the IP of our network interface to the list of
655  * our IP addresses.
656  *
657  * @param cls the `struct GNUNET_NAT_Handle`
658  * @param name name of the interface
659  * @param isDefault do we think this may be our default interface
660  * @param addr address of the interface
661  * @param broadcast_addr the broadcast address (can be NULL for unknown or unassigned)
662  * @param netmask the network mask (can be NULL for unknown or unassigned))
663  * @param addrlen number of bytes in @a addr and @a broadcast_addr
664  * @return #GNUNET_OK to continue iterating
665  */
666 static int
667 process_interfaces (void *cls, const char *name, int isDefault,
668                     const struct sockaddr *addr,
669                     const struct sockaddr *broadcast_addr,
670                     const struct sockaddr *netmask, socklen_t addrlen)
671 {
672   const static struct in6_addr any6 = IN6ADDR_ANY_INIT;
673   struct GNUNET_NAT_Handle *h = cls;
674   const struct sockaddr_in *s4;
675   const struct sockaddr_in6 *s6;
676   const void *ip;
677   char buf[INET6_ADDRSTRLEN];
678   unsigned int i;
679   int have_any;
680
681   switch (addr->sa_family)
682   {
683   case AF_INET:
684     /* check if we're bound to the "ANY" IP address */
685     have_any = GNUNET_NO;
686     for (i=0;i<h->num_local_addrs;i++)
687       {
688         if (h->local_addrs[i]->sa_family != AF_INET)
689           continue;
690 #ifndef INADDR_ANY
691 #define INADDR_ANY 0
692 #endif
693         if (INADDR_ANY == ((struct sockaddr_in*) h->local_addrs[i])->sin_addr.s_addr)
694           {
695             have_any = GNUNET_YES;
696             break;
697           }
698       }
699     if (GNUNET_NO == have_any)
700       return GNUNET_OK; /* not bound to IP 0.0.0.0 but to specific IP addresses,
701                            do not use those from interfaces */
702     s4 = (struct sockaddr_in *) addr;
703     ip = &s4->sin_addr;
704
705     /* Check if address is in 127.0.0.0/8 */
706     uint32_t address = ntohl ((uint32_t) (s4->sin_addr.s_addr));
707     uint32_t value = (address & 0xFF000000) ^ 0x7F000000;
708
709     if ((h->return_localaddress == GNUNET_NO) && (value == 0))
710     {
711       return GNUNET_OK;
712     }
713     if (GNUNET_YES == h->use_localaddresses)
714     {
715       add_ip_to_address_list (h, LAL_INTERFACE_ADDRESS, &s4->sin_addr,
716                               sizeof (struct in_addr));
717     }
718     break;
719   case AF_INET6:
720     /* check if we're bound to the "ANY" IP address */
721     have_any = GNUNET_NO;
722     for (i=0;i<h->num_local_addrs;i++)
723       {
724         if (h->local_addrs[i]->sa_family != AF_INET6)
725           continue;
726         if (0 == memcmp (&any6,
727                          &((struct sockaddr_in6*) h->local_addrs[i])->sin6_addr,
728                          sizeof (struct in6_addr)))
729           {
730             have_any = GNUNET_YES;
731             break;
732           }
733       }
734     if (GNUNET_NO == have_any)
735       return GNUNET_OK; /* not bound to "ANY" IP (::0) but to specific IP addresses,
736                            do not use those from interfaces */
737
738     s6 = (struct sockaddr_in6 *) addr;
739     if (IN6_IS_ADDR_LINKLOCAL (&((struct sockaddr_in6 *) addr)->sin6_addr))
740     {
741       /* skip link local addresses */
742       return GNUNET_OK;
743     }
744     if ((h->return_localaddress == GNUNET_NO) &&
745         (IN6_IS_ADDR_LOOPBACK (&((struct sockaddr_in6 *) addr)->sin6_addr)))
746     {
747       return GNUNET_OK;
748     }
749     ip = &s6->sin6_addr;
750     if (GNUNET_YES == h->use_localaddresses)
751     {
752       add_ip_to_address_list (h, LAL_INTERFACE_ADDRESS, &s6->sin6_addr,
753                               sizeof (struct in6_addr));
754     }
755     break;
756   default:
757     GNUNET_break (0);
758     return GNUNET_OK;
759   }
760   if ((h->internal_address == NULL) && (h->server_proc == NULL) &&
761       (h->server_read_task == GNUNET_SCHEDULER_NO_TASK) &&
762       (GNUNET_YES == isDefault) && ((addr->sa_family == AF_INET) ||
763                                     (addr->sa_family == AF_INET6)))
764   {
765     /* no internal address configured, but we found a "default"
766      * interface, try using that as our 'internal' address */
767     h->internal_address =
768         GNUNET_strdup (inet_ntop (addr->sa_family, ip, buf, sizeof (buf)));
769     start_gnunet_nat_server (h);
770   }
771   return GNUNET_OK;
772 }
773
774
775 /**
776  * Task that restarts the gnunet-helper-nat-server process after a crash
777  * after a certain delay.
778  *
779  * @param cls the `struct GNUNET_NAT_Handle`
780  * @param tc scheduler context
781  */
782 static void
783 restart_nat_server (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
784 {
785   struct GNUNET_NAT_Handle *h = cls;
786
787   h->server_read_task = GNUNET_SCHEDULER_NO_TASK;
788   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
789     return;
790   start_gnunet_nat_server (h);
791 }
792
793
794 /**
795  * We have been notified that gnunet-helper-nat-server has written
796  * something to stdout.  Handle the output, then reschedule this
797  * function to be called again once more is available.
798  *
799  * @param cls the NAT handle
800  * @param tc the scheduling context
801  */
802 static void
803 nat_server_read (void *cls,
804                  const struct GNUNET_SCHEDULER_TaskContext *tc)
805 {
806   struct GNUNET_NAT_Handle *h = cls;
807   char mybuf[40];
808   ssize_t bytes;
809   size_t i;
810   int port;
811   const char *port_start;
812   struct sockaddr_in sin_addr;
813
814   h->server_read_task = GNUNET_SCHEDULER_NO_TASK;
815   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
816     return;
817   memset (mybuf, 0, sizeof (mybuf));
818   bytes =
819     GNUNET_DISK_file_read (h->server_stdout_handle, mybuf, sizeof (mybuf));
820   if (bytes < 1)
821   {
822     LOG (GNUNET_ERROR_TYPE_DEBUG,
823          "Finished reading from server stdout with code: %d\n",
824          bytes);
825     if (0 != GNUNET_OS_process_kill (h->server_proc, GNUNET_TERM_SIG))
826       GNUNET_log_from_strerror (GNUNET_ERROR_TYPE_WARNING, "nat", "kill");
827     GNUNET_OS_process_wait (h->server_proc);
828     GNUNET_OS_process_destroy (h->server_proc);
829     h->server_proc = NULL;
830     GNUNET_DISK_pipe_close (h->server_stdout);
831     h->server_stdout = NULL;
832     h->server_stdout_handle = NULL;
833     /* now try to restart it */
834     h->server_retry_delay = GNUNET_TIME_STD_BACKOFF (h->server_retry_delay);
835     h->server_read_task =
836         GNUNET_SCHEDULER_add_delayed (h->server_retry_delay,
837                                       &restart_nat_server, h);
838     return;
839   }
840
841   port_start = NULL;
842   for (i = 0; i < sizeof (mybuf); i++)
843   {
844     if (mybuf[i] == '\n')
845     {
846       mybuf[i] = '\0';
847       break;
848     }
849     if ((mybuf[i] == ':') && (i + 1 < sizeof (mybuf)))
850     {
851       mybuf[i] = '\0';
852       port_start = &mybuf[i + 1];
853     }
854   }
855
856   /* construct socket address of sender */
857   memset (&sin_addr, 0, sizeof (sin_addr));
858   sin_addr.sin_family = AF_INET;
859 #if HAVE_SOCKADDR_IN_SIN_LEN
860   sin_addr.sin_len = sizeof (sin_addr);
861 #endif
862   if ((NULL == port_start) || (1 != SSCANF (port_start, "%d", &port)) ||
863       (-1 == inet_pton (AF_INET, mybuf, &sin_addr.sin_addr)))
864   {
865     /* should we restart gnunet-helper-nat-server? */
866     LOG (GNUNET_ERROR_TYPE_WARNING, "nat",
867          _("gnunet-helper-nat-server generated malformed address `%s'\n"),
868          mybuf);
869     h->server_read_task =
870         GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
871                                         h->server_stdout_handle,
872                                         &nat_server_read, h);
873     return;
874   }
875   sin_addr.sin_port = htons ((uint16_t) port);
876   LOG (GNUNET_ERROR_TYPE_DEBUG, "gnunet-helper-nat-server read: %s:%d\n", mybuf,
877        port);
878   h->reversal_callback (h->callback_cls, (const struct sockaddr *) &sin_addr,
879                         sizeof (sin_addr));
880   h->server_read_task =
881       GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
882                                       h->server_stdout_handle, &nat_server_read,
883                                       h);
884 }
885
886
887 /**
888  * Try to start the gnunet-helper-nat-server (if it is not
889  * already running).
890  *
891  * @param h handle to NAT
892  */
893 static void
894 start_gnunet_nat_server (struct GNUNET_NAT_Handle *h)
895 {
896   char *binary;
897
898   if ((h->behind_nat == GNUNET_YES) && (h->enable_nat_server == GNUNET_YES) &&
899       (h->internal_address != NULL) &&
900       (NULL !=
901        (h->server_stdout =
902         GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO, GNUNET_YES))))
903   {
904     LOG (GNUNET_ERROR_TYPE_DEBUG,
905          "Starting `%s' at `%s'\n",
906          "gnunet-helper-nat-server", h->internal_address);
907     /* Start the server process */
908     binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-nat-server");
909     h->server_proc =
910         GNUNET_OS_start_process (GNUNET_NO, 0, NULL, h->server_stdout,
911                                  binary,
912                                  "gnunet-helper-nat-server",
913                                  h->internal_address, NULL);
914     GNUNET_free (binary);
915     if (h->server_proc == NULL)
916     {
917       LOG (GNUNET_ERROR_TYPE_WARNING, "nat", _("Failed to start %s\n"),
918            "gnunet-helper-nat-server");
919       GNUNET_DISK_pipe_close (h->server_stdout);
920       h->server_stdout = NULL;
921     }
922     else
923     {
924       /* Close the write end of the read pipe */
925       GNUNET_DISK_pipe_close_end (h->server_stdout, GNUNET_DISK_PIPE_END_WRITE);
926       h->server_stdout_handle =
927           GNUNET_DISK_pipe_handle (h->server_stdout, GNUNET_DISK_PIPE_END_READ);
928       h->server_read_task =
929           GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
930                                           h->server_stdout_handle,
931                                           &nat_server_read, h);
932     }
933   }
934 }
935
936
937 /**
938  * Task to scan the local network interfaces for IP addresses.
939  *
940  * @param cls the NAT handle
941  * @param tc scheduler context
942  */
943 static void
944 list_interfaces (void *cls,
945                  const struct GNUNET_SCHEDULER_TaskContext *tc)
946 {
947   struct GNUNET_NAT_Handle *h = cls;
948
949   h->ifc_task = GNUNET_SCHEDULER_NO_TASK;
950   remove_from_address_list_by_source (h, LAL_INTERFACE_ADDRESS);
951   GNUNET_OS_network_interfaces_list (&process_interfaces, h);
952   h->ifc_task =
953     GNUNET_SCHEDULER_add_delayed (h->ifc_scan_frequency,
954                                   &list_interfaces, h);
955 }
956
957
958 /**
959  * Task to do a lookup on our hostname for IP addresses.
960  *
961  * @param cls the NAT handle
962  * @param tc scheduler context
963  */
964 static void
965 resolve_hostname (void *cls,
966                   const struct GNUNET_SCHEDULER_TaskContext *tc)
967 {
968   struct GNUNET_NAT_Handle *h = cls;
969
970   h->hostname_task = GNUNET_SCHEDULER_NO_TASK;
971   remove_from_address_list_by_source (h, LAL_HOSTNAME_DNS);
972   h->hostname_dns =
973       GNUNET_RESOLVER_hostname_resolve (AF_UNSPEC, HOSTNAME_RESOLVE_TIMEOUT,
974                                         &process_hostname_ip, h);
975 }
976
977
978 /**
979  * Task to do DNS lookup on our external hostname to
980  * get DynDNS-IP addresses.
981  *
982  * @param cls the NAT handle
983  * @param tc scheduler context
984  */
985 static void
986 resolve_dns (void *cls,
987              const struct GNUNET_SCHEDULER_TaskContext *tc)
988 {
989   struct GNUNET_NAT_Handle *h = cls;
990   struct LocalAddressList *pos;
991
992   h->dns_task = GNUNET_SCHEDULER_NO_TASK;
993   for (pos = h->lal_head; NULL != pos; pos = pos->next)
994     if (pos->source == LAL_EXTERNAL_IP)
995       pos->source = LAL_EXTERNAL_IP_OLD;
996   LOG (GNUNET_ERROR_TYPE_DEBUG,
997        "Resolving external address `%s'\n",
998        h->external_address);
999   h->ext_dns =
1000       GNUNET_RESOLVER_ip_get (h->external_address, AF_INET,
1001                               GNUNET_TIME_UNIT_MINUTES,
1002                               &process_external_ip, h);
1003 }
1004
1005
1006 /**
1007  * Add or remove UPnP-mapped addresses.
1008  *
1009  * @param cls the `struct GNUNET_NAT_Handle`
1010  * @param add_remove #GNUNET_YES to mean the new public IP address, #GNUNET_NO to mean
1011  *     the previous (now invalid) one
1012  * @param addr either the previous or the new public IP address
1013  * @param addrlen actual lenght of @a addr
1014  * @param emsg NULL on success, otherwise an error message
1015  */
1016 static void
1017 upnp_add (void *cls,
1018           int add_remove,
1019           const struct sockaddr *addr,
1020           socklen_t addrlen,
1021           const char *emsg)
1022 {
1023   struct GNUNET_NAT_Handle *h = cls;
1024   struct LocalAddressList *pos;
1025   struct LocalAddressList *next;
1026
1027   if (GNUNET_YES == add_remove)
1028   {
1029     add_to_address_list (h, LAL_UPNP, addr, addrlen);
1030     return;
1031   }
1032   /* remove address */
1033   next = h->lal_head;
1034   while (NULL != (pos = next))
1035   {
1036     next = pos->next;
1037     if ((pos->source != LAL_UPNP) || (pos->addrlen != addrlen) ||
1038         (0 != memcmp (&pos[1], addr, addrlen)))
1039       continue;
1040     GNUNET_CONTAINER_DLL_remove (h->lal_head, h->lal_tail, pos);
1041     if (NULL != h->address_callback)
1042       h->address_callback (h->callback_cls, GNUNET_NO,
1043                            (const struct sockaddr *) &pos[1], pos->addrlen);
1044     GNUNET_free (pos);
1045     return;                     /* only remove once */
1046   }
1047   /* asked to remove address that does not exist */
1048   GNUNET_break (0);
1049 }
1050
1051
1052 /**
1053  * Try to add a port mapping using UPnP.
1054  *
1055  * @param h overall NAT handle
1056  * @param port port to map with UPnP
1057  */
1058 static void
1059 add_minis (struct GNUNET_NAT_Handle *h,
1060            uint16_t port)
1061 {
1062   struct MiniList *ml;
1063
1064   ml = h->mini_head;
1065   while (NULL != ml)
1066   {
1067     if (port == ml->port)
1068       return;                   /* already got this port */
1069     ml = ml->next;
1070   }
1071   ml = GNUNET_new (struct MiniList);
1072   ml->port = port;
1073   ml->mini = GNUNET_NAT_mini_map_start (port, h->is_tcp, &upnp_add, h);
1074   GNUNET_CONTAINER_DLL_insert (h->mini_head, h->mini_tail, ml);
1075 }
1076
1077
1078 /**
1079  * Task to add addresses from original bind to set of valid addrs.
1080  *
1081  * @param cls the NAT handle
1082  * @param tc scheduler context
1083  */
1084 static void
1085 add_from_bind (void *cls,
1086                const struct GNUNET_SCHEDULER_TaskContext *tc)
1087 {
1088   static struct in6_addr any = IN6ADDR_ANY_INIT;
1089   struct GNUNET_NAT_Handle *h = cls;
1090   unsigned int i;
1091   struct sockaddr *sa;
1092   const struct sockaddr_in *v4;
1093
1094   h->bind_task = GNUNET_SCHEDULER_NO_TASK;
1095   for (i = 0; i < h->num_local_addrs; i++)
1096   {
1097     sa = h->local_addrs[i];
1098     switch (sa->sa_family)
1099     {
1100     case AF_INET:
1101       if (sizeof (struct sockaddr_in) != h->local_addrlens[i])
1102       {
1103         GNUNET_break (0);
1104         break;
1105       }
1106       v4 = (const struct sockaddr_in *) sa;
1107       if (0 != v4->sin_addr.s_addr)
1108         add_to_address_list (h, LAL_BINDTO_ADDRESS, sa,
1109                              sizeof (struct sockaddr_in));
1110       if (h->enable_upnp)
1111         add_minis (h, ntohs (v4->sin_port));
1112       break;
1113     case AF_INET6:
1114       if (sizeof (struct sockaddr_in6) != h->local_addrlens[i])
1115       {
1116         GNUNET_break (0);
1117         break;
1118       }
1119       if (0 !=
1120           memcmp (&((const struct sockaddr_in6 *) sa)->sin6_addr, &any,
1121                   sizeof (struct in6_addr)))
1122         add_to_address_list (h, LAL_BINDTO_ADDRESS, sa,
1123                              sizeof (struct sockaddr_in6));
1124       break;
1125     default:
1126       break;
1127     }
1128   }
1129 }
1130
1131
1132
1133 /**
1134  * Attempt to enable port redirection and detect public IP address contacting
1135  * UPnP or NAT-PMP routers on the local network. Use addr to specify to which
1136  * of the local host's addresses should the external port be mapped. The port
1137  * is taken from the corresponding sockaddr_in[6] field.
1138  *
1139  * @param cfg configuration to use
1140  * @param is_tcp #GNUNET_YES for TCP, #GNUNET_NO for UDP
1141  * @param adv_port advertised port (port we are either bound to or that our OS
1142  *                 locally performs redirection from to our bound port).
1143  * @param num_addrs number of addresses in 'addrs'
1144  * @param addrs the local addresses packets should be redirected to
1145  * @param addrlens actual lengths of the addresses
1146  * @param address_callback function to call everytime the public IP address changes
1147  * @param reversal_callback function to call if someone wants connection reversal from us
1148  * @param callback_cls closure for callbacks
1149  * @return NULL on error, otherwise handle that can be used to unregister
1150  */
1151 struct GNUNET_NAT_Handle *
1152 GNUNET_NAT_register (const struct GNUNET_CONFIGURATION_Handle *cfg,
1153                      int is_tcp,
1154                      uint16_t adv_port,
1155                      unsigned int num_addrs,
1156                      const struct sockaddr **addrs,
1157                      const socklen_t * addrlens,
1158                      GNUNET_NAT_AddressCallback address_callback,
1159                      GNUNET_NAT_ReversalCallback reversal_callback,
1160                      void *callback_cls)
1161 {
1162   struct GNUNET_NAT_Handle *h;
1163   struct in_addr in_addr;
1164   unsigned int i;
1165   char *binary;
1166
1167   LOG (GNUNET_ERROR_TYPE_DEBUG,
1168        "Registered with NAT service at port %u with %u IP bound local addresses\n",
1169        (unsigned int) adv_port, num_addrs);
1170   h = GNUNET_new (struct GNUNET_NAT_Handle);
1171   h->server_retry_delay = GNUNET_TIME_UNIT_SECONDS;
1172   h->cfg = cfg;
1173   h->is_tcp = is_tcp;
1174   h->address_callback = address_callback;
1175   h->reversal_callback = reversal_callback;
1176   h->callback_cls = callback_cls;
1177   h->num_local_addrs = num_addrs;
1178   h->adv_port = adv_port;
1179   if (num_addrs != 0)
1180   {
1181     h->local_addrs = GNUNET_malloc (num_addrs * sizeof (struct sockaddr *));
1182     h->local_addrlens = GNUNET_malloc (num_addrs * sizeof (socklen_t));
1183     for (i = 0; i < num_addrs; i++)
1184     {
1185       GNUNET_assert (addrlens[i] > 0);
1186       GNUNET_assert (addrs[i] != NULL);
1187       h->local_addrlens[i] = addrlens[i];
1188       h->local_addrs[i] = GNUNET_malloc (addrlens[i]);
1189       memcpy (h->local_addrs[i], addrs[i], addrlens[i]);
1190     }
1191   }
1192   h->bind_task = GNUNET_SCHEDULER_add_now (&add_from_bind, h);
1193   if (GNUNET_OK ==
1194       GNUNET_CONFIGURATION_have_value (cfg, "nat", "INTERNAL_ADDRESS"))
1195   {
1196     (void) GNUNET_CONFIGURATION_get_value_string (cfg, "nat",
1197                                                   "INTERNAL_ADDRESS",
1198                                                   &h->internal_address);
1199   }
1200   if ((h->internal_address != NULL) &&
1201       (inet_pton (AF_INET, h->internal_address, &in_addr) != 1))
1202   {
1203     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1204                                "nat", "INTERNAL_ADDRESS",
1205                                _("malformed"));
1206     GNUNET_free (h->internal_address);
1207     h->internal_address = NULL;
1208   }
1209
1210   if (GNUNET_OK ==
1211       GNUNET_CONFIGURATION_have_value (cfg, "nat", "EXTERNAL_ADDRESS"))
1212   {
1213     (void) GNUNET_CONFIGURATION_get_value_string (cfg, "nat",
1214                                                   "EXTERNAL_ADDRESS",
1215                                                   &h->external_address);
1216   }
1217   h->behind_nat =
1218       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "BEHIND_NAT");
1219   h->nat_punched =
1220       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "PUNCHED_NAT");
1221   h->enable_nat_client =
1222       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "ENABLE_ICMP_CLIENT");
1223   h->enable_nat_server =
1224       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "ENABLE_ICMP_SERVER");
1225   h->enable_upnp =
1226       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "ENABLE_UPNP");
1227   h->use_localaddresses =
1228       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "USE_LOCALADDR");
1229   h->return_localaddress =
1230       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat",
1231                                             "RETURN_LOCAL_ADDRESSES");
1232
1233   h->use_hostname =
1234       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "USE_HOSTNAME");
1235   h->disable_ipv6 =
1236       GNUNET_CONFIGURATION_get_value_yesno (cfg, "nat", "DISABLEV6");
1237   if (GNUNET_OK !=
1238       GNUNET_CONFIGURATION_get_value_time (cfg, "nat", "DYNDNS_FREQUENCY",
1239                                            &h->dyndns_frequency))
1240     h->dyndns_frequency = DYNDNS_FREQUENCY;
1241   if (GNUNET_OK !=
1242       GNUNET_CONFIGURATION_get_value_time (cfg, "nat", "IFC_SCAN_FREQUENCY",
1243                                            &h->ifc_scan_frequency))
1244     h->ifc_scan_frequency = IFC_SCAN_FREQUENCY;
1245   if (GNUNET_OK !=
1246       GNUNET_CONFIGURATION_get_value_time (cfg, "nat", "HOSTNAME_DNS_FREQUENCY",
1247                                            &h->hostname_dns_frequency))
1248     h->hostname_dns_frequency = HOSTNAME_DNS_FREQUENCY;
1249
1250   if (NULL == reversal_callback)
1251     h->enable_nat_server = GNUNET_NO;
1252
1253   /* Check if NAT was hole-punched */
1254   if ((NULL != h->address_callback) &&
1255       (NULL != h->external_address) &&
1256       (GNUNET_YES == h->nat_punched))
1257   {
1258     h->dns_task = GNUNET_SCHEDULER_add_now (&resolve_dns, h);
1259     h->enable_nat_server = GNUNET_NO;
1260     h->enable_upnp = GNUNET_NO;
1261   }
1262   else
1263   {
1264     LOG (GNUNET_ERROR_TYPE_DEBUG,
1265          "No external IP address given to add to our list of addresses\n");
1266   }
1267
1268   /* Test for SUID binaries */
1269   binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-nat-server");
1270   if ((h->behind_nat == GNUNET_YES) && (GNUNET_YES == h->enable_nat_server) &&
1271       (GNUNET_YES !=
1272        GNUNET_OS_check_helper_binary (binary, GNUNET_YES, "-d 127.0.0.1" ))) // use localhost as source for that one udp-port, ok for testing
1273   {
1274     h->enable_nat_server = GNUNET_NO;
1275     LOG (GNUNET_ERROR_TYPE_WARNING,
1276          _("Configuration requires `%s', but binary is not installed properly (SUID bit not set).  Option disabled.\n"),
1277          "gnunet-helper-nat-server");
1278   }
1279   GNUNET_free (binary);
1280   binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-nat-client");
1281   if ((GNUNET_YES == h->enable_nat_client) &&
1282       (GNUNET_YES !=
1283        GNUNET_OS_check_helper_binary (binary, GNUNET_YES, "-d 127.0.0.1 127.0.0.2 42"))) // none of these parameters are actually used in privilege testing mode
1284   {
1285     h->enable_nat_client = GNUNET_NO;
1286     LOG (GNUNET_ERROR_TYPE_WARNING,
1287          _
1288          ("Configuration requires `%s', but binary is not installed properly (SUID bit not set).  Option disabled.\n"),
1289          "gnunet-helper-nat-client");
1290   }
1291   GNUNET_free (binary);
1292   start_gnunet_nat_server (h);
1293
1294   /* FIXME: add support for UPnP, etc */
1295
1296   if (NULL != h->address_callback)
1297   {
1298     h->ifc_task = GNUNET_SCHEDULER_add_now (&list_interfaces, h);
1299     if (GNUNET_YES == h->use_hostname)
1300       h->hostname_task = GNUNET_SCHEDULER_add_now (&resolve_hostname, h);
1301   }
1302
1303   return h;
1304 }
1305
1306
1307 /**
1308  * Stop port redirection and public IP address detection for the given handle.
1309  * This frees the handle, after having sent the needed commands to close open ports.
1310  *
1311  * @param h the handle to stop
1312  */
1313 void
1314 GNUNET_NAT_unregister (struct GNUNET_NAT_Handle *h)
1315 {
1316   unsigned int i;
1317   struct LocalAddressList *lal;
1318   struct MiniList *ml;
1319
1320   LOG (GNUNET_ERROR_TYPE_DEBUG,
1321        "NAT unregister called\n");
1322   while (NULL != (ml = h->mini_head))
1323   {
1324     GNUNET_CONTAINER_DLL_remove (h->mini_head, h->mini_tail, ml);
1325     if (NULL != ml->mini)
1326       GNUNET_NAT_mini_map_stop (ml->mini);
1327     GNUNET_free (ml);
1328   }
1329   if (NULL != h->ext_dns)
1330   {
1331     GNUNET_RESOLVER_request_cancel (h->ext_dns);
1332     h->ext_dns = NULL;
1333   }
1334   if (NULL != h->hostname_dns)
1335   {
1336     GNUNET_RESOLVER_request_cancel (h->hostname_dns);
1337     h->hostname_dns = NULL;
1338   }
1339   if (GNUNET_SCHEDULER_NO_TASK != h->server_read_task)
1340   {
1341     GNUNET_SCHEDULER_cancel (h->server_read_task);
1342     h->server_read_task = GNUNET_SCHEDULER_NO_TASK;
1343   }
1344   if (GNUNET_SCHEDULER_NO_TASK != h->bind_task)
1345   {
1346     GNUNET_SCHEDULER_cancel (h->bind_task);
1347     h->bind_task = GNUNET_SCHEDULER_NO_TASK;
1348   }
1349   if (GNUNET_SCHEDULER_NO_TASK != h->ifc_task)
1350   {
1351     GNUNET_SCHEDULER_cancel (h->ifc_task);
1352     h->ifc_task = GNUNET_SCHEDULER_NO_TASK;
1353   }
1354   if (GNUNET_SCHEDULER_NO_TASK != h->hostname_task)
1355   {
1356     GNUNET_SCHEDULER_cancel (h->hostname_task);
1357     h->hostname_task = GNUNET_SCHEDULER_NO_TASK;
1358   }
1359   if (GNUNET_SCHEDULER_NO_TASK != h->dns_task)
1360   {
1361     GNUNET_SCHEDULER_cancel (h->dns_task);
1362     h->dns_task = GNUNET_SCHEDULER_NO_TASK;
1363   }
1364   if (NULL != h->server_proc)
1365   {
1366     if (0 != GNUNET_OS_process_kill (h->server_proc, GNUNET_TERM_SIG))
1367       GNUNET_log_from_strerror (GNUNET_ERROR_TYPE_WARNING, "nat", "kill");
1368     GNUNET_OS_process_wait (h->server_proc);
1369     GNUNET_OS_process_destroy (h->server_proc);
1370     h->server_proc = NULL;
1371     GNUNET_DISK_pipe_close (h->server_stdout);
1372     h->server_stdout = NULL;
1373     h->server_stdout_handle = NULL;
1374   }
1375   if (NULL != h->server_stdout)
1376   {
1377     GNUNET_DISK_pipe_close (h->server_stdout);
1378     h->server_stdout = NULL;
1379     h->server_stdout_handle = NULL;
1380   }
1381   while (NULL != (lal = h->lal_head))
1382   {
1383     GNUNET_CONTAINER_DLL_remove (h->lal_head, h->lal_tail, lal);
1384     if (NULL != h->address_callback)
1385       h->address_callback (h->callback_cls, GNUNET_NO,
1386                            (const struct sockaddr *) &lal[1], lal->addrlen);
1387     GNUNET_free (lal);
1388   }
1389   for (i = 0; i < h->num_local_addrs; i++)
1390     GNUNET_free (h->local_addrs[i]);
1391   GNUNET_free_non_null (h->local_addrs);
1392   GNUNET_free_non_null (h->local_addrlens);
1393   GNUNET_free_non_null (h->external_address);
1394   GNUNET_free_non_null (h->internal_address);
1395   GNUNET_free (h);
1396 }
1397
1398
1399 /**
1400  * We learned about a peer (possibly behind NAT) so run the
1401  * gnunet-helper-nat-client to send dummy ICMP responses to cause
1402  * that peer to connect to us (connection reversal).
1403  *
1404  * @param h handle (used for configuration)
1405  * @param sa the address of the peer (IPv4-only)
1406  * @return #GNUNET_SYSERR on error, #GNUNET_NO if nat client is disabled,
1407  *         #GNUNET_OK otherwise
1408  */
1409 int
1410 GNUNET_NAT_run_client (struct GNUNET_NAT_Handle *h,
1411                        const struct sockaddr_in *sa)
1412
1413
1414 {
1415   char inet4[INET_ADDRSTRLEN];
1416   char port_as_string[6];
1417   struct GNUNET_OS_Process *proc;
1418   char *binary;
1419
1420   if (GNUNET_YES != h->enable_nat_client)
1421     return GNUNET_NO;                     /* not permitted / possible */
1422
1423   if (h->internal_address == NULL)
1424   {
1425     LOG (GNUNET_ERROR_TYPE_WARNING, "nat",
1426          _("Internal IP address not known, cannot use ICMP NAT traversal method\n"));
1427     return GNUNET_SYSERR;
1428   }
1429   GNUNET_assert (sa->sin_family == AF_INET);
1430   if (NULL == inet_ntop (AF_INET, &sa->sin_addr, inet4, INET_ADDRSTRLEN))
1431   {
1432     GNUNET_log_from_strerror (GNUNET_ERROR_TYPE_WARNING,
1433                               "nat",
1434                               "inet_ntop");
1435     return GNUNET_SYSERR;
1436   }
1437   GNUNET_snprintf (port_as_string,
1438                    sizeof (port_as_string),
1439                    "%d",
1440                    h->adv_port);
1441   LOG (GNUNET_ERROR_TYPE_DEBUG,
1442        _("Running gnunet-helper-nat-client %s %s %u\n"),
1443        h->internal_address,
1444        inet4,
1445        (unsigned int) h->adv_port);
1446   binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-nat-client");
1447   proc =
1448       GNUNET_OS_start_process (GNUNET_NO, 0, NULL, NULL,
1449                                binary,
1450                                "gnunet-helper-nat-client",
1451                                h->internal_address,
1452                                inet4, port_as_string, NULL);
1453   GNUNET_free (binary);
1454   if (NULL == proc)
1455     return GNUNET_SYSERR;
1456   /* we know that the gnunet-helper-nat-client will terminate virtually
1457    * instantly */
1458   GNUNET_OS_process_wait (proc);
1459   GNUNET_OS_process_destroy (proc);
1460   return GNUNET_OK;
1461 }
1462
1463
1464 /**
1465  * Test if the given address is (currently) a plausible IP address for this peer.
1466  *
1467  * @param h the handle returned by register
1468  * @param addr IP address to test (IPv4 or IPv6)
1469  * @param addrlen number of bytes in @a addr
1470  * @return #GNUNET_YES if the address is plausible,
1471  *         #GNUNET_NO if the address is not plausible,
1472  *         #GNUNET_SYSERR if the address is malformed
1473  */
1474 int
1475 GNUNET_NAT_test_address (struct GNUNET_NAT_Handle *h,
1476                          const void *addr,
1477                          socklen_t addrlen)
1478 {
1479   struct LocalAddressList *pos;
1480   const struct sockaddr_in *in4;
1481   const struct sockaddr_in6 *in6;
1482
1483   if ((addrlen != sizeof (struct in_addr)) &&
1484       (addrlen != sizeof (struct in6_addr)))
1485   {
1486     GNUNET_break (0);
1487     return GNUNET_SYSERR;
1488   }
1489   for (pos = h->lal_head; NULL != pos; pos = pos->next)
1490   {
1491     if (pos->addrlen == sizeof (struct sockaddr_in))
1492     {
1493       in4 = (struct sockaddr_in *) &pos[1];
1494       if ((addrlen == sizeof (struct in_addr)) &&
1495           (0 == memcmp (&in4->sin_addr, addr, sizeof (struct in_addr))))
1496         return GNUNET_YES;
1497     }
1498     else if (pos->addrlen == sizeof (struct sockaddr_in6))
1499     {
1500       in6 = (struct sockaddr_in6 *) &pos[1];
1501       if ((addrlen == sizeof (struct in6_addr)) &&
1502           (0 == memcmp (&in6->sin6_addr, addr, sizeof (struct in6_addr))))
1503         return GNUNET_YES;
1504     }
1505     else
1506     {
1507       GNUNET_assert (0);
1508     }
1509   }
1510   LOG (GNUNET_ERROR_TYPE_WARNING,
1511        "Asked to validate one of my addresses and validation failed!\n");
1512   return GNUNET_NO;
1513 }
1514
1515
1516 /* end of nat.c */