(no commit message)
[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 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  * @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         const struct GNUNET_PeerIdentity * peer,
99         const struct GNUNET_MessageHeader * message,
100         uint32_t distance,
101         const char *sender_address,
102         size_t sender_address_len)
103 {
104   /* do nothing */
105 }
106
107 void
108 notify_address (void *cls,
109                 const char *name,
110                 const void *addr,
111                 size_t addrlen, struct GNUNET_TIME_Relative expires)
112 {
113 }
114
115 /**
116  * Function called when the service shuts
117  * down.  Unloads our plugins.
118  *
119  * @param cls closure
120  * @param cfg configuration to use
121  */
122 static void
123 unload_plugins (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
124 {
125   GNUNET_assert (NULL ==
126                  GNUNET_PLUGIN_unload ("libgnunet_plugin_transport_udp",
127                                        api));
128   if (my_private_key != NULL)
129     GNUNET_CRYPTO_rsa_key_free (my_private_key);
130
131   ok = 0;
132 }
133
134 /**
135  * Simple example test that invokes
136  * the check_address function of the plugin.
137  */
138 /* FIXME: won't work on IPv6 enabled systems where IPv4 mapping
139  * isn't enabled (eg. FreeBSD > 4)
140  */
141 static void
142 test_validation ()
143 {
144   struct sockaddr_in soaddr;
145
146   memset (&soaddr, 0, sizeof (soaddr));
147 #if HAVE_SOCKADDR_IN_SIN_LEN
148   soaddr.sin_len = sizeof (soaddr);
149 #endif
150   soaddr.sin_family = AF_INET;
151   soaddr.sin_port = htons (2368 /* FIXME: get from config! */ );
152   soaddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
153
154   api->check_address(api->cls,
155       &soaddr, sizeof (soaddr));
156
157   unload_plugins(env.cls, env.cfg);
158 }
159
160
161 static void
162 setup_plugin_environment ()
163 {
164   env.cfg = cfg;
165   env.sched = sched;
166   env.my_identity = &my_identity;
167   env.cls = &env;
168   env.receive = &receive;
169   env.notify_address = &notify_address;
170   env.max_connections = max_connect_per_transport;
171 }
172
173 /**
174  * Runs the test.
175  *
176  * @param cls closure
177  * @param s scheduler to use
178  * @param c configuration to use
179  */
180 static void
181 run (void *cls,
182      struct GNUNET_SCHEDULER_Handle *s,
183      char *const *args,
184      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
185 {
186   unsigned long long tneigh;
187   char *keyfile;
188   char *libname;
189
190   sched = s;
191   cfg = c;
192   /* parse configuration */
193   if ((GNUNET_OK !=
194        GNUNET_CONFIGURATION_get_value_number (c,
195                                               "TRANSPORT",
196                                               "NEIGHBOUR_LIMIT",
197                                               &tneigh)) ||
198       (GNUNET_OK !=
199        GNUNET_CONFIGURATION_get_value_filename (c,
200                                                 "GNUNETD",
201                                                 "HOSTKEY", &keyfile)))
202     {
203       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
204                   _
205                   ("Transport service is lacking key configuration settings.  Exiting.\n"));
206       GNUNET_SCHEDULER_shutdown (s);
207       return;
208     }
209   max_connect_per_transport = (uint32_t) tneigh;
210   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
211   GNUNET_free (keyfile);
212   if (my_private_key == NULL)
213     {
214       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
215                   _
216                   ("Transport service could not access hostkey.  Exiting.\n"));
217       GNUNET_SCHEDULER_shutdown (s);
218       return;
219     }
220   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
221   GNUNET_CRYPTO_hash (&my_public_key,
222                       sizeof (my_public_key), &my_identity.hashPubKey);
223
224   /* load plugins... */
225   setup_plugin_environment ();
226   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Loading udp transport plugin\n"));
227   GNUNET_asprintf (&libname, "libgnunet_plugin_transport_udp");
228
229   api = GNUNET_PLUGIN_load (libname, &env);
230   GNUNET_free (libname);
231   if (api == NULL)
232     {
233       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
234                   _("Failed to load transport plugin for udp\n"));
235       /* FIXME: set some error code for main */
236       return;
237     }
238   test_validation ();
239 }
240
241
242 /**
243  * The main function for the transport service.
244  *
245  * @param argc number of arguments from the command line
246  * @param argv command line arguments
247  * @return 0 ok, 1 on error
248  */
249 int
250 main (int argc, char *const *argv)
251 {
252   static struct GNUNET_GETOPT_CommandLineOption options[] = {
253     GNUNET_GETOPT_OPTION_END
254   };
255   int ret;
256   char *const argv_prog[] = {
257     "test_plugin_transport",
258     "-c",
259     "test_plugin_transport_data_udp.conf",
260     "-L",
261 #if VERBOSE
262     "DEBUG",
263 #else
264     "WARNING",
265 #endif
266     NULL
267   };
268   GNUNET_log_setup ("test-plugin-transport",
269 #if VERBOSE
270                     "DEBUG",
271 #else
272                     "WARNING",
273 #endif
274                     NULL);
275   ok = 1;                       /* set to fail */
276   ret = (GNUNET_OK ==
277          GNUNET_PROGRAM_run (5,
278                              argv_prog,
279                              "test-plugin-transport",
280                              "testcase", options, &run, NULL)) ? ok : 1;
281   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-plugin-transport");
282   return ret;
283 }
284
285 /* end of test_plugin_transport_udp.c */