- changes to signing verfifying: includes block expiration
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove_not_existing_record.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 namestore/test_namestore_api.c
22  * @brief testcase for namestore_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27 #include "namestore.h"
28 #include "gnunet_signatures.h"
29
30 #define VERBOSE GNUNET_NO
31
32 #define RECORDS 5
33 #define TEST_RECORD_TYPE 1234
34 #define TEST_RECORD_DATALEN 123
35 #define TEST_RECORD_DATA 'a'
36
37 #define TEST_REMOVE_RECORD_TYPE 4321
38 #define TEST_REMOVE_RECORD_DATALEN 255
39 #define TEST_REMOVE_RECORD_DATA 'b'
40
41 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
42
43 static struct GNUNET_NAMESTORE_Handle * nsh;
44
45 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
46 static struct GNUNET_OS_Process *arm;
47
48 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
49 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
50 struct GNUNET_CRYPTO_RsaSignature *s_signature;
51 static GNUNET_HashCode s_zone;
52 struct GNUNET_NAMESTORE_RecordData *s_rd;
53 static char *s_name;
54
55
56
57 static int res;
58
59 static void
60 start_arm (const char *cfgname)
61 {
62   arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
63                                "gnunet-service-arm", "-c", cfgname,
64 #if VERBOSE_PEERS
65                                "-L", "DEBUG",
66 #else
67                                "-L", "ERROR",
68 #endif
69                                NULL);
70 }
71
72 static void
73 stop_arm ()
74 {
75   if (NULL != arm)
76   {
77     if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
78       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
79     GNUNET_OS_process_wait (arm);
80     GNUNET_OS_process_close (arm);
81     arm = NULL;
82   }
83 }
84
85 /**
86  * Re-establish the connection to the service.
87  *
88  * @param cls handle to use to re-connect.
89  * @param tc scheduler context
90  */
91 static void
92 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
93 {
94   if (nsh != NULL)
95     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
96   nsh = NULL;
97
98   if (privkey != NULL)
99     GNUNET_CRYPTO_rsa_key_free (privkey);
100   privkey = NULL;
101
102   if (NULL != arm)
103     stop_arm();
104
105   res = 1;
106 }
107
108
109 static void
110 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
111 {
112   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
113   {
114     GNUNET_SCHEDULER_cancel (endbadly_task);
115     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
116   }
117
118   int c;
119   for (c = 0; c < RECORDS; c++)
120     GNUNET_free_non_null((void *) s_rd[c].data);
121   GNUNET_free (s_rd);
122
123   if (privkey != NULL)
124     GNUNET_CRYPTO_rsa_key_free (privkey);
125   privkey = NULL;
126
127   if (nsh != NULL)
128     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
129   nsh = NULL;
130
131   if (NULL != arm)
132     stop_arm();
133 }
134
135 void
136 remove_cont (void *cls, int32_t success, const char *emsg)
137 {
138   char *name = cls;
139   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Remove record for `%s': %s `%s'\n", name, (success == GNUNET_YES) ? "SUCCESS" : "FAIL", emsg);
140   if (GNUNET_NO == success)
141   {
142     res = 0;
143   }
144   else
145   {
146     res = 1;
147     GNUNET_break (0);
148   }
149   GNUNET_SCHEDULER_add_now(&end, NULL);
150 }
151
152 void
153 put_cont (void *cls, int32_t success, const char *emsg)
154 {
155   char *name = cls;
156   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
157   if (success == GNUNET_OK)
158   {
159     res = 0;
160     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Removing non existing record for `%s'\n", name);
161
162     struct GNUNET_NAMESTORE_RecordData rd;
163     char data[TEST_REMOVE_RECORD_DATALEN];
164     rd.expiration = GNUNET_TIME_absolute_get();
165     rd.record_type = TEST_REMOVE_RECORD_TYPE;
166     rd.data_size = TEST_REMOVE_RECORD_DATALEN;
167     rd.data = &data;
168
169     GNUNET_NAMESTORE_record_remove (nsh, privkey, name, &rd, &remove_cont, name);
170   }
171   else
172   {
173     res = 1;
174     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
175     GNUNET_SCHEDULER_add_now(&end, NULL);
176   }
177 }
178
179 static struct GNUNET_NAMESTORE_RecordData *
180 create_record (int count)
181 {
182   int c;
183   struct GNUNET_NAMESTORE_RecordData * rd;
184   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
185
186   for (c = 0; c < RECORDS; c++)
187   {
188   rd[c].expiration = GNUNET_TIME_absolute_get();
189   rd[c].record_type = TEST_RECORD_TYPE;
190   rd[c].data_size = TEST_RECORD_DATALEN;
191   rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
192   memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
193   }
194
195   return rd;
196 }
197
198 void
199 delete_existing_db (const struct GNUNET_CONFIGURATION_Handle *cfg)
200 {
201   char *afsdir;
202
203   if (GNUNET_OK ==
204       GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore-sqlite",
205                                                "FILENAME", &afsdir))
206   {
207     if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
208       if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
209         if (GNUNET_OK == GNUNET_DISK_directory_remove(afsdir))
210           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleted existing database `%s' \n", afsdir);
211    GNUNET_free (afsdir);
212   }
213
214 }
215
216 static void
217 run (void *cls, char *const *args, const char *cfgfile,
218      const struct GNUNET_CONFIGURATION_Handle *cfg)
219 {
220   delete_existing_db(cfg);
221   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
222   size_t rd_ser_len;
223
224   /* load privat key */
225   char *hostkey_file;
226   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR, "4UCICULTINKC87UO4326KEEDQ9MTEP2AJT88MJFVGTGNK12QNGMQI2S41VI07UUU6EO19BTB06PDL0HE6VP1OM50HOJEI75RHP4JP80.zone");
227   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
228   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
229   GNUNET_free (hostkey_file);
230   GNUNET_assert (privkey != NULL);
231   /* get public key */
232   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
233
234   /* create record */
235   s_name = "dummy.dummy.gnunet";
236   s_rd = create_record (RECORDS);
237
238   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
239   char rd_ser[rd_ser_len];
240   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
241
242   /* sign */
243   s_signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
244
245   /* create random zone hash */
246   GNUNET_CRYPTO_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
247
248   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name: `%s' Zone: `%s' \n", s_name, GNUNET_h2s_full(&s_zone));
249
250
251   start_arm (cfgfile);
252   GNUNET_assert (arm != NULL);
253
254   nsh = GNUNET_NAMESTORE_connect (cfg);
255   GNUNET_break (NULL != nsh);
256
257   GNUNET_break (s_rd != NULL);
258   GNUNET_break (s_name != NULL);
259
260   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
261                               GNUNET_TIME_absolute_get_forever(),
262                               RECORDS, s_rd, s_signature, put_cont, s_name);
263
264
265 }
266
267 static int
268 check ()
269 {
270   static char *const argv[] = { "test-namestore-api",
271     "-c",
272     "test_namestore_api.conf",
273 #if VERBOSE
274     "-L", "DEBUG",
275 #endif
276     NULL
277   };
278   static struct GNUNET_GETOPT_CommandLineOption options[] = {
279     GNUNET_GETOPT_OPTION_END
280   };
281
282   res = 1;
283   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
284                       "nohelp", options, &run, &res);
285   return res;
286 }
287
288 int
289 main (int argc, char *argv[])
290 {
291   int ret;
292
293   ret = check ();
294   GNUNET_free (s_signature);
295   return ret;
296 }
297
298 /* end of test_namestore_api.c */