dcavalca / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone
b3c25a
diff -up util-linux-2.23.2/fdisks/fdisk.c.kzak util-linux-2.23.2/fdisks/fdisk.c
b3c25a
--- util-linux-2.23.2/fdisks/fdisk.c.kzak	2013-07-30 10:39:26.195738131 +0200
b3c25a
+++ util-linux-2.23.2/fdisks/fdisk.c	2015-07-03 10:30:50.378965526 +0200
b3c25a
@@ -34,6 +34,7 @@
b3c25a
 #include "canonicalize.h"
b3c25a
 #include "strutils.h"
b3c25a
 #include "closestream.h"
b3c25a
+#include "sysfs.h"
b3c25a
 
b3c25a
 #include "fdisksunlabel.h"
b3c25a
 #include "fdisksgilabel.h"
b3c25a
diff -up util-linux-2.23.2/include/sysfs.h.kzak util-linux-2.23.2/include/sysfs.h
b3c25a
--- util-linux-2.23.2/include/sysfs.h.kzak	2013-06-13 09:46:10.400650451 +0200
b3c25a
+++ util-linux-2.23.2/include/sysfs.h	2015-07-03 10:30:50.378965526 +0200
b3c25a
@@ -73,6 +73,8 @@ extern int sysfs_is_partition_dirent(DIR
b3c25a
 extern int sysfs_devno_to_wholedisk(dev_t dev, char *diskname,
b3c25a
             size_t len, dev_t *diskdevno);
b3c25a
 
b3c25a
+extern int sysfs_devno_is_lvm_private(dev_t devno);
b3c25a
+
b3c25a
 extern int sysfs_scsi_get_hctl(struct sysfs_cxt *cxt, int *h,
b3c25a
 			       int *c, int *t, int *l);
b3c25a
 extern char *sysfs_scsi_host_strdup_attribute(struct sysfs_cxt *cxt,
b3c25a
diff -up util-linux-2.23.2/libblkid/src/blkidP.h.kzak util-linux-2.23.2/libblkid/src/blkidP.h
b3c25a
--- util-linux-2.23.2/libblkid/src/blkidP.h.kzak	2015-07-03 10:29:08.582688645 +0200
b3c25a
+++ util-linux-2.23.2/libblkid/src/blkidP.h	2015-07-03 10:30:50.378965526 +0200
b3c25a
@@ -221,6 +221,7 @@ struct blkid_struct_probe
b3c25a
 #define BLKID_FL_PRIVATE_FD	(1 << 1)	/* see blkid_new_probe_from_filename() */
b3c25a
 #define BLKID_FL_TINY_DEV	(1 << 2)	/* <= 1.47MiB (floppy or so) */
b3c25a
 #define BLKID_FL_CDROM_DEV	(1 << 3)	/* is a CD/DVD drive */
b3c25a
+#define BLKID_FL_NOSCAN_DEV	(1 << 4)        /* do not scan this device */
b3c25a
 
b3c25a
 /* private per-probing flags */
b3c25a
 #define BLKID_PROBE_FL_IGNORE_PT (1 << 1)	/* ignore partition table */
b3c25a
diff -up util-linux-2.23.2/libblkid/src/partitions/partitions.c.kzak util-linux-2.23.2/libblkid/src/partitions/partitions.c
b3c25a
--- util-linux-2.23.2/libblkid/src/partitions/partitions.c.kzak	2015-07-03 10:29:08.582688645 +0200
b3c25a
+++ util-linux-2.23.2/libblkid/src/partitions/partitions.c	2015-07-03 10:30:50.378965526 +0200
b3c25a
@@ -537,6 +537,8 @@ static int idinfo_probe(blkid_probe pr,
b3c25a
 
b3c25a
 	if (pr->size <= 0 || (id->minsz && id->minsz > pr->size))
b3c25a
 		goto nothing;	/* the device is too small */
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		goto nothing;
b3c25a
 
b3c25a
 	rc = blkid_probe_get_idmag(pr, id, &off, &mag;;
b3c25a
 	if (rc != BLKID_PROBE_OK)
b3c25a
@@ -576,8 +578,12 @@ static int partitions_probe(blkid_probe
b3c25a
 
b3c25a
 	if (!pr || chn->idx < -1)
b3c25a
 		return -EINVAL;
b3c25a
+
b3c25a
 	blkid_probe_chain_reset_vals(pr, chn);
b3c25a
 
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		return BLKID_PROBE_NONE;
b3c25a
+
b3c25a
 	if (chn->binary)
b3c25a
 		partitions_init_data(chn);
b3c25a
 
b3c25a
@@ -653,6 +659,8 @@ int blkid_partitions_do_subprobe(blkid_p
b3c25a
 
b3c25a
 	if (!pr || !parent || !parent->size)
b3c25a
 		return -EINVAL;
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		return BLKID_PROBE_NONE;
b3c25a
 
b3c25a
 	/* range defined by parent */
b3c25a
 	sz = ((blkid_loff_t) parent->size) << 9;
b3c25a
@@ -707,6 +715,9 @@ static int blkid_partitions_probe_partit
b3c25a
 	blkid_partition par;
b3c25a
 	dev_t devno;
b3c25a
 
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		goto nothing;
b3c25a
+
b3c25a
 	devno = blkid_probe_get_devno(pr);
b3c25a
 	if (!devno)
b3c25a
 		goto nothing;
b3c25a
@@ -779,7 +790,7 @@ nothing:
b3c25a
 int blkid_probe_is_covered_by_pt(blkid_probe pr,
b3c25a
 				 blkid_loff_t offset, blkid_loff_t size)
b3c25a
 {
b3c25a
-	blkid_probe prc;
b3c25a
+	blkid_probe prc = NULL;
b3c25a
 	blkid_partlist ls = NULL;
b3c25a
 	blkid_loff_t start, end;
b3c25a
 	int nparts, i, rc = 0;
b3c25a
@@ -788,6 +799,9 @@ int blkid_probe_is_covered_by_pt(blkid_p
b3c25a
 		"=> checking if off=%jd size=%jd covered by PT",
b3c25a
 		offset, size));
b3c25a
 
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		goto done;
b3c25a
+
b3c25a
 	prc = blkid_clone_probe(pr);
b3c25a
 	if (!prc)
b3c25a
 		goto done;
b3c25a
diff -up util-linux-2.23.2/libblkid/src/probe.c.kzak util-linux-2.23.2/libblkid/src/probe.c
b3c25a
--- util-linux-2.23.2/libblkid/src/probe.c.kzak	2015-07-03 10:29:08.583688638 +0200
b3c25a
+++ util-linux-2.23.2/libblkid/src/probe.c	2015-07-03 10:30:50.378965526 +0200
b3c25a
@@ -110,6 +110,7 @@
b3c25a
 
b3c25a
 #include "blkidP.h"
b3c25a
 #include "all-io.h"
b3c25a
+#include "sysfs.h"
b3c25a
 
b3c25a
 /* chains */
b3c25a
 extern const struct blkid_chaindrv superblocks_drv;
b3c25a
@@ -714,8 +715,13 @@ int blkid_probe_set_device(blkid_probe p
b3c25a
 	if (pr->size <= 1440 * 1024 && !S_ISCHR(sb.st_mode))
b3c25a
 		pr->flags |= BLKID_FL_TINY_DEV;
b3c25a
 
b3c25a
+	if (S_ISBLK(sb.st_mode) && sysfs_devno_is_lvm_private(sb.st_rdev)) {
b3c25a
+		DBG(LOWPROBE, blkid_debug("ignore private LVM device"));
b3c25a
+		pr->flags |= BLKID_FL_NOSCAN_DEV;
b3c25a
+        }
b3c25a
+
b3c25a
 #ifdef CDROM_GET_CAPABILITY
b3c25a
-	if (S_ISBLK(sb.st_mode) &&
b3c25a
+	else if (S_ISBLK(sb.st_mode) &&
b3c25a
 	    !blkid_probe_is_tiny(pr) &&
b3c25a
 	    blkid_probe_is_wholedisk(pr) &&
b3c25a
 	    ioctl(fd, CDROM_GET_CAPABILITY, NULL) >= 0)
b3c25a
@@ -892,6 +898,9 @@ int blkid_do_probe(blkid_probe pr)
b3c25a
 	if (!pr)
b3c25a
 		return -1;
b3c25a
 
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		return 1;
b3c25a
+
b3c25a
 	do {
b3c25a
 		struct blkid_chain *chn = pr->cur_chain;
b3c25a
 
b3c25a
@@ -1143,6 +1152,8 @@ int blkid_do_safeprobe(blkid_probe pr)
b3c25a
 
b3c25a
 	if (!pr)
b3c25a
 		return -1;
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		return 1;
b3c25a
 
b3c25a
 	blkid_probe_start(pr);
b3c25a
 
b3c25a
@@ -1197,6 +1208,8 @@ int blkid_do_fullprobe(blkid_probe pr)
b3c25a
 
b3c25a
 	if (!pr)
b3c25a
 		return -1;
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		return 1;
b3c25a
 
b3c25a
 	blkid_probe_start(pr);
b3c25a
 
b3c25a
diff -up util-linux-2.23.2/libblkid/src/superblocks/superblocks.c.kzak util-linux-2.23.2/libblkid/src/superblocks/superblocks.c
b3c25a
--- util-linux-2.23.2/libblkid/src/superblocks/superblocks.c.kzak	2015-07-03 10:29:08.586688617 +0200
b3c25a
+++ util-linux-2.23.2/libblkid/src/superblocks/superblocks.c	2015-07-03 10:30:50.378965526 +0200
b3c25a
@@ -335,6 +335,9 @@ static int superblocks_probe(blkid_probe
b3c25a
 
b3c25a
 	if (!pr || chn->idx < -1)
b3c25a
 		return -EINVAL;
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		goto nothing;
b3c25a
+
b3c25a
 	blkid_probe_chain_reset_vals(pr, chn);
b3c25a
 
b3c25a
 	DBG(LOWPROBE, blkid_debug("--> starting probing loop [SUBLKS idx=%d]",
b3c25a
@@ -450,6 +453,9 @@ static int superblocks_safeprobe(blkid_p
b3c25a
 	int intol = 0;
b3c25a
 	int rc;
b3c25a
 
b3c25a
+	if (pr->flags & BLKID_FL_NOSCAN_DEV)
b3c25a
+		return 1;				/* nothing */
b3c25a
+
b3c25a
 	while ((rc = superblocks_probe(pr, chn)) == 0) {
b3c25a
 
b3c25a
 		if (blkid_probe_is_tiny(pr) && !count)
b3c25a
diff -up util-linux-2.23.2/libblkid/src/verify.c.kzak util-linux-2.23.2/libblkid/src/verify.c
b3c25a
--- util-linux-2.23.2/libblkid/src/verify.c.kzak	2013-06-13 09:46:10.429650699 +0200
b3c25a
+++ util-linux-2.23.2/libblkid/src/verify.c	2015-07-03 10:30:50.378965526 +0200
b3c25a
@@ -112,6 +112,10 @@ blkid_dev blkid_verify(blkid_cache cache
b3c25a
 		   (unsigned long)diff));
b3c25a
 #endif
b3c25a
 
b3c25a
+	if (sysfs_devno_is_lvm_private(st.st_rdev)) {
b3c25a
+		blkid_free_dev(dev);
b3c25a
+		return NULL;
b3c25a
+	}
b3c25a
 	if (!cache->probe) {
b3c25a
 		cache->probe = blkid_new_probe();
b3c25a
 		if (!cache->probe) {
b3c25a
diff -up util-linux-2.23.2/lib/sysfs.c.kzak util-linux-2.23.2/lib/sysfs.c
b3c25a
--- util-linux-2.23.2/lib/sysfs.c.kzak	2013-06-13 09:46:10.410650536 +0200
b3c25a
+++ util-linux-2.23.2/lib/sysfs.c	2015-07-03 10:32:32.953236879 +0200
b3c25a
@@ -638,6 +638,35 @@ err:
b3c25a
     return -1;
b3c25a
 }
b3c25a
 
b3c25a
+/*
b3c25a
+ * Returns 1 if the device is private LVM device.
b3c25a
+ */
b3c25a
+int sysfs_devno_is_lvm_private(dev_t devno)
b3c25a
+{
b3c25a
+	struct sysfs_cxt cxt = UL_SYSFSCXT_EMPTY;
b3c25a
+	char *uuid = NULL;
b3c25a
+	int rc = 0;
b3c25a
+
b3c25a
+	if (sysfs_init(&cxt, devno, NULL) != 0)
b3c25a
+		return 0;
b3c25a
+
b3c25a
+	uuid = sysfs_strdup(&cxt, "dm/uuid");
b3c25a
+
b3c25a
+	/* Private LVM devices use "LVM-<uuid>-<name>" uuid format (important
b3c25a
+	 * is the "LVM" prefix and "-<name>" postfix).
b3c25a
+	 */
b3c25a
+	if (uuid && strncmp(uuid, "LVM-", 4) == 0) {
b3c25a
+		char *p = strrchr(uuid + 4, '-');
b3c25a
+
b3c25a
+		if (p && *(p + 1))
b3c25a
+			rc = 1;
b3c25a
+	}
b3c25a
+
b3c25a
+	sysfs_deinit(&cxt);
b3c25a
+	free(uuid);
b3c25a
+	return rc;
b3c25a
+}
b3c25a
+
b3c25a
 
b3c25a
 int sysfs_scsi_get_hctl(struct sysfs_cxt *cxt, int *h, int *c, int *t, int *l)
b3c25a
 {