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