summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2014-12-09 17:48:46 +0100
committerJakub Hrozek <jhrozek@redhat.com>2015-01-14 12:15:35 +0100
commitd9da43cb6ec9aff5aa1a760e50f3bcbf54307d25 (patch)
treec9bac0ea5b116c7c906383c0ccae14b8f202f08a /src
parent7dfe969cb2c9e116eaeb1813e2c1adb80195944e (diff)
downloadsssd-d9da43cb6ec9aff5aa1a760e50f3bcbf54307d25.tar.gz
sssd-d9da43cb6ec9aff5aa1a760e50f3bcbf54307d25.tar.xz
sssd-d9da43cb6ec9aff5aa1a760e50f3bcbf54307d25.zip
IPA: set SYSDB_INITGR_EXPIRE for RESP_USER_GROUPLIST
Since RESP_USER_GROUPLIST contains all group memberships it is effectively an initgroups request hence SYSDB_INITGR_EXPIRE will be set. Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> (cherry picked from commit 62d919aea98edd1095f6a22241903d4c045b46ed)
Diffstat (limited to 'src')
-rw-r--r--src/providers/ipa/ipa_s2n_exop.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/providers/ipa/ipa_s2n_exop.c b/src/providers/ipa/ipa_s2n_exop.c
index 0aa12f371..e7c2d9bb9 100644
--- a/src/providers/ipa/ipa_s2n_exop.c
+++ b/src/providers/ipa/ipa_s2n_exop.c
@@ -1911,6 +1911,20 @@ static errno_t ipa_s2n_save_objects(struct sss_domain_info *dom,
}
}
+ if (attrs->response_type == RESP_USER_GROUPLIST) {
+ /* Since RESP_USER_GROUPLIST contains all group memberships it
+ * is effectively an initgroups request hence
+ * SYSDB_INITGR_EXPIRE will be set.*/
+ ret = sysdb_attrs_add_time_t(attrs->sysdb_attrs,
+ SYSDB_INITGR_EXPIRE,
+ time(NULL) + timeout);
+ if (ret != EOK) {
+ DEBUG(SSSDBG_OP_FAILURE,
+ "sysdb_attrs_add_time_t failed.\n");
+ goto done;
+ }
+ }
+
gid = 0;
if (dom->mpg == false) {
gid = attrs->a.user.pw_gid;