9f16265b217dfb987cdf3dbc05a71dcc64052a95
[oweals/gnunet.git] / src / gns / test_gns_simple_get_authority.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_shorten.c
22  * @brief basic shorten test for gns api
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 "www.alice.bob.gnunet"
46 #define TEST_IP "127.0.0.1"
47 #define TEST_RECORD_NAME "www"
48
49 #define TEST_AUTHORITY_BOB "bob"
50 #define TEST_AUTHORITY_ALICE "alice"
51 #define TEST_ALICE_PSEU "carol"
52 #define TEST_EXPECTED_RESULT "alice.bob.gnunet"
53
54 #define KEYFILE_BOB "../namestore/zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey"
55 #define KEYFILE_ALICE "../namestore/zonefiles/N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.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 /**
73  * Check if the get_handle is being used, if so stop the request.  Either
74  * way, schedule the end_badly_cont function which actually shuts down the
75  * test.
76  */
77 static void
78 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
79 {
80   die_task = GNUNET_SCHEDULER_NO_TASK;
81   if (NULL != gns_handle)
82   {
83     GNUNET_GNS_disconnect(gns_handle);
84     gns_handle = NULL;
85   }
86
87   if (NULL != namestore_handle)
88   {
89     GNUNET_NAMESTORE_disconnect (namestore_handle);
90     namestore_handle = NULL;
91   }
92   GNUNET_break (0);
93   GNUNET_SCHEDULER_shutdown ();
94   ok = 1;
95 }
96
97 void end_badly_now ()
98 {
99   GNUNET_SCHEDULER_cancel (die_task);
100   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
101 }
102
103
104 /**
105  * Called when gns_get_authority finishes
106  */
107 static void
108 process_auth_result(void* cls, const char* aname)
109 {
110
111   GNUNET_GNS_disconnect(gns_handle);
112
113   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
114               "Disconnecting from namestore\n");
115   GNUNET_NAMESTORE_disconnect (namestore_handle);
116
117   if (GNUNET_SCHEDULER_NO_TASK != die_task)
118   {
119       GNUNET_SCHEDULER_cancel (die_task);
120       die_task = GNUNET_SCHEDULER_NO_TASK;
121   }
122
123   if (aname == NULL)
124   {
125     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
126                 "get_authority test failed!\n");
127     ok = 1;
128   }
129   else
130   {
131     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
132                 "%s authority is %s\n", (char*)cls, aname);
133     if (0 != strcmp(aname, TEST_EXPECTED_RESULT))
134     {
135       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
136                   "get_authority test failed! (wanted: %s got: %s\n",
137                   TEST_EXPECTED_RESULT, aname);
138       ok = 1;
139     }
140     else
141     {
142       ok = 0;
143     }
144
145     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "get_authority test finished!\n");
146
147   }
148
149   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
150   GNUNET_SCHEDULER_shutdown ();
151 }
152
153
154 /**
155  * Function scheduled to be run on the successful start of services
156  * tries to shorten the name TEST_DOMAIN using gns
157  */
158 static void
159 commence_testing (void *cls, int32_t success, const char *emsg)
160 {
161
162   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
163               "Connecting to gns\n");
164   gns_handle = GNUNET_GNS_connect(cfg);
165   if (NULL == gns_handle)
166   {
167     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
168                 "Failed to connect to gns\n");
169     end_badly_now();
170     return;
171   }
172
173   GNUNET_GNS_get_authority(gns_handle, TEST_DOMAIN, &process_auth_result,
174                      TEST_DOMAIN);
175 }
176
177
178
179 void do_check (void *cls,
180               const struct GNUNET_CONFIGURATION_Handle *ccfg,
181               struct GNUNET_TESTING_Peer *peer)
182 {
183   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded our_pkey;
184   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
185   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
186   struct GNUNET_CRYPTO_RsaPrivateKey *our_key;
187   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
188   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
189   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
190   struct GNUNET_CRYPTO_ShortHashCode alice_hash;
191   struct GNUNET_CRYPTO_RsaSignature *sig;
192   char* our_keyfile;
193
194   cfg = ccfg;
195   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
196   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Running test\n");
197
198   /* put records into namestore */
199   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
200   if (NULL == namestore_handle)
201   {
202     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
203     end_badly_now();
204     return;
205   }
206
207   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
208                                                           "ZONEKEY",
209                                                           &our_keyfile))
210   {
211     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
212     end_badly_now();
213     return;
214   }
215
216   our_key = GNUNET_CRYPTO_rsa_key_create_from_file (our_keyfile);
217   GNUNET_free(our_keyfile);
218
219   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
220   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_ALICE);
221
222   GNUNET_CRYPTO_rsa_key_get_public (our_key, &our_pkey);
223   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
224   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
225
226   struct GNUNET_NAMESTORE_RecordData rd;
227   char* ip = TEST_IP;
228   struct in_addr *web = GNUNET_malloc (sizeof(struct in_addr));
229   rd.expiration_time = UINT64_MAX;
230   GNUNET_assert (1 == inet_pton (AF_INET, ip, web));
231
232   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
233
234   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
235   rd.data = &bob_hash;
236   rd.record_type = GNUNET_GNS_RECORD_PKEY;
237   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
238
239   /* put bob into our zone */
240   GNUNET_NAMESTORE_record_create (namestore_handle,
241                                   our_key,
242                                   TEST_AUTHORITY_BOB,
243                                   &rd,
244                                   NULL,
245                                   NULL);
246
247   /* put alice into bobs zone */
248   GNUNET_CRYPTO_short_hash(&alice_pkey, sizeof(alice_pkey), &alice_hash);
249   rd.data = &alice_hash;
250   sig = GNUNET_NAMESTORE_create_signature(bob_key, GNUNET_TIME_UNIT_FOREVER_ABS, TEST_AUTHORITY_ALICE,
251                                           &rd, 1);
252
253   GNUNET_NAMESTORE_record_put (namestore_handle,
254                                &bob_pkey,
255                                TEST_AUTHORITY_ALICE,
256                                GNUNET_TIME_UNIT_FOREVER_ABS,
257                                1,
258                                &rd,
259                                sig,
260                                NULL,
261                                NULL);
262
263   GNUNET_free (sig);
264
265   /* put www A record and PSEU into alice's zone */
266
267   rd.data_size = sizeof(struct in_addr);
268   rd.data = web;
269   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
270   sig = GNUNET_NAMESTORE_create_signature(alice_key,GNUNET_TIME_UNIT_FOREVER_ABS,  TEST_RECORD_NAME,
271                                           &rd, 1);
272
273   GNUNET_NAMESTORE_record_put (namestore_handle,
274                                &alice_pkey,
275                                TEST_RECORD_NAME,
276                                GNUNET_TIME_UNIT_FOREVER_ABS,
277                                1,
278                                &rd,
279                                sig,
280                                NULL,
281                                NULL);
282
283   rd.data_size = strlen(TEST_ALICE_PSEU);
284   rd.data = TEST_ALICE_PSEU;
285   rd.record_type = GNUNET_GNS_RECORD_PSEU;
286   GNUNET_free(sig);
287
288   sig = GNUNET_NAMESTORE_create_signature(alice_key,GNUNET_TIME_UNIT_FOREVER_ABS,  "",
289                                           &rd, 1);
290
291   GNUNET_NAMESTORE_record_put (namestore_handle,
292                                &alice_pkey,
293                                "",
294                                GNUNET_TIME_UNIT_FOREVER_ABS,
295                                1,
296                                &rd,
297                                sig,
298                                &commence_testing,
299                                NULL);
300
301   GNUNET_free (web);
302   GNUNET_free (sig);
303   GNUNET_CRYPTO_rsa_key_free (alice_key);
304   GNUNET_CRYPTO_rsa_key_free (bob_key);
305   GNUNET_CRYPTO_rsa_key_free (our_key);
306 }
307
308 int
309 main (int argc, char *argv[])
310 {
311   ok = 1;
312
313   GNUNET_log_setup ("test-gns-simple-get-authority",
314 #if VERBOSE
315                     "DEBUG",
316 #else
317                     "WARNING",
318 #endif
319                     NULL);
320
321   GNUNET_TESTING_peer_run ("test-gns-simple-get-authority", "test_gns_simple_lookup.conf", &do_check, NULL);
322
323   return ok;
324 }
325
326 /* end of test-gns-simple-get-authority.c */
327