From: Eric Sandeen <sandeen@sandeen.net>
To: Christoph Hellwig <hch@infradead.org>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH] xfs: validate quota log items during log recovery
Date: Wed, 27 May 2009 14:06:53 -0500 [thread overview]
Message-ID: <4A1D8F4D.1040902@sandeen.net> (raw)
In-Reply-To: <20090527091734.GA21958@infradead.org>
Christoph Hellwig wrote:
> Updated patch below:
>
>
> Subject: xfs: validate quota log items during log recovery
> From: Christoph Hellwig <hch@lst.de>
>
> Arkadiusz has seen really strange crashes in xfs_qm_dqcheck that
> I can only explain by a log item being too smal to actually fit the
^^small ;)
> xfs_dqblk_t we're dereferencing all over xfs_qm_dqcheck. So add
> graceful checks for NULL or too small quota items to the log recovery
> code.
>
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
A bit more verbose now isn't it, but oh well :)
Reviewed-by: Eric Sandeen <sandeen@sandeen.net>
> Index: xfs/fs/xfs/xfs_log_recover.c
> ===================================================================
> --- xfs.orig/fs/xfs/xfs_log_recover.c 2009-05-27 10:40:03.752821404 +0200
> +++ xfs/fs/xfs/xfs_log_recover.c 2009-05-27 10:43:23.740939498 +0200
> @@ -1975,16 +1975,30 @@ xlog_recover_do_reg_buffer(
> error = 0;
> if (buf_f->blf_flags &
> (XFS_BLI_UDQUOT_BUF|XFS_BLI_PDQUOT_BUF|XFS_BLI_GDQUOT_BUF)) {
> + if (item->ri_buf[i].i_addr == NULL) {
> + cmn_err(CE_ALERT,
> + "XFS: NULL dquot in %s.", __func__);
> + goto next;
> + }
> + if (item->ri_buf[i].i_len < sizeof(xfs_dqblk_t)) {
> + cmn_err(CE_ALERT,
> + "XFS: dquot too small (%d) in %s.",
> + item->ri_buf[i].i_len, __func__);
> + goto next;
> + }
> error = xfs_qm_dqcheck((xfs_disk_dquot_t *)
> item->ri_buf[i].i_addr,
> -1, 0, XFS_QMOPT_DOWARN,
> "dquot_buf_recover");
> + if (error)
> + goto next;
> }
> - if (!error)
> - memcpy(xfs_buf_offset(bp,
> - (uint)bit << XFS_BLI_SHIFT), /* dest */
> - item->ri_buf[i].i_addr, /* source */
> - nbits<<XFS_BLI_SHIFT); /* length */
> +
> + memcpy(xfs_buf_offset(bp,
> + (uint)bit << XFS_BLI_SHIFT), /* dest */
> + item->ri_buf[i].i_addr, /* source */
> + nbits<<XFS_BLI_SHIFT); /* length */
> + next:
> i++;
> bit += nbits;
> }
> @@ -2615,7 +2629,19 @@ xlog_recover_do_dquot_trans(
> return (0);
>
> recddq = (xfs_disk_dquot_t *)item->ri_buf[1].i_addr;
> - ASSERT(recddq);
> +
> + if (item->ri_buf[1].i_addr == NULL) {
> + cmn_err(CE_ALERT,
> + "XFS: NULL dquot in %s.", __func__);
> + return XFS_ERROR(EIO);
> + }
> + if (item->ri_buf[1].i_len < sizeof(xfs_dqblk_t)) {
> + cmn_err(CE_ALERT,
> + "XFS: dquot too small (%d) in %s.",
> + item->ri_buf[1].i_len, __func__);
> + return XFS_ERROR(EIO);
> + }
> +
> /*
> * This type of quotas was turned off, so ignore this record.
> */
>
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
prev parent reply other threads:[~2009-05-27 19:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-03 17:54 [PATCH] xfs: validate quota log items during log recovery Christoph Hellwig
2009-03-16 7:54 ` Christoph Hellwig
2009-03-29 7:42 ` Christoph Hellwig
2009-05-26 9:11 ` Christoph Hellwig
2009-04-04 11:59 ` Arkadiusz Miskiewicz
2009-05-26 16:07 ` Eric Sandeen
2009-05-27 9:17 ` Christoph Hellwig
2009-05-27 19:06 ` Eric Sandeen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A1D8F4D.1040902@sandeen.net \
--to=sandeen@sandeen.net \
--cc=hch@infradead.org \
--cc=xfs@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.