From: Mattijs Korpershoek <mkorpershoek@kernel.org>
To: Tom Rini <trini@konsulko.com>, Chris Morgan <macroalpha82@gmail.com>
Cc: u-boot@lists.denx.de, macromorgan@hotmail.com,
Mattijs Korpershoek <mkorpershoek@kernel.org>,
sjg@chromium.org, jmasson@baylibre.com, nbelin@baylibre.com,
bisson.gary@gmail.com
Subject: Re: [PATCH] bootstd: android: Fix write outside of memory
Date: Wed, 07 Jan 2026 10:52:54 +0100 [thread overview]
Message-ID: <87ldi9g361.fsf@kernel.org> (raw)
In-Reply-To: <20260106171633.GI3416603@bill-the-cat>
On Tue, Jan 06, 2026 at 11:16, Tom Rini <trini@konsulko.com> wrote:
> On Tue, Dec 23, 2025 at 05:44:56PM -0600, Chris Morgan wrote:
>
>> From: Chris Morgan <macromorgan@hotmail.com>
>>
>> It looks like under certain circumstances when reading the vendor_boot
>> partition it causes my device to write outside the range of memory
>> available. Near as I can tell this occurs because
>> scan_vendor_boot_part() calls android_image_get_vendor_bootimg_size()
>> which calls android_vendor_boot_image_v3_v4_parse_hdr() which calls
>> add_trailer() which attempts to copy information to a buffer allocated
>> with malloc in the scan_vendor_boot_part() function. On my board the
>> memory set aside for malloc is at the top of the system RAM, and given
>> a large enough vendor boot image size this causes the write from
>> add_trailer() to occur outside of the system RAM (nevermind outside
>> of what was allocated with the malloc().
>>
>> While I don't know the absolute best way to handle this, I would assume
>> that if we simply map the memory we want to use to where we will
>> eventually load the vendor_boot image that would be the most logical.
>>
>> Fixes: abadcda24b10 ("bootstd: android: don't read whole partition sizes")
>> Signed-off-by: Chris Morgan <macromorgan@hotmail.com>
>> ---
>> boot/bootmeth_android.c | 20 ++++++--------------
>> 1 file changed, 6 insertions(+), 14 deletions(-)
>>
>> diff --git a/boot/bootmeth_android.c b/boot/bootmeth_android.c
>> index 1374551dbeb..c2c25d53ef3 100644
>> --- a/boot/bootmeth_android.c
>> +++ b/boot/bootmeth_android.c
>> @@ -118,9 +118,10 @@ static int scan_vendor_boot_part(struct udevice *blk, struct android_priv *priv)
>> struct blk_desc *desc = dev_get_uclass_plat(blk);
>> struct disk_partition partition;
>> char partname[PART_NAME_LEN];
>> - ulong num_blks, bufsz;
>> + ulong num_blks;
>> char *buf;
>> int ret;
>> + ulong vloadaddr = env_get_hex("vendor_boot_comp_addr_r", 0);
>>
>> if (priv->slot)
>> sprintf(partname, VENDOR_BOOT_PART_NAME "_%s", priv->slot);
>> @@ -132,28 +133,19 @@ static int scan_vendor_boot_part(struct udevice *blk, struct android_priv *priv)
>> return log_msg_ret("part info", ret);
>>
>> num_blks = DIV_ROUND_UP(sizeof(struct andr_vnd_boot_img_hdr), desc->blksz);
>> - bufsz = num_blks * desc->blksz;
>> - buf = malloc(bufsz);
>> + buf = map_sysmem(vloadaddr, 0);
>> if (!buf)
>> return log_msg_ret("buf", -ENOMEM);
>>
>> ret = blk_read(blk, partition.start, num_blks, buf);
>> - if (ret != num_blks) {
>> - free(buf);
>> + if (ret != num_blks)
>> return log_msg_ret("part read", -EIO);
>> - }
>>
>> - if (!is_android_vendor_boot_image_header(buf)) {
>> - free(buf);
>> + if (!is_android_vendor_boot_image_header(buf))
>> return log_msg_ret("header", -ENOENT);
>> - }
>>
>> - if (!android_image_get_vendor_bootimg_size(buf, &priv->vendor_boot_img_size)) {
>> - free(buf);
>> + if (!android_image_get_vendor_bootimg_size(buf, &priv->vendor_boot_img_size))
>> return log_msg_ret("get vendor bootimg size", -EINVAL);
>> - }
>> -
>> - free(buf);
>>
>> return 0;
>> }
>
> I haven't forgotten about this, but I'm hoping there's some other way to
> solve this, I'm not super keen on adding another environment variable
> (that would need to be documented in a v2 if we can't fix this some
> other way). Mattijs, do you have any ideas?
Sorry for the delay. I'm trying to catch up on my review queue after the
holiday break.
I hope to follow up here in the coming days.
>
> --
> Tom
next prev parent reply other threads:[~2026-01-07 9:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-23 23:44 [PATCH] bootstd: android: Fix write outside of memory Chris Morgan
2026-01-06 17:16 ` Tom Rini
2026-01-07 9:52 ` Mattijs Korpershoek [this message]
2026-01-15 22:16 ` Chris Morgan
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=87ldi9g361.fsf@kernel.org \
--to=mkorpershoek@kernel.org \
--cc=bisson.gary@gmail.com \
--cc=jmasson@baylibre.com \
--cc=macroalpha82@gmail.com \
--cc=macromorgan@hotmail.com \
--cc=nbelin@baylibre.com \
--cc=sjg@chromium.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
/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.