- next test
[oweals/gnunet.git] / src / gns / test_gns_simple_delegated_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_twopeer.c
22  * @brief base testcase for testing DHT service with
23  *        two running peers.
24  *
25  * This testcase starts peers using the GNUNET_TESTING_daemons_start
26  * function call.  On peer start, connects to the peers DHT service
27  * by calling GNUNET_DHT_connected.  Once notified about all peers
28  * being started (by the peers_started_callback function), calls
29  * GNUNET_TESTING_connect_topology, which connects the peers in a
30  * "straight line" topology.  On notification that all peers have
31  * been properly connected, calls the do_get function which initiates
32  * a GNUNET_DHT_get from the *second* peer. Once the GNUNET_DHT_get
33  * function starts, runs the do_put function to insert data at the first peer.
34  *   If the GET is successful, schedules finish_testing
35  * to stop the test and shut down peers.  If GET is unsuccessful
36  * after GET_TIMEOUT seconds, prints an error message and shuts down
37  * the peers.
38  */
39 #include "platform.h"
40 #include "gnunet_testing_lib-new.h"
41 #include "gnunet_core_service.h"
42 #include "block_dns.h"
43 #include "gnunet_signatures.h"
44 #include "gnunet_namestore_service.h"
45 #include "../namestore/namestore.h"
46 #include "gnunet_dnsparser_lib.h"
47 #include "gnunet_gns_service.h"
48
49 /* DEFINES */
50 #define VERBOSE GNUNET_YES
51
52 /* Timeout for entire testcase */
53 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 20)
54
55 /* If number of peers not in config file, use this number */
56 #define DEFAULT_NUM_PEERS 2
57
58 /* test records to resolve */
59 #define TEST_DOMAIN "www.bob.gnunet"
60 #define TEST_IP "127.0.0.1"
61 #define TEST_RECORD_NAME "www"
62
63 #define TEST_AUTHORITY_NAME "bob"
64
65 #define KEYFILE_BOB "../namestore/zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey"
66
67 /* Globals */
68
69 /* Task handle to use to schedule test failure */
70 GNUNET_SCHEDULER_TaskIdentifier die_task;
71
72 /* Global return value (0 for success, anything else for failure) */
73 static int ok;
74
75 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
76
77 static struct GNUNET_GNS_Handle *gns_handle;
78
79 const struct GNUNET_CONFIGURATION_Handle *cfg;
80
81 /**
82  * Check if the get_handle is being used, if so stop the request.  Either
83  * way, schedule the end_badly_cont function which actually shuts down the
84  * test.
85  */
86 static void
87 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
88 {
89   if (NULL != gns_handle)
90   {
91     GNUNET_GNS_disconnect(gns_handle);
92     gns_handle = NULL;
93   }
94
95   if (NULL != namestore_handle)
96   {
97     GNUNET_NAMESTORE_disconnect (namestore_handle);
98     namestore_handle = NULL;
99   }
100   GNUNET_break (0);
101   GNUNET_SCHEDULER_shutdown ();
102   ok = 1;
103 }
104
105 void end_badly_now ()
106 {
107   GNUNET_SCHEDULER_cancel (die_task);
108   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
109 }
110
111
112 static void
113 on_lookup_result(void *cls, uint32_t rd_count,
114                  const struct GNUNET_NAMESTORE_RecordData *rd)
115 {
116   struct in_addr a;
117   int i;
118   char* addr;
119   
120   if (GNUNET_SCHEDULER_NO_TASK != die_task)
121   {
122       GNUNET_SCHEDULER_cancel (die_task);
123       die_task = GNUNET_SCHEDULER_NO_TASK;
124   }
125
126   GNUNET_NAMESTORE_disconnect (namestore_handle);
127   if (rd_count == 0)
128   {
129     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
130                 "Lookup failed, rp_filtering?\n");
131     ok = 2;
132   }
133   else
134   {
135     ok = 1;
136     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
137     for (i=0; i<rd_count; i++)
138     {
139       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
140       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
141       {
142         memcpy(&a, rd[i].data, sizeof(a));
143         addr = inet_ntoa(a);
144         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
145         if (0 == strcmp(addr, TEST_IP))
146         {
147           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
148                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
149           ok = 0;
150         }
151       }
152       else
153       {
154         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
155       }
156     }
157   }
158
159   GNUNET_GNS_disconnect(gns_handle);
160   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer!\n");
161   GNUNET_SCHEDULER_shutdown ();
162 }
163
164
165 /**
166  * Function scheduled to be run on the successful start of services
167  * tries to look up the dns record for TEST_DOMAIN
168  */
169 static void
170 commence_testing (void *cls, int32_t success, const char *emsg)
171 {
172
173   gns_handle = GNUNET_GNS_connect(cfg);
174
175   if (NULL == gns_handle)
176   {
177     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
178                 "Failed to connect to GNS!\n");
179     end_badly_now();
180     return;
181   }
182
183   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_A,
184                     GNUNET_NO,
185                     NULL,
186                     &on_lookup_result, TEST_DOMAIN);
187 }
188
189
190
191 void do_check (void *cls,
192               const struct GNUNET_CONFIGURATION_Handle *ccfg,
193               struct GNUNET_TESTING_Peer *peer)
194 {
195   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
196   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
197   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
198   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
199   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
200   struct GNUNET_CRYPTO_RsaSignature *sig;
201   char* alice_keyfile;
202   struct GNUNET_TIME_Absolute et;
203
204   cfg = ccfg;
205   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
206
207   /* put records into namestore */
208   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
209   if (NULL == namestore_handle)
210   {
211     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
212     end_badly_now () ;
213     return;
214   }
215
216   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
217                                                           "ZONEKEY",
218                                                           &alice_keyfile))
219   {
220     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
221     end_badly_now () ;
222     return;
223   }
224
225   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
226   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
227
228   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
229   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
230
231   struct GNUNET_NAMESTORE_RecordData rd;
232   char* ip = TEST_IP;
233   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
234   rd.expiration_time = UINT64_MAX;
235   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
236   
237   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
238
239   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
240   rd.data = &bob_hash;
241   rd.record_type = GNUNET_GNS_RECORD_PKEY;
242   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
243
244   GNUNET_NAMESTORE_record_create (namestore_handle,
245                                   alice_key,
246                                   TEST_AUTHORITY_NAME,
247                                   &rd,
248                                   NULL,
249                                   NULL);
250
251   rd.data_size = sizeof(struct in_addr);
252   rd.data = web;
253   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
254   sig = GNUNET_NAMESTORE_create_signature(bob_key,
255                                           GNUNET_TIME_UNIT_FOREVER_ABS,
256                                           TEST_RECORD_NAME,
257                                           &rd, 1);
258   et.abs_value = rd.expiration_time;
259   GNUNET_NAMESTORE_record_put (namestore_handle,
260                                &bob_pkey,
261                                TEST_RECORD_NAME,
262                                et,
263                                1,
264                                &rd,
265                                sig,
266                                &commence_testing,
267                                NULL);
268
269   GNUNET_free (web);
270   GNUNET_free (sig);
271   GNUNET_free (alice_keyfile);
272   GNUNET_CRYPTO_rsa_key_free(bob_key);
273   GNUNET_CRYPTO_rsa_key_free(alice_key);
274 }
275
276
277 int
278 main (int argc, char *argv[])
279 {
280   ok = 1;
281
282   GNUNET_log_setup ("test-gns-simple-delegated-lookup",
283 #if VERBOSE
284                     "DEBUG",
285 #else
286                     "WARNING",
287 #endif
288                     NULL);
289
290   GNUNET_TESTING_peer_run ("test-gns-simple-delegated-lookup", "test_gns_simple_lookup.conf", &do_check, NULL);
291
292   return ok;
293 }
294
295 /* end of test_gns_twopeer.c */