Blame SOURCES/0014-Ticket-48006-Missing-warning-for-invalid-replica-bac.patch

96373c
From 73c72aba0ab31f9d16cdfd8879e9da5f3fb985e0 Mon Sep 17 00:00:00 2001
96373c
From: Mark Reynolds <mreynolds@redhat.com>
96373c
Date: Tue, 17 Oct 2017 12:39:18 -0400
96373c
Subject: [PATCH] Ticket 48006 - Missing warning for invalid replica backoff 
96373c
 configuration
96373c
96373c
Description:  Add warning if you try to set a min backoff time that is
96373c
              greater than the configured maximum, or the max time that
96373c
              is less than the minimum.
96373c
96373c
              Also fixed compiler warning in ldbm_config.c
96373c
96373c
https://pagure.io/389-ds-base/issue/48006
96373c
96373c
Reviewed by: firstyear(Thanks!)
96373c
96373c
(cherry picked from commit e123acb6987c75f6d7282b32c4f279b976eb6f5e)
96373c
---
96373c
 .../plugins/replication/repl5_replica_config.c     | 24 ++++++++++++++++++++--
96373c
 ldap/servers/slapd/back-ldbm/ldbm_config.c         |  2 +-
96373c
 2 files changed, 23 insertions(+), 3 deletions(-)
96373c
96373c
diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c
96373c
index f28044c19..22d766143 100644
96373c
--- a/ldap/servers/plugins/replication/repl5_replica_config.c
96373c
+++ b/ldap/servers/plugins/replication/repl5_replica_config.c
96373c
@@ -465,7 +465,8 @@ replica_config_modify(Slapi_PBlock *pb,
96373c
                     }
96373c
                 } else if (strcasecmp(config_attr, type_replicaBackoffMin) == 0) {
96373c
                     if (apply_mods) {
96373c
-                        PRUint64 val = atoll(config_attr_value);
96373c
+                        uint64_t val = atoll(config_attr_value);
96373c
+                        uint64_t max;
96373c
 
96373c
                         if (val <= 0) {
96373c
                             *returncode = LDAP_UNWILLING_TO_PERFORM;
96373c
@@ -475,11 +476,21 @@ replica_config_modify(Slapi_PBlock *pb,
96373c
                             slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n", errortext);
96373c
                             break;
96373c
                         }
96373c
+                        max = replica_get_backoff_max(r);
96373c
+                        if (val > max){
96373c
+                            *returncode = LDAP_UNWILLING_TO_PERFORM;
96373c
+                            PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
96373c
+                                        "Attribute %s value (%s) is invalid, must be a number less than the max backoff time (%d).\n",
96373c
+                                        config_attr, config_attr_value, (int)max);
96373c
+                            slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n", errortext);
96373c
+                            break;
96373c
+                        }
96373c
                         replica_set_backoff_min(r, val);
96373c
                     }
96373c
                 } else if (strcasecmp(config_attr, type_replicaBackoffMax) == 0) {
96373c
                     if (apply_mods) {
96373c
-                        PRUint64 val = atoll(config_attr_value);
96373c
+                        uint64_t val = atoll(config_attr_value);
96373c
+                        uint64_t min;
96373c
 
96373c
                         if (val <= 0) {
96373c
                             *returncode = LDAP_UNWILLING_TO_PERFORM;
96373c
@@ -490,6 +501,15 @@ replica_config_modify(Slapi_PBlock *pb,
96373c
                                           errortext);
96373c
                             break;
96373c
                         }
96373c
+                        min = replica_get_backoff_min(r);
96373c
+                        if (val < min) {
96373c
+                            *returncode = LDAP_UNWILLING_TO_PERFORM;
96373c
+                            PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
96373c
+                                        "Attribute %s value (%s) is invalid, must be a number more than the min backoff time (%d).\n",
96373c
+                                        config_attr, config_attr_value, (int)min);
96373c
+                            slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n", errortext);
96373c
+                            break;
96373c
+                        }
96373c
                         replica_set_backoff_max(r, val);
96373c
                     }
96373c
                 } else if (strcasecmp(config_attr, type_replicaPrecisePurge) == 0) {
96373c
diff --git a/ldap/servers/slapd/back-ldbm/ldbm_config.c b/ldap/servers/slapd/back-ldbm/ldbm_config.c
96373c
index 2ef4652ce..feb993366 100644
96373c
--- a/ldap/servers/slapd/back-ldbm/ldbm_config.c
96373c
+++ b/ldap/servers/slapd/back-ldbm/ldbm_config.c
96373c
@@ -388,7 +388,7 @@ ldbm_config_directory_set(void *arg, void *value, char *errorbuf, int phase, int
96373c
                     goto done;
96373c
                 }
96373c
                 slapi_pblock_destroy(search_pb);
96373c
-                if (NULL == s || '\0' == s || 0 == PL_strcmp(s, "(null)")) {
96373c
+                if (NULL == s || '\0' == *s || 0 == PL_strcmp(s, "(null)")) {
96373c
                     slapi_log_err(SLAPI_LOG_ERR,
96373c
                                   "ldbm_config_directory_set", "db directory is not set; check %s in the db config: %s\n",
96373c
                                   CONFIG_DIRECTORY, CONFIG_LDBM_DN);
96373c
-- 
96373c
2.13.6
96373c