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