From: Dan Carpenter <dan.carpenter@linaro.org>
To: oe-kbuild@lists.linux.dev,
Pavitrakumar M <pavitrakumarm@vayavyalabs.com>,
herbert@gondor.apana.org.au, linux-crypto@vger.kernel.org
Cc: lkp@intel.com, oe-kbuild-all@lists.linux.dev,
Ruud.Derwig@synopsys.com, manjunath.hadli@vayavyalabs.com,
bhoomikak@vayavyalabs.com,
Pavitrakumar M <pavitrakumarm@vayavyalabs.com>
Subject: Re: [PATCH v5 7/7] Enable Driver compilation in crypto Kconfig and Makefile
Date: Mon, 1 Jul 2024 17:43:34 +0200 [thread overview]
Message-ID: <dcca1eff-48eb-411d-aef8-e206e241f3e1@suswa.mountain> (raw)
In-Reply-To: <20240621082053.638952-8-pavitrakumarm@vayavyalabs.com>
Hi Pavitrakumar,
kernel test robot noticed the following build warnings:
url: https://github.com/intel-lab-lkp/linux/commits/Pavitrakumar-M/Add-SPAcc-Skcipher-support/20240625-184208
base: 1dcf865d3bf5bff45e93cb2410911b3428dacb78
patch link: https://lore.kernel.org/r/20240621082053.638952-8-pavitrakumarm%40vayavyalabs.com
patch subject: [PATCH v5 7/7] Enable Driver compilation in crypto Kconfig and Makefile
config: x86_64-randconfig-161-20240626 (https://download.01.org/0day-ci/archive/20240626/202406260926.bfyJ84yf-lkp@intel.com/config)
compiler: gcc-10 (Ubuntu 10.5.0-1ubuntu1) 10.5.0
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
| Closes: https://lore.kernel.org/r/202406260926.bfyJ84yf-lkp@intel.com/
New smatch warnings:
drivers/crypto/dwc-spacc/spacc_core.c:1029 fixup_sg() error: we previously assumed 'sg' could be null (see line 1008)
Old smatch warnings:
drivers/crypto/dwc-spacc/spacc_core.c:1417 spacc_isenabled() error: buffer overflow 'spacc->config.modes' 81 <= 81
drivers/crypto/dwc-spacc/spacc_core.c:1422 spacc_isenabled() error: buffer overflow 'spacc->config.modes' 81 <= 81
drivers/crypto/dwc-spacc/spacc_core.c:2018 spacc_open() warn: inconsistent indenting
vim +/sg +1029 drivers/crypto/dwc-spacc/spacc_core.c
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1003 static int fixup_sg(struct scatterlist *sg, int nbytes)
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1004 {
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1005 int sg_nents = 0;
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1006
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1007 while (nbytes > 0) {
8e3d92f71646e6 Pavitrakumar M 2024-06-21 @1008 if (sg && sg->length) {
Can we really pass a NULL sg?
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1009 ++sg_nents;
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1010
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1011 if (sg->length > nbytes)
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1012 return sg_nents;
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1013
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1014 nbytes -= sg->length;
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1015
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1016 sg = sg_next(sg);
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1017 if (!sg)
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1018 break;
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1019 /* WARNING: sg->length may be > nbytes */
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1020 } else {
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1021 /*
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1022 * The Linux crypto system uses its own SG chaining
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1023 * method which is slightly incompatible with the
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1024 * generic SG chaining. In particular, dma_map_sg does
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1025 * not support this method. Turn them into proper
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1026 * chained SGs here (which dma_map_sg does
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1027 * support) as a workaround.
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1028 */
8e3d92f71646e6 Pavitrakumar M 2024-06-21 @1029 spacc_sg_chain(sg, 1, sg_chain_ptr(sg));
^^^ ^^
Because if so, we're toast.
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1030 sg = sg_chain_ptr(sg);
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1031 if (!sg)
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1032 break;
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1033 }
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1034 }
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1035
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1036 return sg_nents;
8e3d92f71646e6 Pavitrakumar M 2024-06-21 1037 }
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2024-07-01 15:43 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-21 8:20 [PATCH v5 0/7] Add SPAcc Crypto Driver Support Pavitrakumar M
2024-06-21 8:20 ` [PATCH v5 1/7] Add SPAcc Skcipher support Pavitrakumar M
2024-06-21 8:20 ` [PATCH v5 2/7] Enable SPAcc AUTODETECT Pavitrakumar M
2024-06-21 8:20 ` [PATCH v5 3/7] Add SPAcc ahash support Pavitrakumar M
2024-06-28 1:16 ` Herbert Xu
2024-07-09 20:30 ` Pavitrakumar Managutte
2024-06-21 8:20 ` [PATCH v5 4/7] Add SPAcc aead support Pavitrakumar M
2024-06-21 8:20 ` [PATCH v5 5/7] Add SPAcc Kconfig and Makefile Pavitrakumar M
2024-06-21 8:20 ` [PATCH v5 6/7] Add SPAcc dts overlay Pavitrakumar M
2024-08-20 16:24 ` Conor Dooley
2024-08-20 17:13 ` Pavitrakumar Managutte
2024-06-21 8:20 ` [PATCH v5 7/7] Enable Driver compilation in crypto Kconfig and Makefile Pavitrakumar M
2024-07-01 15:43 ` Dan Carpenter [this message]
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=dcca1eff-48eb-411d-aef8-e206e241f3e1@suswa.mountain \
--to=dan.carpenter@linaro.org \
--cc=Ruud.Derwig@synopsys.com \
--cc=bhoomikak@vayavyalabs.com \
--cc=herbert@gondor.apana.org.au \
--cc=linux-crypto@vger.kernel.org \
--cc=lkp@intel.com \
--cc=manjunath.hadli@vayavyalabs.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=oe-kbuild@lists.linux.dev \
--cc=pavitrakumarm@vayavyalabs.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox