-fixes
[oweals/gnunet.git] / src / gns / test_gns_dht_delegated_lookup.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_twopeer.c
22  * @brief base testcase for testing DHT service with
23  *        two running peers.
24  *
25  * This testcase starts peers using the GNUNET_TESTING_daemons_start
26  * function call.  On peer start, connects to the peers DHT service
27  * by calling GNUNET_DHT_connected.  Once notified about all peers
28  * being started (by the peers_started_callback function), calls
29  * GNUNET_TESTING_connect_topology, which connects the peers in a
30  * "straight line" topology.  On notification that all peers have
31  * been properly connected, calls the do_get function which initiates
32  * a GNUNET_DHT_get from the *second* peer. Once the GNUNET_DHT_get
33  * function starts, runs the do_put function to insert data at the first peer.
34  *   If the GET is successful, schedules finish_testing
35  * to stop the test and shut down peers.  If GET is unsuccessful
36  * after GET_TIMEOUT seconds, prints an error message and shuts down
37  * the peers.
38  */
39 #include "platform.h"
40 #include "gnunet_testing_lib.h"
41 #include "gnunet_core_service.h"
42 #include "block_gns.h"
43 #include "gnunet_signatures.h"
44 #include "gnunet_namestore_service.h"
45 #include "../namestore/namestore.h"
46 #include "gnunet_dnsparser_lib.h"
47 #include "gnunet_dht_service.h"
48 #include "gnunet_gns_service.h"
49
50 /* DEFINES */
51 #define VERBOSE GNUNET_YES
52
53 /* Timeout for entire testcase */
54 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 10)
55
56 /* If number of peers not in config file, use this number */
57 #define DEFAULT_NUM_PEERS 2
58
59 /* test records to resolve */
60 #define TEST_DOMAIN "www.bob.gnunet"
61 #define TEST_IP "127.0.0.1"
62 #define TEST_RECORD_NAME "www"
63
64 #define TEST_AUTHORITY_NAME "bob"
65
66 #define DHT_OPERATION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
67
68 /* Globals */
69
70 /**
71  * Directory to store temp data in, defined in config file
72  */
73 static char *test_directory;
74
75 struct GNUNET_TESTING_Daemon *d1;
76
77
78 /* Task handle to use to schedule test failure */
79 GNUNET_SCHEDULER_TaskIdentifier die_task;
80
81 /* Global return value (0 for success, anything else for failure) */
82 static int ok;
83
84 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
85
86 static struct GNUNET_GNS_Handle *gns_handle;
87
88 static struct GNUNET_DHT_Handle *dht_handle;
89
90 const struct GNUNET_CONFIGURATION_Handle *cfg;
91
92 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
93 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
94 struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
95 struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
96
97 /**
98  * Check whether peers successfully shut down.
99  */
100 void
101 shutdown_callback (void *cls, const char *emsg)
102 {
103   if (emsg != NULL)
104   {
105     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
106     if (ok == 0)
107       ok = 2;
108   }
109
110   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
111 }
112
113
114 static void
115 on_lookup_result(void *cls, uint32_t rd_count,
116                  const struct GNUNET_NAMESTORE_RecordData *rd)
117 {
118   struct in_addr a;
119   int i;
120   char* addr;
121   
122   if (rd_count == 0)
123   {
124     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
125                 "Lookup failed, rp_filtering?\n");
126     ok = 2;
127   }
128   else
129   {
130     ok = 1;
131     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
132     for (i=0; i<rd_count; i++)
133     {
134       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
135       if (rd[i].record_type == GNUNET_GNS_RECORD_TYPE_A)
136       {
137         memcpy(&a, rd[i].data, sizeof(a));
138         addr = inet_ntoa(a);
139         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
140         if (0 == strcmp(addr, TEST_IP))
141         {
142           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
143                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
144           ok = 0;
145         }
146       }
147       else
148       {
149         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
150       }
151     }
152   }
153   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
154   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
155                               GNUNET_YES, GNUNET_NO);
156 }
157
158
159 /**
160  * Function scheduled to be run on the successful start of services
161  * tries to look up the dns record for TEST_DOMAIN
162  */
163 static void
164 commence_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
165 {
166   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
167
168   gns_handle = GNUNET_GNS_connect(cfg);
169
170   if (NULL == gns_handle)
171   {
172     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
173                 "Failed to connect to GNS!\n");
174   }
175
176   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_TYPE_A,
177                     &on_lookup_result, TEST_DOMAIN);
178 }
179
180 /**
181  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
182  * down the peers without freeing memory associated with GET request.
183  */
184 static void
185 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
186 {
187
188   if (d1 != NULL)
189     GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
190                                 GNUNET_YES, GNUNET_NO);
191   GNUNET_SCHEDULER_cancel (die_task);
192 }
193
194 /**
195  * Check if the get_handle is being used, if so stop the request.  Either
196  * way, schedule the end_badly_cont function which actually shuts down the
197  * test.
198  */
199 static void
200 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
201 {
202   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
203               (char *) cls);
204   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
205   ok = 1;
206 }
207
208
209 static void
210 put_dht(void *cls, int32_t success, const char *emsg)
211 {
212   struct GNSNameRecordBlock *nrb;
213   GNUNET_HashCode name_hash;
214   GNUNET_HashCode xor_hash;
215   GNUNET_HashCode zone_hash;
216   uint32_t rd_payload_length;
217   char* nrb_data = NULL;
218   struct GNUNET_CRYPTO_RsaSignature *sig;
219   struct GNUNET_NAMESTORE_RecordData rd;
220   char* ip = TEST_IP;
221   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
222   
223   rd.expiration = GNUNET_TIME_absolute_get_forever ();
224   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
225   rd.data_size = sizeof(struct in_addr);
226   rd.data = web;
227   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
228
229   sig = GNUNET_NAMESTORE_create_signature(bob_key, GNUNET_TIME_absolute_get_forever(), TEST_RECORD_NAME,
230                                           &rd, 1);
231   rd_payload_length = GNUNET_NAMESTORE_records_get_size (1, &rd);
232   nrb = GNUNET_malloc(rd_payload_length + strlen(TEST_RECORD_NAME) + 1
233                       + sizeof(struct GNSNameRecordBlock));
234   nrb->signature = *sig;
235   nrb->public_key = bob_pkey;
236   nrb->rd_count = htonl(1);
237   memset(&nrb[1], 0, strlen(TEST_RECORD_NAME) + 1);
238   strcpy((char*)&nrb[1], TEST_RECORD_NAME);
239   nrb_data = (char*)&nrb[1];
240   nrb_data += strlen(TEST_RECORD_NAME) + 1;
241
242   if (-1 == GNUNET_NAMESTORE_records_serialize (1,
243                                                 &rd,
244                                                 rd_payload_length,
245                                                 nrb_data))
246   {
247     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
248     ok = 3;
249     GNUNET_free (nrb);
250     return;
251   }
252   GNUNET_CRYPTO_hash(TEST_RECORD_NAME, strlen(TEST_RECORD_NAME), &name_hash);
253   GNUNET_CRYPTO_hash(&bob_pkey,
254                      sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
255                      &zone_hash);
256   GNUNET_CRYPTO_hash_xor(&zone_hash, &name_hash, &xor_hash);
257
258   rd_payload_length += sizeof(struct GNSNameRecordBlock) +
259     strlen(TEST_RECORD_NAME) + 1;
260   GNUNET_DHT_put (dht_handle, &xor_hash,
261                   0,
262                   GNUNET_DHT_RO_NONE,
263                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
264                   rd_payload_length,
265                   (char*)nrb,
266                   rd.expiration,
267                   DHT_OPERATION_TIMEOUT,
268                   NULL,
269                   NULL);
270   GNUNET_free (nrb);
271   GNUNET_SCHEDULER_add_delayed(TIMEOUT, &commence_testing, NULL);
272 }
273
274 static void
275 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
276           const struct GNUNET_CONFIGURATION_Handle *cfg,
277           struct GNUNET_TESTING_Daemon *d, const char *emsg)
278 {
279   
280   
281   char* alice_keyfile;
282   GNUNET_HashCode bob_hash;
283   
284
285   GNUNET_SCHEDULER_cancel (die_task);
286
287   /* put records into namestore */
288   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
289   if (NULL == namestore_handle)
290   {
291     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
292     ok = -1;
293     return;
294   }
295   
296   /* dht */
297   dht_handle = GNUNET_DHT_connect(cfg, 1);
298   if (NULL == dht_handle)
299   {
300     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to dht\n");
301     ok = -1;
302     return;
303   }
304
305   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
306                                                           "ZONEKEY",
307                                                           &alice_keyfile))
308   {
309     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
310     ok = -1;
311     return;
312   }
313
314   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
315   bob_key = GNUNET_CRYPTO_rsa_key_create ();
316   
317   GNUNET_free(alice_keyfile);
318
319   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
320   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
321   GNUNET_CRYPTO_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
322
323   struct GNUNET_NAMESTORE_RecordData rd;
324   rd.expiration = GNUNET_TIME_absolute_get_forever ();
325   rd.data_size = sizeof(GNUNET_HashCode);
326   rd.data = &bob_hash;
327   rd.record_type = GNUNET_GNS_RECORD_PKEY;
328
329   GNUNET_NAMESTORE_record_create (namestore_handle,
330                                   alice_key,
331                                   TEST_AUTHORITY_NAME,
332                                   &rd,
333                                   &put_dht,
334                                   NULL);
335
336   
337
338 }
339
340 static void
341 run (void *cls, char *const *args, const char *cfgfile,
342      const struct GNUNET_CONFIGURATION_Handle *c)
343 {
344   cfg = c;
345    /* Get path from configuration file */
346   if (GNUNET_YES !=
347       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
348                                              &test_directory))
349   {
350     ok = 404;
351     return;
352   }
353
354     
355   /* Set up a task to end testing if peer start fails */
356   die_task =
357       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
358                                     "didn't start all daemons in reasonable amount of time!!!");
359   
360   /* Start alice */
361   d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
362                                    NULL, NULL, NULL, &do_lookup, NULL);
363 }
364
365 static int
366 check ()
367 {
368   int ret;
369
370   /* Arguments for GNUNET_PROGRAM_run */
371   char *const argv[] = { "test-gns-dht-delegated-lookup", /* Name to give running binary */
372     "-c",
373     "test_gns_simple_lookup.conf",       /* Config file to use */
374 #if VERBOSE
375     "-L", "DEBUG",
376 #endif
377     NULL
378   };
379   struct GNUNET_GETOPT_CommandLineOption options[] = {
380     GNUNET_GETOPT_OPTION_END
381   };
382   /* Run the run function as a new program */
383   ret =
384       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
385                           "test-gns-dht-delegated-lookup", "nohelp", options, &run,
386                           &ok);
387   if (ret != GNUNET_OK)
388   {
389     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
390                 "`test-gns-dht-delegated-lookup': Failed with error code %d\n", ret);
391   }
392   return ok;
393 }
394
395 int
396 main (int argc, char *argv[])
397 {
398   int ret;
399
400   GNUNET_log_setup ("test-gns-simple-lookup",
401 #if VERBOSE
402                     "DEBUG",
403 #else
404                     "WARNING",
405 #endif
406                     NULL);
407   ret = check ();
408   /**
409    * Need to remove base directory, subdirectories taken care
410    * of by the testing framework.
411    */
412   return ret;
413 }
414
415 /* end of test_gns_twopeer.c */