]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/private.h
tdb2: save openhook, allow tdb_get_attribute() on it.
[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         /* Single list of all TDBs, to detect multiple opens. */
302         struct tdb_file *next;
303
304         /* How many are sharing us? */
305         unsigned int refcnt;
306
307         /* Mmap (if any), or malloc (for TDB_INTERNAL). */
308         void *map_ptr;
309
310         /* How much space has been mapped (<= current file size) */
311         tdb_len_t map_size;
312
313         /* The file descriptor (-1 for TDB_INTERNAL). */
314         int fd;
315
316         /* Lock information */
317         pid_t locker;
318         struct tdb_lock allrecord_lock;
319         size_t num_lockrecs;
320         struct tdb_lock *lockrecs;
321
322         /* Identity of this file. */
323         dev_t device;
324         ino_t inode;
325 };
326
327 struct tdb_context {
328         /* Filename of the database. */
329         const char *name;
330
331         /* Are we accessing directly? (debugging check). */
332         int direct_access;
333
334         /* Open flags passed to tdb_open. */
335         int open_flags;
336
337         /* the flags passed to tdb_open, for tdb_reopen. */
338         uint32_t flags;
339
340         /* Logging function */
341         void (*log_fn)(struct tdb_context *tdb,
342                        enum tdb_log_level level,
343                        enum TDB_ERROR ecode,
344                        const char *message,
345                        void *data);
346         void *log_data;
347
348         /* Hash function. */
349         uint64_t (*hash_fn)(const void *key, size_t len, uint64_t seed, void *);
350         void *hash_data;
351         uint64_t hash_seed;
352
353         /* low level (fnctl) lock functions. */
354         int (*lock_fn)(int fd, int rw, off_t off, off_t len, bool w, void *);
355         int (*unlock_fn)(int fd, int rw, off_t off, off_t len, void *);
356         void *lock_data;
357
358         /* Set if we are in a transaction. */
359         struct tdb_transaction *transaction;
360         
361         /* What free table are we using? */
362         tdb_off_t ftable_off;
363         unsigned int ftable;
364
365         /* Our open hook, if any. */
366         enum TDB_ERROR (*openhook)(int fd, void *data);
367         void *openhook_data;
368
369         /* IO methods: changes for transactions. */
370         const struct tdb_methods *methods;
371
372         /* Our statistics. */
373         struct tdb_attribute_stats stats;
374
375         /* Direct access information */
376         struct tdb_access_hdr *access;
377
378         /* Last error we returned. */
379         enum TDB_ERROR last_error;
380
381         /* The actual file information */
382         struct tdb_file *file;
383 };
384
385 struct tdb_methods {
386         enum TDB_ERROR (*tread)(struct tdb_context *, tdb_off_t, void *,
387                                 tdb_len_t);
388         enum TDB_ERROR (*twrite)(struct tdb_context *, tdb_off_t, const void *,
389                                  tdb_len_t);
390         enum TDB_ERROR (*oob)(struct tdb_context *, tdb_off_t, bool);
391         enum TDB_ERROR (*expand_file)(struct tdb_context *, tdb_len_t);
392         void *(*direct)(struct tdb_context *, tdb_off_t, size_t, bool);
393 };
394
395 /*
396   internal prototypes
397 */
398 /* hash.c: */
399 tdb_bool_err first_in_hash(struct tdb_context *tdb,
400                            struct traverse_info *tinfo,
401                            TDB_DATA *kbuf, size_t *dlen);
402
403 tdb_bool_err next_in_hash(struct tdb_context *tdb,
404                           struct traverse_info *tinfo,
405                           TDB_DATA *kbuf, size_t *dlen);
406
407 /* Hash random memory. */
408 uint64_t tdb_hash(struct tdb_context *tdb, const void *ptr, size_t len);
409
410 /* Hash on disk. */
411 uint64_t hash_record(struct tdb_context *tdb, tdb_off_t off);
412
413 /* Find and lock a hash entry (or where it would be). */
414 tdb_off_t find_and_lock(struct tdb_context *tdb,
415                         struct tdb_data key,
416                         int ltype,
417                         struct hash_info *h,
418                         struct tdb_used_record *rec,
419                         struct traverse_info *tinfo);
420
421 enum TDB_ERROR replace_in_hash(struct tdb_context *tdb,
422                                struct hash_info *h,
423                                tdb_off_t new_off);
424
425 enum TDB_ERROR add_to_hash(struct tdb_context *tdb, struct hash_info *h,
426                            tdb_off_t new_off);
427
428 enum TDB_ERROR delete_from_hash(struct tdb_context *tdb, struct hash_info *h);
429
430 /* For tdb_check */
431 bool is_subhash(tdb_off_t val);
432
433 /* free.c: */
434 enum TDB_ERROR tdb_ftable_init(struct tdb_context *tdb);
435
436 /* check.c needs these to iterate through free lists. */
437 tdb_off_t first_ftable(struct tdb_context *tdb);
438 tdb_off_t next_ftable(struct tdb_context *tdb, tdb_off_t ftable);
439
440 /* This returns space or -ve error number. */
441 tdb_off_t alloc(struct tdb_context *tdb, size_t keylen, size_t datalen,
442                 uint64_t hash, unsigned magic, bool growing);
443
444 /* Put this record in a free list. */
445 enum TDB_ERROR add_free_record(struct tdb_context *tdb,
446                                tdb_off_t off, tdb_len_t len_with_header,
447                                enum tdb_lock_flags waitflag,
448                                bool coalesce_ok);
449
450 /* Set up header for a used/ftable/htable/chain record. */
451 enum TDB_ERROR set_header(struct tdb_context *tdb,
452                           struct tdb_used_record *rec,
453                           unsigned magic, uint64_t keylen, uint64_t datalen,
454                           uint64_t actuallen, unsigned hashlow);
455
456 /* Used by tdb_check to verify. */
457 unsigned int size_to_bucket(tdb_len_t data_len);
458 tdb_off_t bucket_off(tdb_off_t ftable_off, unsigned bucket);
459
460 /* Used by tdb_summary */
461 tdb_off_t dead_space(struct tdb_context *tdb, tdb_off_t off);
462
463 /* io.c: */
464 /* Initialize tdb->methods. */
465 void tdb_io_init(struct tdb_context *tdb);
466
467 /* Convert endian of the buffer if required. */
468 void *tdb_convert(const struct tdb_context *tdb, void *buf, tdb_len_t size);
469
470 /* Unmap and try to map the tdb. */
471 void tdb_munmap(struct tdb_file *file);
472 void tdb_mmap(struct tdb_context *tdb);
473
474 /* Either alloc a copy, or give direct access.  Release frees or noop. */
475 const void *tdb_access_read(struct tdb_context *tdb,
476                             tdb_off_t off, tdb_len_t len, bool convert);
477 void *tdb_access_write(struct tdb_context *tdb,
478                        tdb_off_t off, tdb_len_t len, bool convert);
479
480 /* Release result of tdb_access_read/write. */
481 void tdb_access_release(struct tdb_context *tdb, const void *p);
482 /* Commit result of tdb_acces_write. */
483 enum TDB_ERROR tdb_access_commit(struct tdb_context *tdb, void *p);
484
485 /* Convenience routine to get an offset. */
486 tdb_off_t tdb_read_off(struct tdb_context *tdb, tdb_off_t off);
487
488 /* Write an offset at an offset. */
489 enum TDB_ERROR tdb_write_off(struct tdb_context *tdb, tdb_off_t off,
490                              tdb_off_t val);
491
492 /* Clear an ondisk area. */
493 enum TDB_ERROR zero_out(struct tdb_context *tdb, tdb_off_t off, tdb_len_t len);
494
495 /* Return a non-zero offset between >= start < end in this array (or end). */
496 tdb_off_t tdb_find_nonzero_off(struct tdb_context *tdb,
497                                tdb_off_t base,
498                                uint64_t start,
499                                uint64_t end);
500
501 /* Return a zero offset in this array, or num. */
502 tdb_off_t tdb_find_zero_off(struct tdb_context *tdb, tdb_off_t off,
503                             uint64_t num);
504
505 /* Allocate and make a copy of some offset. */
506 void *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
507
508 /* Writes a converted copy of a record. */
509 enum TDB_ERROR tdb_write_convert(struct tdb_context *tdb, tdb_off_t off,
510                                  const void *rec, size_t len);
511
512 /* Reads record and converts it */
513 enum TDB_ERROR tdb_read_convert(struct tdb_context *tdb, tdb_off_t off,
514                                 void *rec, size_t len);
515
516 /* Bump the seqnum (caller checks for tdb->flags & TDB_SEQNUM) */
517 void tdb_inc_seqnum(struct tdb_context *tdb);
518
519 /* lock.c: */
520 /* Lock/unlock a range of hashes. */
521 enum TDB_ERROR tdb_lock_hashes(struct tdb_context *tdb,
522                                tdb_off_t hash_lock, tdb_len_t hash_range,
523                                int ltype, enum tdb_lock_flags waitflag);
524 enum TDB_ERROR tdb_unlock_hashes(struct tdb_context *tdb,
525                                  tdb_off_t hash_lock,
526                                  tdb_len_t hash_range, int ltype);
527
528 /* For closing the file. */
529 void tdb_lock_cleanup(struct tdb_context *tdb);
530
531 /* Lock/unlock a particular free bucket. */
532 enum TDB_ERROR tdb_lock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off,
533                                     enum tdb_lock_flags waitflag);
534 void tdb_unlock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off);
535
536 /* Serialize transaction start. */
537 enum TDB_ERROR tdb_transaction_lock(struct tdb_context *tdb, int ltype);
538 void tdb_transaction_unlock(struct tdb_context *tdb, int ltype);
539
540 /* Do we have any hash locks (ie. via tdb_chainlock) ? */
541 bool tdb_has_hash_locks(struct tdb_context *tdb);
542
543 /* Lock entire database. */
544 enum TDB_ERROR tdb_allrecord_lock(struct tdb_context *tdb, int ltype,
545                                   enum tdb_lock_flags flags, bool upgradable);
546 void tdb_allrecord_unlock(struct tdb_context *tdb, int ltype);
547 enum TDB_ERROR tdb_allrecord_upgrade(struct tdb_context *tdb);
548
549 /* Serialize db open. */
550 enum TDB_ERROR tdb_lock_open(struct tdb_context *tdb,
551                              int ltype, enum tdb_lock_flags flags);
552 void tdb_unlock_open(struct tdb_context *tdb, int ltype);
553 bool tdb_has_open_lock(struct tdb_context *tdb);
554
555 /* Serialize db expand. */
556 enum TDB_ERROR tdb_lock_expand(struct tdb_context *tdb, int ltype);
557 void tdb_unlock_expand(struct tdb_context *tdb, int ltype);
558 bool tdb_has_expansion_lock(struct tdb_context *tdb);
559
560 /* If it needs recovery, grab all the locks and do it. */
561 enum TDB_ERROR tdb_lock_and_recover(struct tdb_context *tdb);
562
563 /* Default lock and unlock functions. */
564 int tdb_fcntl_lock(int fd, int rw, off_t off, off_t len, bool waitflag, void *);
565 int tdb_fcntl_unlock(int fd, int rw, off_t off, off_t len, void *);
566
567 /* transaction.c: */
568 enum TDB_ERROR tdb_transaction_recover(struct tdb_context *tdb);
569 tdb_bool_err tdb_needs_recovery(struct tdb_context *tdb);
570
571 /* tdb.c: */
572 enum TDB_ERROR COLD tdb_logerr(struct tdb_context *tdb,
573                                enum TDB_ERROR ecode,
574                                enum tdb_log_level level,
575                                const char *fmt, ...);
576
577 #ifdef TDB_TRACE
578 void tdb_trace(struct tdb_context *tdb, const char *op);
579 void tdb_trace_seqnum(struct tdb_context *tdb, uint32_t seqnum, const char *op);
580 void tdb_trace_open(struct tdb_context *tdb, const char *op,
581                     unsigned hash_size, unsigned tdb_flags, unsigned open_flags);
582 void tdb_trace_ret(struct tdb_context *tdb, const char *op, int ret);
583 void tdb_trace_retrec(struct tdb_context *tdb, const char *op, TDB_DATA ret);
584 void tdb_trace_1rec(struct tdb_context *tdb, const char *op,
585                     TDB_DATA rec);
586 void tdb_trace_1rec_ret(struct tdb_context *tdb, const char *op,
587                         TDB_DATA rec, int ret);
588 void tdb_trace_1rec_retrec(struct tdb_context *tdb, const char *op,
589                            TDB_DATA rec, TDB_DATA ret);
590 void tdb_trace_2rec_flag_ret(struct tdb_context *tdb, const char *op,
591                              TDB_DATA rec1, TDB_DATA rec2, unsigned flag,
592                              int ret);
593 void tdb_trace_2rec_retrec(struct tdb_context *tdb, const char *op,
594                            TDB_DATA rec1, TDB_DATA rec2, TDB_DATA ret);
595 #else
596 #define tdb_trace(tdb, op)
597 #define tdb_trace_seqnum(tdb, seqnum, op)
598 #define tdb_trace_open(tdb, op, hash_size, tdb_flags, open_flags)
599 #define tdb_trace_ret(tdb, op, ret)
600 #define tdb_trace_retrec(tdb, op, ret)
601 #define tdb_trace_1rec(tdb, op, rec)
602 #define tdb_trace_1rec_ret(tdb, op, rec, ret)
603 #define tdb_trace_1rec_retrec(tdb, op, rec, ret)
604 #define tdb_trace_2rec_flag_ret(tdb, op, rec1, rec2, flag, ret)
605 #define tdb_trace_2rec_retrec(tdb, op, rec1, rec2, ret)
606 #endif /* !TDB_TRACE */
607
608 #endif