]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lsblk: fix endless loop if device specified more than once
authorKarel Zak <kzak@redhat.com>
Mon, 19 Sep 2022 12:23:25 +0000 (14:23 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 19 Sep 2022 12:23:25 +0000 (14:23 +0200)
Fixes: https://github.com/util-linux/util-linux/issues/1814
Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/lsblk-devtree.c

index ce9d3e84f7713cd3e0a84867f6c6845416cd3b01..6f9dc54b3c87d133a6b04fc465562f87a6c00ea5 100644 (file)
@@ -282,8 +282,25 @@ void lsblk_unref_devtree(struct lsblk_devtree *tr)
        }
 }
 
+static int has_root(struct lsblk_devtree *tr, struct lsblk_device *dev)
+{
+       struct lsblk_iter itr;
+       struct lsblk_device *x = NULL;
+
+       lsblk_reset_iter(&itr, LSBLK_ITER_FORWARD);
+
+       while (lsblk_devtree_next_root(tr, &itr, &x) == 0) {
+               if (x == dev)
+                       return 1;
+       }
+       return 0;
+}
+
 int lsblk_devtree_add_root(struct lsblk_devtree *tr, struct lsblk_device *dev)
 {
+       if (has_root(tr, dev))
+               return 0;
+
        if (!lsblk_devtree_has_device(tr, dev))
                lsblk_devtree_add_device(tr, dev);