summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_sudo.c
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2012-06-03 22:05:42 +0200
committerStephen Gallagher <sgallagh@redhat.com>2012-06-29 11:37:18 -0400
commit16484408ce03aaddfe2a146621b14a43bdeb6808 (patch)
tree2a17a3d733dba0309731d47a612a52f1e35df567 /src/providers/ldap/sdap_sudo.c
parentdfafb437f49d31e015184e212571e9917aa94eef (diff)
downloadsssd-16484408ce03aaddfe2a146621b14a43bdeb6808.tar.gz
sssd-16484408ce03aaddfe2a146621b14a43bdeb6808.tar.xz
sssd-16484408ce03aaddfe2a146621b14a43bdeb6808.zip
sudo ldap provider: modify highest USN in sdap_sudo_rules_refresh_done()
Diffstat (limited to 'src/providers/ldap/sdap_sudo.c')
-rw-r--r--src/providers/ldap/sdap_sudo.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/providers/ldap/sdap_sudo.c b/src/providers/ldap/sdap_sudo.c
index 15fb51561..eb79dcb79 100644
--- a/src/providers/ldap/sdap_sudo.c
+++ b/src/providers/ldap/sdap_sudo.c
@@ -47,12 +47,14 @@ static int sdap_sudo_full_refresh_recv(struct tevent_req *req,
int *error);
struct sdap_sudo_rules_refresh_state {
+ struct sdap_id_ctx *id_ctx;
size_t num_rules;
int dp_error;
int error;
};
static struct tevent_req *sdap_sudo_rules_refresh_send(TALLOC_CTX *mem_ctx,
+ struct sdap_id_ctx *id_ctx,
struct be_ctx *be_ctx,
struct sdap_options *opts,
struct sdap_id_conn_cache *conn_cache,
@@ -292,8 +294,9 @@ void sdap_sudo_handler(struct be_req *be_req)
break;
case BE_REQ_SUDO_RULES:
DEBUG(SSSDBG_TRACE_FUNC, ("Issuing a refresh of specific sudo rules\n"));
- req = sdap_sudo_rules_refresh_send(be_req, id_ctx->be, id_ctx->opts,
- id_ctx->conn_cache, sudo_req->rules);
+ req = sdap_sudo_rules_refresh_send(be_req, id_ctx, id_ctx->be,
+ id_ctx->opts, id_ctx->conn_cache,
+ sudo_req->rules);
break;
default:
DEBUG(SSSDBG_CRIT_FAILURE, ("Invalid request type: %d\n",
@@ -437,6 +440,7 @@ static void sdap_sudo_full_refresh_done(struct tevent_req *subreq)
/* issue refresh of specific sudo rules */
static struct tevent_req *sdap_sudo_rules_refresh_send(TALLOC_CTX *mem_ctx,
+ struct sdap_id_ctx *id_ctx,
struct be_ctx *be_ctx,
struct sdap_options *opts,
struct sdap_id_conn_cache *conn_cache,
@@ -497,6 +501,7 @@ static struct tevent_req *sdap_sudo_rules_refresh_send(TALLOC_CTX *mem_ctx,
}
}
+ state->id_ctx = id_ctx;
state->num_rules = i;
ldap_filter = talloc_asprintf(tmp_ctx, "(&"SDAP_SUDO_FILTER_CLASS"(|%s))",
@@ -554,6 +559,7 @@ static void sdap_sudo_rules_refresh_done(struct tevent_req *subreq)
{
struct tevent_req *req = NULL;
struct sdap_sudo_rules_refresh_state *state = NULL;
+ char *highest_usn = NULL;
size_t downloaded_rules_num;
int ret;
@@ -561,13 +567,18 @@ static void sdap_sudo_rules_refresh_done(struct tevent_req *subreq)
state = tevent_req_data(req, struct sdap_sudo_rules_refresh_state);
ret = sdap_sudo_refresh_recv(state, subreq, &state->dp_error, &state->error,
- NULL, &downloaded_rules_num);
+ &highest_usn, &downloaded_rules_num);
talloc_zfree(subreq);
if (ret != EOK || state->dp_error != DP_ERR_OK || state->error != EOK) {
tevent_req_error(req, ret);
return;
}
+ /* set highest usn */
+ if (highest_usn != NULL) {
+ sdap_sudo_set_usn(state->id_ctx->srv_opts, highest_usn);
+ }
+
if (downloaded_rules_num != state->num_rules) {
state->error = ENOENT;
}