4 Trivial Database 2: private types and prototypes
5 Copyright (C) Rusty Russell 2010
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.
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.
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/>.
23 #error You need ccan to build ntdb!
26 #include <ccan/compiler/compiler.h>
27 #include <ccan/likely/likely.h>
28 #include <ccan/endian/endian.h>
30 #ifdef HAVE_LIBREPLACE
32 #include "system/filesys.h"
33 #include "system/time.h"
34 #include "system/shmem.h"
35 #include "system/select.h"
36 #include "system/wait.h"
57 /* #define NTDB_TRACE 1 */
60 #define __STRING(x) #x
63 #ifndef __STRINGSTRING
64 #define __STRINGSTRING(x) __STRING(x)
68 #define __location__ __FILE__ ":" __STRINGSTRING(__LINE__)
71 typedef uint64_t ntdb_len_t
;
72 typedef uint64_t ntdb_off_t
;
74 #define NTDB_MAGIC_FOOD "NTDB file\n"
75 #define NTDB_VERSION ((uint64_t)(0x26011967 + 7))
76 #define NTDB_USED_MAGIC ((uint64_t)0x1999)
77 #define NTDB_HTABLE_MAGIC ((uint64_t)0x1888)
78 #define NTDB_CHAIN_MAGIC ((uint64_t)0x1777)
79 #define NTDB_FTABLE_MAGIC ((uint64_t)0x1666)
80 #define NTDB_CAP_MAGIC ((uint64_t)0x1555)
81 #define NTDB_FREE_MAGIC ((uint64_t)0xFE)
82 #define NTDB_HASH_MAGIC (0xA1ABE11A01092008ULL)
83 #define NTDB_RECOVERY_MAGIC (0xf53bc0e7ad124589ULL)
84 #define NTDB_RECOVERY_INVALID_MAGIC (0x0ULL)
86 /* Capability bits. */
87 #define NTDB_CAP_TYPE_MASK 0x1FFFFFFFFFFFFFFFULL
88 #define NTDB_CAP_NOCHECK 0x8000000000000000ULL
89 #define NTDB_CAP_NOWRITE 0x4000000000000000ULL
90 #define NTDB_CAP_NOOPEN 0x2000000000000000ULL
92 #define NTDB_OFF_IS_ERR(off) unlikely(off >= (ntdb_off_t)(long)NTDB_ERR_LAST)
93 #define NTDB_OFF_TO_ERR(off) ((enum NTDB_ERROR)(long)(off))
94 #define NTDB_ERR_TO_OFF(ecode) ((ntdb_off_t)(long)(ecode))
96 /* Packing errors into pointers and v.v. */
97 #define NTDB_PTR_IS_ERR(ptr) \
98 unlikely((unsigned long)(ptr) >= (unsigned long)NTDB_ERR_LAST)
99 #define NTDB_PTR_ERR(p) ((enum NTDB_ERROR)(long)(p))
100 #define NTDB_ERR_PTR(err) ((void *)(long)(err))
102 /* This doesn't really need to be pagesize, but we use it for similar
104 #define NTDB_PGSIZE 16384
106 /* Common case of returning true, false or -ve error. */
107 typedef int ntdb_bool_err
;
109 /* Prevent others from opening the file. */
110 #define NTDB_OPEN_LOCK 0
111 /* Expanding file. */
112 #define NTDB_EXPANSION_LOCK 2
113 /* Doing a transaction. */
114 #define NTDB_TRANSACTION_LOCK 8
115 /* Hash chain locks. */
116 #define NTDB_HASH_LOCK_START 64
118 /* Extend file by least 100 times larger than needed. */
119 #define NTDB_EXTENSION_FACTOR 100
121 /* We steal this many upper bits, giving a maximum offset of 64 exabytes. */
122 #define NTDB_OFF_UPPER_STEAL 8
124 /* And we use the lower bit, too. */
125 #define NTDB_OFF_CHAIN_BIT 0
127 /* Hash table sits just after the header. */
128 #define NTDB_HASH_OFFSET (sizeof(struct ntdb_header))
130 /* Additional features we understand. Currently: none. */
131 #define NTDB_FEATURE_MASK ((uint64_t)0)
133 /* The bit number where we store the extra hash bits. */
134 /* Convenience mask to get actual offset. */
135 #define NTDB_OFF_MASK \
136 (((1ULL << (64 - NTDB_OFF_UPPER_STEAL)) - 1) - (1<<NTDB_OFF_CHAIN_BIT))
138 /* How many buckets in a free list: see size_to_bucket(). */
139 #define NTDB_FREE_BUCKETS (64 - NTDB_OFF_UPPER_STEAL)
141 /* We have to be able to fit a free record here. */
142 #define NTDB_MIN_DATA_LEN \
143 (sizeof(struct ntdb_free_record) - sizeof(struct ntdb_used_record))
145 /* Indicates this entry is not on an flist (can happen during coalescing) */
146 #define NTDB_FTABLE_NONE ((1ULL << NTDB_OFF_UPPER_STEAL) - 1)
148 /* By default, hash is 64k bytes */
149 #define NTDB_DEFAULT_HBITS 13
151 struct ntdb_used_record
{
152 /* For on-disk compatibility, we avoid bitfields:
157 uint64_t magic_and_meta
;
158 /* The bottom key_len_bits*2 are key length, rest is data length. */
159 uint64_t key_and_data_len
;
162 static inline unsigned rec_key_bits(const struct ntdb_used_record
*r
)
164 return ((r
->magic_and_meta
>> 43) & ((1 << 5)-1)) * 2;
167 static inline uint64_t rec_key_length(const struct ntdb_used_record
*r
)
169 return r
->key_and_data_len
& ((1ULL << rec_key_bits(r
)) - 1);
172 static inline uint64_t rec_data_length(const struct ntdb_used_record
*r
)
174 return r
->key_and_data_len
>> rec_key_bits(r
);
177 static inline uint64_t rec_extra_padding(const struct ntdb_used_record
*r
)
179 return (r
->magic_and_meta
>> 11) & 0xFFFFFFFF;
182 static inline uint16_t rec_magic(const struct ntdb_used_record
*r
)
184 return (r
->magic_and_meta
>> 48);
187 struct ntdb_free_record
{
188 uint64_t magic_and_prev
; /* NTDB_OFF_UPPER_STEAL bits magic, then prev */
189 uint64_t ftable_and_len
; /* Len not counting these two fields. */
190 /* This is why the minimum record size is 8 bytes. */
194 static inline uint64_t frec_prev(const struct ntdb_free_record
*f
)
196 return f
->magic_and_prev
& ((1ULL << (64 - NTDB_OFF_UPPER_STEAL
)) - 1);
199 static inline uint64_t frec_magic(const struct ntdb_free_record
*f
)
201 return f
->magic_and_prev
>> (64 - NTDB_OFF_UPPER_STEAL
);
204 static inline uint64_t frec_len(const struct ntdb_free_record
*f
)
206 return f
->ftable_and_len
& ((1ULL << (64 - NTDB_OFF_UPPER_STEAL
))-1);
209 static inline unsigned frec_ftable(const struct ntdb_free_record
*f
)
211 return f
->ftable_and_len
>> (64 - NTDB_OFF_UPPER_STEAL
);
214 struct ntdb_recovery_record
{
216 /* Length of record (add this header to get total length). */
220 /* Old length of file before transaction. */
224 /* this is stored at the front of every database */
226 char magic_food
[64]; /* for /etc/magic */
227 /* FIXME: Make me 32 bit? */
228 uint64_t version
; /* version of the code */
229 uint64_t hash_bits
; /* bits for toplevel hash table. */
230 uint64_t hash_test
; /* result of hashing HASH_MAGIC. */
231 uint64_t hash_seed
; /* "random" seed written at creation time. */
232 ntdb_off_t free_table
; /* (First) free table. */
233 ntdb_off_t recovery
; /* Transaction recovery area. */
235 uint64_t features_used
; /* Features all writers understand */
236 uint64_t features_offered
; /* Features offered */
238 uint64_t seqnum
; /* Sequence number for NTDB_SEQNUM */
240 ntdb_off_t capabilities
; /* Optional linked list of capabilities. */
241 ntdb_off_t reserved
[22];
244 * Hash table is next:
246 * struct ntdb_used_record htable_hdr;
247 * ntdb_off_t htable[1 << hash_bits];
251 struct ntdb_freetable
{
252 struct ntdb_used_record hdr
;
254 ntdb_off_t buckets
[NTDB_FREE_BUCKETS
];
257 struct ntdb_capability
{
258 struct ntdb_used_record hdr
;
264 /* Information about a particular (locked) hash entry. */
266 /* Full hash value of entry. */
268 /* Start of hash table / chain. */
270 /* Number of entries in this table/chain. */
271 ntdb_off_t table_size
;
272 /* Bucket we (or an empty space) were found in. */
274 /* Old value that was in that entry (if not found) */
278 enum ntdb_lock_flags
{
279 /* WAIT == F_SETLKW, NOWAIT == F_SETLK */
280 NTDB_LOCK_NOWAIT
= 0,
282 /* If set, don't log an error on failure. */
284 /* If set, don't check for recovery (used by recovery code). */
285 NTDB_LOCK_NOCHECK
= 4,
289 struct ntdb_context
*owner
;
295 /* This is only needed for ntdb_access_commit, but used everywhere to
297 struct ntdb_access_hdr
{
298 struct ntdb_access_hdr
*next
;
305 /* How many are sharing us? */
308 /* Mmap (if any), or malloc (for NTDB_INTERNAL). */
311 /* How much space has been mapped (<= current file size) */
314 /* The file descriptor (-1 for NTDB_INTERNAL). */
317 /* Lock information */
319 struct ntdb_lock allrecord_lock
;
321 struct ntdb_lock
*lockrecs
;
323 /* Identity of this file. */
328 struct ntdb_methods
{
329 enum NTDB_ERROR (*tread
)(struct ntdb_context
*, ntdb_off_t
, void *,
331 enum NTDB_ERROR (*twrite
)(struct ntdb_context
*, ntdb_off_t
, const void *,
333 enum NTDB_ERROR (*oob
)(struct ntdb_context
*, ntdb_off_t
, ntdb_len_t
, bool);
334 enum NTDB_ERROR (*expand_file
)(struct ntdb_context
*, ntdb_len_t
);
335 void *(*direct
)(struct ntdb_context
*, ntdb_off_t
, size_t, bool);
336 ntdb_off_t (*read_off
)(struct ntdb_context
*ntdb
, ntdb_off_t off
);
337 enum NTDB_ERROR (*write_off
)(struct ntdb_context
*ntdb
, ntdb_off_t off
,
344 /* Get bits from a value. */
345 static inline uint32_t bits_from(uint64_t val
, unsigned start
, unsigned num
)
348 return (val
>> start
) & ((1U << num
) - 1);
353 uint32_t ntdb_jenkins_hash(const void *key
, size_t length
, uint32_t seed
,
356 enum NTDB_ERROR
first_in_hash(struct ntdb_context
*ntdb
,
358 NTDB_DATA
*kbuf
, size_t *dlen
);
360 enum NTDB_ERROR
next_in_hash(struct ntdb_context
*ntdb
,
362 NTDB_DATA
*kbuf
, size_t *dlen
);
364 /* Hash random memory. */
365 uint32_t ntdb_hash(struct ntdb_context
*ntdb
, const void *ptr
, size_t len
);
367 /* Find and lock a hash entry (or where it would be). */
368 ntdb_off_t
find_and_lock(struct ntdb_context
*ntdb
,
372 struct ntdb_used_record
*rec
);
374 enum NTDB_ERROR
replace_in_hash(struct ntdb_context
*ntdb
,
375 const struct hash_info
*h
,
378 enum NTDB_ERROR
add_to_hash(struct ntdb_context
*ntdb
,
379 const struct hash_info
*h
,
382 enum NTDB_ERROR
delete_from_hash(struct ntdb_context
*ntdb
,
383 const struct hash_info
*h
);
386 bool is_subhash(ntdb_off_t val
);
387 enum NTDB_ERROR
unknown_capability(struct ntdb_context
*ntdb
, const char *caller
,
391 enum NTDB_ERROR
ntdb_ftable_init(struct ntdb_context
*ntdb
);
393 /* check.c needs these to iterate through free lists. */
394 ntdb_off_t
first_ftable(struct ntdb_context
*ntdb
);
395 ntdb_off_t
next_ftable(struct ntdb_context
*ntdb
, ntdb_off_t ftable
);
397 /* This returns space or -ve error number. */
398 ntdb_off_t
alloc(struct ntdb_context
*ntdb
, size_t keylen
, size_t datalen
,
399 unsigned magic
, bool growing
);
401 /* Put this record in a free list. */
402 enum NTDB_ERROR
add_free_record(struct ntdb_context
*ntdb
,
403 ntdb_off_t off
, ntdb_len_t len_with_header
,
404 enum ntdb_lock_flags waitflag
,
407 /* Set up header for a used/ftable/htable/chain/capability record. */
408 enum NTDB_ERROR
set_header(struct ntdb_context
*ntdb
,
409 struct ntdb_used_record
*rec
,
410 unsigned magic
, uint64_t keylen
, uint64_t datalen
,
413 /* Used by ntdb_check to verify. */
414 unsigned int size_to_bucket(ntdb_len_t data_len
);
415 ntdb_off_t
bucket_off(ntdb_off_t ftable_off
, unsigned bucket
);
417 /* Used by ntdb_summary */
418 ntdb_off_t
dead_space(struct ntdb_context
*ntdb
, ntdb_off_t off
);
420 /* Adjust expansion, used by create_recovery_area */
421 ntdb_off_t
ntdb_expand_adjust(ntdb_off_t map_size
, ntdb_off_t size
);
424 /* Initialize ntdb->methods. */
425 void ntdb_io_init(struct ntdb_context
*ntdb
);
427 /* Convert endian of the buffer if required. */
428 void *ntdb_convert(const struct ntdb_context
*ntdb
, void *buf
, ntdb_len_t size
);
430 /* Unmap and try to map the ntdb. */
431 void ntdb_munmap(struct ntdb_file
*file
);
432 enum NTDB_ERROR
ntdb_mmap(struct ntdb_context
*ntdb
);
434 /* Either alloc a copy, or give direct access. Release frees or noop. */
435 const void *ntdb_access_read(struct ntdb_context
*ntdb
,
436 ntdb_off_t off
, ntdb_len_t len
, bool convert
);
437 void *ntdb_access_write(struct ntdb_context
*ntdb
,
438 ntdb_off_t off
, ntdb_len_t len
, bool convert
);
440 /* Release result of ntdb_access_read/write. */
441 void ntdb_access_release(struct ntdb_context
*ntdb
, const void *p
);
442 /* Commit result of ntdb_acces_write. */
443 enum NTDB_ERROR
ntdb_access_commit(struct ntdb_context
*ntdb
, void *p
);
445 /* Clear an ondisk area. */
446 enum NTDB_ERROR
zero_out(struct ntdb_context
*ntdb
, ntdb_off_t off
, ntdb_len_t len
);
448 /* Return a non-zero offset between >= start < end in this array (or end). */
449 ntdb_off_t
ntdb_find_nonzero_off(struct ntdb_context
*ntdb
,
454 /* Return a zero offset in this array, or num. */
455 ntdb_off_t
ntdb_find_zero_off(struct ntdb_context
*ntdb
, ntdb_off_t off
,
458 /* Allocate and make a copy of some offset. */
459 void *ntdb_alloc_read(struct ntdb_context
*ntdb
, ntdb_off_t offset
, ntdb_len_t len
);
461 /* Writes a converted copy of a record. */
462 enum NTDB_ERROR
ntdb_write_convert(struct ntdb_context
*ntdb
, ntdb_off_t off
,
463 const void *rec
, size_t len
);
465 /* Reads record and converts it */
466 enum NTDB_ERROR
ntdb_read_convert(struct ntdb_context
*ntdb
, ntdb_off_t off
,
467 void *rec
, size_t len
);
469 /* Bump the seqnum (caller checks for ntdb->flags & NTDB_SEQNUM) */
470 void ntdb_inc_seqnum(struct ntdb_context
*ntdb
);
473 /* Print message because another ntdb owns a lock we want. */
474 enum NTDB_ERROR
owner_conflict(struct ntdb_context
*ntdb
, const char *call
);
476 /* If we fork, we no longer really own locks. */
477 bool check_lock_pid(struct ntdb_context
*ntdb
, const char *call
, bool log
);
479 /* Lock/unlock a hash bucket. */
480 enum NTDB_ERROR
ntdb_lock_hash(struct ntdb_context
*ntdb
,
481 unsigned int hbucket
,
483 enum NTDB_ERROR
ntdb_unlock_hash(struct ntdb_context
*ntdb
,
484 unsigned int hash
, int ltype
);
486 /* For closing the file. */
487 void ntdb_lock_cleanup(struct ntdb_context
*ntdb
);
489 /* Lock/unlock a particular free bucket. */
490 enum NTDB_ERROR
ntdb_lock_free_bucket(struct ntdb_context
*ntdb
, ntdb_off_t b_off
,
491 enum ntdb_lock_flags waitflag
);
492 void ntdb_unlock_free_bucket(struct ntdb_context
*ntdb
, ntdb_off_t b_off
);
494 /* Serialize transaction start. */
495 enum NTDB_ERROR
ntdb_transaction_lock(struct ntdb_context
*ntdb
, int ltype
);
496 void ntdb_transaction_unlock(struct ntdb_context
*ntdb
, int ltype
);
498 /* Do we have any hash locks (ie. via ntdb_chainlock) ? */
499 bool ntdb_has_hash_locks(struct ntdb_context
*ntdb
);
501 /* Lock entire database. */
502 enum NTDB_ERROR
ntdb_allrecord_lock(struct ntdb_context
*ntdb
, int ltype
,
503 enum ntdb_lock_flags flags
, bool upgradable
);
504 void ntdb_allrecord_unlock(struct ntdb_context
*ntdb
, int ltype
);
505 enum NTDB_ERROR
ntdb_allrecord_upgrade(struct ntdb_context
*ntdb
, off_t start
);
507 /* Serialize db open. */
508 enum NTDB_ERROR
ntdb_lock_open(struct ntdb_context
*ntdb
,
509 int ltype
, enum ntdb_lock_flags flags
);
510 void ntdb_unlock_open(struct ntdb_context
*ntdb
, int ltype
);
511 bool ntdb_has_open_lock(struct ntdb_context
*ntdb
);
513 /* Serialize db expand. */
514 enum NTDB_ERROR
ntdb_lock_expand(struct ntdb_context
*ntdb
, int ltype
);
515 void ntdb_unlock_expand(struct ntdb_context
*ntdb
, int ltype
);
516 bool ntdb_has_expansion_lock(struct ntdb_context
*ntdb
);
518 /* If it needs recovery, grab all the locks and do it. */
519 enum NTDB_ERROR
ntdb_lock_and_recover(struct ntdb_context
*ntdb
);
521 /* Default lock and unlock functions. */
522 int ntdb_fcntl_lock(int fd
, int rw
, off_t off
, off_t len
, bool waitflag
, void *);
523 int ntdb_fcntl_unlock(int fd
, int rw
, off_t off
, off_t len
, void *);
526 enum NTDB_ERROR
ntdb_transaction_recover(struct ntdb_context
*ntdb
);
527 ntdb_bool_err
ntdb_needs_recovery(struct ntdb_context
*ntdb
);
529 struct ntdb_context
{
530 /* Single list of all TDBs, to detect multiple opens. */
531 struct ntdb_context
*next
;
533 /* Filename of the database. */
536 /* Logging function */
537 void (*log_fn
)(struct ntdb_context
*ntdb
,
538 enum ntdb_log_level level
,
539 enum NTDB_ERROR ecode
,
544 /* Open flags passed to ntdb_open. */
547 /* low level (fnctl) lock functions. */
548 int (*lock_fn
)(int fd
, int rw
, off_t off
, off_t len
, bool w
, void *);
549 int (*unlock_fn
)(int fd
, int rw
, off_t off
, off_t len
, void *);
552 /* the ntdb flags passed to ntdb_open. */
555 /* Our statistics. */
556 struct ntdb_attribute_stats stats
;
558 /* The actual file information */
559 struct ntdb_file
*file
;
562 uint32_t (*hash_fn
)(const void *key
, size_t len
, uint32_t seed
, void *);
565 /* Bits in toplevel hash table. */
566 unsigned int hash_bits
;
568 /* Allocate and free functions. */
569 void *(*alloc_fn
)(const void *owner
, size_t len
, void *priv_data
);
570 void *(*expand_fn
)(void *old
, size_t newlen
, void *priv_data
);
571 void (*free_fn
)(void *old
, void *priv_data
);
574 /* Our open hook, if any. */
575 enum NTDB_ERROR (*openhook
)(int fd
, void *data
);
578 /* Are we accessing directly? (debugging check). */
581 /* Set if we are in a transaction. */
582 struct ntdb_transaction
*transaction
;
584 /* What free table are we using? */
585 ntdb_off_t ftable_off
;
588 /* IO methods: changes for transactions. */
589 const struct ntdb_methods
*io
;
591 /* Direct access information */
592 struct ntdb_access_hdr
*access
;
596 enum NTDB_ERROR COLD
PRINTF_FMT(4, 5)
597 ntdb_logerr(struct ntdb_context
*ntdb
,
598 enum NTDB_ERROR ecode
,
599 enum ntdb_log_level level
,
600 const char *fmt
, ...);
602 static inline enum NTDB_ERROR
ntdb_oob(struct ntdb_context
*ntdb
,
603 ntdb_off_t off
, ntdb_len_t len
,
606 if (likely(off
+ len
>= off
)
607 && likely(off
+ len
<= ntdb
->file
->map_size
)
611 return ntdb
->io
->oob(ntdb
, off
, len
, probe
);
614 /* Convenience routine to get an offset. */
615 static inline ntdb_off_t
ntdb_read_off(struct ntdb_context
*ntdb
,
618 return ntdb
->io
->read_off(ntdb
, off
);
621 /* Write an offset at an offset. */
622 static inline enum NTDB_ERROR
ntdb_write_off(struct ntdb_context
*ntdb
,
626 return ntdb
->io
->write_off(ntdb
, off
, val
);
630 void ntdb_trace(struct ntdb_context
*ntdb
, const char *op
);
631 void ntdb_trace_seqnum(struct ntdb_context
*ntdb
, uint32_t seqnum
, const char *op
);
632 void ntdb_trace_open(struct ntdb_context
*ntdb
, const char *op
,
633 unsigned hash_size
, unsigned ntdb_flags
, unsigned open_flags
);
634 void ntdb_trace_ret(struct ntdb_context
*ntdb
, const char *op
, int ret
);
635 void ntdb_trace_retrec(struct ntdb_context
*ntdb
, const char *op
, NTDB_DATA ret
);
636 void ntdb_trace_1rec(struct ntdb_context
*ntdb
, const char *op
,
638 void ntdb_trace_1rec_ret(struct ntdb_context
*ntdb
, const char *op
,
639 NTDB_DATA rec
, int ret
);
640 void ntdb_trace_1rec_retrec(struct ntdb_context
*ntdb
, const char *op
,
641 NTDB_DATA rec
, NTDB_DATA ret
);
642 void ntdb_trace_2rec_flag_ret(struct ntdb_context
*ntdb
, const char *op
,
643 NTDB_DATA rec1
, NTDB_DATA rec2
, unsigned flag
,
645 void ntdb_trace_2rec_retrec(struct ntdb_context
*ntdb
, const char *op
,
646 NTDB_DATA rec1
, NTDB_DATA rec2
, NTDB_DATA ret
);
648 #define ntdb_trace(ntdb, op)
649 #define ntdb_trace_seqnum(ntdb, seqnum, op)
650 #define ntdb_trace_open(ntdb, op, hash_size, ntdb_flags, open_flags)
651 #define ntdb_trace_ret(ntdb, op, ret)
652 #define ntdb_trace_retrec(ntdb, op, ret)
653 #define ntdb_trace_1rec(ntdb, op, rec)
654 #define ntdb_trace_1rec_ret(ntdb, op, rec, ret)
655 #define ntdb_trace_1rec_retrec(ntdb, op, rec, ret)
656 #define ntdb_trace_2rec_flag_ret(ntdb, op, rec1, rec2, flag, ret)
657 #define ntdb_trace_2rec_retrec(ntdb, op, rec1, rec2, ret)
658 #endif /* !NTDB_TRACE */