fix
[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, 40)
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   GNUNET_NAMESTORE_disconnect (namestore_handle);
101   if (rd_count == 0)
102   {
103     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
104                 "Lookup failed\n");
105     ok = 2;
106   }
107   else
108   {
109     ok = 1;
110     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
111     for (i=0; i<rd_count; i++)
112     {
113       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
114       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
115       {
116         memcpy(&a, rd[i].data, sizeof(a));
117         addr = inet_ntoa(a);
118         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
119         if (0 == strcmp(addr, TEST_IP))
120         {
121           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
122                     "ZKEY correctly resolved to %s!\n", addr);
123           ok = 0;
124         }
125       }
126       else
127       {
128         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
129       }
130     }
131   }
132   GNUNET_GNS_disconnect(gns_handle);
133   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
134   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
135 }
136
137
138 /**
139  * Function scheduled to be run on the successful start of services
140  * tries to look up the dns record for TEST_DOMAIN
141  */
142 static void
143 commence_testing (void *cls, int32_t success, const char *emsg)
144 {
145   char name[MAX_DNS_NAME_LENGTH];
146   char* pos;
147   struct GNUNET_CRYPTO_ShortHashAsciiEncoded hash_str;
148   
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_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   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
255
256   GNUNET_NAMESTORE_record_create (namestore_handle,
257                                   alice_key,
258                                   TEST_AUTHORITY_NAME,
259                                   &rd,
260                                   NULL,
261                                   NULL);
262
263   rd.data_size = sizeof(struct in_addr);
264   rd.data = web;
265   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
266   sig = GNUNET_NAMESTORE_create_signature(bob_key,
267                                           GNUNET_TIME_UNIT_FOREVER_ABS,
268                                           TEST_RECORD_NAME,
269                                           &rd, 1);
270
271   GNUNET_NAMESTORE_record_put (namestore_handle,
272                                &bob_pkey,
273                                TEST_RECORD_NAME,
274                                GNUNET_TIME_UNIT_FOREVER_ABS,
275                                1,
276                                &rd,
277                                sig,
278                                &commence_testing,
279                                NULL);
280   GNUNET_free(sig);
281   GNUNET_CRYPTO_rsa_key_free(bob_key);
282   GNUNET_CRYPTO_rsa_key_free(alice_key);
283 }
284
285 static void
286 run (void *cls, char *const *args, const char *cfgfile,
287      const struct GNUNET_CONFIGURATION_Handle *c)
288 {
289   cfg = c;
290    /* Get path from configuration file */
291   if (GNUNET_YES !=
292       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
293                                              &test_directory))
294   {
295     ok = 404;
296     return;
297   }
298
299     
300   /* Set up a task to end testing if peer start fails */
301   die_task =
302       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
303                                     "didn't start all daemons in reasonable amount of time!!!");
304   
305   /* Start alice */
306   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
307                                     NULL, NULL, &do_lookup, NULL,
308                                     NULL, NULL, NULL);
309 }
310
311 static int
312 check ()
313 {
314   int ret;
315
316   /* Arguments for GNUNET_PROGRAM_run */
317   char *const argv[] = { "test-gns-simple-zkey-lookup", /* Name to give running binary */
318     "-c",
319     "test_gns_simple_lookup.conf",       /* Config file to use */
320     NULL
321   };
322   struct GNUNET_GETOPT_CommandLineOption options[] = {
323     GNUNET_GETOPT_OPTION_END
324   };
325   /* Run the run function as a new program */
326   ret =
327       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
328                           "test-gns-simple-zkey-lookup", "nohelp", options, &run,
329                           &ok);
330   if (ret != GNUNET_OK)
331   {
332     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
333                 "`test-gns-simple-zkey-lookup': Failed with error code %d\n", ret);
334   }
335   return ok;
336 }
337
338 int
339 main (int argc, char *argv[])
340 {
341   int ret;
342
343   GNUNET_log_setup ("test-gns-simple-zkey-lookup",
344                     "WARNING",
345                     NULL);
346   ret = check ();
347   /**
348    * Need to remove base directory, subdirectories taken care
349    * of by the testing framework.
350    */
351   return ret;
352 }
353
354 /* end of test_gns_twopeer.c */