- make gns compile
[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, 10)
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 const struct GNUNET_CONFIGURATION_Handle *cfg;
84
85 /**
86  * Check whether peers successfully shut down.
87  */
88 void
89 shutdown_callback (void *cls, const char *emsg)
90 {
91   if (emsg != NULL)
92   {
93     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
94     if (ok == 0)
95       ok = 2;
96   }
97
98   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
99 }
100
101 /**
102  * Function scheduled to be run on the successful start of services
103  * tries to look up the dns record for TEST_DOMAIN
104  */
105 static void
106 finish_testing (void *cls, int32_t success, const char *emsg)
107 {
108   struct hostent *he;
109   struct in_addr a;
110   char* addr;
111   
112   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
113               "disconnecting from namestore\n");
114   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
115
116   he = gethostbyname (TEST_DOMAIN);
117
118   if (!he)
119   {
120     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
121                 "gethostbyname failed, rp_filtering?\n");
122     ok = 2;
123   }
124   else
125   {
126     ok = 1;
127     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", he->h_name);
128     while (*he->h_addr_list)
129     {
130       memcpy(&a, *he->h_addr_list++, sizeof(a));
131       addr = inet_ntoa(a);
132       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
133       if (0 == strcmp(addr, TEST_IP))
134       {
135         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
136                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
137         ok = 0;
138       }
139       else
140       {
141         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
142       }
143     }
144   }
145   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
146   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
147                               GNUNET_YES, GNUNET_NO);
148 }
149
150 /**
151  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
152  * down the peers without freeing memory associated with GET request.
153  */
154 static void
155 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
156 {
157
158   if (d1 != NULL)
159     GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
160                                 GNUNET_YES, GNUNET_NO);
161   GNUNET_SCHEDULER_cancel (die_task);
162 }
163
164 /**
165  * Check if the get_handle is being used, if so stop the request.  Either
166  * way, schedule the end_badly_cont function which actually shuts down the
167  * test.
168  */
169 static void
170 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
171 {
172   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
173               (char *) cls);
174   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
175   ok = 1;
176 }
177
178 static void
179 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
180           const struct GNUNET_CONFIGURATION_Handle *cfg,
181           struct GNUNET_TESTING_Daemon *d, const char *emsg)
182 {
183   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
184   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
185   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
186   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
187   GNUNET_HashCode bob_hash;
188   struct GNUNET_CRYPTO_RsaSignature *sig;
189   char* alice_keyfile;
190
191   GNUNET_SCHEDULER_cancel (die_task);
192
193   /* put records into namestore */
194   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
195   if (NULL == namestore_handle)
196   {
197     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
198     ok = -1;
199     return;
200   }
201
202   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "gns",
203                                                           "ZONEKEY",
204                                                           &alice_keyfile))
205   {
206     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
207     ok = -1;
208     return;
209   }
210
211   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
212   bob_key = GNUNET_CRYPTO_rsa_key_create ();
213
214   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
215   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
216
217   struct GNUNET_NAMESTORE_RecordData rd;
218   char* ip = TEST_IP;
219   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
220   rd.expiration = GNUNET_TIME_absolute_get_forever ();
221   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
222   
223   GNUNET_CRYPTO_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
224
225   rd.data_size = sizeof(GNUNET_HashCode);
226   rd.data = &bob_hash;
227   rd.record_type = GNUNET_GNS_RECORD_PKEY;
228
229   GNUNET_NAMESTORE_record_create (namestore_handle,
230                                   alice_key,
231                                   TEST_AUTHORITY_NAME,
232                                   &rd,
233                                   NULL,
234                                   NULL);
235
236   rd.data_size = sizeof(struct in_addr);
237   rd.data = web;
238   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
239   sig = GNUNET_NAMESTORE_create_signature(bob_key, TEST_RECORD_NAME,
240                                           &rd, 1);
241
242   GNUNET_NAMESTORE_record_put (namestore_handle,
243                                &bob_pkey,
244                                TEST_RECORD_NAME,
245                                rd.expiration,
246                                1,
247                                &rd,
248                                sig,
249                                &finish_testing,
250                                NULL);
251
252 }
253
254 static void
255 run (void *cls, char *const *args, const char *cfgfile,
256      const struct GNUNET_CONFIGURATION_Handle *c)
257 {
258   cfg = c;
259    /* Get path from configuration file */
260   if (GNUNET_YES !=
261       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
262                                              &test_directory))
263   {
264     ok = 404;
265     return;
266   }
267
268     
269   /* Set up a task to end testing if peer start fails */
270   die_task =
271       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
272                                     "didn't start all daemons in reasonable amount of time!!!");
273   
274   /* Start alice */
275   d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
276                                    NULL, NULL, NULL, &do_lookup, NULL);
277 }
278
279 static int
280 check ()
281 {
282   int ret;
283
284   /* Arguments for GNUNET_PROGRAM_run */
285   char *const argv[] = { "test-gns-simple-lookup", /* Name to give running binary */
286     "-c",
287     "test_gns_simple_lookup.conf",       /* Config file to use */
288 #if VERBOSE
289     "-L", "DEBUG",
290 #endif
291     NULL
292   };
293   struct GNUNET_GETOPT_CommandLineOption options[] = {
294     GNUNET_GETOPT_OPTION_END
295   };
296   /* Run the run function as a new program */
297   ret =
298       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
299                           "test-gns-simple-lookup", "nohelp", options, &run,
300                           &ok);
301   if (ret != GNUNET_OK)
302   {
303     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
304                 "`test-gns-simple-lookup': Failed with error code %d\n", ret);
305   }
306   return ok;
307 }
308
309 int
310 main (int argc, char *argv[])
311 {
312   int ret;
313
314   GNUNET_log_setup ("test-gns-simple-lookup",
315 #if VERBOSE
316                     "DEBUG",
317 #else
318                     "WARNING",
319 #endif
320                     NULL);
321   ret = check ();
322   /**
323    * Need to remove base directory, subdirectories taken care
324    * of by the testing framework.
325    */
326   return ret;
327 }
328
329 /* end of test_gns_twopeer.c */