Workaround emscripten bug in returning int64_t
[oweals/gnunet.git] / src / datastore / gnunet-service-datastore.c
1 /*
2      This file is part of GNUnet
3      (C) 2004-2014 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/gnunet-service-datastore.c
23  * @brief Management for the datastore for files stored on a GNUnet node
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_protocols.h"
30 #include "gnunet_statistics_service.h"
31 #include "gnunet_datastore_plugin.h"
32 #include "datastore.h"
33
34 /**
35  * How many messages do we queue at most per client?
36  */
37 #define MAX_PENDING 1024
38
39 /**
40  * How long are we at most keeping "expired" content
41  * past the expiration date in the database?
42  */
43 #define MAX_EXPIRE_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
44
45 /**
46  * How fast are we allowed to query the database for deleting
47  * expired content? (1 item per second).
48  */
49 #define MIN_EXPIRE_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
50
51 /**
52  * Name under which we store current space consumption.
53  */
54 static char *quota_stat_name;
55
56 /**
57  * After how many payload-changing operations
58  * do we sync our statistics?
59  */
60 #define MAX_STAT_SYNC_LAG 50
61
62
63 /**
64  * Our datastore plugin.
65  */
66 struct DatastorePlugin
67 {
68
69   /**
70    * API of the transport as returned by the plugin's
71    * initialization function.
72    */
73   struct GNUNET_DATASTORE_PluginFunctions *api;
74
75   /**
76    * Short name for the plugin (i.e. "sqlite").
77    */
78   char *short_name;
79
80   /**
81    * Name of the library (i.e. "gnunet_plugin_datastore_sqlite").
82    */
83   char *lib_name;
84
85   /**
86    * Environment this transport service is using
87    * for this plugin.
88    */
89   struct GNUNET_DATASTORE_PluginEnvironment env;
90
91 };
92
93
94 /**
95  * Linked list of active reservations.
96  */
97 struct ReservationList
98 {
99
100   /**
101    * This is a linked list.
102    */
103   struct ReservationList *next;
104
105   /**
106    * Client that made the reservation.
107    */
108   struct GNUNET_SERVER_Client *client;
109
110   /**
111    * Number of bytes (still) reserved.
112    */
113   uint64_t amount;
114
115   /**
116    * Number of items (still) reserved.
117    */
118   uint64_t entries;
119
120   /**
121    * Reservation identifier.
122    */
123   int32_t rid;
124
125 };
126
127
128
129 /**
130  * Our datastore plugin (NULL if not available).
131  */
132 static struct DatastorePlugin *plugin;
133
134 /**
135  * Linked list of space reservations made by clients.
136  */
137 static struct ReservationList *reservations;
138
139 /**
140  * Bloomfilter to quickly tell if we don't have the content.
141  */
142 static struct GNUNET_CONTAINER_BloomFilter *filter;
143
144 /**
145  * Name of our plugin.
146  */
147 static char *plugin_name;
148
149 /**
150  * Our configuration.
151  */
152 static const struct GNUNET_CONFIGURATION_Handle *cfg;
153
154 /**
155  * Handle for reporting statistics.
156  */
157 static struct GNUNET_STATISTICS_Handle *stats;
158
159 /**
160  * How much space are we using for the cache?  (space available for
161  * insertions that will be instantly reclaimed by discarding less
162  * important content --- or possibly whatever we just inserted into
163  * the "cache").
164  */
165 static unsigned long long cache_size;
166
167 /**
168  * How much space have we currently reserved?
169  */
170 static unsigned long long reserved;
171
172 /**
173  * How much data are we currently storing
174  * in the database?
175  */
176 static unsigned long long payload;
177
178 /**
179  * Identity of the task that is used to delete
180  * expired content.
181  */
182 static struct GNUNET_SCHEDULER_Task * expired_kill_task;
183
184 /**
185  * Minimum time that content should have to not be discarded instantly
186  * (time stamp of any content that we've been discarding recently to
187  * stay below the quota).  FOREVER if we had to expire content with
188  * non-zero priority.
189  */
190 static struct GNUNET_TIME_Absolute min_expiration;
191
192 /**
193  * How much space are we allowed to use?
194  */
195 static unsigned long long quota;
196
197 /**
198  * Should the database be dropped on exit?
199  */
200 static int do_drop;
201
202 /**
203  * Should we refresh the BF when the DB is loaded?
204  */
205 static int refresh_bf;
206
207 /**
208  * Number of updates that were made to the
209  * payload value since we last synchronized
210  * it with the statistics service.
211  */
212 static unsigned int last_sync;
213
214 /**
215  * Did we get an answer from statistics?
216  */
217 static int stats_worked;
218
219
220 /**
221  * Synchronize our utilization statistics with the
222  * statistics service.
223  */
224 static void
225 sync_stats ()
226 {
227   GNUNET_STATISTICS_set (stats, quota_stat_name, payload, GNUNET_YES);
228   GNUNET_STATISTICS_set (stats, "# utilization by current datastore", payload, GNUNET_NO);
229   last_sync = 0;
230 }
231
232
233 /**
234  * Context for transmitting replies to clients.
235  */
236 struct TransmitCallbackContext
237 {
238
239   /**
240    * We keep these in a doubly-linked list (for cleanup).
241    */
242   struct TransmitCallbackContext *next;
243
244   /**
245    * We keep these in a doubly-linked list (for cleanup).
246    */
247   struct TransmitCallbackContext *prev;
248
249   /**
250    * The message that we're asked to transmit.
251    */
252   struct GNUNET_MessageHeader *msg;
253
254   /**
255    * Handle for the transmission request.
256    */
257   struct GNUNET_SERVER_TransmitHandle *th;
258
259   /**
260    * Client that we are transmitting to.
261    */
262   struct GNUNET_SERVER_Client *client;
263
264 };
265
266
267 /**
268  * Head of the doubly-linked list (for cleanup).
269  */
270 static struct TransmitCallbackContext *tcc_head;
271
272 /**
273  * Tail of the doubly-linked list (for cleanup).
274  */
275 static struct TransmitCallbackContext *tcc_tail;
276
277 /**
278  * Have we already cleaned up the TCCs and are hence no longer
279  * willing (or able) to transmit anything to anyone?
280  */
281 static int cleaning_done;
282
283 /**
284  * Handle for pending get request.
285  */
286 static struct GNUNET_STATISTICS_GetHandle *stat_get;
287
288 /**
289  * Handle to our server.
290  */
291 static struct GNUNET_SERVER_Handle *server;
292
293 /**
294  * Task that is used to remove expired entries from
295  * the datastore.  This task will schedule itself
296  * again automatically to always delete all expired
297  * content quickly.
298  *
299  * @param cls not used
300  * @param tc task context
301  */
302 static void
303 delete_expired (void *cls,
304                 const struct GNUNET_SCHEDULER_TaskContext *tc);
305
306
307 /**
308  * Iterate over the expired items stored in the datastore.
309  * Delete all expired items; once we have processed all
310  * expired items, re-schedule the "delete_expired" task.
311  *
312  * @param cls not used
313  * @param key key for the content
314  * @param size number of bytes in data
315  * @param data content stored
316  * @param type type of the content
317  * @param priority priority of the content
318  * @param anonymity anonymity-level for the content
319  * @param expiration expiration time for the content
320  * @param uid unique identifier for the datum;
321  *        maybe 0 if no unique identifier is available
322  *
323  * @return #GNUNET_SYSERR to abort the iteration, #GNUNET_OK to continue
324  *         (continue on call to "next", of course),
325  *         #GNUNET_NO to delete the item and continue (if supported)
326  */
327 static int
328 expired_processor (void *cls,
329                    const struct GNUNET_HashCode *key,
330                    uint32_t size,
331                    const void *data,
332                    enum GNUNET_BLOCK_Type type,
333                    uint32_t priority,
334                    uint32_t anonymity,
335                    struct GNUNET_TIME_Absolute expiration,
336                    uint64_t uid)
337 {
338   struct GNUNET_TIME_Absolute now;
339
340   if (key == NULL)
341   {
342     expired_kill_task =
343         GNUNET_SCHEDULER_add_delayed_with_priority (MAX_EXPIRE_DELAY,
344                                                     GNUNET_SCHEDULER_PRIORITY_IDLE,
345                                                     &delete_expired, NULL);
346     return GNUNET_SYSERR;
347   }
348   now = GNUNET_TIME_absolute_get ();
349   if (expiration.abs_value_us > now.abs_value_us)
350   {
351     /* finished processing */
352     expired_kill_task =
353         GNUNET_SCHEDULER_add_delayed_with_priority (MAX_EXPIRE_DELAY,
354                                                     GNUNET_SCHEDULER_PRIORITY_IDLE,
355                                                     &delete_expired, NULL);
356     return GNUNET_SYSERR;
357   }
358   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
359               "Deleting content `%s' of type %u that expired %s ago\n",
360               GNUNET_h2s (key), type,
361               GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_difference (expiration,
362                                                                                            now),
363                                                       GNUNET_YES));
364   min_expiration = now;
365   GNUNET_STATISTICS_update (stats, gettext_noop ("# bytes expired"), size,
366                             GNUNET_YES);
367   GNUNET_CONTAINER_bloomfilter_remove (filter, key);
368   expired_kill_task =
369       GNUNET_SCHEDULER_add_delayed_with_priority (MIN_EXPIRE_DELAY,
370                                                   GNUNET_SCHEDULER_PRIORITY_IDLE,
371                                                   &delete_expired, NULL);
372   return GNUNET_NO;
373 }
374
375
376 /**
377  * Task that is used to remove expired entries from
378  * the datastore.  This task will schedule itself
379  * again automatically to always delete all expired
380  * content quickly.
381  *
382  * @param cls not used
383  * @param tc task context
384  */
385 static void
386 delete_expired (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
387 {
388   expired_kill_task = NULL;
389   plugin->api->get_expiration (plugin->api->cls, &expired_processor, NULL);
390 }
391
392
393 /**
394  * An iterator over a set of items stored in the datastore
395  * that deletes until we're happy with respect to our quota.
396  *
397  * @param cls closure
398  * @param key key for the content
399  * @param size number of bytes in data
400  * @param data content stored
401  * @param type type of the content
402  * @param priority priority of the content
403  * @param anonymity anonymity-level for the content
404  * @param expiration expiration time for the content
405  * @param uid unique identifier for the datum;
406  *        maybe 0 if no unique identifier is available
407  *
408  * @return GNUNET_SYSERR to abort the iteration, GNUNET_OK to continue
409  *         (continue on call to "next", of course),
410  *         GNUNET_NO to delete the item and continue (if supported)
411  */
412 static int
413 quota_processor (void *cls, const struct GNUNET_HashCode * key, uint32_t size,
414                  const void *data, enum GNUNET_BLOCK_Type type,
415                  uint32_t priority, uint32_t anonymity,
416                  struct GNUNET_TIME_Absolute expiration, uint64_t uid)
417 {
418   unsigned long long *need = cls;
419
420   if (NULL == key)
421     return GNUNET_SYSERR;
422   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
423               "Deleting %llu bytes of low-priority (%u) content `%s' of type %u at %s prior to expiration (still trying to free another %llu bytes)\n",
424               (unsigned long long) (size + GNUNET_DATASTORE_ENTRY_OVERHEAD),
425               (unsigned int) priority,
426               GNUNET_h2s (key), type,
427               GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_remaining (expiration),
428                                                       GNUNET_YES),
429               *need);
430   if (size + GNUNET_DATASTORE_ENTRY_OVERHEAD > *need)
431     *need = 0;
432   else
433     *need -= size + GNUNET_DATASTORE_ENTRY_OVERHEAD;
434   if (priority > 0)
435     min_expiration = GNUNET_TIME_UNIT_FOREVER_ABS;
436   else
437     min_expiration = expiration;
438   GNUNET_STATISTICS_update (stats,
439                             gettext_noop ("# bytes purged (low-priority)"),
440                             size, GNUNET_YES);
441   GNUNET_CONTAINER_bloomfilter_remove (filter, key);
442   return GNUNET_NO;
443 }
444
445
446 /**
447  * Manage available disk space by running tasks
448  * that will discard content if necessary.  This
449  * function will be run whenever a request for
450  * "need" bytes of storage could only be satisfied
451  * by eating into the "cache" (and we want our cache
452  * space back).
453  *
454  * @param need number of bytes of content that were
455  *        placed into the "cache" (and hence the
456  *        number of bytes that should be removed).
457  */
458 static void
459 manage_space (unsigned long long need)
460 {
461   unsigned long long last;
462
463   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
464               "Asked to free up %llu bytes of cache space\n", need);
465   last = 0;
466   while ((need > 0) && (last != need))
467   {
468     last = need;
469     plugin->api->get_expiration (plugin->api->cls, &quota_processor, &need);
470   }
471 }
472
473
474 /**
475  * Function called to notify a client about the socket
476  * begin ready to queue more data.  "buf" will be
477  * NULL and "size" zero if the socket was closed for
478  * writing in the meantime.
479  *
480  * @param cls closure
481  * @param size number of bytes available in buf
482  * @param buf where the callee should write the message
483  * @return number of bytes written to buf
484  */
485 static size_t
486 transmit_callback (void *cls, size_t size, void *buf)
487 {
488   struct TransmitCallbackContext *tcc = cls;
489   size_t msize;
490
491   tcc->th = NULL;
492   GNUNET_CONTAINER_DLL_remove (tcc_head, tcc_tail, tcc);
493   msize = ntohs (tcc->msg->size);
494   if (size == 0)
495   {
496     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
497                 _("Transmission to client failed!\n"));
498     GNUNET_SERVER_receive_done (tcc->client, GNUNET_SYSERR);
499     GNUNET_SERVER_client_drop (tcc->client);
500     GNUNET_free (tcc->msg);
501     GNUNET_free (tcc);
502     return 0;
503   }
504   GNUNET_assert (size >= msize);
505   memcpy (buf, tcc->msg, msize);
506   GNUNET_SERVER_receive_done (tcc->client, GNUNET_OK);
507   GNUNET_SERVER_client_drop (tcc->client);
508   GNUNET_free (tcc->msg);
509   GNUNET_free (tcc);
510   return msize;
511 }
512
513
514 /**
515  * Transmit the given message to the client.
516  *
517  * @param client target of the message
518  * @param msg message to transmit, will be freed!
519  */
520 static void
521 transmit (struct GNUNET_SERVER_Client *client, struct GNUNET_MessageHeader *msg)
522 {
523   struct TransmitCallbackContext *tcc;
524
525   if (GNUNET_YES == cleaning_done)
526   {
527     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
528                 _("Shutdown in progress, aborting transmission.\n"));
529     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
530     GNUNET_free (msg);
531     return;
532   }
533   tcc = GNUNET_new (struct TransmitCallbackContext);
534   tcc->msg = msg;
535   tcc->client = client;
536   if (NULL ==
537       (tcc->th =
538        GNUNET_SERVER_notify_transmit_ready (client, ntohs (msg->size),
539                                             GNUNET_TIME_UNIT_FOREVER_REL,
540                                             &transmit_callback, tcc)))
541   {
542     GNUNET_break (0);
543     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
544     GNUNET_free (msg);
545     GNUNET_free (tcc);
546     return;
547   }
548   GNUNET_SERVER_client_keep (client);
549   GNUNET_CONTAINER_DLL_insert (tcc_head, tcc_tail, tcc);
550 }
551
552
553 /**
554  * Transmit a status code to the client.
555  *
556  * @param client receiver of the response
557  * @param code status code
558  * @param msg optional error message (can be NULL)
559  */
560 static void
561 transmit_status (struct GNUNET_SERVER_Client *client, int code, const char *msg)
562 {
563   struct StatusMessage *sm;
564   size_t slen;
565
566   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
567               "Transmitting `%s' message with value %d and message `%s'\n",
568               "STATUS", code, msg != NULL ? msg : "(none)");
569   slen = (msg == NULL) ? 0 : strlen (msg) + 1;
570   sm = GNUNET_malloc (sizeof (struct StatusMessage) + slen);
571   sm->header.size = htons (sizeof (struct StatusMessage) + slen);
572   sm->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_STATUS);
573   sm->status = htonl (code);
574   sm->min_expiration = GNUNET_TIME_absolute_hton (min_expiration);
575   if (slen > 0)
576     memcpy (&sm[1], msg, slen);
577   transmit (client, &sm->header);
578 }
579
580
581 /**
582  * Function that will transmit the given datastore entry
583  * to the client.
584  *
585  * @param cls closure, pointer to the client (of type GNUNET_SERVER_Client).
586  * @param key key for the content
587  * @param size number of bytes in data
588  * @param data content stored
589  * @param type type of the content
590  * @param priority priority of the content
591  * @param anonymity anonymity-level for the content
592  * @param expiration expiration time for the content
593  * @param uid unique identifier for the datum;
594  *        maybe 0 if no unique identifier is available
595  *
596  * @return GNUNET_SYSERR to abort the iteration, GNUNET_OK to continue,
597  *         GNUNET_NO to delete the item and continue (if supported)
598  */
599 static int
600 transmit_item (void *cls, const struct GNUNET_HashCode * key, uint32_t size,
601                const void *data, enum GNUNET_BLOCK_Type type, uint32_t priority,
602                uint32_t anonymity, struct GNUNET_TIME_Absolute expiration,
603                uint64_t uid)
604 {
605   struct GNUNET_SERVER_Client *client = cls;
606   struct GNUNET_MessageHeader *end;
607   struct DataMessage *dm;
608
609   if (key == NULL)
610   {
611     /* transmit 'DATA_END' */
612     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' message\n",
613                 "DATA_END");
614     end = GNUNET_new (struct GNUNET_MessageHeader);
615     end->size = htons (sizeof (struct GNUNET_MessageHeader));
616     end->type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_DATA_END);
617     transmit (client, end);
618     GNUNET_SERVER_client_drop (client);
619     return GNUNET_OK;
620   }
621   GNUNET_assert (sizeof (struct DataMessage) + size <
622                  GNUNET_SERVER_MAX_MESSAGE_SIZE);
623   dm = GNUNET_malloc (sizeof (struct DataMessage) + size);
624   dm->header.size = htons (sizeof (struct DataMessage) + size);
625   dm->header.type = htons (GNUNET_MESSAGE_TYPE_DATASTORE_DATA);
626   dm->rid = htonl (0);
627   dm->size = htonl (size);
628   dm->type = htonl (type);
629   dm->priority = htonl (priority);
630   dm->anonymity = htonl (anonymity);
631   dm->replication = htonl (0);
632   dm->reserved = htonl (0);
633   dm->expiration = GNUNET_TIME_absolute_hton (expiration);
634   dm->uid = GNUNET_htonll (uid);
635   dm->key = *key;
636   memcpy (&dm[1], data, size);
637   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
638               "Transmitting `%s' message for `%s' of type %u with expiration %s (in: %s)\n",
639               "DATA", GNUNET_h2s (key), type,
640               GNUNET_STRINGS_absolute_time_to_string (expiration),
641               GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_remaining (expiration),
642                                                       GNUNET_YES));
643   GNUNET_STATISTICS_update (stats, gettext_noop ("# results found"), 1,
644                             GNUNET_NO);
645   transmit (client, &dm->header);
646   GNUNET_SERVER_client_drop (client);
647   return GNUNET_OK;
648 }
649
650
651 /**
652  * Handle RESERVE-message.
653  *
654  * @param cls closure
655  * @param client identification of the client
656  * @param message the actual message
657  */
658 static void
659 handle_reserve (void *cls, struct GNUNET_SERVER_Client *client,
660                 const struct GNUNET_MessageHeader *message)
661 {
662   /**
663    * Static counter to produce reservation identifiers.
664    */
665   static int reservation_gen;
666
667   const struct ReserveMessage *msg = (const struct ReserveMessage *) message;
668   struct ReservationList *e;
669   unsigned long long used;
670   unsigned long long req;
671   uint64_t amount;
672   uint32_t entries;
673
674   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Processing `%s' request\n", "RESERVE");
675   amount = GNUNET_ntohll (msg->amount);
676   entries = ntohl (msg->entries);
677   used = payload + reserved;
678   req =
679       amount + ((unsigned long long) GNUNET_DATASTORE_ENTRY_OVERHEAD) * entries;
680   if (used + req > quota)
681   {
682     if (quota < used)
683       used = quota;             /* cheat a bit for error message (to avoid negative numbers) */
684     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
685                 _
686                 ("Insufficient space (%llu bytes are available) to satisfy `%s' request for %llu bytes\n"),
687                 quota - used, "RESERVE", req);
688     if (cache_size < req)
689     {
690       /* TODO: document this in the FAQ; essentially, if this
691        * message happens, the insertion request could be blocked
692        * by less-important content from migration because it is
693        * larger than 1/8th of the overall available space, and
694        * we only reserve 1/8th for "fresh" insertions */
695       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
696                   _
697                   ("The requested amount (%llu bytes) is larger than the cache size (%llu bytes)\n"),
698                   req, cache_size);
699       transmit_status (client, 0,
700                        gettext_noop
701                        ("Insufficient space to satisfy request and "
702                         "requested amount is larger than cache size"));
703     }
704     else
705     {
706       transmit_status (client, 0,
707                        gettext_noop ("Insufficient space to satisfy request"));
708     }
709     return;
710   }
711   reserved += req;
712   GNUNET_STATISTICS_set (stats, gettext_noop ("# reserved"), reserved,
713                          GNUNET_NO);
714   e = GNUNET_new (struct ReservationList);
715   e->next = reservations;
716   reservations = e;
717   e->client = client;
718   e->amount = amount;
719   e->entries = entries;
720   e->rid = ++reservation_gen;
721   if (reservation_gen < 0)
722     reservation_gen = 0;        /* wrap around */
723   transmit_status (client, e->rid, NULL);
724 }
725
726
727 /**
728  * Handle RELEASE_RESERVE-message.
729  *
730  * @param cls closure
731  * @param client identification of the client
732  * @param message the actual message
733  */
734 static void
735 handle_release_reserve (void *cls,
736                         struct GNUNET_SERVER_Client *client,
737                         const struct GNUNET_MessageHeader *message)
738 {
739   const struct ReleaseReserveMessage *msg =
740       (const struct ReleaseReserveMessage *) message;
741   struct ReservationList *pos;
742   struct ReservationList *prev;
743   struct ReservationList *next;
744   int rid = ntohl (msg->rid);
745   unsigned long long rem;
746
747   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
748               "Processing `%s' request\n",
749               "RELEASE_RESERVE");
750   next = reservations;
751   prev = NULL;
752   while (NULL != (pos = next))
753   {
754     next = pos->next;
755     if (rid == pos->rid)
756     {
757       if (prev == NULL)
758         reservations = next;
759       else
760         prev->next = next;
761       rem =
762           pos->amount +
763           ((unsigned long long) GNUNET_DATASTORE_ENTRY_OVERHEAD) * pos->entries;
764       GNUNET_assert (reserved >= rem);
765       reserved -= rem;
766       GNUNET_STATISTICS_set (stats,
767                              gettext_noop ("# reserved"), reserved,
768                              GNUNET_NO);
769       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
770                   "Returning %llu remaining reserved bytes to storage pool\n",
771                   rem);
772       GNUNET_free (pos);
773       transmit_status (client, GNUNET_OK, NULL);
774       return;
775     }
776     prev = pos;
777   }
778   GNUNET_break (0);
779   transmit_status (client, GNUNET_SYSERR,
780                    gettext_noop ("Could not find matching reservation"));
781 }
782
783
784 /**
785  * Check that the given message is a valid data message.
786  *
787  * @return NULL if the message is not well-formed, otherwise the message
788  */
789 static const struct DataMessage *
790 check_data (const struct GNUNET_MessageHeader *message)
791 {
792   uint16_t size;
793   uint32_t dsize;
794   const struct DataMessage *dm;
795
796   size = ntohs (message->size);
797   if (size < sizeof (struct DataMessage))
798   {
799     GNUNET_break (0);
800     return NULL;
801   }
802   dm = (const struct DataMessage *) message;
803   dsize = ntohl (dm->size);
804   if (size != dsize + sizeof (struct DataMessage))
805   {
806     GNUNET_break (0);
807     return NULL;
808   }
809   return dm;
810 }
811
812
813 /**
814  * Context for a PUT request used to see if the content is
815  * already present.
816  */
817 struct PutContext
818 {
819   /**
820    * Client to notify on completion.
821    */
822   struct GNUNET_SERVER_Client *client;
823
824 #if ! HAVE_UNALIGNED_64_ACCESS
825   void *reserved;
826 #endif
827
828   /* followed by the 'struct DataMessage' */
829 };
830
831
832 /**
833  * Actually put the data message.
834  *
835  * @param client sender of the message
836  * @param dm message with the data to store
837  */
838 static void
839 execute_put (struct GNUNET_SERVER_Client *client, const struct DataMessage *dm)
840 {
841   uint32_t size;
842   char *msg;
843   int ret;
844
845   size = ntohl (dm->size);
846   msg = NULL;
847   ret =
848       plugin->api->put (plugin->api->cls, &dm->key, size, &dm[1],
849                         ntohl (dm->type), ntohl (dm->priority),
850                         ntohl (dm->anonymity), ntohl (dm->replication),
851                         GNUNET_TIME_absolute_ntoh (dm->expiration), &msg);
852   if (GNUNET_OK == ret)
853   {
854     GNUNET_STATISTICS_update (stats,
855                               gettext_noop ("# bytes stored"), size,
856                               GNUNET_YES);
857     GNUNET_CONTAINER_bloomfilter_add (filter, &dm->key);
858     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
859                 "Successfully stored %u bytes of type %u under key `%s'\n",
860                 size, ntohl (dm->type), GNUNET_h2s (&dm->key));
861   }
862   transmit_status (client, ret, msg);
863   GNUNET_free_non_null (msg);
864   if (quota - reserved - cache_size < payload)
865   {
866     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
867                 _("Need %llu bytes more space (%llu allowed, using %llu)\n"),
868                 (unsigned long long) size + GNUNET_DATASTORE_ENTRY_OVERHEAD,
869                 (unsigned long long) (quota - reserved - cache_size),
870                 (unsigned long long) payload);
871     manage_space (size + GNUNET_DATASTORE_ENTRY_OVERHEAD);
872   }
873 }
874
875
876 /**
877  * Function that will check if the given datastore entry
878  * matches the put and if none match executes the put.
879  *
880  * @param cls closure, pointer to the client (of type 'struct PutContext').
881  * @param key key for the content
882  * @param size number of bytes in data
883  * @param data content stored
884  * @param type type of the content
885  * @param priority priority of the content
886  * @param anonymity anonymity-level for the content
887  * @param expiration expiration time for the content
888  * @param uid unique identifier for the datum;
889  *        maybe 0 if no unique identifier is available
890  *
891  * @return GNUNET_OK usually
892  *         GNUNET_NO to delete the item
893  */
894 static int
895 check_present (void *cls, const struct GNUNET_HashCode * key, uint32_t size,
896                const void *data, enum GNUNET_BLOCK_Type type, uint32_t priority,
897                uint32_t anonymity, struct GNUNET_TIME_Absolute expiration,
898                uint64_t uid)
899 {
900   struct PutContext *pc = cls;
901   const struct DataMessage *dm;
902
903   dm = (const struct DataMessage *) &pc[1];
904   if (key == NULL)
905   {
906     execute_put (pc->client, dm);
907     GNUNET_SERVER_client_drop (pc->client);
908     GNUNET_free (pc);
909     return GNUNET_OK;
910   }
911   if ((GNUNET_BLOCK_TYPE_FS_DBLOCK == type) ||
912       (GNUNET_BLOCK_TYPE_FS_IBLOCK == type) || ((size == ntohl (dm->size)) &&
913                                                 (0 ==
914                                                  memcmp (&dm[1], data, size))))
915   {
916     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
917                 "Result already present in datastore\n");
918     /* FIXME: change API to allow increasing 'replication' counter */
919     if ((ntohl (dm->priority) > 0) ||
920         (GNUNET_TIME_absolute_ntoh (dm->expiration).abs_value_us >
921          expiration.abs_value_us))
922       plugin->api->update (plugin->api->cls, uid,
923                            (int32_t) ntohl (dm->priority),
924                            GNUNET_TIME_absolute_ntoh (dm->expiration), NULL);
925     transmit_status (pc->client, GNUNET_NO, NULL);
926     GNUNET_SERVER_client_drop (pc->client);
927     GNUNET_free (pc);
928   }
929   else
930   {
931     execute_put (pc->client, dm);
932     GNUNET_SERVER_client_drop (pc->client);
933     GNUNET_free (pc);
934   }
935   return GNUNET_OK;
936 }
937
938
939 /**
940  * Handle PUT-message.
941  *
942  * @param cls closure
943  * @param client identification of the client
944  * @param message the actual message
945  */
946 static void
947 handle_put (void *cls, struct GNUNET_SERVER_Client *client,
948             const struct GNUNET_MessageHeader *message)
949 {
950   const struct DataMessage *dm = check_data (message);
951   int rid;
952   struct ReservationList *pos;
953   struct PutContext *pc;
954   struct GNUNET_HashCode vhash;
955   uint32_t size;
956
957   if ((dm == NULL) || (ntohl (dm->type) == 0))
958   {
959     GNUNET_break (0);
960     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
961     return;
962   }
963   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
964               "Processing `%s' request for `%s' of type %u\n", "PUT",
965               GNUNET_h2s (&dm->key), ntohl (dm->type));
966   rid = ntohl (dm->rid);
967   size = ntohl (dm->size);
968   if (rid > 0)
969   {
970     pos = reservations;
971     while ((NULL != pos) && (rid != pos->rid))
972       pos = pos->next;
973     GNUNET_break (pos != NULL);
974     if (NULL != pos)
975     {
976       GNUNET_break (pos->entries > 0);
977       GNUNET_break (pos->amount >= size);
978       pos->entries--;
979       pos->amount -= size;
980       reserved -= (size + GNUNET_DATASTORE_ENTRY_OVERHEAD);
981       GNUNET_STATISTICS_set (stats,
982                              gettext_noop ("# reserved"), reserved,
983                              GNUNET_NO);
984     }
985   }
986   if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (filter, &dm->key))
987   {
988     GNUNET_CRYPTO_hash (&dm[1], size, &vhash);
989     pc = GNUNET_malloc (sizeof (struct PutContext) + size +
990                         sizeof (struct DataMessage));
991     pc->client = client;
992     GNUNET_SERVER_client_keep (client);
993     memcpy (&pc[1], dm, size + sizeof (struct DataMessage));
994     plugin->api->get_key (plugin->api->cls, 0, &dm->key, &vhash,
995                           ntohl (dm->type), &check_present, pc);
996     return;
997   }
998   execute_put (client, dm);
999 }
1000
1001
1002 /**
1003  * Handle GET-message.
1004  *
1005  * @param cls closure
1006  * @param client identification of the client
1007  * @param message the actual message
1008  */
1009 static void
1010 handle_get (void *cls, struct GNUNET_SERVER_Client *client,
1011             const struct GNUNET_MessageHeader *message)
1012 {
1013   const struct GetMessage *msg;
1014   uint16_t size;
1015
1016   size = ntohs (message->size);
1017   if ((size != sizeof (struct GetMessage)) &&
1018       (size != sizeof (struct GetMessage) - sizeof (struct GNUNET_HashCode)))
1019   {
1020     GNUNET_break (0);
1021     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1022     return;
1023   }
1024   msg = (const struct GetMessage *) message;
1025   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1026               "Processing `%s' request for `%s' of type %u\n", "GET",
1027               GNUNET_h2s (&msg->key), ntohl (msg->type));
1028   GNUNET_STATISTICS_update (stats,
1029                             gettext_noop ("# GET requests received"), 1,
1030                             GNUNET_NO);
1031   GNUNET_SERVER_client_keep (client);
1032   if ((size == sizeof (struct GetMessage)) &&
1033       (GNUNET_YES != GNUNET_CONTAINER_bloomfilter_test (filter, &msg->key)))
1034   {
1035     /* don't bother database... */
1036     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1037                 "Empty result set for `%s' request for `%s' (bloomfilter).\n",
1038                 "GET", GNUNET_h2s (&msg->key));
1039     GNUNET_STATISTICS_update (stats,
1040                               gettext_noop
1041                               ("# requests filtered by bloomfilter"), 1,
1042                               GNUNET_NO);
1043     transmit_item (client, NULL, 0, NULL, 0, 0, 0, GNUNET_TIME_UNIT_ZERO_ABS,
1044                    0);
1045     return;
1046   }
1047   plugin->api->get_key (plugin->api->cls, GNUNET_ntohll (msg->offset),
1048                         ((size ==
1049                           sizeof (struct GetMessage)) ? &msg->key : NULL), NULL,
1050                         ntohl (msg->type), &transmit_item, client);
1051 }
1052
1053
1054 /**
1055  * Handle UPDATE-message.
1056  *
1057  * @param cls closure
1058  * @param client identification of the client
1059  * @param message the actual message
1060  */
1061 static void
1062 handle_update (void *cls, struct GNUNET_SERVER_Client *client,
1063                const struct GNUNET_MessageHeader *message)
1064 {
1065   const struct UpdateMessage *msg;
1066   int ret;
1067   char *emsg;
1068
1069   GNUNET_STATISTICS_update (stats, gettext_noop ("# UPDATE requests received"),
1070                             1, GNUNET_NO);
1071   msg = (const struct UpdateMessage *) message;
1072   emsg = NULL;
1073   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Processing `%s' request for %llu\n",
1074               "UPDATE", (unsigned long long) GNUNET_ntohll (msg->uid));
1075   ret =
1076       plugin->api->update (plugin->api->cls, GNUNET_ntohll (msg->uid),
1077                            (int32_t) ntohl (msg->priority),
1078                            GNUNET_TIME_absolute_ntoh (msg->expiration), &emsg);
1079   transmit_status (client, ret, emsg);
1080   GNUNET_free_non_null (emsg);
1081 }
1082
1083
1084 /**
1085  * Handle GET_REPLICATION-message.
1086  *
1087  * @param cls closure
1088  * @param client identification of the client
1089  * @param message the actual message
1090  */
1091 static void
1092 handle_get_replication (void *cls, struct GNUNET_SERVER_Client *client,
1093                         const struct GNUNET_MessageHeader *message)
1094 {
1095   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Processing `%s' request\n",
1096               "GET_REPLICATION");
1097   GNUNET_STATISTICS_update (stats,
1098                             gettext_noop
1099                             ("# GET REPLICATION requests received"), 1,
1100                             GNUNET_NO);
1101   GNUNET_SERVER_client_keep (client);
1102   plugin->api->get_replication (plugin->api->cls, &transmit_item, client);
1103 }
1104
1105
1106 /**
1107  * Handle GET_ZERO_ANONYMITY-message.
1108  *
1109  * @param cls closure
1110  * @param client identification of the client
1111  * @param message the actual message
1112  */
1113 static void
1114 handle_get_zero_anonymity (void *cls, struct GNUNET_SERVER_Client *client,
1115                            const struct GNUNET_MessageHeader *message)
1116 {
1117   const struct GetZeroAnonymityMessage *msg =
1118       (const struct GetZeroAnonymityMessage *) message;
1119   enum GNUNET_BLOCK_Type type;
1120
1121   type = (enum GNUNET_BLOCK_Type) ntohl (msg->type);
1122   if (type == GNUNET_BLOCK_TYPE_ANY)
1123   {
1124     GNUNET_break (0);
1125     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1126     return;
1127   }
1128   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Processing `%s' request\n",
1129               "GET_ZERO_ANONYMITY");
1130   GNUNET_STATISTICS_update (stats,
1131                             gettext_noop
1132                             ("# GET ZERO ANONYMITY requests received"), 1,
1133                             GNUNET_NO);
1134   GNUNET_SERVER_client_keep (client);
1135   plugin->api->get_zero_anonymity (plugin->api->cls,
1136                                    GNUNET_ntohll (msg->offset), type,
1137                                    &transmit_item, client);
1138 }
1139
1140
1141 /**
1142  * Callback function that will cause the item that is passed
1143  * in to be deleted (by returning GNUNET_NO).
1144  */
1145 static int
1146 remove_callback (void *cls, const struct GNUNET_HashCode * key, uint32_t size,
1147                  const void *data, enum GNUNET_BLOCK_Type type,
1148                  uint32_t priority, uint32_t anonymity,
1149                  struct GNUNET_TIME_Absolute expiration, uint64_t uid)
1150 {
1151   struct GNUNET_SERVER_Client *client = cls;
1152
1153   if (key == NULL)
1154   {
1155     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1156                 "No further matches for `%s' request.\n", "REMOVE");
1157     transmit_status (client, GNUNET_NO, _("Content not found"));
1158     GNUNET_SERVER_client_drop (client);
1159     return GNUNET_OK;           /* last item */
1160   }
1161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1162               "Item %llu matches `%s' request for key `%s' and type %u.\n",
1163               (unsigned long long) uid, "REMOVE", GNUNET_h2s (key), type);
1164   GNUNET_STATISTICS_update (stats,
1165                             gettext_noop ("# bytes removed (explicit request)"),
1166                             size, GNUNET_YES);
1167   GNUNET_CONTAINER_bloomfilter_remove (filter, key);
1168   transmit_status (client, GNUNET_OK, NULL);
1169   GNUNET_SERVER_client_drop (client);
1170   return GNUNET_NO;
1171 }
1172
1173
1174 /**
1175  * Handle REMOVE-message.
1176  *
1177  * @param cls closure
1178  * @param client identification of the client
1179  * @param message the actual message
1180  */
1181 static void
1182 handle_remove (void *cls, struct GNUNET_SERVER_Client *client,
1183                const struct GNUNET_MessageHeader *message)
1184 {
1185   const struct DataMessage *dm = check_data (message);
1186   struct GNUNET_HashCode vhash;
1187
1188   if (dm == NULL)
1189   {
1190     GNUNET_break (0);
1191     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1192     return;
1193   }
1194   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1195               "Processing `%s' request for `%s' of type %u\n", "REMOVE",
1196               GNUNET_h2s (&dm->key), ntohl (dm->type));
1197   GNUNET_STATISTICS_update (stats, gettext_noop ("# REMOVE requests received"),
1198                             1, GNUNET_NO);
1199   GNUNET_SERVER_client_keep (client);
1200   GNUNET_CRYPTO_hash (&dm[1], ntohl (dm->size), &vhash);
1201   plugin->api->get_key (plugin->api->cls, 0, &dm->key, &vhash,
1202                         (enum GNUNET_BLOCK_Type) ntohl (dm->type),
1203                         &remove_callback, client);
1204 }
1205
1206
1207 /**
1208  * Handle DROP-message.
1209  *
1210  * @param cls closure
1211  * @param client identification of the client
1212  * @param message the actual message
1213  */
1214 static void
1215 handle_drop (void *cls, struct GNUNET_SERVER_Client *client,
1216              const struct GNUNET_MessageHeader *message)
1217 {
1218   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1219               "Processing `%s' request\n",
1220               "DROP");
1221   do_drop = GNUNET_YES;
1222   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1223 }
1224
1225
1226 /**
1227  * Function called by plugins to notify us about a
1228  * change in their disk utilization.
1229  *
1230  * @param cls closure (NULL)
1231  * @param delta change in disk utilization,
1232  *        0 for "reset to empty"
1233  */
1234 static void
1235 disk_utilization_change_cb (void *cls,
1236                             int delta)
1237 {
1238   if ((delta < 0) && (payload < -delta))
1239   {
1240     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1241                 _("Datastore payload must have been inaccurate (%lld < %lld). Recomputing it.\n"),
1242                 (long long) payload,
1243                 (long long) -delta);
1244     plugin->api->estimate_size (plugin->api->cls, &payload);
1245     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1246                 _("New payload: %lld\n"),
1247                 (long long) payload);
1248      sync_stats ();
1249     return;
1250   }
1251   payload += delta;
1252   last_sync++;
1253   if (last_sync >= MAX_STAT_SYNC_LAG)
1254     sync_stats ();
1255 }
1256
1257
1258 /**
1259  * Callback function to process statistic values.
1260  *
1261  * @param cls closure (struct Plugin*)
1262  * @param subsystem name of subsystem that created the statistic
1263  * @param name the name of the datum
1264  * @param value the current value
1265  * @param is_persistent #GNUNET_YES if the value is persistent, #GNUNET_NO if not
1266  * @return #GNUNET_OK to continue, #GNUNET_SYSERR to abort iteration
1267  */
1268 static int
1269 process_stat_in (void *cls,
1270                  const char *subsystem,
1271                  const char *name,
1272                  uint64_t value,
1273                  int is_persistent)
1274 {
1275   GNUNET_assert (GNUNET_NO == stats_worked);
1276   stats_worked = GNUNET_YES;
1277   payload += value;
1278   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1279               "Notification from statistics about existing payload (%llu), new payload is %llu\n",
1280               value, payload);
1281   return GNUNET_OK;
1282 }
1283
1284
1285 /**
1286  * Load the datastore plugin.
1287  */
1288 static struct DatastorePlugin *
1289 load_plugin ()
1290 {
1291   struct DatastorePlugin *ret;
1292   char *libname;
1293
1294   ret = GNUNET_new (struct DatastorePlugin);
1295   ret->env.cfg = cfg;
1296   ret->env.duc = &disk_utilization_change_cb;
1297   ret->env.cls = NULL;
1298   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1299               _("Loading `%s' datastore plugin\n"),
1300               plugin_name);
1301   GNUNET_asprintf (&libname,
1302                    "libgnunet_plugin_datastore_%s",
1303                    plugin_name);
1304   ret->short_name = GNUNET_strdup (plugin_name);
1305   ret->lib_name = libname;
1306   ret->api = GNUNET_PLUGIN_load (libname, &ret->env);
1307   if (NULL == ret->api)
1308   {
1309     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1310                 _("Failed to load datastore plugin for `%s'\n"),
1311                 plugin_name);
1312     GNUNET_free (ret->short_name);
1313     GNUNET_free (libname);
1314     GNUNET_free (ret);
1315     return NULL;
1316   }
1317   return ret;
1318 }
1319
1320
1321 /**
1322  * Function called when the service shuts
1323  * down.  Unloads our datastore plugin.
1324  *
1325  * @param plug plugin to unload
1326  */
1327 static void
1328 unload_plugin (struct DatastorePlugin *plug)
1329 {
1330   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1331               "Datastore service is unloading plugin...\n");
1332   GNUNET_break (NULL == GNUNET_PLUGIN_unload (plug->lib_name, plug->api));
1333   GNUNET_free (plug->lib_name);
1334   GNUNET_free (plug->short_name);
1335   GNUNET_free (plug);
1336 }
1337
1338
1339 /**
1340  * Adds a given @a key to the bloomfilter in @a cls @a count times.
1341  *
1342  * @param cls the bloomfilter
1343  * @param key key to add
1344  * @param count number of times to add key
1345  */
1346 static void
1347 add_key_to_bloomfilter (void *cls,
1348                         const struct GNUNET_HashCode *key,
1349                         unsigned int count)
1350 {
1351   struct GNUNET_CONTAINER_BloomFilter *bf = cls;
1352
1353   while (0 < count--)
1354     GNUNET_CONTAINER_bloomfilter_add (bf, key);
1355 }
1356
1357
1358 /**
1359  * We finished receiving the statistic.  Initialize the plugin; if
1360  * loading the statistic failed, run the estimator.
1361  *
1362  * @param cls NULL
1363  * @param success #GNUNET_NO if we failed to read the stat
1364  */
1365 static void
1366 process_stat_done (void *cls, int success)
1367 {
1368   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1369     {&handle_reserve, NULL, GNUNET_MESSAGE_TYPE_DATASTORE_RESERVE,
1370      sizeof (struct ReserveMessage)},
1371     {&handle_release_reserve, NULL,
1372      GNUNET_MESSAGE_TYPE_DATASTORE_RELEASE_RESERVE,
1373      sizeof (struct ReleaseReserveMessage)},
1374     {&handle_put, NULL, GNUNET_MESSAGE_TYPE_DATASTORE_PUT, 0},
1375     {&handle_update, NULL, GNUNET_MESSAGE_TYPE_DATASTORE_UPDATE,
1376      sizeof (struct UpdateMessage)},
1377     {&handle_get, NULL, GNUNET_MESSAGE_TYPE_DATASTORE_GET, 0},
1378     {&handle_get_replication, NULL,
1379      GNUNET_MESSAGE_TYPE_DATASTORE_GET_REPLICATION,
1380      sizeof (struct GNUNET_MessageHeader)},
1381     {&handle_get_zero_anonymity, NULL,
1382      GNUNET_MESSAGE_TYPE_DATASTORE_GET_ZERO_ANONYMITY,
1383      sizeof (struct GetZeroAnonymityMessage)},
1384     {&handle_remove, NULL, GNUNET_MESSAGE_TYPE_DATASTORE_REMOVE, 0},
1385     {&handle_drop, NULL, GNUNET_MESSAGE_TYPE_DATASTORE_DROP,
1386      sizeof (struct GNUNET_MessageHeader)},
1387     {NULL, NULL, 0, 0}
1388   };
1389
1390   stat_get = NULL;
1391   plugin = load_plugin ();
1392   if (NULL == plugin)
1393   {
1394     GNUNET_CONTAINER_bloomfilter_free (filter);
1395     filter = NULL;
1396     if (NULL != stats)
1397     {
1398       GNUNET_STATISTICS_destroy (stats, GNUNET_YES);
1399       stats = NULL;
1400     }
1401     return;
1402   }
1403   if (GNUNET_NO == stats_worked)
1404   {
1405     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1406                 "Failed to obtain value from statistics service, recomputing it\n");
1407     plugin->api->estimate_size (plugin->api->cls, &payload);
1408   }
1409   if (GNUNET_YES == refresh_bf)
1410   {
1411     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1412                 _("Rebuilding bloomfilter.  Please be patient.\n"));
1413     if (NULL != plugin->api->get_keys)
1414       plugin->api->get_keys (plugin->api->cls,
1415                              &add_key_to_bloomfilter,
1416                              filter);
1417     else
1418       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1419                   _("Plugin does not support get_keys function. Please fix!\n"));
1420
1421     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1422                 _("Bloomfilter construction complete.\n"));
1423   }
1424
1425   GNUNET_SERVER_add_handlers (server, handlers);
1426   expired_kill_task
1427     = GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_IDLE,
1428                                           &delete_expired,
1429                                           NULL);
1430 }
1431
1432
1433 /**
1434  * Task run during shutdown.
1435  */
1436 static void
1437 cleaning_task (void *cls,
1438                const struct GNUNET_SCHEDULER_TaskContext *tc)
1439 {
1440   struct TransmitCallbackContext *tcc;
1441
1442   cleaning_done = GNUNET_YES;
1443   while (NULL != (tcc = tcc_head))
1444   {
1445     GNUNET_CONTAINER_DLL_remove (tcc_head, tcc_tail, tcc);
1446     if (tcc->th != NULL)
1447     {
1448       GNUNET_SERVER_notify_transmit_ready_cancel (tcc->th);
1449       GNUNET_SERVER_client_drop (tcc->client);
1450     }
1451     GNUNET_free (tcc->msg);
1452     GNUNET_free (tcc);
1453   }
1454   if (expired_kill_task != NULL)
1455   {
1456     GNUNET_SCHEDULER_cancel (expired_kill_task);
1457     expired_kill_task = NULL;
1458   }
1459   if (GNUNET_YES == do_drop)
1460     plugin->api->drop (plugin->api->cls);
1461   unload_plugin (plugin);
1462   plugin = NULL;
1463   if (NULL != filter)
1464   {
1465     GNUNET_CONTAINER_bloomfilter_free (filter);
1466     filter = NULL;
1467   }
1468   if (NULL != stat_get)
1469   {
1470     GNUNET_STATISTICS_get_cancel (stat_get);
1471     stat_get = NULL;
1472   }
1473   GNUNET_free_non_null (plugin_name);
1474   plugin_name = NULL;
1475   if (last_sync > 0)
1476     sync_stats ();
1477   if (NULL != stats)
1478   {
1479     GNUNET_STATISTICS_destroy (stats, GNUNET_YES);
1480     stats = NULL;
1481   }
1482   GNUNET_free (quota_stat_name);
1483   quota_stat_name = NULL;
1484 }
1485
1486
1487 /**
1488  * Function that removes all active reservations made
1489  * by the given client and releases the space for other
1490  * requests.
1491  *
1492  * @param cls closure
1493  * @param client identification of the client
1494  */
1495 static void
1496 cleanup_reservations (void *cls,
1497                       struct GNUNET_SERVER_Client *client)
1498 {
1499   struct ReservationList *pos;
1500   struct ReservationList *prev;
1501   struct ReservationList *next;
1502
1503   if (NULL == client)
1504     return;
1505   prev = NULL;
1506   pos = reservations;
1507   while (NULL != pos)
1508   {
1509     next = pos->next;
1510     if (pos->client == client)
1511     {
1512       if (prev == NULL)
1513         reservations = next;
1514       else
1515         prev->next = next;
1516       reserved -= pos->amount + pos->entries * GNUNET_DATASTORE_ENTRY_OVERHEAD;
1517       GNUNET_free (pos);
1518     }
1519     else
1520     {
1521       prev = pos;
1522     }
1523     pos = next;
1524   }
1525   GNUNET_STATISTICS_set (stats, gettext_noop ("# reserved"), reserved,
1526                          GNUNET_NO);
1527 }
1528
1529
1530 /**
1531  * Process datastore requests.
1532  *
1533  * @param cls closure
1534  * @param serv the initialized server
1535  * @param c configuration to use
1536  */
1537 static void
1538 run (void *cls,
1539      struct GNUNET_SERVER_Handle *serv,
1540      const struct GNUNET_CONFIGURATION_Handle *c)
1541 {
1542   char *fn;
1543   char *pfn;
1544   unsigned int bf_size;
1545
1546   server = serv;
1547   cfg = c;
1548   if (GNUNET_OK !=
1549       GNUNET_CONFIGURATION_get_value_string (cfg, "DATASTORE", "DATABASE",
1550                                              &plugin_name))
1551   {
1552     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1553                 _("No `%s' specified for `%s' in configuration!\n"), "DATABASE",
1554                 "DATASTORE");
1555     return;
1556   }
1557   GNUNET_asprintf (&quota_stat_name,
1558                    _("# bytes used in file-sharing datastore `%s'"),
1559                    plugin_name);
1560   if (GNUNET_OK !=
1561       GNUNET_CONFIGURATION_get_value_size (cfg, "DATASTORE", "QUOTA", &quota))
1562   {
1563     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1564                 _("No `%s' specified for `%s' in configuration!\n"), "QUOTA",
1565                 "DATASTORE");
1566     return;
1567   }
1568   stats = GNUNET_STATISTICS_create ("datastore", cfg);
1569   GNUNET_STATISTICS_set (stats, gettext_noop ("# quota"), quota, GNUNET_NO);
1570   cache_size = quota / 8;       /* Or should we make this an option? */
1571   GNUNET_STATISTICS_set (stats, gettext_noop ("# cache size"), cache_size,
1572                          GNUNET_NO);
1573   if (quota / (32 * 1024LL) > (1 << 31))
1574     bf_size = (1 << 31);          /* absolute limit: ~2 GB, beyond that BF just won't help anyway */
1575   else
1576     bf_size = quota / (32 * 1024LL);         /* 8 bit per entry, 1 bit per 32 kb in DB */
1577   fn = NULL;
1578   if ((GNUNET_OK !=
1579        GNUNET_CONFIGURATION_get_value_filename (cfg, "DATASTORE", "BLOOMFILTER",
1580                                                 &fn)) ||
1581       (GNUNET_OK != GNUNET_DISK_directory_create_for_file (fn)))
1582   {
1583     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1584                 _("Could not use specified filename `%s' for bloomfilter.\n"),
1585                 NULL != fn ? fn : "");
1586     GNUNET_free_non_null (fn);
1587     fn = NULL;
1588   }
1589   if (NULL != fn)
1590   {
1591     GNUNET_asprintf (&pfn, "%s.%s", fn, plugin_name);
1592     if (GNUNET_YES == GNUNET_DISK_file_test (pfn))
1593     {
1594       filter = GNUNET_CONTAINER_bloomfilter_load (pfn, bf_size, 5);        /* approx. 3% false positives at max use */
1595       if (NULL == filter)
1596       {
1597         /* file exists but not valid, remove and try again, but refresh */
1598         if (0 != UNLINK (pfn))
1599         {
1600           /* failed to remove, run without file */
1601           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1602                       _("Failed to remove bogus bloomfilter file `%s'\n"),
1603                       pfn);
1604           GNUNET_free (pfn);
1605           pfn = NULL;
1606           filter = GNUNET_CONTAINER_bloomfilter_load (NULL, bf_size, 5);        /* approx. 3% false positives at max use */
1607           refresh_bf = GNUNET_YES;
1608         }
1609         else
1610         {
1611           /* try again after remove */
1612           filter = GNUNET_CONTAINER_bloomfilter_load (pfn, bf_size, 5);        /* approx. 3% false positives at max use */
1613           refresh_bf = GNUNET_YES;
1614           if (NULL == filter)
1615           {
1616             /* failed yet again, give up on using file */
1617             GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1618                         _("Failed to remove bogus bloomfilter file `%s'\n"),
1619                         pfn);
1620             GNUNET_free (pfn);
1621             pfn = NULL;
1622             filter = GNUNET_CONTAINER_bloomfilter_init (NULL, bf_size, 5);        /* approx. 3% false positives at max use */
1623           }
1624         }
1625       }
1626       else
1627       {
1628         /* normal case: have an existing valid bf file, no need to refresh */
1629         refresh_bf = GNUNET_NO;
1630       }
1631     }
1632     else
1633     {
1634       filter = GNUNET_CONTAINER_bloomfilter_load (pfn, bf_size, 5);        /* approx. 3% false positives at max use */
1635       refresh_bf = GNUNET_YES;
1636     }
1637     GNUNET_free (pfn);
1638   }
1639   else
1640   {
1641     filter = GNUNET_CONTAINER_bloomfilter_init (NULL, bf_size, 5);      /* approx. 3% false positives at max use */
1642     refresh_bf = GNUNET_YES;
1643   }
1644   GNUNET_free_non_null (fn);
1645   if (NULL == filter)
1646   {
1647     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1648                 _("Failed to initialize bloomfilter.\n"));
1649     if (NULL != stats)
1650     {
1651       GNUNET_STATISTICS_destroy (stats, GNUNET_YES);
1652       stats = NULL;
1653     }
1654     return;
1655   }
1656   stat_get =
1657       GNUNET_STATISTICS_get (stats,
1658                              "datastore",
1659                              quota_stat_name,
1660                              GNUNET_TIME_UNIT_SECONDS,
1661                              &process_stat_done,
1662                              &process_stat_in,
1663                              NULL);
1664   if (NULL == stat_get)
1665     process_stat_done (NULL, GNUNET_SYSERR);
1666   GNUNET_SERVER_disconnect_notify (server,
1667                                    &cleanup_reservations,
1668                                    NULL);
1669   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1670                                 &cleaning_task,
1671                                 NULL);
1672 }
1673
1674
1675 /**
1676  * The main function for the datastore service.
1677  *
1678  * @param argc number of arguments from the command line
1679  * @param argv command line arguments
1680  * @return 0 ok, 1 on error
1681  */
1682 int
1683 main (int argc,
1684       char *const *argv)
1685 {
1686   int ret;
1687
1688   ret =
1689       (GNUNET_OK ==
1690        GNUNET_SERVICE_run (argc, argv, "datastore",
1691                            GNUNET_SERVICE_OPTION_NONE,
1692                            &run, NULL)) ? 0 : 1;
1693   return ret;
1694 }
1695
1696
1697 /* end of gnunet-service-datastore.c */