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