small changes
[oweals/gnunet.git] / src / transport / test_plugin_transport_udp.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 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 2, 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  * @file transport/test_transport_api.c
22  * @brief testcase for transport_api.c
23  * @author Sailor Siraj
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27
28 #include "platform.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_os_lib.h"
33 #include "gnunet_peerinfo_service.h"
34 #include "gnunet_plugin_lib.h"
35 #include "gnunet_protocols.h"
36 #include "gnunet_program_lib.h"
37 #include "gnunet_signatures.h"
38 #include "plugin_transport.h"
39 #include "transport.h"
40
41 #define VERBOSE GNUNET_NO
42
43 /**
44  * How long until we give up on transmitting the message?
45  */
46 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
47
48 /**
49  * Our public key.
50  */
51 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
52
53 /**
54  * Our identity.
55  */
56 static struct GNUNET_PeerIdentity my_identity;
57
58 /**
59  * Our private key.
60  */
61 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
62
63 /**
64  * Our scheduler.
65  */
66 struct GNUNET_SCHEDULER_Handle *sched;
67
68 /**
69  * Our configuration.
70  */
71 const struct GNUNET_CONFIGURATION_Handle *cfg;
72
73 /**
74  * Number of neighbours we'd like to have.
75  */
76 static uint32_t max_connect_per_transport;
77
78 /**
79  * Environment for this plugin.
80  */
81 struct GNUNET_TRANSPORT_PluginEnvironment env;
82
83 /**
84  *handle for the api provided by this plugin
85  */
86 struct GNUNET_TRANSPORT_PluginFunctions *api;
87
88 /**
89  * Did the test pass or fail?
90  */
91 static int ok;
92
93 /**
94  * Initialize Environment for this plugin
95  */
96 static void
97 receive (void *cls,
98          struct GNUNET_TIME_Relative
99          latency,
100          const struct GNUNET_PeerIdentity
101          *peer, const struct GNUNET_MessageHeader *message)
102 {
103   /* do nothing */
104 }
105
106 void
107 notify_address (void *cls,
108                 const char *name,
109                 const void *addr,
110                 size_t addrlen, struct GNUNET_TIME_Relative expires)
111 {
112 }
113
114 /**
115  * Function called when the service shuts
116  * down.  Unloads our plugins.
117  *
118  * @param cls closure
119  * @param cfg configuration to use
120  */
121 static void
122 unload_plugins (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
123 {
124   GNUNET_assert (NULL ==
125                  GNUNET_PLUGIN_unload ("libgnunet_plugin_transport_udp",
126                                        api));
127   if (my_private_key != NULL)
128     GNUNET_CRYPTO_rsa_key_free (my_private_key);
129
130 }
131
132
133 static void
134 unload_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
135 {
136   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
137   unload_plugins (NULL, cfg);
138 }
139
140
141 static GNUNET_SCHEDULER_TaskIdentifier validation_timeout_task;
142
143
144 static void
145 validation_notification (void *cls,
146                          const char *name,
147                          const struct GNUNET_PeerIdentity *peer,
148                          uint32_t challenge, const char *sender_addr)
149 {
150   struct sockaddr_storage *addr = (struct sockaddr_storage *)sender_addr;
151
152   if (validation_timeout_task != GNUNET_SCHEDULER_NO_TASK)
153     {
154       GNUNET_SCHEDULER_cancel (sched, validation_timeout_task);
155       validation_timeout_task = GNUNET_SCHEDULER_NO_TASK;
156     }
157
158   switch (addr->ss_family)
159   {
160     case AF_INET:
161       GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp", _
162                       ("got address %s\n"),GNUNET_a2s((struct sockaddr *)addr, INET_ADDRSTRLEN));
163     case AF_INET6:
164       GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp", _
165                       ("got address %s\n"),GNUNET_a2s((struct sockaddr *)addr, INET6_ADDRSTRLEN));
166   }
167
168
169   GNUNET_assert (challenge == 42);
170
171   ok = 0;                       /* if the last test succeeded, report success */
172
173   GNUNET_SCHEDULER_add_continuation (sched,
174                                      &unload_task,
175                                      (void *) cfg,
176                                      GNUNET_SCHEDULER_REASON_PREREQ_DONE);
177 }
178
179
180 static void
181 validation_failed (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
182 {
183   validation_timeout_task = GNUNET_SCHEDULER_NO_TASK;
184   GNUNET_break (0);             /* output error */
185   /* the "validation_notification" was not called
186      in a timely fashion; we should set an error
187      code for main and shut down */
188   unload_plugins (NULL, cfg);
189 }
190
191
192 /**
193  * Simple example test that invokes
194  * the "validate" function of the plugin
195  * and tries to see if the plugin would
196  * succeed to validate its own address.
197  * (This test is not well-written since
198  *  we hand-compile the address which
199  *  kind-of works for TCP but would not
200  *  work for other plugins; we should ask
201  *  the plugin about its address instead...).
202  */
203 /* FIXME: won't work on IPv6 enabled systems where IPv4 mapping
204  * isn't enabled (eg. FreeBSD > 4)
205  */
206 static void
207 test_validation ()
208 {
209   struct sockaddr_in soaddr;
210
211   memset (&soaddr, 0, sizeof (soaddr));
212 #if HAVE_SOCKADDR_IN_SIN_LEN
213   soaddr.sin_len = sizeof (soaddr);
214 #endif
215   soaddr.sin_family = AF_INET;
216   soaddr.sin_port = htons (2368 /* FIXME: get from config! */ );
217   soaddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
218
219   /* add job to catch failure (timeout) */
220   validation_timeout_task =
221     GNUNET_SCHEDULER_add_delayed (sched, TIMEOUT, &validation_failed, NULL);
222
223   api->validate (api->cls,
224                  &my_identity, 42, TIMEOUT, &soaddr, sizeof (soaddr));
225 }
226
227
228 static void
229 setup_plugin_environment ()
230 {
231   env.cfg = cfg;
232   env.sched = sched;
233   env.my_public_key = &my_public_key;
234   env.my_private_key = my_private_key;
235   env.my_identity = &my_identity;
236   env.cls = &env;
237   env.receive = &receive;
238   env.notify_address = &notify_address;
239   env.notify_validation = &validation_notification;
240   env.max_connections = max_connect_per_transport;
241 }
242
243 static int retx;
244
245 /**
246  * Runs the test.
247  *
248  * @param cls closure
249  * @param s scheduler to use
250  * @param c configuration to use
251  */
252 static void
253 run (void *cls,
254      struct GNUNET_SCHEDULER_Handle *s,
255      char *const *args,
256      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
257 {
258   unsigned long long tneigh;
259   char *keyfile;
260   char *libname;
261
262   sched = s;
263   cfg = c;
264   /* parse configuration */
265   if ((GNUNET_OK !=
266        GNUNET_CONFIGURATION_get_value_number (c,
267                                               "TRANSPORT",
268                                               "NEIGHBOUR_LIMIT",
269                                               &tneigh)) ||
270       (GNUNET_OK !=
271        GNUNET_CONFIGURATION_get_value_filename (c,
272                                                 "GNUNETD",
273                                                 "HOSTKEY", &keyfile)))
274     {
275       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
276                   _
277                   ("Transport service is lacking key configuration settings.  Exiting.\n"));
278       GNUNET_SCHEDULER_shutdown (s);
279       return;
280     }
281   max_connect_per_transport = (uint32_t) tneigh;
282   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
283   GNUNET_free (keyfile);
284   if (my_private_key == NULL)
285     {
286       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
287                   _
288                   ("Transport service could not access hostkey.  Exiting.\n"));
289       GNUNET_SCHEDULER_shutdown (s);
290       return;
291     }
292   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
293   GNUNET_CRYPTO_hash (&my_public_key,
294                       sizeof (my_public_key), &my_identity.hashPubKey);
295
296   /* load plugins... */
297   setup_plugin_environment ();
298   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Loading udp transport plugin\n"));
299   GNUNET_asprintf (&libname, "libgnunet_plugin_transport_udp");
300
301   api = GNUNET_PLUGIN_load (libname, &env);
302   GNUNET_free (libname);
303   if (api == NULL)
304     {
305       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
306                   _("Failed to load transport plugin for udp\n"));
307       /* FIXME: set some error code for main */
308       return;
309     }
310   test_validation ();
311 }
312
313
314 /**
315  * The main function for the transport service.
316  *
317  * @param argc number of arguments from the command line
318  * @param argv command line arguments
319  * @return 0 ok, 1 on error
320  */
321 int
322 main (int argc, char *const *argv)
323 {
324   static struct GNUNET_GETOPT_CommandLineOption options[] = {
325     GNUNET_GETOPT_OPTION_END
326   };
327   int ret;
328   char *const argv_prog[] = {
329     "test_plugin_transport",
330     "-c",
331     "test_plugin_transport_data_udp.conf",
332     "-L",
333 #if VERBOSE
334     "DEBUG",
335 #else
336     "WARNING",
337 #endif
338     NULL
339   };
340   GNUNET_log_setup ("test-plugin-transport",
341 #if VERBOSE
342                     "DEBUG",
343 #else
344                     "WARNING",
345 #endif
346                     NULL);
347   ok = 1;                       /* set to fail */
348   ret = (GNUNET_OK ==
349          GNUNET_PROGRAM_run (5,
350                              argv_prog,
351                              "test-plugin-transport",
352                              "testcase", options, &run, NULL)) ? ok : 1;
353   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-plugin-transport");
354   return ret;
355 }
356
357 /* end of test_plugin_transport_udp.c */