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