]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/tdb2.h
tdb2: check PID if we are holding a lock.
[ccan] / ccan / tdb2 / tdb2.h
1 #ifndef CCAN_TDB2_H
2 #define CCAN_TDB2_H
3
4 /*
5    TDB version 2: trivial database library
6
7    Copyright (C) Andrew Tridgell 1999-2004
8    Copyright (C) Rusty Russell 2010-2011
9
10      ** NOTE! The following LGPL license applies to the tdb
11      ** library. This does NOT imply that all of Samba is released
12      ** under the LGPL
13
14    This library is free software; you can redistribute it and/or
15    modify it under the terms of the GNU Lesser General Public
16    License as published by the Free Software Foundation; either
17    version 3 of the License, or (at your option) any later version.
18
19    This library is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22    Lesser General Public License for more details.
23
24    You should have received a copy of the GNU Lesser General Public
25    License along with this library; if not, see <http://www.gnu.org/licenses/>.
26 */
27
28 #ifdef  __cplusplus
29 extern "C" {
30 #endif
31
32 #ifndef _SAMBA_BUILD_
33 /* For mode_t */
34 #include <sys/types.h>
35 /* For O_* flags. */
36 #include <sys/stat.h>
37 /* For sig_atomic_t. */
38 #include <signal.h>
39 /* For uint64_t */
40 #include <stdint.h>
41 /* For bool */
42 #include <stdbool.h>
43 /* For memcmp */
44 #include <string.h>
45 #endif
46 #include <ccan/compiler/compiler.h>
47 #include <ccan/typesafe_cb/typesafe_cb.h>
48 #include <ccan/cast/cast.h>
49
50 union tdb_attribute;
51 struct tdb_context;
52
53 /**
54  * tdb_open - open a database file
55  * @name: the file name (can be NULL if flags contains TDB_INTERNAL)
56  * @tdb_flags: options for this database
57  * @open_flags: flags argument for tdb's open() call.
58  * @mode: mode argument for tdb's open() call.
59  * @attributes: linked list of extra attributes for this tdb.
60  *
61  * This call opens (and potentially creates) a database file.
62  * Multiple processes can have the TDB file open at once.
63  *
64  * On failure it will return NULL, and set errno: it may also call
65  * any log attribute found in @attributes.
66  *
67  * See also:
68  *      union tdb_attribute
69  */
70 struct tdb_context *tdb_open(const char *name, int tdb_flags,
71                              int open_flags, mode_t mode,
72                              union tdb_attribute *attributes);
73
74
75 /* flags for tdb_open() */
76 #define TDB_DEFAULT 0 /* just a readability place holder */
77 #define TDB_INTERNAL 2 /* don't store on disk */
78 #define TDB_NOLOCK   4 /* don't do any locking */
79 #define TDB_NOMMAP   8 /* don't use mmap */
80 #define TDB_CONVERT 16 /* convert endian */
81 #define TDB_NOSYNC   64 /* don't use synchronous transactions */
82 #define TDB_SEQNUM   128 /* maintain a sequence number */
83
84 /**
85  * tdb_close - close and free a tdb.
86  * @tdb: the tdb context returned from tdb_open()
87  *
88  * This always succeeds, in that @tdb is unusable after this call.  But if
89  * some unexpected error occurred while closing, it will return non-zero
90  * (the only clue as to cause will be via the log attribute).
91  */
92 int tdb_close(struct tdb_context *tdb);
93
94 /**
95  * struct tdb_data - representation of keys or values.
96  * @dptr: the data pointer
97  * @dsize: the size of the data pointed to by dptr.
98  *
99  * This is the "blob" representation of keys and data used by TDB.
100  */
101 typedef struct tdb_data {
102         unsigned char *dptr;
103         size_t dsize;
104 } TDB_DATA;
105
106 /**
107  * enum TDB_ERROR - error returns for TDB
108  *
109  * See Also:
110  *      tdb_errorstr()
111  */
112 enum TDB_ERROR {
113         TDB_SUCCESS     = 0,    /* No error. */
114         TDB_ERR_CORRUPT = -1,   /* We read the db, and it was bogus. */
115         TDB_ERR_IO      = -2,   /* We couldn't read/write the db. */
116         TDB_ERR_LOCK    = -3,   /* Locking failed. */
117         TDB_ERR_OOM     = -4,   /* Out of Memory. */
118         TDB_ERR_EXISTS  = -5,   /* The key already exists. */
119         TDB_ERR_NOEXIST = -6,   /* The key does not exist. */
120         TDB_ERR_EINVAL  = -7,   /* You're using it wrong. */
121         TDB_ERR_RDONLY  = -8,   /* The database is read-only. */
122         TDB_ERR_LAST = TDB_ERR_RDONLY
123 };
124
125 /**
126  * tdb_store - store a key/value pair in a tdb.
127  * @tdb: the tdb context returned from tdb_open()
128  * @key: the key
129  * @dbuf: the data to associate with the key.
130  * @flag: TDB_REPLACE, TDB_INSERT or TDB_MODIFY.
131  *
132  * This inserts (or overwrites) a key/value pair in the TDB.  If flag
133  * is TDB_REPLACE, it doesn't matter whether the key exists or not;
134  * TDB_INSERT means it must not exist (returns TDB_ERR_EXISTS otherwise),
135  * and TDB_MODIFY means it must exist (returns TDB_ERR_NOEXIST otherwise).
136  *
137  * On success, this returns TDB_SUCCESS.
138  *
139  * See also:
140  *      tdb_fetch, tdb_transaction_start, tdb_append, tdb_delete.
141  */
142 enum TDB_ERROR tdb_store(struct tdb_context *tdb,
143                          struct tdb_data key,
144                          struct tdb_data dbuf,
145                          int flag);
146
147 /* flags to tdb_store() */
148 #define TDB_REPLACE 1           /* A readability place holder */
149 #define TDB_INSERT 2            /* Don't overwrite an existing entry */
150 #define TDB_MODIFY 3            /* Don't create an existing entry    */
151
152 /**
153  * tdb_fetch - fetch a value from a tdb.
154  * @tdb: the tdb context returned from tdb_open()
155  * @key: the key
156  * @data: pointer to data.
157  *
158  * This looks up a key in the database and sets it in @data.
159  *
160  * If it returns TDB_SUCCESS, the key was found: it is your
161  * responsibility to call free() on @data->dptr.
162  *
163  * Otherwise, it returns an error (usually, TDB_ERR_NOEXIST) and @data is
164  * undefined.
165  */
166 enum TDB_ERROR tdb_fetch(struct tdb_context *tdb, struct tdb_data key,
167                          struct tdb_data *data);
168
169 /**
170  * tdb_errorstr - map the tdb error onto a constant readable string
171  * @ecode: the enum TDB_ERROR to map.
172  *
173  * This is useful for displaying errors to users.
174  */
175 const char *tdb_errorstr(enum TDB_ERROR ecode);
176
177 /**
178  * tdb_append - append a value to a key/value pair in a tdb.
179  * @tdb: the tdb context returned from tdb_open()
180  * @key: the key
181  * @dbuf: the data to append.
182  *
183  * This is equivalent to fetching a record, reallocating .dptr to add the
184  * data, and writing it back, only it's much more efficient.  If the key
185  * doesn't exist, it's equivalent to tdb_store (with an additional hint that
186  * you expect to expand the record in future).
187  *
188  * See Also:
189  *      tdb_fetch(), tdb_store()
190  */
191 enum TDB_ERROR tdb_append(struct tdb_context *tdb,
192                           struct tdb_data key, struct tdb_data dbuf);
193
194 /**
195  * tdb_delete - delete a key from a tdb.
196  * @tdb: the tdb context returned from tdb_open()
197  * @key: the key to delete.
198  *
199  * Returns TDB_SUCCESS on success, or an error (usually TDB_ERR_NOEXIST).
200  *
201  * See Also:
202  *      tdb_fetch(), tdb_store()
203  */
204 enum TDB_ERROR tdb_delete(struct tdb_context *tdb, struct tdb_data key);
205
206 /**
207  * tdb_exists - does a key exist in the database?
208  * @tdb: the tdb context returned from tdb_open()
209  * @key: the key to search for.
210  *
211  * Returns true if it exists, or false if it doesn't or any other error.
212  */
213 bool tdb_exists(struct tdb_context *tdb, TDB_DATA key);
214
215 /**
216  * tdb_deq - are struct tdb_data equal?
217  * @a: one struct tdb_data
218  * @b: another struct tdb_data
219  */
220 static inline bool tdb_deq(struct tdb_data a, struct tdb_data b)
221 {
222         return a.dsize == b.dsize && memcmp(a.dptr, b.dptr, a.dsize) == 0;
223 }
224
225 /**
226  * tdb_mkdata - make a struct tdb_data from const data
227  * @p: the constant pointer
228  * @len: the length
229  *
230  * As the dptr member of struct tdb_data is not constant, you need to
231  * cast it.  This function keeps thost casts in one place, as well as
232  * suppressing the warning some compilers give when casting away a
233  * qualifier (eg. gcc with -Wcast-qual)
234  */
235 static inline struct tdb_data tdb_mkdata(const void *p, size_t len)
236 {
237         struct tdb_data d;
238         d.dptr = cast_const(void *, p);
239         d.dsize = len;
240         return d;
241 }
242
243 /**
244  * tdb_transaction_start - start a transaction
245  * @tdb: the tdb context returned from tdb_open()
246  *
247  * This begins a series of atomic operations.  Other processes will be able
248  * to read the tdb, but not alter it (they will block), nor will they see
249  * any changes until tdb_transaction_commit() is called.
250  *
251  * See Also:
252  *      tdb_transaction_cancel, tdb_transaction_commit.
253  */
254 enum TDB_ERROR tdb_transaction_start(struct tdb_context *tdb);
255
256 /**
257  * tdb_transaction_cancel - abandon a transaction
258  * @tdb: the tdb context returned from tdb_open()
259  *
260  * This aborts a transaction, discarding any changes which were made.
261  * tdb_close() does this implicitly.
262  */
263 void tdb_transaction_cancel(struct tdb_context *tdb);
264
265 /**
266  * tdb_transaction_commit - commit a transaction
267  * @tdb: the tdb context returned from tdb_open()
268  *
269  * This completes a transaction, writing any changes which were made.
270  *
271  * fsync() is used to commit the transaction (unless TDB_NOSYNC is set),
272  * making it robust against machine crashes, but very slow compared to
273  * other TDB operations.
274  *
275  * A failure can only be caused by unexpected errors (eg. I/O or
276  * memory); this is no point looping on transaction failure.
277  *
278  * See Also:
279  *      tdb_transaction_prepare_commit()
280  */
281 enum TDB_ERROR tdb_transaction_commit(struct tdb_context *tdb);
282
283 /**
284  * tdb_transaction_prepare_commit - prepare to commit a transaction
285  * @tdb: the tdb context returned from tdb_open()
286  *
287  * This ensures we have the resources to commit a transaction (using
288  * tdb_transaction_commit): if this succeeds then a transaction will only
289  * fail if the write() or fsync() calls fail.
290  *
291  * See Also:
292  *      tdb_transaction_commit()
293  */
294 enum TDB_ERROR tdb_transaction_prepare_commit(struct tdb_context *tdb);
295
296 /**
297  * tdb_traverse - traverse a TDB
298  * @tdb: the tdb context returned from tdb_open()
299  * @fn: the function to call for every key/value pair (or NULL)
300  * @p: the pointer to hand to @f
301  *
302  * This walks the TDB until all they keys have been traversed, or @fn
303  * returns non-zero.  If the traverse function or other processes are
304  * changing data or adding or deleting keys, the traverse may be
305  * unreliable: keys may be skipped or (rarely) visited twice.
306  *
307  * There is one specific exception: the special case of deleting the
308  * current key does not undermine the reliability of the traversal.
309  *
310  * On success, returns the number of keys iterated.  On error returns
311  * a negative enum TDB_ERROR value.
312  */
313 #define tdb_traverse(tdb, fn, p)                                        \
314         tdb_traverse_(tdb, typesafe_cb_preargs(int, (fn), (p),          \
315                                                struct tdb_context *,    \
316                                                TDB_DATA, TDB_DATA), (p))
317
318 int64_t tdb_traverse_(struct tdb_context *tdb,
319                       int (*fn)(struct tdb_context *,
320                                 TDB_DATA, TDB_DATA, void *), void *p);
321
322 /**
323  * tdb_parse_record - operate directly on data in the database.
324  * @tdb: the tdb context returned from tdb_open()
325  * @key: the key whose record we should hand to @parse
326  * @parse: the function to call for the data
327  * @p: the private pointer to hand to @parse (types must match).
328  *
329  * This avoids a copy for many cases, by handing you a pointer into
330  * the memory-mapped database.  It also locks the record to prevent
331  * other accesses at the same time.
332  *
333  * Do not alter the data handed to parse()!
334  */
335 #define tdb_parse_record(tdb, key, parse, p)                            \
336         tdb_parse_record_((tdb), (key),                                 \
337                           typesafe_cb_preargs(enum TDB_ERROR, (parse), (p), \
338                                               TDB_DATA, TDB_DATA), (p))
339
340 enum TDB_ERROR tdb_parse_record_(struct tdb_context *tdb,
341                                  TDB_DATA key,
342                                  enum TDB_ERROR (*parse)(TDB_DATA key,
343                                                          TDB_DATA data,
344                                                          void *p),
345                                  void *p);
346
347 /**
348  * tdb_get_seqnum - get a database sequence number
349  * @tdb: the tdb context returned from tdb_open()
350  *
351  * This returns a sequence number: any change to the database from a
352  * tdb context opened with the TDB_SEQNUM flag will cause that number
353  * to increment.  Note that the incrementing is unreliable (it is done
354  * without locking), so this is only useful as an optimization.
355  *
356  * For example, you may have a regular database backup routine which
357  * does not operate if the sequence number is unchanged.  In the
358  * unlikely event of a failed increment, it will be backed up next
359  * time any way.
360  *
361  * Returns an enum TDB_ERROR (ie. negative) on error.
362  */
363 int64_t tdb_get_seqnum(struct tdb_context *tdb);
364
365 /**
366  * tdb_firstkey - get the "first" key in a TDB
367  * @tdb: the tdb context returned from tdb_open()
368  * @key: pointer to key.
369  *
370  * This returns an arbitrary key in the database; with tdb_nextkey() it allows
371  * open-coded traversal of the database, though it is slightly less efficient
372  * than tdb_traverse.
373  *
374  * It is your responsibility to free @key->dptr on success.
375  *
376  * Returns TDB_ERR_NOEXIST if the database is empty.
377  */
378 enum TDB_ERROR tdb_firstkey(struct tdb_context *tdb, struct tdb_data *key);
379
380 /**
381  * tdb_nextkey - get the "next" key in a TDB
382  * @tdb: the tdb context returned from tdb_open()
383  * @key: a key returned by tdb_firstkey() or tdb_nextkey().
384  *
385  * This returns another key in the database; it will free @key.dptr for
386  * your convenience.
387  *
388  * Returns TDB_ERR_NOEXIST if there are no more keys.
389  */
390 enum TDB_ERROR tdb_nextkey(struct tdb_context *tdb, struct tdb_data *key);
391
392 /**
393  * tdb_chainlock - lock a record in the TDB
394  * @tdb: the tdb context returned from tdb_open()
395  * @key: the key to lock.
396  *
397  * This prevents any changes from occurring to a group of keys including @key,
398  * even if @key does not exist.  This allows primitive atomic updates of
399  * records without using transactions.
400  *
401  * You cannot begin a transaction while holding a tdb_chainlock(), nor can
402  * you do any operations on any other keys in the database.  This also means
403  * that you cannot hold more than one tdb_chainlock() at a time.
404  *
405  * See Also:
406  *      tdb_chainunlock()
407  */
408 enum TDB_ERROR tdb_chainlock(struct tdb_context *tdb, TDB_DATA key);
409
410 /**
411  * tdb_chainunlock - unlock a record in the TDB
412  * @tdb: the tdb context returned from tdb_open()
413  * @key: the key to unlock.
414  *
415  * The key must have previously been locked by tdb_chainlock().
416  */
417 void tdb_chainunlock(struct tdb_context *tdb, TDB_DATA key);
418
419 /**
420  * tdb_lockall - lock the entire TDB
421  * @tdb: the tdb context returned from tdb_open()
422  *
423  * You cannot hold a tdb_chainlock while calling this.  It nests, so you
424  * must call tdb_unlockall as many times as you call tdb_lockall.
425  */
426 enum TDB_ERROR tdb_lockall(struct tdb_context *tdb);
427
428 /**
429  * tdb_unlockall - unlock the entire TDB
430  * @tdb: the tdb context returned from tdb_open()
431  */
432 void tdb_unlockall(struct tdb_context *tdb);
433
434 /**
435  * tdb_lockall_read - lock the entire TDB for reading
436  * @tdb: the tdb context returned from tdb_open()
437  *
438  * This prevents others writing to the database, eg. tdb_delete, tdb_store,
439  * tdb_append, but not tdb_fetch.
440  *
441  * You cannot hold a tdb_chainlock while calling this.  It nests, so you
442  * must call tdb_unlockall_read as many times as you call tdb_lockall_read.
443  */
444 enum TDB_ERROR tdb_lockall_read(struct tdb_context *tdb);
445
446 /**
447  * tdb_unlockall_read - unlock the entire TDB for reading
448  * @tdb: the tdb context returned from tdb_open()
449  */
450 void tdb_unlockall_read(struct tdb_context *tdb);
451
452 /**
453  * tdb_wipe_all - wipe the database clean
454  * @tdb: the tdb context returned from tdb_open()
455  *
456  * Completely erase the database.  This is faster than iterating through
457  * each key and doing tdb_delete.
458  */
459 enum TDB_ERROR tdb_wipe_all(struct tdb_context *tdb);
460
461 /**
462  * tdb_check - check a TDB for consistency
463  * @tdb: the tdb context returned from tdb_open()
464  * @check: function to check each key/data pair (or NULL)
465  * @private: argument for @check, must match type.
466  *
467  * This performs a consistency check of the open database, optionally calling
468  * a check() function on each record so you can do your own data consistency
469  * checks as well.  If check() returns an error, that is returned from
470  * tdb_check().
471  *
472  * Returns TDB_SUCCESS or an error.
473  */
474 #define tdb_check(tdb, check, private)                                  \
475         tdb_check_((tdb), typesafe_cb_preargs(enum TDB_ERROR,           \
476                                               (check), (private),       \
477                                               struct tdb_data,          \
478                                               struct tdb_data),         \
479                    (private))
480
481 enum TDB_ERROR tdb_check_(struct tdb_context *tdb,
482                           enum TDB_ERROR (*check)(struct tdb_data key,
483                                                   struct tdb_data data,
484                                                   void *private),
485                           void *private);
486
487 /**
488  * tdb_error - get the last error (not threadsafe)
489  * @tdb: the tdb context returned from tdb_open()
490  *
491  * Returns the last error returned by a TDB function.
492  *
493  * This makes porting from TDB1 easier, but note that the last error is not
494  * reliable in threaded programs.
495  */
496 enum TDB_ERROR tdb_error(struct tdb_context *tdb);
497
498 /**
499  * enum tdb_summary_flags - flags for tdb_summary.
500  */
501 enum tdb_summary_flags {
502         TDB_SUMMARY_HISTOGRAMS = 1 /* Draw graphs in the summary. */
503 };
504
505 /**
506  * tdb_summary - return a string describing the TDB state
507  * @tdb: the tdb context returned from tdb_open()
508  * @flags: flags to control the summary output.
509  * @summary: pointer to string to allocate.
510  *
511  * This returns a developer-readable string describing the overall
512  * state of the tdb, such as the percentage used and sizes of records.
513  * It is designed to provide information about the tdb at a glance
514  * without displaying any keys or data in the database.
515  *
516  * On success, sets @summary to point to a malloc()'ed nul-terminated
517  * multi-line string.  It is your responsibility to free() it.
518  */
519 enum TDB_ERROR tdb_summary(struct tdb_context *tdb,
520                            enum tdb_summary_flags flags,
521                            char **summary);
522
523  
524 /**
525  * tdb_get_flags - return the flags for a tdb
526  * @tdb: the tdb context returned from tdb_open()
527  *
528  * This returns the flags on the current tdb.  Some of these are caused by
529  * the flags argument to tdb_open(), others (such as TDB_CONVERT) are
530  * intuited.
531  */
532 unsigned int tdb_get_flags(struct tdb_context *tdb);
533
534 /**
535  * tdb_add_flag - set a flag for a tdb
536  * @tdb: the tdb context returned from tdb_open()
537  * @flag: one of TDB_NOLOCK, TDB_NOMMAP or TDB_NOSYNC.
538  *
539  * You can use this to set a flag on the TDB.  You cannot set these flags
540  * on a TDB_INTERNAL tdb.
541  */
542 void tdb_add_flag(struct tdb_context *tdb, unsigned flag);
543
544 /**
545  * tdb_remove_flag - unset a flag for a tdb
546  * @tdb: the tdb context returned from tdb_open()
547  * @flag: one of TDB_NOLOCK, TDB_NOMMAP or TDB_NOSYNC.
548  *
549  * You can use this to clear a flag on the TDB.  You cannot clear flags
550  * on a TDB_INTERNAL tdb.
551  */
552 void tdb_remove_flag(struct tdb_context *tdb, unsigned flag);
553
554 /**
555  * tdb_name - get the name of a tdb
556  * @tdb: the tdb context returned from tdb_open()
557  *
558  * This returns a copy of the name string, made at tdb_open() time.  If that
559  * argument was NULL (possible for a TDB_INTERNAL db) this will return NULL.
560  *
561  * This is mostly useful for logging.
562  */
563 const char *tdb_name(const struct tdb_context *tdb);
564
565 /**
566  * tdb_fd - get the file descriptor of a tdb
567  * @tdb: the tdb context returned from tdb_open()
568  *
569  * This returns the file descriptor for the underlying database file, or -1
570  * for TDB_INTERNAL.
571  */
572 int tdb_fd(const struct tdb_context *tdb);
573
574 /**
575  * enum tdb_attribute_type - descriminator for union tdb_attribute.
576  */
577 enum tdb_attribute_type {
578         TDB_ATTRIBUTE_LOG = 0,
579         TDB_ATTRIBUTE_HASH = 1,
580         TDB_ATTRIBUTE_SEED = 2,
581         TDB_ATTRIBUTE_STATS = 3
582 };
583
584 /**
585  * struct tdb_attribute_base - common fields for all tdb attributes.
586  */
587 struct tdb_attribute_base {
588         enum tdb_attribute_type attr;
589         union tdb_attribute *next;
590 };
591
592 /**
593  * enum tdb_log_level - log levels for tdb_attribute_log
594  * @TDB_LOG_ERROR: used to log unrecoverable errors such as I/O errors
595  *                 or internal consistency failures.
596  * @TDB_LOG_USE_ERROR: used to log usage errors such as invalid parameters
597  *                 or writing to a read-only database.
598  * @TDB_LOG_WARNING: used for informational messages on issues which
599  *                   are unusual but handled by TDB internally, such
600  *                   as a failure to mmap or failure to open /dev/urandom.
601  */
602 enum tdb_log_level {
603         TDB_LOG_ERROR,
604         TDB_LOG_USE_ERROR,
605         TDB_LOG_WARNING
606 };
607
608 /**
609  * struct tdb_attribute_log - log function attribute
610  *
611  * This attribute provides a hook for you to log errors.
612  */
613 struct tdb_attribute_log {
614         struct tdb_attribute_base base; /* .attr = TDB_ATTRIBUTE_LOG */
615         void (*log_fn)(struct tdb_context *tdb,
616                        enum tdb_log_level level,
617                        void *log_private,
618                        const char *message);
619         void *log_private;
620 };
621
622 /**
623  * struct tdb_attribute_hash - hash function attribute
624  *
625  * This attribute allows you to provide an alternative hash function.
626  * This hash function will be handed keys from the database; it will also
627  * be handed the 8-byte TDB_HASH_MAGIC value for checking the header (the
628  * tdb_open() will fail if the hash value doesn't match the header).
629  *
630  * Note that if your hash function gives different results on
631  * different machine endians, your tdb will no longer work across
632  * different architectures!
633  */
634 struct tdb_attribute_hash {
635         struct tdb_attribute_base base; /* .attr = TDB_ATTRIBUTE_HASH */
636         uint64_t (*hash_fn)(const void *key, size_t len, uint64_t seed,
637                             void *priv);
638         void *hash_private;
639 };
640
641 /**
642  * struct tdb_attribute_seed - hash function seed attribute
643  *
644  * The hash function seed is normally taken from /dev/urandom (or equivalent)
645  * but can be set manually here.  This is mainly for testing purposes.
646  */
647 struct tdb_attribute_seed {
648         struct tdb_attribute_base base; /* .attr = TDB_ATTRIBUTE_SEED */
649         uint64_t seed;
650 };
651
652 /**
653  * struct tdb_attribute_stats - tdb operational statistics
654  *
655  * This attribute records statistics of various low-level TDB operations.
656  * This can be used to assist performance evaluation.
657  *
658  * New fields will be added at the end, hence the "size" argument which
659  * indicates how large your structure is.  If your size is larger than
660  * that known about by this version of tdb, the size will be reduced to
661  * the known structure size.  Thus you can detect older versions, and
662  * thus know that newer stats will not be updated.
663  */
664 struct tdb_attribute_stats {
665         struct tdb_attribute_base base; /* .attr = TDB_ATTRIBUTE_STATS */
666         size_t size; /* = sizeof(struct tdb_attribute_stats) */
667         uint64_t allocs;
668         uint64_t   alloc_subhash;
669         uint64_t   alloc_chain;
670         uint64_t   alloc_bucket_exact;
671         uint64_t   alloc_bucket_max;
672         uint64_t   alloc_leftover;
673         uint64_t   alloc_coalesce_tried;
674         uint64_t     alloc_coalesce_lockfail;
675         uint64_t     alloc_coalesce_race;
676         uint64_t     alloc_coalesce_succeeded;
677         uint64_t        alloc_coalesce_num_merged;
678         uint64_t compares;
679         uint64_t   compare_wrong_bucket;
680         uint64_t   compare_wrong_offsetbits;
681         uint64_t   compare_wrong_keylen;
682         uint64_t   compare_wrong_rechash;
683         uint64_t   compare_wrong_keycmp;
684         uint64_t expands;
685         uint64_t frees;
686         uint64_t locks;
687         uint64_t    lock_lowlevel;
688         uint64_t    lock_nonblock;
689 };
690
691 /**
692  * union tdb_attribute - tdb attributes.
693  *
694  * This represents all the known attributes.
695  *
696  * See also:
697  *      struct tdb_attribute_log, struct tdb_attribute_hash,
698  *      struct tdb_attribute_seed, struct tdb_attribute_stats.
699  */
700 union tdb_attribute {
701         struct tdb_attribute_base base;
702         struct tdb_attribute_log log;
703         struct tdb_attribute_hash hash;
704         struct tdb_attribute_seed seed;
705         struct tdb_attribute_stats stats;
706 };
707
708 #ifdef  __cplusplus
709 }
710 #endif
711
712 #endif /* tdb2.h */