* [PATCH] soc: qcom: mdt_loader: Fix split image detection
@ 2023-06-12 21:58 Bjorn Andersson
2023-06-13 12:57 ` Dmitry Baryshkov
2023-06-13 22:30 ` Bjorn Andersson
0 siblings, 2 replies; 3+ messages in thread
From: Bjorn Andersson @ 2023-06-12 21:58 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Melody Olvera,
Gokul krishna Krishnakumar
Cc: linux-arm-msm, linux-kernel
The enhanced detection introduced in commit '210d12c8197a ("soc: qcom:
mdt_loader: Enhance split binary detection")' requires that all segments
lies within the file on disk.
But the Qualcomm firmware files consistently has a BSS-like segment at
the end, with a p_offset aligned to the next 4k boundary. As the p_size
is 0 and there's nothing to load, the image is not padded to cover this
(empty) segment.
Ignore zero-sized segments when determining if the image is split, to
avoid this problem.
Fixes: 210d12c8197a ("soc: qcom: mdt_loader: Enhance split binary detection")
Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com>
---
drivers/soc/qcom/mdt_loader.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/soc/qcom/mdt_loader.c b/drivers/soc/qcom/mdt_loader.c
index 9418993a3a92..6f177e46fa0f 100644
--- a/drivers/soc/qcom/mdt_loader.c
+++ b/drivers/soc/qcom/mdt_loader.c
@@ -275,6 +275,14 @@ static bool qcom_mdt_bins_are_split(const struct firmware *fw, const char *fw_na
phdrs = (struct elf32_phdr *)(ehdr + 1);
for (i = 0; i < ehdr->e_phnum; i++) {
+ /*
+ * The size of the MDT file is not padded to include any
+ * zero-sized segments at the end. Ignore these, as they should
+ * not affect the decision about image being split or not.
+ */
+ if (!phdrs[i].p_filesz)
+ continue;
+
seg_start = phdrs[i].p_offset;
seg_end = phdrs[i].p_offset + phdrs[i].p_filesz;
if (seg_start > fw->size || seg_end > fw->size)
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] soc: qcom: mdt_loader: Fix split image detection
2023-06-12 21:58 [PATCH] soc: qcom: mdt_loader: Fix split image detection Bjorn Andersson
@ 2023-06-13 12:57 ` Dmitry Baryshkov
2023-06-13 22:30 ` Bjorn Andersson
1 sibling, 0 replies; 3+ messages in thread
From: Dmitry Baryshkov @ 2023-06-13 12:57 UTC (permalink / raw)
To: Bjorn Andersson, Bjorn Andersson, Konrad Dybcio, Melody Olvera,
Gokul krishna Krishnakumar
Cc: linux-arm-msm, linux-kernel
On 13/06/2023 00:58, Bjorn Andersson wrote:
> The enhanced detection introduced in commit '210d12c8197a ("soc: qcom:
> mdt_loader: Enhance split binary detection")' requires that all segments
> lies within the file on disk.
>
> But the Qualcomm firmware files consistently has a BSS-like segment at
> the end, with a p_offset aligned to the next 4k boundary. As the p_size
> is 0 and there's nothing to load, the image is not padded to cover this
> (empty) segment.
>
> Ignore zero-sized segments when determining if the image is split, to
> avoid this problem.
>
> Fixes: 210d12c8197a ("soc: qcom: mdt_loader: Enhance split binary detection")
> Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Tested-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> # qrb5165-rb5
W/o this patch loading mbn files is broken.
> ---
> drivers/soc/qcom/mdt_loader.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/soc/qcom/mdt_loader.c b/drivers/soc/qcom/mdt_loader.c
> index 9418993a3a92..6f177e46fa0f 100644
> --- a/drivers/soc/qcom/mdt_loader.c
> +++ b/drivers/soc/qcom/mdt_loader.c
> @@ -275,6 +275,14 @@ static bool qcom_mdt_bins_are_split(const struct firmware *fw, const char *fw_na
> phdrs = (struct elf32_phdr *)(ehdr + 1);
>
> for (i = 0; i < ehdr->e_phnum; i++) {
> + /*
> + * The size of the MDT file is not padded to include any
> + * zero-sized segments at the end. Ignore these, as they should
> + * not affect the decision about image being split or not.
> + */
> + if (!phdrs[i].p_filesz)
> + continue;
> +
> seg_start = phdrs[i].p_offset;
> seg_end = phdrs[i].p_offset + phdrs[i].p_filesz;
> if (seg_start > fw->size || seg_end > fw->size)
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] soc: qcom: mdt_loader: Fix split image detection
2023-06-12 21:58 [PATCH] soc: qcom: mdt_loader: Fix split image detection Bjorn Andersson
2023-06-13 12:57 ` Dmitry Baryshkov
@ 2023-06-13 22:30 ` Bjorn Andersson
1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Andersson @ 2023-06-13 22:30 UTC (permalink / raw)
To: Konrad Dybcio, Melody Olvera, Bjorn Andersson,
Gokul krishna Krishnakumar
Cc: linux-arm-msm, linux-kernel
On Mon, 12 Jun 2023 14:58:04 -0700, Bjorn Andersson wrote:
> The enhanced detection introduced in commit '210d12c8197a ("soc: qcom:
> mdt_loader: Enhance split binary detection")' requires that all segments
> lies within the file on disk.
>
> But the Qualcomm firmware files consistently has a BSS-like segment at
> the end, with a p_offset aligned to the next 4k boundary. As the p_size
> is 0 and there's nothing to load, the image is not padded to cover this
> (empty) segment.
>
> [...]
Applied, thanks!
[1/1] soc: qcom: mdt_loader: Fix split image detection
commit: 0d25da8e7e1e35bdbb521d586be1954bdedd1cca
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-06-13 22:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-12 21:58 [PATCH] soc: qcom: mdt_loader: Fix split image detection Bjorn Andersson
2023-06-13 12:57 ` Dmitry Baryshkov
2023-06-13 22:30 ` Bjorn Andersson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®