dcavalca / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone

Blame SOURCES/0174-libblkid-minix-Match-minix-superblock-types.patch

5113bc
From b4d5cf4819023ce07ecd39729cdd4cde8b59ca35 Mon Sep 17 00:00:00 2001
7fefb0
From: Nate Clark <nate@neworld.us>
7fefb0
Date: Wed, 4 Jan 2017 15:24:22 -0500
5113bc
Subject: [PATCH 174/176] libblkid/minix: Match minix superblock types
7fefb0
7fefb0
All of the types in the minix super block are unsigned but in
7fefb0
probe_minix they were being treated as signed. This would cause some of
7fefb0
the extra sanity checks to pass on a non minix device. The types were
7fefb0
updated to match the return types of the helper functions in
7fefb0
disk-utils/minix_programs.h
7fefb0
7fefb0
This can be checked by creating a swap partition with one of these UUIDs
7fefb0
35f1f264-2468-471a-bc85-acc9f4bc04a3
7fefb0
35f1f264-6824-471a-bc85-acc9f4bc04a3
7fefb0
35f1f264-2478-471a-bc85-acc9f4bc04a3
7fefb0
35f1f264-7824-471a-bc85-acc9f4bc04a3
7fefb0
7fefb0
Prior to this change they would all be considered minix and swap by
7fefb0
blkid.
7fefb0
7fefb0
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1594681
7fefb0
Upstream: http://github.com/karelzak/util-linux/commit/a9975c1072c4975ec2df958188a80d89cabc6171
7fefb0
Signed-off-by: Nate Clark <nate@neworld.us>
7fefb0
---
7fefb0
 libblkid/src/superblocks/minix.c | 3 ++-
7fefb0
 1 file changed, 2 insertions(+), 1 deletion(-)
7fefb0
7fefb0
diff --git a/libblkid/src/superblocks/minix.c b/libblkid/src/superblocks/minix.c
7fefb0
index 3e80e5b22..a20d51f2c 100644
7fefb0
--- a/libblkid/src/superblocks/minix.c
7fefb0
+++ b/libblkid/src/superblocks/minix.c
7fefb0
@@ -87,7 +87,8 @@ static int probe_minix(blkid_probe pr, const struct blkid_idmag *mag)
7fefb0
 
7fefb0
 	if (version <= 2) {
7fefb0
 		struct minix_super_block *sb = (struct minix_super_block *) data;
7fefb0
-		int zones, ninodes, imaps, zmaps, firstz;
7fefb0
+		unsigned long zones, ninodes, imaps, zmaps;
7fefb0
+		off_t firstz;
7fefb0
 
7fefb0
 		if (sb->s_imap_blocks == 0 || sb->s_zmap_blocks == 0)
7fefb0
 			return 1;
7fefb0
-- 
7fefb0
2.14.4
7fefb0