Date: Mon, 30 May 2022 16:33:47 -0600 From: Warner Losh <imp@bsdimp.com> To: Cy Schubert <Cy.Schubert@cschubert.com> Cc: Kirk McKusick <mckusick@freebsd.org>, src-committers <src-committers@freebsd.org>, "<dev-commits-src-all@freebsd.org>" <dev-commits-src-all@freebsd.org>, dev-commits-src-main@freebsd.org, David Wolfskill <david@catwhisker.org>, Toomas Soome <tsoome@me.com> Subject: Re: git: 076002f24d35 - main - Do comprehensive UFS/FFS superblock integrity checks when reading a superblock. Message-ID: <CANCZdfoqpDO9-APZytimd9TpPGsnaj0%2BwJBfdxv%2Bo2NnOX5ZUQ@mail.gmail.com> In-Reply-To: <20220530222402.E22C7114@slippy.cwsent.com> References: <202205271922.24RJMOJ2039923@gitrepo.freebsd.org> <20220530215552.EE5432C@slippy.cwsent.com> <CANCZdfpovXadsxcS_YC2-NpJJX8S62YTfNTSfE9VHqoE6KsJPA@mail.gmail.com> <20220530222402.E22C7114@slippy.cwsent.com>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --] On Mon, May 30, 2022 at 4:24 PM Cy Schubert <Cy.Schubert@cschubert.com> wrote: > Upgrading boot blocks didn't help either. > > It only happened on one of four machines. Likely because the other three > are AMD on Asus MBs while the problem machine is an Acer laptop running > Intel. > David Wolfskill reported the same: some are affected, others not. It's unclear why, exactly, but all the other details you gave track with the troubleshooting tsoome and I have been doing with him. The issue is inside of loader.efi or /boot/loader, not in the earlier boot blocks. Warner > > -- > Cheers, > Cy Schubert <Cy.Schubert@komquats.com> or <Cy.Schubert@cschubert.com> > FreeBSD UNIX: <cy@FreeBSD.org> Web: http://www.FreeBSD.org > NTP: <cy@nwtime.org> Web: https://nwtime.org > > e**(i*pi)+1=0 > > > In message > <CANCZdfpovXadsxcS_YC2-NpJJX8S62YTfNTSfE9VHqoE6KsJPA@mail.gmail.c > om> > , Warner Losh writes: > > --00000000000059353005e041e22c > > Content-Type: text/plain; charset="UTF-8" > > > > David Woofskill also reported this... > > > > Warner > > > > On Mon, May 30, 2022, 3:56 PM Cy Schubert <Cy.Schubert@cschubert.com> > wrote: > > > > > In message <202205271922.24RJMOJ2039923@gitrepo.freebsd.org>, Kirk > > > McKusick > > > wri > > > tes: > > > > The branch main has been updated by mckusick: > > > > > > > > URL: > > > > https://cgit.FreeBSD.org/src/commit/?id=076002f24d35962f0d21f44bfddd34ee > > > > 4d7f015d > > > > > > > > commit 076002f24d35962f0d21f44bfddd34ee4d7f015d > > > > Author: Kirk McKusick <mckusick@FreeBSD.org> > > > > AuthorDate: 2022-05-27 19:21:11 +0000 > > > > Commit: Kirk McKusick <mckusick@FreeBSD.org> > > > > CommitDate: 2022-05-27 19:22:07 +0000 > > > > > > > > Do comprehensive UFS/FFS superblock integrity checks when > reading a > > > super > > > > block. > > > > > > > > Historically only minimal checks were made of a superblock when > it > > > > was read in as it was assumed that fsck would have been run to > > > > correct any errors before attempting to use the filesystem. > Recently > > > > several bug reports have been submitted reporting kernel panics > > > > that can be triggered by deliberately corrupting filesystem > > > superblocks, > > > > see Bug 263979 - [meta] UFS / FFS / GEOM crash (panic) tracking > > > > which is tracking the reported corruption bugs. > > > > > > > > This change upgrades the checks that are performed. These > additional > > > > checks should prevent panics from a corrupted superblock. > Although > > > > it appears in only one place, the new code will apply to the > kernel > > > > modules and (through libufs) user applications that read in > > > superblocks. > > > > > > > > Reported by: Robert Morris and Neeraj > > > > Reviewed by: kib > > > > Tested by: Peter Holm > > > > PR: 263979 > > > > MFC after: 1 month > > > > Differential Revision: https://reviews.freebsd.org/D35219 > > > > --- > > > > sys/ufs/ffs/ffs_subr.c | 163 > > > +++++++++++++++++++++++++++++++++++++++++++---- > > > > -- > > > > 1 file changed, 146 insertions(+), 17 deletions(-) > > > > > > > > diff --git a/sys/ufs/ffs/ffs_subr.c b/sys/ufs/ffs/ffs_subr.c > > > > index 01e9f45e1205..28c2fee1cb37 100644 > > > > --- a/sys/ufs/ffs/ffs_subr.c > > > > +++ b/sys/ufs/ffs/ffs_subr.c > > > > @@ -35,6 +35,7 @@ > > > > __FBSDID("$FreeBSD$"); > > > > > > > > #include <sys/param.h> > > > > +#include <sys/limits.h> > > > > > > > > #ifndef _KERNEL > > > > #include <stdio.h> > > > > @@ -50,6 +51,7 @@ uint32_t ffs_calc_sbhash(struct fs *); > > > > struct malloc_type; > > > > #define UFS_MALLOC(size, type, flags) malloc(size) > > > > #define UFS_FREE(ptr, type) free(ptr) > > > > +#define maxphys MAXPHYS > > > > > > > > #else /* _KERNEL */ > > > > #include <sys/systm.h> > > > > @@ -125,6 +127,7 @@ ffs_update_dinode_ckhash(struct fs *fs, struct > > > ufs2_dinod > > > > e *dip) > > > > static off_t sblock_try[] = SBLOCKSEARCH; > > > > static int readsuper(void *, struct fs **, off_t, int, int, > > > > int (*)(void *, off_t, void **, int)); > > > > +static int validate_sblock(struct fs *, int); > > > > > > > > /* > > > > * Read a superblock from the devfd device. > > > > @@ -141,7 +144,7 @@ static int readsuper(void *, struct fs **, off_t, > > > int, in > > > > t, > > > > * EIO: non-existent or truncated superblock. > > > > * EIO: error reading summary information. > > > > * ENOENT: no usable known superblock found. > > > > - * ENOSPC: failed to allocate space for the superblock. > > > > + * ENOMEM: failed to allocate space for the superblock. > > > > * EINVAL: The previous newfs operation on this volume did not > > > complete. > > > > * The administrator must complete newfs before using this > > > volume. > > > > */ > > > > @@ -152,7 +155,8 @@ ffs_sbget(void *devfd, struct fs **fsp, off_t > > > altsblock, > > > > { > > > > struct fs *fs; > > > > struct fs_summary_info *fs_si; > > > > - int i, error, size, blks; > > > > + int i, error; > > > > + uint64_t size, blks; > > > > uint8_t *space; > > > > int32_t *lp; > > > > char *buf; > > > > @@ -190,17 +194,16 @@ ffs_sbget(void *devfd, struct fs **fsp, off_t > > > altsblock > > > > , > > > > if (fs->fs_contigsumsize > 0) > > > > size += fs->fs_ncg * sizeof(int32_t); > > > > size += fs->fs_ncg * sizeof(u_int8_t); > > > > - /* When running in libufs or libsa, UFS_MALLOC may fail */ > > > > - if ((fs_si = UFS_MALLOC(sizeof(*fs_si), filltype, M_WAITOK)) == > > > NULL) { > > > > + if ((fs_si = UFS_MALLOC(sizeof(*fs_si), filltype, M_NOWAIT)) == > > > NULL) { > > > > UFS_FREE(fs, filltype); > > > > - return (ENOSPC); > > > > + return (ENOMEM); > > > > } > > > > bzero(fs_si, sizeof(*fs_si)); > > > > fs->fs_si = fs_si; > > > > - if ((space = UFS_MALLOC(size, filltype, M_WAITOK)) == NULL) { > > > > + if ((space = UFS_MALLOC(size, filltype, M_NOWAIT)) == NULL) { > > > > UFS_FREE(fs->fs_si, filltype); > > > > UFS_FREE(fs, filltype); > > > > - return (ENOSPC); > > > > + return (ENOMEM); > > > > } > > > > fs->fs_csp = (struct csum *)space; > > > > for (i = 0; i < blks; i += fs->fs_frag) { > > > > @@ -253,16 +256,8 @@ readsuper(void *devfd, struct fs **fsp, off_t > > > sblockloc, > > > > int isaltsblk, > > > > fs = *fsp; > > > > if (fs->fs_magic == FS_BAD_MAGIC) > > > > return (EINVAL); > > > > - if (!(((fs->fs_magic == FS_UFS1_MAGIC && (isaltsblk || > > > > - sblockloc <= SBLOCK_UFS1)) || > > > > - (fs->fs_magic == FS_UFS2_MAGIC && (isaltsblk || > > > > - sblockloc == fs->fs_sblockloc))) && > > > > - fs->fs_ncg >= 1 && > > > > - fs->fs_bsize >= MINBSIZE && > > > > - fs->fs_bsize <= MAXBSIZE && > > > > - fs->fs_bsize >= roundup(sizeof(struct fs), DEV_BSIZE) && > > > > - fs->fs_sbsize <= SBLOCKSIZE)) > > > > - return (ENOENT); > > > > + if ((error = validate_sblock(fs, isaltsblk)) != 0) > > > > + return (error); > > > > /* > > > > * If the filesystem has been run on a kernel without > > > > * metadata check hashes, disable them. > > > > @@ -310,6 +305,140 @@ readsuper(void *devfd, struct fs **fsp, off_t > > > sblockloc > > > > , int isaltsblk, > > > > return (0); > > > > } > > > > > > > > +/* > > > > + * Verify the filesystem values. > > > > + */ > > > > +#define ILOG2(num) (fls(num) - 1) > > > > + > > > > +static int > > > > +validate_sblock(struct fs *fs, int isaltsblk) > > > > +{ > > > > + int i, sectorsize; > > > > + u_int64_t maxfilesize, minfpg, sizepb; > > > > + > > > > + sectorsize = dbtob(1); > > > > + if (fs->fs_magic == FS_UFS2_MAGIC) { > > > > + if ((!isaltsblk && (fs->fs_sblockloc != SBLOCK_UFS2 || > > > > + fs->fs_sblockactualloc != SBLOCK_UFS2)) || > > > > + fs->fs_maxsymlinklen != ((UFS_NDADDR + UFS_NIADDR) > * > > > > + sizeof(ufs2_daddr_t)) || > > > > + fs->fs_nindir != fs->fs_bsize / > sizeof(ufs2_daddr_t) || > > > > + fs->fs_inopb != fs->fs_bsize / sizeof(struct > > > ufs2_dinode)) > > > > + return (ENOENT); > > > > + } else if (fs->fs_magic == FS_UFS1_MAGIC) { > > > > + if ((!isaltsblk && (fs->fs_sblockloc > SBLOCK_UFS1 || > > > > + fs->fs_sblockactualloc != SBLOCK_UFS1)) || > > > > + fs->fs_nindir != fs->fs_bsize / > sizeof(ufs1_daddr_t) || > > > > + fs->fs_inopb != fs->fs_bsize / sizeof(struct > > > ufs1_dinode) | > > > > | > > > > + fs->fs_maxsymlinklen != ((UFS_NDADDR + UFS_NIADDR) > * > > > > + sizeof(ufs1_daddr_t)) || > > > > + fs->fs_old_inodefmt != FS_44INODEFMT || > > > > + fs->fs_old_cgoffset != 0 || > > > > + fs->fs_old_cgmask != 0xffffffff || > > > > + fs->fs_old_size != fs->fs_size || > > > > + fs->fs_old_rotdelay != 0 || > > > > + fs->fs_old_rps != 60 || > > > > + fs->fs_old_nspf != fs->fs_fsize / sectorsize || > > > > + fs->fs_old_cpg != 1 || > > > > + fs->fs_old_interleave != 1 || > > > > + fs->fs_old_trackskew != 0 || > > > > + fs->fs_old_cpc != 0 || > > > > + fs->fs_old_postblformat != 1 || > > > > + fs->fs_old_nrpos != 1 || > > > > + fs->fs_old_spc != fs->fs_fpg * fs->fs_old_nspf || > > > > + fs->fs_old_nsect != fs->fs_old_spc || > > > > + fs->fs_old_npsect != fs->fs_old_spc || > > > > + fs->fs_old_dsize != fs->fs_dsize || > > > > + fs->fs_old_ncyl != fs->fs_ncg) > > > > + return (ENOENT); > > > > + } else { > > > > + return (ENOENT); > > > > + } > > > > + if (fs->fs_bsize < MINBSIZE || fs->fs_bsize > MAXBSIZE || > > > > + fs->fs_bsize < roundup(sizeof(struct fs), DEV_BSIZE) || > > > > + fs->fs_sbsize > SBLOCKSIZE || fs->fs_sbsize < fs->fs_fsize > || > > > > + !powerof2(fs->fs_bsize)) > > > > + return (ENOENT); > > > > + if (fs->fs_fsize < sectorsize || fs->fs_fsize > fs->fs_bsize || > > > > + fs->fs_fsize * MAXFRAG < fs->fs_bsize || > > > !powerof2(fs->fs_fsize)) > > > > + return (ENOENT); > > > > + if (fs->fs_maxbsize < fs->fs_bsize || > !powerof2(fs->fs_maxbsize) || > > > > + fs->fs_maxbsize > FS_MAXCONTIG * fs->fs_bsize) > > > > + return (ENOENT); > > > > + if (fs->fs_bmask != ~(fs->fs_bsize - 1) || > > > > + fs->fs_fmask != ~(fs->fs_fsize - 1) || > > > > + fs->fs_qbmask != ~fs->fs_bmask || > > > > + fs->fs_qfmask != ~fs->fs_fmask || > > > > + fs->fs_bshift != ILOG2(fs->fs_bsize) || > > > > + fs->fs_fshift != ILOG2(fs->fs_fsize) || > > > > + fs->fs_frag != numfrags(fs, fs->fs_bsize) || > > > > + fs->fs_fragshift != ILOG2(fs->fs_frag) || > > > > + fs->fs_frag > MAXFRAG || > > > > + fs->fs_fsbtodb != ILOG2(fs->fs_fsize / sectorsize)) > > > > + return (ENOENT); > > > > + if (fs->fs_sblkno != > > > > + roundup(howmany(fs->fs_sblockloc + SBLOCKSIZE, > > > fs->fs_fsize), > > > > + fs->fs_frag) || > > > > + fs->fs_cblkno != fs->fs_sblkno + > > > > + roundup(howmany(SBLOCKSIZE, fs->fs_fsize), > fs->fs_frag) || > > > > + fs->fs_iblkno != fs->fs_cblkno + fs->fs_frag || > > > > + fs->fs_dblkno != fs->fs_iblkno + fs->fs_ipg / INOPF(fs) || > > > > + fs->fs_cgsize != fragroundup(fs, CGSIZE(fs))) > > > > + return (ENOENT); > > > > + if (fs->fs_csaddr != cgdmin(fs, 0) || > > > > + fs->fs_cssize != > > > > + fragroundup(fs, fs->fs_ncg * sizeof(struct csum)) || > > > > + fs->fs_dsize != fs->fs_size - fs->fs_sblkno - > > > > + fs->fs_ncg * (fs->fs_dblkno - fs->fs_sblkno) - > > > > + howmany(fs->fs_cssize, fs->fs_fsize) || > > > > + fs->fs_metaspace < 0 || fs->fs_metaspace > fs->fs_fpg / 2 > || > > > > + fs->fs_minfree > 99) > > > > + return (ENOENT); > > > > + maxfilesize = fs->fs_bsize * UFS_NDADDR - 1; > > > > + for (sizepb = fs->fs_bsize, i = 0; i < UFS_NIADDR; i++) { > > > > + sizepb *= NINDIR(fs); > > > > + maxfilesize += sizepb; > > > > + } > > > > + if (fs->fs_maxfilesize != maxfilesize) > > > > + return (ENOENT); > > > > + /* > > > > + * These values have a tight interaction with each other that > > > > + * makes it hard to tightly bound them. So we can only check > > > > + * that they are within a broader possible range. > > > > + * > > > > + * Calculate minfpg, the minimum number of fragments that can > be > > > > + * in a cylinder group. The value 12289 is calculated in > newfs(8) > > > > + * when creating the smallest block size UFS version 1 > filesystem > > > > + * (4096 block size) with no fragments (4096 fragment size). > That > > > > + * number may be depressed even further for very small > filesystems > > > > + * since newfs(8) strives to have at least four cylinder > groups. > > > > + */ > > > > + minfpg = MIN(12289, fs->fs_size / 4); > > > > + if (fs->fs_ncg < 1 || fs->fs_ncg > (fs->fs_size / minfpg) + 1 > || > > > > + fs->fs_fpg < minfpg || fs->fs_fpg > fs->fs_size || > > > > + fs->fs_ipg * fs->fs_ncg > (((int64_t)(1)) << 32) - > INOPB(fs) || > > > > + fs->fs_ipg > fs->fs_fpg || fs->fs_size < 8 * fs->fs_frag) > > > > + return (ENOENT); > > > > + if (fs->fs_size <= (fs->fs_ncg - 1) * fs->fs_fpg || > > > > + fs->fs_size > fs->fs_ncg * fs->fs_fpg) > > > > + return (ENOENT); > > > > + /* > > > > + * Maxcontig sets the default for the maximum number of blocks > > > > + * that may be allocated sequentially. With file system > clustering > > > > + * it is possible to allocate contiguous blocks up to the > maximum > > > > + * transfer size permitted by the controller or buffering. > > > > + */ > > > > + if (fs->fs_maxcontig < 1 || > > > > + fs->fs_maxcontig > MAX(1, maxphys / fs->fs_bsize)) > > > > + return (ENOENT); > > > > + if (fs->fs_maxcontig < 0 || > > > > + (fs->fs_maxcontig == 0 && fs->fs_contigsumsize != 0) || > > > > + (fs->fs_maxcontig > 1 && > > > > + fs->fs_contigsumsize != MIN(fs->fs_maxcontig, > FS_MAXCONTIG))) > > > > + return (ENOENT); > > > > + return (0); > > > > +} > > > > + > > > > /* > > > > * Write a superblock to the devfd device from the memory pointed > to by > > > fs. > > > > * Write out the superblock summary information if it is present. > > > > > > > > > > Hi Kirk, > > > > > > This patch broke loader on one of my machines. > > > > > > I get the following error: > > > > > > LUA ERROR: Cannot open /boot/lua/loader.lua: no such file or directory" > > > can't load kernel > > > > > > Of course booting from my rescue worked. > > > > > > Copying loader* from /boot on the rescue disk to /boot works around the > > > problem. > > > > > > Backing up, newfs, and restoring the root filesystem, using my rescue > disk > > > also didn't work around the problem. > > > > > > Reverting this patch provided permanent relief. > > > > > > Loader could read the filesystems on my rescue disk, which had > blocksizes > > > of 16K but not those on my boot disk which had blocksizes of 32K. > > > > > > My three machines downstairs, all AMD gear with UFS blocksize of 32K, > had > > > no no problems with this whereas my laptop, an Intel, had the problem. > > > > > > To repeat, a newly created filesystem restored from backup using my > rescue > > > disk didn't resolve the problem. > > > > > > > > > -- > > > Cheers, > > > Cy Schubert <Cy.Schubert@komquats.com> or <Cy.Schubert@cschubert.com> > > > FreeBSD UNIX: <cy@FreeBSD.org> Web: http://www.FreeBSD.org > > > NTP: <cy@nwtime.org> Web: https://nwtime.org > > > > > > e**(i*pi)+1=0 > > > > > > > > > > > > [-- Attachment #2 --] <div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, May 30, 2022 at 4:24 PM Cy Schubert <<a href="mailto:Cy.Schubert@cschubert.com">Cy.Schubert@cschubert.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Upgrading boot blocks didn't help either.<br> <br> It only happened on one of four machines. Likely because the other three <br> are AMD on Asus MBs while the problem machine is an Acer laptop running <br> Intel.<br></blockquote><div><br></div><div>David Wolfskill reported the same: some are affected, others not.</div><div>It's unclear why, exactly, but all the other details you gave track</div><div>with the troubleshooting tsoome and I have been doing with him.</div><div><br></div><div>The issue is inside of loader.efi or /boot/loader, not in the earlier</div><div>boot blocks.</div><div><br></div><div>Warner</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> <br> -- <br> Cheers,<br> Cy Schubert <<a href="mailto:Cy.Schubert@komquats.com" target="_blank">Cy.Schubert@komquats.com</a>> or <<a href="mailto:Cy.Schubert@cschubert.com" target="_blank">Cy.Schubert@cschubert.com</a>><br> FreeBSD UNIX: <cy@FreeBSD.org> Web: <a href="http://www.FreeBSD.org" rel="noreferrer" target="_blank">http://www.FreeBSD.org</a><br> NTP: <<a href="mailto:cy@nwtime.org" target="_blank">cy@nwtime.org</a>> Web: <a href="https://nwtime.org" rel="noreferrer" target="_blank">https://nwtime.org</a><br> <br> e**(i*pi)+1=0<br> <br> <br> In message <CANCZdfpovXadsxcS_YC2-NpJJX8S62YTfNTSfE9VHqoE6KsJPA@mail.gmail.c<br> om><br> , Warner Losh writes:<br> > --00000000000059353005e041e22c<br> > Content-Type: text/plain; charset="UTF-8"<br> ><br> > David Woofskill also reported this...<br> ><br> > Warner<br> ><br> > On Mon, May 30, 2022, 3:56 PM Cy Schubert <<a href="mailto:Cy.Schubert@cschubert.com" target="_blank">Cy.Schubert@cschubert.com</a>> wrote:<br> ><br> > > In message <<a href="mailto:202205271922.24RJMOJ2039923@gitrepo.freebsd.org" target="_blank">202205271922.24RJMOJ2039923@gitrepo.freebsd.org</a>>, Kirk<br> > > McKusick<br> > > wri<br> > > tes:<br> > > > The branch main has been updated by mckusick:<br> > > ><br> > > > URL:<br> > > <a href="https://cgit.FreeBSD.org/src/commit/?id=076002f24d35962f0d21f44bfddd34ee" rel="noreferrer" target="_blank">https://cgit.FreeBSD.org/src/commit/?id=076002f24d35962f0d21f44bfddd34ee</a><br> > > > 4d7f015d<br> > > ><br> > > > commit 076002f24d35962f0d21f44bfddd34ee4d7f015d<br> > > > Author: Kirk McKusick <mckusick@FreeBSD.org><br> > > > AuthorDate: 2022-05-27 19:21:11 +0000<br> > > > Commit: Kirk McKusick <mckusick@FreeBSD.org><br> > > > CommitDate: 2022-05-27 19:22:07 +0000<br> > > ><br> > > > Do comprehensive UFS/FFS superblock integrity checks when reading a<br> > > super<br> > > > block.<br> > > ><br> > > > Historically only minimal checks were made of a superblock when it<br> > > > was read in as it was assumed that fsck would have been run to<br> > > > correct any errors before attempting to use the filesystem. Recently<br> > > > several bug reports have been submitted reporting kernel panics<br> > > > that can be triggered by deliberately corrupting filesystem<br> > > superblocks,<br> > > > see Bug 263979 - [meta] UFS / FFS / GEOM crash (panic) tracking<br> > > > which is tracking the reported corruption bugs.<br> > > ><br> > > > This change upgrades the checks that are performed. These additional<br> > > > checks should prevent panics from a corrupted superblock. Although<br> > > > it appears in only one place, the new code will apply to the kernel<br> > > > modules and (through libufs) user applications that read in<br> > > superblocks.<br> > > ><br> > > > Reported by: Robert Morris and Neeraj<br> > > > Reviewed by: kib<br> > > > Tested by: Peter Holm<br> > > > PR: 263979<br> > > > MFC after: 1 month<br> > > > Differential Revision: <a href="https://reviews.freebsd.org/D35219" rel="noreferrer" target="_blank">https://reviews.freebsd.org/D35219</a><br> > > > ---<br> > > > sys/ufs/ffs/ffs_subr.c | 163<br> > > +++++++++++++++++++++++++++++++++++++++++++----<br> > > > --<br> > > > 1 file changed, 146 insertions(+), 17 deletions(-)<br> > > ><br> > > > diff --git a/sys/ufs/ffs/ffs_subr.c b/sys/ufs/ffs/ffs_subr.c<br> > > > index 01e9f45e1205..28c2fee1cb37 100644<br> > > > --- a/sys/ufs/ffs/ffs_subr.c<br> > > > +++ b/sys/ufs/ffs/ffs_subr.c<br> > > > @@ -35,6 +35,7 @@<br> > > > __FBSDID("$FreeBSD$");<br> > > ><br> > > > #include <sys/param.h><br> > > > +#include <sys/limits.h><br> > > ><br> > > > #ifndef _KERNEL<br> > > > #include <stdio.h><br> > > > @@ -50,6 +51,7 @@ uint32_t ffs_calc_sbhash(struct fs *);<br> > > > struct malloc_type;<br> > > > #define UFS_MALLOC(size, type, flags) malloc(size)<br> > > > #define UFS_FREE(ptr, type) free(ptr)<br> > > > +#define maxphys MAXPHYS<br> > > ><br> > > > #else /* _KERNEL */<br> > > > #include <sys/systm.h><br> > > > @@ -125,6 +127,7 @@ ffs_update_dinode_ckhash(struct fs *fs, struct<br> > > ufs2_dinod<br> > > > e *dip)<br> > > > static off_t sblock_try[] = SBLOCKSEARCH;<br> > > > static int readsuper(void *, struct fs **, off_t, int, int,<br> > > > int (*)(void *, off_t, void **, int));<br> > > > +static int validate_sblock(struct fs *, int);<br> > > ><br> > > > /*<br> > > > * Read a superblock from the devfd device.<br> > > > @@ -141,7 +144,7 @@ static int readsuper(void *, struct fs **, off_t,<br> > > int, in<br> > > > t,<br> > > > * EIO: non-existent or truncated superblock.<br> > > > * EIO: error reading summary information.<br> > > > * ENOENT: no usable known superblock found.<br> > > > - * ENOSPC: failed to allocate space for the superblock.<br> > > > + * ENOMEM: failed to allocate space for the superblock.<br> > > > * EINVAL: The previous newfs operation on this volume did not<br> > > complete.<br> > > > * The administrator must complete newfs before using this<br> > > volume.<br> > > > */<br> > > > @@ -152,7 +155,8 @@ ffs_sbget(void *devfd, struct fs **fsp, off_t<br> > > altsblock,<br> > > > {<br> > > > struct fs *fs;<br> > > > struct fs_summary_info *fs_si;<br> > > > - int i, error, size, blks;<br> > > > + int i, error;<br> > > > + uint64_t size, blks;<br> > > > uint8_t *space;<br> > > > int32_t *lp;<br> > > > char *buf;<br> > > > @@ -190,17 +194,16 @@ ffs_sbget(void *devfd, struct fs **fsp, off_t<br> > > altsblock<br> > > > ,<br> > > > if (fs->fs_contigsumsize > 0)<br> > > > size += fs->fs_ncg * sizeof(int32_t);<br> > > > size += fs->fs_ncg * sizeof(u_int8_t);<br> > > > - /* When running in libufs or libsa, UFS_MALLOC may fail */<br> > > > - if ((fs_si = UFS_MALLOC(sizeof(*fs_si), filltype, M_WAITOK)) ==<br> > > NULL) {<br> > > > + if ((fs_si = UFS_MALLOC(sizeof(*fs_si), filltype, M_NOWAIT)) ==<br> > > NULL) {<br> > > > UFS_FREE(fs, filltype);<br> > > > - return (ENOSPC);<br> > > > + return (ENOMEM);<br> > > > }<br> > > > bzero(fs_si, sizeof(*fs_si));<br> > > > fs->fs_si = fs_si;<br> > > > - if ((space = UFS_MALLOC(size, filltype, M_WAITOK)) == NULL) {<br> > > > + if ((space = UFS_MALLOC(size, filltype, M_NOWAIT)) == NULL) {<br> > > > UFS_FREE(fs->fs_si, filltype);<br> > > > UFS_FREE(fs, filltype);<br> > > > - return (ENOSPC);<br> > > > + return (ENOMEM);<br> > > > }<br> > > > fs->fs_csp = (struct csum *)space;<br> > > > for (i = 0; i < blks; i += fs->fs_frag) {<br> > > > @@ -253,16 +256,8 @@ readsuper(void *devfd, struct fs **fsp, off_t<br> > > sblockloc,<br> > > > int isaltsblk,<br> > > > fs = *fsp;<br> > > > if (fs->fs_magic == FS_BAD_MAGIC)<br> > > > return (EINVAL);<br> > > > - if (!(((fs->fs_magic == FS_UFS1_MAGIC && (isaltsblk ||<br> > > > - sblockloc <= SBLOCK_UFS1)) ||<br> > > > - (fs->fs_magic == FS_UFS2_MAGIC && (isaltsblk ||<br> > > > - sblockloc == fs->fs_sblockloc))) &&<br> > > > - fs->fs_ncg >= 1 &&<br> > > > - fs->fs_bsize >= MINBSIZE &&<br> > > > - fs->fs_bsize <= MAXBSIZE &&<br> > > > - fs->fs_bsize >= roundup(sizeof(struct fs), DEV_BSIZE) &&<br> > > > - fs->fs_sbsize <= SBLOCKSIZE))<br> > > > - return (ENOENT);<br> > > > + if ((error = validate_sblock(fs, isaltsblk)) != 0)<br> > > > + return (error);<br> > > > /*<br> > > > * If the filesystem has been run on a kernel without<br> > > > * metadata check hashes, disable them.<br> > > > @@ -310,6 +305,140 @@ readsuper(void *devfd, struct fs **fsp, off_t<br> > > sblockloc<br> > > > , int isaltsblk,<br> > > > return (0);<br> > > > }<br> > > ><br> > > > +/*<br> > > > + * Verify the filesystem values.<br> > > > + */<br> > > > +#define ILOG2(num) (fls(num) - 1)<br> > > > +<br> > > > +static int<br> > > > +validate_sblock(struct fs *fs, int isaltsblk)<br> > > > +{<br> > > > + int i, sectorsize;<br> > > > + u_int64_t maxfilesize, minfpg, sizepb;<br> > > > +<br> > > > + sectorsize = dbtob(1);<br> > > > + if (fs->fs_magic == FS_UFS2_MAGIC) {<br> > > > + if ((!isaltsblk && (fs->fs_sblockloc != SBLOCK_UFS2 ||<br> > > > + fs->fs_sblockactualloc != SBLOCK_UFS2)) ||<br> > > > + fs->fs_maxsymlinklen != ((UFS_NDADDR + UFS_NIADDR) *<br> > > > + sizeof(ufs2_daddr_t)) ||<br> > > > + fs->fs_nindir != fs->fs_bsize / sizeof(ufs2_daddr_t) ||<br> > > > + fs->fs_inopb != fs->fs_bsize / sizeof(struct<br> > > ufs2_dinode))<br> > > > + return (ENOENT);<br> > > > + } else if (fs->fs_magic == FS_UFS1_MAGIC) {<br> > > > + if ((!isaltsblk && (fs->fs_sblockloc > SBLOCK_UFS1 ||<br> > > > + fs->fs_sblockactualloc != SBLOCK_UFS1)) ||<br> > > > + fs->fs_nindir != fs->fs_bsize / sizeof(ufs1_daddr_t) ||<br> > > > + fs->fs_inopb != fs->fs_bsize / sizeof(struct<br> > > ufs1_dinode) |<br> > > > |<br> > > > + fs->fs_maxsymlinklen != ((UFS_NDADDR + UFS_NIADDR) *<br> > > > + sizeof(ufs1_daddr_t)) ||<br> > > > + fs->fs_old_inodefmt != FS_44INODEFMT ||<br> > > > + fs->fs_old_cgoffset != 0 ||<br> > > > + fs->fs_old_cgmask != 0xffffffff ||<br> > > > + fs->fs_old_size != fs->fs_size ||<br> > > > + fs->fs_old_rotdelay != 0 ||<br> > > > + fs->fs_old_rps != 60 ||<br> > > > + fs->fs_old_nspf != fs->fs_fsize / sectorsize ||<br> > > > + fs->fs_old_cpg != 1 ||<br> > > > + fs->fs_old_interleave != 1 ||<br> > > > + fs->fs_old_trackskew != 0 ||<br> > > > + fs->fs_old_cpc != 0 ||<br> > > > + fs->fs_old_postblformat != 1 ||<br> > > > + fs->fs_old_nrpos != 1 ||<br> > > > + fs->fs_old_spc != fs->fs_fpg * fs->fs_old_nspf ||<br> > > > + fs->fs_old_nsect != fs->fs_old_spc ||<br> > > > + fs->fs_old_npsect != fs->fs_old_spc ||<br> > > > + fs->fs_old_dsize != fs->fs_dsize ||<br> > > > + fs->fs_old_ncyl != fs->fs_ncg)<br> > > > + return (ENOENT);<br> > > > + } else {<br> > > > + return (ENOENT);<br> > > > + }<br> > > > + if (fs->fs_bsize < MINBSIZE || fs->fs_bsize > MAXBSIZE ||<br> > > > + fs->fs_bsize < roundup(sizeof(struct fs), DEV_BSIZE) ||<br> > > > + fs->fs_sbsize > SBLOCKSIZE || fs->fs_sbsize < fs->fs_fsize ||<br> > > > + !powerof2(fs->fs_bsize))<br> > > > + return (ENOENT);<br> > > > + if (fs->fs_fsize < sectorsize || fs->fs_fsize > fs->fs_bsize ||<br> > > > + fs->fs_fsize * MAXFRAG < fs->fs_bsize ||<br> > > !powerof2(fs->fs_fsize))<br> > > > + return (ENOENT);<br> > > > + if (fs->fs_maxbsize < fs->fs_bsize || !powerof2(fs->fs_maxbsize) ||<br> > > > + fs->fs_maxbsize > FS_MAXCONTIG * fs->fs_bsize)<br> > > > + return (ENOENT);<br> > > > + if (fs->fs_bmask != ~(fs->fs_bsize - 1) ||<br> > > > + fs->fs_fmask != ~(fs->fs_fsize - 1) ||<br> > > > + fs->fs_qbmask != ~fs->fs_bmask ||<br> > > > + fs->fs_qfmask != ~fs->fs_fmask ||<br> > > > + fs->fs_bshift != ILOG2(fs->fs_bsize) ||<br> > > > + fs->fs_fshift != ILOG2(fs->fs_fsize) ||<br> > > > + fs->fs_frag != numfrags(fs, fs->fs_bsize) ||<br> > > > + fs->fs_fragshift != ILOG2(fs->fs_frag) ||<br> > > > + fs->fs_frag > MAXFRAG ||<br> > > > + fs->fs_fsbtodb != ILOG2(fs->fs_fsize / sectorsize))<br> > > > + return (ENOENT);<br> > > > + if (fs->fs_sblkno !=<br> > > > + roundup(howmany(fs->fs_sblockloc + SBLOCKSIZE,<br> > > fs->fs_fsize),<br> > > > + fs->fs_frag) ||<br> > > > + fs->fs_cblkno != fs->fs_sblkno +<br> > > > + roundup(howmany(SBLOCKSIZE, fs->fs_fsize), fs->fs_frag) ||<br> > > > + fs->fs_iblkno != fs->fs_cblkno + fs->fs_frag ||<br> > > > + fs->fs_dblkno != fs->fs_iblkno + fs->fs_ipg / INOPF(fs) ||<br> > > > + fs->fs_cgsize != fragroundup(fs, CGSIZE(fs)))<br> > > > + return (ENOENT);<br> > > > + if (fs->fs_csaddr != cgdmin(fs, 0) ||<br> > > > + fs->fs_cssize !=<br> > > > + fragroundup(fs, fs->fs_ncg * sizeof(struct csum)) ||<br> > > > + fs->fs_dsize != fs->fs_size - fs->fs_sblkno -<br> > > > + fs->fs_ncg * (fs->fs_dblkno - fs->fs_sblkno) -<br> > > > + howmany(fs->fs_cssize, fs->fs_fsize) ||<br> > > > + fs->fs_metaspace < 0 || fs->fs_metaspace > fs->fs_fpg / 2 ||<br> > > > + fs->fs_minfree > 99)<br> > > > + return (ENOENT);<br> > > > + maxfilesize = fs->fs_bsize * UFS_NDADDR - 1;<br> > > > + for (sizepb = fs->fs_bsize, i = 0; i < UFS_NIADDR; i++) {<br> > > > + sizepb *= NINDIR(fs);<br> > > > + maxfilesize += sizepb;<br> > > > + }<br> > > > + if (fs->fs_maxfilesize != maxfilesize)<br> > > > + return (ENOENT);<br> > > > + /*<br> > > > + * These values have a tight interaction with each other that<br> > > > + * makes it hard to tightly bound them. So we can only check<br> > > > + * that they are within a broader possible range.<br> > > > + *<br> > > > + * Calculate minfpg, the minimum number of fragments that can be<br> > > > + * in a cylinder group. The value 12289 is calculated in newfs(8)<br> > > > + * when creating the smallest block size UFS version 1 filesystem<br> > > > + * (4096 block size) with no fragments (4096 fragment size). That<br> > > > + * number may be depressed even further for very small filesystems<br> > > > + * since newfs(8) strives to have at least four cylinder groups.<br> > > > + */<br> > > > + minfpg = MIN(12289, fs->fs_size / 4);<br> > > > + if (fs->fs_ncg < 1 || fs->fs_ncg > (fs->fs_size / minfpg) + 1 ||<br> > > > + fs->fs_fpg < minfpg || fs->fs_fpg > fs->fs_size ||<br> > > > + fs->fs_ipg * fs->fs_ncg > (((int64_t)(1)) << 32) - INOPB(fs) ||<br> > > > + fs->fs_ipg > fs->fs_fpg || fs->fs_size < 8 * fs->fs_frag)<br> > > > + return (ENOENT);<br> > > > + if (fs->fs_size <= (fs->fs_ncg - 1) * fs->fs_fpg ||<br> > > > + fs->fs_size > fs->fs_ncg * fs->fs_fpg)<br> > > > + return (ENOENT);<br> > > > + /*<br> > > > + * Maxcontig sets the default for the maximum number of blocks<br> > > > + * that may be allocated sequentially. With file system clustering<br> > > > + * it is possible to allocate contiguous blocks up to the maximum<br> > > > + * transfer size permitted by the controller or buffering.<br> > > > + */<br> > > > + if (fs->fs_maxcontig < 1 ||<br> > > > + fs->fs_maxcontig > MAX(1, maxphys / fs->fs_bsize))<br> > > > + return (ENOENT);<br> > > > + if (fs->fs_maxcontig < 0 ||<br> > > > + (fs->fs_maxcontig == 0 && fs->fs_contigsumsize != 0) ||<br> > > > + (fs->fs_maxcontig > 1 &&<br> > > > + fs->fs_contigsumsize != MIN(fs->fs_maxcontig, FS_MAXCONTIG)))<br> > > > + return (ENOENT);<br> > > > + return (0);<br> > > > +}<br> > > > +<br> > > > /*<br> > > > * Write a superblock to the devfd device from the memory pointed to by<br> > > fs.<br> > > > * Write out the superblock summary information if it is present.<br> > > ><br> > ><br> > > Hi Kirk,<br> > ><br> > > This patch broke loader on one of my machines.<br> > ><br> > > I get the following error:<br> > ><br> > > LUA ERROR: Cannot open /boot/lua/loader.lua: no such file or directory"<br> > > can't load kernel<br> > ><br> > > Of course booting from my rescue worked.<br> > ><br> > > Copying loader* from /boot on the rescue disk to /boot works around the<br> > > problem.<br> > ><br> > > Backing up, newfs, and restoring the root filesystem, using my rescue disk<br> > > also didn't work around the problem.<br> > ><br> > > Reverting this patch provided permanent relief.<br> > ><br> > > Loader could read the filesystems on my rescue disk, which had blocksizes<br> > > of 16K but not those on my boot disk which had blocksizes of 32K.<br> > ><br> > > My three machines downstairs, all AMD gear with UFS blocksize of 32K, had<br> > > no no problems with this whereas my laptop, an Intel, had the problem.<br> > ><br> > > To repeat, a newly created filesystem restored from backup using my rescue<br> > > disk didn't resolve the problem.<br> > ><br> > ><br> > > --<br> > > Cheers,<br> > > Cy Schubert <<a href="mailto:Cy.Schubert@komquats.com" target="_blank">Cy.Schubert@komquats.com</a>> or <<a href="mailto:Cy.Schubert@cschubert.com" target="_blank">Cy.Schubert@cschubert.com</a>><br> > > FreeBSD UNIX: <cy@FreeBSD.org> Web: <a href="http://www.FreeBSD.org" rel="noreferrer" target="_blank">http://www.FreeBSD.org</a><br> > > NTP: <<a href="mailto:cy@nwtime.org" target="_blank">cy@nwtime.org</a>> Web: <a href="https://nwtime.org" rel="noreferrer" target="_blank">https://nwtime.org</a><br> > ><br> > > e**(i*pi)+1=0<br> > ><br> > ><br> > ><br> <br> <br> </blockquote></div></div>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CANCZdfoqpDO9-APZytimd9TpPGsnaj0%2BwJBfdxv%2Bo2NnOX5ZUQ>
