summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_async_initgroups.c
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2011-10-31 17:27:32 +0100
committerStephen Gallagher <sgallagh@redhat.com>2011-11-11 14:36:17 -0500
commit88ab259f993956b6cd0b1a07d3d88d105e368a8c (patch)
tree8fbfd4d24ecf50343892f4ccbf805a00871935ec /src/providers/ldap/sdap_async_initgroups.c
parent535b4fc2c320c2fc5075947c105d830ce59d2958 (diff)
downloadsssd_unused-88ab259f993956b6cd0b1a07d3d88d105e368a8c.tar.gz
sssd_unused-88ab259f993956b6cd0b1a07d3d88d105e368a8c.tar.xz
sssd_unused-88ab259f993956b6cd0b1a07d3d88d105e368a8c.zip
Squash transactions in sdap_initgr_common_store
https://fedorahosted.org/sssd/ticket/1053
Diffstat (limited to 'src/providers/ldap/sdap_async_initgroups.c')
-rw-r--r--src/providers/ldap/sdap_async_initgroups.c31
1 files changed, 25 insertions, 6 deletions
diff --git a/src/providers/ldap/sdap_async_initgroups.c b/src/providers/ldap/sdap_async_initgroups.c
index 8a9160d4..0ab30cfd 100644
--- a/src/providers/ldap/sdap_async_initgroups.c
+++ b/src/providers/ldap/sdap_async_initgroups.c
@@ -167,14 +167,14 @@ static int sdap_initgr_common_store(struct sysdb_ctx *sysdb,
enum sysdb_member_type type,
char **sysdb_grouplist,
struct sysdb_attrs **ldap_groups,
- int ldap_groups_count,
- bool add_fake)
+ int ldap_groups_count)
{
TALLOC_CTX *tmp_ctx;
char **ldap_grouplist = NULL;
char **add_groups;
char **del_groups;
- int ret;
+ int ret, tret;
+ bool in_transaction = false;
tmp_ctx = talloc_new(NULL);
if (!tmp_ctx) return ENOMEM;
@@ -205,10 +205,17 @@ static int sdap_initgr_common_store(struct sysdb_ctx *sysdb,
&add_groups, &del_groups, NULL);
if (ret != EOK) goto done;
+ ret = sysdb_transaction_start(sysdb);
+ if (ret != EOK) {
+ DEBUG(1, ("Failed to start transaction\n"));
+ goto done;
+ }
+ in_transaction = true;
+
/* Add fake entries for any groups the user should be added as
* member of but that are not cached in sysdb
*/
- if (add_fake && add_groups && add_groups[0]) {
+ if (add_groups && add_groups[0]) {
ret = sdap_add_incomplete_groups(sysdb, opts, dom,
add_groups, ldap_groups,
ldap_groups_count);
@@ -228,8 +235,21 @@ static int sdap_initgr_common_store(struct sysdb_ctx *sysdb,
goto done;
}
+ ret = sysdb_transaction_commit(sysdb);
+ if (ret != EOK) {
+ DEBUG(1, ("Failed to commit transaction\n"));
+ goto done;
+ }
+ in_transaction = false;
+
ret = EOK;
done:
+ if (in_transaction) {
+ tret = sysdb_transaction_cancel(sysdb);
+ if (tret != EOK) {
+ DEBUG(1, ("Failed to cancel transaction\n"));
+ }
+ }
talloc_zfree(tmp_ctx);
return ret;
}
@@ -469,8 +489,7 @@ static void sdap_initgr_rfc2307_process(struct tevent_req *subreq)
SYSDB_MEMBER_USER,
sysdb_grouplist,
state->ldap_groups,
- state->ldap_groups_count,
- true);
+ state->ldap_groups_count);
if (ret != EOK) {
tevent_req_error(req, ret);
return;