mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 14:56:13 +01:00
Properly recover from superblock check-hash failures. Specifically,
report the check-hash failure and offer to search for and use alternate superblocks. Prior to this fix fsck_ffs would simply report the check-hash failure and exit. Reported by: Julian H. Stacey <jhs@berklix.com> Tested by: Peter Holm Sponsored by: Netflix
This commit is contained in:
parent
ade67b509c
commit
038c170fc2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=340925
@ -127,7 +127,7 @@ setup(char *dev)
|
||||
}
|
||||
}
|
||||
if ((fsreadfd = open(dev, O_RDONLY)) < 0 ||
|
||||
ufs_disk_fillout(&disk, dev) < 0) {
|
||||
ufs_disk_fillout_blank(&disk, dev) < 0) {
|
||||
if (bkgrdflag) {
|
||||
unlink(snapname);
|
||||
bkgrdflag = 0;
|
||||
@ -325,10 +325,8 @@ readsb(int listerr)
|
||||
if ((ret = sbget(fsreadfd, &fs, super)) != 0) {
|
||||
switch (ret) {
|
||||
case EINVAL:
|
||||
fprintf(stderr, "The previous newfs operation "
|
||||
"on this volume did not complete.\nYou must "
|
||||
"complete newfs before using this volume.\n");
|
||||
exit(11);
|
||||
/* Superblock check-hash failed */
|
||||
return (0);
|
||||
case ENOENT:
|
||||
if (bflag)
|
||||
fprintf(stderr, "%jd is not a file system "
|
||||
|
Loading…
Reference in New Issue
Block a user