volume_id: abort early on read failures.

should help with probing missing fdd's
This commit is contained in:
Denis Vlasenko 2009-02-15 05:51:19 +00:00
parent 93b38208d1
commit 28ea4298e3
20 changed files with 99 additions and 70 deletions

View File

@ -35,8 +35,9 @@ struct cramfs_super {
uint8_t name[16]; uint8_t name[16];
} __attribute__((__packed__)); } __attribute__((__packed__));
int volume_id_probe_cramfs(struct volume_id *id, uint64_t off) int volume_id_probe_cramfs(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct cramfs_super *cs; struct cramfs_super *cs;
dbg("probing at offset 0x%llx", (unsigned long long) off); dbg("probing at offset 0x%llx", (unsigned long long) off);

View File

@ -43,8 +43,9 @@ struct ext2_super_block {
#define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x00000008 #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x00000008
#define EXT_SUPERBLOCK_OFFSET 0x400 #define EXT_SUPERBLOCK_OFFSET 0x400
int volume_id_probe_ext(struct volume_id *id, uint64_t off) int volume_id_probe_ext(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct ext2_super_block *es; struct ext2_super_block *es;
dbg("ext: probing at offset 0x%llx", (unsigned long long) off); dbg("ext: probing at offset 0x%llx", (unsigned long long) off);

View File

@ -119,8 +119,9 @@ static uint8_t *get_attr_volume_id(struct vfat_dir_entry *dir, int count)
return NULL; return NULL;
} }
int volume_id_probe_vfat(struct volume_id *id, uint64_t fat_partition_off) int volume_id_probe_vfat(struct volume_id *id /*,uint64_t fat_partition_off*/)
{ {
#define fat_partition_off ((uint64_t)0)
struct vfat_super_block *vs; struct vfat_super_block *vs;
struct vfat_dir_entry *dir; struct vfat_dir_entry *dir;
uint16_t sector_size_bytes; uint16_t sector_size_bytes;

View File

@ -37,7 +37,7 @@ get_label_uuid(int fd, char **label, char **uuid)
if (ioctl(/*vid->*/fd, BLKGETSIZE64, &size) != 0) if (ioctl(/*vid->*/fd, BLKGETSIZE64, &size) != 0)
size = 0; size = 0;
if (volume_id_probe_all(vid, 0, size) != 0) if (volume_id_probe_all(vid, /*0,*/ size) != 0)
goto ret; goto ret;
if (vid->label[0] != '\0' || vid->uuid[0] != '\0') { if (vid->label[0] != '\0' || vid->uuid[0] != '\0') {

View File

@ -131,8 +131,9 @@ struct hfsplus_vol_header {
#define HFS_NODE_LEAF 0xff #define HFS_NODE_LEAF 0xff
#define HFSPLUS_POR_CNID 1 #define HFSPLUS_POR_CNID 1
int volume_id_probe_hfs_hfsplus(struct volume_id *id, uint64_t off) int volume_id_probe_hfs_hfsplus(struct volume_id *id /*,uint64_t off*/)
{ {
uint64_t off = 0;
unsigned blocksize; unsigned blocksize;
unsigned cat_block; unsigned cat_block;
unsigned ext_block_start; unsigned ext_block_start;

View File

@ -47,8 +47,9 @@ struct high_sierra_volume_descriptor {
uint8_t version; uint8_t version;
} __attribute__((__packed__)); } __attribute__((__packed__));
int volume_id_probe_iso9660(struct volume_id *id, uint64_t off) int volume_id_probe_iso9660(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
uint8_t *buf; uint8_t *buf;
struct iso_volume_descriptor *is; struct iso_volume_descriptor *is;
struct high_sierra_volume_descriptor *hs; struct high_sierra_volume_descriptor *hs;

View File

@ -35,8 +35,9 @@ struct jfs_super_block {
#define JFS_SUPERBLOCK_OFFSET 0x8000 #define JFS_SUPERBLOCK_OFFSET 0x8000
int volume_id_probe_jfs(struct volume_id *id, uint64_t off) int volume_id_probe_jfs(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct jfs_super_block *js; struct jfs_super_block *js;
dbg("probing at offset 0x%llx", (unsigned long long) off); dbg("probing at offset 0x%llx", (unsigned long long) off);

View File

@ -42,8 +42,9 @@ struct mdp_super_block {
#define MD_RESERVED_BYTES 0x10000 #define MD_RESERVED_BYTES 0x10000
#define MD_MAGIC 0xa92b4efc #define MD_MAGIC 0xa92b4efc
int volume_id_probe_linux_raid(struct volume_id *id, uint64_t off, uint64_t size) int volume_id_probe_linux_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size)
{ {
#define off ((uint64_t)0)
uint64_t sboff; uint64_t sboff;
uint8_t uuid[16]; uint8_t uuid[16];
struct mdp_super_block *mdp; struct mdp_super_block *mdp;

View File

@ -31,8 +31,9 @@ struct swap_header_v1_2 {
#define LARGEST_PAGESIZE 0x4000 #define LARGEST_PAGESIZE 0x4000
int volume_id_probe_linux_swap(struct volume_id *id, uint64_t off) int volume_id_probe_linux_swap(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct swap_header_v1_2 *sw; struct swap_header_v1_2 *sw;
const uint8_t *buf; const uint8_t *buf;
unsigned page; unsigned page;

View File

@ -80,8 +80,9 @@ struct BUG_bad_size_luks_phdr {
1 : -1]; 1 : -1];
}; };
int volume_id_probe_luks(struct volume_id *id, uint64_t off) int volume_id_probe_luks(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct luks_phdr *header; struct luks_phdr *header;
header = volume_id_get_buffer(id, off, sizeof(*header)); header = volume_id_get_buffer(id, off, sizeof(*header));

View File

@ -84,8 +84,9 @@ struct volume_info {
#define MFT_RECORD_ATTR_OBJECT_ID 0x40 #define MFT_RECORD_ATTR_OBJECT_ID 0x40
#define MFT_RECORD_ATTR_END 0xffffffffu #define MFT_RECORD_ATTR_END 0xffffffffu
int volume_id_probe_ntfs(struct volume_id *id, uint64_t off) int volume_id_probe_ntfs(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
unsigned sector_size; unsigned sector_size;
unsigned cluster_size; unsigned cluster_size;
uint64_t mft_cluster; uint64_t mft_cluster;

View File

@ -80,8 +80,9 @@ struct ocfs2_super_block {
uint8_t s_uuid[OCFS2_VOL_UUID_LEN]; /* 128-bit uuid */ uint8_t s_uuid[OCFS2_VOL_UUID_LEN]; /* 128-bit uuid */
} __attribute__((__packed__)); } __attribute__((__packed__));
int volume_id_probe_ocfs2(struct volume_id *id, uint64_t off) int volume_id_probe_ocfs2(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct ocfs2_super_block *os; struct ocfs2_super_block *os;
dbg("probing at offset 0x%llx", (unsigned long long) off); dbg("probing at offset 0x%llx", (unsigned long long) off);

View File

@ -48,8 +48,9 @@ struct reiser4_super_block {
#define REISERFS1_SUPERBLOCK_OFFSET 0x2000 #define REISERFS1_SUPERBLOCK_OFFSET 0x2000
#define REISERFS_SUPERBLOCK_OFFSET 0x10000 #define REISERFS_SUPERBLOCK_OFFSET 0x10000
int volume_id_probe_reiserfs(struct volume_id *id, uint64_t off) int volume_id_probe_reiserfs(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct reiserfs_super_block *rs; struct reiserfs_super_block *rs;
struct reiser4_super_block *rs4; struct reiser4_super_block *rs4;

View File

@ -27,8 +27,9 @@ struct romfs_super {
uint8_t name[0]; uint8_t name[0];
} __attribute__((__packed__)); } __attribute__((__packed__));
int volume_id_probe_romfs(struct volume_id *id, uint64_t off) int volume_id_probe_romfs(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct romfs_super *rfs; struct romfs_super *rfs;
dbg("probing at offset 0x%llx", (unsigned long long) off); dbg("probing at offset 0x%llx", (unsigned long long) off);

View File

@ -83,8 +83,9 @@ struct xenix_super {
#define XENIX_MAGIC 0x2b5544 #define XENIX_MAGIC 0x2b5544
#define SYSV_MAX_BLOCKSIZE 0x800 #define SYSV_MAX_BLOCKSIZE 0x800
int volume_id_probe_sysv(struct volume_id *id, uint64_t off) int volume_id_probe_sysv(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct sysv_super *vs; struct sysv_super *vs;
struct xenix_super *xs; struct xenix_super *xs;
unsigned boff; unsigned boff;

View File

@ -55,8 +55,9 @@ struct volume_structure_descriptor {
#define UDF_VSD_OFFSET 0x8000 #define UDF_VSD_OFFSET 0x8000
int volume_id_probe_udf(struct volume_id *id, uint64_t off) int volume_id_probe_udf(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct volume_descriptor *vd; struct volume_descriptor *vd;
struct volume_structure_descriptor *vsd; struct volume_structure_descriptor *vsd;
unsigned bs; unsigned bs;

View File

@ -254,9 +254,15 @@ void *volume_id_get_buffer(struct volume_id *id, uint64_t off, size_t len)
dbg("requested 0x%x bytes, got 0x%x bytes", dbg("requested 0x%x bytes, got 0x%x bytes",
(unsigned) len, (unsigned) read_len); (unsigned) len, (unsigned) read_len);
err: err:
/* id->seekbuf_len or id->sbbuf_len is wrong now! Fixing. /* No filesystem can be this tiny. It's most likely
* Most likely user will not do any additional * non-associated loop device, empty drive and so on.
* calls anyway, it's a corrupted fs or something. */ * Flag it, making it possible to short circuit future
* accesses. Rationale:
* users complained of slow blkid due to empty floppy drives.
*/
if (off < 64*1024)
id->error = 1;
/* id->seekbuf_len or id->sbbuf_len is wrong now! Fixing. */
volume_id_free_buffer(id); volume_id_free_buffer(id);
return NULL; return NULL;
} }

View File

@ -45,8 +45,8 @@
#define ENABLE_FEATURE_VOLUMEID_UFS 0 #define ENABLE_FEATURE_VOLUMEID_UFS 0
typedef int (*raid_probe_fptr)(struct volume_id *id, uint64_t off, uint64_t size); typedef int (*raid_probe_fptr)(struct volume_id *id, /*uint64_t off,*/ uint64_t size);
typedef int (*probe_fptr)(struct volume_id *id, uint64_t off); typedef int (*probe_fptr)(struct volume_id *id /*, uint64_t off*/);
static const raid_probe_fptr raid1[] = { static const raid_probe_fptr raid1[] = {
#if ENABLE_FEATURE_VOLUMEID_LINUXRAID #if ENABLE_FEATURE_VOLUMEID_LINUXRAID
@ -150,43 +150,49 @@ static const probe_fptr fs2[] = {
#endif #endif
}; };
int volume_id_probe_all(struct volume_id *id, uint64_t off, uint64_t size) int volume_id_probe_all(struct volume_id *id, /*uint64_t off,*/ uint64_t size)
{ {
unsigned i; unsigned i;
if (id == NULL)
return -EINVAL;
/* probe for raid first, cause fs probes may be successful on raid members */ /* probe for raid first, cause fs probes may be successful on raid members */
if (size) { if (size) {
for (i = 0; i < ARRAY_SIZE(raid1); i++) for (i = 0; i < ARRAY_SIZE(raid1); i++) {
if (raid1[i](id, off, size) == 0) if (raid1[i](id, /*off,*/ size) == 0)
goto ret;
if (id->error)
goto ret;
}
}
for (i = 0; i < ARRAY_SIZE(raid2); i++) {
if (raid2[i](id /*,off*/) == 0)
goto ret;
if (id->error)
goto ret; goto ret;
} }
for (i = 0; i < ARRAY_SIZE(raid2); i++)
if (raid2[i](id, off) == 0)
goto ret;
/* signature in the first block, only small buffer needed */ /* signature in the first block, only small buffer needed */
for (i = 0; i < ARRAY_SIZE(fs1); i++) for (i = 0; i < ARRAY_SIZE(fs1); i++) {
if (fs1[i](id, off) == 0) if (fs1[i](id /*,off*/) == 0)
goto ret; goto ret;
if (id->error)
goto ret;
}
/* fill buffer with maximum */ /* fill buffer with maximum */
volume_id_get_buffer(id, 0, SB_BUFFER_SIZE); volume_id_get_buffer(id, 0, SB_BUFFER_SIZE);
for (i = 0; i < ARRAY_SIZE(fs2); i++) for (i = 0; i < ARRAY_SIZE(fs2); i++) {
if (fs2[i](id, off) == 0) if (fs2[i](id /*,off*/) == 0)
goto ret; goto ret;
return -1; if (id->error)
goto ret;
}
ret: ret:
/* If the filestystem in recognized, we free the allocated buffers,
otherwise they will stay in place for the possible next probe call */
volume_id_free_buffer(id); volume_id_free_buffer(id);
return (- id->error); /* 0 or -1 */
return 0;
} }
/* open volume by device node */ /* open volume by device node */

View File

@ -63,6 +63,7 @@ struct volume_id_partition {
struct volume_id { struct volume_id {
int fd; int fd;
// int fd_close:1; // int fd_close:1;
int error;
size_t sbbuf_len; size_t sbbuf_len;
size_t seekbuf_len; size_t seekbuf_len;
uint8_t *sbbuf; uint8_t *sbbuf;
@ -86,7 +87,7 @@ struct volume_id {
}; };
struct volume_id *volume_id_open_node(int fd); struct volume_id *volume_id_open_node(int fd);
int volume_id_probe_all(struct volume_id *id, uint64_t off, uint64_t size); int volume_id_probe_all(struct volume_id *id, /*uint64_t off,*/ uint64_t size);
void free_volume_id(struct volume_id *id); void free_volume_id(struct volume_id *id);
/* util.h */ /* util.h */
@ -164,67 +165,67 @@ void volume_id_free_buffer(struct volume_id *id);
/* RAID */ /* RAID */
//int volume_id_probe_highpoint_37x_raid(struct volume_id *id, uint64_t off); //int volume_id_probe_highpoint_37x_raid(struct volume_id *id /*,uint64_t off*/);
//int volume_id_probe_highpoint_45x_raid(struct volume_id *id, uint64_t off, uint64_t size); //int volume_id_probe_highpoint_45x_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
//int volume_id_probe_intel_software_raid(struct volume_id *id, uint64_t off, uint64_t size); //int volume_id_probe_intel_software_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
int volume_id_probe_linux_raid(struct volume_id *id, uint64_t off, uint64_t size); int volume_id_probe_linux_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
//int volume_id_probe_lsi_mega_raid(struct volume_id *id, uint64_t off, uint64_t size); //int volume_id_probe_lsi_mega_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
//int volume_id_probe_nvidia_raid(struct volume_id *id, uint64_t off, uint64_t size); //int volume_id_probe_nvidia_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
//int volume_id_probe_promise_fasttrack_raid(struct volume_id *id, uint64_t off, uint64_t size); //int volume_id_probe_promise_fasttrack_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
//int volume_id_probe_silicon_medley_raid(struct volume_id *id, uint64_t off, uint64_t size); //int volume_id_probe_silicon_medley_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
//int volume_id_probe_via_raid(struct volume_id *id, uint64_t off, uint64_t size); //int volume_id_probe_via_raid(struct volume_id *id /*,uint64_t off*/, uint64_t size);
//int volume_id_probe_lvm1(struct volume_id *id, uint64_t off); //int volume_id_probe_lvm1(struct volume_id *id /*,uint64_t off*/);
//int volume_id_probe_lvm2(struct volume_id *id, uint64_t off); //int volume_id_probe_lvm2(struct volume_id *id /*,uint64_t off*/);
/* FS */ /* FS */
int volume_id_probe_cramfs(struct volume_id *id, uint64_t off); int volume_id_probe_cramfs(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_ext(struct volume_id *id, uint64_t off); int volume_id_probe_ext(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_vfat(struct volume_id *id, uint64_t off); int volume_id_probe_vfat(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_hfs_hfsplus(struct volume_id *id, uint64_t off); int volume_id_probe_hfs_hfsplus(struct volume_id *id /*,uint64_t off*/);
//int volume_id_probe_hpfs(struct volume_id *id, uint64_t off); //int volume_id_probe_hpfs(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_iso9660(struct volume_id *id, uint64_t off); int volume_id_probe_iso9660(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_jfs(struct volume_id *id, uint64_t off); int volume_id_probe_jfs(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_linux_swap(struct volume_id *id, uint64_t off); int volume_id_probe_linux_swap(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_luks(struct volume_id *id, uint64_t off); int volume_id_probe_luks(struct volume_id *id /*,uint64_t off*/);
//int volume_id_probe_mac_partition_map(struct volume_id *id, uint64_t off); //int volume_id_probe_mac_partition_map(struct volume_id *id /*,uint64_t off*/);
//int volume_id_probe_minix(struct volume_id *id, uint64_t off); //int volume_id_probe_minix(struct volume_id *id /*,uint64_t off*/);
//int volume_id_probe_msdos_part_table(struct volume_id *id, uint64_t off); //int volume_id_probe_msdos_part_table(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_ntfs(struct volume_id *id, uint64_t off); int volume_id_probe_ntfs(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_ocfs2(struct volume_id *id, uint64_t off); int volume_id_probe_ocfs2(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_reiserfs(struct volume_id *id, uint64_t off); int volume_id_probe_reiserfs(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_romfs(struct volume_id *id, uint64_t off); int volume_id_probe_romfs(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_sysv(struct volume_id *id, uint64_t off); int volume_id_probe_sysv(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_udf(struct volume_id *id, uint64_t off); int volume_id_probe_udf(struct volume_id *id /*,uint64_t off*/);
//int volume_id_probe_ufs(struct volume_id *id, uint64_t off); //int volume_id_probe_ufs(struct volume_id *id /*,uint64_t off*/);
int volume_id_probe_xfs(struct volume_id *id, uint64_t off); int volume_id_probe_xfs(struct volume_id *id /*,uint64_t off*/);
#if __GNUC_PREREQ(4,1) #if __GNUC_PREREQ(4,1)
# pragma GCC visibility pop # pragma GCC visibility pop

View File

@ -35,8 +35,9 @@ struct xfs_super_block {
uint64_t fdblocks; uint64_t fdblocks;
} __attribute__((__packed__)); } __attribute__((__packed__));
int volume_id_probe_xfs(struct volume_id *id, uint64_t off) int volume_id_probe_xfs(struct volume_id *id /*,uint64_t off*/)
{ {
#define off ((uint64_t)0)
struct xfs_super_block *xs; struct xfs_super_block *xs;
dbg("probing at offset 0x%llx", (unsigned long long) off); dbg("probing at offset 0x%llx", (unsigned long long) off);