summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2013-08-06 21:15:42 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-08-08 00:47:09 +0200
commitf081ea9da2647a1788021bd4de812a371ac0334a (patch)
tree335be44f9455eec0f7def1e2724d74fbb54fa29b /src
parentc487f42b91038106ed27dfca3d0d3d8d5a917f05 (diff)
downloadsssd-f081ea9da2647a1788021bd4de812a371ac0334a.tar.gz
sssd-f081ea9da2647a1788021bd4de812a371ac0334a.tar.xz
sssd-f081ea9da2647a1788021bd4de812a371ac0334a.zip
LDAP: Fix crash when processing nested groups
https://fedorahosted.org/sssd/ticket/1932 There is a rather strange workaround in the nested groups processing code that calls tevent_req_post outside _send(). However, it broke in certain situations where the tevent_req_call resulted in req being freed, which freed state by extension and then the subsequent _post call was a use-after-free. This patch saves the two variables used outside state so that it's safe to use them even after the callback.
Diffstat (limited to 'src')
-rw-r--r--src/providers/ldap/sdap_async_groups.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c
index f52bbb6e3..1e9fb6dc4 100644
--- a/src/providers/ldap/sdap_async_groups.c
+++ b/src/providers/ldap/sdap_async_groups.c
@@ -3224,14 +3224,20 @@ static errno_t sdap_nested_group_lookup_user(struct tevent_req *req,
return ret;
} else if (ret == EOK) {
DEBUG(SSSDBG_TRACE_FUNC, ("All done.\n"));
+
+ /* Calling tevent req done might invoke callback which would
+ * zero out state */
+ bool is_finished = state->send_finished;
+ struct tevent_context *ev = state->ev;
+
tevent_req_done(req);
/**
* FIXME: Rewrite nested group processing so we call
* tevent_req_post() only in _send().
*/
- if (state->send_finished == false) {
- tevent_req_post(req, state->ev);
+ if (is_finished == false) {
+ tevent_req_post(req, ev);
}
}
return EOK;
@@ -3288,14 +3294,20 @@ static errno_t sdap_nested_group_lookup_group(struct tevent_req *req)
return ret;
} else if (ret == EOK) {
DEBUG(SSSDBG_TRACE_FUNC, ("All done.\n"));
+
+ /* Calling tevent req done might invoke callback which would
+ * zero out state */
+ bool is_finished = state->send_finished;
+ struct tevent_context *ev = state->ev;
+
tevent_req_done(req);
/**
* FIXME: Rewrite nested group processing so we call
* tevent_req_post() only in _send().
*/
- if (state->send_finished == false) {
- tevent_req_post(req, state->ev);
+ if (is_finished == false) {
+ tevent_req_post(req, ev);
}
}
return EOK;