mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
ef70f5dd35
The TDB2 tests are stricter about this; they want every error logged. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (Imported from CCAN commit 670ba98f74b52df541d153eeab9d3310932e75cd)
479 lines
13 KiB
C
479 lines
13 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
|
|
trivial database library
|
|
|
|
Copyright (C) Rusty Russell 2009
|
|
|
|
** NOTE! The following LGPL license applies to the tdb
|
|
** library. This does NOT imply that all of Samba is released
|
|
** under the LGPL
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "tdb1_private.h"
|
|
|
|
/* Since we opened it, these shouldn't fail unless it's recent corruption. */
|
|
static bool tdb1_check_header(struct tdb_context *tdb, tdb1_off_t *recovery)
|
|
{
|
|
struct tdb1_header hdr;
|
|
uint32_t h1, h2;
|
|
|
|
if (tdb->tdb1.io->tdb1_read(tdb, 0, &hdr, sizeof(hdr), 0) == -1)
|
|
return false;
|
|
if (strcmp(hdr.magic_food, TDB_MAGIC_FOOD) != 0)
|
|
goto corrupt;
|
|
|
|
TDB1_CONV(hdr);
|
|
if (hdr.version != TDB1_VERSION)
|
|
goto corrupt;
|
|
|
|
if (hdr.rwlocks != 0 && hdr.rwlocks != TDB1_HASH_RWLOCK_MAGIC)
|
|
goto corrupt;
|
|
|
|
tdb1_header_hash(tdb, &h1, &h2);
|
|
if (hdr.magic1_hash && hdr.magic2_hash &&
|
|
(hdr.magic1_hash != h1 || hdr.magic2_hash != h2))
|
|
goto corrupt;
|
|
|
|
if (hdr.hash_size == 0)
|
|
goto corrupt;
|
|
|
|
if (hdr.hash_size != tdb->tdb1.header.hash_size)
|
|
goto corrupt;
|
|
|
|
if (hdr.recovery_start != 0 &&
|
|
hdr.recovery_start < TDB1_DATA_START(tdb->tdb1.header.hash_size))
|
|
goto corrupt;
|
|
|
|
*recovery = hdr.recovery_start;
|
|
return true;
|
|
|
|
corrupt:
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Header is corrupt\n");
|
|
return false;
|
|
}
|
|
|
|
/* Generic record header check. */
|
|
static bool tdb1_check_record(struct tdb_context *tdb,
|
|
tdb1_off_t off,
|
|
const struct tdb1_record *rec)
|
|
{
|
|
tdb1_off_t tailer;
|
|
|
|
/* Check rec->next: 0 or points to record offset, aligned. */
|
|
if (rec->next > 0 && rec->next < TDB1_DATA_START(tdb->tdb1.header.hash_size)){
|
|
tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d too small next %d\n",
|
|
off, rec->next);
|
|
goto corrupt;
|
|
}
|
|
if (rec->next + sizeof(*rec) < rec->next) {
|
|
tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d too large next %d\n",
|
|
off, rec->next);
|
|
goto corrupt;
|
|
}
|
|
if ((rec->next % TDB1_ALIGNMENT) != 0) {
|
|
tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d misaligned next %d\n",
|
|
off, rec->next);
|
|
goto corrupt;
|
|
}
|
|
if (tdb->tdb1.io->tdb1_oob(tdb, rec->next+sizeof(*rec), 0))
|
|
goto corrupt;
|
|
|
|
/* Check rec_len: similar to rec->next, implies next record. */
|
|
if ((rec->rec_len % TDB1_ALIGNMENT) != 0) {
|
|
tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d misaligned length %d\n",
|
|
off, rec->rec_len);
|
|
goto corrupt;
|
|
}
|
|
/* Must fit tailer. */
|
|
if (rec->rec_len < sizeof(tailer)) {
|
|
tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d too short length %d\n",
|
|
off, rec->rec_len);
|
|
goto corrupt;
|
|
}
|
|
/* OOB allows "right at the end" access, so this works for last rec. */
|
|
if (tdb->tdb1.io->tdb1_oob(tdb, off+sizeof(*rec)+rec->rec_len, 0))
|
|
goto corrupt;
|
|
|
|
/* Check tailer. */
|
|
if (tdb1_ofs_read(tdb, off+sizeof(*rec)+rec->rec_len-sizeof(tailer),
|
|
&tailer) == -1)
|
|
goto corrupt;
|
|
if (tailer != sizeof(*rec) + rec->rec_len) {
|
|
tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d invalid tailer\n", off);
|
|
goto corrupt;
|
|
}
|
|
|
|
return true;
|
|
|
|
corrupt:
|
|
tdb->last_error = TDB_ERR_CORRUPT;
|
|
return false;
|
|
}
|
|
|
|
/* Grab some bytes: may copy if can't use mmap.
|
|
Caller has already done bounds check. */
|
|
static TDB_DATA get_bytes(struct tdb_context *tdb,
|
|
tdb1_off_t off, tdb1_len_t len)
|
|
{
|
|
TDB_DATA d;
|
|
|
|
d.dsize = len;
|
|
|
|
if (tdb->tdb1.transaction == NULL && tdb->file->map_ptr != NULL)
|
|
d.dptr = (unsigned char *)tdb->file->map_ptr + off;
|
|
else
|
|
d.dptr = tdb1_alloc_read(tdb, off, d.dsize);
|
|
return d;
|
|
}
|
|
|
|
/* Frees data if we're not able to simply use mmap. */
|
|
static void put_bytes(struct tdb_context *tdb, TDB_DATA d)
|
|
{
|
|
if (tdb->tdb1.transaction == NULL && tdb->file->map_ptr != NULL)
|
|
return;
|
|
free(d.dptr);
|
|
}
|
|
|
|
/* We use the excellent Jenkins lookup3 hash; this is based on hash_word2.
|
|
* See: http://burtleburtle.net/bob/c/lookup3.c
|
|
*/
|
|
#define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
|
|
static void jhash(uint32_t key, uint32_t *pc, uint32_t *pb)
|
|
{
|
|
uint32_t a,b,c;
|
|
|
|
/* Set up the internal state */
|
|
a = b = c = 0xdeadbeef + *pc;
|
|
c += *pb;
|
|
a += key;
|
|
c ^= b; c -= rot(b,14);
|
|
a ^= c; a -= rot(c,11);
|
|
b ^= a; b -= rot(a,25);
|
|
c ^= b; c -= rot(b,16);
|
|
a ^= c; a -= rot(c,4);
|
|
b ^= a; b -= rot(a,14);
|
|
c ^= b; c -= rot(b,24);
|
|
*pc=c; *pb=b;
|
|
}
|
|
|
|
/*
|
|
We want to check that all free records are in the free list
|
|
(only once), and all free list entries are free records. Similarly
|
|
for each hash chain of used records.
|
|
|
|
Doing that naively (without walking hash chains, since we want to be
|
|
linear) means keeping a list of records which have been seen in each
|
|
hash chain, and another of records pointed to (ie. next pointers
|
|
from records and the initial hash chain heads). These two lists
|
|
should be equal. This will take 8 bytes per record, and require
|
|
sorting at the end.
|
|
|
|
So instead, we record each offset in a bitmap such a way that
|
|
recording it twice will cancel out. Since each offset should appear
|
|
exactly twice, the bitmap should be zero at the end.
|
|
|
|
The approach was inspired by Bloom Filters (see Wikipedia). For
|
|
each value, we flip K bits in a bitmap of size N. The number of
|
|
distinct arrangements is:
|
|
|
|
N! / (K! * (N-K)!)
|
|
|
|
Of course, not all arrangements are actually distinct, but testing
|
|
shows this formula to be close enough.
|
|
|
|
So, if K == 8 and N == 256, the probability of two things flipping the same
|
|
bits is 1 in 409,663,695,276,000.
|
|
|
|
Given that ldb uses a hash size of 10000, using 32 bytes per hash chain
|
|
(320k) seems reasonable.
|
|
*/
|
|
#define NUM_HASHES 8
|
|
#define BITMAP_BITS 256
|
|
|
|
static void bit_flip(unsigned char bits[], unsigned int idx)
|
|
{
|
|
bits[idx / CHAR_BIT] ^= (1 << (idx % CHAR_BIT));
|
|
}
|
|
|
|
/* We record offsets in a bitmap for the particular chain it should be in. */
|
|
static void record_offset(unsigned char bits[], tdb1_off_t off)
|
|
{
|
|
uint32_t h1 = off, h2 = 0;
|
|
unsigned int i;
|
|
|
|
/* We get two good hash values out of jhash2, so we use both. Then
|
|
* we keep going to produce further hash values. */
|
|
for (i = 0; i < NUM_HASHES / 2; i++) {
|
|
jhash(off, &h1, &h2);
|
|
bit_flip(bits, h1 % BITMAP_BITS);
|
|
bit_flip(bits, h2 % BITMAP_BITS);
|
|
h2++;
|
|
}
|
|
}
|
|
|
|
/* Check that an in-use record is valid. */
|
|
static bool tdb1_check_used_record(struct tdb_context *tdb,
|
|
tdb1_off_t off,
|
|
const struct tdb1_record *rec,
|
|
unsigned char **hashes,
|
|
enum TDB_ERROR (*check)(TDB_DATA, TDB_DATA,
|
|
void *),
|
|
void *private_data)
|
|
{
|
|
TDB_DATA key, data;
|
|
|
|
if (!tdb1_check_record(tdb, off, rec))
|
|
return false;
|
|
|
|
/* key + data + tailer must fit in record */
|
|
if (rec->key_len + rec->data_len + sizeof(tdb1_off_t) > rec->rec_len) {
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d too short for contents\n", off);
|
|
return false;
|
|
}
|
|
|
|
key = get_bytes(tdb, off + sizeof(*rec), rec->key_len);
|
|
if (!key.dptr)
|
|
return false;
|
|
|
|
if ((uint32_t)tdb_hash(tdb, key.dptr, key.dsize) != rec->full_hash) {
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Record offset %d has incorrect hash\n", off);
|
|
goto fail_put_key;
|
|
}
|
|
|
|
/* Mark this offset as a known value for this hash bucket. */
|
|
record_offset(hashes[TDB1_BUCKET(rec->full_hash)+1], off);
|
|
/* And similarly if the next pointer is valid. */
|
|
if (rec->next)
|
|
record_offset(hashes[TDB1_BUCKET(rec->full_hash)+1], rec->next);
|
|
|
|
/* If they supply a check function and this record isn't dead,
|
|
get data and feed it. */
|
|
if (check && rec->magic != TDB1_DEAD_MAGIC) {
|
|
enum TDB_ERROR ecode;
|
|
|
|
data = get_bytes(tdb, off + sizeof(*rec) + rec->key_len,
|
|
rec->data_len);
|
|
if (!data.dptr)
|
|
goto fail_put_key;
|
|
|
|
ecode = check(key, data, private_data);
|
|
if (ecode != TDB_SUCCESS) {
|
|
tdb->last_error = ecode;
|
|
goto fail_put_data;
|
|
}
|
|
put_bytes(tdb, data);
|
|
}
|
|
|
|
put_bytes(tdb, key);
|
|
return true;
|
|
|
|
fail_put_data:
|
|
put_bytes(tdb, data);
|
|
fail_put_key:
|
|
put_bytes(tdb, key);
|
|
return false;
|
|
}
|
|
|
|
/* Check that an unused record is valid. */
|
|
static bool tdb1_check_free_record(struct tdb_context *tdb,
|
|
tdb1_off_t off,
|
|
const struct tdb1_record *rec,
|
|
unsigned char **hashes)
|
|
{
|
|
if (!tdb1_check_record(tdb, off, rec))
|
|
return false;
|
|
|
|
/* Mark this offset as a known value for the free list. */
|
|
record_offset(hashes[0], off);
|
|
/* And similarly if the next pointer is valid. */
|
|
if (rec->next)
|
|
record_offset(hashes[0], rec->next);
|
|
return true;
|
|
}
|
|
|
|
/* Slow, but should be very rare. */
|
|
size_t tdb1_dead_space(struct tdb_context *tdb, tdb1_off_t off)
|
|
{
|
|
size_t len;
|
|
|
|
for (len = 0; off + len < tdb->file->map_size; len++) {
|
|
char c;
|
|
if (tdb->tdb1.io->tdb1_read(tdb, off, &c, 1, 0))
|
|
return 0;
|
|
if (c != 0 && c != 0x42)
|
|
break;
|
|
}
|
|
return len;
|
|
}
|
|
|
|
int tdb1_check(struct tdb_context *tdb,
|
|
enum TDB_ERROR (*check)(TDB_DATA key, TDB_DATA data, void *),
|
|
void *private_data)
|
|
{
|
|
unsigned int h;
|
|
unsigned char **hashes;
|
|
tdb1_off_t off, recovery_start;
|
|
struct tdb1_record rec;
|
|
bool found_recovery = false;
|
|
tdb1_len_t dead;
|
|
bool locked;
|
|
size_t alloc_len;
|
|
|
|
/* We may have a write lock already, so don't re-lock. */
|
|
if (tdb->file->allrecord_lock.count != 0) {
|
|
locked = false;
|
|
} else {
|
|
if (tdb_lockall_read(tdb) != TDB_SUCCESS)
|
|
return -1;
|
|
locked = true;
|
|
}
|
|
|
|
/* Make sure we know true size of the underlying file. */
|
|
tdb->tdb1.io->tdb1_oob(tdb, tdb->file->map_size + 1, 1);
|
|
|
|
/* Header must be OK: also gets us the recovery ptr, if any. */
|
|
if (!tdb1_check_header(tdb, &recovery_start))
|
|
goto unlock;
|
|
|
|
/* We should have the whole header, too. */
|
|
if (tdb->file->map_size < TDB1_DATA_START(tdb->tdb1.header.hash_size)) {
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"File too short for hashes\n");
|
|
goto unlock;
|
|
}
|
|
|
|
/* One big malloc: pointers then bit arrays. */
|
|
alloc_len = sizeof(hashes[0]) * (1+tdb->tdb1.header.hash_size)
|
|
+ BITMAP_BITS / CHAR_BIT * (1+tdb->tdb1.header.hash_size);
|
|
hashes = (unsigned char **)calloc(1, alloc_len);
|
|
if (!hashes) {
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_OOM, TDB_LOG_ERROR,
|
|
"tdb_check: could not allocate %zu",
|
|
alloc_len);
|
|
goto unlock;
|
|
}
|
|
|
|
/* Initialize pointers */
|
|
hashes[0] = (unsigned char *)(&hashes[1+tdb->tdb1.header.hash_size]);
|
|
for (h = 1; h < 1+tdb->tdb1.header.hash_size; h++)
|
|
hashes[h] = hashes[h-1] + BITMAP_BITS / CHAR_BIT;
|
|
|
|
/* Freelist and hash headers are all in a row: read them. */
|
|
for (h = 0; h < 1+tdb->tdb1.header.hash_size; h++) {
|
|
if (tdb1_ofs_read(tdb, TDB1_FREELIST_TOP + h*sizeof(tdb1_off_t),
|
|
&off) == -1)
|
|
goto free;
|
|
if (off)
|
|
record_offset(hashes[h], off);
|
|
}
|
|
|
|
/* For each record, read it in and check it's ok. */
|
|
for (off = TDB1_DATA_START(tdb->tdb1.header.hash_size);
|
|
off < tdb->file->map_size;
|
|
off += sizeof(rec) + rec.rec_len) {
|
|
if (tdb->tdb1.io->tdb1_read(tdb, off, &rec, sizeof(rec),
|
|
TDB1_DOCONV()) == -1)
|
|
goto free;
|
|
switch (rec.magic) {
|
|
case TDB1_MAGIC:
|
|
case TDB1_DEAD_MAGIC:
|
|
if (!tdb1_check_used_record(tdb, off, &rec, hashes,
|
|
check, private_data))
|
|
goto free;
|
|
break;
|
|
case TDB1_FREE_MAGIC:
|
|
if (!tdb1_check_free_record(tdb, off, &rec, hashes))
|
|
goto free;
|
|
break;
|
|
/* If we crash after ftruncate, we can get zeroes or fill. */
|
|
case TDB1_RECOVERY_INVALID_MAGIC:
|
|
case 0x42424242:
|
|
if (recovery_start == off) {
|
|
found_recovery = true;
|
|
break;
|
|
}
|
|
dead = tdb1_dead_space(tdb, off);
|
|
if (dead < sizeof(rec))
|
|
goto corrupt;
|
|
|
|
tdb_logerr(tdb, TDB_SUCCESS, TDB_LOG_WARNING,
|
|
"Dead space at %d-%d (of %u)\n",
|
|
off, off + dead, tdb->file->map_size);
|
|
rec.rec_len = dead - sizeof(rec);
|
|
break;
|
|
case TDB1_RECOVERY_MAGIC:
|
|
if (recovery_start != off) {
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Unexpected recovery record at offset %d\n",
|
|
off);
|
|
goto free;
|
|
}
|
|
found_recovery = true;
|
|
break;
|
|
default: ;
|
|
corrupt:
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Bad magic 0x%x at offset %d\n",
|
|
rec.magic, off);
|
|
goto free;
|
|
}
|
|
}
|
|
|
|
/* Now, hashes should all be empty: each record exists and is referred
|
|
* to by one other. */
|
|
for (h = 0; h < 1+tdb->tdb1.header.hash_size; h++) {
|
|
unsigned int i;
|
|
for (i = 0; i < BITMAP_BITS / CHAR_BIT; i++) {
|
|
if (hashes[h][i] != 0) {
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Hashes do not match records\n");
|
|
goto free;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* We must have found recovery area if there was one. */
|
|
if (recovery_start != 0 && !found_recovery) {
|
|
tdb->last_error = tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
|
|
"Expected a recovery area at %u\n",
|
|
recovery_start);
|
|
goto free;
|
|
}
|
|
|
|
free(hashes);
|
|
if (locked) {
|
|
tdb_unlockall_read(tdb);
|
|
}
|
|
return 0;
|
|
|
|
free:
|
|
free(hashes);
|
|
unlock:
|
|
if (locked) {
|
|
tdb_unlockall_read(tdb);
|
|
}
|
|
return -1;
|
|
}
|