- step 1) compiles again
[oweals/gnunet.git] / src / namestore / namestore_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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/namestore_api.c
23  * @brief API to access the NAMESTORE service
24  * @author Martin Schanzenbach
25  * @author Matthias Wachs
26  */
27
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_crypto_lib.h"
31 #include "gnunet_constants.h"
32 #include "gnunet_dnsparser_lib.h"
33 #include "gnunet_arm_service.h"
34 #include "gnunet_signatures.h"
35 #include "gnunet_namestore_service.h"
36 #include "namestore.h"
37
38 #define DEBUG_GNS_API GNUNET_EXTRA_LOGGING
39
40 #define LOG(kind,...) GNUNET_log_from (kind, "gns-api",__VA_ARGS__)
41
42 /**
43  * A QueueEntry.
44  */
45 struct GNUNET_NAMESTORE_QueueEntry
46 {
47
48   /**
49    * Kept in a DLL.
50    */
51   struct GNUNET_NAMESTORE_QueueEntry *next;
52
53   /**
54    * Kept in a DLL.
55    */
56   struct GNUNET_NAMESTORE_QueueEntry *prev;
57
58   struct GNUNET_NAMESTORE_Handle *nsh;
59
60   uint32_t op_id;
61
62   GNUNET_NAMESTORE_ContinuationWithStatus cont;
63   void *cont_cls;
64
65   GNUNET_NAMESTORE_RecordProcessor proc;
66   void *proc_cls;
67
68   char *data; /*stub data pointer*/
69 };
70
71
72 /**
73  * Zone iterator
74  */
75 struct GNUNET_NAMESTORE_ZoneIterator
76 {
77
78   /**
79    * Kept in a DLL.
80    */
81   struct GNUNET_NAMESTORE_ZoneIterator *next;
82
83   /**
84    * Kept in a DLL.
85    */
86   struct GNUNET_NAMESTORE_ZoneIterator *prev;
87
88   uint32_t op_id;
89
90   struct GNUNET_NAMESTORE_Handle *h;
91   GNUNET_NAMESTORE_RecordProcessor proc;
92   void* proc_cls;
93   GNUNET_HashCode zone;
94   uint32_t no_flags;
95   uint32_t flags;
96 };
97
98
99 /**
100  * Message in linked list we should send to the service.  The
101  * actual binary message follows this struct.
102  */
103 struct PendingMessage
104 {
105
106   /**
107    * Kept in a DLL.
108    */
109   struct PendingMessage *next;
110
111   /**
112    * Kept in a DLL.
113    */
114   struct PendingMessage *prev;
115
116   /**
117    * Size of the message.
118    */
119   size_t size;
120
121   /**
122    * Is this the 'START' message?
123    */
124   int is_init;
125 };
126
127
128 /**
129  * Connection to the NAMESTORE service.
130  */
131 struct GNUNET_NAMESTORE_Handle
132 {
133
134   /**
135    * Configuration to use.
136    */
137   const struct GNUNET_CONFIGURATION_Handle *cfg;
138
139   /**
140    * Socket (if available).
141    */
142   struct GNUNET_CLIENT_Connection *client;
143
144   /**
145    * Currently pending transmission request (or NULL).
146    */
147   struct GNUNET_CLIENT_TransmitHandle *th;
148
149   /**
150    * Reconnect task
151    */
152   GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
153
154   /**
155    * Pending messages to send to the service
156    */
157
158   struct PendingMessage * pending_head;
159   struct PendingMessage * pending_tail;
160
161   /**
162    * Should we reconnect to service due to some serious error?
163    */
164   int reconnect;
165
166
167   /**
168    * Pending namestore queue entries
169    */
170   struct GNUNET_NAMESTORE_QueueEntry * op_head;
171   struct GNUNET_NAMESTORE_QueueEntry * op_tail;
172
173   uint32_t op_id;
174
175   /**
176    * Pending namestore zone iterator entries
177    */
178   struct GNUNET_NAMESTORE_ZoneIterator * z_head;
179   struct GNUNET_NAMESTORE_ZoneIterator * z_tail;
180 };
181
182 struct GNUNET_NAMESTORE_SimpleRecord
183 {
184   /**
185    * DLL
186    */
187   struct GNUNET_NAMESTORE_SimpleRecord *next;
188
189   /**
190    * DLL
191    */
192   struct GNUNET_NAMESTORE_SimpleRecord *prev;
193   
194   const char *name;
195   const GNUNET_HashCode *zone;
196   uint32_t record_type;
197   struct GNUNET_TIME_Absolute expiration;
198   enum GNUNET_NAMESTORE_RecordFlags flags;
199   size_t data_size;
200   const void *data;
201 };
202
203
204
205 /**
206  * Convert a type name (i.e. "AAAA") to the corresponding number.
207  *
208  * @param typename name to convert
209  * @return corresponding number, UINT32_MAX on error
210  */
211 uint32_t
212 GNUNET_NAMESTORE_typename_to_number (const char *typename)
213 {
214   static struct { 
215     const char *name; 
216     uint32_t number; 
217   } map[] = {
218     { "A", GNUNET_DNSPARSER_TYPE_A },
219     { "NS", GNUNET_DNSPARSER_TYPE_NS },
220     { "CNAME", GNUNET_DNSPARSER_TYPE_CNAME },
221     { "SOA", GNUNET_DNSPARSER_TYPE_SOA },
222     { "PTR", GNUNET_DNSPARSER_TYPE_PTR },
223     { "MX", GNUNET_DNSPARSER_TYPE_MX },
224     { "TXT", GNUNET_DNSPARSER_TYPE_TXT },
225     { "AAAA", GNUNET_DNSPARSER_TYPE_AAAA },
226     { "PKEY",  GNUNET_NAMESTORE_TYPE_PKEY },
227     { "PSEU",  GNUNET_NAMESTORE_TYPE_PSEU },
228     { NULL, UINT32_MAX }
229   };
230   unsigned int i;
231
232   i=0;
233   while ( (map[i].name != NULL) &&
234           (0 != strcasecmp (typename, map[i].name)) )
235     i++;
236   return map[i].number;  
237 }
238
239
240 /**
241  * Disconnect from service and then reconnect.
242  *
243  * @param h our handle
244  */
245 static void
246 force_reconnect (struct GNUNET_NAMESTORE_Handle *h);
247
248 static void
249 handle_lookup_name_response (struct GNUNET_NAMESTORE_QueueEntry *qe,
250                              struct LookupNameResponseMessage * msg,
251                              size_t size)
252 {
253   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' \n",
254               "LOOKUP_NAME_RESPONSE");
255
256   struct GNUNET_NAMESTORE_Handle *h = qe->nsh;
257   char *name;
258   char * rd_tmp;
259
260   struct GNUNET_CRYPTO_RsaSignature *signature = NULL;
261   struct GNUNET_TIME_Absolute expire;
262   size_t exp_msg_len;
263   size_t msg_len = 0;
264   size_t name_len = 0;
265   size_t rd_len = 0;
266   int contains_sig = GNUNET_NO;
267   int rd_count = 0;
268
269   rd_len = ntohs (msg->rd_len);
270   rd_count = ntohs (msg->rd_count);
271   msg_len = ntohs (msg->gns_header.header.size);
272   name_len = ntohs (msg->name_len);
273   contains_sig = ntohs (msg->contains_sig);
274   expire = GNUNET_TIME_absolute_ntoh(msg->expire);
275
276   exp_msg_len = sizeof (struct LookupNameResponseMessage) +
277       sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded) +
278       name_len + rd_len;
279
280   if (msg_len != exp_msg_len)
281   {
282     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message size describes with `%u' bytes but calculated size is %u bytes \n",
283                 msg_len, exp_msg_len);
284     GNUNET_break_op (0);
285     return;
286   }
287   if (name_len == 0)
288   {
289     GNUNET_break_op (0);
290     return;
291   }
292
293   name = (char *) &msg[1];
294   rd_tmp = &name[name_len];
295
296   /* deserialize records */
297   struct GNUNET_NAMESTORE_RecordData rd[rd_count];
298   GNUNET_NAMESTORE_records_deserialize(rd_len, rd_tmp, rd_count, rd);
299
300   /* reset values if values not contained */
301   if (contains_sig == GNUNET_NO)
302     signature = NULL;
303   else
304     signature = &msg->signature;
305
306   if (qe->proc != NULL)
307   {
308     qe->proc (qe->proc_cls, &msg->public_key, expire, name, rd_count, (rd_count > 0) ? rd : NULL, signature);
309   }
310
311   /* Operation done, remove */
312   GNUNET_CONTAINER_DLL_remove(h->op_head, h->op_tail, qe);
313   GNUNET_free (qe);
314 }
315
316
317 static void
318 handle_record_put_response (struct GNUNET_NAMESTORE_QueueEntry *qe,
319                              struct RecordPutResponseMessage* msg,
320                              size_t size)
321 {
322   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' \n",
323               "RECORD_PUT_RESPONSE");
324
325   struct GNUNET_NAMESTORE_Handle *h = qe->nsh;
326   int res = GNUNET_OK;
327
328   if (ntohs (msg->op_result) == GNUNET_OK)
329   {
330     res = GNUNET_OK;
331     if (qe->cont != NULL)
332     {
333       qe->cont (qe->cont_cls, res, _("Namestore added record successfully"));
334     }
335
336   }
337   else if (ntohs (msg->op_result) == GNUNET_NO)
338   {
339     res = GNUNET_SYSERR;
340     if (qe->cont != NULL)
341     {
342       qe->cont (qe->cont_cls, res, _("Namestore failed to add record"));
343     }
344   }
345   else
346   {
347     GNUNET_break_op (0);
348     return;
349   }
350
351   /* Operation done, remove */
352   GNUNET_CONTAINER_DLL_remove(h->op_head, h->op_tail, qe);
353
354   GNUNET_free (qe);
355 }
356
357
358 static void
359 handle_record_create_response (struct GNUNET_NAMESTORE_QueueEntry *qe,
360                              struct RecordCreateResponseMessage* msg,
361                              size_t size)
362 {
363   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' \n",
364               "RECORD_CREATE_RESPONSE");
365
366   struct GNUNET_NAMESTORE_Handle *h = qe->nsh;
367
368   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' %i\n",
369               "RECORD_CREATE_RESPONSE", ntohs (msg->op_result));
370   if (ntohs (msg->op_result) == GNUNET_YES)
371   {
372     if (qe->cont != NULL)
373     {
374       qe->cont (qe->cont_cls, GNUNET_YES, _("Namestore added record successfully"));
375     }
376
377   }
378   else if (ntohs (msg->op_result) == GNUNET_NO)
379   {
380     if (qe->cont != NULL)
381     {
382       qe->cont (qe->cont_cls, GNUNET_NO, _("Namestore record already existed"));
383     }
384   }
385   else
386   {
387     if (qe->cont != NULL)
388     {
389       qe->cont (qe->cont_cls, GNUNET_SYSERR, _("Namestore failed to add record\n"));
390     }
391   }
392
393   /* Operation done, remove */
394   GNUNET_CONTAINER_DLL_remove(h->op_head, h->op_tail, qe);
395
396   GNUNET_free (qe);
397 }
398
399
400 static void
401 handle_record_remove_response (struct GNUNET_NAMESTORE_QueueEntry *qe,
402                              struct RecordRemoveResponseMessage* msg,
403                              size_t size)
404 {
405   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' \n",
406               "RECORD_REMOVE_RESPONSE");
407
408   struct GNUNET_NAMESTORE_Handle *h = qe->nsh;
409   int res = ntohs (msg->op_result);
410
411   /**
412    *  result:
413    *  0 : successful
414    *  1 : No records for entry
415    *  2 : Could not find record to remove
416    *  3 : Failed to create new signature
417    *  4 : Failed to put new set of records in database
418    */
419   switch (res) {
420     case 0:
421       if (qe->cont != NULL)
422       {
423         qe->cont (qe->cont_cls, GNUNET_YES, _("Namestore removed record successfully"));
424       }
425
426       break;
427     case 1:
428       if (qe->cont != NULL)
429       {
430         qe->cont (qe->cont_cls, GNUNET_NO, _("No records for entry"));
431       }
432
433       break;
434     case 2:
435       if (qe->cont != NULL)
436       {
437         qe->cont (qe->cont_cls, GNUNET_NO, _("Could not find record to remove"));
438       }
439
440       break;
441     case 3:
442       if (qe->cont != NULL)
443       {
444         qe->cont (qe->cont_cls, GNUNET_SYSERR, _("Failed to create new signature"));
445       }
446
447       break;
448     case 4:
449       if (qe->cont != NULL)
450       {
451         qe->cont (qe->cont_cls, GNUNET_SYSERR, _("Failed to put new set of records in database"));
452       }
453       break;
454     default:
455         GNUNET_break_op (0);
456       break;
457   }
458
459   /* Operation done, remove */
460   GNUNET_CONTAINER_DLL_remove(h->op_head, h->op_tail, qe);
461
462   GNUNET_free (qe);
463 }
464
465 static void
466 handle_zone_to_name_response (struct GNUNET_NAMESTORE_QueueEntry *qe,
467                              struct ZoneToNameResponseMessage* msg,
468                              size_t size)
469 {
470   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' \n",
471               "ZONE_TO_NAME_RESPONSE");
472
473   struct GNUNET_NAMESTORE_Handle *h = qe->nsh;
474   int res = ntohs (msg->res);
475
476   struct GNUNET_TIME_Absolute expire;
477   size_t name_len;
478   size_t rd_ser_len;
479   unsigned int rd_count;
480
481   char * name_tmp;
482   char * rd_tmp;
483
484   if (res == GNUNET_SYSERR)
485   {
486     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "An error occured during zone to name operation\n");
487     if (qe->proc != NULL)
488       qe->proc (qe->proc_cls, NULL, GNUNET_TIME_absolute_get_zero(), NULL, 0, NULL, NULL);
489   }
490   else if (res == GNUNET_NO)
491   {
492       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Namestore has no result for zone to name mapping \n");
493       if (qe->proc != NULL)
494         qe->proc (qe->proc_cls, NULL, GNUNET_TIME_absolute_get_zero(), NULL, 0, NULL, NULL);
495   }
496   else if (res == GNUNET_YES)
497   {
498     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Namestore has result for zone to name mapping \n");
499
500     name_len = ntohs (msg->name_len);
501     rd_count = ntohs (msg->rd_count);
502     rd_ser_len = ntohs (msg->rd_len);
503     expire = GNUNET_TIME_absolute_ntoh(msg->expire);
504
505     name_tmp = (char *) &msg[1];
506     rd_tmp = &name_tmp[name_len];
507
508     struct GNUNET_NAMESTORE_RecordData rd[rd_count];
509     GNUNET_NAMESTORE_records_deserialize(rd_ser_len, rd_tmp, rd_count, rd);
510
511     if (qe->proc != NULL)
512       qe->proc (qe->proc_cls, &msg->zone_key, expire, name_tmp, rd_count, rd, &msg->signature);
513   }
514   else
515     GNUNET_break_op (0);
516
517   /* Operation done, remove */
518   GNUNET_CONTAINER_DLL_remove(h->op_head, h->op_tail, qe);
519   GNUNET_free (qe);
520 }
521
522
523 static void
524 manage_record_operations (struct GNUNET_NAMESTORE_QueueEntry *qe,
525                           const struct GNUNET_MessageHeader *msg,
526                           int type, size_t size)
527 {
528
529   /* handle different message type */
530   switch (type) {
531     case GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME_RESPONSE:
532         if (size < sizeof (struct LookupNameResponseMessage))
533         {
534           GNUNET_break_op (0);
535           break;
536         }
537         handle_lookup_name_response (qe, (struct LookupNameResponseMessage *) msg, size);
538       break;
539     case GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_PUT_RESPONSE:
540         if (size != sizeof (struct RecordPutResponseMessage))
541         {
542           GNUNET_break_op (0);
543           break;
544         }
545         handle_record_put_response (qe, (struct RecordPutResponseMessage *) msg, size);
546       break;
547     case GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_CREATE_RESPONSE:
548         if (size != sizeof (struct RecordCreateResponseMessage))
549         {
550           GNUNET_break_op (0);
551           break;
552         }
553         handle_record_create_response (qe, (struct RecordCreateResponseMessage *) msg, size);
554       break;
555     case GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_REMOVE_RESPONSE:
556         if (size != sizeof (struct RecordRemoveResponseMessage))
557         {
558           GNUNET_break_op (0);
559           break;
560         }
561         handle_record_remove_response (qe, (struct RecordRemoveResponseMessage *) msg, size);
562       break;
563     case GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE:
564         if (size < sizeof (struct ZoneToNameResponseMessage))
565         {
566           GNUNET_break_op (0);
567           break;
568         }
569         handle_zone_to_name_response (qe, (struct ZoneToNameResponseMessage *) msg, size);
570       break;
571     default:
572       GNUNET_break_op (0);
573       break;
574   }
575 }
576
577 static void
578 handle_zone_iteration_response (struct GNUNET_NAMESTORE_ZoneIterator *ze,
579                                 struct ZoneIterationResponseMessage *msg,
580                                 size_t size)
581 {
582   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' \n",
583               "ZONE_ITERATION_RESPONSE");
584
585
586   if (ze->proc != NULL)
587   {
588     // FIXME
589     ze->proc(ze->proc_cls, NULL, GNUNET_TIME_absolute_get_forever(), "dummy", 0, NULL, NULL);
590   }
591 }
592
593
594 static void
595 manage_zone_operations (struct GNUNET_NAMESTORE_ZoneIterator *ze,
596                         const struct GNUNET_MessageHeader *msg,
597                         int type, size_t size)
598 {
599
600   /* handle different message type */
601   switch (type) {
602     case GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_RESPONSE:
603         if (size < sizeof (struct ZoneIterationResponseMessage))
604         {
605           GNUNET_break_op (0);
606           break;
607         }
608         handle_zone_iteration_response (ze, (struct ZoneIterationResponseMessage *) msg, size);
609       break;
610     default:
611       GNUNET_break_op (0);
612       break;
613   }
614 }
615
616 /**
617  * Type of a function to call when we receive a message
618  * from the service.
619  *
620  * @param cls the 'struct GNUNET_NAMESTORE_SchedulingHandle'
621  * @param msg message received, NULL on timeout or fatal error
622  */
623 static void
624 process_namestore_message (void *cls, const struct GNUNET_MessageHeader *msg)
625 {
626   struct GNUNET_NAMESTORE_Handle *h = cls;
627   struct GNUNET_NAMESTORE_Header * gm;
628   struct GNUNET_NAMESTORE_QueueEntry *qe;
629   struct GNUNET_NAMESTORE_ZoneIterator *ze;
630   uint16_t size;
631   uint16_t type;
632   uint32_t r_id = UINT32_MAX;
633
634   if (NULL == msg)
635   {
636     force_reconnect (h);
637     return;
638   }
639
640   size = ntohs (msg->size);
641   type = ntohs (msg->type);
642
643   if (size < sizeof (struct GNUNET_NAMESTORE_Header))
644   {
645     GNUNET_break_op (0);
646     GNUNET_CLIENT_receive (h->client, &process_namestore_message, h,
647                            GNUNET_TIME_UNIT_FOREVER_REL);
648     return;
649   }
650
651   gm = (struct GNUNET_NAMESTORE_Header *) msg;
652   r_id = ntohl (gm->r_id);
653
654   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received message type %i size %i op %u\n", type, size, r_id);
655
656   /* Find matching operation */
657   if (r_id > h->op_id)
658   {
659     /* No matching pending operation found */
660     GNUNET_break_op (0);
661     GNUNET_CLIENT_receive (h->client, &process_namestore_message, h,
662                            GNUNET_TIME_UNIT_FOREVER_REL);
663     return;
664   }
665
666   /* Is it a record related operation ? */
667   for (qe = h->op_head; qe != NULL; qe = qe->next)
668   {
669     if (qe->op_id == r_id)
670       break;
671   }
672   if (qe != NULL)
673   {
674     manage_record_operations (qe, msg, type, size);
675   }
676
677   /* Is it a zone iteration operation ? */
678   for (ze = h->z_head; ze != NULL; ze = ze->next)
679   {
680     if (ze->op_id == r_id)
681       break;
682   }
683   if (ze != NULL)
684   {
685     manage_zone_operations (ze, msg, type, size);
686   }
687
688   GNUNET_CLIENT_receive (h->client, &process_namestore_message, h,
689                          GNUNET_TIME_UNIT_FOREVER_REL);
690
691   if (GNUNET_YES == h->reconnect)
692     force_reconnect (h);
693
694 }
695
696
697 /**
698  * Transmit messages from the message queue to the service
699  * (if there are any, and if we are not already trying).
700  *
701  * @param h handle to use
702  */
703 static void
704 do_transmit (struct GNUNET_NAMESTORE_Handle *h);
705
706
707 /**
708  * We can now transmit a message to NAMESTORE. Do it.
709  *
710  * @param cls the 'struct GNUNET_NAMESTORE_Handle'
711  * @param size number of bytes we can transmit
712  * @param buf where to copy the messages
713  * @return number of bytes copied into buf
714  */
715 static size_t
716 transmit_message_to_namestore (void *cls, size_t size, void *buf)
717 {
718   struct GNUNET_NAMESTORE_Handle *h = cls;
719   struct PendingMessage *p;
720   size_t ret;
721   char *cbuf;
722
723   h->th = NULL;
724   if ((size == 0) || (buf == NULL))
725   {
726     force_reconnect (h);
727     return 0;
728   }
729   ret = 0;
730   cbuf = buf;
731   while ((NULL != (p = h->pending_head)) && (p->size <= size))
732   {
733     memcpy (&cbuf[ret], &p[1], p->size);
734     ret += p->size;
735     size -= p->size;
736     GNUNET_CONTAINER_DLL_remove (h->pending_head, h->pending_tail, p);
737     if (GNUNET_YES == p->is_init)
738       GNUNET_CLIENT_receive (h->client, &process_namestore_message, h,
739                              GNUNET_TIME_UNIT_FOREVER_REL);
740     GNUNET_free (p);
741   }
742   do_transmit (h);
743   return ret;
744 }
745
746
747 /**
748  * Transmit messages from the message queue to the service
749  * (if there are any, and if we are not already trying).
750  *
751  * @param h handle to use
752  */
753 static void
754 do_transmit (struct GNUNET_NAMESTORE_Handle *h)
755 {
756   struct PendingMessage *p;
757
758   if (NULL != h->th)
759     return;
760   if (NULL == (p = h->pending_head))
761     return;
762   if (NULL == h->client)
763     return;                     /* currently reconnecting */
764
765   h->th = GNUNET_CLIENT_notify_transmit_ready (h->client, p->size,
766                                            GNUNET_TIME_UNIT_FOREVER_REL,
767                                            GNUNET_NO, &transmit_message_to_namestore,
768                                            h);
769 }
770
771
772 /**
773  * Reconnect to namestore service.
774  *
775  * @param h the handle to the namestore service
776  */
777 static void
778 reconnect (struct GNUNET_NAMESTORE_Handle *h)
779 {
780   struct PendingMessage *p;
781   struct StartMessage *init;
782
783   GNUNET_assert (NULL == h->client);
784   h->client = GNUNET_CLIENT_connect ("namestore", h->cfg);
785   GNUNET_assert (NULL != h->client);
786
787   if ((NULL == (p = h->pending_head)) || (GNUNET_YES != p->is_init))
788   {
789     p = GNUNET_malloc (sizeof (struct PendingMessage) +
790                        sizeof (struct StartMessage));
791     p->size = sizeof (struct StartMessage);
792     p->is_init = GNUNET_YES;
793     init = (struct StartMessage *) &p[1];
794     init->header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_START);
795     init->header.size = htons (sizeof (struct StartMessage));
796     GNUNET_CONTAINER_DLL_insert (h->pending_head, h->pending_tail, p);
797   }
798   do_transmit (h);
799 }
800
801 /**
802  * Re-establish the connection to the service.
803  *
804  * @param cls handle to use to re-connect.
805  * @param tc scheduler context
806  */
807 static void
808 reconnect_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
809 {
810   struct GNUNET_NAMESTORE_Handle *h = cls;
811
812   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
813   reconnect (h);
814 }
815
816
817 /**
818  * Disconnect from service and then reconnect.
819  *
820  * @param h our handle
821  */
822 static void
823 force_reconnect (struct GNUNET_NAMESTORE_Handle *h)
824 {
825   h->reconnect = GNUNET_NO;
826   GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
827   h->client = NULL;
828   h->reconnect_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
829                                     &reconnect_task,
830                                     h);
831 }
832
833 static uint32_t
834 get_op_id (struct GNUNET_NAMESTORE_Handle *h)
835 {
836   uint32_t op_id = h->op_id;
837   h->op_id ++;
838   return op_id;
839 }
840
841 /**
842  * Initialize the connection with the NAMESTORE service.
843  *
844  * @param cfg configuration to use
845  * @return handle to the GNS service, or NULL on error
846  */
847 struct GNUNET_NAMESTORE_Handle *
848 GNUNET_NAMESTORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg)
849 {
850   struct GNUNET_NAMESTORE_Handle *h;
851
852   h = GNUNET_malloc (sizeof (struct GNUNET_NAMESTORE_Handle));
853   h->cfg = cfg;
854   h->reconnect_task = GNUNET_SCHEDULER_add_now (&reconnect_task, h);
855   h->op_id = 0;
856   return h;
857 }
858
859 static void
860 clean_up_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
861 {
862   struct PendingMessage *p;
863   struct GNUNET_NAMESTORE_QueueEntry *q;
864   struct GNUNET_NAMESTORE_ZoneIterator *z;
865   struct GNUNET_NAMESTORE_Handle *h = cls;
866   GNUNET_assert (h != NULL);
867   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Cleaning up\n");
868   while (NULL != (p = h->pending_head))
869   {
870     GNUNET_CONTAINER_DLL_remove (h->pending_head, h->pending_tail, p);
871     GNUNET_free (p);
872   }
873
874   while (NULL != (q = h->op_head))
875   {
876     GNUNET_break (0);
877     GNUNET_CONTAINER_DLL_remove (h->op_head, h->op_tail, q);
878     GNUNET_free (q);
879   }
880
881   while (NULL != (z = h->z_head))
882   {
883     GNUNET_CONTAINER_DLL_remove (h->z_head, h->z_tail, z);
884     GNUNET_free (z);
885   }
886
887   if (NULL != h->client)
888   {
889     GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
890     h->client = NULL;
891   }
892   if (GNUNET_SCHEDULER_NO_TASK != h->reconnect_task)
893   {
894     GNUNET_SCHEDULER_cancel (h->reconnect_task);
895     h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
896   }
897   GNUNET_free(h);
898   h = NULL;
899 };
900
901 /**
902  * Disconnect from the namestore service (and free associated
903  * resources).
904  *
905  * @param h handle to the namestore
906  * @param drop set to GNUNET_YES to delete all data in namestore (!)
907  */
908 void
909 GNUNET_NAMESTORE_disconnect (struct GNUNET_NAMESTORE_Handle *h, int drop)
910 {
911   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Disconnecting from namestore service\n");
912     GNUNET_SCHEDULER_add_now (&clean_up_task, h);
913 }
914
915
916 /**
917  * Store an item in the namestore.  If the item is already present,
918  * the expiration time is updated to the max of the existing time and
919  * the new time.  This API is used when we cache signatures from other
920  * authorities.
921  *
922  * @param h handle to the namestore
923  * @param zone_key public key of the zone
924  * @param name name that is being mapped (at most 255 characters long)
925  * @param expire when does the corresponding block in the DHT expire (until
926  *               when should we never do a DHT lookup for the same name again)?
927  * @param rd_count number of entries in 'rd' array
928  * @param rd array of records with data to store
929  * @param signature signature for all the records in the zone under the given name
930  * @param cont continuation to call when done
931  * @param cont_cls closure for cont
932  * @return handle to abort the request
933  */
934 struct GNUNET_NAMESTORE_QueueEntry *
935 GNUNET_NAMESTORE_record_put (struct GNUNET_NAMESTORE_Handle *h,
936                              const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
937                              const char *name,
938                              struct GNUNET_TIME_Absolute expire,
939                              unsigned int rd_count,
940                              const struct GNUNET_NAMESTORE_RecordData *rd,
941                              const struct GNUNET_CRYPTO_RsaSignature *signature,
942                              GNUNET_NAMESTORE_ContinuationWithStatus cont,
943                              void *cont_cls)
944 {
945   struct GNUNET_NAMESTORE_QueueEntry *qe;
946   struct PendingMessage *pe;
947
948   /* pointer to elements */
949   char * rd_tmp;
950   char * name_tmp;
951
952   size_t msg_size = 0;
953   size_t name_len = 0;
954   size_t rd_ser_len = 0;
955   size_t pubkey_len = 0;
956   uint32_t rid = 0;
957
958   GNUNET_assert (NULL != h);
959   GNUNET_assert (NULL != zone_key);
960   GNUNET_assert (NULL != name);
961   GNUNET_assert (NULL != rd);
962   GNUNET_assert (NULL != signature);
963
964   name_len = strlen(name) + 1;
965   if (name_len > 256)
966   {
967     GNUNET_break (0);
968     return NULL;
969   }
970
971   rid = get_op_id(h);
972   qe = GNUNET_malloc(sizeof (struct GNUNET_NAMESTORE_QueueEntry));
973   qe->nsh = h;
974   qe->cont = cont;
975   qe->cont_cls = cont_cls;
976   qe->op_id = rid;
977   GNUNET_CONTAINER_DLL_insert_tail(h->op_head, h->op_tail, qe);
978
979   /* set msg_size*/
980   rd_ser_len = GNUNET_NAMESTORE_records_get_size(rd_count, rd);
981   char rd_ser[rd_ser_len];
982   GNUNET_NAMESTORE_records_serialize(rd_count, rd, rd_ser_len, rd_ser);
983
984   pubkey_len = sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded);
985   struct RecordPutMessage * msg;
986   msg_size = sizeof (struct RecordPutMessage) + pubkey_len + name_len  + rd_ser_len;
987
988   /* create msg here */
989   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
990   pe->size = msg_size;
991   pe->is_init = GNUNET_NO;
992   msg = (struct RecordPutMessage *) &pe[1];
993   name_tmp = (char *) &msg[1];
994   rd_tmp = &name_tmp[name_len];
995
996   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_PUT);
997   msg->gns_header.header.size = htons (msg_size);
998   msg->gns_header.r_id = htonl (rid);
999   msg->signature = *signature;
1000   msg->name_len = htons (name_len);
1001   msg->expire = GNUNET_TIME_absolute_hton (expire);
1002   msg->rd_len = htons (rd_ser_len);
1003   msg->rd_count = htons (rd_count);
1004
1005   msg->public_key = *zone_key;
1006   memcpy (name_tmp, name, name_len);
1007   memcpy (rd_tmp, rd_ser, rd_ser_len);
1008
1009   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for name `%s' with size %u\n", "NAMESTORE_RECORD_PUT", name, msg_size);
1010
1011   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1012   do_transmit(h);
1013
1014   return qe;
1015 }
1016
1017
1018 /**
1019  * Check if a signature is valid.  This API is used by the GNS Block
1020  * to validate signatures received from the network.
1021  *
1022  * @param public_key public key of the zone
1023  * @param name name that is being mapped (at most 255 characters long)
1024  * @param rd_count number of entries in 'rd' array
1025  * @param rd array of records with data to store
1026  * @param signature signature for all the records in the zone under the given name
1027  * @return GNUNET_OK if the signature is valid
1028  */
1029 int
1030 GNUNET_NAMESTORE_verify_signature (const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *public_key,
1031                                    const char *name,
1032                                    unsigned int rd_count,
1033                                    const struct GNUNET_NAMESTORE_RecordData *rd,
1034                                    const struct GNUNET_CRYPTO_RsaSignature *signature)
1035 {
1036   int res = GNUNET_SYSERR;
1037   size_t rd_ser_len = 0;
1038   size_t name_len = 0;
1039   char * name_tmp;
1040   char * rd_tmp;
1041   struct GNUNET_CRYPTO_RsaSignaturePurpose *sig_purpose;
1042
1043   GNUNET_assert (public_key != NULL);
1044   GNUNET_assert (name != NULL);
1045   GNUNET_assert (signature != NULL);
1046
1047   rd_ser_len = GNUNET_NAMESTORE_records_get_size(rd_count, rd);
1048   char rd_ser[rd_ser_len];
1049   GNUNET_NAMESTORE_records_serialize(rd_count, rd, rd_ser_len, rd_ser);
1050
1051   name_len = strlen (name) + 1;
1052
1053   sig_purpose = GNUNET_malloc(sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) + rd_ser_len + name_len);
1054   sig_purpose->size = htonl (sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose)+ rd_ser_len + name_len);
1055   sig_purpose->purpose = htonl (GNUNET_SIGNATURE_PURPOSE_GNS_RECORD_SIGN);
1056   name_tmp = (char *) &sig_purpose[1];
1057   rd_tmp = &name_tmp[name_len];
1058   memcpy (name_tmp, name, name_len);
1059   memcpy (rd_tmp, rd_ser, rd_ser_len);
1060
1061   res = GNUNET_CRYPTO_rsa_verify(GNUNET_SIGNATURE_PURPOSE_GNS_RECORD_SIGN, sig_purpose, signature, public_key);
1062
1063   GNUNET_free (sig_purpose);
1064
1065   return res;
1066 }
1067
1068 /**
1069  * Store an item in the namestore.  If the item is already present,
1070  * the expiration time is updated to the max of the existing time and
1071  * the new time.  This API is used by the authority of a zone.
1072  *
1073  * @param h handle to the namestore
1074  * @param pkey private key of the zone
1075  * @param name name that is being mapped (at most 255 characters long)
1076  * @param rd record data to store
1077  * @param cont continuation to call when done
1078  * @param cont_cls closure for cont
1079  * @return handle to abort the request
1080  */
1081 struct GNUNET_NAMESTORE_QueueEntry *
1082 GNUNET_NAMESTORE_record_create (struct GNUNET_NAMESTORE_Handle *h,
1083                                 const struct GNUNET_CRYPTO_RsaPrivateKey *pkey,
1084                                 const char *name,
1085                                 const struct GNUNET_NAMESTORE_RecordData *rd,
1086                                 GNUNET_NAMESTORE_ContinuationWithStatus cont,
1087                                 void *cont_cls)
1088 {
1089   struct GNUNET_NAMESTORE_QueueEntry *qe;
1090   struct PendingMessage *pe;
1091   char * name_tmp;
1092   char * pkey_tmp;
1093   char * rd_tmp;
1094   size_t rd_ser_len = 0;
1095   size_t msg_size = 0;
1096   size_t name_len = 0;
1097   size_t key_len = 0;
1098   uint32_t rid = 0;
1099
1100   GNUNET_assert (NULL != h);
1101   GNUNET_assert (NULL != pkey);
1102   GNUNET_assert (NULL != name);
1103   GNUNET_assert (NULL != rd);
1104
1105   name_len = strlen(name) + 1;
1106   if (name_len > 256)
1107   {
1108     GNUNET_break (0);
1109     return NULL;
1110   }
1111
1112   rid = get_op_id(h);
1113   qe = GNUNET_malloc(sizeof (struct GNUNET_NAMESTORE_QueueEntry));
1114   qe->nsh = h;
1115   qe->cont = cont;
1116   qe->cont_cls = cont_cls;
1117   qe->op_id = rid;
1118   GNUNET_CONTAINER_DLL_insert_tail(h->op_head, h->op_tail, qe);
1119
1120   /* set msg_size*/
1121   struct GNUNET_CRYPTO_RsaPrivateKeyBinaryEncoded * pkey_enc = GNUNET_CRYPTO_rsa_encode_key (pkey);
1122   GNUNET_assert (pkey_enc != NULL);
1123   key_len = ntohs (pkey_enc->len);
1124
1125   rd_ser_len = GNUNET_NAMESTORE_records_get_size(1, rd);
1126   char rd_ser[rd_ser_len];
1127   GNUNET_NAMESTORE_records_serialize(1, rd, rd_ser_len, rd_ser);
1128
1129   struct RecordCreateMessage * msg;
1130   msg_size = sizeof (struct RecordCreateMessage) + key_len + name_len + rd_ser_len;
1131
1132   /* create msg here */
1133   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
1134   pe->size = msg_size;
1135   pe->is_init = GNUNET_NO;
1136   msg = (struct RecordCreateMessage *) &pe[1];
1137
1138   pkey_tmp = (char *) &msg[1];
1139   name_tmp = &pkey_tmp[key_len];
1140   rd_tmp = &name_tmp[name_len];
1141
1142   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_CREATE);
1143   msg->gns_header.header.size = htons (msg_size);
1144   msg->gns_header.r_id = htonl (rid);
1145   msg->name_len = htons (name_len);
1146   msg->rd_count = htons (1);
1147   msg->rd_len = htons (rd_ser_len);
1148   msg->pkey_len = htons (key_len);
1149   memcpy (pkey_tmp, pkey_enc, key_len);
1150   memcpy (name_tmp, name, name_len);
1151   memcpy (rd_tmp, rd_ser, rd_ser_len);
1152   GNUNET_free (pkey_enc);
1153
1154   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for name `%s' with size %u\n", "NAMESTORE_RECORD_CREATE", name, msg_size);
1155
1156   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1157   do_transmit(h);
1158   return qe;
1159 }
1160
1161
1162 /**
1163  * Explicitly remove some content from the database.  The
1164  * "cont"inuation will be called with status "GNUNET_OK" if content
1165  * was removed, "GNUNET_NO" if no matching entry was found and
1166  * "GNUNET_SYSERR" on all other types of errors.
1167  * This API is used by the authority of a zone.
1168  *
1169  * @param h handle to the namestore
1170  * @param pkey private key of the zone
1171  * @param name name that is being mapped (at most 255 characters long)
1172  * @param rd record data
1173  * @param cont continuation to call when done
1174  * @param cont_cls closure for cont
1175  * @return handle to abort the request
1176  */
1177 struct GNUNET_NAMESTORE_QueueEntry *
1178 GNUNET_NAMESTORE_record_remove (struct GNUNET_NAMESTORE_Handle *h,
1179                                 const struct GNUNET_CRYPTO_RsaPrivateKey *pkey,
1180                                 const char *name,
1181                                 const struct GNUNET_NAMESTORE_RecordData *rd,
1182                                 GNUNET_NAMESTORE_ContinuationWithStatus cont,
1183                                 void *cont_cls)
1184 {
1185   struct GNUNET_NAMESTORE_QueueEntry *qe;
1186   struct PendingMessage *pe;
1187   char *pkey_tmp;
1188   char *rd_tmp;
1189   char *name_tmp;
1190   size_t rd_ser_len = 0;
1191   size_t msg_size = 0;
1192   size_t name_len = 0;
1193   size_t key_len = 0;
1194   uint32_t rid = 0;
1195
1196   GNUNET_assert (NULL != h);
1197
1198   rid = get_op_id(h);
1199   qe = GNUNET_malloc(sizeof (struct GNUNET_NAMESTORE_QueueEntry));
1200   qe->nsh = h;
1201   qe->cont = cont;
1202   qe->cont_cls = cont_cls;
1203   qe->op_id = rid;
1204   GNUNET_CONTAINER_DLL_insert_tail(h->op_head, h->op_tail, qe);
1205
1206   /* set msg_size*/
1207   struct GNUNET_CRYPTO_RsaPrivateKeyBinaryEncoded * pkey_enc = GNUNET_CRYPTO_rsa_encode_key (pkey);
1208   GNUNET_assert (pkey_enc != NULL);
1209   key_len = ntohs (pkey_enc->len);
1210
1211   rd_ser_len = GNUNET_NAMESTORE_records_get_size(1, rd);
1212   char rd_ser[rd_ser_len];
1213   GNUNET_NAMESTORE_records_serialize(1, rd, rd_ser_len, rd_ser);
1214
1215   name_len = strlen (name) + 1;
1216
1217   struct RecordRemoveMessage * msg;
1218   msg_size = sizeof (struct RecordRemoveMessage) + key_len + name_len + rd_ser_len;
1219
1220   /* create msg here */
1221   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
1222   pe->size = msg_size;
1223   pe->is_init = GNUNET_NO;
1224   msg = (struct RecordRemoveMessage *) &pe[1];
1225
1226   pkey_tmp = (char *) &msg[1];
1227   name_tmp = &pkey_tmp[key_len];
1228   rd_tmp = &name_tmp[name_len];
1229
1230   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_REMOVE);
1231   msg->gns_header.header.size = htons (msg_size);
1232   msg->gns_header.r_id = htonl (rid);
1233   msg->name_len = htons (name_len);
1234   msg->rd_len = htons (rd_ser_len);
1235   msg->rd_count = htons (1);
1236   msg->pkey_len = htons (key_len);
1237   memcpy (pkey_tmp, pkey_enc, key_len);
1238   memcpy (name_tmp, name, name_len);
1239   memcpy (rd_tmp, rd_ser, rd_ser_len);
1240
1241   GNUNET_free (pkey_enc);
1242
1243   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for name `%s' with size %u\n", "NAMESTORE_RECORD_REMOVE", name, msg_size);
1244
1245   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1246   do_transmit(h);
1247   return qe;
1248 }
1249
1250
1251 /**
1252  * Get a result for a particular key from the namestore.  The processor
1253  * will only be called once.  
1254  *
1255  * @param h handle to the namestore
1256  * @param zone zone to look up a record from
1257  * @param name name to look up
1258  * @param record_type desired record type, 0 for all
1259  * @param proc function to call on the matching records, or with
1260  *        NULL (rd_count == 0) if there are no matching records
1261  * @param proc_cls closure for proc
1262  * @return a handle that can be used to
1263  *         cancel
1264  */
1265 struct GNUNET_NAMESTORE_QueueEntry *
1266 GNUNET_NAMESTORE_lookup_record (struct GNUNET_NAMESTORE_Handle *h, 
1267                               const GNUNET_HashCode *zone,
1268                               const char *name,
1269                               uint32_t record_type,
1270                               GNUNET_NAMESTORE_RecordProcessor proc, void *proc_cls)
1271 {
1272   struct GNUNET_NAMESTORE_QueueEntry *qe;
1273   struct PendingMessage *pe;
1274   size_t msg_size = 0;
1275   size_t name_len = 0;
1276   uint32_t rid = 0;
1277
1278   GNUNET_assert (NULL != h);
1279   GNUNET_assert (NULL != zone);
1280   GNUNET_assert (NULL != name);
1281
1282   name_len = strlen (name) + 1;
1283   if ((name_len == 0) || (name_len > 256))
1284   {
1285     GNUNET_break (0);
1286     return NULL;
1287   }
1288
1289   rid = get_op_id(h);
1290   qe = GNUNET_malloc(sizeof (struct GNUNET_NAMESTORE_QueueEntry));
1291   qe->nsh = h;
1292   qe->proc = proc;
1293   qe->proc_cls = proc_cls;
1294   qe->op_id = rid;
1295   GNUNET_CONTAINER_DLL_insert_tail(h->op_head, h->op_tail, qe);
1296
1297   /* set msg_size*/
1298   msg_size = sizeof (struct LookupNameMessage) + name_len;
1299   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
1300
1301   /* create msg here */
1302   struct LookupNameMessage * msg;
1303   pe->size = msg_size;
1304   pe->is_init = GNUNET_NO;
1305   msg = (struct LookupNameMessage *) &pe[1];
1306   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME);
1307   msg->gns_header.header.size = htons (msg_size);
1308   msg->gns_header.r_id = htonl (rid);
1309   msg->record_type = htonl (record_type);
1310   msg->zone = *zone;
1311   msg->name_len = htonl (name_len);
1312   memcpy (&msg[1], name, name_len);
1313
1314   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for name `%s'\n", "NAMESTORE_LOOKUP_NAME", name);
1315
1316   /* transmit message */
1317   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1318   do_transmit(h);
1319
1320   return qe;
1321 }
1322
1323
1324 /**
1325  * Look for an existing PKEY delegation record for a given public key.
1326  * Returns at most one result to the processor.
1327  *
1328  * @param h handle to the namestore
1329  * @param zone hash of public key of the zone to look up in, never NULL
1330  * @param value_zone hash of the public key of the target zone (value), never NULL
1331  * @param proc function to call on the matching records, or with
1332  *        NULL (rd_count == 0) if there are no matching records
1333  * @param proc_cls closure for proc
1334  * @return a handle that can be used to
1335  *         cancel
1336  */
1337 struct GNUNET_NAMESTORE_QueueEntry *
1338 GNUNET_NAMESTORE_zone_to_name (struct GNUNET_NAMESTORE_Handle *h,
1339                                const GNUNET_HashCode *zone,
1340                                const GNUNET_HashCode *value_zone,
1341                                GNUNET_NAMESTORE_RecordProcessor proc, void *proc_cls)
1342 {
1343   struct GNUNET_NAMESTORE_QueueEntry *qe;
1344   struct PendingMessage *pe;
1345   size_t msg_size = 0;
1346   uint32_t rid = 0;
1347
1348   GNUNET_assert (NULL != h);
1349   GNUNET_assert (NULL != zone);
1350   GNUNET_assert (NULL != value_zone);
1351
1352   rid = get_op_id(h);
1353   qe = GNUNET_malloc(sizeof (struct GNUNET_NAMESTORE_QueueEntry));
1354   qe->nsh = h;
1355   qe->proc = proc;
1356   qe->proc_cls = proc_cls;
1357   qe->op_id = rid;
1358   GNUNET_CONTAINER_DLL_insert_tail(h->op_head, h->op_tail, qe);
1359
1360   /* set msg_size*/
1361   msg_size = sizeof (struct ZoneToNameMessage);
1362   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
1363
1364   /* create msg here */
1365   struct ZoneToNameMessage * msg;
1366   pe->size = msg_size;
1367   pe->is_init = GNUNET_NO;
1368   msg = (struct ZoneToNameMessage *) &pe[1];
1369   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME);
1370   msg->gns_header.header.size = htons (msg_size);
1371   msg->gns_header.r_id = htonl (rid);
1372   msg->zone = *zone;
1373   msg->value_zone = *value_zone;
1374
1375   char * z_tmp = strdup (GNUNET_h2s (zone));
1376   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for zone `%s' in zone `%s'\n",
1377       "NAMESTORE_ZONE_TO_NAME",
1378       z_tmp,
1379       GNUNET_h2s (value_zone));
1380   GNUNET_free (z_tmp);
1381
1382   /* transmit message */
1383   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1384   do_transmit(h);
1385
1386   return qe;
1387 }
1388
1389
1390
1391 /**
1392  * Starts a new zone iteration (used to periodically PUT all of our
1393  * records into our DHT). This MUST lock the GNUNET_NAMESTORE_Handle
1394  * for any other calls than GNUNET_NAMESTORE_zone_iterator_next and
1395  * GNUNET_NAMESTORE_zone_iteration_stop.  "proc" will be called once
1396  * immediately, and then again after
1397  * "GNUNET_NAMESTORE_zone_iterator_next" is invoked.
1398  *
1399  * @param h handle to the namestore
1400  * @param zone zone to access, NULL for all zones
1401  * @param must_have_flags flags that must be set for the record to be returned
1402  * @param must_not_have_flags flags that must NOT be set for the record to be returned
1403  * @param proc function to call on each name from the zone; it
1404  *        will be called repeatedly with a value (if available)
1405  *        and always once at the end with a name of NULL.
1406  * @param proc_cls closure for proc
1407  * @return an iterator handle to use for iteration
1408  */
1409 struct GNUNET_NAMESTORE_ZoneIterator *
1410 GNUNET_NAMESTORE_zone_iteration_start (struct GNUNET_NAMESTORE_Handle *h,
1411                                        const GNUNET_HashCode *zone,
1412                                        enum GNUNET_NAMESTORE_RecordFlags must_have_flags,
1413                                        enum GNUNET_NAMESTORE_RecordFlags must_not_have_flags,
1414                                        GNUNET_NAMESTORE_RecordProcessor proc,
1415                                        void *proc_cls)
1416 {
1417   struct GNUNET_NAMESTORE_ZoneIterator *it;
1418   struct PendingMessage *pe;
1419   size_t msg_size = 0;
1420   uint32_t rid = 0;
1421
1422   GNUNET_assert (NULL != h);
1423   GNUNET_assert (NULL != zone);
1424
1425   rid = get_op_id(h);
1426   it = GNUNET_malloc (sizeof (struct GNUNET_NAMESTORE_ZoneIterator));
1427   it->h = h;
1428   it->proc = proc;
1429   it->proc_cls = proc;
1430   it->op_id = rid;
1431   it->zone = *zone;
1432   GNUNET_CONTAINER_DLL_insert_tail(h->z_head, h->z_tail, it);
1433
1434   /* set msg_size*/
1435   msg_size = sizeof (struct ZoneIterationStartMessage);
1436   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
1437
1438   /* create msg here */
1439   struct ZoneIterationStartMessage * msg;
1440   pe->size = msg_size;
1441   pe->is_init = GNUNET_NO;
1442   msg = (struct ZoneIterationStartMessage *) &pe[1];
1443   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START);
1444   msg->gns_header.header.size = htons (msg_size);
1445   msg->gns_header.r_id = htonl (rid);
1446   msg->zone = *zone;
1447   msg->must_have_flags = ntohs (must_have_flags);
1448   msg->must_not_have_flags = ntohs (must_not_have_flags);
1449
1450   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for zone `%s'\n", "ZONE_ITERATION_START", GNUNET_h2s(zone));
1451
1452   /* transmit message */
1453   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1454   do_transmit(h);
1455
1456   return it;
1457 }
1458
1459
1460 /**
1461  * Calls the record processor specified in GNUNET_NAMESTORE_zone_iteration_start
1462  * for the next record.
1463  *
1464  * @param it the iterator
1465  */
1466 void
1467 GNUNET_NAMESTORE_zone_iterator_next (struct GNUNET_NAMESTORE_ZoneIterator *it)
1468 {
1469   struct GNUNET_NAMESTORE_Handle *h;
1470   struct PendingMessage *pe;
1471   size_t msg_size = 0;
1472
1473   GNUNET_assert (NULL != it);
1474   h = it->h;
1475
1476   /* set msg_size*/
1477   msg_size = sizeof (struct ZoneIterationNextMessage);
1478   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
1479
1480   /* create msg here */
1481   struct ZoneIterationNextMessage * msg;
1482   pe->size = msg_size;
1483   pe->is_init = GNUNET_NO;
1484   msg = (struct ZoneIterationNextMessage *) &pe[1];
1485   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT);
1486   msg->gns_header.header.size = htons (msg_size);
1487   msg->gns_header.r_id = htonl (it->op_id);
1488
1489   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for name `%s'\n", "ZONE_ITERATION_NEXT", GNUNET_h2s(&it->zone));
1490
1491   /* transmit message */
1492   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1493   do_transmit(h);
1494 }
1495
1496
1497 /**
1498  * Stops iteration and releases the namestore handle for further calls.
1499  *
1500  * @param it the iterator
1501  */
1502 void
1503 GNUNET_NAMESTORE_zone_iteration_stop (struct GNUNET_NAMESTORE_ZoneIterator *it)
1504 {
1505   GNUNET_assert (NULL != it);
1506   struct PendingMessage *pe;
1507   size_t msg_size = 0;
1508   struct GNUNET_NAMESTORE_Handle *h = it->h;
1509
1510   /* set msg_size*/
1511   msg_size = sizeof (struct ZoneIterationStopMessage);
1512   pe = GNUNET_malloc(sizeof (struct PendingMessage) + msg_size);
1513
1514   /* create msg here */
1515   struct ZoneIterationStopMessage * msg;
1516   pe->size = msg_size;
1517   pe->is_init = GNUNET_NO;
1518   msg = (struct ZoneIterationStopMessage *) &pe[1];
1519   msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP);
1520   msg->gns_header.header.size = htons (msg_size);
1521   msg->gns_header.r_id = htonl (it->op_id);
1522
1523   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending `%s' message for name `%s'\n", "ZONE_ITERATION_STOP", GNUNET_h2s(&it->zone));
1524
1525   /* transmit message */
1526   GNUNET_CONTAINER_DLL_insert_tail (h->pending_head, h->pending_tail, pe);
1527   do_transmit(h);
1528 }
1529
1530
1531 /**
1532  * Cancel a namestore operation.  The final callback from the
1533  * operation must not have been done yet.
1534  *
1535  * @param qe operation to cancel
1536  */
1537 void
1538 GNUNET_NAMESTORE_cancel (struct GNUNET_NAMESTORE_QueueEntry *qe)
1539 {
1540   struct GNUNET_NAMESTORE_Handle *h = qe->nsh;
1541
1542   GNUNET_assert (qe != NULL);
1543
1544   GNUNET_CONTAINER_DLL_remove(h->op_head, h->op_tail, qe);
1545   GNUNET_free(qe);
1546
1547 }
1548
1549 /* end of namestore_api.c */