-switching GNS from RSA to ECC
[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_remove_not_existing_record.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 "gnunet_testing_lib.h"
28 #include "namestore.h"
29 #include "gnunet_signatures.h"
30
31 #define RECORDS 5
32
33 #define TEST_RECORD_TYPE 1234
34
35 #define TEST_RECORD_DATALEN 123
36
37 #define TEST_RECORD_DATA 'a'
38
39 #define TEST_REMOVE_RECORD_TYPE 4321
40
41 #define TEST_REMOVE_RECORD_DATALEN 255
42
43 #define TEST_REMOVE_RECORD_DATA 'b'
44
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
46
47
48 static struct GNUNET_NAMESTORE_Handle * nsh;
49
50 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
51
52 static struct GNUNET_CRYPTO_EccPrivateKey * privkey;
53
54 static struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded pubkey;
55
56 static struct GNUNET_CRYPTO_EccSignature *s_signature;
57
58 static struct GNUNET_HashCode s_zone;
59
60 static struct GNUNET_NAMESTORE_RecordData *s_rd;
61
62 static char *s_name;
63
64 static int res;
65
66
67 /**
68  * Re-establish the connection to the service.
69  *
70  * @param cls handle to use to re-connect.
71  * @param tc scheduler context
72  */
73 static void
74 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
75 {
76   if (nsh != NULL)
77     GNUNET_NAMESTORE_disconnect (nsh);
78   nsh = NULL;
79   if (privkey != NULL)
80     GNUNET_CRYPTO_ecc_key_free (privkey);
81   privkey = NULL;
82   GNUNET_free_non_null (s_name);
83   res = 1;
84 }
85
86
87 static void
88 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
89 {
90   int c;
91
92   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
93   {
94     GNUNET_SCHEDULER_cancel (endbadly_task);
95     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
96   }
97   for (c = 0; c < RECORDS; c++)
98     GNUNET_free_non_null((void *) s_rd[c].data);
99   GNUNET_free (s_rd);
100
101   if (privkey != NULL)
102     GNUNET_CRYPTO_ecc_key_free (privkey);
103   privkey = NULL;
104   if (nsh != NULL)
105     GNUNET_NAMESTORE_disconnect (nsh);
106   nsh = NULL;
107   GNUNET_free_non_null (s_name);
108 }
109
110
111 static void
112 remove_cont (void *cls, int32_t success, const char *emsg)
113 {
114   char *name = cls;
115
116   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Remove record for `%s': %s `%s'\n", name, (success == GNUNET_YES) ? "SUCCESS" : "FAIL", emsg);
117   if (GNUNET_NO == success)
118   {
119     res = 0;
120   }
121   else
122   {
123     res = 1;
124     GNUNET_break (0);
125   }
126   GNUNET_SCHEDULER_add_now(&end, NULL);
127 }
128
129
130 static void
131 put_cont (void *cls, int32_t success, const char *emsg)
132 {
133   char *name = cls;
134   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
135   if (success == GNUNET_OK)
136   {
137     res = 0;
138     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Removing non existing record for `%s'\n", name);
139
140     struct GNUNET_NAMESTORE_RecordData rd;
141     char data[TEST_REMOVE_RECORD_DATALEN];
142
143     rd.expiration_time = GNUNET_TIME_absolute_get().abs_value;
144     rd.record_type = TEST_REMOVE_RECORD_TYPE;
145     rd.data_size = TEST_REMOVE_RECORD_DATALEN;
146     rd.data = &data;
147
148     GNUNET_NAMESTORE_record_remove (nsh, privkey, name, &rd, &remove_cont, name);
149   }
150   else
151   {
152     res = 1;
153     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
154     GNUNET_SCHEDULER_add_now(&end, NULL);
155   }
156 }
157
158
159 static struct GNUNET_NAMESTORE_RecordData *
160 create_record (unsigned int count)
161 {
162   unsigned int c;
163   struct GNUNET_NAMESTORE_RecordData * rd;
164
165   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
166   for (c = 0; c < count; c++)
167   {
168     rd[c].expiration_time = GNUNET_TIME_absolute_get().abs_value;
169     rd[c].record_type = TEST_RECORD_TYPE;
170     rd[c].data_size = TEST_RECORD_DATALEN;
171     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
172     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
173   }
174   return rd;
175 }
176
177
178 static void
179 run (void *cls,
180      const struct GNUNET_CONFIGURATION_Handle *cfg,
181      struct GNUNET_TESTING_Peer *peer)
182 {
183   char *hostkey_file;
184   size_t rd_ser_len;
185   struct GNUNET_TIME_Absolute et;
186
187   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
188
189   /* load privat key */
190   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
191       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
192   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
193   privkey = GNUNET_CRYPTO_ecc_key_create_from_file(hostkey_file);
194   GNUNET_free (hostkey_file);
195   GNUNET_assert (privkey != NULL);
196   /* get public key */
197   GNUNET_CRYPTO_ecc_key_get_public(privkey, &pubkey);
198
199   /* create record */
200   s_name = GNUNET_NAMESTORE_normalize_string ("DUMMY.dummy.gnunet");
201   s_rd = create_record (RECORDS);
202
203   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
204   char rd_ser[rd_ser_len];
205   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
206
207   /* sign */
208   et.abs_value = s_rd[0].expiration_time;
209   s_signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_rd, RECORDS);
210
211   /* create random zone hash */
212   GNUNET_CRYPTO_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded), &s_zone);
213
214   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name: `%s' Zone: `%s' \n", s_name, GNUNET_h2s_full(&s_zone));
215   nsh = GNUNET_NAMESTORE_connect (cfg);
216   GNUNET_break (NULL != nsh);
217   GNUNET_break (s_rd != NULL);
218   GNUNET_break (s_name != NULL);
219   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
220                               GNUNET_TIME_UNIT_FOREVER_ABS,
221                               RECORDS, s_rd, s_signature, put_cont, s_name);
222 }
223
224
225 int
226 main (int argc, char *argv[])
227 {
228   res = 1;
229   if (0 != 
230       GNUNET_TESTING_service_run ("test-namestore-api-remove-not-existing-record",
231                                   "namestore",
232                                   "test_namestore_api.conf",
233                                   &run,
234                                   NULL))
235     return 1;
236   GNUNET_free_non_null (s_signature);
237   return res;
238 }
239
240 /* end of test_namestore_api_remove_not_existing_record.c */