gluster: Fix use after free in glfs_clear_preopened()
authorKevin Wolf <kwolf@redhat.com>
Thu, 17 Nov 2016 10:30:08 +0000 (11:30 +0100)
committerJeff Cody <jcody@redhat.com>
Mon, 21 Nov 2016 22:04:43 +0000 (17:04 -0500)
This fixes a use-after-free bug introduced in commit 6349c154. We need
to use QLIST_FOREACH_SAFE() when freeing elements in the loop. Spotted
by Coverity.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-id: 1479378608-11962-1-git-send-email-kwolf@redhat.com
Signed-off-by: Jeff Cody <jcody@redhat.com>
block/gluster.c

index 0ce15f7..891c13b 100644 (file)
@@ -239,12 +239,13 @@ static glfs_t *glfs_find_preopened(const char *volume)
 static void glfs_clear_preopened(glfs_t *fs)
 {
     ListElement *entry = NULL;
+    ListElement *next;
 
     if (fs == NULL) {
         return;
     }
 
-    QLIST_FOREACH(entry, &glfs_list, list) {
+    QLIST_FOREACH_SAFE(entry, &glfs_list, list, next) {
         if (entry->saved.fs == fs) {
             if (--entry->saved.ref) {
                 return;