fix
[oweals/gnunet.git] / src / nat / test_nat.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 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  * Testcase for port redirection and public IP address retrieval.
23  * This test never fails, because there need to be a NAT box set up for that.
24  * So we only get IP address and open the 2086 port using any NAT traversal
25  * method available, wait for 30s, close ports and return.
26  * Have a look at the logs and use NMAP to check that it works with your box.
27  *
28  * @file nat/test_nat.c
29  * @brief Testcase for NAT library
30  * @author Milan Bouchet-Valat
31  * @author Christian Grothoff
32  *
33  * TODO: actually use ARM to start resolver service to make DNS work!
34  */
35
36 #include "platform.h"
37 #include "gnunet_common.h"
38 #include "gnunet_util_lib.h"
39 #include "gnunet_program_lib.h"
40 #include "gnunet_scheduler_lib.h"
41 #include "gnunet_nat_lib.h"
42
43
44 #define VERBOSE GNUNET_YES
45
46
47 /* Time to wait before stopping NAT, in seconds */
48 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
49
50
51 /**
52  * Function called on each address that the NAT service
53  * believes to be valid for the transport.
54  */
55 static void
56 addr_callback (void *cls, int add_remove,
57                const struct sockaddr *addr, socklen_t addrlen)
58 {
59   GNUNET_log (GNUNET_ERROR_TYPE_INFO, 
60               "Address changed: %s `%s' (%u bytes)\n",
61               add_remove == GNUNET_YES ? "added" : "removed",
62               GNUNET_a2s (addr, addrlen),
63               (unsigned int) addrlen);
64 }
65
66
67 /**
68  * Function that terminates the test.
69  */
70 static void
71 stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
72 {
73   struct GNUNET_NAT_Handle *nat = cls;
74
75   GNUNET_log (GNUNET_ERROR_TYPE_INFO, 
76               "Stopping NAT and quitting...\n");
77   GNUNET_NAT_unregister (nat);
78 }
79
80
81 struct addr_cls
82 {
83   struct sockaddr *addr;
84   socklen_t addrlen;
85 };
86
87
88 /**
89  * Return the address of the default interface,
90  * or any interface with a valid address if the default is not valid 
91  *
92  * @param cls the 'struct addr_cls'
93  * @param name name of the interface
94  * @param isDefault do we think this may be our default interface
95  * @param addr address of the interface
96  * @param addrlen number of bytes in addr
97  * @return GNUNET_OK to continue iterating
98  */
99 static int
100 process_if (void *cls,
101             const char *name,
102             int isDefault, const struct sockaddr *addr, socklen_t addrlen)
103 {
104   struct addr_cls *data = cls;
105
106   if (addr == NULL)
107     return GNUNET_OK;
108   GNUNET_free_non_null (data->addr);
109   data->addr = GNUNET_malloc (addrlen);
110   memcpy (data->addr, addr, addrlen);
111   data->addrlen = addrlen;
112   if (isDefault)
113     return GNUNET_SYSERR;
114   return GNUNET_OK;
115 }
116
117
118 /**
119  * Main function run with scheduler.
120  */
121 static void
122 run (void *cls,
123      char *const *args,
124      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
125 {
126   struct GNUNET_NAT_Handle *nat;
127   struct addr_cls data;
128   struct sockaddr *addr;
129
130   GNUNET_log_setup ("test-nat", "DEBUG", NULL);
131   data.addr = NULL;
132   GNUNET_OS_network_interfaces_list (process_if, &data);
133   if (NULL == data.addr)
134     {
135       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
136                   "Could not find a valid interface address!\n");
137       exit (GNUNET_SYSERR);
138     }
139   addr = data.addr;
140   GNUNET_assert (addr->sa_family == AF_INET || addr->sa_family == AF_INET6);
141   if (addr->sa_family == AF_INET)
142     ((struct sockaddr_in *) addr)->sin_port = htons (2086);
143   else
144     ((struct sockaddr_in6 *) addr)->sin6_port = htons (2086);
145
146   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
147               "Requesting NAT redirection from address %s...\n",
148               GNUNET_a2s (addr, data.addrlen));
149
150   nat = GNUNET_NAT_register (cfg, 
151                              GNUNET_YES /* tcp */,
152                              2086,
153                              1,
154                              (const struct sockaddr**) &addr, 
155                              &data.addrlen, 
156                              &addr_callback, NULL, NULL);
157   GNUNET_free (addr);
158   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &stop, nat);
159 }
160
161
162 int
163 main (int argc, char *const argv[])
164 {
165   struct GNUNET_GETOPT_CommandLineOption options[] = {
166     GNUNET_GETOPT_OPTION_END
167   };
168
169   char *const argv_prog[] = {
170     "test-nat",
171     "-c",
172     "test_nat_data.conf",
173     "-L",
174 #if VERBOSE
175     "DEBUG",
176 #else
177     "WARNING",
178 #endif
179     NULL
180   };
181
182   GNUNET_log_setup ("test-nat",
183 #if VERBOSE
184                     "DEBUG",
185 #else
186                     "WARNING",
187 #endif
188                     NULL);
189
190   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
191               "Testing NAT library, timeout set to %d seconds\n", TIMEOUT);
192
193   GNUNET_PROGRAM_run (5, argv_prog, "test-nat", "nohelp", options, &run, NULL);
194
195   return 0;
196 }
197
198 /* end of test_nat.c */