note about performance issue, indentation fix
[oweals/gnunet.git] / src / namestore / test_namestore_api_monitoring_existing.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2013 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file namestore/test_namestore_api_monitoring.c
22  * @brief testcase for zone monitoring functionality: add records first, then monitor
23  */
24 #include "platform.h"
25 #include "gnunet_namestore_service.h"
26 #include "gnunet_testing_lib.h"
27 #include "namestore.h"
28
29
30 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
31
32 static const struct GNUNET_CONFIGURATION_Handle *cfg;
33
34 static struct GNUNET_NAMESTORE_Handle * nsh;
35
36 static struct GNUNET_SCHEDULER_Task * endbadly_task;
37
38 static struct GNUNET_CRYPTO_EcdsaPrivateKey * privkey;
39
40 static struct GNUNET_CRYPTO_EcdsaPrivateKey * privkey2;
41
42 static struct GNUNET_NAMESTORE_ZoneMonitor *zm;
43
44 static int res;
45
46 static char * s_name_1;
47
48 static struct GNUNET_GNSRECORD_Data *s_rd_1;
49
50 static char * s_name_2;
51
52 static struct GNUNET_GNSRECORD_Data *s_rd_2;
53
54 static char * s_name_3;
55
56 static struct GNUNET_GNSRECORD_Data *s_rd_3;
57
58 struct GNUNET_NAMESTORE_QueueEntry * ns_ops[3];
59
60 static char *directory;
61
62
63 static void
64 do_shutdown ()
65 {
66   if (NULL != zm)
67   {
68     GNUNET_NAMESTORE_zone_monitor_stop (zm);
69     zm = NULL;
70   }
71
72   if (NULL != ns_ops[0])
73   {
74         GNUNET_NAMESTORE_cancel(ns_ops[0]);
75         ns_ops[0] = NULL;
76   }
77   if (NULL != ns_ops[1])
78   {
79         GNUNET_NAMESTORE_cancel(ns_ops[1]);
80         ns_ops[1] = NULL;
81   }
82   if (NULL != ns_ops[2])
83   {
84         GNUNET_NAMESTORE_cancel(ns_ops[2]);
85         ns_ops[2] = NULL;
86   }
87
88   if (NULL != nsh)
89   {
90     GNUNET_NAMESTORE_disconnect (nsh);
91     nsh = NULL;
92   }
93
94   GNUNET_free_non_null(s_name_1);
95   GNUNET_free_non_null(s_name_2);
96   GNUNET_free_non_null(s_name_3);
97
98   if (s_rd_1 != NULL)
99   {
100     GNUNET_free ((void *)s_rd_1->data);
101     GNUNET_free (s_rd_1);
102   }
103   if (s_rd_2 != NULL)
104   {
105     GNUNET_free ((void *)s_rd_2->data);
106     GNUNET_free (s_rd_2);
107   }
108   if (s_rd_3 != NULL)
109   {
110     GNUNET_free ((void *)s_rd_3->data);
111     GNUNET_free (s_rd_3);
112   }
113
114   if (NULL != privkey)
115   {
116     GNUNET_free (privkey);
117     privkey = NULL;
118   }
119   if (NULL != privkey2)
120   {
121     GNUNET_free (privkey2);
122     privkey2 = NULL;
123   }
124 }
125
126
127 /**
128  * Re-establish the connection to the service.
129  *
130  * @param cls handle to use to re-connect.
131  */
132 static void
133 endbadly (void *cls)
134 {
135   do_shutdown ();
136   res = 1;
137 }
138
139
140 static void
141 end (void *cls)
142 {
143   do_shutdown ();
144   res = 0;
145 }
146
147
148 static void
149 zone_proc (void *cls,
150            const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
151            const char *name,
152            unsigned int rd_count,
153            const struct GNUNET_GNSRECORD_Data *rd)
154 {
155   static int returned_records;
156   static int fail = GNUNET_NO;
157
158   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
159               "Comparing results name %s\n",
160               name);
161
162   if (0 != memcmp (zone_key, privkey, sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)))
163   {
164     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
165               "Monitoring returned wrong zone key\n");
166     GNUNET_break (0);
167     GNUNET_SCHEDULER_cancel (endbadly_task);
168     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
169     return;
170   }
171
172   if (0 == strcmp (name, s_name_1))
173   {
174     if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_1))
175     {
176       GNUNET_break (0);
177         fail = GNUNET_YES;
178     }
179   }
180   else if (0 == strcmp (name, s_name_2))
181   {
182     if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_2))
183     {
184       GNUNET_break (0);
185         fail = GNUNET_YES;
186     }
187   }
188   else
189   {
190     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
191               "Invalid name %s\n",  name);
192         GNUNET_break (0);
193     fail = GNUNET_YES;
194   }
195
196   if (2 == ++returned_records)
197   {
198     if (endbadly_task != NULL)
199     {
200       GNUNET_SCHEDULER_cancel (endbadly_task);
201       endbadly_task = NULL;
202     }
203     if (GNUNET_YES == fail)
204       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
205     else
206         GNUNET_SCHEDULER_add_now (&end, NULL);
207   }
208 }
209
210
211 static void
212 fail_cb (void *cls)
213 {
214   GNUNET_assert (0);
215 }
216
217
218 static void
219 sync_cb (void *cls)
220 {
221   /* do nothing */
222 }
223
224
225 static void
226 put_cont (void *cls, int32_t success, const char *emsg)
227 {
228   static int c = 0;
229   char *label = cls;
230
231   if (0 == strcmp (label, s_name_1))
232         ns_ops[0] = NULL;
233   else if (0 == strcmp (label, s_name_2))
234         ns_ops[1] = NULL;
235   else if (0 == strcmp (label, s_name_3))
236         ns_ops[2] = NULL;
237
238   if (success == GNUNET_OK)
239   {
240     c++;
241     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record %u: `%s'\n", c, label);
242   }
243   else
244   {
245     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to created records\n");
246     GNUNET_break (0);
247     GNUNET_SCHEDULER_cancel (endbadly_task);
248     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
249   }
250
251   if (3 == c)
252   {
253     /* Start monitoring */
254     zm = GNUNET_NAMESTORE_zone_monitor_start (cfg,
255                                               privkey,
256                                               GNUNET_YES,
257                                               &fail_cb,
258                                               NULL,
259                                               &zone_proc,
260                                               NULL,
261                                               &sync_cb,
262                                               NULL);
263     if (NULL == zm)
264     {
265       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone monitor\n");
266       GNUNET_break (0);
267       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
268       return;
269     }
270   }
271 }
272
273
274 static struct GNUNET_GNSRECORD_Data *
275 create_record (unsigned int count)
276 {
277   unsigned int c;
278   struct GNUNET_GNSRECORD_Data * rd;
279
280   rd = GNUNET_malloc (count * sizeof (struct GNUNET_GNSRECORD_Data));
281   for (c = 0; c < count; c++)
282   {
283     rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value_us;
284     rd[c].record_type = 1111;
285     rd[c].data_size = 50;
286     rd[c].data = GNUNET_malloc(50);
287     rd[c].flags = 0;
288     memset ((char *) rd[c].data, 'a', 50);
289   }
290   return rd;
291 }
292
293
294 static void
295 run (void *cls,
296      const struct GNUNET_CONFIGURATION_Handle *mycfg,
297      struct GNUNET_TESTING_Peer *peer)
298 {
299   char *hostkey_file;
300
301   directory = NULL;
302   GNUNET_assert (GNUNET_OK ==
303                  GNUNET_CONFIGURATION_get_value_string(mycfg, "PATHS", "GNUNET_TEST_HOME", &directory));
304   GNUNET_DISK_directory_remove (directory);
305
306   res = 1;
307
308   GNUNET_asprintf(&hostkey_file,
309                   "zonefiles%s%s",
310                   DIR_SEPARATOR_STR,
311                   "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
312   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
313               "Using zonekey file `%s' \n", hostkey_file);
314   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
315   GNUNET_free (hostkey_file);
316   GNUNET_assert (privkey != NULL);
317
318   cfg = mycfg;
319   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &endbadly, NULL);
320   /* Connect to namestore */
321   nsh = GNUNET_NAMESTORE_connect (cfg);
322   if (NULL == nsh)
323   {
324     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Connect to namestore\n");
325     GNUNET_break (0);
326     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
327     return;
328   }
329
330   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",
331                   DIR_SEPARATOR_STR,
332                   "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
333   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
334   privkey2 = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
335   GNUNET_free (hostkey_file);
336   GNUNET_assert (privkey2 != NULL);
337
338
339   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
340   /* name in different zone */
341   GNUNET_asprintf(&s_name_3, "dummy3");
342   s_rd_3 = create_record(1);
343   GNUNET_assert (NULL != (ns_ops[2] = GNUNET_NAMESTORE_records_store (nsh, privkey2, s_name_3,
344                 1, s_rd_3, &put_cont, s_name_3)));
345
346   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
347   GNUNET_asprintf(&s_name_1, "dummy1");
348   s_rd_1 = create_record(1);
349   GNUNET_assert (NULL != (ns_ops[0] = GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_1,
350                 1, s_rd_1, &put_cont, s_name_1)));
351
352
353   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
354   GNUNET_asprintf(&s_name_2, "dummy2");
355   s_rd_2 = create_record(1);
356   GNUNET_assert (NULL != (ns_ops[1] = GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_2,
357                 1, s_rd_2, &put_cont, s_name_2)));
358
359
360 }
361
362
363 int
364 main (int argc, char *argv[])
365 {
366   res = 1;
367   if (0 !=
368       GNUNET_TESTING_peer_run ("test-namestore-api-monitoring",
369                                "test_namestore_api.conf",
370                                &run,
371                                NULL))
372   {
373     res = 1;
374   }
375   if (NULL != directory)
376   {
377       GNUNET_DISK_directory_remove (directory);
378       GNUNET_free (directory);
379   }
380   return res;
381 }
382
383
384 /* end of test_namestore_api_monitoring.c */