On Mon, Oct 23, 2017 at 10:46:43AM -0400, Brian Foster wrote: > If a malformatted filesystem is mounted and attempts log recovery, > we can end up passing garbage parameter values to > xlog_find_verify_log_record(). In turn, the latter can pass a NULL > head pointer to xlog_header_check_mount() and cause a kernel panic. Malformed how? Is *last_blk some huge value such that i < -1? I'm trying to figure out how we get passed a NULL head, and (afaict) that's one way it can happen... > Add some parameter sanity checks to both functions. Checks in both > places are technically not necessary, but do so to help future proof > the code. This prevents a kernel panic and replaces it with a more > graceful mount failure. > > Reported-by: Zorro Lang <zlang@xxxxxxxxxx> > Signed-off-by: Brian Foster <bfoster@xxxxxxxxxx> > --- > fs/xfs/xfs_log_recover.c | 11 +++++++++-- > 1 file changed, 9 insertions(+), 2 deletions(-) > > diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c > index ee34899..80b37a2 100644 > --- a/fs/xfs/xfs_log_recover.c > +++ b/fs/xfs/xfs_log_recover.c > @@ -347,9 +347,12 @@ xlog_header_check_recover( > */ > STATIC int > xlog_header_check_mount( > - xfs_mount_t *mp, > - xlog_rec_header_t *head) > + struct xfs_mount *mp, > + struct xlog_rec_header *head) > { > + if (!head) > + return -EINVAL; > + > ASSERT(head->h_magicno == cpu_to_be32(XLOG_HEADER_MAGIC_NUM)); > > if (uuid_is_null(&head->h_fs_uuid)) { > @@ -533,6 +536,10 @@ xlog_find_verify_log_record( > > ASSERT(start_blk != 0 || *last_blk != start_blk); > > + if (start_blk < 0 || start_blk > log->l_logBBsize || > + *last_blk < 0 || *last_blk > log->l_logBBsize) > + return -EINVAL; /me stumbled over the fact that start_blk and last_blk are offsets (in units of basic blocks) within the log, not absolute disk offsets like their xfs_daddr_t type implies. :( Could you add a comment somewhere in this function explaining that these two "block" numbers are actually relative logBBstart? The comment implies this, but apparently not strongly enough. --D > + > if (!(bp = xlog_get_bp(log, num_blks))) { > if (!(bp = xlog_get_bp(log, 1))) > return -ENOMEM; > -- > 2.9.5 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html