From 5d65411f1aa16af929ae2271ee4d3d9101728a67 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Wed, 14 Apr 2021 17:22:06 +0200 Subject: [PATCH 54/55] sss_domain_info: add not_found_counter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This new counter should be used to track how often a domain could not be found while discovering the environment so that it can be deleted after a number of failed attempts. Resolves: https://github.com/SSSD/sssd/issues/5528 Reviewed-by: Pavel Březina --- src/confdb/confdb.c | 1 + src/confdb/confdb.h | 4 ++++ src/db/sysdb_subdomains.c | 2 ++ 3 files changed, 7 insertions(+) diff --git a/src/confdb/confdb.c b/src/confdb/confdb.c index cca76159b..c554edda0 100644 --- a/src/confdb/confdb.c +++ b/src/confdb/confdb.c @@ -1620,6 +1620,7 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, domain->view_name = NULL; domain->state = DOM_ACTIVE; + domain->not_found_counter = 0; *_domain = domain; ret = EOK; diff --git a/src/confdb/confdb.h b/src/confdb/confdb.h index 81b68a0f1..c6c2514f8 100644 --- a/src/confdb/confdb.h +++ b/src/confdb/confdb.h @@ -441,6 +441,10 @@ struct sss_domain_info { char *gssapi_check_upn; /* true | false | NULL */ /* List of indicators associated with the specific PAM service */ char **gssapi_indicators_map; + + /* Counts how often the domain was not found during a refresh of the + * domain list */ + size_t not_found_counter; }; /** diff --git a/src/db/sysdb_subdomains.c b/src/db/sysdb_subdomains.c index e2381c8af..348f242d0 100644 --- a/src/db/sysdb_subdomains.c +++ b/src/db/sysdb_subdomains.c @@ -193,6 +193,8 @@ struct sss_domain_info *new_subdomain(TALLOC_CTX *mem_ctx, dom->gssapi_services = parent->gssapi_services; dom->gssapi_indicators_map = parent->gssapi_indicators_map; + dom->not_found_counter = 0; + if (parent->sysdb == NULL) { DEBUG(SSSDBG_OP_FAILURE, "Missing sysdb context in parent domain.\n"); goto fail; -- 2.26.3