nametore api change
[oweals/gnunet.git] / src / namestore / gnunet-service-namestore.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 /**
22  * @file namestore/gnunet-service-namestore.c
23  * @brief namestore for the GNUnet naming system
24  * @author Matthias Wachs
25  */
26 #include "platform.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_service_lib.h"
29 #include "gnunet_namestore_service.h"
30 #include "gnunet_namestore_plugin.h"
31 #include "namestore.h"
32
33
34
35 /**
36  * A namestore operation.
37  */
38 struct GNUNET_NAMESTORE_ZoneIteration
39 {
40   struct GNUNET_NAMESTORE_ZoneIteration *next;
41   struct GNUNET_NAMESTORE_ZoneIteration *prev;
42
43   struct GNUNET_NAMESTORE_Client * client;
44
45   GNUNET_HashCode zone;
46
47   uint64_t op_id;
48   uint32_t offset;
49
50 };
51
52
53 /**
54  * A namestore client
55  */
56 struct GNUNET_NAMESTORE_Client
57 {
58   struct GNUNET_NAMESTORE_Client *next;
59   struct GNUNET_NAMESTORE_Client *prev;
60
61   struct GNUNET_SERVER_Client * client;
62
63   struct GNUNET_NAMESTORE_ZoneIteration *op_head;
64   struct GNUNET_NAMESTORE_ZoneIteration *op_tail;
65 };
66
67
68
69 /**
70  * Configuration handle.
71  */
72 const struct GNUNET_CONFIGURATION_Handle *GSN_cfg;
73
74 static struct GNUNET_NAMESTORE_PluginFunctions *GSN_database;
75
76 /**
77  * Our notification context.
78  */
79 static struct GNUNET_SERVER_NotificationContext *snc;
80
81 static char *db_lib_name;
82
83 static struct GNUNET_NAMESTORE_Client *client_head;
84 static struct GNUNET_NAMESTORE_Client *client_tail;
85
86
87 /**
88  * Task run during shutdown.
89  *
90  * @param cls unused
91  * @param tc unused
92  */
93 static void
94 cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
95 {
96   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping namestore service\n");
97
98   struct GNUNET_NAMESTORE_ZoneIteration * no;
99   struct GNUNET_NAMESTORE_ZoneIteration * tmp;
100   struct GNUNET_NAMESTORE_Client * nc;
101   struct GNUNET_NAMESTORE_Client * next;
102
103   for (nc = client_head; nc != NULL; nc = next)
104   {
105     next = nc->next;
106     for (no = nc->op_head; no != NULL; no = tmp)
107     {
108       GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, no);
109       tmp = no->next;
110       GNUNET_free (no);
111     }
112
113     GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc);
114     GNUNET_free (nc);
115
116   }
117
118   GNUNET_SERVER_notification_context_destroy (snc);
119   snc = NULL;
120
121   GNUNET_break (NULL == GNUNET_PLUGIN_unload (db_lib_name, GSN_database));
122   GNUNET_free (db_lib_name);
123 }
124
125 static struct GNUNET_NAMESTORE_Client *
126 client_lookup (struct GNUNET_SERVER_Client *client)
127 {
128   struct GNUNET_NAMESTORE_Client * nc;
129
130   GNUNET_assert (NULL != client);
131
132   for (nc = client_head; nc != NULL; nc = nc->next)
133   {
134     if (client == nc->client)
135       break;
136   }
137   return nc;
138 }
139
140
141 /**
142  * Called whenever a client is disconnected.  Frees our
143  * resources associated with that client.
144  *
145  * @param cls closure
146  * @param client identification of the client
147  */
148 static void
149 client_disconnect_notification (void *cls, struct GNUNET_SERVER_Client *client)
150 {
151   struct GNUNET_NAMESTORE_ZoneIteration * no;
152   struct GNUNET_NAMESTORE_Client * nc;
153   if (NULL == client)
154     return;
155
156   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Client %p disconnected \n", client);
157
158   nc = client_lookup (client);
159
160   if ((NULL == client) || (NULL == nc))
161     return;
162
163   for (no = nc->op_head; no != NULL; no = no->next)
164   {
165     GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, no);
166     GNUNET_free (no);
167   }
168
169   GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc);
170   GNUNET_free (nc);
171 }
172
173 static void handle_start (void *cls,
174                           struct GNUNET_SERVER_Client * client,
175                           const struct GNUNET_MessageHeader * message)
176 {
177   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Client %p connected\n", client);
178
179   struct GNUNET_NAMESTORE_Client * nc = GNUNET_malloc (sizeof (struct GNUNET_NAMESTORE_Client));
180   nc->client = client;
181   GNUNET_SERVER_notification_context_add (snc, client);
182   GNUNET_CONTAINER_DLL_insert(client_head, client_tail, nc);
183
184   GNUNET_SERVER_receive_done (client, GNUNET_OK);
185 }
186
187 struct LookupNameContext
188 {
189   struct GNUNET_NAMESTORE_Client *nc;
190   uint32_t id;
191   uint32_t record_type;
192 };
193
194
195
196
197 static void
198 handle_lookup_name_it (void *cls,
199     const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
200     struct GNUNET_TIME_Absolute expire,
201     const char *name,
202     unsigned int rd_count,
203     const struct GNUNET_NAMESTORE_RecordData *rd,
204     const struct GNUNET_CRYPTO_RsaSignature *signature)
205 {
206   /* send response */
207   struct LookupNameContext *lnc = cls;
208   struct LookupNameResponseMessage *lnr_msg;
209
210   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key_tmp;
211   struct GNUNET_NAMESTORE_RecordData *rd_selected = NULL;
212   char *rd_tmp;
213   char *name_tmp;
214   char *rd_ser;
215   size_t rd_ser_len;
216   struct GNUNET_CRYPTO_RsaSignature *signature_tmp;
217
218   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message\n", "NAMESTORE_LOOKUP_NAME_RESPONSE");
219
220   size_t r_size = 0;
221
222   size_t name_len = 0;
223   if (NULL != name)
224     name_len = strlen(name) + 1;
225
226   int copied_elements = 0;
227   int contains_signature = 0;
228   int c;
229
230   /* count records to copy */
231   if (rd_count != 0)
232   {
233     if (lnc->record_type != 0)
234     {
235       /* special record type needed */
236       for (c = 0; c < rd_count; c ++)
237         if (rd[c].record_type == lnc->record_type)
238           copied_elements++; /* found matching record */
239       rd_selected = GNUNET_malloc (copied_elements * sizeof (struct GNUNET_NAMESTORE_RecordData));
240       copied_elements = 0;
241       for (c = 0; c < rd_count; c ++)
242       {
243         if (rd[c].record_type == lnc->record_type)
244         {
245           /* found matching record */
246           memcpy (&rd_selected[copied_elements], &rd[c], sizeof (struct GNUNET_NAMESTORE_RecordData));
247           copied_elements++;
248         }
249       }
250     }
251     else
252     {
253       copied_elements = rd_count;
254       rd_selected = (struct GNUNET_NAMESTORE_RecordData *) rd;
255     }
256     rd_ser_len = GNUNET_NAMESTORE_records_serialize(&rd_ser, copied_elements, rd_selected);
257   }
258   else
259   {
260     /* No results */
261     copied_elements = 0;
262     rd_selected = NULL;
263     rd_ser = NULL;
264     rd_ser_len = 0;
265   }
266
267   if ((copied_elements == rd_count) && (signature != NULL))
268       contains_signature = GNUNET_YES;
269
270   if (rd_selected != rd)
271     GNUNET_free (rd_selected);
272
273   r_size = sizeof (struct LookupNameResponseMessage) +
274            sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded) +
275            name_len +
276            rd_ser_len +
277            contains_signature * sizeof (struct GNUNET_CRYPTO_RsaSignature);
278
279   lnr_msg = GNUNET_malloc (r_size);
280
281   lnr_msg->header.type = ntohs (GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME_RESPONSE);
282   lnr_msg->header.size = ntohs (r_size);
283   lnr_msg->op_id = htonl (lnc->id);
284   lnr_msg->rd_len = htonl (rd_ser_len);
285   lnr_msg->name_len = htons (name_len);
286   lnr_msg->expire = GNUNET_TIME_absolute_hton(expire);
287   lnr_msg->contains_sig = htons (contains_signature);
288
289   zone_key_tmp =  (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *) &lnr_msg[1];
290   name_tmp = (char *) &zone_key_tmp[1];
291   rd_tmp = &name_tmp[name_len];
292   signature_tmp = (struct GNUNET_CRYPTO_RsaSignature *) &rd_tmp[rd_ser_len];
293
294   if (zone_key != NULL)
295     memcpy (zone_key_tmp, zone_key, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
296   else
297   {
298     struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded dummy;
299     memset (&dummy, '0', sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
300     memcpy (zone_key_tmp, &dummy, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
301   }
302   memcpy (name_tmp, name, name_len);
303   memcpy (rd_tmp, rd_ser, rd_ser_len);
304   GNUNET_free_non_null (rd_ser);
305
306   if (GNUNET_YES == contains_signature)
307     memcpy (signature_tmp, signature, sizeof (struct GNUNET_CRYPTO_RsaSignature));
308   GNUNET_SERVER_notification_context_unicast (snc, lnc->nc->client, (const struct GNUNET_MessageHeader *) lnr_msg, GNUNET_NO);
309
310   GNUNET_free (lnr_msg);
311 }
312
313 static void handle_lookup_name (void *cls,
314                           struct GNUNET_SERVER_Client * client,
315                           const struct GNUNET_MessageHeader * message)
316 {
317   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "NAMESTORE_LOOKUP_NAME");
318   struct LookupNameContext lnc;
319   struct GNUNET_NAMESTORE_Client *nc;
320   size_t name_len;
321   char * name;
322   uint32_t id = 0;
323   uint32_t type = 0;
324   int res;
325
326   if (ntohs (message->size) < sizeof (struct LookupNameMessage))
327   {
328     GNUNET_break_op (0);
329     GNUNET_SERVER_receive_done (client, GNUNET_OK);
330     return;
331   }
332
333   nc = client_lookup(client);
334   if (nc == NULL)
335   {
336     GNUNET_break_op (0);
337     GNUNET_SERVER_receive_done (client, GNUNET_OK);
338     return;
339   }
340
341   struct LookupNameMessage * ln_msg = (struct LookupNameMessage *) message;
342   id = ntohl (ln_msg->op_id);
343   name_len = ntohl (ln_msg->name_len);
344   type = ntohl (ln_msg->record_type);
345
346   if ((name_len == 0) || (name_len > 256))
347   {
348     GNUNET_break_op (0);
349     GNUNET_SERVER_receive_done (client, GNUNET_OK);
350     return;
351   }
352
353   name = (char *) &ln_msg[1];
354   if (name[name_len -1] != '\0')
355   {
356     GNUNET_break_op (0);
357     GNUNET_SERVER_receive_done (client, GNUNET_OK);
358     return;
359   }
360
361   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Looking up record for name `%s'\n", name);
362
363   /* do the actual lookup */
364   lnc.id = id;
365   lnc.nc = nc;
366   lnc.record_type = type;
367   res = GSN_database->iterate_records(GSN_database->cls, &ln_msg->zone, name, 0, &handle_lookup_name_it, &lnc);
368
369   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "ITERATE RESULTS: %u\n" , res);
370
371   GNUNET_SERVER_receive_done (client, GNUNET_OK);
372 }
373
374 static void handle_record_put (void *cls,
375                           struct GNUNET_SERVER_Client * client,
376                           const struct GNUNET_MessageHeader * message)
377 {
378   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "NAMESTORE_RECORD_PUT");
379   struct GNUNET_NAMESTORE_Client *nc;
380   struct GNUNET_TIME_Absolute expire;
381   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key;
382   struct GNUNET_NAMESTORE_RecordData *rd;
383   struct GNUNET_CRYPTO_RsaSignature *signature;
384   struct RecordPutResponseMessage rpr_msg;
385   size_t name_len;
386   size_t msg_size;
387   size_t msg_size_exp;
388   char * name;
389   char * rd_ser;
390   uint32_t id = 0;
391   uint32_t rd_ser_len;
392   uint32_t rd_count;
393   int res = GNUNET_SYSERR;
394
395   if (ntohs (message->size) < sizeof (struct RecordPutMessage))
396   {
397     GNUNET_break_op (0);
398     GNUNET_SERVER_receive_done (client, GNUNET_OK);
399     return;
400   }
401
402   nc = client_lookup (client);
403   if (nc == NULL)
404   {
405     GNUNET_break_op (0);
406     GNUNET_SERVER_receive_done (client, GNUNET_OK);
407     return;
408   }
409
410   struct RecordPutMessage * rp_msg = (struct RecordPutMessage *) message;
411   id = ntohl (rp_msg->op_id);
412   name_len = ntohs (rp_msg->name_len);
413   rd_ser_len = ntohs(rp_msg->rd_len);
414   msg_size = ntohs (message->size);
415   msg_size_exp = sizeof (struct RecordPutMessage) + sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded) + name_len  + rd_ser_len;
416
417   if (msg_size != msg_size_exp)
418   {
419     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Expected message %u size but message size is %u \n", msg_size_exp, msg_size);
420     GNUNET_break_op (0);
421     GNUNET_SERVER_receive_done (client, GNUNET_OK);
422     return;
423   }
424
425
426   if ((name_len == 0) || (name_len > 256))
427   {
428     GNUNET_break_op (0);
429     GNUNET_SERVER_receive_done (client, GNUNET_OK);
430     return;
431   }
432
433   zone_key = (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *) &rp_msg[1];
434   name = (char *) &zone_key[1];
435   expire = GNUNET_TIME_absolute_ntoh(rp_msg->expire);
436   signature = (struct GNUNET_CRYPTO_RsaSignature *) &rp_msg->signature;
437   rd_ser = &name[name_len];
438   rd_count = GNUNET_NAMESTORE_records_deserialize(&rd, rd_ser, rd_ser_len);
439
440   /* Database operation */
441   res = GSN_database->put_records(GSN_database->cls,
442                                 zone_key,
443                                 expire,
444                                 name,
445                                 rd_count, rd,
446                                 signature);
447
448   GNUNET_NAMESTORE_records_free (rd_count, rd);
449
450   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Putting record for name `%s': %s\n",
451       name, (res == GNUNET_OK) ? "OK" : "FAIL");
452
453   /* Send response */
454
455   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message\n", "RECORD_PUT_RESPONSE");
456   rpr_msg.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_PUT_RESPONSE);
457   rpr_msg.op_id = rp_msg->op_id;
458   rpr_msg.header.size = htons (sizeof (struct RecordPutResponseMessage));
459   if (GNUNET_OK == res)
460     rpr_msg.op_result = htons (GNUNET_OK);
461   else
462     rpr_msg.op_result = htons (GNUNET_NO);
463   GNUNET_SERVER_notification_context_unicast (snc, nc->client, (const struct GNUNET_MessageHeader *) &rpr_msg, GNUNET_NO);
464
465   GNUNET_SERVER_receive_done (client, GNUNET_OK);
466 }
467
468
469 static void handle_record_create (void *cls,
470                           struct GNUNET_SERVER_Client * client,
471                           const struct GNUNET_MessageHeader * message)
472 {
473   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "NAMESTORE_RECORD_CREATE");
474   struct GNUNET_NAMESTORE_Client *nc;
475   struct RecordCreateResponseMessage rcr_msg;
476   size_t name_len;
477   size_t msg_size;
478   size_t msg_size_exp;
479   uint32_t id = 0;
480
481   int res = GNUNET_SYSERR;
482
483   if (ntohs (message->size) < sizeof (struct RecordCreateMessage))
484   {
485     GNUNET_break_op (0);
486     GNUNET_SERVER_receive_done (client, GNUNET_OK);
487     return;
488   }
489
490   nc = client_lookup(client);
491   if (nc == NULL)
492   {
493     GNUNET_break_op (0);
494     GNUNET_SERVER_receive_done (client, GNUNET_OK);
495     return;
496   }
497
498   struct RecordCreateMessage * rp_msg = (struct RecordCreateMessage *) message;
499   id = ntohl (rp_msg->op_id);
500   name_len = ntohs (rp_msg->name_len);
501   msg_size = ntohs (message->size);
502   msg_size_exp = sizeof (struct RecordCreateMessage) + name_len + sizeof (struct GNUNET_NAMESTORE_RecordData);
503
504   if (msg_size != msg_size_exp)
505   {
506     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Expected message %u size but message size is %u \n", msg_size_exp, msg_size);
507     GNUNET_break_op (0);
508     GNUNET_SERVER_receive_done (client, GNUNET_OK);
509     return;
510   }
511
512
513   if ((name_len == 0) || (name_len > 256))
514   {
515     GNUNET_break_op (0);
516     GNUNET_SERVER_receive_done (client, GNUNET_OK);
517     return;
518   }
519
520   /* DO WORK HERE */
521
522   /* Send response */
523
524   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message\n", "RECORD_CREATE_RESPONSE");
525   rcr_msg.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_CREATE_RESPONSE);
526   rcr_msg.op_id = rp_msg->op_id;
527   rcr_msg.header.size = htons (sizeof (struct RecordCreateResponseMessage));
528   if (GNUNET_OK == res)
529     rcr_msg.op_result = htons (GNUNET_OK);
530   else
531     rcr_msg.op_result = htons (GNUNET_NO);
532   GNUNET_SERVER_notification_context_unicast (snc, nc->client, (const struct GNUNET_MessageHeader *) &rcr_msg, GNUNET_NO);
533
534   GNUNET_SERVER_receive_done (client, GNUNET_OK);
535 }
536
537 static void handle_record_remove (void *cls,
538                           struct GNUNET_SERVER_Client * client,
539                           const struct GNUNET_MessageHeader * message)
540 {
541   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "NAMESTORE_RECORD_REMOVE");
542   struct GNUNET_NAMESTORE_Client *nc;
543   struct RecordRemoveResponseMessage rrr_msg;
544   size_t name_len;
545   size_t msg_size;
546   size_t msg_size_exp;
547   uint32_t id = 0;
548
549   int res = GNUNET_SYSERR;
550
551   if (ntohs (message->size) < sizeof (struct RecordRemoveMessage))
552   {
553     GNUNET_break_op (0);
554     GNUNET_SERVER_receive_done (client, GNUNET_OK);
555     return;
556   }
557
558   nc = client_lookup(client);
559   if (nc == NULL)
560   {
561     GNUNET_break_op (0);
562     GNUNET_SERVER_receive_done (client, GNUNET_OK);
563     return;
564   }
565
566   struct RecordRemoveMessage * rp_msg = (struct RecordRemoveMessage *) message;
567   id = ntohl (rp_msg->op_id);
568   name_len = ntohs (rp_msg->name_len);
569   msg_size = ntohs (message->size);
570   msg_size_exp = sizeof (struct RecordRemoveMessage) + name_len + sizeof (struct GNUNET_NAMESTORE_RecordData);
571
572   if (msg_size != msg_size_exp)
573   {
574     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Expected message %u size but message size is %u \n", msg_size_exp, msg_size);
575     GNUNET_break_op (0);
576     GNUNET_SERVER_receive_done (client, GNUNET_OK);
577     return;
578   }
579
580
581   if ((name_len == 0) || (name_len > 256))
582   {
583     GNUNET_break_op (0);
584     GNUNET_SERVER_receive_done (client, GNUNET_OK);
585     return;
586   }
587
588   /* DO WORK HERE */
589
590   /* Send response */
591
592   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message\n", "RECORD_REMOVE_RESPONSE");
593   rrr_msg.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_REMOVE_RESPONSE);
594   rrr_msg.op_id = rp_msg->op_id;
595   rrr_msg.header.size = htons (sizeof (struct RecordRemoveResponseMessage));
596   if (GNUNET_OK == res)
597     rrr_msg.op_result = htons (GNUNET_OK);
598   else
599     rrr_msg.op_result = htons (GNUNET_NO);
600   GNUNET_SERVER_notification_context_unicast (snc, nc->client, (const struct GNUNET_MessageHeader *) &rrr_msg, GNUNET_NO);
601
602   GNUNET_SERVER_receive_done (client, GNUNET_OK);
603 }
604
605 struct ZoneIterationProcResult
606 {
607   int have_zone_key;
608   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded zone_key;
609
610   int have_signature;
611   struct GNUNET_CRYPTO_RsaSignature signature;
612   struct GNUNET_TIME_Absolute expire;
613
614   int have_name;
615   char name[256];
616
617   size_t rd_ser_len;
618   char *rd_ser;
619 };
620
621
622 void zone_iteration_proc (void *cls,
623                          const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
624                          struct GNUNET_TIME_Absolute expire,
625                          const char *name,
626                          unsigned int rd_count,
627                          const struct GNUNET_NAMESTORE_RecordData *rd,
628                          const struct GNUNET_CRYPTO_RsaSignature *signature)
629 {
630   struct ZoneIterationProcResult *zipr = cls;
631   size_t len;
632   if (zone_key != NULL)
633   {
634     zipr->zone_key = *zone_key;
635     zipr->have_zone_key = GNUNET_YES;
636   }
637   else
638     zipr->have_zone_key = GNUNET_NO;
639
640   zipr->expire = expire;
641
642   if (name != NULL)
643   {
644     memcpy (zipr->name, name, strlen(name) + 1);
645     zipr->have_name = GNUNET_YES;
646   }
647   else
648     zipr->have_name = GNUNET_NO;
649
650   if (signature != NULL)
651   {
652     zipr->signature = *signature;
653     zipr->have_signature = GNUNET_YES;
654   }
655   else
656     zipr->have_signature = GNUNET_NO;
657
658   if ((rd_count > 0) && (rd != NULL))
659   {
660     len = GNUNET_NAMESTORE_records_serialize (&zipr->rd_ser, rd_count, rd);
661     zipr->rd_ser_len = len;
662   }
663 }
664
665 static void handle_iteration_start (void *cls,
666                           struct GNUNET_SERVER_Client * client,
667                           const struct GNUNET_MessageHeader * message)
668 {
669   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "ZONE_ITERATION_START");
670
671   struct ZoneIterationStartMessage * zis_msg = (struct ZoneIterationStartMessage *) message;
672   struct GNUNET_NAMESTORE_Client *nc;
673   struct GNUNET_NAMESTORE_ZoneIteration *zi;
674   struct ZoneIterationResponseMessage zir_msg;
675   struct ZoneIterationProcResult zipr;
676   int res;
677
678   nc = client_lookup(client);
679   if (nc == NULL)
680   {
681     GNUNET_break_op (0);
682     GNUNET_SERVER_receive_done (client, GNUNET_OK);
683     return;
684   }
685
686   zi = GNUNET_malloc (sizeof (struct GNUNET_NAMESTORE_ZoneIteration));
687   zi->op_id = ntohl (zis_msg->op_id);
688   zi->offset = 0;
689   zi->client = nc;
690   zi->zone = zis_msg->zone;
691
692   GNUNET_CONTAINER_DLL_insert (nc->op_head, nc->op_tail, zi);
693
694   res = GSN_database->iterate_records (GSN_database->cls, &zis_msg->zone, NULL, zi->offset , &zone_iteration_proc, &zipr);
695   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "iterate_records result %u\n", res);
696   switch (res) {
697     case GNUNET_OK:
698       /* GNUNET_OK on success */
699
700       break;
701     case GNUNET_SYSERR:
702       /* GNUNET_SYSERR on error */
703       break;
704     case GNUNET_NO:
705       /* GNUNET_NO if there were no results, */
706       break;
707     default:
708       break;
709   }
710
711
712
713   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message\n", "ZONE_ITERATION_RESPONSE");
714   zir_msg.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_RESPONSE);
715   zir_msg.op_id = htonl(zi->op_id);
716   zir_msg.header.size = htons (sizeof (struct ZoneIterationResponseMessage));
717
718
719   GNUNET_SERVER_notification_context_unicast (snc, zi->client->client, (const struct GNUNET_MessageHeader *) &zir_msg, GNUNET_NO);
720
721
722   GNUNET_SERVER_receive_done (client, GNUNET_OK);
723 }
724
725 static void handle_iteration_stop (void *cls,
726                           struct GNUNET_SERVER_Client * client,
727                           const struct GNUNET_MessageHeader * message)
728 {
729   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "ZONE_ITERATION_STOP");
730
731   struct GNUNET_NAMESTORE_Client *nc;
732   struct GNUNET_NAMESTORE_ZoneIteration *zi;
733   struct ZoneIterationStopMessage * zis_msg = (struct ZoneIterationStopMessage *) message;
734   uint32_t id;
735
736   nc = client_lookup(client);
737   if (nc == NULL)
738   {
739     GNUNET_break_op (0);
740     GNUNET_SERVER_receive_done (client, GNUNET_OK);
741     return;
742   }
743
744   id = ntohl (zis_msg->op_id);
745   for (zi = nc->op_head; zi != NULL; zi = zi->next)
746   {
747     if (zi->op_id == id)
748       break;
749   }
750   if (zi == NULL)
751   {
752     GNUNET_break_op (0);
753     GNUNET_SERVER_receive_done (client, GNUNET_OK);
754     return;
755   }
756
757   GNUNET_CONTAINER_DLL_remove(nc->op_head, nc->op_tail, zi);
758   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopped zone iteration for zone `%s'\n", GNUNET_h2s (&zi->zone));
759   GNUNET_free (zi);
760
761   GNUNET_SERVER_receive_done (client, GNUNET_OK);
762 }
763
764 static void handle_iteration_next (void *cls,
765                           struct GNUNET_SERVER_Client * client,
766                           const struct GNUNET_MessageHeader * message)
767 {
768   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "ZONE_ITERATION_NEXT");
769
770   struct GNUNET_NAMESTORE_Client *nc;
771   struct GNUNET_NAMESTORE_ZoneIteration *zi;
772   struct ZoneIterationStopMessage * zis_msg = (struct ZoneIterationStopMessage *) message;
773   uint32_t id;
774   int res;
775
776   nc = client_lookup(client);
777   if (nc == NULL)
778   {
779     GNUNET_break_op (0);
780     GNUNET_SERVER_receive_done (client, GNUNET_OK);
781     return;
782   }
783
784   id = ntohl (zis_msg->op_id);
785   for (zi = nc->op_head; zi != NULL; zi = zi->next)
786   {
787     if (zi->op_id == id)
788       break;
789   }
790   if (zi == NULL)
791   {
792     GNUNET_break_op (0);
793     GNUNET_SERVER_receive_done (client, GNUNET_OK);
794     return;
795   }
796
797   zi->offset++;
798   res = GSN_database->iterate_records (GSN_database->cls, &zi->zone, NULL, zi->offset , &zone_iteration_proc, zi);
799 }
800
801
802
803 /**
804  * Process template requests.
805  *
806  * @param cls closure
807  * @param server the initialized server
808  * @param cfg configuration to use
809  */
810 static void
811 run (void *cls, struct GNUNET_SERVER_Handle *server,
812      const struct GNUNET_CONFIGURATION_Handle *cfg)
813 {
814   char * database;
815
816   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting namestore service\n");
817
818   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
819     {&handle_start, NULL,
820      GNUNET_MESSAGE_TYPE_NAMESTORE_START, sizeof (struct StartMessage)},
821     {&handle_lookup_name, NULL,
822      GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME, 0},
823     {&handle_record_put, NULL,
824     GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_PUT, 0},
825     {&handle_record_create, NULL,
826      GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_CREATE, 0},
827     {&handle_record_remove, NULL,
828      GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_REMOVE, 0},
829     {&handle_iteration_start, NULL,
830      GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START, sizeof (struct ZoneIterationStartMessage)},
831     {&handle_iteration_stop, NULL,
832      GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP, sizeof (struct ZoneIterationStopMessage)},
833     {&handle_iteration_next, NULL,
834      GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT, 0},
835     {NULL, NULL, 0, 0}
836   };
837
838   GSN_cfg = cfg;
839
840   /* Loading database plugin */
841   if (GNUNET_OK !=
842       GNUNET_CONFIGURATION_get_value_string (cfg, "namestore", "database",
843                                              &database))
844     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
845
846   GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_namestore_%s", database);
847   GSN_database = GNUNET_PLUGIN_load (db_lib_name, (void *) GSN_cfg);
848   if (GSN_database == NULL)
849     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not load database backend `%s'\n",
850         db_lib_name);
851   GNUNET_free (database);
852
853   /* Configuring server handles */
854   GNUNET_SERVER_add_handlers (server, handlers);
855   snc = GNUNET_SERVER_notification_context_create (server, 16);
856   GNUNET_SERVER_disconnect_notify (server,
857                                    &client_disconnect_notification,
858                                    NULL);
859
860   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup_task,
861                                 NULL);
862
863 }
864
865
866 /**
867  * The main function for the template service.
868  *
869  * @param argc number of arguments from the command line
870  * @param argv command line arguments
871  * @return 0 ok, 1 on error
872  */
873 int
874 main (int argc, char *const *argv)
875 {
876   return (GNUNET_OK ==
877           GNUNET_SERVICE_run (argc, argv, "namestore",
878                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
879 }
880
881 /* end of gnunet-service-namestore.c */