mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
1386200be5
At more than one large site I've seen significant problems due to gencache_stabilize. gencache_stabilize was mainly introduced to survive machine crashes with the cache still being in place. Given that most installations crash rarely and this is still a cache, this safety is overkill and causes real problems. With the recent changes to tdb, we should be safe enough to run on completely corrupted databases and properly detect errors. A further commit will introduce code that wipes the gencache.tdb if such a corruption is detected. There is one kind of corruption that we don't properly handle: Orphaned space in the database. I don't have a good idea yet how to handle this in a graceful and efficient way during normal operations, but maybe this idea pops up at some point. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
61 lines
2.1 KiB
C
61 lines
2.1 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
*
|
|
* Generic, persistent and shared between processes cache mechanism for use
|
|
* by various parts of the Samba code
|
|
*
|
|
* Copyright (C) Rafal Szczesniak 2002
|
|
* Copyright (C) Volker Lendecke 2009
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef __LIB_GENCACHE_H__
|
|
#define __LIB_GENCACHE_H__
|
|
|
|
#include "replace.h"
|
|
#include "system/time.h"
|
|
#include "lib/util/data_blob.h"
|
|
|
|
bool gencache_set(const char *keystr, const char *value, time_t timeout);
|
|
bool gencache_del(const char *keystr);
|
|
bool gencache_get(const char *keystr, TALLOC_CTX *mem_ctx, char **value,
|
|
time_t *ptimeout);
|
|
|
|
/*
|
|
* This might look like overkill, but namemap_cache.c shows it's
|
|
* necessary :-)
|
|
*/
|
|
struct gencache_timeout;
|
|
bool gencache_timeout_expired(const struct gencache_timeout *t);
|
|
|
|
bool gencache_parse(const char *keystr,
|
|
void (*parser)(const struct gencache_timeout *timeout,
|
|
DATA_BLOB blob,
|
|
void *private_data),
|
|
void *private_data);
|
|
bool gencache_get_data_blob(const char *keystr, TALLOC_CTX *mem_ctx,
|
|
DATA_BLOB *blob,
|
|
time_t *timeout, bool *was_expired);
|
|
bool gencache_set_data_blob(const char *keystr, DATA_BLOB blob,
|
|
time_t timeout);
|
|
void gencache_iterate_blobs(void (*fn)(const char *key, DATA_BLOB value,
|
|
time_t timeout, void *private_data),
|
|
void *private_data, const char *pattern);
|
|
void gencache_iterate(void (*fn)(const char* key, const char *value,
|
|
time_t timeout, void* dptr),
|
|
void* data, const char* keystr_pattern);
|
|
|
|
#endif
|