]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/private.h
5e71bc2da46e1af4ec97c37489e1142cb62f9fe8
[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 #ifdef HAVE_BYTESWAP_H
40 #include <byteswap.h>
41 #endif
42
43 #ifndef TEST_IT
44 #define TEST_IT(cond)
45 #endif
46
47 /* #define TDB_TRACE 1 */
48
49 #ifndef __STRING
50 #define __STRING(x)    #x
51 #endif
52
53 #ifndef __STRINGSTRING
54 #define __STRINGSTRING(x) __STRING(x)
55 #endif
56
57 #ifndef __location__
58 #define __location__ __FILE__ ":" __STRINGSTRING(__LINE__)
59 #endif
60
61 typedef uint64_t tdb_len_t;
62 typedef uint64_t tdb_off_t;
63
64 #define TDB_MAGIC_FOOD "TDB file\n"
65 #define TDB_VERSION ((uint64_t)(0x26011967 + 7))
66 #define TDB_MAGIC ((uint64_t)0x1999)
67 #define TDB_FREE_MAGIC ((~(uint64_t)TDB_MAGIC) << 6)
68 #define TDB_COALESCING_MAGIC (0xBAD1DEA2FEEDULL << 6)
69 #define TDB_HASH_MAGIC (0xA1ABE11A01092008ULL)
70 #define TDB_RECOVERY_MAGIC (0xf53bc0e7U)
71 #define TDB_RECOVERY_INVALID_MAGIC (0x0)
72
73 #define TDB_OFF_ERR ((tdb_off_t)-1)
74
75 /* Prevent others from opening the file. */
76 #define TDB_OPEN_LOCK 0
77 /* Doing a transaction. */
78 #define TDB_TRANSACTION_LOCK 1
79 /* Expanding file. */
80 #define TDB_EXPANSION_LOCK 2
81 /* Hash chain locks. */
82 #define TDB_HASH_LOCK_START 3
83
84 /* Range for hash locks. */
85 #define TDB_HASH_LOCK_RANGE_BITS 30
86 #define TDB_HASH_LOCK_RANGE (1 << TDB_HASH_LOCK_RANGE_BITS)
87
88 /* We have 1024 entries in the top level. */
89 #define TDB_TOPLEVEL_HASH_BITS 10
90 /* And 64 entries in each sub-level: thus 64 bits exactly after 9 levels. */
91 #define TDB_SUBLEVEL_HASH_BITS 6
92 /* And 8 entries in each group, ie 8 groups per sublevel. */
93 #define TDB_HASH_GROUP_BITS 3
94
95 /* We start with a 64k-sized zone. */
96 #define INITIAL_ZONE_BITS 16
97 /* Try to create zones at least 32 times larger than allocations. */
98 #define TDB_COMFORT_FACTOR_BITS 5
99
100 /* We steal bits from the offsets to store hash info. */
101 #define TDB_OFF_HASH_GROUP_MASK ((1ULL << TDB_HASH_GROUP_BITS) - 1)
102 /* We steal this many upper bits, giving a maximum offset of 64 exabytes. */
103 #define TDB_OFF_UPPER_STEAL 8
104 #define   TDB_OFF_UPPER_STEAL_EXTRA 7
105 #define   TDB_OFF_UPPER_STEAL_TRUNCBIT 1
106 /* If this is set, hash is truncated (only 1 bit is valid). */
107 #define TDB_OFF_HASH_TRUNCATED_BIT 56
108 /* The bit number where we store next level of hash. */
109 #define TDB_OFF_HASH_EXTRA_BIT 57
110 /* Convenience mask to get actual offset. */
111 #define TDB_OFF_MASK \
112         (((1ULL << (64 - TDB_OFF_UPPER_STEAL)) - 1) - TDB_OFF_HASH_GROUP_MASK)
113
114 /* We have to be able to fit a free record here. */
115 #define TDB_MIN_DATA_LEN        \
116         (sizeof(struct tdb_free_record) - sizeof(struct tdb_used_record))
117
118 /* We ensure buckets up to size 1 << (zone_bits - TDB_COMFORT_FACTOR_BITS). */
119 /* FIXME: test this matches size_to_bucket! */
120 #define BUCKETS_FOR_ZONE(zone_bits) ((zone_bits) + 2 - TDB_COMFORT_FACTOR_BITS)
121
122 #if !HAVE_BSWAP_64
123 static inline uint64_t bswap_64(uint64_t x)
124 {
125         return (((x&0x000000FFULL)<<56)
126                 | ((x&0x0000FF00ULL)<<48)
127                 | ((x&0x00FF0000ULL)<<40)
128                 | ((x&0xFF000000ULL)<<32)
129                 | ((x>>8)&0xFF000000ULL)
130                 | ((x>>16)&0x00FF0000ULL)
131                 | ((x>>24)&0x0000FF00ULL)
132                 | ((x>>32)&0x000000FFULL));
133 }
134 #endif
135
136 struct tdb_used_record {
137         /* For on-disk compatibility, we avoid bitfields:
138            magic: 16,        (highest)
139            key_len_bits: 5,
140            extra_padding: 32
141            hash_bits: 5,
142            zone_bits: 6 (lowest)
143         */
144         uint64_t magic_and_meta;
145         /* The bottom key_len_bits*2 are key length, rest is data length. */
146         uint64_t key_and_data_len;
147 };
148
149 static inline unsigned rec_key_bits(const struct tdb_used_record *r)
150 {
151         return ((r->magic_and_meta >> 43) & ((1 << 5)-1)) * 2;
152 }
153
154 static inline uint64_t rec_key_length(const struct tdb_used_record *r)
155 {
156         return r->key_and_data_len & ((1ULL << rec_key_bits(r)) - 1);
157 }
158
159 static inline uint64_t rec_data_length(const struct tdb_used_record *r)
160 {
161         return r->key_and_data_len >> rec_key_bits(r);
162 }
163
164 static inline uint64_t rec_extra_padding(const struct tdb_used_record *r)
165 {
166         return (r->magic_and_meta >> 11) & 0xFFFFFFFF;
167 }
168
169 static inline unsigned int rec_zone_bits(const struct tdb_used_record *r)
170 {
171         return r->magic_and_meta & ((1 << 6) - 1);
172 }
173
174 static inline uint32_t rec_hash(const struct tdb_used_record *r)
175 {
176         return (r->magic_and_meta >> 6) & ((1 << 5) - 1);
177 }
178
179 static inline uint16_t rec_magic(const struct tdb_used_record *r)
180 {
181         return (r->magic_and_meta >> 48);
182 }
183
184 struct tdb_free_record {
185         uint64_t magic_and_meta; /* Bottom 6 bits are zone bits. */
186         uint64_t data_len; /* Not counting these two fields. */
187         /* This is why the minimum record size is 16 bytes.  */
188         uint64_t next, prev;
189 };
190
191 static inline unsigned int frec_zone_bits(const struct tdb_free_record *f)
192 {
193         return f->magic_and_meta & ((1 << 6) - 1);
194 }
195
196 static inline uint64_t frec_magic(const struct tdb_free_record *f)
197 {
198         return f->magic_and_meta & ~((1ULL << 6) - 1);
199 }
200
201 /* Each zone has its set of free lists at the head.
202  *
203  * For each zone we have a series of per-size buckets, and a final bucket for
204  * "too big". */
205 struct free_zone_header {
206         /* How much does this zone cover? */
207         uint64_t zone_bits;
208         /* tdb_off_t buckets[free_buckets + 1] */
209 };
210
211 /* this is stored at the front of every database */
212 struct tdb_header {
213         char magic_food[64]; /* for /etc/magic */
214         /* FIXME: Make me 32 bit? */
215         uint64_t version; /* version of the code */
216         uint64_t hash_test; /* result of hashing HASH_MAGIC. */
217         uint64_t hash_seed; /* "random" seed written at creation time. */
218
219         tdb_off_t reserved[28];
220
221         /* Top level hash table. */
222         tdb_off_t hashtable[1ULL << TDB_TOPLEVEL_HASH_BITS];
223 };
224
225 /* Information about a particular (locked) hash entry. */
226 struct hash_info {
227         /* Full hash value of entry. */
228         uint64_t h;
229         /* Start and length of lock acquired. */
230         tdb_off_t hlock_start;
231         tdb_len_t hlock_range;
232         /* Start of hash group. */
233         tdb_off_t group_start;
234         /* Bucket we belong in. */
235         unsigned int home_bucket;
236         /* Bucket we (or an empty space) were found in. */
237         unsigned int found_bucket;
238         /* How many bits of the hash are already used. */
239         unsigned int hash_used;
240         /* Current working group. */
241         tdb_off_t group[1 << TDB_HASH_GROUP_BITS];
242 };
243
244 struct traverse_info {
245         struct traverse_level {
246                 tdb_off_t hashtable;
247                 /* We ignore groups here, and treat it as a big array. */
248                 unsigned entry;
249                 unsigned int total_buckets;
250         } levels[64 / TDB_SUBLEVEL_HASH_BITS];
251         unsigned int num_levels;
252         unsigned int toplevel_group;
253         /* This makes delete-everything-inside-traverse work as expected. */
254         tdb_off_t prev;
255 };
256
257 enum tdb_lock_flags {
258         /* WAIT == F_SETLKW, NOWAIT == F_SETLK */
259         TDB_LOCK_NOWAIT = 0,
260         TDB_LOCK_WAIT = 1,
261         /* If set, don't log an error on failure. */
262         TDB_LOCK_PROBE = 2,
263 };
264
265 struct tdb_lock_type {
266         uint32_t off;
267         uint32_t count;
268         uint32_t ltype;
269 };
270
271 struct tdb_context {
272         /* Filename of the database. */
273         const char *name;
274
275         /* Mmap (if any), or malloc (for TDB_INTERNAL). */
276         void *map_ptr;
277
278         /* Are we accessing directly? (debugging check). */
279         int direct_access;
280
281          /* Open file descriptor (undefined for TDB_INTERNAL). */
282         int fd;
283
284         /* How much space has been mapped (<= current file size) */
285         tdb_len_t map_size;
286
287         /* Operating read-only? (Opened O_RDONLY, or in traverse_read) */
288         bool read_only;
289
290         /* mmap read only? */
291         int mmap_flags;
292
293         /* Error code for last tdb error. */
294         enum TDB_ERROR ecode; 
295
296         /* the flags passed to tdb_open, for tdb_reopen. */
297         uint32_t flags;
298
299         /* Logging function */
300         tdb_logfn_t log;
301         void *log_priv;
302
303         /* Hash function. */
304         tdb_hashfn_t khash;
305         void *hash_priv;
306         uint64_t hash_seed;
307
308         /* Set if we are in a transaction. */
309         struct tdb_transaction *transaction;
310         
311         /* What zone of the tdb to use, for spreading load. */
312         uint64_t zone_off;
313         /* Cached copy of zone header. */
314         struct free_zone_header zhdr;
315
316         /* IO methods: changes for transactions. */
317         const struct tdb_methods *methods;
318
319         /* Lock information */
320         struct tdb_lock_type allrecord_lock;
321         uint64_t num_lockrecs;
322         struct tdb_lock_type *lockrecs;
323
324         /* Single list of all TDBs, to avoid multiple opens. */
325         struct tdb_context *next;
326         dev_t device;   
327         ino_t inode;
328 };
329
330 struct tdb_methods {
331         int (*read)(struct tdb_context *, tdb_off_t, void *, tdb_len_t);
332         int (*write)(struct tdb_context *, tdb_off_t, const void *, tdb_len_t);
333         int (*oob)(struct tdb_context *, tdb_off_t, bool);
334         int (*expand_file)(struct tdb_context *, tdb_len_t);
335         void *(*direct)(struct tdb_context *, tdb_off_t, size_t);
336 };
337
338 /*
339   internal prototypes
340 */
341 /* hash.c: */
342 void tdb_hash_init(struct tdb_context *tdb);
343
344 /* Hash random memory. */
345 uint64_t tdb_hash(struct tdb_context *tdb, const void *ptr, size_t len);
346
347 /* Hash on disk. */
348 uint64_t hash_record(struct tdb_context *tdb, tdb_off_t off);
349
350 /* Find and lock a hash entry (or where it would be). */
351 tdb_off_t find_and_lock(struct tdb_context *tdb,
352                         struct tdb_data key,
353                         int ltype,
354                         struct hash_info *h,
355                         struct tdb_used_record *rec,
356                         struct traverse_info *tinfo);
357
358 int replace_in_hash(struct tdb_context *tdb,
359                     struct hash_info *h,
360                     tdb_off_t new_off);
361
362 int add_to_hash(struct tdb_context *tdb, struct hash_info *h,
363                 tdb_off_t new_off);
364
365 int delete_from_hash(struct tdb_context *tdb, struct hash_info *h);
366
367 /* For tdb_check */
368 bool is_subhash(tdb_off_t val);
369
370 /* free.c: */
371 int tdb_zone_init(struct tdb_context *tdb);
372
373 /* If this fails, try tdb_expand. */
374 tdb_off_t alloc(struct tdb_context *tdb, size_t keylen, size_t datalen,
375                 uint64_t hash, bool growing);
376
377 /* Put this record in a free list. */
378 int add_free_record(struct tdb_context *tdb, unsigned int zone_bits,
379                     tdb_off_t off, tdb_len_t len_with_header);
380
381 /* Set up header for a used record. */
382 int set_header(struct tdb_context *tdb,
383                struct tdb_used_record *rec,
384                uint64_t keylen, uint64_t datalen,
385                uint64_t actuallen, unsigned hashlow,
386                unsigned int zone_bits);
387
388 /* Used by tdb_check to verify. */
389 unsigned int size_to_bucket(unsigned int free_buckets, tdb_len_t data_len);
390 tdb_off_t bucket_off(tdb_off_t zone_off, tdb_off_t bucket);
391
392 /* io.c: */
393 /* Initialize tdb->methods. */
394 void tdb_io_init(struct tdb_context *tdb);
395
396 /* Convert endian of the buffer if required. */
397 void *tdb_convert(const struct tdb_context *tdb, void *buf, tdb_len_t size);
398
399 /* Unmap and try to map the tdb. */
400 void tdb_munmap(struct tdb_context *tdb);
401 void tdb_mmap(struct tdb_context *tdb);
402
403 /* Either make a copy into pad and return that, or return ptr into mmap.
404  * Converts endian (ie. will use pad in that case). */
405 void *tdb_get(struct tdb_context *tdb, tdb_off_t off, void *pad, size_t len);
406
407 /* Either alloc a copy, or give direct access.  Release frees or noop. */
408 const void *tdb_access_read(struct tdb_context *tdb,
409                             tdb_off_t off, tdb_len_t len, bool convert);
410 void *tdb_access_write(struct tdb_context *tdb,
411                        tdb_off_t off, tdb_len_t len, bool convert);
412
413 /* Release result of tdb_access_read/write. */
414 void tdb_access_release(struct tdb_context *tdb, const void *p);
415 /* Commit result of tdb_acces_write. */
416 int tdb_access_commit(struct tdb_context *tdb, void *p);
417
418 /* Convenience routine to get an offset. */
419 tdb_off_t tdb_read_off(struct tdb_context *tdb, tdb_off_t off);
420
421 /* Write an offset at an offset. */
422 int tdb_write_off(struct tdb_context *tdb, tdb_off_t off, tdb_off_t val);
423
424 /* Clear an ondisk area. */
425 int zero_out(struct tdb_context *tdb, tdb_off_t off, tdb_len_t len);
426
427 /* Return a non-zero offset between >= start < end in this array (or end). */
428 tdb_off_t tdb_find_nonzero_off(struct tdb_context *tdb,
429                                tdb_off_t base,
430                                uint64_t start,
431                                uint64_t end);
432
433 /* Return a zero offset in this array, or num. */
434 tdb_off_t tdb_find_zero_off(struct tdb_context *tdb, tdb_off_t off,
435                             uint64_t num);
436
437 /* Even on files, we can get partial writes due to signals. */
438 bool tdb_pwrite_all(int fd, const void *buf, size_t len, tdb_off_t off);
439 bool tdb_pread_all(int fd, void *buf, size_t len, tdb_off_t off);
440 bool tdb_read_all(int fd, void *buf, size_t len);
441
442 /* Allocate and make a copy of some offset. */
443 void *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
444
445 /* Writes a converted copy of a record. */
446 int tdb_write_convert(struct tdb_context *tdb, tdb_off_t off,
447                       const void *rec, size_t len);
448
449 /* Reads record and converts it */
450 int tdb_read_convert(struct tdb_context *tdb, tdb_off_t off,
451                      void *rec, size_t len);
452
453
454 /* lock.c: */
455 void tdb_lock_init(struct tdb_context *tdb);
456
457 /* Lock/unlock a range of hashes. */
458 int tdb_lock_hashes(struct tdb_context *tdb,
459                     tdb_off_t hash_lock, tdb_len_t hash_range,
460                     int ltype, enum tdb_lock_flags waitflag);
461 int tdb_unlock_hashes(struct tdb_context *tdb,
462                       tdb_off_t hash_lock,
463                       tdb_len_t hash_range, int ltype);
464
465 /* Lock/unlock a particular free bucket. */
466 int tdb_lock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off,
467                          enum tdb_lock_flags waitflag);
468 void tdb_unlock_free_bucket(struct tdb_context *tdb, tdb_off_t b_off);
469
470 /* Do we have any locks? */
471 bool tdb_has_locks(struct tdb_context *tdb);
472
473 /* Lock entire database. */
474 int tdb_allrecord_lock(struct tdb_context *tdb, int ltype,
475                        enum tdb_lock_flags flags, bool upgradable);
476 int tdb_allrecord_unlock(struct tdb_context *tdb, int ltype);
477
478 /* Serialize db open. */
479 int tdb_lock_open(struct tdb_context *tdb);
480 void tdb_unlock_open(struct tdb_context *tdb);
481
482 /* Serialize db expand. */
483 int tdb_lock_expand(struct tdb_context *tdb, int ltype);
484 void tdb_unlock_expand(struct tdb_context *tdb, int ltype);
485 bool tdb_has_expansion_lock(struct tdb_context *tdb);
486
487
488 /* traverse.c: */
489 int first_in_hash(struct tdb_context *tdb, int ltype,
490                   struct traverse_info *tinfo,
491                   TDB_DATA *kbuf, size_t *dlen);
492 int next_in_hash(struct tdb_context *tdb, int ltype,
493                  struct traverse_info *tinfo,
494                  TDB_DATA *kbuf, size_t *dlen);
495
496
497 #if 0
498 /* Low-level locking primitives. */
499 int tdb_nest_lock(struct tdb_context *tdb, tdb_off_t offset, int ltype,
500                   enum tdb_lock_flags flags);
501 int tdb_nest_unlock(struct tdb_context *tdb, tdb_off_t offset, int ltype);
502
503 int tdb_munmap(struct tdb_context *tdb);
504 void tdb_mmap(struct tdb_context *tdb);
505 int tdb_lock(struct tdb_context *tdb, int list, int ltype);
506 int tdb_lock_nonblock(struct tdb_context *tdb, int list, int ltype);
507 bool tdb_have_locks(struct tdb_context *tdb);
508 int tdb_unlock(struct tdb_context *tdb, int list, int ltype);
509 int tdb_brlock(struct tdb_context *tdb,
510                int rw_type, tdb_off_t offset, size_t len,
511                enum tdb_lock_flags flags);
512 int tdb_brunlock(struct tdb_context *tdb,
513                  int rw_type, tdb_off_t offset, size_t len);
514 bool tdb_have_extra_locks(struct tdb_context *tdb);
515 void tdb_release_extra_locks(struct tdb_context *tdb);
516 int tdb_transaction_lock(struct tdb_context *tdb, int ltype);
517 int tdb_transaction_unlock(struct tdb_context *tdb, int ltype);
518 int tdb_allrecord_lock(struct tdb_context *tdb, int ltype,
519                        enum tdb_lock_flags flags, bool upgradable);
520 int tdb_allrecord_unlock(struct tdb_context *tdb, int ltype);
521 int tdb_allrecord_upgrade(struct tdb_context *tdb);
522 int tdb_write_lock_record(struct tdb_context *tdb, tdb_off_t off);
523 int tdb_write_unlock_record(struct tdb_context *tdb, tdb_off_t off);
524 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
525 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
526 int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct tdb_record *rec);
527 tdb_off_t tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct tdb_record *rec);
528 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
529 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
530 int tdb_lock_record(struct tdb_context *tdb, tdb_off_t off);
531 int tdb_unlock_record(struct tdb_context *tdb, tdb_off_t off);
532 bool tdb_needs_recovery(struct tdb_context *tdb);
533 int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct tdb_record *rec);
534 int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct tdb_record *rec);
535 int tdb_do_delete(struct tdb_context *tdb, tdb_off_t rec_ptr, struct tdb_record *rec);
536 unsigned char *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
537 int tdb_parse_data(struct tdb_context *tdb, TDB_DATA key,
538                    tdb_off_t offset, tdb_len_t len,
539                    int (*parser)(TDB_DATA key, TDB_DATA data,
540                                  void *private_data),
541                    void *private_data);
542 tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, uint32_t hash, int locktype,
543                            struct tdb_record *rec);
544 void tdb_io_init(struct tdb_context *tdb);
545 int tdb_expand(struct tdb_context *tdb, tdb_off_t size);
546 int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off,
547                       struct tdb_record *rec);
548 #endif
549
550 #ifdef TDB_TRACE
551 void tdb_trace(struct tdb_context *tdb, const char *op);
552 void tdb_trace_seqnum(struct tdb_context *tdb, uint32_t seqnum, const char *op);
553 void tdb_trace_open(struct tdb_context *tdb, const char *op,
554                     unsigned hash_size, unsigned tdb_flags, unsigned open_flags);
555 void tdb_trace_ret(struct tdb_context *tdb, const char *op, int ret);
556 void tdb_trace_retrec(struct tdb_context *tdb, const char *op, TDB_DATA ret);
557 void tdb_trace_1rec(struct tdb_context *tdb, const char *op,
558                     TDB_DATA rec);
559 void tdb_trace_1rec_ret(struct tdb_context *tdb, const char *op,
560                         TDB_DATA rec, int ret);
561 void tdb_trace_1rec_retrec(struct tdb_context *tdb, const char *op,
562                            TDB_DATA rec, TDB_DATA ret);
563 void tdb_trace_2rec_flag_ret(struct tdb_context *tdb, const char *op,
564                              TDB_DATA rec1, TDB_DATA rec2, unsigned flag,
565                              int ret);
566 void tdb_trace_2rec_retrec(struct tdb_context *tdb, const char *op,
567                            TDB_DATA rec1, TDB_DATA rec2, TDB_DATA ret);
568 #else
569 #define tdb_trace(tdb, op)
570 #define tdb_trace_seqnum(tdb, seqnum, op)
571 #define tdb_trace_open(tdb, op, hash_size, tdb_flags, open_flags)
572 #define tdb_trace_ret(tdb, op, ret)
573 #define tdb_trace_retrec(tdb, op, ret)
574 #define tdb_trace_1rec(tdb, op, rec)
575 #define tdb_trace_1rec_ret(tdb, op, rec, ret)
576 #define tdb_trace_1rec_retrec(tdb, op, rec, ret)
577 #define tdb_trace_2rec_flag_ret(tdb, op, rec1, rec2, flag, ret)
578 #define tdb_trace_2rec_retrec(tdb, op, rec1, rec2, ret)
579 #endif /* !TDB_TRACE */
580
581 #endif