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