(no commit message)
[oweals/gnunet.git] / src / transport / test_plugin_transport.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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  */
26
27 #include "platform.h"
28 #include "gnunet_constants.h"
29 #include "gnunet_getopt_lib.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_os_lib.h"
32 #include "gnunet_peerinfo_service.h"
33 #include "gnunet_plugin_lib.h"
34 #include "gnunet_protocols.h"
35 #include "gnunet_program_lib.h"
36 #include "gnunet_signatures.h"
37 #include "gnunet_transport_plugin.h"
38 #include "transport.h"
39
40 #define VERBOSE GNUNET_YES
41
42 /**
43  * How long until we give up on transmitting the message?
44  */
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
46
47 /**
48  * Our public key.
49  */
50 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
51
52 /**
53  * Our identity.
54  */
55 static struct GNUNET_PeerIdentity my_identity;
56
57 /**
58  * Our private key.
59  */
60 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
61
62 /**
63  * Our configuration.
64  */
65 const struct GNUNET_CONFIGURATION_Handle *cfg;
66
67 /**
68  * Number of neighbours we'd like to have.
69  */
70 static uint32_t max_connect_per_transport;
71
72 /**
73  * Environment for this plugin.
74  */
75 struct GNUNET_TRANSPORT_PluginEnvironment env;
76
77 /**
78  *handle for the api provided by this plugin
79  */
80 struct GNUNET_TRANSPORT_PluginFunctions *api;
81
82 /**
83  * Did the test pass or fail?
84  */
85 static int ok;
86
87 /**
88  */
89 static void
90 receive (void *cls, const struct GNUNET_PeerIdentity *peer,
91          const struct GNUNET_MessageHeader *message, uint32_t distance,
92          const char *sender_address, size_t sender_address_len)
93 {
94   /* do nothing */
95 }
96
97 void
98 notify_address (void *cls, const char *name, const void *addr, size_t addrlen,
99                 struct GNUNET_TIME_Relative expires)
100 {
101 }
102
103 /**
104  * Function called when the service shuts
105  * down.  Unloads our plugins.
106  *
107  * @param cls closure
108  * @param cfg configuration to use
109  */
110 static void
111 unload_plugins (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
112 {
113   GNUNET_assert (NULL ==
114                  GNUNET_PLUGIN_unload ("libgnunet_plugin_transport_tcp", api));
115   if (my_private_key != NULL)
116     GNUNET_CRYPTO_rsa_key_free (my_private_key);
117
118 }
119
120
121 static void
122 unload_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
123 {
124   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
125
126   unload_plugins (NULL, cfg);
127 }
128
129
130 /**
131  * Simple example test that invokes
132  * the "validate" function of the plugin
133  * and tries to see if the plugin would
134  * succeed to validate its own address.
135  * (This test is not well-written since
136  *  we hand-compile the address which
137  *  kind-of works for TCP but would not
138  *  work for other plugins; we should ask
139  *  the plugin about its address instead...).
140  */
141 /* FIXME: this is TCP/UDP-specific and won't work
142    for HTTP/SMTP/DV; we should instead use an
143    address that we get from the plugin itself
144    (if it is willing/able to give us one...) */
145 static void
146 test_validation ()
147 {
148   struct sockaddr_in soaddr;
149
150   memset (&soaddr, 0, sizeof (soaddr));
151 #if HAVE_SOCKADDR_IN_SIN_LEN
152   soaddr.sin_len = sizeof (soaddr);
153 #endif
154   soaddr.sin_family = AF_INET;
155   soaddr.sin_port = htons (2368 /* FIXME: get from config! */ );
156   soaddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
157   GNUNET_assert (GNUNET_OK ==
158                  api->check_address (api->cls, &soaddr, sizeof (soaddr)));
159   ok = 0;
160   GNUNET_SCHEDULER_add_continuation (&unload_task, (void *) cfg,
161                                      GNUNET_SCHEDULER_REASON_PREREQ_DONE);
162 }
163
164
165 static void
166 setup_plugin_environment ()
167 {
168   env.cfg = cfg;
169   env.my_identity = &my_identity;
170   env.cls = &env;
171   env.receive = &receive;
172   env.notify_address = &notify_address;
173   env.max_connections = max_connect_per_transport;
174 }
175
176
177 /**
178  * Runs the test.
179  *
180  * @param cls closure
181  * @param c configuration to use
182  */
183 static void
184 run (void *cls, char *const *args, const char *cfgfile,
185      const struct GNUNET_CONFIGURATION_Handle *c)
186 {
187   unsigned long long tneigh;
188   char *keyfile;
189   char *libname;
190
191   cfg = c;
192   /* parse configuration */
193   if ((GNUNET_OK !=
194        GNUNET_CONFIGURATION_get_value_number (c, "TRANSPORT", "NEIGHBOUR_LIMIT",
195                                               &tneigh)) ||
196       (GNUNET_OK !=
197        GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
198                                                 &keyfile)))
199   {
200     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
201                 _
202                 ("Transport service is lacking key configuration settings.  Exiting.\n"));
203     GNUNET_SCHEDULER_shutdown (s);
204     return;
205   }
206   max_connect_per_transport = (uint32_t) tneigh;
207   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
208   GNUNET_free (keyfile);
209   if (my_private_key == NULL)
210   {
211     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
212                 _("Transport service could not access hostkey.  Exiting.\n"));
213     GNUNET_SCHEDULER_shutdown (s);
214     return;
215   }
216   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
217   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
218                       &my_identity.hashPubKey);
219
220
221
222   /* load plugins... */
223   setup_plugin_environment ();
224   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Loading tcp transport plugin\n"));
225   GNUNET_asprintf (&libname, "libgnunet_plugin_transport_tcp");
226
227   api = GNUNET_PLUGIN_load (libname, &env);
228   GNUNET_free (libname);
229   if (api == NULL)
230   {
231     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
232                 _("Failed to load transport plugin for tcp\n"));
233     /* FIXME: set some error code for main */
234     return;
235   }
236   test_validation ();
237 }
238
239
240 /**
241  * The main function for the transport service.
242  *
243  * @param argc number of arguments from the command line
244  * @param argv command line arguments
245  * @return 0 ok, 1 on error
246  */
247 int
248 main (int argc, char *const *argv)
249 {
250   static struct GNUNET_GETOPT_CommandLineOption options[] = {
251     GNUNET_GETOPT_OPTION_END
252   };
253   int ret;
254
255   char *const argv_prog[] = {
256     "test_plugin_transport",
257     "-c",
258     "test_plugin_transport_data.conf",
259     "-L",
260 #if VERBOSE
261     "DEBUG",
262 #else
263     "WARNING",
264 #endif
265     NULL
266   };
267   GNUNET_log_setup ("test-plugin-transport",
268 #if VERBOSE
269                     "DEBUG",
270 #else
271                     "WARNING",
272 #endif
273                     NULL);
274   ok = 1;                       /* set to fail */
275   ret =
276       (GNUNET_OK ==
277        GNUNET_PROGRAM_run (5, argv_prog, "test-plugin-transport", "testcase",
278                            options, &run, NULL)) ? ok : 1;
279   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-plugin-transport");
280   return ret;
281 }
282
283 /* end of test_plugin_transport.c */