]> err.no Git - util-linux/commitdiff
wipefs: ignore devices with partition table
authorKarel Zak <kzak@redhat.com>
Thu, 4 Feb 2010 20:18:34 +0000 (21:18 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 4 Feb 2010 20:18:34 +0000 (21:18 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/wipefs.c

index a59b5d7261b34ece16bda7b976d159ca9dd66942..f735065d708a12c65e81180bd2083beb4fb2c5d4 100644 (file)
@@ -190,13 +190,27 @@ static struct wipe_desc *
 read_offsets(struct wipe_desc *wp, const char *fname, int zap)
 {
        blkid_probe pr;
+       int rc;
 
        if (!fname)
                return NULL;
 
        pr = blkid_new_probe_from_filename(fname);
        if (!pr)
-               errx(EXIT_FAILURE, _("probing initialization failed"));
+               errx(EXIT_FAILURE, _("error: %s: probing initialization failed"), fname);
+
+       blkid_probe_enable_superblocks(pr, 0);  /* enabled by default ;-( */
+
+       blkid_probe_enable_partitions(pr, 1);
+       rc = blkid_do_fullprobe(pr);
+       blkid_probe_enable_partitions(pr, 0);
+
+       if (rc == 0) {
+               const char *type = NULL;
+               blkid_probe_lookup_value(pr, "PTTYPE", &type, NULL);
+               errx(EXIT_FAILURE, _("error: %s: appears to contain '%s' "
+                               "partition table"), fname, type);
+       }
 
        blkid_probe_enable_superblocks(pr, 1);
        blkid_probe_set_superblocks_flags(pr, BLKID_SUBLKS_MAGIC |