/*
Trivial Database 2: opening and closing TDBs
Copyright (C) Rusty Russell 2010
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see .
*/
#include "private.h"
#include
#include
/* all tdbs, to detect double-opens (fcntl file don't nest!) */
static struct ntdb_context *tdbs = NULL;
static struct ntdb_file *find_file(dev_t device, ino_t ino)
{
struct ntdb_context *i;
for (i = tdbs; i; i = i->next) {
if (i->file->device == device && i->file->inode == ino) {
i->file->refcnt++;
return i->file;
}
}
return NULL;
}
static bool read_all(int fd, void *buf, size_t len)
{
while (len) {
ssize_t ret;
ret = read(fd, buf, len);
if (ret < 0)
return false;
if (ret == 0) {
/* ETOOSHORT? */
errno = EWOULDBLOCK;
return false;
}
buf = (char *)buf + ret;
len -= ret;
}
return true;
}
static uint64_t random_number(struct ntdb_context *ntdb)
{
int fd;
uint64_t ret = 0;
struct timeval now;
fd = open("/dev/urandom", O_RDONLY);
if (fd >= 0) {
if (read_all(fd, &ret, sizeof(ret))) {
close(fd);
return ret;
}
close(fd);
}
/* FIXME: Untested! Based on Wikipedia protocol description! */
fd = open("/dev/egd-pool", O_RDWR);
if (fd >= 0) {
/* Command is 1, next byte is size we want to read. */
char cmd[2] = { 1, sizeof(uint64_t) };
if (write(fd, cmd, sizeof(cmd)) == sizeof(cmd)) {
char reply[1 + sizeof(uint64_t)];
int r = read(fd, reply, sizeof(reply));
if (r > 1) {
/* Copy at least some bytes. */
memcpy(&ret, reply+1, r - 1);
if (reply[0] == sizeof(uint64_t)
&& r == sizeof(reply)) {
close(fd);
return ret;
}
}
}
close(fd);
}
/* Fallback: pid and time. */
gettimeofday(&now, NULL);
ret = getpid() * 100132289ULL + now.tv_sec * 1000000ULL + now.tv_usec;
ntdb_logerr(ntdb, NTDB_SUCCESS, NTDB_LOG_WARNING,
"ntdb_open: random from getpid and time");
return ret;
}
static void ntdb_context_init(struct ntdb_context *ntdb)
{
/* Initialize the NTDB fields here */
ntdb_io_init(ntdb);
ntdb->direct_access = 0;
ntdb->transaction = NULL;
ntdb->access = NULL;
}
struct new_database {
struct ntdb_header hdr;
struct ntdb_freetable ftable;
struct ntdb_free_record remainder;
};
/* initialise a new database */
static enum NTDB_ERROR ntdb_new_database(struct ntdb_context *ntdb,
struct ntdb_attribute_seed *seed,
struct ntdb_header *hdr)
{
/* We make it up in memory, then write it out if not internal */
struct new_database *newdb;
unsigned int magic_len;
ssize_t rlen;
size_t dbsize, remaindersize;
enum NTDB_ERROR ecode;
/* Always make db a multiple of NTDB_PGSIZE */
dbsize = (sizeof(*newdb) + NTDB_PGSIZE-1) & ~(NTDB_PGSIZE-1);
remaindersize = dbsize - sizeof(*newdb);
newdb = malloc(dbsize);
if (!newdb) {
return ntdb_logerr(ntdb, NTDB_ERR_OOM, NTDB_LOG_ERROR,
"ntdb_new_database: failed to allocate");
}
/* Fill in the header */
newdb->hdr.version = NTDB_VERSION;
if (seed)
newdb->hdr.hash_seed = seed->seed;
else
newdb->hdr.hash_seed = random_number(ntdb);
newdb->hdr.hash_test = NTDB_HASH_MAGIC;
newdb->hdr.hash_test = ntdb->hash_fn(&newdb->hdr.hash_test,
sizeof(newdb->hdr.hash_test),
newdb->hdr.hash_seed,
ntdb->hash_data);
newdb->hdr.recovery = 0;
newdb->hdr.features_used = newdb->hdr.features_offered = NTDB_FEATURE_MASK;
newdb->hdr.seqnum = 0;
newdb->hdr.capabilities = 0;
memset(newdb->hdr.reserved, 0, sizeof(newdb->hdr.reserved));
/* Initial hashes are empty. */
memset(newdb->hdr.hashtable, 0, sizeof(newdb->hdr.hashtable));
/* Free is empty. */
newdb->hdr.free_table = offsetof(struct new_database, ftable);
memset(&newdb->ftable, 0, sizeof(newdb->ftable));
ecode = set_header(NULL, &newdb->ftable.hdr, NTDB_FTABLE_MAGIC, 0,
sizeof(newdb->ftable) - sizeof(newdb->ftable.hdr),
sizeof(newdb->ftable) - sizeof(newdb->ftable.hdr),
0);
if (ecode != NTDB_SUCCESS) {
goto out;
}
/* Rest of database is a free record, containing junk. */
newdb->remainder.ftable_and_len
= (remaindersize + sizeof(newdb->remainder)
- sizeof(struct ntdb_used_record));
newdb->remainder.next = 0;
newdb->remainder.magic_and_prev
= (NTDB_FREE_MAGIC << (64-NTDB_OFF_UPPER_STEAL))
| offsetof(struct new_database, remainder);
memset(&newdb->remainder + 1, 0x43, remaindersize);
/* Put in our single free entry. */
newdb->ftable.buckets[size_to_bucket(remaindersize)] =
offsetof(struct new_database, remainder);
/* Magic food */
memset(newdb->hdr.magic_food, 0, sizeof(newdb->hdr.magic_food));
strcpy(newdb->hdr.magic_food, NTDB_MAGIC_FOOD);
/* This creates an endian-converted database, as if read from disk */
magic_len = sizeof(newdb->hdr.magic_food);
ntdb_convert(ntdb,
(char *)&newdb->hdr + magic_len,
sizeof(*newdb) - magic_len);
*hdr = newdb->hdr;
if (ntdb->flags & NTDB_INTERNAL) {
ntdb->file->map_size = dbsize;
ntdb->file->map_ptr = newdb;
return NTDB_SUCCESS;
}
if (lseek(ntdb->file->fd, 0, SEEK_SET) == -1) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_new_database:"
" failed to seek: %s", strerror(errno));
goto out;
}
if (ftruncate(ntdb->file->fd, 0) == -1) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_new_database:"
" failed to truncate: %s", strerror(errno));
goto out;
}
rlen = write(ntdb->file->fd, newdb, dbsize);
if (rlen != dbsize) {
if (rlen >= 0)
errno = ENOSPC;
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_new_database: %zi writing header: %s",
rlen, strerror(errno));
goto out;
}
out:
free(newdb);
return ecode;
}
static enum NTDB_ERROR ntdb_new_file(struct ntdb_context *ntdb)
{
ntdb->file = malloc(sizeof(*ntdb->file));
if (!ntdb->file)
return ntdb_logerr(ntdb, NTDB_ERR_OOM, NTDB_LOG_ERROR,
"ntdb_open: cannot alloc ntdb_file structure");
ntdb->file->num_lockrecs = 0;
ntdb->file->lockrecs = NULL;
ntdb->file->allrecord_lock.count = 0;
ntdb->file->refcnt = 1;
ntdb->file->map_ptr = NULL;
return NTDB_SUCCESS;
}
_PUBLIC_ enum NTDB_ERROR ntdb_set_attribute(struct ntdb_context *ntdb,
const union ntdb_attribute *attr)
{
switch (attr->base.attr) {
case NTDB_ATTRIBUTE_LOG:
ntdb->log_fn = attr->log.fn;
ntdb->log_data = attr->log.data;
break;
case NTDB_ATTRIBUTE_HASH:
case NTDB_ATTRIBUTE_SEED:
case NTDB_ATTRIBUTE_OPENHOOK:
return ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_set_attribute:"
" cannot set %s after opening",
attr->base.attr == NTDB_ATTRIBUTE_HASH
? "NTDB_ATTRIBUTE_HASH"
: attr->base.attr == NTDB_ATTRIBUTE_SEED
? "NTDB_ATTRIBUTE_SEED"
: "NTDB_ATTRIBUTE_OPENHOOK");
case NTDB_ATTRIBUTE_STATS:
return ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_set_attribute:"
" cannot set NTDB_ATTRIBUTE_STATS");
case NTDB_ATTRIBUTE_FLOCK:
ntdb->lock_fn = attr->flock.lock;
ntdb->unlock_fn = attr->flock.unlock;
ntdb->lock_data = attr->flock.data;
break;
default:
return ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_set_attribute:"
" unknown attribute type %u",
attr->base.attr);
}
return NTDB_SUCCESS;
}
_PUBLIC_ enum NTDB_ERROR ntdb_get_attribute(struct ntdb_context *ntdb,
union ntdb_attribute *attr)
{
switch (attr->base.attr) {
case NTDB_ATTRIBUTE_LOG:
if (!ntdb->log_fn)
return NTDB_ERR_NOEXIST;
attr->log.fn = ntdb->log_fn;
attr->log.data = ntdb->log_data;
break;
case NTDB_ATTRIBUTE_HASH:
attr->hash.fn = ntdb->hash_fn;
attr->hash.data = ntdb->hash_data;
break;
case NTDB_ATTRIBUTE_SEED:
attr->seed.seed = ntdb->hash_seed;
break;
case NTDB_ATTRIBUTE_OPENHOOK:
if (!ntdb->openhook)
return NTDB_ERR_NOEXIST;
attr->openhook.fn = ntdb->openhook;
attr->openhook.data = ntdb->openhook_data;
break;
case NTDB_ATTRIBUTE_STATS: {
size_t size = attr->stats.size;
if (size > ntdb->stats.size)
size = ntdb->stats.size;
memcpy(&attr->stats, &ntdb->stats, size);
break;
}
case NTDB_ATTRIBUTE_FLOCK:
attr->flock.lock = ntdb->lock_fn;
attr->flock.unlock = ntdb->unlock_fn;
attr->flock.data = ntdb->lock_data;
break;
default:
return ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_get_attribute:"
" unknown attribute type %u",
attr->base.attr);
}
attr->base.next = NULL;
return NTDB_SUCCESS;
}
_PUBLIC_ void ntdb_unset_attribute(struct ntdb_context *ntdb,
enum ntdb_attribute_type type)
{
switch (type) {
case NTDB_ATTRIBUTE_LOG:
ntdb->log_fn = NULL;
break;
case NTDB_ATTRIBUTE_OPENHOOK:
ntdb->openhook = NULL;
break;
case NTDB_ATTRIBUTE_HASH:
case NTDB_ATTRIBUTE_SEED:
ntdb_logerr(ntdb, NTDB_ERR_EINVAL, NTDB_LOG_USE_ERROR,
"ntdb_unset_attribute: cannot unset %s after opening",
type == NTDB_ATTRIBUTE_HASH
? "NTDB_ATTRIBUTE_HASH"
: "NTDB_ATTRIBUTE_SEED");
break;
case NTDB_ATTRIBUTE_STATS:
ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_unset_attribute:"
"cannot unset NTDB_ATTRIBUTE_STATS");
break;
case NTDB_ATTRIBUTE_FLOCK:
ntdb->lock_fn = ntdb_fcntl_lock;
ntdb->unlock_fn = ntdb_fcntl_unlock;
break;
default:
ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_unset_attribute: unknown attribute type %u",
type);
}
}
/* The top three bits of the capability tell us whether it matters. */
enum NTDB_ERROR unknown_capability(struct ntdb_context *ntdb, const char *caller,
ntdb_off_t type)
{
if (type & NTDB_CAP_NOOPEN) {
return ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"%s: file has unknown capability %llu",
caller, type & NTDB_CAP_NOOPEN);
}
if ((type & NTDB_CAP_NOWRITE) && !(ntdb->flags & NTDB_RDONLY)) {
return ntdb_logerr(ntdb, NTDB_ERR_RDONLY, NTDB_LOG_ERROR,
"%s: file has unknown capability %llu"
" (cannot write to it)",
caller, type & NTDB_CAP_NOOPEN);
}
if (type & NTDB_CAP_NOCHECK) {
ntdb->flags |= NTDB_CANT_CHECK;
}
return NTDB_SUCCESS;
}
static enum NTDB_ERROR capabilities_ok(struct ntdb_context *ntdb,
ntdb_off_t capabilities)
{
ntdb_off_t off, next;
enum NTDB_ERROR ecode = NTDB_SUCCESS;
const struct ntdb_capability *cap;
/* Check capability list. */
for (off = capabilities; off && ecode == NTDB_SUCCESS; off = next) {
cap = ntdb_access_read(ntdb, off, sizeof(*cap), true);
if (NTDB_PTR_IS_ERR(cap)) {
return NTDB_PTR_ERR(cap);
}
switch (cap->type & NTDB_CAP_TYPE_MASK) {
/* We don't understand any capabilities (yet). */
default:
ecode = unknown_capability(ntdb, "ntdb_open", cap->type);
}
next = cap->next;
ntdb_access_release(ntdb, cap);
}
return ecode;
}
_PUBLIC_ struct ntdb_context *ntdb_open(const char *name, int ntdb_flags,
int open_flags, mode_t mode,
union ntdb_attribute *attr)
{
struct ntdb_context *ntdb;
struct stat st;
int saved_errno = 0;
uint64_t hash_test;
unsigned v;
ssize_t rlen;
struct ntdb_header hdr;
struct ntdb_attribute_seed *seed = NULL;
ntdb_bool_err berr;
enum NTDB_ERROR ecode;
int openlock;
ntdb = malloc(sizeof(*ntdb) + (name ? strlen(name) + 1 : 0));
if (!ntdb) {
/* Can't log this */
errno = ENOMEM;
return NULL;
}
/* Set name immediately for logging functions. */
if (name) {
ntdb->name = strcpy((char *)(ntdb + 1), name);
} else {
ntdb->name = NULL;
}
ntdb->flags = ntdb_flags;
ntdb->log_fn = NULL;
ntdb->open_flags = open_flags;
ntdb->file = NULL;
ntdb->openhook = NULL;
ntdb->lock_fn = ntdb_fcntl_lock;
ntdb->unlock_fn = ntdb_fcntl_unlock;
ntdb->hash_fn = ntdb_jenkins_hash;
memset(&ntdb->stats, 0, sizeof(ntdb->stats));
ntdb->stats.base.attr = NTDB_ATTRIBUTE_STATS;
ntdb->stats.size = sizeof(ntdb->stats);
while (attr) {
switch (attr->base.attr) {
case NTDB_ATTRIBUTE_HASH:
ntdb->hash_fn = attr->hash.fn;
ntdb->hash_data = attr->hash.data;
break;
case NTDB_ATTRIBUTE_SEED:
seed = &attr->seed;
break;
case NTDB_ATTRIBUTE_OPENHOOK:
ntdb->openhook = attr->openhook.fn;
ntdb->openhook_data = attr->openhook.data;
break;
default:
/* These are set as normal. */
ecode = ntdb_set_attribute(ntdb, attr);
if (ecode != NTDB_SUCCESS)
goto fail;
}
attr = attr->base.next;
}
if (ntdb_flags & ~(NTDB_INTERNAL | NTDB_NOLOCK | NTDB_NOMMAP | NTDB_CONVERT
| NTDB_NOSYNC | NTDB_SEQNUM | NTDB_ALLOW_NESTING
| NTDB_RDONLY)) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_EINVAL, NTDB_LOG_USE_ERROR,
"ntdb_open: unknown flags %u", ntdb_flags);
goto fail;
}
if (seed) {
if (!(ntdb_flags & NTDB_INTERNAL) && !(open_flags & O_CREAT)) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_open:"
" cannot set NTDB_ATTRIBUTE_SEED"
" without O_CREAT.");
goto fail;
}
}
if ((open_flags & O_ACCMODE) == O_WRONLY) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_EINVAL, NTDB_LOG_USE_ERROR,
"ntdb_open: can't open ntdb %s write-only",
name);
goto fail;
}
if ((open_flags & O_ACCMODE) == O_RDONLY) {
openlock = F_RDLCK;
ntdb->flags |= NTDB_RDONLY;
} else {
if (ntdb_flags & NTDB_RDONLY) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_EINVAL,
NTDB_LOG_USE_ERROR,
"ntdb_open: can't use NTDB_RDONLY"
" without O_RDONLY");
goto fail;
}
openlock = F_WRLCK;
}
/* internal databases don't need any of the rest. */
if (ntdb->flags & NTDB_INTERNAL) {
ntdb->flags |= (NTDB_NOLOCK | NTDB_NOMMAP);
ecode = ntdb_new_file(ntdb);
if (ecode != NTDB_SUCCESS) {
goto fail;
}
ntdb->file->fd = -1;
ecode = ntdb_new_database(ntdb, seed, &hdr);
if (ecode == NTDB_SUCCESS) {
ntdb_convert(ntdb, &hdr.hash_seed,
sizeof(hdr.hash_seed));
ntdb->hash_seed = hdr.hash_seed;
ntdb_context_init(ntdb);
ntdb_ftable_init(ntdb);
}
if (ecode != NTDB_SUCCESS) {
goto fail;
}
return ntdb;
}
if (stat(name, &st) != -1)
ntdb->file = find_file(st.st_dev, st.st_ino);
if (!ntdb->file) {
ecode = ntdb_new_file(ntdb);
if (ecode != NTDB_SUCCESS) {
goto fail;
}
/* Set this now, as ntdb_nest_lock examines it. */
ntdb->file->map_size = 0;
if ((ntdb->file->fd = open(name, open_flags, mode)) == -1) {
enum ntdb_log_level lvl;
/* errno set by open(2) */
saved_errno = errno;
/* Probing for files like this is a common pattern. */
if (!(open_flags & O_CREAT) && errno == ENOENT) {
lvl = NTDB_LOG_WARNING;
} else {
lvl = NTDB_LOG_ERROR;
}
ntdb_logerr(ntdb, NTDB_ERR_IO, lvl,
"ntdb_open: could not open file %s: %s",
name, strerror(errno));
goto fail_errno;
}
/* ensure there is only one process initialising at once:
* do it immediately to reduce the create/openlock race. */
ecode = ntdb_lock_open(ntdb, openlock,
NTDB_LOCK_WAIT|NTDB_LOCK_NOCHECK);
if (ecode != NTDB_SUCCESS) {
saved_errno = errno;
goto fail_errno;
}
/* on exec, don't inherit the fd */
v = fcntl(ntdb->file->fd, F_GETFD, 0);
fcntl(ntdb->file->fd, F_SETFD, v | FD_CLOEXEC);
if (fstat(ntdb->file->fd, &st) == -1) {
saved_errno = errno;
ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open: could not stat open %s: %s",
name, strerror(errno));
goto fail_errno;
}
ntdb->file->device = st.st_dev;
ntdb->file->inode = st.st_ino;
} else {
/* ensure there is only one process initialising at once */
ecode = ntdb_lock_open(ntdb, openlock,
NTDB_LOCK_WAIT|NTDB_LOCK_NOCHECK);
if (ecode != NTDB_SUCCESS) {
saved_errno = errno;
goto fail_errno;
}
}
/* call their open hook if they gave us one. */
if (ntdb->openhook) {
ecode = ntdb->openhook(ntdb->file->fd, ntdb->openhook_data);
if (ecode != NTDB_SUCCESS) {
ntdb_logerr(ntdb, ecode, NTDB_LOG_ERROR,
"ntdb_open: open hook failed");
goto fail;
}
open_flags |= O_CREAT;
}
/* If they used O_TRUNC, read will return 0. */
rlen = pread(ntdb->file->fd, &hdr, sizeof(hdr), 0);
if (rlen == 0 && (open_flags & O_CREAT)) {
ecode = ntdb_new_database(ntdb, seed, &hdr);
if (ecode != NTDB_SUCCESS) {
goto fail;
}
} else if (rlen < 0) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open: error %s reading %s",
strerror(errno), name);
goto fail;
} else if (rlen < sizeof(hdr)
|| strcmp(hdr.magic_food, NTDB_MAGIC_FOOD) != 0) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open: %s is not a ntdb file", name);
goto fail;
}
if (hdr.version != NTDB_VERSION) {
if (hdr.version == bswap_64(NTDB_VERSION))
ntdb->flags |= NTDB_CONVERT;
else {
/* wrong version */
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open:"
" %s is unknown version 0x%llx",
name, (long long)hdr.version);
goto fail;
}
} else if (ntdb->flags & NTDB_CONVERT) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open:"
" %s does not need NTDB_CONVERT",
name);
goto fail;
}
ntdb_context_init(ntdb);
ntdb_convert(ntdb, &hdr, sizeof(hdr));
ntdb->hash_seed = hdr.hash_seed;
hash_test = NTDB_HASH_MAGIC;
hash_test = ntdb_hash(ntdb, &hash_test, sizeof(hash_test));
if (hdr.hash_test != hash_test) {
/* wrong hash variant */
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open:"
" %s uses a different hash function",
name);
goto fail;
}
ecode = capabilities_ok(ntdb, hdr.capabilities);
if (ecode != NTDB_SUCCESS) {
goto fail;
}
/* Clear any features we don't understand. */
if ((open_flags & O_ACCMODE) != O_RDONLY) {
hdr.features_used &= NTDB_FEATURE_MASK;
ecode = ntdb_write_convert(ntdb, offsetof(struct ntdb_header,
features_used),
&hdr.features_used,
sizeof(hdr.features_used));
if (ecode != NTDB_SUCCESS)
goto fail;
}
ntdb_unlock_open(ntdb, openlock);
/* This makes sure we have current map_size and mmap. */
ecode = ntdb->io->oob(ntdb, ntdb->file->map_size, 1, true);
if (unlikely(ecode != NTDB_SUCCESS))
goto fail;
if (ntdb->file->map_size % NTDB_PGSIZE != 0) {
ecode = ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open:"
" %s size %llu isn't a multiple of %u",
name, (long long)ntdb->file->map_size,
NTDB_PGSIZE);
goto fail;
}
/* Now it's fully formed, recover if necessary. */
berr = ntdb_needs_recovery(ntdb);
if (unlikely(berr != false)) {
if (berr < 0) {
ecode = NTDB_OFF_TO_ERR(berr);
goto fail;
}
ecode = ntdb_lock_and_recover(ntdb);
if (ecode != NTDB_SUCCESS) {
goto fail;
}
}
ecode = ntdb_ftable_init(ntdb);
if (ecode != NTDB_SUCCESS) {
goto fail;
}
ntdb->next = tdbs;
tdbs = ntdb;
return ntdb;
fail:
/* Map ecode to some logical errno. */
switch (NTDB_ERR_TO_OFF(ecode)) {
case NTDB_ERR_TO_OFF(NTDB_ERR_CORRUPT):
case NTDB_ERR_TO_OFF(NTDB_ERR_IO):
saved_errno = EIO;
break;
case NTDB_ERR_TO_OFF(NTDB_ERR_LOCK):
saved_errno = EWOULDBLOCK;
break;
case NTDB_ERR_TO_OFF(NTDB_ERR_OOM):
saved_errno = ENOMEM;
break;
case NTDB_ERR_TO_OFF(NTDB_ERR_EINVAL):
saved_errno = EINVAL;
break;
default:
saved_errno = EINVAL;
break;
}
fail_errno:
#ifdef NTDB_TRACE
close(ntdb->tracefd);
#endif
if (ntdb->file) {
ntdb_lock_cleanup(ntdb);
if (--ntdb->file->refcnt == 0) {
assert(ntdb->file->num_lockrecs == 0);
if (ntdb->file->map_ptr) {
if (ntdb->flags & NTDB_INTERNAL) {
free(ntdb->file->map_ptr);
} else
ntdb_munmap(ntdb->file);
}
if (ntdb->file->fd != -1 && close(ntdb->file->fd) != 0)
ntdb_logerr(ntdb, NTDB_ERR_IO, NTDB_LOG_ERROR,
"ntdb_open: failed to close ntdb fd"
" on error: %s", strerror(errno));
free(ntdb->file->lockrecs);
free(ntdb->file);
}
}
free(ntdb);
errno = saved_errno;
return NULL;
}
_PUBLIC_ int ntdb_close(struct ntdb_context *ntdb)
{
int ret = 0;
struct ntdb_context **i;
ntdb_trace(ntdb, "ntdb_close");
if (ntdb->transaction) {
ntdb_transaction_cancel(ntdb);
}
if (ntdb->file->map_ptr) {
if (ntdb->flags & NTDB_INTERNAL)
free(ntdb->file->map_ptr);
else
ntdb_munmap(ntdb->file);
}
if (ntdb->file) {
ntdb_lock_cleanup(ntdb);
if (--ntdb->file->refcnt == 0) {
ret = close(ntdb->file->fd);
free(ntdb->file->lockrecs);
free(ntdb->file);
}
}
/* Remove from tdbs list */
for (i = &tdbs; *i; i = &(*i)->next) {
if (*i == ntdb) {
*i = ntdb->next;
break;
}
}
#ifdef NTDB_TRACE
close(ntdb->tracefd);
#endif
free(ntdb);
return ret;
}
_PUBLIC_ void ntdb_foreach_(int (*fn)(struct ntdb_context *, void *), void *p)
{
struct ntdb_context *i;
for (i = tdbs; i; i = i->next) {
if (fn(i, p) != 0)
break;
}
}