-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, 5)
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_GNS_disconnect(gns_handle);
154   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
155   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
156                               GNUNET_YES, GNUNET_NO);
157 }
158
159
160 /**
161  * Function scheduled to be run on the successful start of services
162  * tries to look up the dns record for TEST_DOMAIN
163  */
164 static void
165 commence_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
166 {
167   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
168
169   gns_handle = GNUNET_GNS_connect(cfg);
170
171   if (NULL == gns_handle)
172   {
173     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
174                 "Failed to connect to GNS!\n");
175   }
176
177   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_TYPE_A,
178                     &on_lookup_result, TEST_DOMAIN);
179 }
180
181 /**
182  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
183  * down the peers without freeing memory associated with GET request.
184  */
185 static void
186 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
187 {
188
189   if (d1 != NULL)
190     GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
191                                 GNUNET_YES, GNUNET_NO);
192   GNUNET_SCHEDULER_cancel (die_task);
193 }
194
195 /**
196  * Check if the get_handle is being used, if so stop the request.  Either
197  * way, schedule the end_badly_cont function which actually shuts down the
198  * test.
199  */
200 static void
201 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
202 {
203   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
204               (char *) cls);
205   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
206   ok = 1;
207 }
208
209
210 static void
211 put_dht(void *cls, int32_t success, const char *emsg)
212 {
213   struct GNSNameRecordBlock *nrb;
214   GNUNET_HashCode name_hash;
215   GNUNET_HashCode xor_hash;
216   GNUNET_HashCode zone_hash;
217   uint32_t rd_payload_length;
218   char* nrb_data = NULL;
219   struct GNUNET_CRYPTO_RsaSignature *sig;
220   struct GNUNET_NAMESTORE_RecordData rd;
221   char* ip = TEST_IP;
222   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
223   
224   rd.expiration = GNUNET_TIME_absolute_get_forever ();
225   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
226   rd.data_size = sizeof(struct in_addr);
227   rd.data = web;
228   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
229
230   sig = GNUNET_NAMESTORE_create_signature(bob_key, GNUNET_TIME_absolute_get_forever(), TEST_RECORD_NAME,
231                                           &rd, 1);
232   rd_payload_length = GNUNET_NAMESTORE_records_get_size (1, &rd);
233   nrb = GNUNET_malloc(rd_payload_length + strlen(TEST_RECORD_NAME) + 1
234                       + sizeof(struct GNSNameRecordBlock));
235   nrb->signature = *sig;
236   nrb->public_key = bob_pkey;
237   nrb->rd_count = htonl(1);
238   memset(&nrb[1], 0, strlen(TEST_RECORD_NAME) + 1);
239   strcpy((char*)&nrb[1], TEST_RECORD_NAME);
240   nrb_data = (char*)&nrb[1];
241   nrb_data += strlen(TEST_RECORD_NAME) + 1;
242
243   if (-1 == GNUNET_NAMESTORE_records_serialize (1,
244                                                 &rd,
245                                                 rd_payload_length,
246                                                 nrb_data))
247   {
248     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
249     ok = 3;
250     GNUNET_free (nrb);
251     return;
252   }
253   GNUNET_CRYPTO_hash(TEST_RECORD_NAME, strlen(TEST_RECORD_NAME), &name_hash);
254   GNUNET_CRYPTO_hash(&bob_pkey,
255                      sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
256                      &zone_hash);
257   GNUNET_CRYPTO_hash_xor(&zone_hash, &name_hash, &xor_hash);
258
259   rd_payload_length += sizeof(struct GNSNameRecordBlock) +
260     strlen(TEST_RECORD_NAME) + 1;
261   GNUNET_DHT_put (dht_handle, &xor_hash,
262                   0,
263                   GNUNET_DHT_RO_NONE,
264                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
265                   rd_payload_length,
266                   (char*)nrb,
267                   rd.expiration,
268                   DHT_OPERATION_TIMEOUT,
269                   NULL,
270                   NULL);
271   GNUNET_free (nrb);
272   GNUNET_SCHEDULER_add_delayed(TIMEOUT, &commence_testing, NULL);
273 }
274
275 static void
276 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
277           const struct GNUNET_CONFIGURATION_Handle *cfg,
278           struct GNUNET_TESTING_Daemon *d, const char *emsg)
279 {
280   
281   
282   char* alice_keyfile;
283   GNUNET_HashCode bob_hash;
284   
285
286   GNUNET_SCHEDULER_cancel (die_task);
287
288   /* put records into namestore */
289   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
290   if (NULL == namestore_handle)
291   {
292     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
293     ok = -1;
294     return;
295   }
296   
297   /* dht */
298   dht_handle = GNUNET_DHT_connect(cfg, 1);
299   if (NULL == dht_handle)
300   {
301     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to dht\n");
302     ok = -1;
303     return;
304   }
305
306   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
307                                                           "ZONEKEY",
308                                                           &alice_keyfile))
309   {
310     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
311     ok = -1;
312     return;
313   }
314
315   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
316   bob_key = GNUNET_CRYPTO_rsa_key_create ();
317   
318   GNUNET_free(alice_keyfile);
319
320   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
321   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
322   GNUNET_CRYPTO_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
323
324   struct GNUNET_NAMESTORE_RecordData rd;
325   rd.expiration = GNUNET_TIME_absolute_get_forever ();
326   rd.data_size = sizeof(GNUNET_HashCode);
327   rd.data = &bob_hash;
328   rd.record_type = GNUNET_GNS_RECORD_PKEY;
329
330   GNUNET_NAMESTORE_record_create (namestore_handle,
331                                   alice_key,
332                                   TEST_AUTHORITY_NAME,
333                                   &rd,
334                                   &put_dht,
335                                   NULL);
336
337   
338
339 }
340
341 static void
342 run (void *cls, char *const *args, const char *cfgfile,
343      const struct GNUNET_CONFIGURATION_Handle *c)
344 {
345   cfg = c;
346    /* Get path from configuration file */
347   if (GNUNET_YES !=
348       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
349                                              &test_directory))
350   {
351     ok = 404;
352     return;
353   }
354
355     
356   /* Set up a task to end testing if peer start fails */
357   die_task =
358       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
359                                     "didn't start all daemons in reasonable amount of time!!!");
360   
361   /* Start alice */
362   d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
363                                    NULL, NULL, NULL, &do_lookup, NULL);
364 }
365
366 static int
367 check ()
368 {
369   int ret;
370
371   /* Arguments for GNUNET_PROGRAM_run */
372   char *const argv[] = { "test-gns-dht-delegated-lookup", /* Name to give running binary */
373     "-c",
374     "test_gns_simple_lookup.conf",       /* Config file to use */
375 #if VERBOSE
376     "-L", "DEBUG",
377 #endif
378     NULL
379   };
380   struct GNUNET_GETOPT_CommandLineOption options[] = {
381     GNUNET_GETOPT_OPTION_END
382   };
383   /* Run the run function as a new program */
384   ret =
385       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
386                           "test-gns-dht-delegated-lookup", "nohelp", options, &run,
387                           &ok);
388   if (ret != GNUNET_OK)
389   {
390     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
391                 "`test-gns-dht-delegated-lookup': Failed with error code %d\n", ret);
392   }
393   return ok;
394 }
395
396 int
397 main (int argc, char *argv[])
398 {
399   int ret;
400
401   GNUNET_log_setup ("test-gns-simple-lookup",
402 #if VERBOSE
403                     "DEBUG",
404 #else
405                     "WARNING",
406 #endif
407                     NULL);
408   ret = check ();
409   /**
410    * Need to remove base directory, subdirectories taken care
411    * of by the testing framework.
412    */
413   return ret;
414 }
415
416 /* end of test_gns_twopeer.c */