Blame SOURCES/0045-SYSDB-Remove-code-causing-a-covscan-warning.patch

ced1f5
From 075f45980ea004201b2d13a3ecfe3bfb1478046d Mon Sep 17 00:00:00 2001
ced1f5
From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= <fidencio@redhat.com>
ced1f5
Date: Mon, 13 Nov 2017 08:29:53 +0100
ced1f5
Subject: [PATCH 45/46] SYSDB: Remove code causing a covscan warning
ced1f5
MIME-Version: 1.0
ced1f5
Content-Type: text/plain; charset=UTF-8
ced1f5
Content-Transfer-Encoding: 8bit
ced1f5
ced1f5
There's no reason to check for both ret != EOK and sanitized == NULL, as
ced1f5
the second should never ever happen.
ced1f5
ced1f5
This check is causing a clang warning in our code:
ced1f5
ced1f5
 Defect type: CLANG_WARNING
ced1f5
 1. sssd-1.16.0/src/db/sysdb_ops.c:4223:9: warning: Dereference of undefined pointer value
ced1f5
 #     if (res->count > 1) {
ced1f5
 #         ^~~~~~~~~~
ced1f5
 4. sssd-1.16.0/src/db/sysdb_ops.c:4199:5: note: 'res' declared without an initial value
ced1f5
 #     struct ldb_result *res;
ced1f5
 #     ^~~~~~~~~~~~~~~~~~~~~~
ced1f5
 7. sssd-1.16.0/src/db/sysdb_ops.c:4202:9: note: Assuming 'sid_str' is non-null
ced1f5
 #     if (!sid_str) return EINVAL;
ced1f5
 #         ^~~~~~~~
ced1f5
 10. sssd-1.16.0/src/db/sysdb_ops.c:4202:5: note: Taking false branch
ced1f5
 #     if (!sid_str) return EINVAL;
ced1f5
 #     ^
ced1f5
 13. sssd-1.16.0/src/db/sysdb_ops.c:4205:9: note: Assuming 'tmp_ctx' is non-null
ced1f5
 #     if (!tmp_ctx) {
ced1f5
 #         ^~~~~~~~
ced1f5
 16. sssd-1.16.0/src/db/sysdb_ops.c:4205:5: note: Taking false branch
ced1f5
 #     if (!tmp_ctx) {
ced1f5
 #     ^
ced1f5
 19. sssd-1.16.0/src/db/sysdb_ops.c:4209:11: note: Calling 'sysdb_search_object_by_sid'
ced1f5
 #     ret = sysdb_search_object_by_sid(tmp_ctx, domain, sid_str, NULL, &res;;
ced1f5
 #           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ced1f5
 22. sssd-1.16.0/src/db/sysdb_ops.c:4960:12: note: Calling 'sysdb_search_object_by_str_attr'
ced1f5
 #     return sysdb_search_object_by_str_attr(mem_ctx, domain, SYSDB_SID_FILTER,
ced1f5
 #            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ced1f5
 25. sssd-1.16.0/src/db/sysdb_ops.c:4872:5: note: Taking false branch
ced1f5
 #     if (str == NULL) {
ced1f5
 #     ^
ced1f5
 28. sssd-1.16.0/src/db/sysdb_ops.c:4877:9: note: Assuming 'ret' is equal to 0
ced1f5
 #     if (ret != EOK || sanitized == NULL) {
ced1f5
 #         ^~~~~~~~~~
ced1f5
 31. sssd-1.16.0/src/db/sysdb_ops.c:4877:9: note: Left side of '||' is false
ced1f5
 32. sssd-1.16.0/src/db/sysdb_ops.c:4877:23: note: Assuming 'sanitized' is equal to null
ced1f5
 #     if (ret != EOK || sanitized == NULL) {
ced1f5
 #                       ^~~~~~~~~~~~~~~~~
ced1f5
 35. sssd-1.16.0/src/db/sysdb_ops.c:4877:5: note: Taking true branch
ced1f5
 #     if (ret != EOK || sanitized == NULL) {
ced1f5
 #     ^
ced1f5
 38. sssd-1.16.0/src/db/sysdb_ops.c:4878:9: note: Left side of '||' is false
ced1f5
 #         DEBUG(SSSDBG_OP_FAILURE, "sss_filter_sanitize failed.\n");
ced1f5
 #         ^
ced1f5
 41. sssd-1.16.0/src/util/debug.h:123:9: note: expanded from macro 'DEBUG'
ced1f5
 #     if (DEBUG_IS_SET(__debug_macro_level)) { \
ced1f5
 #         ^
ced1f5
 44. sssd-1.16.0/src/util/debug.h:135:30: note: expanded from macro 'DEBUG_IS_SET'
ced1f5
 # #define DEBUG_IS_SET(level) (debug_level & (level) || \
ced1f5
 #                              ^
