Blame SOURCES/0026-Ticket-49439-cleanallruv-is-not-logging-information.patch

96373c
From 403c5b61efb5aca3cbea31170d13dfba190ef355 Mon Sep 17 00:00:00 2001
96373c
From: Mark Reynolds <mreynolds@redhat.com>
96373c
Date: Thu, 2 Nov 2017 12:55:11 -0400
96373c
Subject: [PATCH] Ticket 49439 - cleanallruv is not logging information
96373c
96373c
Bug Description:  During the logging refector effro from ticket 48978
96373c
                  a mistake was made and cleanruv_log() was using
96373c
                  LOG_NOTICE (which is not a true log level), it was
96373c
                  supposed to be SLAPI_LOG_NOTICE.
96373c
96373c
                  We also use DEBUG defines to contorl the logging for
96373c
                  debug builds
96373c
96373c
Fix Description:  Remove the LDAP_DEBUG defines in cleanruv_log, and set
96373c
                  the correct logging severity level.
96373c
96373c
https://pagure.io/389-ds-base/issue/49439
96373c
96373c
Reviewed by: firstyear(Thanks!)
96373c
96373c
(cherry picked from commit e1f866a5e3ccce8e061e361c0e3dd11175a8acf2)
96373c
---
96373c
 .../plugins/replication/repl5_replica_config.c     | 30 ++++++++++------------
96373c
 1 file changed, 14 insertions(+), 16 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 9c3c75458..9c8d6adbb 100644
96373c
--- a/ldap/servers/plugins/replication/repl5_replica_config.c
96373c
+++ b/ldap/servers/plugins/replication/repl5_replica_config.c
96373c
@@ -1783,7 +1783,7 @@ replica_cleanallruv_thread(void *arg)
96373c
         /*
96373c
          *  need to sleep between passes
96373c
          */
96373c
-        cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE, "Not all replicas have received the "
96373c
+        cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE, "Not all replicas have received the "
96373c
                                                                         "cleanallruv extended op, retrying in %d seconds",
96373c
                      interval);
96373c
         if (!slapi_is_shutting_down()) {
96373c
@@ -1825,7 +1825,7 @@ replica_cleanallruv_thread(void *arg)
96373c
                 found_dirty_rid = 0;
96373c
             } else {
96373c
                 found_dirty_rid = 1;
96373c
-                cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE, "Replica is not cleaned yet (%s)",
96373c
+                cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE, "Replica is not cleaned yet (%s)",
96373c
                              agmt_get_long_name(agmt));
96373c
                 break;
96373c
             }
96373c
@@ -1843,7 +1843,7 @@ replica_cleanallruv_thread(void *arg)
96373c
          * Need to sleep between passes unless we are shutting down
96373c
          */
96373c
         if (!slapi_is_shutting_down()) {
96373c
-            cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE, "Replicas have not been cleaned yet, "
96373c
+            cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE, "Replicas have not been cleaned yet, "
96373c
                                                                             "retrying in %d seconds",
96373c
                          interval);
96373c
             PR_Lock(notify_lock);
96373c
@@ -1883,10 +1883,10 @@ done:
96373c
          *  Shutdown or abort
96373c
          */
96373c
         if (!is_task_aborted(data->rid) || slapi_is_shutting_down()) {
96373c
-            cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE,
96373c
+            cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE,
96373c
                          "Server shutting down.  Process will resume at server startup");
96373c
         } else {
96373c
-            cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE, "Task aborted for rid(%d).", data->rid);
96373c
+            cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE, "Task aborted for rid(%d).", data->rid);
96373c
             delete_cleaned_rid_config(data);
96373c
             remove_cleaned_rid(data->rid);
96373c
         }
96373c
@@ -2053,7 +2053,7 @@ check_replicas_are_done_cleaning(cleanruv_data *data)
96373c
             break;
96373c
         }
96373c
 
96373c
-        cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE,
96373c
+        cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE,
96373c
                      "Not all replicas finished cleaning, retrying in %d seconds",
96373c
                      interval);
