>From c0385561ee5e9d050d2222aa43ebf46514f37dad Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Thu, 9 Oct 2014 17:15:56 +0200 Subject: [PATCH 5/7] MONITOR: Allow confdb to be accessed by nonroot user --- src/monitor/monitor.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c index 44614be173325aa5b6f7ed03f00b6d4489ddf522..bd2c373008ef75ab46cf7dccdefd12468894f1ba 100644 --- a/src/monitor/monitor.c +++ b/src/monitor/monitor.c @@ -1718,7 +1718,6 @@ static errno_t load_configuration(TALLOC_CTX *mem_ctx, DEBUG(SSSDBG_FATAL_FAILURE, "Fatal error initializing confdb\n"); goto done; } - talloc_zfree(cdb_file); ret = confdb_init_db(config_file, ctx->cdb); if (ret != EOK) { @@ -1734,6 +1733,16 @@ static errno_t load_configuration(TALLOC_CTX *mem_ctx, goto done; } + /* Allow configuration database to be accessible + * when SSSD runs as nonroot */ + ret = chown(cdb_file, ctx->uid, ctx->gid); + if (ret != EOK) { + DEBUG(SSSDBG_FATAL_FAILURE, + "chown failed for [%s]: [%d][%s].\n", + cdb_file, ret, sss_strerror(ret)); + goto done; + } + *monitor = ctx; ret = EOK; -- 1.9.3