fixing calculation of Bloom filter size that was too large by 1024x because it was...
[oweals/gnunet.git] / src / datastore / datastore_api.c
1 /*
2      This file is part of GNUnet
3      (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 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 datastore/datastore_api.c
23  * @brief Management for the datastore for files stored on a GNUnet node.  Implements
24  *        a priority queue for requests (with timeouts).
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_arm_service.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_datastore_service.h"
31 #include "gnunet_statistics_service.h"
32 #include "datastore.h"
33
34 #define LOG(kind,...) GNUNET_log_from (kind, "datastore-api",__VA_ARGS__)
35
36 /**
37  * If a client stopped asking for more results, how many more do
38  * we receive from the DB before killing the connection?  Trade-off
39  * between re-doing TCP handshakes and (needlessly) receiving
40  * useless results.
41  */
42 #define MAX_EXCESS_RESULTS 8
43
44 /**
45  * Context for processing status messages.
46  */
47 struct StatusContext
48 {
49   /**
50    * Continuation to call with the status.
51    */
52   GNUNET_DATASTORE_ContinuationWithStatus cont;
53
54   /**
55    * Closure for cont.
56    */
57   void *cont_cls;
58
59 };
60
61
62 /**
63  * Context for processing result messages.
64  */
65 struct ResultContext
66 {
67   /**
68    * Function to call with the result.
69    */
70   GNUNET_DATASTORE_DatumProcessor proc;
71
72   /**
73    * Closure for proc.
74    */
75   void *proc_cls;
76
77 };
78
79
80 /**
81  *  Context for a queue operation.
82  */
83 union QueueContext
84 {
85
86   struct StatusContext sc;
87
88   struct ResultContext rc;
89
90 };
91
92
93
94 /**
95  * Entry in our priority queue.
96  */
97 struct GNUNET_DATASTORE_QueueEntry
98 {
99
100   /**
101    * This is a linked list.
102    */
103   struct GNUNET_DATASTORE_QueueEntry *next;
104
105   /**
106    * This is a linked list.
107    */
108   struct GNUNET_DATASTORE_QueueEntry *prev;
109
110   /**
111    * Handle to the master context.
112    */
113   struct GNUNET_DATASTORE_Handle *h;
114
115   /**
116    * Response processor (NULL if we are not waiting for a response).
117    * This struct should be used for the closure, function-specific
118    * arguments can be passed via 'qc'.
119    */
120   GNUNET_CLIENT_MessageHandler response_proc;
121
122   /**
123    * Function to call after transmission of the request.
124    */
125   GNUNET_DATASTORE_ContinuationWithStatus cont;
126
127   /**
128    * Closure for 'cont'.
129    */
130   void *cont_cls;
131
132   /**
133    * Context for the operation.
134    */
135   union QueueContext qc;
136
137   /**
138    * Task for timeout signalling.
139    */
140   GNUNET_SCHEDULER_TaskIdentifier task;
141
142   /**
143    * Timeout for the current operation.
144    */
145   struct GNUNET_TIME_Absolute timeout;
146
147   /**
148    * Priority in the queue.
149    */
150   unsigned int priority;
151
152   /**
153    * Maximum allowed length of queue (otherwise
154    * this request should be discarded).
155    */
156   unsigned int max_queue;
157
158   /**
159    * Number of bytes in the request message following
160    * this struct.  32-bit value for nicer memory
161    * access (and overall struct alignment).
162    */
163   uint32_t message_size;
164
165   /**
166    * Has this message been transmitted to the service?
167    * Only ever GNUNET_YES for the head of the queue.
168    * Note that the overall struct should end at a
169    * multiple of 64 bits.
170    */
171   int was_transmitted;
172
173 };
174
175 /**
176  * Handle to the datastore service.
177  */
178 struct GNUNET_DATASTORE_Handle
179 {
180
181   /**
182    * Our configuration.
183    */
184   const struct GNUNET_CONFIGURATION_Handle *cfg;
185
186   /**
187    * Current connection to the datastore service.
188    */
189   struct GNUNET_CLIENT_Connection *client;
190
191   /**
192    * Handle for statistics.
193    */
194   struct GNUNET_STATISTICS_Handle *stats;
195
196   /**
197    * Current transmit handle.
198    */
199   struct GNUNET_CLIENT_TransmitHandle *th;
200
201   /**
202    * Current head of priority queue.
203    */
204   struct GNUNET_DATASTORE_QueueEntry *queue_head;
205
206   /**
207    * Current tail of priority queue.
208    */
209   struct GNUNET_DATASTORE_QueueEntry *queue_tail;
210
211   /**
212    * Task for trying to reconnect.
213    */
214   GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
215
216   /**
217    * How quickly should we retry?  Used for exponential back-off on
218    * connect-errors.
219    */
220   struct GNUNET_TIME_Relative retry_time;
221
222   /**
223    * Number of entries in the queue.
224    */
225   unsigned int queue_size;
226
227   /**
228    * Number of results we're receiving for the current query
229    * after application stopped to care.  Used to determine when
230    * to reset the connection.
231    */
232   unsigned int result_count;
233
234   /**
235    * Are we currently trying to receive from the service?
236    */
237   int in_receive;
238
239   /**
240    * We should ignore the next message(s) from the service.
241    */
242   unsigned int skip_next_messages;
243
244 };
245
246
247
248 /**
249  * Connect to the datastore service.
250  *
251  * @param cfg configuration to use
252  * @return handle to use to access the service
253  */
254 struct GNUNET_DATASTORE_Handle *
255 GNUNET_DATASTORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg)
256 {
257   struct GNUNET_CLIENT_Connection *c;
258   struct GNUNET_DATASTORE_Handle *h;
259
260   c = GNUNET_CLIENT_connect ("datastore", cfg);
261   if (c == NULL)
262     return NULL;                /* oops */
263   h = GNUNET_malloc (sizeof (struct GNUNET_DATASTORE_Handle) +
264                      GNUNET_SERVER_MAX_MESSAGE_SIZE - 1);
265   h->client = c;
266   h->cfg = cfg;
267   h->stats = GNUNET_STATISTICS_create ("datastore-api", cfg);
268   return h;
269 }
270
271
272 /**
273  * Transmit DROP message to datastore service.
274  *
275  * @param cls the 'struct GNUNET_DATASTORE_Handle'
276  * @param size number of bytes that can be copied to buf
277  * @param buf where to copy the drop message
278  * @return number of bytes written to buf
279  */
280 static size_t
281 transmit_drop (void *cls, size_t size, void *buf)
282 {
283   struct GNUNET_DATASTORE_Handle *h = cls;
284   struct GNUNET_MessageHeader *hdr;
285
286   if (buf == NULL)
287   {
288     LOG (GNUNET_ERROR_TYPE_WARNING,
289          _("Failed to transmit request to drop database.\n"));
290     GNUNET_DATASTORE_disconnect (h, GNUNET_NO);
291     return 0;
292   }
293   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
294   hdr = buf;
295   hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
296   hdr->type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_DROP);
297   GNUNET_DATASTORE_disconnect (h, GNUNET_NO);
298   return sizeof (struct GNUNET_MessageHeader);
299 }
300
301
302 /**
303  * Disconnect from the datastore service (and free
304  * associated resources).
305  *
306  * @param h handle to the datastore
307  * @param drop set to GNUNET_YES to delete all data in datastore (!)
308  */
309 void
310 GNUNET_DATASTORE_disconnect (struct GNUNET_DATASTORE_Handle *h, int drop)
311 {
312   struct GNUNET_DATASTORE_QueueEntry *qe;
313
314 #if DEBUG_DATASTORE
315   LOG (GNUNET_ERROR_TYPE_DEBUG, "Datastore disconnect\n");
316 #endif
317   if (NULL != h->th)
318   {
319     GNUNET_CLIENT_notify_transmit_ready_cancel (h->th);
320     h->th = NULL;
321   }
322   if (h->client != NULL)
323   {
324     GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
325     h->client = NULL;
326   }
327   if (h->reconnect_task != GNUNET_SCHEDULER_NO_TASK)
328   {
329     GNUNET_SCHEDULER_cancel (h->reconnect_task);
330     h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
331   }
332   while (NULL != (qe = h->queue_head))
333   {
334     GNUNET_assert (NULL != qe->response_proc);
335     qe->response_proc (h, NULL);
336   }
337   if (GNUNET_YES == drop)
338   {
339     h->client = GNUNET_CLIENT_connect ("datastore", h->cfg);
340     if (h->client != NULL)
341     {
342       if (NULL !=
343           GNUNET_CLIENT_notify_transmit_ready (h->client,
344                                                sizeof (struct
345                                                        GNUNET_MessageHeader),
346                                                GNUNET_TIME_UNIT_MINUTES,
347                                                GNUNET_YES, &transmit_drop, h))
348         return;
349       GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
350       h->client = NULL;
351     }
352     GNUNET_break (0);
353   }
354   GNUNET_STATISTICS_destroy (h->stats, GNUNET_NO);
355   h->stats = NULL;
356   GNUNET_free (h);
357 }
358
359
360 /**
361  * A request has timed out (before being transmitted to the service).
362  *
363  * @param cls the 'struct GNUNET_DATASTORE_QueueEntry'
364  * @param tc scheduler context
365  */
366 static void
367 timeout_queue_entry (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
368 {
369   struct GNUNET_DATASTORE_QueueEntry *qe = cls;
370
371   GNUNET_STATISTICS_update (qe->h->stats,
372                             gettext_noop ("# queue entry timeouts"), 1,
373                             GNUNET_NO);
374   qe->task = GNUNET_SCHEDULER_NO_TASK;
375   GNUNET_assert (qe->was_transmitted == GNUNET_NO);
376 #if DEBUG_DATASTORE
377   LOG (GNUNET_ERROR_TYPE_DEBUG, "Timeout of request in datastore queue\n");
378 #endif
379   qe->response_proc (qe->h, NULL);
380 }
381
382
383 /**
384  * Create a new entry for our priority queue (and possibly discard other entires if
385  * the queue is getting too long).
386  *
387  * @param h handle to the datastore
388  * @param msize size of the message to queue
389  * @param queue_priority priority of the entry
390  * @param max_queue_size at what queue size should this request be dropped
391  *        (if other requests of higher priority are in the queue)
392  * @param timeout timeout for the operation
393  * @param response_proc function to call with replies (can be NULL)
394  * @param qc client context (NOT a closure for response_proc)
395  * @return NULL if the queue is full
396  */
397 static struct GNUNET_DATASTORE_QueueEntry *
398 make_queue_entry (struct GNUNET_DATASTORE_Handle *h, size_t msize,
399                   unsigned int queue_priority, unsigned int max_queue_size,
400                   struct GNUNET_TIME_Relative timeout,
401                   GNUNET_CLIENT_MessageHandler response_proc,
402                   const union QueueContext *qc)
403 {
404   struct GNUNET_DATASTORE_QueueEntry *ret;
405   struct GNUNET_DATASTORE_QueueEntry *pos;
406   unsigned int c;
407
408   c = 0;
409   pos = h->queue_head;
410   while ((pos != NULL) && (c < max_queue_size) &&
411          (pos->priority >= queue_priority))
412   {
413     c++;
414     pos = pos->next;
415   }
416   if (c >= max_queue_size)
417   {
418     GNUNET_STATISTICS_update (h->stats, gettext_noop ("# queue overflows"), 1,
419                               GNUNET_NO);
420     return NULL;
421   }
422   ret = GNUNET_malloc (sizeof (struct GNUNET_DATASTORE_QueueEntry) + msize);
423   ret->h = h;
424   ret->response_proc = response_proc;
425   ret->qc = *qc;
426   ret->timeout = GNUNET_TIME_relative_to_absolute (timeout);
427   ret->priority = queue_priority;
428   ret->max_queue = max_queue_size;
429   ret->message_size = msize;
430   ret->was_transmitted = GNUNET_NO;
431   if (pos == NULL)
432   {
433     /* append at the tail */
434     pos = h->queue_tail;
435   }
436   else
437   {
438     pos = pos->prev;
439     /* do not insert at HEAD if HEAD query was already
440      * transmitted and we are still receiving replies! */
441     if ((pos == NULL) && (h->queue_head->was_transmitted))
442       pos = h->queue_head;
443   }
444   c++;
445   GNUNET_STATISTICS_update (h->stats, gettext_noop ("# queue entries created"),
446                             1, GNUNET_NO);
447   GNUNET_CONTAINER_DLL_insert_after (h->queue_head, h->queue_tail, pos, ret);
448   h->queue_size++;
449   ret->task = GNUNET_SCHEDULER_add_delayed (timeout, &timeout_queue_entry, ret);
450   pos = ret->next;
451   while (pos != NULL)
452   {
453     if ((pos->max_queue < h->queue_size) && (pos->was_transmitted == GNUNET_NO))
454     {
455       GNUNET_assert (pos->response_proc != NULL);
456       /* move 'pos' element to head so that it will be
457        * killed on 'NULL' call below */
458 #if DEBUG_DATASTORE
459       LOG (GNUNET_ERROR_TYPE_DEBUG, "Dropping request from datastore queue\n");
460 #endif
461       GNUNET_CONTAINER_DLL_remove (h->queue_head, h->queue_tail, pos);
462       GNUNET_CONTAINER_DLL_insert (h->queue_head, h->queue_tail, pos);
463       GNUNET_STATISTICS_update (h->stats,
464                                 gettext_noop
465                                 ("# Requests dropped from datastore queue"), 1,
466                                 GNUNET_NO);
467       GNUNET_assert (h->queue_head == pos);
468       pos->response_proc (h, NULL);
469       break;
470     }
471     pos = pos->next;
472   }
473   return ret;
474 }
475
476
477 /**
478  * Process entries in the queue (or do nothing if we are already
479  * doing so).
480  *
481  * @param h handle to the datastore
482  */
483 static void
484 process_queue (struct GNUNET_DATASTORE_Handle *h);
485
486
487 /**
488  * Try reconnecting to the datastore service.
489  *
490  * @param cls the 'struct GNUNET_DATASTORE_Handle'
491  * @param tc scheduler context
492  */
493 static void
494 try_reconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
495 {
496   struct GNUNET_DATASTORE_Handle *h = cls;
497
498   if (h->retry_time.rel_value < GNUNET_CONSTANTS_SERVICE_RETRY.rel_value)
499     h->retry_time = GNUNET_CONSTANTS_SERVICE_RETRY;
500   else
501     h->retry_time = GNUNET_TIME_relative_multiply (h->retry_time, 2);
502   if (h->retry_time.rel_value > GNUNET_CONSTANTS_SERVICE_TIMEOUT.rel_value)
503     h->retry_time = GNUNET_CONSTANTS_SERVICE_TIMEOUT;
504   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
505   h->client = GNUNET_CLIENT_connect ("datastore", h->cfg);
506   if (h->client == NULL)
507   {
508     LOG (GNUNET_ERROR_TYPE_ERROR, "DATASTORE reconnect failed (fatally)\n");
509     return;
510   }
511   GNUNET_STATISTICS_update (h->stats,
512                             gettext_noop
513                             ("# datastore connections (re)created"), 1,
514                             GNUNET_NO);
515 #if DEBUG_DATASTORE
516   LOG (GNUNET_ERROR_TYPE_DEBUG, "Reconnected to DATASTORE\n");
517 #endif
518   process_queue (h);
519 }
520
521
522 /**
523  * Disconnect from the service and then try reconnecting to the datastore service
524  * after some delay.
525  *
526  * @param h handle to datastore to disconnect and reconnect
527  */
528 static void
529 do_disconnect (struct GNUNET_DATASTORE_Handle *h)
530 {
531   if (h->client == NULL)
532   {
533 #if DEBUG_DATASTORE
534     LOG (GNUNET_ERROR_TYPE_DEBUG,
535          "client NULL in disconnect, will not try to reconnect\n");
536 #endif
537     return;
538   }
539 #if 0
540   GNUNET_STATISTICS_update (stats, gettext_noop ("# reconnected to DATASTORE"),
541                             1, GNUNET_NO);
542 #endif
543   GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
544   h->skip_next_messages = 0;
545   h->client = NULL;
546   h->reconnect_task =
547       GNUNET_SCHEDULER_add_delayed (h->retry_time, &try_reconnect, h);
548 }
549
550
551 /**
552  * Function called whenever we receive a message from
553  * the service.  Calls the appropriate handler.
554  *
555  * @param cls the 'struct GNUNET_DATASTORE_Handle'
556  * @param msg the received message
557  */
558 static void
559 receive_cb (void *cls, const struct GNUNET_MessageHeader *msg)
560 {
561   struct GNUNET_DATASTORE_Handle *h = cls;
562   struct GNUNET_DATASTORE_QueueEntry *qe;
563
564   h->in_receive = GNUNET_NO;
565 #if DEBUG_DATASTORE
566   LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving reply from datastore\n");
567 #endif
568   if (h->skip_next_messages > 0)
569   {
570     h->skip_next_messages--;
571     process_queue (h);
572     return;
573   }
574   if (NULL == (qe = h->queue_head))
575   {
576     GNUNET_break (0);
577     process_queue (h);
578     return;
579   }
580   qe->response_proc (h, msg);
581 }
582
583
584 /**
585  * Transmit request from queue to datastore service.
586  *
587  * @param cls the 'struct GNUNET_DATASTORE_Handle'
588  * @param size number of bytes that can be copied to buf
589  * @param buf where to copy the drop message
590  * @return number of bytes written to buf
591  */
592 static size_t
593 transmit_request (void *cls, size_t size, void *buf)
594 {
595   struct GNUNET_DATASTORE_Handle *h = cls;
596   struct GNUNET_DATASTORE_QueueEntry *qe;
597   size_t msize;
598
599   h->th = NULL;
600   if (NULL == (qe = h->queue_head))
601     return 0;                   /* no entry in queue */
602   if (buf == NULL)
603   {
604 #if DEBUG_DATASTORE
605     LOG (GNUNET_ERROR_TYPE_DEBUG, "Failed to transmit request to DATASTORE.\n");
606 #endif
607     GNUNET_STATISTICS_update (h->stats,
608                               gettext_noop ("# transmission request failures"),
609                               1, GNUNET_NO);
610     do_disconnect (h);
611     return 0;
612   }
613   if (size < (msize = qe->message_size))
614   {
615     process_queue (h);
616     return 0;
617   }
618 #if DEBUG_DATASTORE
619   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting %u byte request to DATASTORE\n",
620        msize);
621 #endif
622   memcpy (buf, &qe[1], msize);
623   qe->was_transmitted = GNUNET_YES;
624   GNUNET_SCHEDULER_cancel (qe->task);
625   qe->task = GNUNET_SCHEDULER_NO_TASK;
626   GNUNET_assert (GNUNET_NO == h->in_receive);
627   h->in_receive = GNUNET_YES;
628   GNUNET_CLIENT_receive (h->client, &receive_cb, h,
629                          GNUNET_TIME_absolute_get_remaining (qe->timeout));
630   GNUNET_STATISTICS_update (h->stats,
631                             gettext_noop ("# bytes sent to datastore"), 1,
632                             GNUNET_NO);
633   return msize;
634 }
635
636
637 /**
638  * Process entries in the queue (or do nothing if we are already
639  * doing so).
640  *
641  * @param h handle to the datastore
642  */
643 static void
644 process_queue (struct GNUNET_DATASTORE_Handle *h)
645 {
646   struct GNUNET_DATASTORE_QueueEntry *qe;
647
648   if (NULL == (qe = h->queue_head))
649   {
650 #if DEBUG_DATASTORE > 1
651     LOG (GNUNET_ERROR_TYPE_DEBUG, "Queue empty\n");
652 #endif
653     return;                     /* no entry in queue */
654   }
655   if (qe->was_transmitted == GNUNET_YES)
656   {
657 #if DEBUG_DATASTORE > 1
658     LOG (GNUNET_ERROR_TYPE_DEBUG, "Head request already transmitted\n");
659 #endif
660     return;                     /* waiting for replies */
661   }
662   if (h->th != NULL)
663   {
664 #if DEBUG_DATASTORE > 1
665     LOG (GNUNET_ERROR_TYPE_DEBUG, "Pending transmission request\n");
666 #endif
667     return;                     /* request pending */
668   }
669   if (h->client == NULL)
670   {
671 #if DEBUG_DATASTORE > 1
672     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not connected\n");
673 #endif
674     return;                     /* waiting for reconnect */
675   }
676   if (GNUNET_YES == h->in_receive)
677   {
678     /* wait for response to previous query */
679     return;
680   }
681 #if DEBUG_DATASTORE
682   LOG (GNUNET_ERROR_TYPE_DEBUG, "Queueing %u byte request to DATASTORE\n",
683        qe->message_size);
684 #endif
685   h->th =
686       GNUNET_CLIENT_notify_transmit_ready (h->client, qe->message_size,
687                                            GNUNET_TIME_absolute_get_remaining
688                                            (qe->timeout), GNUNET_YES,
689                                            &transmit_request, h);
690   GNUNET_assert (GNUNET_NO == h->in_receive);
691   GNUNET_break (NULL != h->th);
692 }
693
694
695 /**
696  * Dummy continuation used to do nothing (but be non-zero).
697  *
698  * @param cls closure
699  * @param result result
700  * @param emsg error message
701  */
702 static void
703 drop_status_cont (void *cls, int32_t result, const char *emsg)
704 {
705   /* do nothing */
706 }
707
708
709 /**
710  * Free a queue entry.  Removes the given entry from the
711  * queue and releases associated resources.  Does NOT
712  * call the callback.
713  *
714  * @param qe entry to free.
715  */
716 static void
717 free_queue_entry (struct GNUNET_DATASTORE_QueueEntry *qe)
718 {
719   struct GNUNET_DATASTORE_Handle *h = qe->h;
720
721   GNUNET_CONTAINER_DLL_remove (h->queue_head, h->queue_tail, qe);
722   if (qe->task != GNUNET_SCHEDULER_NO_TASK)
723   {
724     GNUNET_SCHEDULER_cancel (qe->task);
725     qe->task = GNUNET_SCHEDULER_NO_TASK;
726   }
727   h->queue_size--;
728   qe->was_transmitted = GNUNET_SYSERR;  /* use-after-free warning */
729   GNUNET_free (qe);
730 }
731
732
733 /**
734  * Type of a function to call when we receive a message
735  * from the service.
736  *
737  * @param cls closure
738  * @param msg message received, NULL on timeout or fatal error
739  */
740 static void
741 process_status_message (void *cls, const struct GNUNET_MessageHeader *msg)
742 {
743   struct GNUNET_DATASTORE_Handle *h = cls;
744   struct GNUNET_DATASTORE_QueueEntry *qe;
745   struct StatusContext rc;
746   const struct StatusMessage *sm;
747   const char *emsg;
748   int32_t status;
749   int was_transmitted;
750
751   if (NULL == (qe = h->queue_head))
752   {
753     GNUNET_break (0);
754     do_disconnect (h);
755     return;
756   }
757   rc = qe->qc.sc;
758   if (msg == NULL)
759   {
760     was_transmitted = qe->was_transmitted;
761     free_queue_entry (qe);
762     if (was_transmitted == GNUNET_YES)
763       do_disconnect (h);
764     else
765       process_queue (h);
766     if (rc.cont != NULL)
767       rc.cont (rc.cont_cls, GNUNET_SYSERR,
768                _("Failed to receive status response from database."));
769     return;
770   }
771   GNUNET_assert (GNUNET_YES == qe->was_transmitted);
772   free_queue_entry (qe);
773   if ((ntohs (msg->size) < sizeof (struct StatusMessage)) ||
774       (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_DATASTORE_STATUS))
775   {
776     GNUNET_break (0);
777     h->retry_time = GNUNET_TIME_UNIT_ZERO;
778     do_disconnect (h);
779     if (rc.cont != NULL)
780       rc.cont (rc.cont_cls, GNUNET_SYSERR,
781                _("Error reading response from datastore service"));
782     return;
783   }
784   sm = (const struct StatusMessage *) msg;
785   status = ntohl (sm->status);
786   emsg = NULL;
787   if (ntohs (msg->size) > sizeof (struct StatusMessage))
788   {
789     emsg = (const char *) &sm[1];
790     if (emsg[ntohs (msg->size) - sizeof (struct StatusMessage) - 1] != '\0')
791     {
792       GNUNET_break (0);
793       emsg = _("Invalid error message received from datastore service");
794     }
795   }
796   if ((status == GNUNET_SYSERR) && (emsg == NULL))
797   {
798     GNUNET_break (0);
799     emsg = _("Invalid error message received from datastore service");
800   }
801 #if DEBUG_DATASTORE
802   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received status %d/%s\n", (int) status, emsg);
803 #endif
804   GNUNET_STATISTICS_update (h->stats,
805                             gettext_noop ("# status messages received"), 1,
806                             GNUNET_NO);
807   h->retry_time.rel_value = 0;
808   process_queue (h);
809   if (rc.cont != NULL)
810     rc.cont (rc.cont_cls, status, emsg);
811 }
812
813
814 /**
815  * Store an item in the datastore.  If the item is already present,
816  * the priorities are summed up and the higher expiration time and
817  * lower anonymity level is used.
818  *
819  * @param h handle to the datastore
820  * @param rid reservation ID to use (from "reserve"); use 0 if no
821  *            prior reservation was made
822  * @param key key for the value
823  * @param size number of bytes in data
824  * @param data content stored
825  * @param type type of the content
826  * @param priority priority of the content
827  * @param anonymity anonymity-level for the content
828  * @param replication how often should the content be replicated to other peers?
829  * @param expiration expiration time for the content
830  * @param queue_priority ranking of this request in the priority queue
831  * @param max_queue_size at what queue size should this request be dropped
832  *        (if other requests of higher priority are in the queue)
833  * @param timeout timeout for the operation
834  * @param cont continuation to call when done
835  * @param cont_cls closure for cont
836  * @return NULL if the entry was not queued, otherwise a handle that can be used to
837  *         cancel; note that even if NULL is returned, the callback will be invoked
838  *         (or rather, will already have been invoked)
839  */
840 struct GNUNET_DATASTORE_QueueEntry *
841 GNUNET_DATASTORE_put (struct GNUNET_DATASTORE_Handle *h, uint32_t rid,
842                       const GNUNET_HashCode * key, size_t size,
843                       const void *data, enum GNUNET_BLOCK_Type type,
844                       uint32_t priority, uint32_t anonymity,
845                       uint32_t replication,
846                       struct GNUNET_TIME_Absolute expiration,
847                       unsigned int queue_priority, unsigned int max_queue_size,
848                       struct GNUNET_TIME_Relative timeout,
849                       GNUNET_DATASTORE_ContinuationWithStatus cont,
850                       void *cont_cls)
851 {
852   struct GNUNET_DATASTORE_QueueEntry *qe;
853   struct DataMessage *dm;
854   size_t msize;
855   union QueueContext qc;
856
857 #if DEBUG_DATASTORE
858   LOG (GNUNET_ERROR_TYPE_DEBUG,
859        "Asked to put %u bytes of data under key `%s' for %llu ms\n", size,
860        GNUNET_h2s (key),
861        GNUNET_TIME_absolute_get_remaining (expiration).rel_value);
862 #endif
863   msize = sizeof (struct DataMessage) + size;
864   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
865   qc.sc.cont = cont;
866   qc.sc.cont_cls = cont_cls;
867   qe = make_queue_entry (h, msize, queue_priority, max_queue_size, timeout,
868                          &process_status_message, &qc);
869   if (qe == NULL)
870   {
871 #if DEBUG_DATASTORE
872     LOG (GNUNET_ERROR_TYPE_DEBUG, "Could not create queue entry for PUT\n");
873 #endif
874     return NULL;
875   }
876   GNUNET_STATISTICS_update (h->stats, gettext_noop ("# PUT requests executed"),
877                             1, GNUNET_NO);
878   dm = (struct DataMessage *) &qe[1];
879   dm->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_PUT);
880   dm->header.size = htons (msize);
881   dm->rid = htonl (rid);
882   dm->size = htonl ((uint32_t) size);
883   dm->type = htonl (type);
884   dm->priority = htonl (priority);
885   dm->anonymity = htonl (anonymity);
886   dm->replication = htonl (replication);
887   dm->reserved = htonl (0);
888   dm->uid = GNUNET_htonll (0);
889   dm->expiration = GNUNET_TIME_absolute_hton (expiration);
890   dm->key = *key;
891   memcpy (&dm[1], data, size);
892   process_queue (h);
893   return qe;
894 }
895
896
897 /**
898  * Reserve space in the datastore.  This function should be used
899  * to avoid "out of space" failures during a longer sequence of "put"
900  * operations (for example, when a file is being inserted).
901  *
902  * @param h handle to the datastore
903  * @param amount how much space (in bytes) should be reserved (for content only)
904  * @param entries how many entries will be created (to calculate per-entry overhead)
905  * @param queue_priority ranking of this request in the priority queue
906  * @param max_queue_size at what queue size should this request be dropped
907  *        (if other requests of higher priority are in the queue)
908  * @param timeout how long to wait at most for a response (or before dying in queue)
909  * @param cont continuation to call when done; "success" will be set to
910  *             a positive reservation value if space could be reserved.
911  * @param cont_cls closure for cont
912  * @return NULL if the entry was not queued, otherwise a handle that can be used to
913  *         cancel; note that even if NULL is returned, the callback will be invoked
914  *         (or rather, will already have been invoked)
915  */
916 struct GNUNET_DATASTORE_QueueEntry *
917 GNUNET_DATASTORE_reserve (struct GNUNET_DATASTORE_Handle *h, uint64_t amount,
918                           uint32_t entries, unsigned int queue_priority,
919                           unsigned int max_queue_size,
920                           struct GNUNET_TIME_Relative timeout,
921                           GNUNET_DATASTORE_ContinuationWithStatus cont,
922                           void *cont_cls)
923 {
924   struct GNUNET_DATASTORE_QueueEntry *qe;
925   struct ReserveMessage *rm;
926   union QueueContext qc;
927
928   if (cont == NULL)
929     cont = &drop_status_cont;
930 #if DEBUG_DATASTORE
931   LOG (GNUNET_ERROR_TYPE_DEBUG,
932        "Asked to reserve %llu bytes of data and %u entries\n",
933        (unsigned long long) amount, (unsigned int) entries);
934 #endif
935   qc.sc.cont = cont;
936   qc.sc.cont_cls = cont_cls;
937   qe = make_queue_entry (h, sizeof (struct ReserveMessage), queue_priority,
938                          max_queue_size, timeout, &process_status_message, &qc);
939   if (qe == NULL)
940   {
941 #if DEBUG_DATASTORE
942     LOG (GNUNET_ERROR_TYPE_DEBUG, "Could not create queue entry to reserve\n");
943 #endif
944     return NULL;
945   }
946   GNUNET_STATISTICS_update (h->stats,
947                             gettext_noop ("# RESERVE requests executed"), 1,
948                             GNUNET_NO);
949   rm = (struct ReserveMessage *) &qe[1];
950   rm->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_RESERVE);
951   rm->header.size = htons (sizeof (struct ReserveMessage));
952   rm->entries = htonl (entries);
953   rm->amount = GNUNET_htonll (amount);
954   process_queue (h);
955   return qe;
956 }
957
958
959 /**
960  * Signal that all of the data for which a reservation was made has
961  * been stored and that whatever excess space might have been reserved
962  * can now be released.
963  *
964  * @param h handle to the datastore
965  * @param rid reservation ID (value of "success" in original continuation
966  *        from the "reserve" function).
967  * @param queue_priority ranking of this request in the priority queue
968  * @param max_queue_size at what queue size should this request be dropped
969  *        (if other requests of higher priority are in the queue)
970  * @param queue_priority ranking of this request in the priority queue
971  * @param max_queue_size at what queue size should this request be dropped
972  *        (if other requests of higher priority are in the queue)
973  * @param timeout how long to wait at most for a response
974  * @param cont continuation to call when done
975  * @param cont_cls closure for cont
976  * @return NULL if the entry was not queued, otherwise a handle that can be used to
977  *         cancel; note that even if NULL is returned, the callback will be invoked
978  *         (or rather, will already have been invoked)
979  */
980 struct GNUNET_DATASTORE_QueueEntry *
981 GNUNET_DATASTORE_release_reserve (struct GNUNET_DATASTORE_Handle *h,
982                                   uint32_t rid, unsigned int queue_priority,
983                                   unsigned int max_queue_size,
984                                   struct GNUNET_TIME_Relative timeout,
985                                   GNUNET_DATASTORE_ContinuationWithStatus cont,
986                                   void *cont_cls)
987 {
988   struct GNUNET_DATASTORE_QueueEntry *qe;
989   struct ReleaseReserveMessage *rrm;
990   union QueueContext qc;
991
992   if (cont == NULL)
993     cont = &drop_status_cont;
994 #if DEBUG_DATASTORE
995   LOG (GNUNET_ERROR_TYPE_DEBUG, "Asked to release reserve %d\n", rid);
996 #endif
997   qc.sc.cont = cont;
998   qc.sc.cont_cls = cont_cls;
999   qe = make_queue_entry (h, sizeof (struct ReleaseReserveMessage),
1000                          queue_priority, max_queue_size, timeout,
1001                          &process_status_message, &qc);
1002   if (qe == NULL)
1003   {
1004 #if DEBUG_DATASTORE
1005     LOG (GNUNET_ERROR_TYPE_DEBUG,
1006          "Could not create queue entry to release reserve\n");
1007 #endif
1008     return NULL;
1009   }
1010   GNUNET_STATISTICS_update (h->stats,
1011                             gettext_noop
1012                             ("# RELEASE RESERVE requests executed"), 1,
1013                             GNUNET_NO);
1014   rrm = (struct ReleaseReserveMessage *) &qe[1];
1015   rrm->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_RELEASE_RESERVE);
1016   rrm->header.size = htons (sizeof (struct ReleaseReserveMessage));
1017   rrm->rid = htonl (rid);
1018   process_queue (h);
1019   return qe;
1020 }
1021
1022
1023 /**
1024  * Update a value in the datastore.
1025  *
1026  * @param h handle to the datastore
1027  * @param uid identifier for the value
1028  * @param priority how much to increase the priority of the value
1029  * @param expiration new expiration value should be MAX of existing and this argument
1030  * @param queue_priority ranking of this request in the priority queue
1031  * @param max_queue_size at what queue size should this request be dropped
1032  *        (if other requests of higher priority are in the queue)
1033  * @param timeout how long to wait at most for a response
1034  * @param cont continuation to call when done
1035  * @param cont_cls closure for cont
1036  * @return NULL if the entry was not queued, otherwise a handle that can be used to
1037  *         cancel; note that even if NULL is returned, the callback will be invoked
1038  *         (or rather, will already have been invoked)
1039  */
1040 struct GNUNET_DATASTORE_QueueEntry *
1041 GNUNET_DATASTORE_update (struct GNUNET_DATASTORE_Handle *h, uint64_t uid,
1042                          uint32_t priority,
1043                          struct GNUNET_TIME_Absolute expiration,
1044                          unsigned int queue_priority,
1045                          unsigned int max_queue_size,
1046                          struct GNUNET_TIME_Relative timeout,
1047                          GNUNET_DATASTORE_ContinuationWithStatus cont,
1048                          void *cont_cls)
1049 {
1050   struct GNUNET_DATASTORE_QueueEntry *qe;
1051   struct UpdateMessage *um;
1052   union QueueContext qc;
1053
1054   if (cont == NULL)
1055     cont = &drop_status_cont;
1056 #if DEBUG_DATASTORE
1057   LOG (GNUNET_ERROR_TYPE_DEBUG,
1058        "Asked to update entry %llu raising priority by %u and expiration to %llu\n",
1059        uid, (unsigned int) priority, (unsigned long long) expiration.abs_value);
1060 #endif
1061   qc.sc.cont = cont;
1062   qc.sc.cont_cls = cont_cls;
1063   qe = make_queue_entry (h, sizeof (struct UpdateMessage), queue_priority,
1064                          max_queue_size, timeout, &process_status_message, &qc);
1065   if (qe == NULL)
1066   {
1067 #if DEBUG_DATASTORE
1068     LOG (GNUNET_ERROR_TYPE_DEBUG, "Could not create queue entry for UPDATE\n");
1069 #endif
1070     return NULL;
1071   }
1072   GNUNET_STATISTICS_update (h->stats,
1073                             gettext_noop ("# UPDATE requests executed"), 1,
1074                             GNUNET_NO);
1075   um = (struct UpdateMessage *) &qe[1];
1076   um->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_UPDATE);
1077   um->header.size = htons (sizeof (struct UpdateMessage));
1078   um->priority = htonl (priority);
1079   um->expiration = GNUNET_TIME_absolute_hton (expiration);
1080   um->uid = GNUNET_htonll (uid);
1081   process_queue (h);
1082   return qe;
1083 }
1084
1085
1086 /**
1087  * Explicitly remove some content from the database.
1088  * The "cont"inuation will be called with status
1089  * "GNUNET_OK" if content was removed, "GNUNET_NO"
1090  * if no matching entry was found and "GNUNET_SYSERR"
1091  * on all other types of errors.
1092  *
1093  * @param h handle to the datastore
1094  * @param key key for the value
1095  * @param size number of bytes in data
1096  * @param data content stored
1097  * @param queue_priority ranking of this request in the priority queue
1098  * @param max_queue_size at what queue size should this request be dropped
1099  *        (if other requests of higher priority are in the queue)
1100  * @param timeout how long to wait at most for a response
1101  * @param cont continuation to call when done
1102  * @param cont_cls closure for cont
1103  * @return NULL if the entry was not queued, otherwise a handle that can be used to
1104  *         cancel; note that even if NULL is returned, the callback will be invoked
1105  *         (or rather, will already have been invoked)
1106  */
1107 struct GNUNET_DATASTORE_QueueEntry *
1108 GNUNET_DATASTORE_remove (struct GNUNET_DATASTORE_Handle *h,
1109                          const GNUNET_HashCode * key, size_t size,
1110                          const void *data, unsigned int queue_priority,
1111                          unsigned int max_queue_size,
1112                          struct GNUNET_TIME_Relative timeout,
1113                          GNUNET_DATASTORE_ContinuationWithStatus cont,
1114                          void *cont_cls)
1115 {
1116   struct GNUNET_DATASTORE_QueueEntry *qe;
1117   struct DataMessage *dm;
1118   size_t msize;
1119   union QueueContext qc;
1120
1121   if (cont == NULL)
1122     cont = &drop_status_cont;
1123 #if DEBUG_DATASTORE
1124   LOG (GNUNET_ERROR_TYPE_DEBUG, "Asked to remove %u bytes under key `%s'\n",
1125        size, GNUNET_h2s (key));
1126 #endif
1127   qc.sc.cont = cont;
1128   qc.sc.cont_cls = cont_cls;
1129   msize = sizeof (struct DataMessage) + size;
1130   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
1131   qe = make_queue_entry (h, msize, queue_priority, max_queue_size, timeout,
1132                          &process_status_message, &qc);
1133   if (qe == NULL)
1134   {
1135 #if DEBUG_DATASTORE
1136     LOG (GNUNET_ERROR_TYPE_DEBUG, "Could not create queue entry for REMOVE\n");
1137 #endif
1138     return NULL;
1139   }
1140   GNUNET_STATISTICS_update (h->stats,
1141                             gettext_noop ("# REMOVE requests executed"), 1,
1142                             GNUNET_NO);
1143   dm = (struct DataMessage *) &qe[1];
1144   dm->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_REMOVE);
1145   dm->header.size = htons (msize);
1146   dm->rid = htonl (0);
1147   dm->size = htonl (size);
1148   dm->type = htonl (0);
1149   dm->priority = htonl (0);
1150   dm->anonymity = htonl (0);
1151   dm->uid = GNUNET_htonll (0);
1152   dm->expiration = GNUNET_TIME_absolute_hton (GNUNET_TIME_UNIT_ZERO_ABS);
1153   dm->key = *key;
1154   memcpy (&dm[1], data, size);
1155   process_queue (h);
1156   return qe;
1157 }
1158
1159
1160 /**
1161  * Type of a function to call when we receive a message
1162  * from the service.
1163  *
1164  * @param cls closure
1165  * @param msg message received, NULL on timeout or fatal error
1166  */
1167 static void
1168 process_result_message (void *cls, const struct GNUNET_MessageHeader *msg)
1169 {
1170   struct GNUNET_DATASTORE_Handle *h = cls;
1171   struct GNUNET_DATASTORE_QueueEntry *qe;
1172   struct ResultContext rc;
1173   const struct DataMessage *dm;
1174   int was_transmitted;
1175
1176   if (msg == NULL)
1177   {
1178     qe = h->queue_head;
1179     GNUNET_assert (NULL != qe);
1180     rc = qe->qc.rc;
1181     was_transmitted = qe->was_transmitted;
1182     free_queue_entry (qe);
1183     if (was_transmitted == GNUNET_YES)
1184     {
1185       LOG (GNUNET_ERROR_TYPE_WARNING,
1186            _("Failed to receive response from database.\n"));
1187       do_disconnect (h);
1188     }
1189     else
1190     {
1191       process_queue (h);
1192     }
1193     if (rc.proc != NULL)
1194       rc.proc (rc.proc_cls, NULL, 0, NULL, 0, 0, 0, GNUNET_TIME_UNIT_ZERO_ABS,
1195                0);
1196     return;
1197   }
1198   if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_DATASTORE_DATA_END)
1199   {
1200     GNUNET_break (ntohs (msg->size) == sizeof (struct GNUNET_MessageHeader));
1201     qe = h->queue_head;
1202     rc = qe->qc.rc;
1203     GNUNET_assert (GNUNET_YES == qe->was_transmitted);
1204     free_queue_entry (qe);
1205 #if DEBUG_DATASTORE
1206     LOG (GNUNET_ERROR_TYPE_DEBUG,
1207          "Received end of result set, new queue size is %u\n", h->queue_size);
1208 #endif
1209     if (rc.proc != NULL)
1210       rc.proc (rc.proc_cls, NULL, 0, NULL, 0, 0, 0, GNUNET_TIME_UNIT_ZERO_ABS,
1211                0);
1212     h->retry_time.rel_value = 0;
1213     h->result_count = 0;
1214     process_queue (h);
1215     return;
1216   }
1217   qe = h->queue_head;
1218   GNUNET_assert (NULL != qe);
1219   rc = qe->qc.rc;
1220   if (GNUNET_YES != qe->was_transmitted)
1221   {
1222     GNUNET_break (0);
1223     free_queue_entry (qe);
1224     h->retry_time = GNUNET_TIME_UNIT_ZERO;
1225     do_disconnect (h);
1226     if (rc.proc != NULL)
1227       rc.proc (rc.proc_cls, NULL, 0, NULL, 0, 0, 0, GNUNET_TIME_UNIT_ZERO_ABS,
1228                0);
1229     return;
1230   }
1231   if ((ntohs (msg->size) < sizeof (struct DataMessage)) ||
1232       (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_DATASTORE_DATA) ||
1233       (ntohs (msg->size) !=
1234        sizeof (struct DataMessage) +
1235        ntohl (((const struct DataMessage *) msg)->size)))
1236   {
1237     GNUNET_break (0);
1238     free_queue_entry (qe);
1239     h->retry_time = GNUNET_TIME_UNIT_ZERO;
1240     do_disconnect (h);
1241     if (rc.proc != NULL)
1242       rc.proc (rc.proc_cls, NULL, 0, NULL, 0, 0, 0, GNUNET_TIME_UNIT_ZERO_ABS,
1243                0);
1244     return;
1245   }
1246   GNUNET_STATISTICS_update (h->stats, gettext_noop ("# Results received"), 1,
1247                             GNUNET_NO);
1248   dm = (const struct DataMessage *) msg;
1249 #if DEBUG_DATASTORE
1250   LOG (GNUNET_ERROR_TYPE_DEBUG,
1251        "Received result %llu with type %u and size %u with key %s\n",
1252        (unsigned long long) GNUNET_ntohll (dm->uid), ntohl (dm->type),
1253        ntohl (dm->size), GNUNET_h2s (&dm->key));
1254 #endif
1255   free_queue_entry (qe);
1256   h->retry_time.rel_value = 0;
1257   process_queue (h);
1258   if (rc.proc != NULL)
1259     rc.proc (rc.proc_cls, &dm->key, ntohl (dm->size), &dm[1], ntohl (dm->type),
1260              ntohl (dm->priority), ntohl (dm->anonymity),
1261              GNUNET_TIME_absolute_ntoh (dm->expiration),
1262              GNUNET_ntohll (dm->uid));
1263 }
1264
1265
1266 /**
1267  * Get a random value from the datastore for content replication.
1268  * Returns a single, random value among those with the highest
1269  * replication score, lowering positive replication scores by one for
1270  * the chosen value (if only content with a replication score exists,
1271  * a random value is returned and replication scores are not changed).
1272  *
1273  * @param h handle to the datastore
1274  * @param queue_priority ranking of this request in the priority queue
1275  * @param max_queue_size at what queue size should this request be dropped
1276  *        (if other requests of higher priority are in the queue)
1277  * @param timeout how long to wait at most for a response
1278  * @param proc function to call on a random value; it
1279  *        will be called once with a value (if available)
1280  *        and always once with a value of NULL.
1281  * @param proc_cls closure for proc
1282  * @return NULL if the entry was not queued, otherwise a handle that can be used to
1283  *         cancel
1284  */
1285 struct GNUNET_DATASTORE_QueueEntry *
1286 GNUNET_DATASTORE_get_for_replication (struct GNUNET_DATASTORE_Handle *h,
1287                                       unsigned int queue_priority,
1288                                       unsigned int max_queue_size,
1289                                       struct GNUNET_TIME_Relative timeout,
1290                                       GNUNET_DATASTORE_DatumProcessor proc,
1291                                       void *proc_cls)
1292 {
1293   struct GNUNET_DATASTORE_QueueEntry *qe;
1294   struct GNUNET_MessageHeader *m;
1295   union QueueContext qc;
1296
1297   GNUNET_assert (NULL != proc);
1298 #if DEBUG_DATASTORE
1299   LOG (GNUNET_ERROR_TYPE_DEBUG, "Asked to get replication entry in %llu ms\n",
1300        (unsigned long long) timeout.rel_value);
1301 #endif
1302   qc.rc.proc = proc;
1303   qc.rc.proc_cls = proc_cls;
1304   qe = make_queue_entry (h, sizeof (struct GNUNET_MessageHeader),
1305                          queue_priority, max_queue_size, timeout,
1306                          &process_result_message, &qc);
1307   if (qe == NULL)
1308   {
1309 #if DEBUG_DATASTORE
1310     LOG (GNUNET_ERROR_TYPE_DEBUG,
1311          "Could not create queue entry for GET REPLICATION\n");
1312 #endif
1313     return NULL;
1314   }
1315   GNUNET_STATISTICS_update (h->stats,
1316                             gettext_noop
1317                             ("# GET REPLICATION requests executed"), 1,
1318                             GNUNET_NO);
1319   m = (struct GNUNET_MessageHeader *) &qe[1];
1320   m->type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_GET_REPLICATION);
1321   m->size = htons (sizeof (struct GNUNET_MessageHeader));
1322   process_queue (h);
1323   return qe;
1324 }
1325
1326
1327 /**
1328  * Get a single zero-anonymity value from the datastore.
1329  *
1330  * @param h handle to the datastore
1331  * @param offset offset of the result (modulo num-results); set to
1332  *               a random 64-bit value initially; then increment by
1333  *               one each time; detect that all results have been found by uid
1334  *               being again the first uid ever returned.
1335  * @param queue_priority ranking of this request in the priority queue
1336  * @param max_queue_size at what queue size should this request be dropped
1337  *        (if other requests of higher priority are in the queue)
1338  * @param timeout how long to wait at most for a response
1339  * @param type allowed type for the operation (never zero)
1340  * @param proc function to call on a random value; it
1341  *        will be called once with a value (if available)
1342  *        or with NULL if none value exists.
1343  * @param proc_cls closure for proc
1344  * @return NULL if the entry was not queued, otherwise a handle that can be used to
1345  *         cancel
1346  */
1347 struct GNUNET_DATASTORE_QueueEntry *
1348 GNUNET_DATASTORE_get_zero_anonymity (struct GNUNET_DATASTORE_Handle *h,
1349                                      uint64_t offset,
1350                                      unsigned int queue_priority,
1351                                      unsigned int max_queue_size,
1352                                      struct GNUNET_TIME_Relative timeout,
1353                                      enum GNUNET_BLOCK_Type type,
1354                                      GNUNET_DATASTORE_DatumProcessor proc,
1355                                      void *proc_cls)
1356 {
1357   struct GNUNET_DATASTORE_QueueEntry *qe;
1358   struct GetZeroAnonymityMessage *m;
1359   union QueueContext qc;
1360
1361   GNUNET_assert (NULL != proc);
1362   GNUNET_assert (type != GNUNET_BLOCK_TYPE_ANY);
1363 #if DEBUG_DATASTORE
1364   LOG (GNUNET_ERROR_TYPE_DEBUG,
1365        "Asked to get %llu-th zero-anonymity entry of type %d in %llu ms\n",
1366        (unsigned long long) offset, type,
1367        (unsigned long long) timeout.rel_value);
1368 #endif
1369   qc.rc.proc = proc;
1370   qc.rc.proc_cls = proc_cls;
1371   qe = make_queue_entry (h, sizeof (struct GetZeroAnonymityMessage),
1372                          queue_priority, max_queue_size, timeout,
1373                          &process_result_message, &qc);
1374   if (qe == NULL)
1375   {
1376 #if DEBUG_DATASTORE
1377     LOG (GNUNET_ERROR_TYPE_DEBUG,
1378          "Could not create queue entry for zero-anonymity procation\n");
1379 #endif
1380     return NULL;
1381   }
1382   GNUNET_STATISTICS_update (h->stats,
1383                             gettext_noop
1384                             ("# GET ZERO ANONYMITY requests executed"), 1,
1385                             GNUNET_NO);
1386   m = (struct GetZeroAnonymityMessage *) &qe[1];
1387   m->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_GET_ZERO_ANONYMITY);
1388   m->header.size = htons (sizeof (struct GetZeroAnonymityMessage));
1389   m->type = htonl ((uint32_t) type);
1390   m->offset = GNUNET_htonll (offset);
1391   process_queue (h);
1392   return qe;
1393 }
1394
1395
1396 /**
1397  * Get a result for a particular key from the datastore.  The processor
1398  * will only be called once.
1399  *
1400  * @param h handle to the datastore
1401  * @param offset offset of the result (modulo num-results); set to
1402  *               a random 64-bit value initially; then increment by
1403  *               one each time; detect that all results have been found by uid
1404  *               being again the first uid ever returned.
1405  * @param key maybe NULL (to match all entries)
1406  * @param type desired type, 0 for any
1407  * @param queue_priority ranking of this request in the priority queue
1408  * @param max_queue_size at what queue size should this request be dropped
1409  *        (if other requests of higher priority are in the queue)
1410  * @param timeout how long to wait at most for a response
1411  * @param proc function to call on each matching value;
1412  *        will be called once with a NULL value at the end
1413  * @param proc_cls closure for proc
1414  * @return NULL if the entry was not queued, otherwise a handle that can be used to
1415  *         cancel
1416  */
1417 struct GNUNET_DATASTORE_QueueEntry *
1418 GNUNET_DATASTORE_get_key (struct GNUNET_DATASTORE_Handle *h, uint64_t offset,
1419                           const GNUNET_HashCode * key,
1420                           enum GNUNET_BLOCK_Type type,
1421                           unsigned int queue_priority,
1422                           unsigned int max_queue_size,
1423                           struct GNUNET_TIME_Relative timeout,
1424                           GNUNET_DATASTORE_DatumProcessor proc, void *proc_cls)
1425 {
1426   struct GNUNET_DATASTORE_QueueEntry *qe;
1427   struct GetMessage *gm;
1428   union QueueContext qc;
1429
1430   GNUNET_assert (NULL != proc);
1431 #if DEBUG_DATASTORE
1432   LOG (GNUNET_ERROR_TYPE_DEBUG,
1433        "Asked to look for data of type %u under key `%s'\n",
1434        (unsigned int) type, GNUNET_h2s (key));
1435 #endif
1436   qc.rc.proc = proc;
1437   qc.rc.proc_cls = proc_cls;
1438   qe = make_queue_entry (h, sizeof (struct GetMessage), queue_priority,
1439                          max_queue_size, timeout, &process_result_message, &qc);
1440   if (qe == NULL)
1441   {
1442 #if DEBUG_DATASTORE
1443     LOG (GNUNET_ERROR_TYPE_DEBUG, "Could not queue request for `%s'\n",
1444          GNUNET_h2s (key));
1445 #endif
1446     return NULL;
1447   }
1448   GNUNET_STATISTICS_update (h->stats, gettext_noop ("# GET requests executed"),
1449                             1, GNUNET_NO);
1450   gm = (struct GetMessage *) &qe[1];
1451   gm->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_GET);
1452   gm->type = htonl (type);
1453   gm->offset = GNUNET_htonll (offset);
1454   if (key != NULL)
1455   {
1456     gm->header.size = htons (sizeof (struct GetMessage));
1457     gm->key = *key;
1458   }
1459   else
1460   {
1461     gm->header.size =
1462         htons (sizeof (struct GetMessage) - sizeof (GNUNET_HashCode));
1463   }
1464   process_queue (h);
1465   return qe;
1466 }
1467
1468
1469 /**
1470  * Cancel a datastore operation.  The final callback from the
1471  * operation must not have been done yet.
1472  *
1473  * @param qe operation to cancel
1474  */
1475 void
1476 GNUNET_DATASTORE_cancel (struct GNUNET_DATASTORE_QueueEntry *qe)
1477 {
1478   struct GNUNET_DATASTORE_Handle *h;
1479
1480   GNUNET_assert (GNUNET_SYSERR != qe->was_transmitted);
1481   h = qe->h;
1482 #if DEBUG_DATASTORE
1483   LOG (GNUNET_ERROR_TYPE_DEBUG,
1484        "Pending DATASTORE request %p cancelled (%d, %d)\n", qe,
1485        qe->was_transmitted, h->queue_head == qe);
1486 #endif
1487   if (GNUNET_YES == qe->was_transmitted)
1488   {
1489     free_queue_entry (qe);
1490     h->skip_next_messages++;
1491     return;
1492   }
1493   free_queue_entry (qe);
1494   process_queue (h);
1495 }
1496
1497
1498 /* end of datastore_api.c */