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