ced1f5
 47. sssd-1.16.0/src/db/sysdb_ops.c:4878:9: note: Assuming 'debug_level' is not equal to 0
ced1f5
 #         DEBUG(SSSDBG_OP_FAILURE, "sss_filter_sanitize failed.\n");
ced1f5
 #         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ced1f5
 50. sssd-1.16.0/src/util/debug.h:123:9: note: expanded from macro 'DEBUG'
ced1f5
 #     if (DEBUG_IS_SET(__debug_macro_level)) { \
ced1f5
 #         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ced1f5
 53. sssd-1.16.0/src/util/debug.h:136:30: note: expanded from macro 'DEBUG_IS_SET'
ced1f5
 #                             (debug_level == SSSDBG_UNRESOLVED && \
ced1f5
 #                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ced1f5
 56. sssd-1.16.0/src/db/sysdb_ops.c:4878:9: note: Left side of '&&' is false
ced1f5
 57. sssd-1.16.0/src/util/debug.h:123:9: note: expanded from macro 'DEBUG'
ced1f5
 #     if (DEBUG_IS_SET(__debug_macro_level)) { \
ced1f5
 #         ^
ced1f5
 60. sssd-1.16.0/src/util/debug.h:136:63: note: expanded from macro 'DEBUG_IS_SET'
ced1f5
 #                             (debug_level == SSSDBG_UNRESOLVED && \
ced1f5
 #                                                               ^
ced1f5
 63. sssd-1.16.0/src/db/sysdb_ops.c:4878:9: note: Loop condition is false. Exiting loop
ced1f5
 64. sssd-1.16.0/src/util/debug.h:121:35: note: expanded from macro 'DEBUG'
ced1f5
 # #define DEBUG(level, format, ...) do { \
ced1f5
 #                                   ^
ced1f5
 67. sssd-1.16.0/src/db/sysdb_ops.c:4879:9: note: Control jumps to line 4892
ced1f5
 #         goto done;
ced1f5
 #         ^
ced1f5
 70. sssd-1.16.0/src/db/sysdb_ops.c:4960:12: note: Returning from 'sysdb_search_object_by_str_attr'
ced1f5
 #     return sysdb_search_object_by_str_attr(mem_ctx, domain, SYSDB_SID_FILTER,
ced1f5
 #            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ced1f5
 73. sssd-1.16.0/src/db/sysdb_ops.c:4209:11: note: Returning from 'sysdb_search_object_by_sid'
ced1f5
 #     ret = sysdb_search_object_by_sid(tmp_ctx, domain, sid_str, NULL, &res;;
ced1f5
 #           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ced1f5
 76. sssd-1.16.0/src/db/sysdb_ops.c:4211:5: note: Taking false branch
ced1f5
 #     if (ret == ENOENT) {
ced1f5
 #     ^
ced1f5
 79. sssd-1.16.0/src/db/sysdb_ops.c:4217:12: note: Taking false branch
ced1f5
 #     } else if (ret != EOK) {
ced1f5
 #            ^
ced1f5
 82. sssd-1.16.0/src/db/sysdb_ops.c:4223:9: note: Dereference of undefined pointer value
ced1f5
 #     if (res->count > 1) {
ced1f5
 #         ^~~~~~~~~~
ced1f5
 #  4221|       }
ced1f5
 #  4222|
ced1f5
 #  4223|->     if (res->count > 1) {
ced1f5
 #  4224|           DEBUG(SSSDBG_FATAL_FAILURE, "getbysid call returned more than one " \
ced1f5
 #  4225|                                        "result !?!\n");
ced1f5
ced1f5
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
ced1f5
ced1f5
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
ced1f5
(cherry picked from commit b739b3e767c053bb3a7e6651514896b30502d838)
ced1f5
---
ced1f5
 src/db/sysdb_ops.c | 2 +-
ced1f5
 1 file changed, 1 insertion(+), 1 deletion(-)
ced1f5
ced1f5
diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c
ced1f5
index 2f8e36c6c9a2c2cefe4af5fb78957763304d989a..635c7db51f516e2217c93016409499e49289004c 100644
ced1f5
--- a/src/db/sysdb_ops.c
ced1f5
+++ b/src/db/sysdb_ops.c
ced1f5
@@ -4874,7 +4874,7 @@ static errno_t sysdb_search_object_by_str_attr(TALLOC_CTX *mem_ctx,
ced1f5
     }
ced1f5
 
ced1f5
     ret = sss_filter_sanitize(NULL, str, &sanitized);
ced1f5
-    if (ret != EOK || sanitized == NULL) {
ced1f5
+    if (ret != EOK) {
ced1f5
         DEBUG(SSSDBG_OP_FAILURE, "sss_filter_sanitize failed.\n");
ced1f5
         goto done;
ced1f5
     }
ced1f5
-- 
ced1f5
2.13.6
ced1f5