96373c
         if (!slapi_is_shutting_down()) {
96373c
@@ -2163,7 +2163,7 @@ check_replicas_are_done_aborting(cleanruv_data *data)
96373c
         if (not_all_aborted == 0) {
96373c
             break;
96373c
         }
96373c
-        cleanruv_log(data->task, data->rid, ABORT_CLEANALLRUV_ID, LOG_NOTICE,
96373c
+        cleanruv_log(data->task, data->rid, ABORT_CLEANALLRUV_ID, SLAPI_LOG_NOTICE,
96373c
                      "Not all replicas finished aborting, retrying in %d seconds", interval);
96373c
         if (!slapi_is_shutting_down()) {
96373c
             PR_Lock(notify_lock);
96373c
@@ -2210,7 +2210,7 @@ check_agmts_are_caught_up(cleanruv_data *data, char *maxcsn)
96373c
                 not_all_caughtup = 0;
96373c
             } else {
96373c
                 not_all_caughtup = 1;
96373c
-                cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE,
96373c
+                cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE,
96373c
                              "Replica not caught up (%s)", agmt_get_long_name(agmt));
96373c
                 break;
96373c
             }
96373c
@@ -2220,7 +2220,7 @@ check_agmts_are_caught_up(cleanruv_data *data, char *maxcsn)
96373c
         if (not_all_caughtup == 0 || is_task_aborted(data->rid)) {
96373c
             break;
96373c
         }
96373c
-        cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, LOG_NOTICE,
96373c
+        cleanruv_log(data->task, data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE,
96373c
                      "Not all replicas caught up, retrying in %d seconds", interval);
96373c
         if (!slapi_is_shutting_down()) {
96373c
             PR_Lock(notify_lock);
96373c
@@ -2270,7 +2270,7 @@ check_agmts_are_alive(Replica *replica, ReplicaId rid, Slapi_Task *task)
96373c
                 not_all_alive = 0;
96373c
             } else {
96373c
                 not_all_alive = 1;
96373c
-                cleanruv_log(task, rid, CLEANALLRUV_ID, LOG_NOTICE, "Replica not online (%s)",
96373c
+                cleanruv_log(task, rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE, "Replica not online (%s)",
96373c
                              agmt_get_long_name(agmt));
96373c
                 break;
96373c
             }
96373c
@@ -2280,7 +2280,7 @@ check_agmts_are_alive(Replica *replica, ReplicaId rid, Slapi_Task *task)
96373c
         if (not_all_alive == 0 || is_task_aborted(rid)) {
96373c
             break;
96373c
         }
96373c
-        cleanruv_log(task, rid, CLEANALLRUV_ID, LOG_NOTICE, "Not all replicas online, retrying in %d seconds...",
96373c
+        cleanruv_log(task, rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE, "Not all replicas online, retrying in %d seconds...",
96373c
                      interval);
96373c
 
96373c
         if (!slapi_is_shutting_down()) {
96373c
@@ -3063,7 +3063,7 @@ replica_abort_task_thread(void *arg)
96373c
          *  Need to sleep between passes. unless we are shutting down
96373c
          */
96373c
         if (!slapi_is_shutting_down()) {
96373c
-            cleanruv_log(data->task, data->rid, ABORT_CLEANALLRUV_ID, LOG_NOTICE, "Retrying in %d seconds", interval);
96373c
+            cleanruv_log(data->task, data->rid, ABORT_CLEANALLRUV_ID, SLAPI_LOG_NOTICE, "Retrying in %d seconds", interval);
96373c
             PR_Lock(notify_lock);
96373c
             PR_WaitCondVar(notify_cvar, PR_SecondsToInterval(interval));
96373c
             PR_Unlock(notify_lock);
96373c
@@ -3184,7 +3184,7 @@ replica_cleanallruv_send_extop(Repl_Agmt *ra, cleanruv_data *clean_data, int che
96373c
                     /* extop was accepted */
96373c
                     rc = 0;
96373c
                 } else {
96373c
-                    cleanruv_log(clean_data->task, clean_data->rid, CLEANALLRUV_ID, LOG_NOTICE,
96373c
+                    cleanruv_log(clean_data->task, clean_data->rid, CLEANALLRUV_ID, SLAPI_LOG_NOTICE,
96373c
                                  "Replica %s does not support the CLEANALLRUV task.  "
96373c
                                  "Sending replica CLEANRUV task...",
96373c
                                  slapi_sdn_get_dn(agmt_get_dn_byref(ra)));
96373c
@@ -3352,7 +3352,7 @@ replica_cleanallruv_check_maxcsn(Repl_Agmt *agmt, char *basedn, char *rid_text,
96373c
                     csn_init_by_string(repl_max, remote_maxcsn);
96373c
                     if (csn_compare(repl_max, max) < 0) {
96373c
                         /* we are not caught up yet, free, and return */
96373c
-                        cleanruv_log(task, atoi(rid_text), CLEANALLRUV_ID, LOG_NOTICE,
96373c
+                        cleanruv_log(task, atoi(rid_text), CLEANALLRUV_ID, SLAPI_LOG_NOTICE,
96373c
                                      "Replica maxcsn (%s) is not caught up with deleted replica's maxcsn(%s)",
96373c
                                      remote_maxcsn, maxcsn);
96373c
                         rc = -1;
96373c
@@ -3525,7 +3525,6 @@ stop_ruv_cleaning()
96373c
 void
96373c
 cleanruv_log(Slapi_Task *task, int rid, char *task_type, int sev_level, char *fmt, ...)
96373c
 {
96373c
-#ifdef LDAP_DEBUG
96373c
     va_list ap1;
96373c
     va_list ap2;
96373c
     va_list ap3;
96373c
@@ -3550,7 +3549,6 @@ cleanruv_log(Slapi_Task *task, int rid, char *task_type, int sev_level, char *fm
96373c
     va_end(ap2);
96373c
     va_end(ap3);
96373c
     va_end(ap4);
96373c
-#endif
96373c
 }
96373c
 
96373c
 char *
96373c
-- 
96373c
2.13.6
96373c