linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] soc: qcom: cmd-db: replace strscpy_pad() with strncpy()
@ 2022-06-27 23:17 Douglas Anderson
  2022-06-27 23:49 ` Matthias Kaehlcke
  2022-06-27 23:52 ` Stephen Boyd
  0 siblings, 2 replies; 3+ messages in thread
From: Douglas Anderson @ 2022-06-27 23:17 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: Douglas Anderson, Andy Gross, Konrad Dybcio, Krzysztof Kozlowski,
	Stephen Boyd, linux-arm-msm, linux-kernel

Commit ac0126a01735 ("soc: qcom: cmd-db: replace strncpy() with
strscpy_pad()") breaks booting on my sc7280-herobrine-herobrine
device. From printouts I see that at bootup the function is called
with an id of "lnbclka2" which is 8 bytes big.

Previously all 8 bytes of this string were copied to the
destination. Now only 7 bytes will be copied since strscpy_pad() saves
a byte for '\0' termination.

We don't need the '\0' termination in the destination. Let's go back
to strncpy(). According to the warning:
  If a caller is using non-NUL-terminated strings, strncpy() can still
  be used, but destinations should be marked with the __nonstring
  attribute to avoid future compiler warnings.
...so we'll do that.

Fixes: ac0126a01735 ("soc: qcom: cmd-db: replace strncpy() with strscpy_pad()")
Signed-off-by: Douglas Anderson <dianders@chromium.org>
---

 drivers/soc/qcom/cmd-db.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/soc/qcom/cmd-db.c b/drivers/soc/qcom/cmd-db.c
index c5137c25d819..0aafe90277bc 100644
--- a/drivers/soc/qcom/cmd-db.c
+++ b/drivers/soc/qcom/cmd-db.c
@@ -141,14 +141,14 @@ static int cmd_db_get_header(const char *id, const struct entry_header **eh,
 	const struct rsc_hdr *rsc_hdr;
 	const struct entry_header *ent;
 	int ret, i, j;
-	u8 query[8];
+	u8 query[8] __nonstring;
 
 	ret = cmd_db_ready();
 	if (ret)
 		return ret;
 
 	/* Pad out query string to same length as in DB */
-	strscpy_pad(query, id, sizeof(query));
+	strncpy(query, id, sizeof(query));
 
 	for (i = 0; i < MAX_SLV_ID; i++) {
 		rsc_hdr = &cmd_db_header->header[i];
-- 
2.37.0.rc0.161.g10f37bed90-goog


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] soc: qcom: cmd-db: replace strscpy_pad() with strncpy()
  2022-06-27 23:17 [PATCH] soc: qcom: cmd-db: replace strscpy_pad() with strncpy() Douglas Anderson
@ 2022-06-27 23:49 ` Matthias Kaehlcke
  2022-06-27 23:52 ` Stephen Boyd
  1 sibling, 0 replies; 3+ messages in thread
From: Matthias Kaehlcke @ 2022-06-27 23:49 UTC (permalink / raw)
  To: Douglas Anderson
  Cc: Bjorn Andersson, Andy Gross, Konrad Dybcio, Krzysztof Kozlowski,
	Stephen Boyd, linux-arm-msm, linux-kernel

On Mon, Jun 27, 2022 at 04:17:00PM -0700, Douglas Anderson wrote:
> Commit ac0126a01735 ("soc: qcom: cmd-db: replace strncpy() with
> strscpy_pad()") breaks booting on my sc7280-herobrine-herobrine
> device. From printouts I see that at bootup the function is called
> with an id of "lnbclka2" which is 8 bytes big.
> 
> Previously all 8 bytes of this string were copied to the
> destination. Now only 7 bytes will be copied since strscpy_pad() saves
> a byte for '\0' termination.
> 
> We don't need the '\0' termination in the destination. Let's go back
> to strncpy(). According to the warning:
>   If a caller is using non-NUL-terminated strings, strncpy() can still
>   be used, but destinations should be marked with the __nonstring
>   attribute to avoid future compiler warnings.
> ...so we'll do that.
> 
> Fixes: ac0126a01735 ("soc: qcom: cmd-db: replace strncpy() with strscpy_pad()")
> Signed-off-by: Douglas Anderson <dianders@chromium.org>

Reviewed-by: Matthias Kaehlcke <mka@chromium.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] soc: qcom: cmd-db: replace strscpy_pad() with strncpy()
  2022-06-27 23:17 [PATCH] soc: qcom: cmd-db: replace strscpy_pad() with strncpy() Douglas Anderson
  2022-06-27 23:49 ` Matthias Kaehlcke
@ 2022-06-27 23:52 ` Stephen Boyd
  1 sibling, 0 replies; 3+ messages in thread
From: Stephen Boyd @ 2022-06-27 23:52 UTC (permalink / raw)
  To: Bjorn Andersson, Douglas Anderson
  Cc: Douglas Anderson, Andy Gross, Konrad Dybcio, Krzysztof Kozlowski,
	linux-arm-msm, linux-kernel

Quoting Douglas Anderson (2022-06-27 16:17:00)
> Commit ac0126a01735 ("soc: qcom: cmd-db: replace strncpy() with
> strscpy_pad()") breaks booting on my sc7280-herobrine-herobrine
> device. From printouts I see that at bootup the function is called
> with an id of "lnbclka2" which is 8 bytes big.
> 
> Previously all 8 bytes of this string were copied to the
> destination. Now only 7 bytes will be copied since strscpy_pad() saves
> a byte for '\0' termination.
> 
> We don't need the '\0' termination in the destination. Let's go back
> to strncpy(). According to the warning:
>   If a caller is using non-NUL-terminated strings, strncpy() can still
>   be used, but destinations should be marked with the __nonstring
>   attribute to avoid future compiler warnings.
> ...so we'll do that.
> 
> Fixes: ac0126a01735 ("soc: qcom: cmd-db: replace strncpy() with strscpy_pad()")
> Signed-off-by: Douglas Anderson <dianders@chromium.org>
> ---
> 
>  drivers/soc/qcom/cmd-db.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/soc/qcom/cmd-db.c b/drivers/soc/qcom/cmd-db.c
> index c5137c25d819..0aafe90277bc 100644
> --- a/drivers/soc/qcom/cmd-db.c
> +++ b/drivers/soc/qcom/cmd-db.c
> @@ -141,14 +141,14 @@ static int cmd_db_get_header(const char *id, const struct entry_header **eh,
>         const struct rsc_hdr *rsc_hdr;
>         const struct entry_header *ent;
>         int ret, i, j;
> -       u8 query[8];
> +       u8 query[8] __nonstring;

Since you're already here, can you change 8 to be sizeof(ent->id)? That
would directly tie the two lengths together so that one can't change and
then the carefully crafted strncpy() fails again.

>  
>         ret = cmd_db_ready();
>         if (ret)
>                 return ret;
>  
>         /* Pad out query string to same length as in DB */
> -       strscpy_pad(query, id, sizeof(query));
> +       strncpy(query, id, sizeof(query));

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-06-27 23:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-27 23:17 [PATCH] soc: qcom: cmd-db: replace strscpy_pad() with strncpy() Douglas Anderson
2022-06-27 23:49 ` Matthias Kaehlcke
2022-06-27 23:52 ` Stephen Boyd

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).