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