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