fix
[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   GNUNET_NAMESTORE_disconnect (namestore_handle);
113   if (rd_count == 0)
114   {
115     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
116                 "Lookup failed, rp_filtering?\n");
117     ok = 2;
118   }
119   else
120   {
121     ok = 1;
122     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
123     for (i=0; i<rd_count; i++)
124     {
125       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
126       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
127       {
128         memcpy(&a, rd[i].data, sizeof(a));
129         addr = inet_ntoa(a);
130         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
131         if (0 == strcmp(addr, TEST_IP))
132         {
133           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
134                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
135           ok = 0;
136         }
137       }
138       else
139       {
140         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
141       }
142     }
143   }
144   GNUNET_GNS_disconnect(gns_handle);
145   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
146   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
147 }
148
149
150 /**
151  * Function scheduled to be run on the successful start of services
152  * tries to look up the dns record for TEST_DOMAIN
153  */
154 static void
155 commence_testing (void *cls, int32_t success, const char *emsg)
156 {
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_A,
167                     GNUNET_NO,
168                     NULL,
169                     &on_lookup_result, TEST_DOMAIN);
170 }
171
172 /**
173  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
174  * down the peers without freeing memory associated with GET request.
175  */
176 static void
177 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
178 {
179
180   if (pg != NULL)
181     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
182   GNUNET_SCHEDULER_cancel (die_task);
183 }
184
185 /**
186  * Check if the get_handle is being used, if so stop the request.  Either
187  * way, schedule the end_badly_cont function which actually shuts down the
188  * test.
189  */
190 static void
191 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
192 {
193   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
194               (char *) cls);
195   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
196   ok = 1;
197 }
198
199 static void
200 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
201           const struct GNUNET_CONFIGURATION_Handle *_cfg,
202           struct GNUNET_TESTING_Daemon *d, const char *emsg)
203 {
204   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
205   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
206   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
207   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
208   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
209   struct GNUNET_CRYPTO_RsaSignature *sig;
210   char* alice_keyfile;
211   struct GNUNET_TIME_Absolute et;
212
213   cfg = _cfg;
214
215   GNUNET_SCHEDULER_cancel (die_task);
216
217   /* put records into namestore */
218   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
219   if (NULL == namestore_handle)
220   {
221     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
222     ok = -1;
223     return;
224   }
225
226   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
227                                                           "ZONEKEY",
228                                                           &alice_keyfile))
229   {
230     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
231     ok = -1;
232     return;
233   }
234
235   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
236   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
237
238   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
239   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
240
241   struct GNUNET_NAMESTORE_RecordData rd;
242   char* ip = TEST_IP;
243   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
244   rd.expiration_time = UINT64_MAX;
245   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
246   
247   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
248
249   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
250   rd.data = &bob_hash;
251   rd.record_type = GNUNET_GNS_RECORD_PKEY;
252   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
253
254   GNUNET_NAMESTORE_record_create (namestore_handle,
255                                   alice_key,
256                                   TEST_AUTHORITY_NAME,
257                                   &rd,
258                                   NULL,
259                                   NULL);
260
261   rd.data_size = sizeof(struct in_addr);
262   rd.data = web;
263   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
264   sig = GNUNET_NAMESTORE_create_signature(bob_key,
265                                           GNUNET_TIME_UNIT_FOREVER_ABS,
266                                           TEST_RECORD_NAME,
267                                           &rd, 1);
268   et.abs_value = rd.expiration_time;
269   GNUNET_NAMESTORE_record_put (namestore_handle,
270                                &bob_pkey,
271                                TEST_RECORD_NAME,
272                                et,
273                                1,
274                                &rd,
275                                sig,
276                                &commence_testing,
277                                NULL);
278   GNUNET_free(sig);
279   GNUNET_CRYPTO_rsa_key_free(bob_key);
280   GNUNET_CRYPTO_rsa_key_free(alice_key);
281 }
282
283 static void
284 run (void *cls, char *const *args, const char *cfgfile,
285      const struct GNUNET_CONFIGURATION_Handle *c)
286 {
287   cfg = c;
288    /* Get path from configuration file */
289   if (GNUNET_YES !=
290       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
291                                              &test_directory))
292   {
293     ok = 404;
294     return;
295   }
296
297     
298   /* Set up a task to end testing if peer start fails */
299   die_task =
300       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
301                                     "didn't start all daemons in reasonable amount of time!!!");
302   
303   /* Start alice */
304   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
305                                     NULL, NULL, &do_lookup, NULL,
306                                     NULL, NULL, NULL);
307 }
308
309 static int
310 check ()
311 {
312   int ret;
313
314   /* Arguments for GNUNET_PROGRAM_run */
315   char *const argv[] = { "test-gns-simple-delegated-lookup", /* Name to give running binary */
316     "-c",
317     "test_gns_simple_lookup.conf",       /* Config file to use */
318 #if VERBOSE
319     "-L", "DEBUG",
320 #endif
321     NULL
322   };
323   struct GNUNET_GETOPT_CommandLineOption options[] = {
324     GNUNET_GETOPT_OPTION_END
325   };
326   /* Run the run function as a new program */
327   ret =
328       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
329                           "test-gns-simple-delegated-lookup", "nohelp", options, &run,
330                           &ok);
331   if (ret != GNUNET_OK)
332   {
333     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
334                 "`test-gns-simple-delegated-lookup': Failed with error code %d\n", ret);
335   }
336   return ok;
337 }
338
339 int
340 main (int argc, char *argv[])
341 {
342   int ret;
343
344   GNUNET_log_setup ("test-gns-simple-lookup",
345 #if VERBOSE
346                     "DEBUG",
347 #else
348                     "WARNING",
349 #endif
350                     NULL);
351   ret = check ();
352   /**
353    * Need to remove base directory, subdirectories taken care
354    * of by the testing framework.
355    */
356   return ret;
357 }
358
359 /* end of test_gns_twopeer.c */