use LOG macro in nat.c
[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_EXTRA_LOGGING
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, const struct sockaddr *addr,
59                socklen_t addrlen)
60 {
61   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Address changed: %s `%s' (%u bytes)\n",
62               add_remove == GNUNET_YES ? "added" : "removed", GNUNET_a2s (addr,
63                                                                           addrlen),
64               (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, const char *name, int isDefault,
101             const struct sockaddr *addr, socklen_t addrlen)
102 {
103   struct addr_cls *data = cls;
104
105   if (addr == NULL)
106     return GNUNET_OK;
107   GNUNET_free_non_null (data->addr);
108   data->addr = GNUNET_malloc (addrlen);
109   memcpy (data->addr, addr, addrlen);
110   data->addrlen = addrlen;
111   if (isDefault)
112     return GNUNET_SYSERR;
113   return GNUNET_OK;
114 }
115
116
117 /**
118  * Main function run with scheduler.
119  */
120 static void
121 run (void *cls, char *const *args, const char *cfgfile,
122      const struct GNUNET_CONFIGURATION_Handle *cfg)
123 {
124   struct GNUNET_NAT_Handle *nat;
125   struct addr_cls data;
126   struct sockaddr *addr;
127
128   data.addr = NULL;
129   GNUNET_OS_network_interfaces_list (process_if, &data);
130   if (NULL == data.addr)
131   {
132     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
133                 "Could not find a valid interface address!\n");
134     exit (GNUNET_SYSERR);
135   }
136   addr = data.addr;
137   GNUNET_assert (addr->sa_family == AF_INET || addr->sa_family == AF_INET6);
138   if (addr->sa_family == AF_INET)
139     ((struct sockaddr_in *) addr)->sin_port = htons (2086);
140   else
141     ((struct sockaddr_in6 *) addr)->sin6_port = htons (2086);
142
143   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
144               "Requesting NAT redirection from address %s...\n",
145               GNUNET_a2s (addr, data.addrlen));
146
147   nat = GNUNET_NAT_register (cfg, GNUNET_YES /* tcp */ ,
148                              2086, 1, (const struct sockaddr **) &addr,
149                              &data.addrlen, &addr_callback, NULL, NULL);
150   GNUNET_free (addr);
151   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &stop, nat);
152 }
153
154
155 int
156 main (int argc, char *const argv[])
157 {
158   struct GNUNET_GETOPT_CommandLineOption options[] = {
159     GNUNET_GETOPT_OPTION_END
160   };
161
162   char *const argv_prog[] = {
163     "test-nat",
164     "-c",
165     "test_nat_data.conf",
166     "-L",
167 #if VERBOSE
168     "DEBUG",
169 #else
170     "WARNING",
171 #endif
172     NULL
173   };
174
175   GNUNET_log_setup ("test-nat",
176 #if VERBOSE
177                     "DEBUG",
178 #else
179                     "WARNING",
180 #endif
181                     NULL);
182
183   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
184               "Testing NAT library, timeout set to %d seconds\n", TIMEOUT);
185
186   GNUNET_PROGRAM_run (5, argv_prog, "test-nat", "nohelp", options, &run, NULL);
187
188   return 0;
189 }
190
191 /* end of test_nat.c */