LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Richard Weinberger <richard@nod.at>
Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 01/14] ubi: fastmap: Read PEB numbers more carefully
Date: Wed, 20 Jun 2018 12:17:20 +0200 [thread overview]
Message-ID: <20180620121720.22ad75c9@bbrezillon> (raw)
In-Reply-To: <20180613212344.11608-2-richard@nod.at>
On Wed, 13 Jun 2018 23:23:31 +0200
Richard Weinberger <richard@nod.at> wrote:
> PEB numbers can be used as indices, make sure that they
> are within bounds.
>
> Signed-off-by: Richard Weinberger <richard@nod.at>
> ---
> drivers/mtd/ubi/fastmap.c | 71 ++++++++++++++++++++++++++++++++++++++---------
> 1 file changed, 58 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/mtd/ubi/fastmap.c b/drivers/mtd/ubi/fastmap.c
> index 462526a10537..768fa8a76867 100644
> --- a/drivers/mtd/ubi/fastmap.c
> +++ b/drivers/mtd/ubi/fastmap.c
> @@ -101,6 +101,29 @@ size_t ubi_calc_fm_size(struct ubi_device *ubi)
> return roundup(size, ubi->leb_size);
> }
>
> +static bool read_pnum(struct ubi_device *ubi, struct ubi_attach_info *ai,
> + __be32 pnum, int *out_pnum)
Why not returning an int here, with negative values meaning that
pnum is invalid and positive values encoding the actual PEB number?
Also, I think check_pnum(), validate_pnum() or decode_pnum() would be
better names than read_pnum().
> +{
> + int ret = true;
> + int max_pnum = ubi->peb_count;
> +
> + pnum = be32_to_cpu(pnum);
> + if (pnum == UBI_UNKNOWN) {
> + *out_pnum = pnum;
> + goto out;
> + }
> +
> + if (pnum < 0 || pnum >= max_pnum) {
> + ubi_err(ubi, "fastmap references PEB out of range: %i", pnum);
> + ret = false;
> + goto out;
> + } else {
> + *out_pnum = pnum;
> + }
> +
> +out:
> + return ret;
> +}
>
> /**
> * new_fm_vhdr - allocate a new volume header for fastmap usage.
> @@ -438,7 +461,10 @@ static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
> int scrub = 0;
> int image_seq;
>
> - pnum = be32_to_cpu(pebs[i]);
> + if (!read_pnum(ubi, ai, pebs[i], &pnum)) {
> + ret = UBI_BAD_FASTMAP;
> + goto out;
> + }
>
> if (ubi_io_is_bad(ubi, pnum)) {
> ubi_err(ubi, "bad PEB in fastmap pool!");
> @@ -565,7 +591,7 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
> struct ubi_fm_ec *fmec;
> struct ubi_fm_volhdr *fmvhdr;
> struct ubi_fm_eba *fm_eba;
> - int ret, i, j, pool_size, wl_pool_size;
> + int ret, i, j, pool_size, wl_pool_size, pnum;
> size_t fm_pos = 0, fm_size = ubi->fm_size;
> unsigned long long max_sqnum = 0;
> void *fm_raw = ubi->fm_buf;
> @@ -647,8 +673,10 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
> if (fm_pos >= fm_size)
> goto fail_bad;
>
> - add_aeb(ai, &ai->free, be32_to_cpu(fmec->pnum),
> - be32_to_cpu(fmec->ec), 0);
> + if (!read_pnum(ubi, ai, fmec->pnum, &pnum))
> + goto fail_bad;
> +
> + add_aeb(ai, &ai->free, pnum, be32_to_cpu(fmec->ec), 0);
> }
>
> /* read EC values from used list */
> @@ -658,8 +686,10 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
> if (fm_pos >= fm_size)
> goto fail_bad;
>
> - add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
> - be32_to_cpu(fmec->ec), 0);
> + if (!read_pnum(ubi, ai, fmec->pnum, &pnum))
> + goto fail_bad;
> +
> + add_aeb(ai, &used, pnum, be32_to_cpu(fmec->ec), 0);
> }
>
> /* read EC values from scrub list */
> @@ -669,8 +699,10 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
> if (fm_pos >= fm_size)
> goto fail_bad;
>
> - add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
> - be32_to_cpu(fmec->ec), 1);
> + if (!read_pnum(ubi, ai, fmec->pnum, &pnum))
> + goto fail_bad;
> +
> + add_aeb(ai, &used, pnum, be32_to_cpu(fmec->ec), 1);
> }
>
> /* read EC values from erase list */
> @@ -680,8 +712,10 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
> if (fm_pos >= fm_size)
> goto fail_bad;
>
> - add_aeb(ai, &ai->erase, be32_to_cpu(fmec->pnum),
> - be32_to_cpu(fmec->ec), 1);
> + if (!read_pnum(ubi, ai, fmec->pnum, &pnum))
> + goto fail_bad;
> +
> + add_aeb(ai, &ai->erase, pnum, be32_to_cpu(fmec->ec), 1);
> }
>
> ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
> @@ -731,7 +765,8 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
> }
>
> for (j = 0; j < be32_to_cpu(fm_eba->reserved_pebs); j++) {
> - int pnum = be32_to_cpu(fm_eba->pnum[j]);
> + if (!read_pnum(ubi, ai, fm_eba->pnum[j], &pnum))
> + goto fail_bad;
>
> if (pnum < 0)
> continue;
> @@ -954,7 +989,10 @@ int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
> for (i = 0; i < used_blocks; i++) {
> int image_seq;
>
> - pnum = be32_to_cpu(fmsb->block_loc[i]);
> + if (!read_pnum(ubi, ai, fmsb->block_loc[i], &pnum)) {
> + ret = UBI_BAD_FASTMAP;
> + goto free_hdr;
> + }
>
> if (ubi_io_is_bad(ubi, pnum)) {
> ret = UBI_BAD_FASTMAP;
> @@ -1068,7 +1106,14 @@ int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
> goto free_hdr;
> }
>
> - e->pnum = be32_to_cpu(fmsb2->block_loc[i]);
> + if (!read_pnum(ubi, ai, fmsb2->block_loc[i], &e->pnum)) {
> + while (i--)
> + kmem_cache_free(ubi_wl_entry_slab, fm->e[i]);
> +
> + ret = -ENOMEM;
> + goto free_hdr;
> + }
> +
> e->ec = be32_to_cpu(fmsb2->block_ec[i]);
> fm->e[i] = e;
> }
next prev parent reply other threads:[~2018-06-20 10:17 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-13 21:23 [PATCH 00/14] ubi: Fastmap updates Richard Weinberger
2018-06-13 21:23 ` [PATCH 01/14] ubi: fastmap: Read PEB numbers more carefully Richard Weinberger
2018-06-14 1:04 ` kbuild test robot
2018-06-14 6:23 ` Richard Weinberger
2018-06-20 10:17 ` Boris Brezillon [this message]
2018-06-13 21:23 ` [PATCH 02/14] ubi: Fix assert in ubi_wl_init Richard Weinberger
2018-06-20 10:11 ` Boris Brezillon
2018-06-13 21:23 ` [PATCH 03/14] ubi: fastmap: Add support for flags Richard Weinberger
2018-06-24 12:49 ` Boris Brezillon
2018-06-13 21:23 ` [PATCH 04/14] ubi: fastmap: Add UBI_FM_SB_PRESEEDED_FLG flag Richard Weinberger
2018-06-24 12:53 ` Boris Brezillon
2018-06-13 21:23 ` [PATCH 05/14] ubi: fastmap: Implement PEB translation Richard Weinberger
2018-06-13 21:23 ` [PATCH 06/14] ubi: fastmap: Handle bad block count for preseeded fastmap case Richard Weinberger
2018-06-13 21:23 ` [PATCH 07/14] ubi: fastmap: Fixup pool sizes for preseeded fastmaps Richard Weinberger
2018-06-13 21:23 ` [PATCH 08/14] ubi: fastmap: Scan empty space if fastmap is preseeded Richard Weinberger
2018-06-13 21:23 ` [PATCH 09/14] ubi: fastmap: Relax size check Richard Weinberger
2018-06-24 12:55 ` Boris Brezillon
2018-06-13 21:23 ` [PATCH 10/14] ubi: fastmap: Change a WARN_ON() to ubi_err() Richard Weinberger
2018-06-24 13:04 ` Boris Brezillon
2018-06-13 21:23 ` [PATCH 11/14] ubi: Add module parameter to force a full scan Richard Weinberger
2018-06-24 13:09 ` Boris Brezillon
2018-06-13 21:23 ` [PATCH 12/14] ubi: uapi: Add mode selector to attach request Richard Weinberger
2018-06-24 13:12 ` Boris Brezillon
2018-06-13 21:23 ` [PATCH 13/14] ubi: Wire up attach mode selector Richard Weinberger
2018-06-13 21:23 ` [PATCH 14/14] ubi: Remove experimental stigma from Fastmap Richard Weinberger
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=20180620121720.22ad75c9@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=richard@nod.at \
--subject='Re: [PATCH 01/14] ubi: fastmap: Read PEB numbers more carefully' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).