bugfix
[oweals/gnunet.git] / src / util / container_bloomfilter.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2006, 2008 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 2, 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  * @file util/container_bloomfilter.c
22  * @brief data structure used to reduce disk accesses.
23  *
24  * The idea basically: Create a signature for each element in the
25  * database. Add those signatures to a bit array. When doing a lookup,
26  * check if the bit array matches the signature of the requested
27  * element. If yes, address the disk, otherwise return 'not found'.
28  *
29  * A property of the bloom filter is that sometimes we will have
30  * a match even if the element is not on the disk (then we do
31  * an unnecessary disk access), but what's most important is that
32  * we never get a single "false negative".
33  *
34  * To be able to delete entries from the bloom filter, we maintain
35  * a 4 bit counter in the file on the drive (we still use only one
36  * bit in memory).
37  *
38  * @author Igor Wronsky
39  * @author Christian Grothoff
40  */
41
42 #include "platform.h"
43 #include "gnunet_common.h"
44 #include "gnunet_container_lib.h"
45 #include "gnunet_disk_lib.h"
46
47 struct GNUNET_CONTAINER_BloomFilter
48 {
49
50   /**
51    * The actual bloomfilter bit array
52    */
53   char *bitArray;
54
55   /**
56    * Filename of the filter
57    */
58   char *filename;
59
60   /**
61    * The bit counter file on disk
62    */
63   struct GNUNET_DISK_FileHandle *fh;
64
65   /**
66    * How many bits we set for each stored element
67    */
68   unsigned int addressesPerElement;
69
70   /**
71    * Size of bitArray in bytes
72    */
73   unsigned int bitArraySize;
74
75 };
76
77
78 /**
79  * Sets a bit active in the bitArray. Increment bit-specific
80  * usage counter on disk only if below 4bit max (==15).
81  *
82  * @param bitArray memory area to set the bit in
83  * @param bitIdx which bit to set
84  */
85 static void
86 setBit (char *bitArray, unsigned int bitIdx)
87 {
88   unsigned int arraySlot;
89   unsigned int targetBit;
90
91   arraySlot = bitIdx / 8;
92   targetBit = (1L << (bitIdx % 8));
93   bitArray[arraySlot] |= targetBit;
94 }
95
96 /**
97  * Clears a bit from bitArray. Bit is cleared from the array
98  * only if the respective usage counter on the disk hits/is zero.
99  *
100  * @param bitArray memory area to set the bit in
101  * @param bitIdx which bit to unset
102  */
103 static void
104 clearBit (char *bitArray, unsigned int bitIdx)
105 {
106   unsigned int slot;
107   unsigned int targetBit;
108
109   slot = bitIdx / 8;
110   targetBit = (1L << (bitIdx % 8));
111   bitArray[slot] = bitArray[slot] & (~targetBit);
112 }
113
114 /**
115  * Checks if a bit is active in the bitArray
116  *
117  * @param bitArray memory area to set the bit in
118  * @param bitIdx which bit to test
119  * @return GNUNET_YES if the bit is set, GNUNET_NO if not.
120  */
121 static int
122 testBit (char *bitArray, unsigned int bitIdx)
123 {
124   unsigned int slot;
125   unsigned int targetBit;
126
127   slot = bitIdx / 8;
128   targetBit = (1L << (bitIdx % 8));
129   if (bitArray[slot] & targetBit)
130     return GNUNET_YES;
131   else
132     return GNUNET_NO;
133 }
134
135 /**
136  * Sets a bit active in the bitArray and increments
137  * bit-specific usage counter on disk (but only if
138  * the counter was below 4 bit max (==15)).
139  *
140  * @param bitArray memory area to set the bit in
141  * @param bitIdx which bit to test
142  * @param fh A file to keep the 4 bit address usage counters in
143  */
144 static void
145 incrementBit (char *bitArray, unsigned int bitIdx, const struct GNUNET_DISK_FileHandle *fh)
146 {
147   unsigned int fileSlot;
148   unsigned char value;
149   unsigned int high;
150   unsigned int low;
151   unsigned int targetLoc;
152
153   setBit (bitArray, bitIdx);
154   if (GNUNET_DISK_handle_invalid (fh))
155     return;
156   /* Update the counter file on disk */
157   fileSlot = bitIdx / 2;
158   targetLoc = bitIdx % 2;
159
160   GNUNET_assert (fileSlot == (unsigned int) GNUNET_DISK_file_seek (fh, fileSlot, GNUNET_SEEK_SET));
161   if (1 != GNUNET_DISK_file_read (fh, &value, 1))
162     value = 0;
163   low = value & 0xF;
164   high = (value & (~0xF)) >> 4;
165
166   if (targetLoc == 0)
167     {
168       if (low < 0xF)
169         low++;
170     }
171   else
172     {
173       if (high < 0xF)
174         high++;
175     }
176   value = ((high << 4) | low);
177   GNUNET_assert (fileSlot == (unsigned int) GNUNET_DISK_file_seek (fh, fileSlot, GNUNET_SEEK_SET));
178   GNUNET_assert (1 == GNUNET_DISK_file_write (fh, &value, 1));
179 }
180
181 /**
182  * Clears a bit from bitArray if the respective usage
183  * counter on the disk hits/is zero.
184  *
185  * @param bitArray memory area to set the bit in
186  * @param bitIdx which bit to test
187  * @param fh A file to keep the 4bit address usage counters in
188  */
189 static void
190 decrementBit (char *bitArray, unsigned int bitIdx, const struct GNUNET_DISK_FileHandle *fh)
191 {
192   unsigned int fileSlot;
193   unsigned char value;
194   unsigned int high;
195   unsigned int low;
196   unsigned int targetLoc;
197
198   if (GNUNET_DISK_handle_invalid (fh))
199     return;                     /* cannot decrement! */
200   /* Each char slot in the counter file holds two 4 bit counters */
201   fileSlot = bitIdx / 2;
202   targetLoc = bitIdx % 2;
203   GNUNET_DISK_file_seek (fh, fileSlot, GNUNET_SEEK_SET);
204   if (1 != GNUNET_DISK_file_read (fh, &value, 1))
205     value = 0;
206   low = value & 0xF;
207   high = (value & 0xF0) >> 4;
208
209   /* decrement, but once we have reached the max, never go back! */
210   if (targetLoc == 0)
211     {
212       if ((low > 0) && (low < 0xF))
213         low--;
214       if (low == 0)
215         {
216           clearBit (bitArray, bitIdx);
217         }
218     }
219   else
220     {
221       if ((high > 0) && (high < 0xF))
222         high--;
223       if (high == 0)
224         {
225           clearBit (bitArray, bitIdx);
226         }
227     }
228   value = ((high << 4) | low);
229   GNUNET_DISK_file_seek (fh, fileSlot, GNUNET_SEEK_SET);
230   GNUNET_assert (1 == GNUNET_DISK_file_write (fh, &value, 1));
231 }
232
233 #define BUFFSIZE 65536
234
235 /**
236  * Creates a file filled with zeroes
237  *
238  * @param fh the file handle
239  * @param size the size of the file
240  * @return GNUNET_OK if created ok, GNUNET_SYSERR otherwise
241  */
242 static int
243 makeEmptyFile (const struct GNUNET_DISK_FileHandle *fh, unsigned int size)
244 {
245   char *buffer;
246   unsigned int bytesleft = size;
247   int res = 0;
248
249   if (GNUNET_DISK_handle_invalid (fh))
250     return GNUNET_SYSERR;
251   buffer = GNUNET_malloc (BUFFSIZE);
252   memset (buffer, 0, BUFFSIZE);
253   GNUNET_DISK_file_seek (fh, 0, GNUNET_SEEK_SET);
254
255   while (bytesleft > 0)
256     {
257       if (bytesleft > BUFFSIZE)
258         {
259           res = GNUNET_DISK_file_write (fh, buffer, BUFFSIZE);
260           bytesleft -= BUFFSIZE;
261         }
262       else
263         {
264           res = GNUNET_DISK_file_write (fh, buffer, bytesleft);
265           bytesleft = 0;
266         }
267       GNUNET_assert (res != GNUNET_SYSERR);
268     }
269   GNUNET_free (buffer);
270   return GNUNET_OK;
271 }
272
273 /* ************** GNUNET_CONTAINER_BloomFilter GNUNET_CRYPTO_hash iterator ********* */
274
275 /**
276  * Iterator (callback) method to be called by the
277  * bloomfilter iterator on each bit that is to be
278  * set or tested for the key.
279  *
280  * @param bf the filter to manipulate
281  * @param bit the current bit
282  * @param additional context specific argument
283  */
284 typedef void (*BitIterator) (struct GNUNET_CONTAINER_BloomFilter * bf,
285                              unsigned int bit, void *arg);
286
287 /**
288  * Call an iterator for each bit that the bloomfilter
289  * must test or set for this element.
290  *
291  * @param bf the filter
292  * @param callback the method to call
293  * @param arg extra argument to callback
294  * @param key the key for which we iterate over the BF bits
295  */
296 static void
297 iterateBits (struct GNUNET_CONTAINER_BloomFilter *bf,
298              BitIterator callback, void *arg, const GNUNET_HashCode * key)
299 {
300   GNUNET_HashCode tmp[2];
301   int bitCount;
302   int round;
303   unsigned int slot = 0;
304
305   bitCount = bf->addressesPerElement;
306   memcpy (&tmp[0], key, sizeof (GNUNET_HashCode));
307   round = 0;
308   while (bitCount > 0)
309     {
310       while (slot < (sizeof (GNUNET_HashCode) / sizeof (unsigned int)))
311         {
312           callback (bf,
313                     (((unsigned int *) &tmp[round & 1])[slot]) &
314                     ((bf->bitArraySize * 8) - 1), arg);
315           slot++;
316           bitCount--;
317           if (bitCount == 0)
318             break;
319         }
320       if (bitCount > 0)
321         {
322           GNUNET_CRYPTO_hash (&tmp[round & 1], sizeof (GNUNET_HashCode),
323                               &tmp[(round + 1) & 1]);
324           round++;
325           slot = 0;
326         }
327     }
328 }
329
330 /**
331  * Callback: increment bit
332  *
333  * @param bf the filter to manipulate
334  * @param bit the bit to increment
335  * @param arg not used
336  */
337 static void
338 incrementBitCallback (struct GNUNET_CONTAINER_BloomFilter *bf,
339                       unsigned int bit, void *arg)
340 {
341   incrementBit (bf->bitArray, bit, bf->fh);
342 }
343
344 /**
345  * Callback: decrement bit
346  *
347  * @param bf the filter to manipulate
348  * @param bit the bit to decrement
349  * @param arg not used
350  */
351 static void
352 decrementBitCallback (struct GNUNET_CONTAINER_BloomFilter *bf,
353                       unsigned int bit, void *arg)
354 {
355   decrementBit (bf->bitArray, bit, bf->fh);
356 }
357
358 /**
359  * Callback: test if all bits are set
360  *
361  * @param bf the filter
362  * @param bit the bit to test
363  * @param arg pointer set to GNUNET_NO if bit is not set
364  */
365 static void
366 testBitCallback (struct GNUNET_CONTAINER_BloomFilter *bf, unsigned int bit,
367                  void *cls)
368 {
369   int *arg = cls;
370   if (GNUNET_NO == testBit (bf->bitArray, bit))
371     *arg = GNUNET_NO;
372 }
373
374 /* *********************** INTERFACE **************** */
375
376 /**
377  * Load a bloom-filter from a file.
378  *
379  * @param filename the name of the file (or the prefix)
380  * @param size the size of the bloom-filter (number of
381  *        bytes of storage space to use)
382  * @param k the number of GNUNET_CRYPTO_hash-functions to apply per
383  *        element (number of bits set per element in the set)
384  * @return the bloomfilter
385  */
386 struct GNUNET_CONTAINER_BloomFilter *
387 GNUNET_CONTAINER_bloomfilter_load (const char *filename, unsigned int size,
388                                    unsigned int k)
389 {
390   struct GNUNET_CONTAINER_BloomFilter *bf;
391   char *rbuff;
392   unsigned int pos;
393   int i;
394   unsigned int ui;
395
396   if ((k == 0) || (size == 0))
397     return NULL;
398   if (size < BUFFSIZE)
399     size = BUFFSIZE;
400   ui = 1;
401   while (ui < size)
402     ui *= 2;
403   size = ui;                    /* make sure it's a power of 2 */
404
405   bf = GNUNET_malloc (sizeof (struct GNUNET_CONTAINER_BloomFilter));
406   /* Try to open a bloomfilter file */
407   if (filename != NULL)
408     {
409       bf->fh = GNUNET_DISK_file_open (filename, GNUNET_DISK_OPEN_READWRITE
410                                       | GNUNET_DISK_OPEN_CREATE,
411           GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE);
412       if (NULL == bf->fh)
413         {
414           GNUNET_free (bf);
415           return NULL;
416         }
417       bf->filename = GNUNET_strdup (filename);
418     }
419   else
420     {
421       bf->filename = NULL;
422       bf->fh = NULL;
423     }
424   /* Alloc block */
425   bf->bitArray = GNUNET_malloc_large (size);
426   bf->bitArraySize = size;
427   bf->addressesPerElement = k;
428   memset (bf->bitArray, 0, bf->bitArraySize);
429
430   if (bf->filename != NULL)
431     {
432       /* Read from the file what bits we can */
433       rbuff = GNUNET_malloc (BUFFSIZE);
434       pos = 0;
435       while (pos < size * 8)
436         {
437           int res;
438
439           res = GNUNET_DISK_file_read (bf->fh, rbuff, BUFFSIZE);
440           if (res == -1)
441             {
442               GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
443                                         "read",
444                                         bf->filename);
445             }
446           if (res == 0)
447             break;              /* is ok! we just did not use that many bits yet */
448           for (i = 0; i < res; i++)
449             {
450               if ((rbuff[i] & 0x0F) != 0)
451                 setBit (bf->bitArray, pos + i * 2);
452               if ((rbuff[i] & 0xF0) != 0)
453                 setBit (bf->bitArray, pos + i * 2 + 1);
454             }
455           if (res < BUFFSIZE)
456             break;
457           pos += BUFFSIZE * 2;  /* 2 bits per byte in the buffer */
458         }
459       GNUNET_free (rbuff);
460     }
461   return bf;
462 }
463
464
465 /**
466  * Create a bloom filter from raw bits.
467  *
468  * @param data the raw bits in memory (maybe NULL,
469  *        in which case all bits should be considered
470  *        to be zero).
471  * @param size the size of the bloom-filter (number of
472  *        bytes of storage space to use); also size of data
473  *        -- unless data is NULL
474  * @param k the number of GNUNET_CRYPTO_hash-functions to apply per
475  *        element (number of bits set per element in the set)
476  * @return the bloomfilter
477  */
478 struct GNUNET_CONTAINER_BloomFilter *
479 GNUNET_CONTAINER_bloomfilter_init (const char *data, unsigned int size,
480                                    unsigned int k)
481 {
482   struct GNUNET_CONTAINER_BloomFilter *bf;
483   unsigned int ui;
484
485   if ((k == 0) || (size == 0))
486     return NULL;
487   ui = 1;
488   while (ui < size)
489     ui *= 2;
490   if (size != ui)
491     {
492       GNUNET_break (0);
493       return NULL;
494     }
495   bf = GNUNET_malloc (sizeof (struct GNUNET_CONTAINER_BloomFilter));
496   bf->filename = NULL;
497   bf->fh = NULL;
498   bf->bitArray = GNUNET_malloc_large (size);
499   bf->bitArraySize = size;
500   bf->addressesPerElement = k;
501   if (data != NULL)
502     memcpy (bf->bitArray, data, size);
503   else
504     memset (bf->bitArray, 0, bf->bitArraySize);
505   return bf;
506 }
507
508
509 /**
510  * Copy the raw data of this bloomfilter into
511  * the given data array.
512  *
513  * @param data where to write the data
514  * @param size the size of the given data array
515  * @return GNUNET_SYSERR if the data array is not big enough
516  */
517 int
518 GNUNET_CONTAINER_bloomfilter_get_raw_data (struct GNUNET_CONTAINER_BloomFilter
519                                            *bf, char *data, unsigned int size)
520 {
521   if (NULL == bf)
522     return GNUNET_SYSERR;
523
524   if (bf->bitArraySize != size)
525     return GNUNET_SYSERR;
526   memcpy (data, bf->bitArray, size);
527   return GNUNET_OK;
528 }
529
530 /**
531  * Free the space associated with a filter
532  * in memory, flush to drive if needed (do not
533  * free the space on the drive)
534  *
535  * @param bf the filter
536  */
537 void
538 GNUNET_CONTAINER_bloomfilter_free (struct GNUNET_CONTAINER_BloomFilter *bf)
539 {
540   if (NULL == bf)
541     return;
542   if (bf->filename != NULL)
543     {
544       GNUNET_DISK_file_close (bf->fh);
545       GNUNET_free (bf->filename);
546     }
547   GNUNET_free (bf->bitArray);
548   GNUNET_free (bf);
549 }
550
551 /**
552  * Reset a bloom filter to empty. Clears the file on disk.
553  *
554  * @param bf the filter
555  */
556 void
557 GNUNET_CONTAINER_bloomfilter_clear (struct GNUNET_CONTAINER_BloomFilter *bf)
558 {
559   if (NULL == bf)
560     return;
561
562   memset (bf->bitArray, 0, bf->bitArraySize);
563   if (bf->filename != NULL)
564     makeEmptyFile (bf->fh, bf->bitArraySize * 4);
565 }
566
567
568 /**
569  * Test if an element is in the filter.
570  *
571  * @param e the element
572  * @param bf the filter
573  * @return GNUNET_YES if the element is in the filter, GNUNET_NO if not
574  */
575 int
576 GNUNET_CONTAINER_bloomfilter_test (struct GNUNET_CONTAINER_BloomFilter *bf,
577                                    const GNUNET_HashCode * e)
578 {
579   int res;
580
581   if (NULL == bf)
582     return GNUNET_YES;
583   res = GNUNET_YES;
584   iterateBits (bf, &testBitCallback, &res, e);
585   return res;
586 }
587
588 /**
589  * Add an element to the filter
590  *
591  * @param bf the filter
592  * @param e the element
593  */
594 void
595 GNUNET_CONTAINER_bloomfilter_add (struct GNUNET_CONTAINER_BloomFilter *bf,
596                                   const GNUNET_HashCode * e)
597 {
598
599   if (NULL == bf)
600     return;
601   iterateBits (bf, &incrementBitCallback, NULL, e);
602 }
603
604
605 /**
606  * Or the entries of the given raw data array with the
607  * data of the given bloom filter.  Assumes that
608  * the size of the data array and the current filter
609  * match.
610  * @param bf the filter
611  */
612 int
613 GNUNET_CONTAINER_bloomfilter_or (struct GNUNET_CONTAINER_BloomFilter *bf,
614                                  const char *data, unsigned int size)
615 {
616   unsigned int i;
617
618   if (NULL == bf)
619     return GNUNET_YES;
620   if (bf->bitArraySize != size)
621     return GNUNET_SYSERR;
622   /* FIXME: we could do this 4-8x faster by
623      going over int/long arrays */
624   for (i = 0; i < size; i++)
625     bf->bitArray[i] |= data[i];
626   return GNUNET_OK;
627 }
628
629 /**
630  * Remove an element from the filter.
631  *
632  * @param bf the filter
633  * @param e the element to remove
634  */
635 void
636 GNUNET_CONTAINER_bloomfilter_remove (struct GNUNET_CONTAINER_BloomFilter *bf,
637                                      const GNUNET_HashCode * e)
638 {
639   if (NULL == bf)
640     return;
641   if (bf->filename == NULL)
642     return;
643   iterateBits (bf, &decrementBitCallback, NULL, e);
644 }
645
646 /**
647  * Resize a bloom filter.  Note that this operation
648  * is pretty costly.  Essentially, the bloom filter
649  * needs to be completely re-build.
650  *
651  * @param bf the filter
652  * @param iterator an iterator over all elements stored in the BF
653  * @param iterator_arg argument to the iterator function
654  * @param size the new size for the filter
655  * @param k the new number of GNUNET_CRYPTO_hash-function to apply per element
656  */
657 void
658 GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf,
659                                      GNUNET_HashCodeIterator iterator,
660                                      void *iterator_arg, unsigned int size,
661                                      unsigned int k)
662 {
663   GNUNET_HashCode hc;
664   unsigned int i;
665
666   GNUNET_free (bf->bitArray);
667   i = 1;
668   while (i < size)
669     i *= 2;
670   size = i;                     /* make sure it's a power of 2 */
671
672   bf->bitArraySize = size;
673   bf->bitArray = GNUNET_malloc (size);
674   memset (bf->bitArray, 0, bf->bitArraySize);
675   if (bf->filename != NULL)
676     makeEmptyFile (bf->fh, bf->bitArraySize * 4);
677   while (GNUNET_YES == iterator (&hc, iterator_arg))
678     GNUNET_CONTAINER_bloomfilter_add (bf, &hc);
679 }
680
681 /* end of container_bloomfilter.c */