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