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