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