From 08ccc6ed5121dae8485328fc2ac8ad4f35db2729 Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Wed, 10 Aug 2011 13:50:26 +1000 Subject: passdb: Add a function to read secrets db from a specified path This allows to load secrets db from a different location. The original secrets_init() now calls secrets_init_path() with lp_private_dir(). --- source3/include/secrets.h | 1 + source3/passdb/secrets.c | 22 ++++++++++++++++------ 2 files changed, 17 insertions(+), 6 deletions(-) (limited to 'source3') diff --git a/source3/include/secrets.h b/source3/include/secrets.h index 4c23335b58..3e36f2e899 100644 --- a/source3/include/secrets.h +++ b/source3/include/secrets.h @@ -81,6 +81,7 @@ struct afs_keyfile { /* The following definitions come from passdb/secrets.c */ +bool secrets_init_path(const char *private_dir); bool secrets_init(void); struct db_context *secrets_db_ctx(void); void secrets_shutdown(void); diff --git a/source3/passdb/secrets.c b/source3/passdb/secrets.c index d39390e8c6..d229640793 100644 --- a/source3/passdb/secrets.c +++ b/source3/passdb/secrets.c @@ -55,19 +55,24 @@ static void get_rand_seed(void *userdata, int *new_seed) } } -/* open up the secrets database */ -bool secrets_init(void) +/* open up the secrets database with specified private_dir path */ +bool secrets_init_path(const char *private_dir) { char *fname = NULL; unsigned char dummy; - if (db_ctx != NULL) + if (db_ctx != NULL) { return True; + } + + if (private_dir == NULL) { + return False; + } fname = talloc_asprintf(talloc_tos(), "%s/secrets.tdb", - lp_private_dir()); + private_dir); if (fname == NULL) { - return false; + return False; } db_ctx = db_open(NULL, fname, 0, @@ -75,7 +80,6 @@ bool secrets_init(void) if (db_ctx == NULL) { DEBUG(0,("Failed to open %s\n", fname)); - TALLOC_FREE(fname); return False; } @@ -95,6 +99,12 @@ bool secrets_init(void) return True; } +/* open up the secrets database */ +bool secrets_init(void) +{ + return secrets_init_path(lp_private_dir()); +} + struct db_context *secrets_db_ctx(void) { if (!secrets_init()) { -- cgit