-disable for now
[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.gads"
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   die_task = GNUNET_SCHEDULER_NO_TASK;
90   if (NULL != gns_handle)
91   {
92     GNUNET_GNS_disconnect(gns_handle);
93     gns_handle = NULL;
94   }
95
96   if (NULL != namestore_handle)
97   {
98     GNUNET_NAMESTORE_disconnect (namestore_handle);
99     namestore_handle = NULL;
100   }
101   GNUNET_break (0);
102   GNUNET_SCHEDULER_shutdown ();
103   ok = 1;
104 }
105
106 void end_badly_now ()
107 {
108   GNUNET_SCHEDULER_cancel (die_task);
109   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
110 }
111
112
113 static void
114 on_lookup_result(void *cls, uint32_t rd_count,
115                  const struct GNUNET_NAMESTORE_RecordData *rd)
116 {
117   struct in_addr a;
118   int i;
119   char* addr;
120   
121   if (GNUNET_SCHEDULER_NO_TASK != die_task)
122   {
123       GNUNET_SCHEDULER_cancel (die_task);
124       die_task = GNUNET_SCHEDULER_NO_TASK;
125   }
126
127   GNUNET_NAMESTORE_disconnect (namestore_handle);
128   if (rd_count == 0)
129   {
130     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
131                 "Lookup failed, rp_filtering?\n");
132     ok = 2;
133   }
134   else
135   {
136     ok = 1;
137     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
138     for (i=0; i<rd_count; i++)
139     {
140       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
141       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
142       {
143         memcpy(&a, rd[i].data, sizeof(a));
144         addr = inet_ntoa(a);
145         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
146         if (0 == strcmp(addr, TEST_IP))
147         {
148           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
149                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
150           ok = 0;
151         }
152       }
153       else
154       {
155         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
156       }
157     }
158   }
159
160   GNUNET_GNS_disconnect(gns_handle);
161   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer!\n");
162   GNUNET_SCHEDULER_shutdown ();
163 }
164
165
166 /**
167  * Function scheduled to be run on the successful start of services
168  * tries to look up the dns record for TEST_DOMAIN
169  */
170 static void
171 commence_testing (void *cls, int32_t success, const char *emsg)
172 {
173
174   gns_handle = GNUNET_GNS_connect(cfg);
175
176   if (NULL == gns_handle)
177   {
178     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
179                 "Failed to connect to GNS!\n");
180     end_badly_now();
181     return;
182   }
183
184   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_A,
185                     GNUNET_NO,
186                     NULL,
187                     &on_lookup_result, TEST_DOMAIN);
188 }
189
190
191
192 void do_check (void *cls,
193               const struct GNUNET_CONFIGURATION_Handle *ccfg,
194               struct GNUNET_TESTING_Peer *peer)
195 {
196   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
197   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
198   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
199   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
200   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
201   struct GNUNET_CRYPTO_RsaSignature *sig;
202   char* alice_keyfile;
203   struct GNUNET_TIME_Absolute et;
204
205   cfg = ccfg;
206   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
207
208   /* put records into namestore */
209   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
210   if (NULL == namestore_handle)
211   {
212     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
213     end_badly_now () ;
214     return;
215   }
216
217   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
218                                                           "ZONEKEY",
219                                                           &alice_keyfile))
220   {
221     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
222     end_badly_now () ;
223     return;
224   }
225
226   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
227   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
228
229   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
230   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
231
232   struct GNUNET_NAMESTORE_RecordData rd;
233   char* ip = TEST_IP;
234   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
235   rd.expiration_time = UINT64_MAX;
236   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
237   
238   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
239
240   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
241   rd.data = &bob_hash;
242   rd.record_type = GNUNET_GNS_RECORD_PKEY;
243   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
244
245   GNUNET_NAMESTORE_record_create (namestore_handle,
246                                   alice_key,
247                                   TEST_AUTHORITY_NAME,
248                                   &rd,
249                                   NULL,
250                                   NULL);
251
252   rd.data_size = sizeof(struct in_addr);
253   rd.data = web;
254   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
255   sig = GNUNET_NAMESTORE_create_signature(bob_key,
256                                           GNUNET_TIME_UNIT_FOREVER_ABS,
257                                           TEST_RECORD_NAME,
258                                           &rd, 1);
259   et.abs_value = rd.expiration_time;
260   GNUNET_NAMESTORE_record_put (namestore_handle,
261                                &bob_pkey,
262                                TEST_RECORD_NAME,
263                                et,
264                                1,
265                                &rd,
266                                sig,
267                                &commence_testing,
268                                NULL);
269
270   GNUNET_free (web);
271   GNUNET_free (sig);
272   GNUNET_free (alice_keyfile);
273   GNUNET_CRYPTO_rsa_key_free(bob_key);
274   GNUNET_CRYPTO_rsa_key_free(alice_key);
275 }
276
277
278 int
279 main (int argc, char *argv[])
280 {
281   ok = 1;
282
283   GNUNET_log_setup ("test-gns-simple-delegated-lookup",
284 #if VERBOSE
285                     "DEBUG",
286 #else
287                     "WARNING",
288 #endif
289                     NULL);
290
291   GNUNET_TESTING_peer_run ("test-gns-simple-delegated-lookup", "test_gns_simple_lookup.conf", &do_check, NULL);
292
293   return ok;
294 }
295
296 /* end of test_gns_twopeer.c */