-next test
[oweals/gnunet.git] / src / gns / test_gns_simple_srv_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_srv_lookup.c
22  * @brief base testcase for testing GNS SRV 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 "gns_protocol.h"
34 #include "gnunet_gns_service.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_DOMAIN "_sip._tcp.bob.gnunet"
47 #define TEST_IP "127.0.0.1"
48 #define TEST_RECORD_NAME "sipserver"
49 #define TEST_RECORD_NAME_SRV "_sip._tcp"
50 #define TEST_SRV_NAME "sipserver.+"
51 #define TEST_EXPECTED_SRV "sipserver.bob.gnunet"
52
53 #define TEST_AUTHORITY_NAME "bob"
54
55 #define KEYFILE_BOB "../namestore/zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey"
56
57 /* Globals */
58
59 /* Task handle to use to schedule test failure */
60 GNUNET_SCHEDULER_TaskIdentifier die_task;
61
62 /* Global return value (0 for success, anything else for failure) */
63 static int ok;
64
65 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
66
67 static struct GNUNET_GNS_Handle *gns_handle;
68
69 const struct GNUNET_CONFIGURATION_Handle *cfg;
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   if (NULL != gns_handle)
80   {
81     GNUNET_GNS_disconnect(gns_handle);
82     gns_handle = NULL;
83   }
84
85   if (NULL != namestore_handle)
86   {
87     GNUNET_NAMESTORE_disconnect (namestore_handle);
88     namestore_handle = NULL;
89   }
90   GNUNET_break (0);
91   GNUNET_SCHEDULER_shutdown ();
92   ok = 1;
93 }
94
95 static void
96 end_badly_now ()
97 {
98   GNUNET_SCHEDULER_cancel (die_task);
99   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
100 }
101
102 static void
103 on_lookup_result(void *cls, uint32_t rd_count,
104                  const struct GNUNET_NAMESTORE_RecordData *rd)
105 {
106   int i;
107   uint16_t *srv_data;
108   char* srv;
109   
110   if (GNUNET_SCHEDULER_NO_TASK != die_task)
111   {
112       GNUNET_SCHEDULER_cancel (die_task);
113       die_task = GNUNET_SCHEDULER_NO_TASK;
114   }
115
116   GNUNET_NAMESTORE_disconnect (namestore_handle);
117   if (rd_count == 0)
118   {
119     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
120                 "Lookup failed, rp_filtering?\n");
121     ok = 2;
122   }
123   else
124   {
125     ok = 1;
126     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
127     for (i=0; i<rd_count; i++)
128     {
129       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
130       if (rd[i].record_type == GNUNET_GNS_RECORD_SRV)
131       {
132         srv_data = (uint16_t*)rd[i].data;
133         srv = (char*)&srv_data[3];
134         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
135                     "Got SRV %s with p=%d,w=%d,port=%d\n",
136                     srv, srv_data, &srv_data[1], &srv_data[2]);
137         if (0 == strcmp(srv, TEST_EXPECTED_SRV))
138         {
139           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
140                       "%s correctly resolved to %s!\n", TEST_DOMAIN,
141                       TEST_EXPECTED_SRV);
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  * Function scheduled to be run on the successful start of services
156  * tries to look up the dns record for TEST_DOMAIN
157  */
158 static void
159 commence_testing (void *cls, int32_t success, const char *emsg)
160 {
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
171   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_SRV,
172                     GNUNET_NO,
173                     NULL,
174                     &on_lookup_result, TEST_DOMAIN);
175 }
176
177
178 static void
179 do_check (void *cls,
180           const struct GNUNET_CONFIGURATION_Handle *ccfg,
181           struct GNUNET_TESTING_Peer *peer)
182 {
183   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
184   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
185   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
186   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
187   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
188   struct GNUNET_CRYPTO_RsaSignature *sig;
189   char* alice_keyfile;
190   struct srv_data *srv_data;
191   struct GNUNET_TIME_Absolute et;
192
193   cfg = ccfg;
194   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
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     end_badly_now();
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     end_badly_now();
211     return;
212   }
213
214   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
215   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
216
217   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
218   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
219
220   struct GNUNET_NAMESTORE_RecordData rd;
221   char* ip = TEST_IP;
222   struct in_addr *sipserver = GNUNET_malloc (sizeof (struct in_addr));
223   srv_data = GNUNET_malloc (sizeof (struct srv_data) + strlen (TEST_SRV_NAME) + 1);
224   uint16_t srv_weight = 60;
225   uint16_t srv_prio = 50;
226   uint16_t srv_port = 5060;
227
228   rd.expiration_time = UINT64_MAX;
229   GNUNET_assert(1 == inet_pton (AF_INET, ip, sipserver));
230   
231   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
232
233   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
234   rd.data = &bob_hash;
235   rd.record_type = GNUNET_GNS_RECORD_PKEY;
236   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
237
238   GNUNET_NAMESTORE_record_create (namestore_handle,
239                                   alice_key,
240                                   TEST_AUTHORITY_NAME,
241                                   &rd,
242                                   NULL,
243                                   NULL);
244
245   rd.data_size = sizeof (struct in_addr);
246   rd.data = sipserver;
247   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
248   sig = GNUNET_NAMESTORE_create_signature(bob_key,
249                                           GNUNET_TIME_UNIT_FOREVER_ABS,
250                                           TEST_RECORD_NAME,
251                                           &rd, 1);
252   et.abs_value = rd.expiration_time;
253   GNUNET_NAMESTORE_record_put (namestore_handle,
254                                &bob_pkey,
255                                TEST_RECORD_NAME,
256                                et,
257                                1,
258                                &rd,
259                                sig,
260                                NULL,
261                                NULL);
262   
263   rd.data_size = sizeof (struct srv_data)+strlen(TEST_SRV_NAME)+1;
264   srv_data->port = srv_port;
265   srv_data->prio = srv_prio;
266   srv_data->weight = srv_weight;
267   strcpy((char*)&srv_data[1], TEST_SRV_NAME);
268   rd.data = srv_data;
269   rd.record_type = GNUNET_GNS_RECORD_SRV;
270   sig = GNUNET_NAMESTORE_create_signature(bob_key,
271                                           GNUNET_TIME_UNIT_FOREVER_ABS,
272                                           TEST_RECORD_NAME_SRV,
273                                           &rd, 1);
274   et.abs_value = rd.expiration_time;
275   GNUNET_NAMESTORE_record_put (namestore_handle,
276                                &bob_pkey,
277                                TEST_RECORD_NAME_SRV,
278                                et,
279                                1,
280                                &rd,
281                                sig,
282                                &commence_testing,
283                                NULL);
284   GNUNET_free(srv_data);
285   GNUNET_free(sipserver);
286   GNUNET_free(sig);
287   GNUNET_CRYPTO_rsa_key_free(bob_key);
288   GNUNET_CRYPTO_rsa_key_free(alice_key);
289 }
290
291
292
293 int
294 main (int argc, char *argv[])
295 {
296   ok = 1;
297
298   GNUNET_log_setup ("test-gns-simple-srv-lookup",
299 #if VERBOSE
300                     "DEBUG",
301 #else
302                     "WARNING",
303 #endif
304                     NULL);
305   GNUNET_TESTING_peer_run ("test-gns-simple-srv-lookup", "test_gns_simple_lookup.conf", &do_check, NULL);
306   return ok;
307 }
308
309 /* end of test_gns_simple_srv_lookup.c */