-fixes
[oweals/gnunet.git] / src / gns / test_gns_simple_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_dns.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_gns_service.h"
48
49 /* DEFINES */
50 #define VERBOSE GNUNET_YES
51
52 /* Timeout for entire testcase */
53 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 20)
54
55 /* If number of peers not in config file, use this number */
56 #define DEFAULT_NUM_PEERS 2
57
58 /* test records to resolve */
59 #define TEST_DOMAIN "www.bob.gnunet"
60 #define TEST_IP "127.0.0.1"
61 #define TEST_RECORD_NAME "www"
62
63 #define TEST_AUTHORITY_NAME "bob"
64
65 #define KEYFILE_BOB "../namestore/zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey"
66
67 /* Globals */
68
69 /**
70  * Directory to store temp data in, defined in config file
71  */
72 static char *test_directory;
73
74 static struct GNUNET_TESTING_PeerGroup *pg;
75
76 /* Task handle to use to schedule test failure */
77 GNUNET_SCHEDULER_TaskIdentifier die_task;
78
79 /* Global return value (0 for success, anything else for failure) */
80 static int ok;
81
82 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
83
84 static struct GNUNET_GNS_Handle *gns_handle;
85
86 const struct GNUNET_CONFIGURATION_Handle *cfg;
87
88 /**
89  * Check whether peers successfully shut down.
90  */
91 void
92 shutdown_callback (void *cls, const char *emsg)
93 {
94   if (emsg != NULL)
95   {
96     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
97     if (ok == 0)
98       ok = 2;
99   }
100
101   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
102 }
103
104 static void
105 on_lookup_result(void *cls, uint32_t rd_count,
106                  const struct GNUNET_NAMESTORE_RecordData *rd)
107 {
108   struct in_addr a;
109   int i;
110   char* addr;
111   
112   if (rd_count == 0)
113   {
114     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
115                 "Lookup failed, rp_filtering?\n");
116     ok = 2;
117   }
118   else
119   {
120     ok = 1;
121     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
122     for (i=0; i<rd_count; i++)
123     {
124       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
125       if (rd[i].record_type == GNUNET_GNS_RECORD_TYPE_A)
126       {
127         memcpy(&a, rd[i].data, sizeof(a));
128         addr = inet_ntoa(a);
129         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
130         if (0 == strcmp(addr, TEST_IP))
131         {
132           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
133                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
134           ok = 0;
135         }
136       }
137       else
138       {
139         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
140       }
141     }
142   }
143   GNUNET_GNS_disconnect(gns_handle);
144   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
145   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
146 }
147
148
149 /**
150  * Function scheduled to be run on the successful start of services
151  * tries to look up the dns record for TEST_DOMAIN
152  */
153 static void
154 commence_testing (void *cls, int32_t success, const char *emsg)
155 {
156   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
157
158   gns_handle = GNUNET_GNS_connect(cfg);
159
160   if (NULL == gns_handle)
161   {
162     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
163                 "Failed to connect to GNS!\n");
164   }
165
166   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_TYPE_A,
167                     &on_lookup_result, TEST_DOMAIN);
168 }
169
170 /**
171  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
172  * down the peers without freeing memory associated with GET request.
173  */
174 static void
175 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
176 {
177
178   if (pg != NULL)
179     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
180   GNUNET_SCHEDULER_cancel (die_task);
181 }
182
183 /**
184  * Check if the get_handle is being used, if so stop the request.  Either
185  * way, schedule the end_badly_cont function which actually shuts down the
186  * test.
187  */
188 static void
189 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
190 {
191   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
192               (char *) cls);
193   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
194   ok = 1;
195 }
196
197 static void
198 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
199           const struct GNUNET_CONFIGURATION_Handle *_cfg,
200           struct GNUNET_TESTING_Daemon *d, const char *emsg)
201 {
202   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
203   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
204   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
205   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
206   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
207   struct GNUNET_CRYPTO_RsaSignature *sig;
208   char* alice_keyfile;
209
210   cfg = _cfg;
211
212   GNUNET_SCHEDULER_cancel (die_task);
213
214   /* put records into namestore */
215   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
216   if (NULL == namestore_handle)
217   {
218     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
219     ok = -1;
220     return;
221   }
222
223   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
224                                                           "ZONEKEY",
225                                                           &alice_keyfile))
226   {
227     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
228     ok = -1;
229     return;
230   }
231
232   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
233   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
234
235   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
236   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
237
238   struct GNUNET_NAMESTORE_RecordData rd;
239   char* ip = TEST_IP;
240   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
241   rd.expiration = GNUNET_TIME_absolute_get_forever ();
242   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
243   
244   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
245
246   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
247   rd.data = &bob_hash;
248   rd.record_type = GNUNET_GNS_RECORD_PKEY;
249
250   GNUNET_NAMESTORE_record_create (namestore_handle,
251                                   alice_key,
252                                   TEST_AUTHORITY_NAME,
253                                   &rd,
254                                   NULL,
255                                   NULL);
256
257   rd.data_size = sizeof(struct in_addr);
258   rd.data = web;
259   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
260   sig = GNUNET_NAMESTORE_create_signature(bob_key,
261                                           GNUNET_TIME_absolute_get_forever(),
262                                           TEST_RECORD_NAME,
263                                           &rd, 1);
264
265   GNUNET_NAMESTORE_record_put (namestore_handle,
266                                &bob_pkey,
267                                TEST_RECORD_NAME,
268                                rd.expiration,
269                                1,
270                                &rd,
271                                sig,
272                                &commence_testing,
273                                NULL);
274   GNUNET_free(sig);
275   GNUNET_CRYPTO_rsa_key_free(bob_key);
276   GNUNET_CRYPTO_rsa_key_free(alice_key);
277 }
278
279 static void
280 run (void *cls, char *const *args, const char *cfgfile,
281      const struct GNUNET_CONFIGURATION_Handle *c)
282 {
283   cfg = c;
284    /* Get path from configuration file */
285   if (GNUNET_YES !=
286       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
287                                              &test_directory))
288   {
289     ok = 404;
290     return;
291   }
292
293     
294   /* Set up a task to end testing if peer start fails */
295   die_task =
296       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
297                                     "didn't start all daemons in reasonable amount of time!!!");
298   
299   /* Start alice */
300   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
301                                     NULL, NULL, &do_lookup, NULL,
302                                     NULL, NULL, NULL);
303 }
304
305 static int
306 check ()
307 {
308   int ret;
309
310   /* Arguments for GNUNET_PROGRAM_run */
311   char *const argv[] = { "test-gns-simple-delegated-lookup", /* Name to give running binary */
312     "-c",
313     "test_gns_simple_lookup.conf",       /* Config file to use */
314 #if VERBOSE
315     "-L", "DEBUG",
316 #endif
317     NULL
318   };
319   struct GNUNET_GETOPT_CommandLineOption options[] = {
320     GNUNET_GETOPT_OPTION_END
321   };
322   /* Run the run function as a new program */
323   ret =
324       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
325                           "test-gns-simple-delegated-lookup", "nohelp", options, &run,
326                           &ok);
327   if (ret != GNUNET_OK)
328   {
329     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
330                 "`test-gns-simple-delegated-lookup': Failed with error code %d\n", ret);
331   }
332   return ok;
333 }
334
335 int
336 main (int argc, char *argv[])
337 {
338   int ret;
339
340   GNUNET_log_setup ("test-gns-simple-lookup",
341 #if VERBOSE
342                     "DEBUG",
343 #else
344                     "WARNING",
345 #endif
346                     NULL);
347   ret = check ();
348   /**
349    * Need to remove base directory, subdirectories taken care
350    * of by the testing framework.
351    */
352   return ret;
353 }
354
355 /* end of test_gns_twopeer.c */