mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
9f6d34150d
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (This used to be ctdb commit 680ee6afaa89f21115a1bf33a8b9e7e92084a1a1)
104 lines
2.6 KiB
C
104 lines
2.6 KiB
C
/*
|
|
libctdb local tdb access code
|
|
|
|
Copyright (C) Andrew Tridgell 2006
|
|
Copyright (C) Rusty Russell 2010
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <ctdb.h>
|
|
#include <tdb.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <ctdb_protocol.h> // For struct ctdb_ltdb_header
|
|
#include "local_tdb.h"
|
|
|
|
/*
|
|
fetch a record from the ltdb, separating out the header information
|
|
and returning the body of the record. The caller should free() the
|
|
header when done, rather than the (optional) data->dptr.
|
|
*/
|
|
struct ctdb_ltdb_header *ctdb_local_fetch(struct tdb_context *tdb,
|
|
TDB_DATA key, TDB_DATA *data)
|
|
{
|
|
TDB_DATA rec;
|
|
|
|
rec = tdb_fetch(tdb, key);
|
|
if (rec.dsize < sizeof(struct ctdb_ltdb_header)) {
|
|
free(rec.dptr);
|
|
return NULL;
|
|
}
|
|
|
|
if (data) {
|
|
data->dsize = rec.dsize - sizeof(struct ctdb_ltdb_header);
|
|
data->dptr = rec.dptr + sizeof(struct ctdb_ltdb_header);
|
|
}
|
|
return (struct ctdb_ltdb_header *)rec.dptr;
|
|
}
|
|
|
|
|
|
/*
|
|
write a record to a normal database: 1 on success, 0 if noop, -1 on fail.
|
|
errno = EIO => tdb error.
|
|
*/
|
|
int ctdb_local_store(struct tdb_context *tdb, TDB_DATA key,
|
|
struct ctdb_ltdb_header *header, TDB_DATA data)
|
|
{
|
|
TDB_DATA rec;
|
|
int ret;
|
|
TDB_DATA old;
|
|
|
|
old = tdb_fetch(tdb, key);
|
|
if (old.dsize < sizeof(*header)) {
|
|
errno = EIO;
|
|
return -1;
|
|
}
|
|
|
|
/* Debugging check: we have lock and should not change hdr. */
|
|
if (memcmp(old.dptr, header, sizeof(*header)) != 0) {
|
|
free(old.dptr);
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
/* Optimize out the nothing-changed case. */
|
|
if (old.dsize == sizeof(*header) + data.dsize
|
|
&& memcmp(old.dptr+sizeof(*header), data.dptr, data.dsize) == 0) {
|
|
free(old.dptr);
|
|
return 0;
|
|
}
|
|
|
|
rec.dsize = sizeof(*header) + data.dsize;
|
|
rec.dptr = malloc(rec.dsize);
|
|
if (!rec.dptr) {
|
|
free(old.dptr);
|
|
errno = ENOMEM;
|
|
return -1;
|
|
}
|
|
memcpy(rec.dptr, header, sizeof(*header));
|
|
memcpy(rec.dptr + sizeof(*header), data.dptr, data.dsize);
|
|
|
|
ret = tdb_store(tdb, key, rec, TDB_REPLACE);
|
|
free(old.dptr);
|
|
free(rec.dptr);
|
|
if (ret != 0) {
|
|
errno = EIO;
|
|
return -1;
|
|
}
|
|
return 1;
|
|
}
|