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