-consistently use struct GNUNET_HashCode
[oweals/gnunet.git] / src / gns / test_gns_dht_threepeer.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 gns/test_gns_dht_threepeer.c
22  * @brief tests dht lookup over 3 peers
23  *
24  * topology:
25  * alice <----> bob <-----> dave
26  *
27  * alice queries for www.buddy.bob.gnunet
28  *
29  */
30 #include "platform.h"
31 #include "gnunet_disk_lib.h"
32 #include "gnunet_testing_lib.h"
33 #include "gnunet_core_service.h"
34 #include "gnunet_dht_service.h"
35 #include "block_dns.h"
36 #include "gnunet_signatures.h"
37 #include "gnunet_namestore_service.h"
38 #include "gnunet_dnsparser_lib.h"
39 #include "gnunet_gns_service.h"
40
41 /* DEFINES */
42 #define VERBOSE GNUNET_YES
43
44 /* Timeout for entire testcase */
45 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 180)
46 #define ZONE_PUT_WAIT_TIME GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)
47
48 /* If number of peers not in config file, use this number */
49 #define DEFAULT_NUM_PEERS 2
50
51 #define TEST_DOMAIN "www.buddy.bob.gnunet"
52 #define TEST_IP "1.1.1.1"
53 #define TEST_DAVE_PSEU "hagbard"
54 #define TEST_NUM_PEERS 3
55 #define TEST_NUM_CON 3
56
57 /* Globals */
58
59 /**
60  * Directory to store temp data in, defined in config file
61  */
62 static char *test_directory;
63
64 /**
65  * Variable used to store the number of connections we should wait for.
66  */
67 static unsigned int expected_connections;
68
69 /**
70  * Variable used to keep track of how many peers aren't yet started.
71  */
72 static unsigned long long peers_left;
73
74 struct GNUNET_TESTING_Daemon *d1;
75 struct GNUNET_TESTING_Daemon *d2;
76 struct GNUNET_TESTING_Daemon *d3;
77
78
79 /**
80  * Total number of peers to run, set based on config file.
81  */
82 static unsigned long long num_peers;
83
84 /**
85  * Global used to count how many connections we have currently
86  * been notified about (how many times has topology_callback been called
87  * with success?)
88  */
89 static unsigned int total_connections;
90
91 /**
92  * Global used to count how many failed connections we have
93  * been notified about (how many times has topology_callback
94  * been called with failure?)
95  */
96 static unsigned int failed_connections;
97
98 /* Task handle to use to schedule test failure */
99 GNUNET_SCHEDULER_TaskIdentifier die_task;
100
101 GNUNET_SCHEDULER_TaskIdentifier bob_task;
102
103 /* Global return value (0 for success, anything else for failure) */
104 static int ok;
105
106 int bob_online, alice_online, dave_online;
107
108 const struct GNUNET_CONFIGURATION_Handle *alice_cfg;
109 struct GNUNET_CONFIGURATION_Handle *cfg_bob;
110 struct GNUNET_CONFIGURATION_Handle *cfg_dave;
111
112 struct GNUNET_CRYPTO_ShortHashCode bob_hash;
113 struct GNUNET_CRYPTO_ShortHashCode dave_hash;
114 struct GNUNET_TESTING_Daemon *alice_daemon;
115 struct GNUNET_TESTING_Daemon *bob_daemon;
116 struct GNUNET_TESTING_Daemon *dave_daemon;
117
118 struct GNUNET_TESTING_PeerGroup *pg;
119 struct GNUNET_GNS_Handle *gh;
120
121 /**
122  * Function scheduled to be run on the successful completion of this
123  * testcase.  Specifically, called when our get request completes.
124  */
125 static void
126 finish_testing (void *cls, const char *emsg)
127 {
128   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Test finished! (ret=%d)\n", ok);
129 }
130
131 /**
132  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
133  * down the peers without freeing memory associated with GET request.
134  */
135 static void
136 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
137 {
138   die_task = GNUNET_SCHEDULER_NO_TASK;
139   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &finish_testing, NULL);
140 }
141
142 /**
143  * Check if the get_handle is being used, if so stop the request.  Either
144  * way, schedule the end_badly_cont function which actually shuts down the
145  * test.
146  */
147 static void
148 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
149 {
150   die_task = GNUNET_SCHEDULER_NO_TASK;
151   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Failing test with error: `%s'!\n",
152               (char *) cls);
153   die_task = GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
154   ok = 1;
155 }
156
157
158 static void
159 on_lookup_result(void *cls, uint32_t rd_count,
160                  const struct GNUNET_NAMESTORE_RecordData *rd)
161 {
162   int i;
163   char* string_val;
164   const char* typename;
165
166   if (rd_count == 0)
167   {
168     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
169                 "Lookup failed!\n");
170     ok = 2;
171   }
172   else
173   {
174     ok = 1;
175     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
176     for (i=0; i<rd_count; i++)
177     {
178       typename = GNUNET_NAMESTORE_number_to_typename (rd[i].record_type);
179       string_val = GNUNET_NAMESTORE_value_to_string(rd[i].record_type,
180                                                     rd[i].data,
181                                                     rd[i].data_size);
182       printf("Got %s record: %s\n", typename, string_val);
183       if (0 == strcmp(string_val, TEST_IP))
184       {
185         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
186                     "%s correctly resolved to %s!\n", TEST_DOMAIN, string_val);
187         ok = 0;
188       }
189     }
190   }
191   GNUNET_GNS_disconnect(gh);
192   GNUNET_SCHEDULER_cancel(die_task);
193   die_task = GNUNET_SCHEDULER_NO_TASK;
194   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &finish_testing, NULL);
195   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down!\n");
196
197 }
198
199 static void
200 commence_testing(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
201 {
202   
203
204   gh = GNUNET_GNS_connect(alice_cfg);
205
206   GNUNET_GNS_lookup(gh, TEST_DOMAIN, GNUNET_GNS_RECORD_TYPE_A,
207                     GNUNET_NO,
208                     &on_lookup_result, TEST_DOMAIN);
209   die_task =
210     GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, "from lookup");
211 }
212
213
214 /**
215  * This function is called whenever a connection attempt is finished between two of
216  * the started peers (started with GNUNET_TESTING_daemons_start).  The total
217  * number of times this function is called should equal the number returned
218  * from the GNUNET_TESTING_connect_topology call.
219  *
220  * The emsg variable is NULL on success (peers connected), and non-NULL on
221  * failure (peers failed to connect).
222  */
223 void
224 daemon_connected (void *cls, const struct GNUNET_PeerIdentity *first,
225                    const struct GNUNET_PeerIdentity *second, uint32_t distance,
226                    const struct GNUNET_CONFIGURATION_Handle *first_cfg,
227                    const struct GNUNET_CONFIGURATION_Handle *second_cfg,
228                    struct GNUNET_TESTING_Daemon *first_daemon,
229                    struct GNUNET_TESTING_Daemon *second_daemon,
230                    const char *emsg)
231 {
232   if (emsg == NULL)
233   {
234     total_connections++;
235 #if VERBOSE
236     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
237                 "connected peer %s to peer %s, distance %u\n",
238                 first_daemon->shortname, second_daemon->shortname, distance);
239 #endif
240   }
241 #if VERBOSE
242   else
243   {
244     failed_connections++;
245     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
246                 "Failed to connect peer %s to peer %s with error :\n%s\n",
247                 first_daemon->shortname, second_daemon->shortname, emsg);
248   }
249 #endif
250
251   if (total_connections == expected_connections)
252   {
253 #if VERBOSE
254     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
255                 "Created %d total connections, which is our target number!  Starting next phase of testing.\n",
256                 total_connections);
257 #endif
258     GNUNET_SCHEDULER_cancel (die_task);
259     die_task = GNUNET_SCHEDULER_NO_TASK;
260     //die_task =
261     //    GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, "from connect");
262    
263     //commence_testing();
264     
265   }
266   else if (total_connections + failed_connections == expected_connections)
267   {
268     GNUNET_SCHEDULER_cancel (die_task);
269     die_task =
270         GNUNET_SCHEDULER_add_now (&end_badly,
271                                   "from topology_callback (too many failed connections)");
272   }
273 }
274
275 void
276 all_connected(void *cls, const char *emsg)
277 {
278   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
279               "Created all connections!  Starting next phase of testing.\n");
280   GNUNET_SCHEDULER_add_delayed (ZONE_PUT_WAIT_TIME, &commence_testing, NULL);
281 }
282
283 void
284 ns_create_cont(void *cls, int32_t s, const char *emsg)
285 {
286   GNUNET_NAMESTORE_disconnect((struct GNUNET_NAMESTORE_Handle *)cls, 0);
287 }
288
289 static void
290 daemon_started (void *cls, const struct GNUNET_PeerIdentity *id,
291                 const struct GNUNET_CONFIGURATION_Handle *cfg,
292                 struct GNUNET_TESTING_Daemon *d, const char *emsg)
293 {
294   struct GNUNET_NAMESTORE_Handle *ns;
295   char* keyfile;
296   struct GNUNET_CRYPTO_RsaPrivateKey *key;
297   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pkey;
298   struct in_addr *web;
299   struct GNUNET_NAMESTORE_RecordData rd;
300
301   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY | GNUNET_NAMESTORE_RF_NONE;
302   rd.expiration = GNUNET_TIME_UNIT_FOREVER_ABS;
303   
304   if (NULL == dave_daemon)
305   {
306     if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
307                                                               "ZONEKEY",
308                                                               &keyfile))
309     {
310       GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
311       ok = -1;
312       return;
313     }
314     dave_daemon = d;
315
316     key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
317
318     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "This is now dave\n");
319     ns = GNUNET_NAMESTORE_connect(cfg);
320     
321     GNUNET_CRYPTO_rsa_key_get_public (key, &pkey);
322     GNUNET_CRYPTO_short_hash(&pkey, sizeof(pkey), &dave_hash);
323     
324     web = GNUNET_malloc(sizeof(struct in_addr));
325     GNUNET_assert(1 == inet_pton (AF_INET, TEST_IP, web));
326     rd.data_size = sizeof(struct in_addr);
327     rd.data = web;
328     rd.record_type = GNUNET_GNS_RECORD_TYPE_A;
329
330     GNUNET_NAMESTORE_record_create (ns, key, "www", &rd, NULL, NULL);
331
332     rd.data_size = strlen(TEST_DAVE_PSEU);
333     rd.data = TEST_DAVE_PSEU;
334     rd.record_type = GNUNET_GNS_RECORD_PSEU;
335
336     GNUNET_NAMESTORE_record_create (ns, key, "+", &rd, ns_create_cont, ns);
337
338     GNUNET_CRYPTO_rsa_key_free(key);
339     GNUNET_free(keyfile);
340     GNUNET_free(web);
341
342     return;
343   }
344   
345   
346   if (NULL == bob_daemon)
347   {
348     if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
349                                                               "ZONEKEY",
350                                                               &keyfile))
351     {
352       GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
353       ok = -1;
354       return;
355     }
356     bob_daemon = d;
357
358     key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
359
360     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "This is now bob\n");
361     ns = GNUNET_NAMESTORE_connect(cfg);
362     
363     GNUNET_CRYPTO_rsa_key_get_public (key, &pkey);
364     GNUNET_CRYPTO_short_hash(&pkey, sizeof(pkey), &bob_hash);
365     
366     rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
367     rd.data = &dave_hash;
368     rd.record_type = GNUNET_GNS_RECORD_PKEY;
369
370     GNUNET_NAMESTORE_record_create (ns, key, "buddy", &rd, ns_create_cont, ns);
371
372     GNUNET_CRYPTO_rsa_key_free(key);
373     GNUNET_free(keyfile);
374
375     return;
376   }
377
378   
379   
380   if (NULL == alice_daemon)
381   {
382
383     if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
384                                                               "ZONEKEY",
385                                                               &keyfile))
386     {
387       GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
388       ok = -1;
389       return;
390     }
391     alice_daemon = d;
392     alice_cfg = cfg;
393
394     key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
395
396     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "This is now alice\n");
397     ns = GNUNET_NAMESTORE_connect(cfg);
398     
399     rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
400     rd.data = &bob_hash;
401     rd.record_type = GNUNET_GNS_RECORD_PKEY;
402
403     GNUNET_NAMESTORE_record_create (ns, key, "bob", &rd, ns_create_cont, ns);
404
405     GNUNET_CRYPTO_rsa_key_free(key);
406     GNUNET_free(keyfile);
407
408     GNUNET_TESTING_connect_topology (pg, GNUNET_TESTING_TOPOLOGY_CLIQUE,
409                                      GNUNET_TESTING_TOPOLOGY_OPTION_ALL,
410                                      0,
411                                      TIMEOUT,
412                                      3,
413                                      &all_connected, NULL);
414     return;
415
416   }
417
418   
419
420   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "This is a random guy\n");
421 }
422
423 static void
424 run (void *cls, char *const *args, const char *cfgfile,
425      const struct GNUNET_CONFIGURATION_Handle *cfg)
426 {
427
428   /* Get path from configuration file */
429   if (GNUNET_YES !=
430       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
431                                              &test_directory))
432   {
433     ok = 404;
434     return;
435   }
436
437   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "starting\n");
438
439   /* Get number of peers to start from configuration (should be two) */
440   if (GNUNET_SYSERR ==
441       GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "num_peers",
442                                              &num_peers))
443     num_peers = DEFAULT_NUM_PEERS;
444
445   /* Set peers_left so we know when all peers started */
446   peers_left = num_peers;
447   
448   bob_daemon = NULL;
449   dave_daemon = NULL;
450   alice_daemon = NULL;
451
452   pg = GNUNET_TESTING_daemons_start (cfg, TEST_NUM_PEERS, TEST_NUM_CON,
453                                 TEST_NUM_CON, TIMEOUT, NULL, NULL, &daemon_started, NULL,
454                                 &daemon_connected, NULL, NULL);
455   
456   /* Set up a task to end testing if peer start fails */
457   die_task =
458       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
459                                     "didn't start all daemons in reasonable amount of time!!!");
460   
461   alice_online = 0;
462   bob_online = 0;
463   dave_online = 0;
464   expected_connections = 2;
465   
466   /* Start alice */
467   //d1 = GNUNET_TESTING_daemon_start(cfg_alice, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
468   //                                 NULL, NULL, NULL, &alice_started, NULL);
469   
470   
471
472
473 }
474
475 static int
476 check ()
477 {
478   int ret;
479
480   /* Arguments for GNUNET_PROGRAM_run */
481   char *const argv[] = { "test-gns-twopeer",    /* Name to give running binary */
482     "-c",
483     "test_gns_dht_default.conf",       /* Config file to use */
484 #if VERBOSE
485     "-L", "DEBUG",
486 #endif
487     NULL
488   };
489   struct GNUNET_GETOPT_CommandLineOption options[] = {
490     GNUNET_GETOPT_OPTION_END
491   };
492   /* Run the run function as a new program */
493   ret =
494       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
495                           "test-gns-threepeer", "nohelp", options, &run,
496                           &ok);
497   if (ret != GNUNET_OK)
498   {
499     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
500                 "`test-gns-threepeer': Failed with error code %d\n", ret);
501   }
502   return ok;
503 }
504
505 int
506 main (int argc, char *argv[])
507 {
508   int ret;
509
510   GNUNET_log_setup ("test-gns-threepeer",
511 #if VERBOSE
512                     "DEBUG",
513 #else
514                     "WARNING",
515 #endif
516                     NULL);
517   ret = check ();
518   /**
519    * Need to remove base directory, subdirectories taken care
520    * of by the testing framework.
521    */
522   return ret;
523 }
524
525 /* end of test_gns_threepeer.c */