-fix
[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-new.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.gads"
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.gads"
50
51 #define TEST_AUTHORITY_NAME "bob"
52
53 #define KEYFILE_BOB "../namestore/zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey"
54
55 /* Globals */
56
57
58 /* Task handle to use to schedule test failure */
59 GNUNET_SCHEDULER_TaskIdentifier die_task;
60
61 /* Global return value (0 for success, anything else for failure) */
62 static int ok;
63
64 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
65
66 static struct GNUNET_GNS_Handle *gns_handle;
67
68 const struct GNUNET_CONFIGURATION_Handle *cfg;
69
70
71 /**
72  * Check if the get_handle is being used, if so stop the request.  Either
73  * way, schedule the end_badly_cont function which actually shuts down the
74  * test.
75  */
76 static void
77 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   die_task = GNUNET_SCHEDULER_NO_TASK;
80   if (NULL != gns_handle)
81   {
82     GNUNET_GNS_disconnect(gns_handle);
83     gns_handle = NULL;
84   }
85
86   if (NULL != namestore_handle)
87   {
88     GNUNET_NAMESTORE_disconnect (namestore_handle);
89     namestore_handle = NULL;
90   }
91   GNUNET_break (0);
92   GNUNET_SCHEDULER_shutdown ();
93   ok = 1;
94 }
95
96 static void
97 end_badly_now ()
98 {
99   GNUNET_SCHEDULER_cancel (die_task);
100   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
101 }
102
103 static void
104 on_lookup_result(void *cls, uint32_t rd_count,
105                  const struct GNUNET_NAMESTORE_RecordData *rd)
106 {
107   int i;
108   uint16_t mx_preference;
109   char* mx;
110   
111   if (GNUNET_SCHEDULER_NO_TASK != die_task)
112   {
113       GNUNET_SCHEDULER_cancel (die_task);
114       die_task = GNUNET_SCHEDULER_NO_TASK;
115   }
116
117   GNUNET_NAMESTORE_disconnect (namestore_handle);
118   if (rd_count == 0)
119   {
120     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
121                 "Lookup failed, rp_filtering?\n");
122     ok = 2;
123   }
124   else
125   {
126     ok = 1;
127     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
128     for (i=0; i<rd_count; i++)
129     {
130       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
131       if (rd[i].record_type == GNUNET_GNS_RECORD_MX)
132       {
133         mx = (char*)rd[i].data+sizeof(uint16_t);
134         mx_preference = *(uint16_t*)rd[i].data;
135         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
136                     "Got MX %s with preference %d\n", mx, mx_preference);
137         if (0 == strcmp(mx, TEST_EXPECTED_MX))
138         {
139           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
140                       "%s correctly resolved to %s!\n", TEST_DOMAIN,
141                       TEST_EXPECTED_MX);
142           ok = 0;
143         }
144       }
145     }
146   }
147
148   GNUNET_GNS_disconnect(gns_handle);
149   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer!\n");
150   GNUNET_SCHEDULER_shutdown ();
151
152 }
153
154
155 /**
156  * Function scheduled to be run on the successful start of services
157  * tries to look up the dns record for TEST_DOMAIN
158  */
159 static void
160 commence_testing (void *cls, int32_t success, const char *emsg)
161 {
162   gns_handle = GNUNET_GNS_connect(cfg);
163   if (NULL == gns_handle)
164   {
165     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
166                 "Failed to connect to GNS!\n");
167     end_badly_now();
168     return;
169   }
170   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_MX,
171                     GNUNET_NO,
172                     NULL,
173                     &on_lookup_result, TEST_DOMAIN);
174 }
175
176
177 static void
178 do_check (void *cls,
179           const struct GNUNET_CONFIGURATION_Handle *ccfg,
180           struct GNUNET_TESTING_Peer *peer)
181 {
182   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
183   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
184   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
185   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
186   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
187   struct GNUNET_CRYPTO_RsaSignature *sig;
188   char* alice_keyfile;
189   struct GNUNET_TIME_Absolute et;
190
191   cfg = ccfg;
192   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
193
194   /* put records into namestore */
195   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
196   if (NULL == namestore_handle)
197   {
198     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
199     end_badly_now();
200     return;
201   }
202
203   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
204                                                           "ZONEKEY",
205                                                           &alice_keyfile))
206   {
207     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
208     end_badly_now();
209     return;
210   }
211
212   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
213   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
214
215   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
216   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
217
218   struct GNUNET_NAMESTORE_RecordData rd;
219   char* ip = TEST_IP;
220   struct in_addr *mail = GNUNET_malloc(sizeof(struct in_addr));
221   char *mx_record;
222   uint16_t mx_preference = 1;
223   rd.expiration_time = UINT64_MAX;
224   GNUNET_assert(1 == inet_pton (AF_INET, ip, mail));
225   
226   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
227
228   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
229   rd.data = &bob_hash;
230   rd.record_type = GNUNET_GNS_RECORD_PKEY;
231   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
232
233   GNUNET_NAMESTORE_record_create (namestore_handle,
234                                   alice_key,
235                                   TEST_AUTHORITY_NAME,
236                                   &rd,
237                                   NULL,
238                                   NULL);
239
240   rd.data_size = sizeof(struct in_addr);
241   rd.data = mail;
242   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
243   sig = GNUNET_NAMESTORE_create_signature(bob_key,
244                                           GNUNET_TIME_UNIT_FOREVER_ABS,
245                                           TEST_RECORD_NAME,
246                                           &rd, 1);
247   et.abs_value = rd.expiration_time;
248   GNUNET_NAMESTORE_record_put (namestore_handle,
249                                &bob_pkey,
250                                TEST_RECORD_NAME,
251                                et,
252                                1,
253                                &rd,
254                                sig,
255                                NULL,
256                                NULL);
257   GNUNET_free (sig);
258   
259   rd.data_size = sizeof(struct GNUNET_DNSPARSER_MxRecord)+strlen(TEST_MX_NAME)+1;
260   mx_record = GNUNET_malloc(sizeof(struct GNUNET_DNSPARSER_MxRecord)+strlen(TEST_MX_NAME)+1);
261   memcpy(mx_record, &mx_preference, sizeof(uint16_t));
262   strcpy(mx_record+sizeof(uint16_t), TEST_MX_NAME);
263   rd.data = mx_record;
264   rd.record_type = GNUNET_GNS_RECORD_MX;
265   sig = GNUNET_NAMESTORE_create_signature(bob_key,
266                                           GNUNET_TIME_UNIT_FOREVER_ABS,
267                                           "+",
268                                           &rd, 1);
269   et.abs_value = rd.expiration_time;
270   GNUNET_NAMESTORE_record_put (namestore_handle,
271                                &bob_pkey,
272                                "+",
273                                et,
274                                1,
275                                &rd,
276                                sig,
277                                &commence_testing,
278                                NULL);
279
280   GNUNET_free (alice_keyfile);
281   GNUNET_free (mx_record);
282   GNUNET_free (mail);
283   GNUNET_free (sig);
284   GNUNET_CRYPTO_rsa_key_free (bob_key);
285   GNUNET_CRYPTO_rsa_key_free (alice_key);
286 }
287
288
289 int
290 main (int argc, char *argv[])
291 {
292   ok = 1;
293
294   GNUNET_log_setup ("test-gns-simple-mx-lookup",
295 #if VERBOSE
296                     "DEBUG",
297 #else
298                     "WARNING",
299 #endif
300                     NULL);
301   GNUNET_TESTING_peer_run ("test-gns-simple-mx-lookup", "test_gns_simple_lookup.conf", &do_check, NULL);
302   return ok;
303 }
304
305 /* end of test_gns_simple_mx_lookup.c */