-eliminate dead code
[oweals/gnunet.git] / src / namestore / gnunet-service-namestore.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012, 2013 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 /**
22  * @file namestore/gnunet-service-namestore.c
23  * @brief namestore for the GNUnet naming system
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_dnsparser_lib.h"
30 #include "gnunet_namecache_service.h"
31 #include "gnunet_namestore_service.h"
32 #include "gnunet_namestore_plugin.h"
33 #include "gnunet_signatures.h"
34 #include "namestore.h"
35
36 #define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
37
38
39 /**
40  * A namestore client
41  */
42 struct NamestoreClient;
43
44
45 /**
46  * A namestore iteration operation.
47  */
48 struct ZoneIteration
49 {
50   /**
51    * Next element in the DLL
52    */
53   struct ZoneIteration *next;
54
55   /**
56    * Previous element in the DLL
57    */
58   struct ZoneIteration *prev;
59
60   /**
61    * Namestore client which intiated this zone iteration
62    */
63   struct NamestoreClient *client;
64
65   /**
66    * Key of the zone we are iterating over.
67    */
68   struct GNUNET_CRYPTO_EcdsaPrivateKey zone;
69
70   /**
71    * The operation id fot the zone iteration in the response for the client
72    */
73   uint32_t request_id;
74
75   /**
76    * Offset of the zone iteration used to address next result of the zone
77    * iteration in the store
78    *
79    * Initialy set to 0 in handle_iteration_start
80    * Incremented with by every call to handle_iteration_next
81    */
82   uint32_t offset;
83
84 };
85
86
87 /**
88  * A namestore client
89  */
90 struct NamestoreClient
91 {
92   /**
93    * Next element in the DLL
94    */
95   struct NamestoreClient *next;
96
97   /**
98    * Previous element in the DLL
99    */
100   struct NamestoreClient *prev;
101
102   /**
103    * The client
104    */
105   struct GNUNET_SERVER_Client *client;
106
107   /**
108    * Head of the DLL of
109    * Zone iteration operations in progress initiated by this client
110    */
111   struct ZoneIteration *op_head;
112
113   /**
114    * Tail of the DLL of
115    * Zone iteration operations in progress initiated by this client
116    */
117   struct ZoneIteration *op_tail;
118 };
119
120
121 /**
122  * A namestore monitor.
123  */
124 struct ZoneMonitor
125 {
126   /**
127    * Next element in the DLL
128    */
129   struct ZoneMonitor *next;
130
131   /**
132    * Previous element in the DLL
133    */
134   struct ZoneMonitor *prev;
135
136   /**
137    * Namestore client which intiated this zone monitor
138    */
139   struct NamestoreClient *nc;
140
141   /**
142    * Private key of the zone.
143    */
144   struct GNUNET_CRYPTO_EcdsaPrivateKey zone;
145
146   /**
147    * Task active during initial iteration.
148    */
149   GNUNET_SCHEDULER_TaskIdentifier task;
150
151   /**
152    * Offset of the zone iteration used to address next result of the zone
153    * iteration in the store
154    *
155    * Initialy set to 0.
156    * Incremented with by every call to #handle_iteration_next
157    */
158   uint32_t offset;
159
160 };
161
162
163 /**
164  * Pending operation on the namecache.
165  */
166 struct CacheOperation
167 {
168
169   /**
170    * Kept in a DLL.
171    */
172   struct CacheOperation *prev;
173
174   /**
175    * Kept in a DLL.
176    */
177   struct CacheOperation *next;
178
179   /**
180    * Handle to namecache queue.
181    */
182   struct GNUNET_NAMECACHE_QueueEntry *qe;
183
184   /**
185    * Client to notify about the result.
186    */
187   struct GNUNET_SERVER_Client *client;
188
189   /**
190    * Client's request ID.
191    */
192   uint32_t rid;
193 };
194
195
196 /**
197  * Public key of all zeros.
198  */
199 static const struct GNUNET_CRYPTO_EcdsaPrivateKey zero;
200
201 /**
202  * Configuration handle.
203  */
204 static const struct GNUNET_CONFIGURATION_Handle *GSN_cfg;
205
206 /**
207  * Namecache handle.
208  */
209 static struct GNUNET_NAMECACHE_Handle *namecache;
210
211 /**
212  * Database handle
213  */
214 static struct GNUNET_NAMESTORE_PluginFunctions *GSN_database;
215
216 /**
217  * Name of the database plugin
218  */
219 static char *db_lib_name;
220
221 /**
222  * Our notification context.
223  */
224 static struct GNUNET_SERVER_NotificationContext *snc;
225
226 /**
227  * Head of the Client DLL
228  */
229 static struct NamestoreClient *client_head;
230
231 /**
232  * Tail of the Client DLL
233  */
234 static struct NamestoreClient *client_tail;
235
236 /**
237  * Head of cop DLL.
238  */
239 static struct CacheOperation *cop_head;
240
241 /**
242  * Tail of cop DLL.
243  */
244 static struct CacheOperation *cop_tail;
245
246 /**
247  * First active zone monitor.
248  */
249 static struct ZoneMonitor *monitor_head;
250
251 /**
252  * Last active zone monitor.
253  */
254 static struct ZoneMonitor *monitor_tail;
255
256 /**
257  * Notification context shared by all monitors.
258  */
259 static struct GNUNET_SERVER_NotificationContext *monitor_nc;
260
261
262
263 /**
264  * Task run during shutdown.
265  *
266  * @param cls unused
267  * @param tc unused
268  */
269 static void
270 cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
271 {
272   struct ZoneIteration *no;
273   struct NamestoreClient *nc;
274   struct CacheOperation *cop;
275
276   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
277               "Stopping namestore service\n");
278   if (NULL != snc)
279   {
280     GNUNET_SERVER_notification_context_destroy (snc);
281     snc = NULL;
282   }
283   while (NULL != (cop = cop_head))
284   {
285     GNUNET_NAMECACHE_cancel (cop->qe);
286     GNUNET_CONTAINER_DLL_remove (cop_head,
287                                  cop_tail,
288                                  cop);
289     GNUNET_free (cop);
290   }
291   GNUNET_NAMECACHE_disconnect (namecache);
292   namecache = NULL;
293   while (NULL != (nc = client_head))
294   {
295     while (NULL != (no = nc->op_head))
296     {
297       GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, no);
298       GNUNET_free (no);
299     }
300     GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc);
301     GNUNET_SERVER_client_set_user_context (nc->client, NULL);
302     GNUNET_free (nc);
303   }
304   GNUNET_break (NULL == GNUNET_PLUGIN_unload (db_lib_name, GSN_database));
305   GNUNET_free (db_lib_name);
306   db_lib_name = NULL;
307   if (NULL != monitor_nc)
308   {
309     GNUNET_SERVER_notification_context_destroy (monitor_nc);
310     monitor_nc = NULL;
311   }
312 }
313
314
315 /**
316  * Called whenever a client is disconnected.
317  * Frees our resources associated with that client.
318  *
319  * @param cls closure
320  * @param client identification of the client
321  */
322 static void
323 client_disconnect_notification (void *cls,
324                                 struct GNUNET_SERVER_Client *client)
325 {
326   struct ZoneIteration *no;
327   struct NamestoreClient *nc;
328   struct ZoneMonitor *zm;
329   struct CacheOperation *cop;
330
331   if (NULL == client)
332     return;
333   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
334               "Client %p disconnected\n",
335               client);
336   if (NULL == (nc = GNUNET_SERVER_client_get_user_context (client, struct NamestoreClient)))
337     return;
338   while (NULL != (no = nc->op_head))
339   {
340     GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, no);
341     GNUNET_free (no);
342   }
343   GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc);
344   GNUNET_free (nc);
345   for (zm = monitor_head; NULL != zm; zm = zm->next)
346   {
347     if (client == zm->nc->client)
348     {
349       GNUNET_CONTAINER_DLL_remove (monitor_head,
350                                    monitor_tail,
351                                    zm);
352       if (GNUNET_SCHEDULER_NO_TASK != zm->task)
353       {
354         GNUNET_SCHEDULER_cancel (zm->task);
355         zm->task = GNUNET_SCHEDULER_NO_TASK;
356       }
357       GNUNET_free (zm);
358       break;
359     }
360   }
361   for (cop = cop_head; NULL != cop; cop = cop->next)
362     if (client == cop->client)
363       cop->client = NULL;
364 }
365
366
367 /**
368  * Add a client to our list of active clients, if it is not yet
369  * in there.
370  *
371  * @param client client to add
372  * @return internal namestore client structure for this client
373  */
374 static struct NamestoreClient *
375 client_lookup (struct GNUNET_SERVER_Client *client)
376 {
377   struct NamestoreClient *nc;
378
379   nc = GNUNET_SERVER_client_get_user_context (client, struct NamestoreClient);
380   if (NULL != nc)
381     return nc;
382   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
383               "Client %p connected\n",
384               client);
385   nc = GNUNET_new (struct NamestoreClient);
386   nc->client = client;
387   GNUNET_SERVER_notification_context_add (snc, client);
388   GNUNET_CONTAINER_DLL_insert (client_head, client_tail, nc);
389   GNUNET_SERVER_client_set_user_context (client, nc);
390   return nc;
391 }
392
393
394 /**
395  * Generate a 'struct LookupNameResponseMessage' and send it to the
396  * given client using the given notification context.
397  *
398  * @param nc notification context to use
399  * @param client client to unicast to
400  * @param request_id request ID to use
401  * @param zone_key zone key of the zone
402  * @param name name
403  * @param rd_count number of records in @a rd
404  * @param rd array of records
405  */
406 static void
407 send_lookup_response (struct GNUNET_SERVER_NotificationContext *nc,
408                       struct GNUNET_SERVER_Client *client,
409                       uint32_t request_id,
410                       const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
411                       const char *name,
412                       unsigned int rd_count,
413                       const struct GNUNET_GNSRECORD_Data *rd)
414 {
415   struct RecordResultMessage *zir_msg;
416   size_t name_len;
417   size_t rd_ser_len;
418   size_t msg_size;
419   char *name_tmp;
420   char *rd_ser;
421
422   name_len = strlen (name) + 1;
423   rd_ser_len = GNUNET_GNSRECORD_records_get_size (rd_count, rd);
424   msg_size = sizeof (struct RecordResultMessage) + name_len + rd_ser_len;
425   (void) client_lookup (client);
426   zir_msg = GNUNET_malloc (msg_size);
427   zir_msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT);
428   zir_msg->gns_header.header.size = htons (msg_size);
429   zir_msg->gns_header.r_id = htonl (request_id);
430   zir_msg->name_len = htons (name_len);
431   zir_msg->rd_count = htons (rd_count);
432   zir_msg->rd_len = htons (rd_ser_len);
433   zir_msg->private_key = *zone_key;
434   name_tmp = (char *) &zir_msg[1];
435   memcpy (name_tmp, name, name_len);
436   rd_ser = &name_tmp[name_len];
437   GNUNET_GNSRECORD_records_serialize (rd_count, rd, rd_ser_len, rd_ser);
438   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
439               "Sending `%s' message with %u records and size %u\n",
440               "RECORD_RESULT",
441               rd_count,
442               msg_size);
443   GNUNET_SERVER_notification_context_unicast (nc,
444                                               client,
445                                               &zir_msg->gns_header.header,
446                                               GNUNET_NO);
447   GNUNET_free (zir_msg);
448 }
449
450
451 /**
452  * Send response to the store request to the client.
453  *
454  * @param client client to talk to
455  * @param res status of the operation
456  * @param rid client's request ID
457  */
458 static void
459 send_store_response (struct GNUNET_SERVER_Client *client,
460                      int res,
461                      uint32_t rid)
462 {
463   struct RecordStoreResponseMessage rcr_msg;
464
465   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
466               "Sending `%s' message\n",
467               "RECORD_STORE_RESPONSE");
468   rcr_msg.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE_RESPONSE);
469   rcr_msg.gns_header.header.size = htons (sizeof (struct RecordStoreResponseMessage));
470   rcr_msg.gns_header.r_id = htonl (rid);
471   rcr_msg.op_result = htonl (res);
472   GNUNET_SERVER_notification_context_unicast (snc, client,
473                                               &rcr_msg.gns_header.header,
474                                               GNUNET_NO);
475 }
476
477
478 /**
479  * Cache operation complete, clean up.
480  *
481  * @param cls the `struct CacheOperation`
482  * @param success success
483  * @param emsg error messages
484  */
485 static void
486 finish_cache_operation (void *cls,
487                         int32_t success,
488                         const char *emsg)
489 {
490   struct CacheOperation *cop = cls;
491
492   if (NULL != emsg)
493     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
494                 _("Failed to replicate block in namecache: %s\n"),
495                 emsg);
496   else
497     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
498                 "CACHE operation completed\n");
499   GNUNET_CONTAINER_DLL_remove (cop_head,
500                                cop_tail,
501                                cop);
502   if (NULL != cop->client)
503     send_store_response (cop->client,
504                          success,
505                          cop->rid);
506   GNUNET_free (cop);
507 }
508
509
510 /**
511  * We just touched the plaintext information about a name in our zone;
512  * refresh the corresponding (encrypted) block in the namestore.
513  *
514  * @param client client responsible for the request
515  * @param rid request ID of the client
516  * @param zone_key private key of the zone
517  * @param name label for the records
518  * @param rd_count number of records
519  * @param rd records stored under the given @a name
520  */
521 static void
522 refresh_block (struct GNUNET_SERVER_Client *client,
523                uint32_t rid,
524                const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
525                const char *name,
526                unsigned int rd_count,
527                const struct GNUNET_GNSRECORD_Data *rd)
528 {
529   struct GNUNET_GNSRECORD_Block *block;
530   struct CacheOperation *cop;
531   struct GNUNET_CRYPTO_EcdsaPublicKey pkey;
532
533   if (0 == rd_count)
534     block = GNUNET_GNSRECORD_block_create (zone_key,
535                                            GNUNET_TIME_UNIT_ZERO_ABS,
536                                            name,
537                                            rd, rd_count);
538   else
539     block = GNUNET_GNSRECORD_block_create (zone_key,
540                                            GNUNET_GNSRECORD_record_get_expiration_time (rd_count,
541                                                                                         rd),
542                                            name,
543                                            rd, rd_count);
544   GNUNET_assert (NULL != block);
545   GNUNET_CRYPTO_ecdsa_key_get_public (zone_key,
546                                       &pkey);
547   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
548               "Caching block for label `%s' in zone `%s' in namecache\n",
549               name,
550               GNUNET_GNSRECORD_z2s (&pkey));
551   cop = GNUNET_new (struct CacheOperation);
552   cop->client = client;
553   cop->rid = rid;
554   GNUNET_CONTAINER_DLL_insert (cop_head,
555                                cop_tail,
556                                cop);
557   cop->qe = GNUNET_NAMECACHE_block_cache (namecache,
558                                           block,
559                                           &finish_cache_operation,
560                                           cop);
561   GNUNET_free (block);
562 }
563
564
565 struct RecordLookupContext
566 {
567   const char *label;
568
569   int found;
570
571   unsigned int res_rd_count;
572
573   size_t rd_ser_len;
574
575   char *res_rd;
576 };
577
578 static void lookup_it (void *cls,
579                        const struct GNUNET_CRYPTO_EcdsaPrivateKey *private_key,
580                        const char *label,
581                        unsigned int rd_count,
582                        const struct GNUNET_GNSRECORD_Data *rd)
583 {
584   struct RecordLookupContext *rlc = cls;
585
586   if (0 == strcmp (label, rlc->label))
587   {
588     rlc->found = GNUNET_YES;
589     if (0 != rd_count)
590     {
591       rlc->rd_ser_len = GNUNET_GNSRECORD_records_get_size (rd_count, rd);
592       rlc->res_rd_count = rd_count;
593       rlc->res_rd = GNUNET_malloc (rlc->rd_ser_len);
594       GNUNET_GNSRECORD_records_serialize (rd_count, rd, rlc->rd_ser_len , rlc->res_rd);
595     }
596     else
597     {
598       rlc->rd_ser_len = 0;
599       rlc->res_rd_count = 0;
600       rlc->res_rd = NULL;
601     }
602   }
603 }
604
605
606 /**
607  * Handles a #GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP message
608  *
609  * @param cls unused
610  * @param client client sending the message
611  * @param message message of type 'struct RecordCreateMessage'
612  */
613 static void
614 handle_record_lookup (void *cls,
615                      struct GNUNET_SERVER_Client *client,
616                      const struct GNUNET_MessageHeader *message)
617 {
618   const struct LabelLookupMessage *ll_msg;
619   struct LabelLookupResponseMessage *llr_msg;
620   struct RecordLookupContext rlc;
621   const char *name_tmp;
622   char *res_name;
623   uint32_t name_len;
624   size_t src_size;
625   size_t res_size;
626   int offset;
627   int res;
628
629   if (ntohs (message->size) < sizeof (struct LabelLookupMessage))
630   {
631     GNUNET_break (0);
632     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
633     return;
634   }
635
636   ll_msg = (const struct LabelLookupMessage *) message;
637   name_len = ntohl (ll_msg->label_len);
638   src_size = ntohs (message->size);
639
640   if (name_len !=  src_size - sizeof (struct LabelLookupMessage))
641   {
642     GNUNET_break (0);
643     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
644     return;
645   }
646
647   name_tmp = (const char *) &ll_msg[1];
648   if ('\0' != name_tmp[name_len -1])
649   {
650     GNUNET_break (0);
651     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
652     return;
653   }
654
655   GNUNET_SERVER_receive_done (client, GNUNET_OK);
656   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
657               "Received `%s' message for name `%s'\n",
658               "NAMESTORE_RECORD_LOOKUP", name_tmp);
659
660
661   rlc.label = name_tmp;
662   rlc.found = GNUNET_NO;
663   rlc.res_rd_count = 0;
664   rlc.rd_ser_len = 0;
665   rlc.res_rd = NULL;
666
667   offset = 0;
668   do
669   {
670     /* changee this call */
671     res = GSN_database->iterate_records (GSN_database->cls,
672         &ll_msg->zone, offset, &lookup_it, &rlc);
673     offset++;
674   }
675   while ((GNUNET_NO == rlc.found) && (GNUNET_OK == res));
676
677   res_size = sizeof (struct LabelLookupResponseMessage) + name_len + rlc.rd_ser_len;
678   llr_msg = GNUNET_malloc (res_size);
679   llr_msg->gns_header.header.size = htons (res_size);
680   llr_msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP_RESPONSE);
681   llr_msg->gns_header.r_id = ll_msg->gns_header.r_id;
682   llr_msg->private_key = ll_msg->zone;
683   llr_msg->name_len = htons (name_len);
684   llr_msg->rd_count = htons (rlc.res_rd_count);
685   llr_msg->rd_len = htons (rlc.rd_ser_len);
686   res_name = (char *) &llr_msg[1];
687   memcpy (&llr_msg[1], name_tmp, name_len);
688   memcpy (&res_name[name_len], rlc.res_rd, rlc.rd_ser_len);
689
690   GNUNET_SERVER_notification_context_unicast (snc, client, &llr_msg->gns_header.header,
691       GNUNET_NO);
692
693   GNUNET_free_non_null (rlc.res_rd);
694   GNUNET_free (llr_msg);
695 }
696
697
698 /**
699  * Handles a #GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE message
700  *
701  * @param cls unused
702  * @param client client sending the message
703  * @param message message of type 'struct RecordCreateMessage'
704  */
705 static void
706 handle_record_store (void *cls,
707                      struct GNUNET_SERVER_Client *client,
708                      const struct GNUNET_MessageHeader *message)
709 {
710   const struct RecordStoreMessage *rp_msg;
711   size_t name_len;
712   size_t msg_size;
713   size_t msg_size_exp;
714   size_t rd_ser_len;
715   uint32_t rid;
716   const char *name_tmp;
717   char *conv_name;
718   const char *rd_ser;
719   unsigned int rd_count;
720   int res;
721   struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
722   struct ZoneMonitor *zm;
723
724   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
725               "Received `%s' message\n",
726               "NAMESTORE_RECORD_STORE");
727   if (ntohs (message->size) < sizeof (struct RecordStoreMessage))
728   {
729     GNUNET_break (0);
730     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
731     return;
732   }
733   rp_msg = (const struct RecordStoreMessage *) message;
734   rid = ntohl (rp_msg->gns_header.r_id);
735   name_len = ntohs (rp_msg->name_len);
736   msg_size = ntohs (message->size);
737   rd_count = ntohs (rp_msg->rd_count);
738   rd_ser_len = ntohs (rp_msg->rd_len);
739   GNUNET_break (0 == ntohs (rp_msg->reserved));
740   msg_size_exp = sizeof (struct RecordStoreMessage) + name_len + rd_ser_len;
741   if (msg_size != msg_size_exp)
742   {
743     GNUNET_break (0);
744     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
745     return;
746   }
747   if ((0 == name_len) || (name_len > MAX_NAME_LEN))
748   {
749     GNUNET_break (0);
750     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
751     return;
752   }
753   name_tmp = (const char *) &rp_msg[1];
754   rd_ser = &name_tmp[name_len];
755   if ('\0' != name_tmp[name_len -1])
756   {
757     GNUNET_break (0);
758     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
759     return;
760   }
761   (void) client_lookup (client);
762   {
763     struct GNUNET_GNSRECORD_Data rd[rd_count];
764
765     if (GNUNET_OK !=
766         GNUNET_GNSRECORD_records_deserialize (rd_ser_len, rd_ser, rd_count, rd))
767     {
768       GNUNET_break (0);
769       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
770       return;
771     }
772
773     /* Extracting and converting private key */
774     GNUNET_CRYPTO_ecdsa_key_get_public (&rp_msg->private_key,
775                                       &pubkey);
776     conv_name = GNUNET_GNSRECORD_string_to_lowercase (name_tmp);
777     if (NULL == conv_name)
778     {
779       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
780                   "Error converting name `%s'\n", name_tmp);
781       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
782       return;
783     }
784     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
785                 "Creating %u records for name `%s' in zone `%s'\n",
786                 (unsigned int) rd_count,
787                 conv_name,
788                 GNUNET_GNSRECORD_z2s (&pubkey));
789
790     if ( (0 == rd_count) &&
791          (GNUNET_NO ==
792           GSN_database->iterate_records (GSN_database->cls,
793                                          &rp_msg->private_key, 0, NULL, 0)) )
794     {
795       /* This name does not exist, so cannot be removed */
796       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
797                   "Name `%s' does not exist, no deletion required\n",
798                   conv_name);
799       res = GNUNET_NO;
800     }
801     else
802     {
803       res = GSN_database->store_records (GSN_database->cls,
804                                          &rp_msg->private_key,
805                                          conv_name,
806                                          rd_count, rd);
807       if (GNUNET_OK == res)
808       {
809         for (zm = monitor_head; NULL != zm; zm = zm->next)
810         {
811           if ( (0 == memcmp (&rp_msg->private_key, &zm->zone,
812                              sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey))) ||
813                (0 == memcmp (&zm->zone,
814                              &zero,
815                              sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey))) )
816           {
817             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
818                         "Notifying monitor about changes under label `%s'\n",
819                         conv_name);
820             send_lookup_response (monitor_nc,
821                                   zm->nc->client,
822                                   0,
823                                   &rp_msg->private_key,
824                                   conv_name,
825                                   rd_count, rd);
826           }
827           else
828             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
829                         "Monitor is for another zone\n");
830         }
831         if (NULL == monitor_head)
832           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
833                       "No monitors active\n");
834       }
835       else
836       {
837         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
838                     "Error storing record: %d\n",
839                     res);
840       }
841     }
842     if (GNUNET_OK == res)
843     {
844       refresh_block (client, rid,
845                      &rp_msg->private_key,
846                      conv_name,
847                      rd_count, rd);
848       GNUNET_SERVER_receive_done (client, GNUNET_OK);
849       GNUNET_free (conv_name);
850       return;
851     }
852     GNUNET_free (conv_name);
853   }
854   send_store_response (client, res, rid);
855   GNUNET_SERVER_receive_done (client, GNUNET_OK);
856 }
857
858
859 /**
860  * Context for record remove operations passed from #handle_zone_to_name to
861  * #handle_zone_to_name_it as closure
862  */
863 struct ZoneToNameCtx
864 {
865   /**
866    * Namestore client
867    */
868   struct NamestoreClient *nc;
869
870   /**
871    * Request id (to be used in the response to the client).
872    */
873   uint32_t rid;
874
875   /**
876    * Set to #GNUNET_OK on success, #GNUNET_SYSERR on error.  Note that
877    * not finding a name for the zone still counts as a 'success' here,
878    * as this field is about the success of executing the IPC protocol.
879    */
880   int success;
881 };
882
883
884 /**
885  * Zone to name iterator
886  *
887  * @param cls struct ZoneToNameCtx *
888  * @param zone_key the zone key
889  * @param name name
890  * @param rd_count number of records in @a rd
891  * @param rd record data
892  */
893 static void
894 handle_zone_to_name_it (void *cls,
895                         const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
896                         const char *name,
897                         unsigned int rd_count,
898                         const struct GNUNET_GNSRECORD_Data *rd)
899 {
900   struct ZoneToNameCtx *ztn_ctx = cls;
901   struct ZoneToNameResponseMessage *ztnr_msg;
902   int16_t res;
903   size_t name_len;
904   size_t rd_ser_len;
905   size_t msg_size;
906   char *name_tmp;
907   char *rd_tmp;
908
909   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
910               "Found result for zone-to-name lookup: `%s'\n",
911               name);
912   res = GNUNET_YES;
913   name_len = (NULL == name) ? 0 : strlen (name) + 1;
914   rd_ser_len = GNUNET_GNSRECORD_records_get_size (rd_count, rd);
915   msg_size = sizeof (struct ZoneToNameResponseMessage) + name_len + rd_ser_len;
916   if (msg_size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
917   {
918     GNUNET_break (0);
919     ztn_ctx->success = GNUNET_SYSERR;
920     return;
921   }
922   ztnr_msg = GNUNET_malloc (msg_size);
923   ztnr_msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE);
924   ztnr_msg->gns_header.header.size = htons (msg_size);
925   ztnr_msg->gns_header.r_id = htonl (ztn_ctx->rid);
926   ztnr_msg->res = htons (res);
927   ztnr_msg->rd_len = htons (rd_ser_len);
928   ztnr_msg->rd_count = htons (rd_count);
929   ztnr_msg->name_len = htons (name_len);
930   ztnr_msg->zone = *zone_key;
931   name_tmp = (char *) &ztnr_msg[1];
932   if (NULL != name)
933     memcpy (name_tmp, name, name_len);
934   rd_tmp = &name_tmp[name_len];
935   GNUNET_GNSRECORD_records_serialize (rd_count, rd, rd_ser_len, rd_tmp);
936   ztn_ctx->success = GNUNET_OK;
937   GNUNET_SERVER_notification_context_unicast (snc, ztn_ctx->nc->client,
938                                               &ztnr_msg->gns_header.header,
939                                               GNUNET_NO);
940   GNUNET_free (ztnr_msg);
941 }
942
943
944 /**
945  * Handles a #GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME message
946  *
947  * @param cls unused
948  * @param client client sending the message
949  * @param message message of type 'struct ZoneToNameMessage'
950  */
951 static void
952 handle_zone_to_name (void *cls,
953                      struct GNUNET_SERVER_Client *client,
954                      const struct GNUNET_MessageHeader *message)
955 {
956   struct NamestoreClient *nc;
957   const struct ZoneToNameMessage *ztn_msg;
958   struct ZoneToNameCtx ztn_ctx;
959   struct ZoneToNameResponseMessage ztnr_msg;
960
961   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
962               "Received `%s' message\n",
963               "ZONE_TO_NAME");
964   ztn_msg = (const struct ZoneToNameMessage *) message;
965   nc = client_lookup (client);
966   ztn_ctx.rid = ntohl (ztn_msg->gns_header.r_id);
967   ztn_ctx.nc = nc;
968   ztn_ctx.success = GNUNET_NO;
969   if (GNUNET_SYSERR ==
970       GSN_database->zone_to_name (GSN_database->cls,
971                                   &ztn_msg->zone,
972                                   &ztn_msg->value_zone,
973                                   &handle_zone_to_name_it, &ztn_ctx))
974   {
975     /* internal error, hang up instead of signalling something
976        that might be wrong */
977     GNUNET_break (0);
978     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
979     return;
980   }
981   if (GNUNET_NO == ztn_ctx.success)
982   {
983     /* no result found, send empty response */
984     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
985                 "Found no result for zone-to-name lookup.\n");
986     memset (&ztnr_msg, 0, sizeof (ztnr_msg));
987     ztnr_msg.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE);
988     ztnr_msg.gns_header.header.size = htons (sizeof (ztnr_msg));
989     ztnr_msg.gns_header.r_id = ztn_msg->gns_header.r_id;
990     ztnr_msg.res = htons (GNUNET_NO);
991     GNUNET_SERVER_notification_context_unicast (snc,
992                                                 client,
993                                                 &ztnr_msg.gns_header.header,
994                                                 GNUNET_NO);
995   }
996   GNUNET_SERVER_receive_done (client, GNUNET_OK);
997 }
998
999
1000 /**
1001  * Zone iteration processor result
1002  */
1003 enum ZoneIterationResult
1004 {
1005   /**
1006    * Iteration start.
1007    */
1008   IT_START = 0,
1009
1010   /**
1011    * Found records,
1012    * Continue to iterate with next iteration_next call
1013    */
1014   IT_SUCCESS_MORE_AVAILABLE = 1,
1015
1016   /**
1017    * Iteration complete
1018    */
1019   IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE = 2
1020 };
1021
1022
1023 /**
1024  * Context for record remove operations passed from
1025  * #run_zone_iteration_round to #zone_iterate_proc as closure
1026  */
1027 struct ZoneIterationProcResult
1028 {
1029   /**
1030    * The zone iteration handle
1031    */
1032   struct ZoneIteration *zi;
1033
1034   /**
1035    * Iteration result: iteration done?
1036    * #IT_SUCCESS_MORE_AVAILABLE:  if there may be more results overall but
1037    * we got one for now and have sent it to the client
1038    * #IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE: if there are no further results,
1039    * #IT_START: if we are still trying to find a result.
1040    */
1041   int res_iteration_finished;
1042
1043 };
1044
1045
1046 /**
1047  * Process results for zone iteration from database
1048  *
1049  * @param cls struct ZoneIterationProcResult *proc
1050  * @param zone_key the zone key
1051  * @param name name
1052  * @param rd_count number of records for this name
1053  * @param rd record data
1054  */
1055 static void
1056 zone_iterate_proc (void *cls,
1057                        const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
1058                        const char *name,
1059                        unsigned int rd_count,
1060                        const struct GNUNET_GNSRECORD_Data *rd)
1061 {
1062   struct ZoneIterationProcResult *proc = cls;
1063   unsigned int i;
1064   int do_refresh_block;
1065
1066   if ((NULL == zone_key) && (NULL == name))
1067   {
1068     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1069                 "Iteration done\n");
1070     proc->res_iteration_finished = IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE;
1071     return;
1072   }
1073   if ((NULL == zone_key) || (NULL == name))
1074   {
1075     /* what is this!? should never happen */
1076     proc->res_iteration_finished = IT_START;
1077     GNUNET_break (0);
1078     return;
1079   }
1080   proc->res_iteration_finished = IT_SUCCESS_MORE_AVAILABLE;
1081   send_lookup_response (snc,
1082                         proc->zi->client->client,
1083                         proc->zi->request_id,
1084                         zone_key,
1085                         name,
1086                         rd_count,
1087                         rd);
1088   do_refresh_block = GNUNET_NO;
1089   for (i=0;i<rd_count;i++)
1090     if(  (0 != (rd[i].flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION)) &&
1091          (0 == (rd[i].flags & GNUNET_GNSRECORD_RF_PENDING)) )
1092     {
1093       do_refresh_block = GNUNET_YES;
1094       break;
1095     }
1096   if (GNUNET_YES == do_refresh_block)
1097     refresh_block (NULL, 0,
1098                    zone_key,
1099                    name,
1100                    rd_count,
1101                    rd);
1102
1103 }
1104
1105
1106 /**
1107  * Perform the next round of the zone iteration.
1108  *
1109  * @param zi zone iterator to process
1110  */
1111 static void
1112 run_zone_iteration_round (struct ZoneIteration *zi)
1113 {
1114   struct ZoneIterationProcResult proc;
1115   struct RecordResultMessage rrm;
1116   int ret;
1117
1118   memset (&proc, 0, sizeof (proc));
1119   proc.zi = zi;
1120   proc.res_iteration_finished = IT_START;
1121   while (IT_START == proc.res_iteration_finished)
1122   {
1123     if (GNUNET_SYSERR ==
1124         (ret = GSN_database->iterate_records (GSN_database->cls,
1125                                               (0 == memcmp (&zi->zone, &zero, sizeof (zero)))
1126                                               ? NULL
1127                                               : &zi->zone,
1128                                               zi->offset,
1129                                               &zone_iterate_proc, &proc)))
1130     {
1131       GNUNET_break (0);
1132       break;
1133     }
1134     if (GNUNET_NO == ret)
1135       proc.res_iteration_finished = IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE;
1136     zi->offset++;
1137   }
1138   if (IT_SUCCESS_MORE_AVAILABLE == proc.res_iteration_finished)
1139   {
1140     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1141                 "More results available\n");
1142     return; /* more results later */
1143   }
1144   /* send empty response to indicate end of list */
1145   memset (&rrm, 0, sizeof (rrm));
1146   rrm.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT);
1147   rrm.gns_header.header.size = htons (sizeof (rrm));
1148   rrm.gns_header.r_id = htonl (zi->request_id);
1149   GNUNET_SERVER_notification_context_unicast (snc,
1150                                               zi->client->client,
1151                                               &rrm.gns_header.header,
1152                                               GNUNET_NO);
1153   GNUNET_CONTAINER_DLL_remove (zi->client->op_head,
1154                                zi->client->op_tail,
1155                                zi);
1156   GNUNET_free (zi);
1157 }
1158
1159
1160 /**
1161  * Handles a #GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START message
1162  *
1163  * @param cls unused
1164  * @param client the client sending the message
1165  * @param message message of type 'struct ZoneIterationStartMessage'
1166  */
1167 static void
1168 handle_iteration_start (void *cls,
1169                         struct GNUNET_SERVER_Client *client,
1170                         const struct GNUNET_MessageHeader *message)
1171 {
1172   const struct ZoneIterationStartMessage *zis_msg;
1173   struct NamestoreClient *nc;
1174   struct ZoneIteration *zi;
1175
1176   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "ZONE_ITERATION_START");
1177   if (NULL == (nc = client_lookup (client)))
1178   {
1179     GNUNET_break (0);
1180     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1181     return;
1182   }
1183   zis_msg = (const struct ZoneIterationStartMessage *) message;
1184   zi = GNUNET_new (struct ZoneIteration);
1185   zi->request_id = ntohl (zis_msg->gns_header.r_id);
1186   zi->offset = 0;
1187   zi->client = nc;
1188   zi->zone = zis_msg->zone;
1189   GNUNET_CONTAINER_DLL_insert (nc->op_head, nc->op_tail, zi);
1190   run_zone_iteration_round (zi);
1191   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1192 }
1193
1194
1195 /**
1196  * Handles a #GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP message
1197  *
1198  * @param cls unused
1199  * @param client GNUNET_SERVER_Client sending the message
1200  * @param message message of type 'struct ZoneIterationStopMessage'
1201  */
1202 static void
1203 handle_iteration_stop (void *cls,
1204                        struct GNUNET_SERVER_Client *client,
1205                        const struct GNUNET_MessageHeader *message)
1206 {
1207   struct NamestoreClient *nc;
1208   struct ZoneIteration *zi;
1209   const struct ZoneIterationStopMessage *zis_msg;
1210   uint32_t rid;
1211
1212   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1213               "Received `%s' message\n",
1214               "ZONE_ITERATION_STOP");
1215   if (NULL == (nc = client_lookup(client)))
1216   {
1217     GNUNET_break (0);
1218     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1219     return;
1220   }
1221   zis_msg = (const struct ZoneIterationStopMessage *) message;
1222   rid = ntohl (zis_msg->gns_header.r_id);
1223   for (zi = nc->op_head; NULL != zi; zi = zi->next)
1224     if (zi->request_id == rid)
1225       break;
1226   if (NULL == zi)
1227   {
1228     GNUNET_break (0);
1229     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1230     return;
1231   }
1232   GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, zi);
1233   GNUNET_free (zi);
1234   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1235 }
1236
1237
1238 /**
1239  * Handles a #GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT message
1240  *
1241  * @param cls unused
1242  * @param client GNUNET_SERVER_Client sending the message
1243  * @param message message of type 'struct ZoneIterationNextMessage'
1244  */
1245 static void
1246 handle_iteration_next (void *cls,
1247                        struct GNUNET_SERVER_Client *client,
1248                        const struct GNUNET_MessageHeader *message)
1249 {
1250   struct NamestoreClient *nc;
1251   struct ZoneIteration *zi;
1252   const struct ZoneIterationNextMessage *zis_msg;
1253   uint32_t rid;
1254
1255   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1256               "Received `%s' message\n",
1257               "ZONE_ITERATION_NEXT");
1258   if (NULL == (nc = client_lookup(client)))
1259   {
1260     GNUNET_break (0);
1261     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1262     return;
1263   }
1264   zis_msg = (const struct ZoneIterationNextMessage *) message;
1265   rid = ntohl (zis_msg->gns_header.r_id);
1266   for (zi = nc->op_head; NULL != zi; zi = zi->next)
1267     if (zi->request_id == rid)
1268       break;
1269   if (NULL == zi)
1270   {
1271     GNUNET_break (0);
1272     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1273     return;
1274   }
1275   run_zone_iteration_round (zi);
1276   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1277 }
1278
1279
1280 /**
1281  * Send 'sync' message to zone monitor, we're now in sync.
1282  *
1283  * @param zm monitor that is now in sync
1284  */
1285 static void
1286 monitor_sync (struct ZoneMonitor *zm)
1287 {
1288   struct GNUNET_MessageHeader sync;
1289
1290   sync.size = htons (sizeof (struct GNUNET_MessageHeader));
1291   sync.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_SYNC);
1292   GNUNET_SERVER_notification_context_unicast (monitor_nc,
1293                                               zm->nc->client,
1294                                               &sync,
1295                                               GNUNET_NO);
1296 }
1297
1298
1299 /**
1300  * Obtain the next datum during the zone monitor's zone intiial iteration.
1301  *
1302  * @param cls zone monitor that does its initial iteration
1303  * @param tc scheduler context
1304  */
1305 static void
1306 monitor_next (void *cls,
1307               const struct GNUNET_SCHEDULER_TaskContext *tc);
1308
1309
1310 /**
1311  * A #GNUNET_NAMESTORE_RecordIterator for monitors.
1312  *
1313  * @param cls a 'struct ZoneMonitor *' with information about the monitor
1314  * @param zone_key zone key of the zone
1315  * @param name name
1316  * @param rd_count number of records in @a rd
1317  * @param rd array of records
1318  */
1319 static void
1320 monitor_iterate_cb (void *cls,
1321                     const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
1322                     const char *name,
1323                     unsigned int rd_count,
1324                     const struct GNUNET_GNSRECORD_Data *rd)
1325 {
1326   struct ZoneMonitor *zm = cls;
1327
1328   if (NULL == name)
1329   {
1330     /* finished with iteration */
1331     monitor_sync (zm);
1332     return;
1333   }
1334   send_lookup_response (monitor_nc,
1335                         zm->nc->client,
1336                         0,
1337                         zone_key,
1338                         name,
1339                         rd_count,
1340                         rd);
1341   zm->task = GNUNET_SCHEDULER_add_now (&monitor_next, zm);
1342 }
1343
1344
1345 /**
1346  * Handles a #GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START message
1347  *
1348  * @param cls unused
1349  * @param client the client sending the message
1350  * @param message message of type 'struct ZoneMonitorStartMessage'
1351  */
1352 static void
1353 handle_monitor_start (void *cls,
1354                       struct GNUNET_SERVER_Client *client,
1355                       const struct GNUNET_MessageHeader *message)
1356 {
1357   const struct ZoneMonitorStartMessage *zis_msg;
1358   struct ZoneMonitor *zm;
1359
1360   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1361               "Received `%s' message\n",
1362               "ZONE_MONITOR_START");
1363   zis_msg = (const struct ZoneMonitorStartMessage *) message;
1364   zm = GNUNET_new (struct ZoneMonitor);
1365   zm->offset = 0;
1366   zm->nc = client_lookup (client);
1367   zm->zone = zis_msg->zone;
1368   GNUNET_CONTAINER_DLL_insert (monitor_head, monitor_tail, zm);
1369   GNUNET_SERVER_client_mark_monitor (client);
1370   GNUNET_SERVER_disable_receive_done_warning (client);
1371   GNUNET_SERVER_notification_context_add (monitor_nc,
1372                                           client);
1373   if (GNUNET_YES == ntohl (zis_msg->iterate_first))
1374     zm->task = GNUNET_SCHEDULER_add_now (&monitor_next, zm);
1375   else
1376     monitor_sync (zm);
1377 }
1378
1379
1380 /**
1381  * Obtain the next datum during the zone monitor's zone intiial iteration.
1382  *
1383  * @param cls zone monitor that does its initial iteration
1384  * @param tc scheduler context
1385  */
1386 static void
1387 monitor_next (void *cls,
1388               const struct GNUNET_SCHEDULER_TaskContext *tc)
1389 {
1390   struct ZoneMonitor *zm = cls;
1391   int ret;
1392
1393   zm->task = GNUNET_SCHEDULER_NO_TASK;
1394   ret = GSN_database->iterate_records (GSN_database->cls,
1395                                        (0 == memcmp (&zm->zone, &zero, sizeof (zero)))
1396                                        ? NULL
1397                                        : &zm->zone,
1398                                        zm->offset++,
1399                                        &monitor_iterate_cb, zm);
1400   if (GNUNET_SYSERR == ret)
1401   {
1402     GNUNET_SERVER_client_disconnect (zm->nc->client);
1403     return;
1404   }
1405   if (GNUNET_NO == ret)
1406   {
1407     /* empty zone */
1408     monitor_sync (zm);
1409     return;
1410   }
1411 }
1412
1413
1414 /**
1415  * Process namestore requests.
1416  *
1417  * @param cls closure
1418  * @param server the initialized server
1419  * @param cfg configuration to use
1420  */
1421 static void
1422 run (void *cls, struct GNUNET_SERVER_Handle *server,
1423      const struct GNUNET_CONFIGURATION_Handle *cfg)
1424 {
1425   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1426     {&handle_record_store, NULL,
1427      GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE, 0},
1428     {&handle_record_lookup, NULL,
1429      GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP, 0},
1430     {&handle_zone_to_name, NULL,
1431      GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME, sizeof (struct ZoneToNameMessage) },
1432     {&handle_iteration_start, NULL,
1433      GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START, sizeof (struct ZoneIterationStartMessage) },
1434     {&handle_iteration_next, NULL,
1435      GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT, sizeof (struct ZoneIterationNextMessage) },
1436     {&handle_iteration_stop, NULL,
1437      GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP, sizeof (struct ZoneIterationStopMessage) },
1438     {&handle_monitor_start, NULL,
1439      GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START, sizeof (struct ZoneMonitorStartMessage) },
1440     {NULL, NULL, 0, 0}
1441   };
1442   char *database;
1443
1444   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting namestore service\n");
1445   GSN_cfg = cfg;
1446   monitor_nc = GNUNET_SERVER_notification_context_create (server, 1);
1447   namecache = GNUNET_NAMECACHE_connect (cfg);
1448   /* Loading database plugin */
1449   if (GNUNET_OK !=
1450       GNUNET_CONFIGURATION_get_value_string (cfg, "namestore", "database",
1451                                              &database))
1452     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
1453
1454   GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_namestore_%s", database);
1455   GSN_database = GNUNET_PLUGIN_load (db_lib_name, (void *) GSN_cfg);
1456   GNUNET_free (database);
1457   if (NULL == GSN_database)
1458   {
1459     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1460                 "Could not load database backend `%s'\n",
1461                 db_lib_name);
1462     GNUNET_SCHEDULER_add_now (&cleanup_task, NULL);
1463     return;
1464   }
1465
1466   /* Configuring server handles */
1467   GNUNET_SERVER_add_handlers (server, handlers);
1468   snc = GNUNET_SERVER_notification_context_create (server, 16);
1469   GNUNET_SERVER_disconnect_notify (server,
1470                                    &client_disconnect_notification,
1471                                    NULL);
1472   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup_task,
1473                                 NULL);
1474 }
1475
1476
1477 /**
1478  * The main function for the template service.
1479  *
1480  * @param argc number of arguments from the command line
1481  * @param argv command line arguments
1482  * @return 0 ok, 1 on error
1483  */
1484 int
1485 main (int argc, char *const *argv)
1486 {
1487   return (GNUNET_OK ==
1488           GNUNET_SERVICE_run (argc, argv, "namestore",
1489                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
1490 }
1491
1492 /* end of gnunet-service-namestore.c */
1493