fix for size
[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 GNUNET_SCHEDULER_TaskIdentifier 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
57 static void
58 cleanup ()
59 {
60   if (NULL != nsh)
61   {
62     GNUNET_NAMESTORE_disconnect (nsh);
63     nsh = NULL;
64   }
65   if (NULL != nch)
66   {
67     GNUNET_NAMECACHE_disconnect (nch);
68     nch = NULL;
69   }
70   if (NULL != privkey)
71   {
72     GNUNET_free (privkey);
73     privkey = NULL;
74   }
75   GNUNET_SCHEDULER_shutdown ();
76 }
77
78
79 /**
80  * Re-establish the connection to the service.
81  *
82  * @param cls handle to use to re-connect.
83  * @param tc scheduler context
84  */
85 static void
86 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
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, const struct GNUNET_SCHEDULER_TaskContext *tc)
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 != GNUNET_SCHEDULER_NO_TASK)
174   {
175     GNUNET_SCHEDULER_cancel (endbadly_task);
176     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
177   }
178
179   if (NULL == block)
180   {
181     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
182               _("Namestore returned no block\n"));
183     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
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   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
229                                                 &endbadly, NULL);
230   GNUNET_asprintf (&hostkey_file,
231                    "zonefiles%s%s",
232                    DIR_SEPARATOR_STR,
233                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
234   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
235   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
236   GNUNET_free (hostkey_file);
237   GNUNET_assert (privkey != NULL);
238   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
239
240   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
241   rd.record_type = TEST_RECORD_TYPE;
242   rd.data_size = TEST_RECORD_DATALEN;
243   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
244   rd.flags = GNUNET_GNSRECORD_RF_SHADOW_RECORD;
245   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
246
247   nsh = GNUNET_NAMESTORE_connect (cfg);
248   nch = GNUNET_NAMECACHE_connect (cfg);
249   GNUNET_break (NULL != nsh);
250   GNUNET_break (NULL != nch);
251   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
252                                       1, &rd, &put_cont, (void *) name);
253   if (NULL == nsqe)
254   {
255     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
256               _("Namestore cannot store no block\n"));
257   }
258   GNUNET_free ((void *)rd.data);
259 }
260
261
262 int
263 main (int argc, char *argv[])
264 {
265   res = 1;
266   if (0 !=
267       GNUNET_TESTING_peer_run ("test-namestore-api",
268                                "test_namestore_api.conf",
269                                &run,
270                                NULL))
271     return 1;
272   return res;
273 }
274
275
276 /* end of test_namestore_api_lookup_shadow_filter.c */