Merge remote-tracking branch 'origin/master' into credentials
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup_shadow.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file namestore/test_namestore_api_lookup_shadow_filter.c
22  * @brief testcase for namestore_api.c: store a shadow record and perform a lookup
23  * test passes if test returns the record but without the shadow flag since no
24  * other valid record is available
25  */
26 #include "platform.h"
27 #include "gnunet_namecache_service.h"
28 #include "gnunet_namestore_service.h"
29 #include "gnunet_testing_lib.h"
30
31 #define TEST_RECORD_TYPE 1234
32
33 #define TEST_RECORD_DATALEN 123
34
35 #define TEST_RECORD_DATA 'a'
36
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
38
39
40 static struct GNUNET_NAMESTORE_Handle *nsh;
41
42 static struct GNUNET_NAMECACHE_Handle *nch;
43
44 static struct GNUNET_SCHEDULER_Task * endbadly_task;
45
46 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
47
48 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
49
50 static int res;
51
52 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
53
54 static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
55
56 static char *directory;
57
58 static void
59 cleanup ()
60 {
61   if (NULL != nsh)
62   {
63     GNUNET_NAMESTORE_disconnect (nsh);
64     nsh = NULL;
65   }
66   if (NULL != nch)
67   {
68     GNUNET_NAMECACHE_disconnect (nch);
69     nch = NULL;
70   }
71   if (NULL != privkey)
72   {
73     GNUNET_free (privkey);
74     privkey = NULL;
75   }
76   GNUNET_SCHEDULER_shutdown ();
77 }
78
79
80 /**
81  * Re-establish the connection to the service.
82  *
83  * @param cls handle to use to re-connect.
84  */
85 static void
86 endbadly (void *cls)
87 {
88   if (NULL != nsqe)
89   {
90     GNUNET_NAMESTORE_cancel (nsqe);
91     nsqe = NULL;
92   }
93   if (NULL != ncqe)
94   {
95     GNUNET_NAMECACHE_cancel (ncqe);
96     ncqe = NULL;
97   }
98   cleanup ();
99   res = 1;
100 }
101
102
103 static void
104 end (void *cls)
105 {
106   cleanup ();
107   res = 0;
108 }
109
110
111 static void
112 rd_decrypt_cb (void *cls,
113                unsigned int rd_count,
114                const struct GNUNET_GNSRECORD_Data *rd)
115 {
116   char rd_cmp_data[TEST_RECORD_DATALEN];
117
118   if (1 != rd_count)
119   {
120     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
121     GNUNET_break (0);
122     return;
123   }
124   if (NULL == rd)
125   {
126     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
127     GNUNET_break (0);
128     return;
129   }
130   memset (rd_cmp_data, 'a', TEST_RECORD_DATALEN);
131
132   if (TEST_RECORD_TYPE != rd[0].record_type)
133   {
134     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
135     GNUNET_break (0);
136     return;
137   }
138   if (TEST_RECORD_DATALEN != rd[0].data_size)
139   {
140     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
141     GNUNET_break (0);
142     return;
143   }
144   if (0 != memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN))
145   {
146     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
147     GNUNET_break (0);
148     return;
149   }
150   if (0 != (GNUNET_GNSRECORD_RF_SHADOW_RECORD & rd[0].flags))
151   {
152     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
153     GNUNET_break (0);
154     return;
155   }
156
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
158               "Block was decrypted successfully \n");
159
160         GNUNET_SCHEDULER_add_now (&end, NULL);
161 }
162
163
164 static void
165 name_lookup_proc (void *cls,
166                   const struct GNUNET_GNSRECORD_Block *block)
167 {
168   const char *name = cls;
169
170   ncqe = NULL;
171   GNUNET_assert (NULL != cls);
172
173   if (endbadly_task != NULL)
174   {
175     GNUNET_SCHEDULER_cancel (endbadly_task);
176     endbadly_task = NULL;
177   }
178
179   if (NULL == block)
180   {
181     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
182               _("Namestore returned no block\n"));
183     if (endbadly_task != NULL)
184       GNUNET_SCHEDULER_cancel (endbadly_task);
185     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
186     return;
187   }
188
189   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
190               "Namestore returned block, decrypting \n");
191   GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt(block,
192                 &pubkey, name, &rd_decrypt_cb, (void *) name));
193 }
194
195
196 static void
197 put_cont (void *cls, int32_t success, const char *emsg)
198 {
199   const char *name = cls;
200   struct GNUNET_HashCode derived_hash;
201   struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
202
203   nsqe = NULL;
204   GNUNET_assert (NULL != cls);
205   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
206               "Name store added record for `%s': %s\n",
207               name,
208               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
209
210   /* Create derived hash */
211   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
212   GNUNET_GNSRECORD_query_from_public_key (&pubkey, name, &derived_hash);
213
214   ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
215                                         &name_lookup_proc, (void *) name);
216 }
217
218
219 static void
220 run (void *cls,
221      const struct GNUNET_CONFIGURATION_Handle *cfg,
222      struct GNUNET_TESTING_Peer *peer)
223 {
224   struct GNUNET_GNSRECORD_Data rd;
225   char *hostkey_file;
226   const char * name = "dummy.dummy.gnunet";
227
228   directory = NULL;
229   GNUNET_assert (GNUNET_OK ==
230                  GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory));
231   GNUNET_DISK_directory_remove (directory);
232
233   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
234                                                 &endbadly, NULL);
235   GNUNET_asprintf (&hostkey_file,
236                    "zonefiles%s%s",
237                    DIR_SEPARATOR_STR,
238                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
239   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
240   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
241   GNUNET_free (hostkey_file);
242   GNUNET_assert (privkey != NULL);
243   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
244
245   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
246   rd.record_type = TEST_RECORD_TYPE;
247   rd.data_size = TEST_RECORD_DATALEN;
248   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
249   rd.flags = GNUNET_GNSRECORD_RF_SHADOW_RECORD;
250   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
251
252   nsh = GNUNET_NAMESTORE_connect (cfg);
253   nch = GNUNET_NAMECACHE_connect (cfg);
254   GNUNET_break (NULL != nsh);
255   GNUNET_break (NULL != nch);
256   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
257                                       1, &rd, &put_cont, (void *) name);
258   if (NULL == nsqe)
259   {
260     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
261               _("Namestore cannot store no block\n"));
262   }
263   GNUNET_free ((void *)rd.data);
264 }
265
266
267 int
268 main (int argc, char *argv[])
269 {
270   res = 1;
271   if (0 !=
272       GNUNET_TESTING_peer_run ("test-namestore-api",
273                                "test_namestore_api.conf",
274                                &run,
275                                NULL))
276   {
277     res = 1;
278   }
279   if (NULL != directory)
280   {
281       GNUNET_DISK_directory_remove (directory);
282       GNUNET_free (directory);
283   }
284   return res;
285 }
286
287
288 /* end of test_namestore_api_lookup_shadow_filter.c */