[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20221228113035.ups6echnsmo4flnz@pengutronix.de>
Date: Wed, 28 Dec 2022 12:30:35 +0100
From: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
To: Herbert Xu <herbert@...dor.apana.org.au>
Cc: Anders Roxell <anders.roxell@...aro.org>,
Kees Cook <keescook@...omium.org>,
Horia Geantă <horia.geanta@....com>,
Gaurav Jain <gaurav.jain@....com>,
Pankaj Gupta <pankaj.gupta@....com>,
linux-kernel@...r.kernel.org, linux-hardening@...r.kernel.org,
linux-crypto@...r.kernel.org, kernel@...gutronix.de,
"David S. Miller" <davem@...emloft.net>,
kernel test robot <lkp@...el.com>
Subject: Re: [PATCH] crypto: caam - Avoid GCC memset bug warning
On Wed, Dec 28, 2022 at 04:46:39PM +0800, Herbert Xu wrote:
> Certain versions of gcc don't like the memcpy with a NULL dst
> (which only happens with a zero length). This only happens
> when debugging is enabled so add an if clause to work around
> these warnings.
>
> A similar warning used to be generated by sparse but that was
> fixed years ago.
>
> Link: https://lore.kernel.org/lkml/202210290446.qBayTfzl-lkp@intel.com
> Reported-by: kernel test robot <lkp@...el.com>
> Reported-by: Kees Cook <keescook@...omium.org>
> Reported-by: Uwe Kleine-K�nig <u.kleine-koenig@...gutronix.de>
> Signed-off-by: Herbert Xu <herbert@...dor.apana.org.au>
>
> diff --git a/drivers/crypto/caam/desc_constr.h b/drivers/crypto/caam/desc_constr.h
> index 62ce6421bb3f..824c94d44f94 100644
> --- a/drivers/crypto/caam/desc_constr.h
> +++ b/drivers/crypto/caam/desc_constr.h
> @@ -163,7 +163,8 @@ static inline void append_data(u32 * const desc, const void *data, int len)
> {
> u32 *offset = desc_end(desc);
>
> - if (len) /* avoid sparse warning: memcpy with byte count of 0 */
> + /* Avoid gcc warning: memcpy with data == NULL */
> + if (!IS_ENABLED(CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG) || data)
I just tried: For me a plain
if (data)
is also enough to make both gcc and sparse happy.
(On a related note, sparse reports:
CHECK drivers/crypto/caam/jr.c
drivers/crypto/caam/jr.c: note: in included file (through arch/arm64/include/asm/io.h, include/linux/io.h, include/linux/irq.h, ...):
include/asm-generic/io.h:290:22: warning: incorrect type in argument 1 (different base types)
include/asm-generic/io.h:290:22: expected unsigned long long [usertype] val
include/asm-generic/io.h:290:22: got restricted __le64 [usertype]
include/asm-generic/io.h:290:22: warning: incorrect type in argument 1 (different base types)
include/asm-generic/io.h:290:22: expected unsigned long long [usertype] val
include/asm-generic/io.h:290:22: got restricted __le64 [usertype]
Didn't look into that though.)
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | https://www.pengutronix.de/ |
Download attachment "signature.asc" of type "application/pgp-signature" (489 bytes)
Powered by blists - more mailing lists