indentation
[oweals/gnunet.git] / src / nat / gnunet-nat-server.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 src/nat/gnunet-nat-server.c
23  * @brief Daemon to run on 'gnunet.org' to help test NAT traversal code
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_nat_lib.h"
29 #include "gnunet_protocols.h"
30 #include "nat.h"
31
32 #define DEBUG_NAT GNUNET_NO
33
34 /**
35  * Our server.
36  */
37 static struct GNUNET_SERVER_Handle *server;
38
39 /**
40  * Our configuration.
41  */
42 static const struct GNUNET_CONFIGURATION_Handle *cfg;
43
44
45 /**
46  * Try contacting the peer using autonomous
47  * NAT traveral method.
48  *
49  * @param dst_ipv4 IPv4 address to send the fake ICMP message
50  * @param dport destination port to include in ICMP message
51  * @param is_tcp mark for TCP (GNUNET_YES)  or UDP (GNUNET_NO)
52  */
53 static void
54 try_anat (uint32_t dst_ipv4, uint16_t dport, int is_tcp)
55 {
56   struct GNUNET_NAT_Handle *h;
57   struct sockaddr_in sa;
58
59 #if DEBUG_NAT
60   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
61               "Asking for connection reversal with %x and code %u\n",
62               (unsigned int) dst_ipv4, (unsigned int) dport);
63 #endif
64   h = GNUNET_NAT_register (cfg, is_tcp, dport, 0, NULL, NULL, NULL, NULL, NULL);
65   memset (&sa, 0, sizeof (sa));
66   sa.sin_family = AF_INET;
67 #if HAVE_SOCKADDR_IN_SIN_LEN
68   sa.sin_len = sizeof (sa);
69 #endif
70   sa.sin_addr.s_addr = dst_ipv4;
71   GNUNET_NAT_run_client (h, &sa);
72   GNUNET_NAT_unregister (h);
73 }
74
75
76 /**
77  * Closure for 'tcp_send'.
78  */
79 struct TcpContext
80 {
81   /**
82    * TCP  socket.
83    */
84   struct GNUNET_NETWORK_Handle *s;
85
86   /** 
87    * Data to transmit.
88    */
89   uint16_t data;
90 };
91
92
93 /**
94  * Task called by the scheduler once we can do the TCP send
95  * (or once we failed to connect...).
96  *
97  * @param ctx the 'struct TcpContext'
98  * @param tc scheduler context
99  */
100 static void
101 tcp_send (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
102 {
103   struct TcpContext *ctx = cls;
104
105   if ((NULL != tc->write_ready) &&
106       (GNUNET_NETWORK_fdset_isset (tc->write_ready, ctx->s)))
107   {
108     if (-1 ==
109         GNUNET_NETWORK_socket_send (ctx->s, &ctx->data, sizeof (ctx->data)))
110     {
111 #if DEBUG_NAT
112       GNUNET_log_strerror (GNUNET_ERROR_TYPE_DEBUG, "send");
113 #endif
114     }
115     GNUNET_NETWORK_socket_shutdown (ctx->s, SHUT_RDWR);
116   }
117   GNUNET_NETWORK_socket_close (ctx->s);
118   GNUNET_free (ctx);
119 }
120
121
122 /**
123  * Try to send 'data' to the
124  * IP 'dst_ipv4' at port 'dport' via TCP.
125  * 
126  * @param dst_ivp4 target IP
127  * @param dport target port
128  * @param data data to send
129  */
130 static void
131 try_send_tcp (uint32_t dst_ipv4, uint16_t dport, uint16_t data)
132 {
133   struct GNUNET_NETWORK_Handle *s;
134   struct sockaddr_in sa;
135   struct TcpContext *ctx;
136
137   s = GNUNET_NETWORK_socket_create (AF_INET, SOCK_STREAM, 0);
138   if (NULL == s)
139   {
140     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
141     return;
142   }
143   memset (&sa, 0, sizeof (sa));
144   sa.sin_family = AF_INET;
145 #if HAVE_SOCKADDR_IN_SIN_LEN
146   sa.sin_len = sizeof (sa);
147 #endif
148   sa.sin_addr.s_addr = dst_ipv4;
149   sa.sin_port = htons (dport);
150 #if DEBUG_NAT
151   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending TCP message to `%s'\n",
152               GNUNET_a2s ((struct sockaddr *) &sa, sizeof (sa)));
153 #endif
154   if ((GNUNET_OK !=
155        GNUNET_NETWORK_socket_connect (s, (const struct sockaddr *) &sa,
156                                       sizeof (sa))) && (errno != EINPROGRESS))
157   {
158     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "connect");
159     GNUNET_NETWORK_socket_close (s);
160     return;
161   }
162   ctx = GNUNET_malloc (sizeof (struct TcpContext));
163   ctx->s = s;
164   ctx->data = data;
165   GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_SECONDS, s, &tcp_send, ctx);
166 }
167
168
169 /**
170  * Try to send 'data' to the
171  * IP 'dst_ipv4' at port 'dport' via UDP.
172  * 
173  * @param dst_ivp4 target IP
174  * @param dport target port
175  * @param data data to send
176  */
177 static void
178 try_send_udp (uint32_t dst_ipv4, uint16_t dport, uint16_t data)
179 {
180   struct GNUNET_NETWORK_Handle *s;
181   struct sockaddr_in sa;
182
183   s = GNUNET_NETWORK_socket_create (AF_INET, SOCK_DGRAM, 0);
184   if (NULL == s)
185   {
186     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
187     return;
188   }
189   memset (&sa, 0, sizeof (sa));
190   sa.sin_family = AF_INET;
191 #if HAVE_SOCKADDR_IN_SIN_LEN
192   sa.sin_len = sizeof (sa);
193 #endif
194   sa.sin_addr.s_addr = dst_ipv4;
195   sa.sin_port = htons (dport);
196 #if DEBUG_NAT
197   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending UDP packet to `%s'\n",
198               GNUNET_a2s ((struct sockaddr *) &sa, sizeof (sa)));
199 #endif
200   if (-1 ==
201       GNUNET_NETWORK_socket_sendto (s, &data, sizeof (data),
202                                     (const struct sockaddr *) &sa, sizeof (sa)))
203     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "sendto");
204   GNUNET_NETWORK_socket_close (s);
205 }
206
207
208 /**
209  * We've received a request to probe a NAT
210  * traversal. Do it.
211  * 
212  * @param cls unused
213  * @param client handle to client (we always close)
214  * @param msg message with details about what to test
215  */
216 static void
217 test (void *cls, struct GNUNET_SERVER_Client *client,
218       const struct GNUNET_MessageHeader *msg)
219 {
220   const struct GNUNET_NAT_TestMessage *tm;
221   uint16_t dport;
222
223 #if DEBUG_NAT
224   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received test request\n");
225 #endif
226   tm = (const struct GNUNET_NAT_TestMessage *) msg;
227   dport = ntohs (tm->dport);
228   if (0 == dport)
229     try_anat (tm->dst_ipv4, ntohs (tm->data), (int) ntohl (tm->is_tcp));
230   else if (GNUNET_YES == ntohl (tm->is_tcp))
231     try_send_tcp (tm->dst_ipv4, dport, tm->data);
232   else
233     try_send_udp (tm->dst_ipv4, dport, tm->data);
234   GNUNET_SERVER_receive_done (client, GNUNET_NO);
235 }
236
237
238 /**
239  * Task run during shutdown.
240  *
241  * @param ctx unused
242  * @param tc scheduler context
243  */
244 static void
245 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
246 {
247   GNUNET_SERVER_destroy (server);
248   server = NULL;
249 }
250
251
252 /**
253  * Main function that will be run.
254  *
255  * @param cls closure
256  * @param args remaining command-line arguments
257  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
258  * @param c configuration
259  */
260 static void
261 run (void *cls, char *const *args, const char *cfgfile,
262      const struct GNUNET_CONFIGURATION_Handle *c)
263 {
264   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
265     {&test, NULL, GNUNET_MESSAGE_TYPE_NAT_TEST,
266      sizeof (struct GNUNET_NAT_TestMessage)},
267     {NULL, NULL, 0, 0}
268   };
269   unsigned int port;
270   struct sockaddr_in in4;
271   struct sockaddr_in6 in6;
272
273   socklen_t slen[] = {
274     sizeof (in4),
275     sizeof (in6),
276     0
277   };
278   struct sockaddr *sa[] = {
279     (struct sockaddr *) &in4,
280     (struct sockaddr *) &in6,
281     NULL
282   };
283
284   cfg = c;
285   if ((args[0] == NULL) || (1 != SSCANF (args[0], "%u", &port)) || (0 == port)
286       || (65536 <= port))
287   {
288     fprintf (stderr,
289              _
290              ("Please pass valid port number as the first argument! (got `%s')\n"),
291              args[0]);
292     return;
293   }
294   memset (&in4, 0, sizeof (in4));
295   memset (&in6, 0, sizeof (in6));
296   in4.sin_family = AF_INET;
297   in4.sin_port = htons ((uint16_t) port);
298   in6.sin6_family = AF_INET6;
299   in6.sin6_port = htons ((uint16_t) port);
300 #if HAVE_SOCKADDR_IN_SIN_LEN
301   in4.sin_len = sizeof (in4);
302   in6.sin6_len = sizeof (in6);
303 #endif
304   server =
305       GNUNET_SERVER_create (NULL, NULL, (struct sockaddr * const *) sa, slen,
306                             GNUNET_TIME_UNIT_SECONDS, GNUNET_YES);
307   GNUNET_SERVER_add_handlers (server, handlers);
308   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
309                                 NULL);
310 }
311
312
313 /**
314  * Main function of gnunet-nat-server.
315  *
316  * @param argc number of command-line arguments
317  * @param argv command line
318  * @return 0 on success, -1 on error
319  */
320 int
321 main (int argc, char *const argv[])
322 {
323   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
324     GNUNET_GETOPT_OPTION_END
325   };
326
327   if (GNUNET_OK !=
328       GNUNET_PROGRAM_run (argc, argv, "gnunet-nat-server [options] PORT",
329                           _("GNUnet NAT traversal test helper daemon"), options,
330                           &run, NULL))
331     return 1;
332   return 0;
333 }
334
335
336 /* end of gnunet-nat-server.c */