-docu, style fixes
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup_shadow.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012 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 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  * @param tc scheduler context
85  */
86 static void
87 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
88 {
89   if (NULL != nsqe)
90   {
91     GNUNET_NAMESTORE_cancel (nsqe);
92     nsqe = NULL;
93   }
94   if (NULL != ncqe)
95   {
96     GNUNET_NAMECACHE_cancel (ncqe);
97     ncqe = NULL;
98   }
99   cleanup ();
100   res = 1;
101 }
102
103
104 static void
105 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
106 {
107   cleanup ();
108   res = 0;
109 }
110
111
112 static void
113 rd_decrypt_cb (void *cls,
114                unsigned int rd_count,
115                const struct GNUNET_GNSRECORD_Data *rd)
116 {
117   char rd_cmp_data[TEST_RECORD_DATALEN];
118
119   if (1 != rd_count)
120   {
121     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
122     GNUNET_break (0);
123     return;
124   }
125   if (NULL == rd)
126   {
127     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
128     GNUNET_break (0);
129     return;
130   }
131   memset (rd_cmp_data, 'a', TEST_RECORD_DATALEN);
132
133   if (TEST_RECORD_TYPE != rd[0].record_type)
134   {
135     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
136     GNUNET_break (0);
137     return;
138   }
139   if (TEST_RECORD_DATALEN != rd[0].data_size)
140   {
141     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
142     GNUNET_break (0);
143     return;
144   }
145   if (0 != memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN))
146   {
147     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
148     GNUNET_break (0);
149     return;
150   }
151   if (0 != (GNUNET_GNSRECORD_RF_SHADOW_RECORD & rd[0].flags))
152   {
153     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
154     GNUNET_break (0);
155     return;
156   }
157
158   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
159               "Block was decrypted successfully \n");
160
161         GNUNET_SCHEDULER_add_now (&end, NULL);
162 }
163
164
165 static void
166 name_lookup_proc (void *cls,
167                   const struct GNUNET_GNSRECORD_Block *block)
168 {
169   const char *name = cls;
170
171   ncqe = NULL;
172   GNUNET_assert (NULL != cls);
173
174   if (endbadly_task != NULL)
175   {
176     GNUNET_SCHEDULER_cancel (endbadly_task);
177     endbadly_task = NULL;
178   }
179
180   if (NULL == block)
181   {
182     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
183               _("Namestore returned no block\n"));
184     if (endbadly_task != NULL)
185       GNUNET_SCHEDULER_cancel (endbadly_task);
186     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
187     return;
188   }
189
190   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
191               "Namestore returned block, decrypting \n");
192   GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt(block,
193                 &pubkey, name, &rd_decrypt_cb, (void *) name));
194 }
195
196
197 static void
198 put_cont (void *cls, int32_t success, const char *emsg)
199 {
200   const char *name = cls;
201   struct GNUNET_HashCode derived_hash;
202   struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
203
204   nsqe = NULL;
205   GNUNET_assert (NULL != cls);
206   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
207               "Name store added record for `%s': %s\n",
208               name,
209               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
210
211   /* Create derived hash */
212   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
213   GNUNET_GNSRECORD_query_from_public_key (&pubkey, name, &derived_hash);
214
215   ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
216                                         &name_lookup_proc, (void *) name);
217 }
218
219
220 static void
221 run (void *cls,
222      const struct GNUNET_CONFIGURATION_Handle *cfg,
223      struct GNUNET_TESTING_Peer *peer)
224 {
225   struct GNUNET_GNSRECORD_Data rd;
226   char *hostkey_file;
227   const char * name = "dummy.dummy.gnunet";
228
229   directory = NULL;
230   GNUNET_assert (GNUNET_OK ==
231                  GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory));
232   GNUNET_DISK_directory_remove (directory);
233
234   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
235                                                 &endbadly, NULL);
236   GNUNET_asprintf (&hostkey_file,
237                    "zonefiles%s%s",
238                    DIR_SEPARATOR_STR,
239                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
240   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
241   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
242   GNUNET_free (hostkey_file);
243   GNUNET_assert (privkey != NULL);
244   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
245
246   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
247   rd.record_type = TEST_RECORD_TYPE;
248   rd.data_size = TEST_RECORD_DATALEN;
249   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
250   rd.flags = GNUNET_GNSRECORD_RF_SHADOW_RECORD;
251   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
252
253   nsh = GNUNET_NAMESTORE_connect (cfg);
254   nch = GNUNET_NAMECACHE_connect (cfg);
255   GNUNET_break (NULL != nsh);
256   GNUNET_break (NULL != nch);
257   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
258                                       1, &rd, &put_cont, (void *) name);
259   if (NULL == nsqe)
260   {
261     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
262               _("Namestore cannot store no block\n"));
263   }
264   GNUNET_free ((void *)rd.data);
265 }
266
267
268 int
269 main (int argc, char *argv[])
270 {
271   res = 1;
272   if (0 !=
273       GNUNET_TESTING_peer_run ("test-namestore-api",
274                                "test_namestore_api.conf",
275                                &run,
276                                NULL))
277   {
278     res = 1;
279   }
280   if (NULL != directory)
281   {
282       GNUNET_DISK_directory_remove (directory);
283       GNUNET_free (directory);
284   }
285   return res;
286 }
287
288
289 /* end of test_namestore_api_lookup_shadow_filter.c */