12ff30cacd7aa179fd61689eb59850dbf39bedbb
[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_NO
45
46
47 /**
48  * Time to wait before stopping NAT, in seconds 
49  */
50 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
51
52
53 /**
54  * Function called on each address that the NAT service
55  * believes to be valid for the transport.
56  */
57 static void
58 addr_callback (void *cls, int add_remove,
59                const struct sockaddr *addr, socklen_t addrlen)
60 {
61   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
62               "Address changed: %s `%s' (%u bytes)\n",
63               add_remove == GNUNET_YES ? "added" : "removed",
64               GNUNET_a2s (addr, addrlen), (unsigned int) addrlen);
65 }
66
67
68 /**
69  * Function that terminates the test.
70  */
71 static void
72 stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
73 {
74   struct GNUNET_NAT_Handle *nat = cls;
75
76   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "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   data.addr = NULL;
131   GNUNET_OS_network_interfaces_list (process_if, &data);
132   if (NULL == data.addr)
133   {
134     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
135                 "Could not find a valid interface address!\n");
136     exit (GNUNET_SYSERR);
137   }
138   addr = data.addr;
139   GNUNET_assert (addr->sa_family == AF_INET || addr->sa_family == AF_INET6);
140   if (addr->sa_family == AF_INET)
141     ((struct sockaddr_in *) addr)->sin_port = htons (2086);
142   else
143     ((struct sockaddr_in6 *) addr)->sin6_port = htons (2086);
144
145   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
146               "Requesting NAT redirection from address %s...\n",
147               GNUNET_a2s (addr, data.addrlen));
148
149   nat = GNUNET_NAT_register (cfg, GNUNET_YES /* tcp */ ,
150                              2086,
151                              1,
152                              (const struct sockaddr **) &addr,
153                              &data.addrlen, &addr_callback, NULL, NULL);
154   GNUNET_free (addr);
155   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &stop, nat);
156 }
157
158
159 int
160 main (int argc, char *const argv[])
161 {
162   struct GNUNET_GETOPT_CommandLineOption options[] = {
163     GNUNET_GETOPT_OPTION_END
164   };
165
166   char *const argv_prog[] = {
167     "test-nat",
168     "-c",
169     "test_nat_data.conf",
170     "-L",
171 #if VERBOSE
172     "DEBUG",
173 #else
174     "WARNING",
175 #endif
176     NULL
177   };
178
179   GNUNET_log_setup ("test-nat",
180 #if VERBOSE
181                     "DEBUG",
182 #else
183                     "WARNING",
184 #endif
185                     NULL);
186
187   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
188               "Testing NAT library, timeout set to %d seconds\n", TIMEOUT);
189
190   GNUNET_PROGRAM_run (5, argv_prog, "test-nat", "nohelp", options, &run, NULL);
191
192   return 0;
193 }
194
195 /* end of test_nat.c */