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