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