]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/private.h
tdb2: remove tdb_traverse_read
[ccan] / ccan / tdb2 / private.h
1 #ifndef TDB_PRIVATE_H
2 #define TDB_PRIVATE_H
3  /*
4    Trivial Database 2: private types and prototypes
5    Copyright (C) Rusty Russell 2010
6
7    This library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 3 of the License, or (at your option) any later version.
11
12    This library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #define _XOPEN_SOURCE 500
22 #define _FILE_OFFSET_BITS 64
23 #include <stdint.h>
24 #include <stdbool.h>
25 #include <stdlib.h>
26 #include <stddef.h>
27 #include <sys/time.h>
28 #include <sys/mman.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <string.h>
32 #include <errno.h>
33 #include <stdio.h>
34 #include <utime.h>
35 #include <unistd.h>
36 #include "config.h"
37 #include <ccan/tdb2/tdb2.h>
38 #include <ccan/likely/likely.h>
39 #include <ccan/compiler/compiler.h>
40 #if HAVE_BYTESWAP_H
41 #include <byteswap.h>
42 #endif
43
44 #ifndef TEST_IT
45 #define TEST_IT(cond)
46 #endif
47
48 /* #define TDB_TRACE 1 */
49
50 #ifndef __STRING
51 #define __STRING(x)    #x
52 #endif
53
54 #ifndef __STRINGSTRING
55 #define __STRINGSTRING(x) __STRING(x)
56 #endif
57
58 #ifndef __location__
59 #define __location__ __FILE__ ":" __STRINGSTRING(__LINE__)
60 #endif
61
62 typedef uint64_t tdb_len_t;
63 typedef uint64_t tdb_off_t;
64
65 #define TDB_MAGIC_FOOD "TDB file\n"
66 #define TDB_VERSION ((uint64_t)(0x26011967 + 7))
67 #define TDB_USED_MAGIC ((uint64_t)0x1999)
68 #define TDB_HTABLE_MAGIC ((uint64_t)0x1888)
69 #define TDB_CHAIN_MAGIC ((uint64_t)0x1777)
70 #define TDB_FTABLE_MAGIC ((uint64_t)0x1666)
71 #define TDB_FREE_MAGIC ((uint64_t)0xFE)
72 #define TDB_HASH_MAGIC (0xA1ABE11A01092008ULL)
73 #define TDB_RECOVERY_MAGIC (0xf53bc0e7ad124589ULL)
74 #define TDB_RECOVERY_INVALID_MAGIC (0x0ULL)
75
76 #define TDB_OFF_ERR ((tdb_off_t)-1)
77
78 /* Prevent others from opening the file. */
79 #define TDB_OPEN_LOCK 0
80 /* Doing a transaction. */
81 #define TDB_TRANSACTION_LOCK 1
82 /* Expanding file. */
83 #define TDB_EXPANSION_LOCK 2
84 /* Hash chain locks. */
85 #define TDB_HASH_LOCK_START 3
86
87 /* Range for hash locks. */
88 #define TDB_HASH_LOCK_RANGE_BITS 30
89 #define TDB_HASH_LOCK_RANGE (1 << TDB_HASH_LOCK_RANGE_BITS)
90
91 /* We have 1024 entries in the top level. */
92 #define TDB_TOPLEVEL_HASH_BITS 10
93 /* And 64 entries in each sub-level: thus 64 bits exactly after 9 levels. */
94 #define TDB_SUBLEVEL_HASH_BITS 6
95 /* And 8 entries in each group, ie 8 groups per sublevel. */
96 #define TDB_HASH_GROUP_BITS 3
97 /* This is currently 10: beyond this we chain. */
98 #define TDB_MAX_LEVELS (1+(64-TDB_TOPLEVEL_HASH_BITS) / TDB_SUBLEVEL_HASH_BITS)
99
100 /* Extend file by least 100 times larger than needed. */
101 #define TDB_EXTENSION_FACTOR 100
102
103 /* We steal bits from the offsets to store hash info. */
104 #define TDB_OFF_HASH_GROUP_MASK ((1ULL << TDB_HASH_GROUP_BITS) - 1)
105 /* We steal this many upper bits, giving a maximum offset of 64 exabytes. */
106 #define TDB_OFF_UPPER_STEAL 8
107 #define   TDB_OFF_UPPER_STEAL_EXTRA 7
108 /* The bit number where we store extra hash bits. */
109 #define TDB_OFF_HASH_EXTRA_BIT 57
110 #define TDB_OFF_UPPER_STEAL_SUBHASH_BIT 56
111
112 /* The bit number where we store the extra hash bits. */
113 /* Convenience mask to get actual offset. */
114 #define TDB_OFF_MASK \
115         (((1ULL << (64 - TDB_OFF_UPPER_STEAL)) - 1) - TDB_OFF_HASH_GROUP_MASK)
116
117 /* How many buckets in a free list: see size_to_bucket(). */
118 #define TDB_FREE_BUCKETS (64 - TDB_OFF_UPPER_STEAL)
119
120 /* We have to be able to fit a free record here. */
121 #define TDB_MIN_DATA_LEN        \
122         (sizeof(struct tdb_free_record) - sizeof(struct tdb_used_record))
123
124 /* Indicates this entry is not on an flist (can happen during coalescing) */
125 #define TDB_FTABLE_NONE ((1ULL << TDB_OFF_UPPER_STEAL) - 1)
126
127 #if !HAVE_BSWAP_64
128 static inline uint64_t bswap_64(uint64_t x)
129 {
130         return (((x&0x000000FFULL)<<56)
131                 | ((x&0x0000FF00ULL)<<48)
132                 | ((x&0x00FF0000ULL)<<40)
133                 | ((x&0xFF000000ULL)<<32)
134                 | ((x>>8)&0xFF000000ULL)
135                 | ((x>>16)&0x00FF0000ULL)
136                 | ((x>>24)&0x0000FF00ULL)
137                 | ((x>>32)&0x000000FFULL));
138 }
139 #endif
140
141 struct tdb_used_record {
142         /* For on-disk compatibility, we avoid bitfields:
143            magic: 16,        (highest)
144            key_len_bits: 5,
145            extra_padding: 32
146            hash_bits: 11
147         */
148         uint64_t magic_and_meta;
149         /* The bottom key_len_bits*2 are key length, rest is data length. */
150         uint64_t key_and_data_len;
151 };
152
153 static inline unsigned rec_key_bits(const struct tdb_used_record *r)
154 {
155         return ((r->magic_and_meta >> 43) & ((1 << 5)-1)) * 2;
156 }
157
158 static inline uint64_t rec_key_length(const struct tdb_used_record *r)
159 {
160         return r->key_and_data_len & ((1ULL << rec_key_bits(r)) - 1);
161 }
162
163 static inline uint64_t rec_data_length(const struct tdb_used_record *r)
164 {
165         return r->key_and_data_len >> rec_key_bits(r);
166 }
167
168 static inline uint64_t rec_extra_padding(const struct tdb_used_record *r)
169 {
170         return (r->magic_and_meta >> 11) & 0xFFFFFFFF;
171 }
172
173 static inline uint32_t rec_hash(const struct tdb_used_record *r)
174 {
175         return r->magic_and_meta & ((1 << 11) - 1);
176 }
177
178 static inline uint16_t rec_magic(const struct tdb_used_record *r)
179 {
180         return (r->magic_and_meta >> 48);
181 }
182
183 struct tdb_free_record {
184         uint64_t magic_and_prev; /* TDB_OFF_UPPER_STEAL bits magic, then prev */
185         uint64_t ftable_and_len; /* Len not counting these two fields. */
186         /* This is why the minimum record size is 8 bytes.  */
187         uint64_t next;
188 };
189
190 static inline uint64_t frec_prev(const struct tdb_free_record *f)
191 {
192         return f->magic_and_prev & ((1ULL << (64 - TDB_OFF_UPPER_STEAL)) - 1);
193 }
194
195 static inline uint64_t frec_magic(const struct tdb_free_record *f)
196 {
197         return f->magic_and_prev >> (64 - TDB_OFF_UPPER_STEAL);
198 }
199
200 static inline uint64_t frec_len(const struct tdb_free_record *f)
201 {
202         return f->ftable_and_len & ((1ULL << (64 - TDB_OFF_UPPER_STEAL))-1);
203 }
204
205 static inline unsigned frec_ftable(const struct tdb_free_record *f)
206 {
207         return f->ftable_and_len >> (64 - TDB_OFF_UPPER_STEAL);
208 }
209
210 struct tdb_recovery_record {
211         uint64_t magic;
212         /* Length of record. */
213         uint64_t max_len;
214         /* Length used. */
215         uint64_t len;
216         /* Old length of file before transaction. */
217         uint64_t eof;
218 };
219
220 /* If we bottom out of the subhashes, we chain. */
221 struct tdb_chain {
222         tdb_off_t rec[1 << TDB_HASH_GROUP_BITS];
223         tdb_off_t next;
224 };
225
226 /* this is stored at the front of every database */
227 struct tdb_header {
228         char magic_food[64]; /* for /etc/magic */
229         /* FIXME: Make me 32 bit? */
230         uint64_t version; /* version of the code */
231         uint64_t hash_test; /* result of hashing HASH_MAGIC. */
232         uint64_t hash_seed; /* "random" seed written at creation time. */
233         tdb_off_t free_table; /* (First) free table. */
234         tdb_off_t recovery; /* Transaction recovery area. */
235
236         tdb_off_t reserved[26];
237
238         /* Top level hash table. */
239         tdb_off_t hashtable[1ULL << TDB_TOPLEVEL_HASH_BITS];
240 };
241
242 struct tdb_freetable {
243         struct tdb_used_record hdr;
244         tdb_off_t next;
245         tdb_off_t buckets[TDB_FREE_BUCKETS];
246 };
247
248 /* Information about a particular (locked) hash entry. */
249 struct hash_info {
250         /* Full hash value of entry. */
251         uint64_t h;
252         /* Start and length of lock acquired. */
253         tdb_off_t hlock_start;
254         tdb_len_t hlock_range;
255         /* Start of hash group. */
256         tdb_off_t group_start;
257         /* Bucket we belong in. */
258         unsigned int home_bucket;
259         /* Bucket we (or an empty space) were found in. */
260         unsigned int found_bucket;
261         /* How many bits of the hash are already used. */
262         unsigned int hash_used;
263         /* Current working group. */
264         tdb_off_t group[1 << TDB_HASH_GROUP_BITS];
265 };
266
267 struct traverse_info {
268         struct traverse_level {
269                 tdb_off_t hashtable;
270                 /* We ignore groups here, and treat it as a big array. */
271                 unsigned entry;
272                 unsigned int total_buckets;
273         } levels[TDB_MAX_LEVELS + 1];
274         unsigned int num_levels;
275         unsigned int toplevel_group;
276         /* This makes delete-everything-inside-traverse work as expected. */
277         tdb_off_t prev;
278 };
279
280 enum tdb_lock_flags {
281         /* WAIT == F_SETLKW, NOWAIT == F_SETLK */
282         TDB_LOCK_NOWAIT = 0,
283         TDB_LOCK_WAIT = 1,
284         /* If set, don't log an error on failure. */
285         TDB_LOCK_PROBE = 2,
286         /* If set, don't check for recovery (used by recovery code). */
287         TDB_LOCK_NOCHECK = 4,
288 };
289
290 struct tdb_lock_type {
291         uint32_t off;
292         uint32_t count;
293         uint32_t ltype;
294 };
295
296 /* This is only needed for tdb_access_commit, but used everywhere to
297  * simplify. */
298 struct tdb_access_hdr {
299         struct tdb_access_hdr *next;
300         tdb_off_t off;
301         tdb_len_t len;
302         bool convert;
303 };
304
305 struct tdb_context {
306         /* Filename of the database. */
307         const char *name;
308
309         /* Mmap (if any), or malloc (for TDB_INTERNAL). */
310         void *map_ptr;
311
312         /* Are we accessing directly? (debugging check). */
313         int direct_access;
314
315          /* Open file descriptor (undefined for TDB_INTERNAL). */
316         int fd;
317
318         /* How much space has been mapped (<= current file size) */
319         tdb_len_t map_size;
320
321         /* Operating read-only? (Opened O_RDONLY, or in traverse_read) */
322         bool read_only;
323
324         /* mmap read only? */
325         int mmap_flags;
326
327         /* Error code for last tdb error. */
328         enum TDB_ERROR ecode;
329
330         /* the flags passed to tdb_open, for tdb_reopen. */
331         uint32_t flags;
332
333         /* Logging function */
334         void (*logfn)(struct tdb_context *tdb,
335                       enum tdb_log_level level,
336                       void *log_private,
337                       const char *message);
338         void *log_private;
339
340         /* Hash function. */
341         uint64_t (*khash)(const void *key, size_t len, uint64_t seed, void *);
342         void *hash_priv;
343         uint64_t hash_seed;
344
345         /* Set if we are in a transaction. */
346         struct tdb_transaction *transaction;
347         
348         /* What free table are we using? */
349         tdb_off_t ftable_off;
350         unsigned int ftable;
351
352         /* IO methods: changes for transactions. */
353         const struct tdb_methods *methods;
354
355         /* Lock information */
356         struct tdb_lock_type allrecord_lock;
357         size_t num_lockrecs;
358         struct tdb_lock_type *lockrecs;
359
360         struct tdb_attribute_stats *stats;
361
362         /* Direct access information */
363         struct tdb_access_hdr *access;
364
365         /* Single list of all TDBs, to avoid multiple opens. */
366         struct tdb_context *next;
367         dev_t device;
368         ino_t inode;
369 };
370
371 struct tdb_methods {
372         int (*tread)(struct tdb_context *, tdb_off_t, void *, tdb_len_t);
373         int (*twrite)(struct tdb_context *, tdb_off_t, const void *, tdb_len_t);
374         int (*oob)(struct tdb_context *, tdb_off_t, bool);
375         int (*expand_file)(struct tdb_context *, tdb_len_t);
376         void *(*direct)(struct tdb_context *, tdb_off_t, size_t, bool);
377 };
378
379 /*
380   internal prototypes
381 */
382 /* hash.c: */
383 void tdb_hash_init(struct tdb_context *tdb);
384
385 int first_in_hash(struct tdb_context *tdb,
386                   struct traverse_info *tinfo,
387                   TDB_DATA *kbuf, size_t *dlen);
388
389 int next_in_hash(struct tdb_context *tdb,
390                  struct traverse_info *tinfo,
391                  TDB_DATA *kbuf, size_t *dlen);
392
393 /* Hash random memory. */
394 uint64_t tdb_hash(struct tdb_context *tdb, const void *ptr, size_t len);
395
396 /* Hash on disk. */
397 uint64_t hash_record(struct tdb_context *tdb, tdb_off_t off);
398
399 /* Find and lock a hash entry (or where it would be). */
400 tdb_off_t find_and_lock(struct tdb_context *tdb,
401                         struct tdb_data key,
402                         int ltype,
403                         struct hash_info *h,
404                         struct tdb_used_record *rec,
405                         struct traverse_info *tinfo);
406
407 int replace_in_hash(struct tdb_context *tdb,
408                     struct hash_info *h,
409                     tdb_off_t new_off);
410
411 int add_to_hash(struct tdb_context *tdb, struct hash_info *h,
412                 tdb_off_t new_off);
413
414 int delete_from_hash(struct tdb_context *tdb, struct hash_info *h);
415
416 /* For tdb_check */
417 bool is_subhash(tdb_off_t val);
418
419 /* free.c: */
420 int tdb_ftable_init(struct tdb_context *tdb);
421
422 /* check.c needs these to iterate through free lists. */
423 tdb_off_t first_ftable(struct tdb_context *tdb);
424 tdb_off_t next_ftable(struct tdb_context *tdb, tdb_off_t ftable);
425
426 /* This returns space or TDB_OFF_ERR. */
427 tdb_off_t alloc(struct tdb_context *tdb, size_t keylen, size_t datalen,
428                 uint64_t hash, unsigned magic, bool growing);
429
430 /* Put this record in a free list. */
431 int add_free_record(struct tdb_context *tdb,
432                     tdb_off_t off, tdb_len_t len_with_header);
433
434 /* Set up header for a used/ftable/htable/chain record. */
435 int set_header(struct tdb_context *tdb,
436                struct tdb_used_record *rec,
437                unsigned magic, uint64_t keylen, uint64_t datalen,
438                uint64_t actuallen, unsigned hashlow);
439
440 /* Used by tdb_check to verify. */
441 unsigned int size_to_bucket(tdb_len_t data_len);
442 tdb_off_t bucket_off(tdb_off_t ftable_off, unsigned bucket);
443
444 /* Used by tdb_summary */
445 size_t dead_space(struct tdb_context *tdb, tdb_off_t off);
446
447 /* io.c: */
448 /* Initialize tdb->methods. */
449 void tdb_io_init(struct tdb_context *tdb);
450
451 /* Convert endian of the buffer if required. */
452 void *tdb_convert(const struct tdb_context *tdb, void *buf, tdb_len_t size);
453
454 /* Unmap and try to map the tdb. */
455 void tdb_munmap(struct tdb_context *tdb);
456 void tdb_mmap(struct tdb_context *tdb);
457
458 /* Either alloc a copy, or give direct access.  Release frees or noop. */
459 const void *tdb_access_read(struct tdb_context *tdb,
460                             tdb_off_t off, tdb_len_t len, bool convert);
461 void *tdb_access_write(struct tdb_context *tdb,
462                        tdb_off_t off, tdb_len_t len, bool convert);
463
464 /* Release result of tdb_access_read/write. */
465 void tdb_access_release(struct tdb_context *tdb, const void *p);
466 /* Commit result of tdb_acces_write. */
467 int tdb_access_commit(struct tdb_context *tdb, void *p);
468
469 /* Convenience routine to get an offset. */
470 tdb_off_t tdb_read_off(struct tdb_context *tdb, tdb_off_t off);
471
472 /* Write an offset at an offset. */
473 int tdb_write_off(struct tdb_context *tdb, tdb_off_t off, tdb_off_t val);
474
475 /* Clear an ondisk area. */
476 int zero_out(struct tdb_context *tdb, tdb_off_t off, tdb_len_t len);
477
478 /* Return a non-zero offset between >= start < end in this array (or end). */
479 tdb_off_t tdb_find_nonzero_off(struct tdb_context *tdb,
480                                tdb_off_t base,
481                                uint64_t start,
482                                uint64_t end);
483
484 /* Return a zero offset in this array, or num. */
485 tdb_off_t tdb_find_zero_off(struct tdb_context *tdb, tdb_off_t off,
486                             uint64_t num);
487
488 /* Allocate and make a copy of some offset. */
489 void *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
490
491 /* Writes a converted copy of a record. */
492 int tdb_write_convert(struct tdb_context *tdb, tdb_off_t off,
493                       const void *rec, size_t len);
494
495 /* Reads record and converts it */
496 int tdb_read_convert(struct tdb_context *tdb, tdb_off_t off,
497                      void *rec, size_t len);
498
499 /* Adds a stat, if it's in range. */
500 void add_stat_(struct tdb_context *tdb, uint64_t *stat, size_t val);
501 #define add_stat(tdb, statname, val)                                    \
502         do {                                                            \
503                 if (unlikely((tdb)->stats))                             \
504                         add_stat_((tdb), &(tdb)->stats->statname, (val)); \
505         } while (0)
506
507 /* lock.c: */
508 void tdb_lock_init(struct tdb_context *tdb);
509
510 /* Lock/unlock a range of hashes. */
511 int tdb_lock_hashes(struct tdb_context *tdb,
512                     tdb_off_t hash_lock, tdb_len_t hash_range,
513                     int ltype, enum tdb_lock_flags waitflag);
514 int tdb_unlock_hashes(struct tdb_context *tdb,
515                       tdb_off_t hash_lock,
516                       tdb_len_t hash_range, int ltype);
517
518 /* Lock/unlock a particular free bucket. */
519 int tdb_lock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off,
520                          enum tdb_lock_flags waitflag);
521 void tdb_unlock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off);
522
523 /* Serialize transaction start. */
524 int tdb_transaction_lock(struct tdb_context *tdb, int ltype);
525 int tdb_transaction_unlock(struct tdb_context *tdb, int ltype);
526
527 /* Do we have any hash locks (ie. via tdb_chainlock) ? */
528 bool tdb_has_hash_locks(struct tdb_context *tdb);
529
530 /* Lock entire database. */
531 int tdb_allrecord_lock(struct tdb_context *tdb, int ltype,
532                        enum tdb_lock_flags flags, bool upgradable);
533 int tdb_allrecord_unlock(struct tdb_context *tdb, int ltype);
534 int tdb_allrecord_upgrade(struct tdb_context *tdb);
535
536 /* Serialize db open. */
537 int tdb_lock_open(struct tdb_context *tdb, enum tdb_lock_flags flags);
538 void tdb_unlock_open(struct tdb_context *tdb);
539 bool tdb_has_open_lock(struct tdb_context *tdb);
540
541 /* Serialize db expand. */
542 int tdb_lock_expand(struct tdb_context *tdb, int ltype);
543 void tdb_unlock_expand(struct tdb_context *tdb, int ltype);
544 bool tdb_has_expansion_lock(struct tdb_context *tdb);
545
546 /* If it needs recovery, grab all the locks and do it. */
547 int tdb_lock_and_recover(struct tdb_context *tdb);
548
549 /* transaction.c: */
550 int tdb_transaction_recover(struct tdb_context *tdb);
551 bool tdb_needs_recovery(struct tdb_context *tdb);
552
553 /* tdb.c: */
554 void COLD tdb_logerr(struct tdb_context *tdb,
555                      enum TDB_ERROR ecode,
556                      enum tdb_log_level level,
557                      const char *fmt, ...);
558
559 #ifdef TDB_TRACE
560 void tdb_trace(struct tdb_context *tdb, const char *op);
561 void tdb_trace_seqnum(struct tdb_context *tdb, uint32_t seqnum, const char *op);
562 void tdb_trace_open(struct tdb_context *tdb, const char *op,
563                     unsigned hash_size, unsigned tdb_flags, unsigned open_flags);
564 void tdb_trace_ret(struct tdb_context *tdb, const char *op, int ret);
565 void tdb_trace_retrec(struct tdb_context *tdb, const char *op, TDB_DATA ret);
566 void tdb_trace_1rec(struct tdb_context *tdb, const char *op,
567                     TDB_DATA rec);
568 void tdb_trace_1rec_ret(struct tdb_context *tdb, const char *op,
569                         TDB_DATA rec, int ret);
570 void tdb_trace_1rec_retrec(struct tdb_context *tdb, const char *op,
571                            TDB_DATA rec, TDB_DATA ret);
572 void tdb_trace_2rec_flag_ret(struct tdb_context *tdb, const char *op,
573                              TDB_DATA rec1, TDB_DATA rec2, unsigned flag,
574                              int ret);
575 void tdb_trace_2rec_retrec(struct tdb_context *tdb, const char *op,
576                            TDB_DATA rec1, TDB_DATA rec2, TDB_DATA ret);
577 #else
578 #define tdb_trace(tdb, op)
579 #define tdb_trace_seqnum(tdb, seqnum, op)
580 #define tdb_trace_open(tdb, op, hash_size, tdb_flags, open_flags)
581 #define tdb_trace_ret(tdb, op, ret)
582 #define tdb_trace_retrec(tdb, op, ret)
583 #define tdb_trace_1rec(tdb, op, rec)
584 #define tdb_trace_1rec_ret(tdb, op, rec, ret)
585 #define tdb_trace_1rec_retrec(tdb, op, rec, ret)
586 #define tdb_trace_2rec_flag_ret(tdb, op, rec1, rec2, flag, ret)
587 #define tdb_trace_2rec_retrec(tdb, op, rec1, rec2, ret)
588 #endif /* !TDB_TRACE */
589
590 #endif