summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-27 00:48:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:20 -0500
commitf095a8e748a87de9f4cde117df13e8dccd8aeaa9 (patch)
treedccc8a38c0f45b348ea0257933410bbc965fe55b /source4
parent5a064d4a62c35167d888356d01dfdb76f59bc6b1 (diff)
downloadsamba-f095a8e748a87de9f4cde117df13e8dccd8aeaa9.tar.gz
samba-f095a8e748a87de9f4cde117df13e8dccd8aeaa9.tar.bz2
samba-f095a8e748a87de9f4cde117df13e8dccd8aeaa9.zip
r2670: use a destructor to auto-close the samr ldb when the last user
disconnects. Previously the ldb was always kept open. (This used to be commit d78eea9eb8540f137d30aef5fbb397295312eb1b)
Diffstat (limited to 'source4')
-rw-r--r--source4/rpc_server/samr/samdb.c33
1 files changed, 18 insertions, 15 deletions
diff --git a/source4/rpc_server/samr/samdb.c b/source4/rpc_server/samr/samdb.c
index f1302c1259..33c4eec86a 100644
--- a/source4/rpc_server/samr/samdb.c
+++ b/source4/rpc_server/samr/samdb.c
@@ -24,6 +24,7 @@
struct samdb_context {
struct ldb_context *ldb;
+ struct samdb_context **static_ptr;
};
@@ -42,12 +43,12 @@ void samdb_debug(void *context, enum ldb_debug_level level, const char *fmt, va_
free(s);
}
-/* close a connection to the sam */
+/* destroy the last connection to the sam */
int samdb_destructor(void *ctx)
{
struct samdb_context *sam_ctx = ctx;
- /* we don't actually close due to broken posix locking semantics */
- sam_ctx->ldb = NULL;
+ ldb_close(sam_ctx->ldb);
+ *(sam_ctx->static_ptr) = NULL;
return 0;
}
@@ -57,7 +58,7 @@ int samdb_destructor(void *ctx)
*/
void *samdb_connect(TALLOC_CTX *mem_ctx)
{
- struct samdb_context *ctx;
+ static struct samdb_context *ctx;
/*
the way that unix fcntl locking works forces us to have a
static ldb handle here rather than a much more sensible
@@ -66,25 +67,27 @@ void *samdb_connect(TALLOC_CTX *mem_ctx)
the ldb more than once, and tdb would rightly refuse the
second open due to the broken nature of unix locking.
*/
- static struct ldb_context *static_sam_db;
-
- if (static_sam_db == NULL) {
- static_sam_db = ldb_connect(lp_sam_url(), 0, NULL);
- if (static_sam_db == NULL) {
- return NULL;
- }
+ if (ctx != NULL) {
+ talloc_increase_ref_count(ctx);
+ return ctx;
}
- ldb_set_debug(static_sam_db, samdb_debug, NULL);
-
ctx = talloc_p(mem_ctx, struct samdb_context);
- if (!ctx) {
+ if (ctx == NULL) {
errno = ENOMEM;
return NULL;
}
- ctx->ldb = static_sam_db;
+ ctx->static_ptr = &ctx;
+
+ ctx->ldb = ldb_connect(lp_sam_url(), 0, NULL);
+ if (ctx->ldb == NULL) {
+ talloc_free(ctx);
+ return NULL;
+ }
+
talloc_set_destructor(ctx, samdb_destructor);
+ ldb_set_debug(ctx->ldb, samdb_debug, NULL);
return ctx;
}