]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/private.h
tdb2: Make TDB1 use the same tdb_hash() wrapper as TDB2
[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 #include <ccan/tdb2/tdb2.h>
22 #include <stdlib.h>
23 #include <stddef.h>
24 #include <sys/time.h>
25 #include <sys/mman.h>
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <errno.h>
29 #include <stdio.h>
30 #include <utime.h>
31 #include <unistd.h>
32 #include <ccan/likely/likely.h>
33 #include <ccan/endian/endian.h>
34
35 #ifndef TEST_IT
36 #define TEST_IT(cond)
37 #endif
38
39 /* #define TDB_TRACE 1 */
40
41 #ifndef __STRING
42 #define __STRING(x)    #x
43 #endif
44
45 #ifndef __STRINGSTRING
46 #define __STRINGSTRING(x) __STRING(x)
47 #endif
48
49 #ifndef __location__
50 #define __location__ __FILE__ ":" __STRINGSTRING(__LINE__)
51 #endif
52
53 typedef uint64_t tdb_len_t;
54 typedef uint64_t tdb_off_t;
55
56 #define TDB_MAGIC_FOOD "TDB file\n"
57 #define TDB_VERSION ((uint64_t)(0x26011967 + 7))
58 #define TDB_USED_MAGIC ((uint64_t)0x1999)
59 #define TDB_HTABLE_MAGIC ((uint64_t)0x1888)
60 #define TDB_CHAIN_MAGIC ((uint64_t)0x1777)
61 #define TDB_FTABLE_MAGIC ((uint64_t)0x1666)
62 #define TDB_FREE_MAGIC ((uint64_t)0xFE)
63 #define TDB_HASH_MAGIC (0xA1ABE11A01092008ULL)
64 #define TDB_RECOVERY_MAGIC (0xf53bc0e7ad124589ULL)
65 #define TDB_RECOVERY_INVALID_MAGIC (0x0ULL)
66
67 #define TDB_OFF_IS_ERR(off) unlikely(off >= (tdb_off_t)TDB_ERR_LAST)
68
69 /* Packing errors into pointers and v.v. */
70 #define TDB_PTR_IS_ERR(ptr) \
71         unlikely((unsigned long)(ptr) >= (unsigned long)TDB_ERR_LAST)
72 #define TDB_PTR_ERR(p) ((enum TDB_ERROR)(long)(p))
73 #define TDB_ERR_PTR(err) ((void *)(long)(err))
74
75 /* Common case of returning true, false or -ve error. */
76 typedef int tdb_bool_err;
77
78 /* Prevent others from opening the file. */
79 #define TDB_OPEN_LOCK 0
80 /* Expanding file. */
81 #define TDB_EXPANSION_LOCK 2
82 /* Doing a transaction. */
83 #define TDB_TRANSACTION_LOCK 8
84 /* Hash chain locks. */
85 #define TDB_HASH_LOCK_START 64
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 /* Additional features we understand.  Currently: none. */
113 #define TDB_FEATURE_MASK ((uint64_t)0)
114
115 /* The bit number where we store the extra hash bits. */
116 /* Convenience mask to get actual offset. */
117 #define TDB_OFF_MASK \
118         (((1ULL << (64 - TDB_OFF_UPPER_STEAL)) - 1) - TDB_OFF_HASH_GROUP_MASK)
119
120 /* How many buckets in a free list: see size_to_bucket(). */
121 #define TDB_FREE_BUCKETS (64 - TDB_OFF_UPPER_STEAL)
122
123 /* We have to be able to fit a free record here. */
124 #define TDB_MIN_DATA_LEN        \
125         (sizeof(struct tdb_free_record) - sizeof(struct tdb_used_record))
126
127 /* Indicates this entry is not on an flist (can happen during coalescing) */
128 #define TDB_FTABLE_NONE ((1ULL << TDB_OFF_UPPER_STEAL) - 1)
129
130 struct tdb_used_record {
131         /* For on-disk compatibility, we avoid bitfields:
132            magic: 16,        (highest)
133            key_len_bits: 5,
134            extra_padding: 32
135            hash_bits: 11
136         */
137         uint64_t magic_and_meta;
138         /* The bottom key_len_bits*2 are key length, rest is data length. */
139         uint64_t key_and_data_len;
140 };
141
142 static inline unsigned rec_key_bits(const struct tdb_used_record *r)
143 {
144         return ((r->magic_and_meta >> 43) & ((1 << 5)-1)) * 2;
145 }
146
147 static inline uint64_t rec_key_length(const struct tdb_used_record *r)
148 {
149         return r->key_and_data_len & ((1ULL << rec_key_bits(r)) - 1);
150 }
151
152 static inline uint64_t rec_data_length(const struct tdb_used_record *r)
153 {
154         return r->key_and_data_len >> rec_key_bits(r);
155 }
156
157 static inline uint64_t rec_extra_padding(const struct tdb_used_record *r)
158 {
159         return (r->magic_and_meta >> 11) & 0xFFFFFFFF;
160 }
161
162 static inline uint32_t rec_hash(const struct tdb_used_record *r)
163 {
164         return r->magic_and_meta & ((1 << 11) - 1);
165 }
166
167 static inline uint16_t rec_magic(const struct tdb_used_record *r)
168 {
169         return (r->magic_and_meta >> 48);
170 }
171
172 struct tdb_free_record {
173         uint64_t magic_and_prev; /* TDB_OFF_UPPER_STEAL bits magic, then prev */
174         uint64_t ftable_and_len; /* Len not counting these two fields. */
175         /* This is why the minimum record size is 8 bytes.  */
176         uint64_t next;
177 };
178
179 static inline uint64_t frec_prev(const struct tdb_free_record *f)
180 {
181         return f->magic_and_prev & ((1ULL << (64 - TDB_OFF_UPPER_STEAL)) - 1);
182 }
183
184 static inline uint64_t frec_magic(const struct tdb_free_record *f)
185 {
186         return f->magic_and_prev >> (64 - TDB_OFF_UPPER_STEAL);
187 }
188
189 static inline uint64_t frec_len(const struct tdb_free_record *f)
190 {
191         return f->ftable_and_len & ((1ULL << (64 - TDB_OFF_UPPER_STEAL))-1);
192 }
193
194 static inline unsigned frec_ftable(const struct tdb_free_record *f)
195 {
196         return f->ftable_and_len >> (64 - TDB_OFF_UPPER_STEAL);
197 }
198
199 struct tdb_recovery_record {
200         uint64_t magic;
201         /* Length of record (add this header to get total length). */
202         uint64_t max_len;
203         /* Length used. */
204         uint64_t len;
205         /* Old length of file before transaction. */
206         uint64_t eof;
207 };
208
209 /* If we bottom out of the subhashes, we chain. */
210 struct tdb_chain {
211         tdb_off_t rec[1 << TDB_HASH_GROUP_BITS];
212         tdb_off_t next;
213 };
214
215 /* this is stored at the front of every database */
216 struct tdb_header {
217         char magic_food[64]; /* for /etc/magic */
218         /* FIXME: Make me 32 bit? */
219         uint64_t version; /* version of the code */
220         uint64_t hash_test; /* result of hashing HASH_MAGIC. */
221         uint64_t hash_seed; /* "random" seed written at creation time. */
222         tdb_off_t free_table; /* (First) free table. */
223         tdb_off_t recovery; /* Transaction recovery area. */
224
225         uint64_t features_used; /* Features all writers understand */
226         uint64_t features_offered; /* Features offered */
227
228         uint64_t seqnum; /* Sequence number for TDB_SEQNUM */
229
230         tdb_off_t reserved[23];
231
232         /* Top level hash table. */
233         tdb_off_t hashtable[1ULL << TDB_TOPLEVEL_HASH_BITS];
234 };
235
236 struct tdb_freetable {
237         struct tdb_used_record hdr;
238         tdb_off_t next;
239         tdb_off_t buckets[TDB_FREE_BUCKETS];
240 };
241
242 /* Information about a particular (locked) hash entry. */
243 struct hash_info {
244         /* Full hash value of entry. */
245         uint64_t h;
246         /* Start and length of lock acquired. */
247         tdb_off_t hlock_start;
248         tdb_len_t hlock_range;
249         /* Start of hash group. */
250         tdb_off_t group_start;
251         /* Bucket we belong in. */
252         unsigned int home_bucket;
253         /* Bucket we (or an empty space) were found in. */
254         unsigned int found_bucket;
255         /* How many bits of the hash are already used. */
256         unsigned int hash_used;
257         /* Current working group. */
258         tdb_off_t group[1 << TDB_HASH_GROUP_BITS];
259 };
260
261 struct traverse_info {
262         struct traverse_level {
263                 tdb_off_t hashtable;
264                 /* We ignore groups here, and treat it as a big array. */
265                 unsigned entry;
266                 unsigned int total_buckets;
267         } levels[TDB_MAX_LEVELS + 1];
268         unsigned int num_levels;
269         unsigned int toplevel_group;
270         /* This makes delete-everything-inside-traverse work as expected. */
271         tdb_off_t prev;
272 };
273
274 enum tdb_lock_flags {
275         /* WAIT == F_SETLKW, NOWAIT == F_SETLK */
276         TDB_LOCK_NOWAIT = 0,
277         TDB_LOCK_WAIT = 1,
278         /* If set, don't log an error on failure. */
279         TDB_LOCK_PROBE = 2,
280         /* If set, don't check for recovery (used by recovery code). */
281         TDB_LOCK_NOCHECK = 4,
282 };
283
284 struct tdb_lock {
285         struct tdb_context *owner;
286         off_t off;
287         uint32_t count;
288         uint32_t ltype;
289 };
290
291 /* This is only needed for tdb_access_commit, but used everywhere to
292  * simplify. */
293 struct tdb_access_hdr {
294         struct tdb_access_hdr *next;
295         tdb_off_t off;
296         tdb_len_t len;
297         bool convert;
298 };
299
300 struct tdb_file {
301         /* How many are sharing us? */
302         unsigned int refcnt;
303
304         /* Mmap (if any), or malloc (for TDB_INTERNAL). */
305         void *map_ptr;
306
307         /* How much space has been mapped (<= current file size) */
308         tdb_len_t map_size;
309
310         /* The file descriptor (-1 for TDB_INTERNAL). */
311         int fd;
312
313         /* Lock information */
314         pid_t locker;
315         struct tdb_lock allrecord_lock;
316         size_t num_lockrecs;
317         struct tdb_lock *lockrecs;
318
319         /* Identity of this file. */
320         dev_t device;
321         ino_t inode;
322 };
323
324 struct tdb_context {
325         /* Single list of all TDBs, to detect multiple opens. */
326         struct tdb_context *next;
327
328         /* Filename of the database. */
329         const char *name;
330
331         /* Logging function */
332         void (*log_fn)(struct tdb_context *tdb,
333                        enum tdb_log_level level,
334                        enum TDB_ERROR ecode,
335                        const char *message,
336                        void *data);
337         void *log_data;
338
339         /* Last error we returned. */
340         enum TDB_ERROR last_error;
341
342         /* The actual file information */
343         struct tdb_file *file;
344
345         /* Open flags passed to tdb_open. */
346         int open_flags;
347
348         /* low level (fnctl) lock functions. */
349         int (*lock_fn)(int fd, int rw, off_t off, off_t len, bool w, void *);
350         int (*unlock_fn)(int fd, int rw, off_t off, off_t len, void *);
351         void *lock_data;
352
353         /* the flags passed to tdb_open. */
354         uint32_t flags;
355
356         /* Our statistics. */
357         struct tdb_attribute_stats stats;
358
359         /* Hash function. */
360         uint64_t (*hash_fn)(const void *key, size_t len, uint64_t seed, void *);
361         void *hash_data;
362         uint64_t hash_seed;
363
364         /* Are we accessing directly? (debugging check). */
365         int direct_access;
366
367         /* Set if we are in a transaction. */
368         struct tdb_transaction *transaction;
369         
370         /* What free table are we using? */
371         tdb_off_t ftable_off;
372         unsigned int ftable;
373
374         /* Our open hook, if any. */
375         enum TDB_ERROR (*openhook)(int fd, void *data);
376         void *openhook_data;
377
378         /* IO methods: changes for transactions. */
379         const struct tdb_methods *methods;
380
381         /* Direct access information */
382         struct tdb_access_hdr *access;
383
384 };
385
386 struct tdb_methods {
387         enum TDB_ERROR (*tread)(struct tdb_context *, tdb_off_t, void *,
388                                 tdb_len_t);
389         enum TDB_ERROR (*twrite)(struct tdb_context *, tdb_off_t, const void *,
390                                  tdb_len_t);
391         enum TDB_ERROR (*oob)(struct tdb_context *, tdb_off_t, bool);
392         enum TDB_ERROR (*expand_file)(struct tdb_context *, tdb_len_t);
393         void *(*direct)(struct tdb_context *, tdb_off_t, size_t, bool);
394 };
395
396 /*
397   internal prototypes
398 */
399 /* hash.c: */
400 tdb_bool_err first_in_hash(struct tdb_context *tdb,
401                            struct traverse_info *tinfo,
402                            TDB_DATA *kbuf, size_t *dlen);
403
404 tdb_bool_err next_in_hash(struct tdb_context *tdb,
405                           struct traverse_info *tinfo,
406                           TDB_DATA *kbuf, size_t *dlen);
407
408 /* Hash random memory. */
409 uint64_t tdb_hash(struct tdb_context *tdb, const void *ptr, size_t len);
410
411 /* Hash on disk. */
412 uint64_t hash_record(struct tdb_context *tdb, tdb_off_t off);
413
414 /* Find and lock a hash entry (or where it would be). */
415 tdb_off_t find_and_lock(struct tdb_context *tdb,
416                         struct tdb_data key,
417                         int ltype,
418                         struct hash_info *h,
419                         struct tdb_used_record *rec,
420                         struct traverse_info *tinfo);
421
422 enum TDB_ERROR replace_in_hash(struct tdb_context *tdb,
423                                struct hash_info *h,
424                                tdb_off_t new_off);
425
426 enum TDB_ERROR add_to_hash(struct tdb_context *tdb, struct hash_info *h,
427                            tdb_off_t new_off);
428
429 enum TDB_ERROR delete_from_hash(struct tdb_context *tdb, struct hash_info *h);
430
431 /* For tdb_check */
432 bool is_subhash(tdb_off_t val);
433
434 /* free.c: */
435 enum TDB_ERROR tdb_ftable_init(struct tdb_context *tdb);
436
437 /* check.c needs these to iterate through free lists. */
438 tdb_off_t first_ftable(struct tdb_context *tdb);
439 tdb_off_t next_ftable(struct tdb_context *tdb, tdb_off_t ftable);
440
441 /* This returns space or -ve error number. */
442 tdb_off_t alloc(struct tdb_context *tdb, size_t keylen, size_t datalen,
443                 uint64_t hash, unsigned magic, bool growing);
444
445 /* Put this record in a free list. */
446 enum TDB_ERROR add_free_record(struct tdb_context *tdb,
447                                tdb_off_t off, tdb_len_t len_with_header,
448                                enum tdb_lock_flags waitflag,
449                                bool coalesce_ok);
450
451 /* Set up header for a used/ftable/htable/chain record. */
452 enum TDB_ERROR set_header(struct tdb_context *tdb,
453                           struct tdb_used_record *rec,
454                           unsigned magic, uint64_t keylen, uint64_t datalen,
455                           uint64_t actuallen, unsigned hashlow);
456
457 /* Used by tdb_check to verify. */
458 unsigned int size_to_bucket(tdb_len_t data_len);
459 tdb_off_t bucket_off(tdb_off_t ftable_off, unsigned bucket);
460
461 /* Used by tdb_summary */
462 tdb_off_t dead_space(struct tdb_context *tdb, tdb_off_t off);
463
464 /* io.c: */
465 /* Initialize tdb->methods. */
466 void tdb_io_init(struct tdb_context *tdb);
467
468 /* Convert endian of the buffer if required. */
469 void *tdb_convert(const struct tdb_context *tdb, void *buf, tdb_len_t size);
470
471 /* Unmap and try to map the tdb. */
472 void tdb_munmap(struct tdb_file *file);
473 void tdb_mmap(struct tdb_context *tdb);
474
475 /* Either alloc a copy, or give direct access.  Release frees or noop. */
476 const void *tdb_access_read(struct tdb_context *tdb,
477                             tdb_off_t off, tdb_len_t len, bool convert);
478 void *tdb_access_write(struct tdb_context *tdb,
479                        tdb_off_t off, tdb_len_t len, bool convert);
480
481 /* Release result of tdb_access_read/write. */
482 void tdb_access_release(struct tdb_context *tdb, const void *p);
483 /* Commit result of tdb_acces_write. */
484 enum TDB_ERROR tdb_access_commit(struct tdb_context *tdb, void *p);
485
486 /* Convenience routine to get an offset. */
487 tdb_off_t tdb_read_off(struct tdb_context *tdb, tdb_off_t off);
488
489 /* Write an offset at an offset. */
490 enum TDB_ERROR tdb_write_off(struct tdb_context *tdb, tdb_off_t off,
491                              tdb_off_t val);
492
493 /* Clear an ondisk area. */
494 enum TDB_ERROR zero_out(struct tdb_context *tdb, tdb_off_t off, tdb_len_t len);
495
496 /* Return a non-zero offset between >= start < end in this array (or end). */
497 tdb_off_t tdb_find_nonzero_off(struct tdb_context *tdb,
498                                tdb_off_t base,
499                                uint64_t start,
500                                uint64_t end);
501
502 /* Return a zero offset in this array, or num. */
503 tdb_off_t tdb_find_zero_off(struct tdb_context *tdb, tdb_off_t off,
504                             uint64_t num);
505
506 /* Allocate and make a copy of some offset. */
507 void *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
508
509 /* Writes a converted copy of a record. */
510 enum TDB_ERROR tdb_write_convert(struct tdb_context *tdb, tdb_off_t off,
511                                  const void *rec, size_t len);
512
513 /* Reads record and converts it */
514 enum TDB_ERROR tdb_read_convert(struct tdb_context *tdb, tdb_off_t off,
515                                 void *rec, size_t len);
516
517 /* Bump the seqnum (caller checks for tdb->flags & TDB_SEQNUM) */
518 void tdb_inc_seqnum(struct tdb_context *tdb);
519
520 /* lock.c: */
521 /* Lock/unlock a range of hashes. */
522 enum TDB_ERROR tdb_lock_hashes(struct tdb_context *tdb,
523                                tdb_off_t hash_lock, tdb_len_t hash_range,
524                                int ltype, enum tdb_lock_flags waitflag);
525 enum TDB_ERROR tdb_unlock_hashes(struct tdb_context *tdb,
526                                  tdb_off_t hash_lock,
527                                  tdb_len_t hash_range, int ltype);
528
529 /* For closing the file. */
530 void tdb_lock_cleanup(struct tdb_context *tdb);
531
532 /* Lock/unlock a particular free bucket. */
533 enum TDB_ERROR tdb_lock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off,
534                                     enum tdb_lock_flags waitflag);
535 void tdb_unlock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off);
536
537 /* Serialize transaction start. */
538 enum TDB_ERROR tdb_transaction_lock(struct tdb_context *tdb, int ltype);
539 void tdb_transaction_unlock(struct tdb_context *tdb, int ltype);
540
541 /* Do we have any hash locks (ie. via tdb_chainlock) ? */
542 bool tdb_has_hash_locks(struct tdb_context *tdb);
543
544 /* Lock entire database. */
545 enum TDB_ERROR tdb_allrecord_lock(struct tdb_context *tdb, int ltype,
546                                   enum tdb_lock_flags flags, bool upgradable);
547 void tdb_allrecord_unlock(struct tdb_context *tdb, int ltype);
548 enum TDB_ERROR tdb_allrecord_upgrade(struct tdb_context *tdb, off_t start);
549
550 /* Serialize db open. */
551 enum TDB_ERROR tdb_lock_open(struct tdb_context *tdb,
552                              int ltype, enum tdb_lock_flags flags);
553 void tdb_unlock_open(struct tdb_context *tdb, int ltype);
554 bool tdb_has_open_lock(struct tdb_context *tdb);
555
556 /* Serialize db expand. */
557 enum TDB_ERROR tdb_lock_expand(struct tdb_context *tdb, int ltype);
558 void tdb_unlock_expand(struct tdb_context *tdb, int ltype);
559 bool tdb_has_expansion_lock(struct tdb_context *tdb);
560
561 /* If it needs recovery, grab all the locks and do it. */
562 enum TDB_ERROR tdb_lock_and_recover(struct tdb_context *tdb);
563
564 /* Byte-range lock wrappers for TDB1 to access. */
565 enum TDB_ERROR tdb_brlock(struct tdb_context *tdb,
566                           int rw_type, tdb_off_t offset, tdb_off_t len,
567                           enum tdb_lock_flags flags);
568
569 enum TDB_ERROR tdb_brunlock(struct tdb_context *tdb,
570                             int rw_type, tdb_off_t offset, size_t len);
571
572 enum TDB_ERROR tdb_nest_lock(struct tdb_context *tdb,
573                              tdb_off_t offset, int ltype,
574                              enum tdb_lock_flags flags);
575
576 enum TDB_ERROR tdb_nest_unlock(struct tdb_context *tdb,
577                                tdb_off_t off, int ltype);
578
579 enum TDB_ERROR tdb_lock_gradual(struct tdb_context *tdb,
580                                 int ltype, enum tdb_lock_flags flags,
581                                 tdb_off_t off, tdb_off_t len);
582
583 /* Default lock and unlock functions. */
584 int tdb_fcntl_lock(int fd, int rw, off_t off, off_t len, bool waitflag, void *);
585 int tdb_fcntl_unlock(int fd, int rw, off_t off, off_t len, void *);
586
587 /* transaction.c: */
588 enum TDB_ERROR tdb_transaction_recover(struct tdb_context *tdb);
589 tdb_bool_err tdb_needs_recovery(struct tdb_context *tdb);
590
591 /* tdb.c: */
592 enum TDB_ERROR COLD tdb_logerr(struct tdb_context *tdb,
593                                enum TDB_ERROR ecode,
594                                enum tdb_log_level level,
595                                const char *fmt, ...);
596
597 #ifdef TDB_TRACE
598 void tdb_trace(struct tdb_context *tdb, const char *op);
599 void tdb_trace_seqnum(struct tdb_context *tdb, uint32_t seqnum, const char *op);
600 void tdb_trace_open(struct tdb_context *tdb, const char *op,
601                     unsigned hash_size, unsigned tdb_flags, unsigned open_flags);
602 void tdb_trace_ret(struct tdb_context *tdb, const char *op, int ret);
603 void tdb_trace_retrec(struct tdb_context *tdb, const char *op, TDB_DATA ret);
604 void tdb_trace_1rec(struct tdb_context *tdb, const char *op,
605                     TDB_DATA rec);
606 void tdb_trace_1rec_ret(struct tdb_context *tdb, const char *op,
607                         TDB_DATA rec, int ret);
608 void tdb_trace_1rec_retrec(struct tdb_context *tdb, const char *op,
609                            TDB_DATA rec, TDB_DATA ret);
610 void tdb_trace_2rec_flag_ret(struct tdb_context *tdb, const char *op,
611                              TDB_DATA rec1, TDB_DATA rec2, unsigned flag,
612                              int ret);
613 void tdb_trace_2rec_retrec(struct tdb_context *tdb, const char *op,
614                            TDB_DATA rec1, TDB_DATA rec2, TDB_DATA ret);
615 #else
616 #define tdb_trace(tdb, op)
617 #define tdb_trace_seqnum(tdb, seqnum, op)
618 #define tdb_trace_open(tdb, op, hash_size, tdb_flags, open_flags)
619 #define tdb_trace_ret(tdb, op, ret)
620 #define tdb_trace_retrec(tdb, op, ret)
621 #define tdb_trace_1rec(tdb, op, rec)
622 #define tdb_trace_1rec_ret(tdb, op, rec, ret)
623 #define tdb_trace_1rec_retrec(tdb, op, rec, ret)
624 #define tdb_trace_2rec_flag_ret(tdb, op, rec1, rec2, flag, ret)
625 #define tdb_trace_2rec_retrec(tdb, op, rec1, rec2, ret)
626 #endif /* !TDB_TRACE */
627
628 #endif