From: "Horia Geantă" <horia.geanta@nxp.com> To: Iuliana Prodan <iuliana.prodan@nxp.com>, Herbert Xu <herbert@gondor.apana.org.au>, Aymen Sghaier <aymen.sghaier@nxp.com> Cc: "David S. Miller" <davem@davemloft.net>, Silvano Di Ninno <silvano.dininno@nxp.com>, Franck Lenormand <franck.lenormand@nxp.com>, "linux-crypto@vger.kernel.org" <linux-crypto@vger.kernel.org>, "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>, dl-linux-imx <linux-imx@nxp.com> Subject: Re: [PATCH 2/4] crypto: caam - fix use-after-free KASAN issue for AEAD algorithms Date: Mon, 6 Apr 2020 14:04:11 +0300 [thread overview] Message-ID: <25cd577b-a690-0e7f-6c1e-6dc7430c7c69@nxp.com> (raw) In-Reply-To: <1586087411-8505-3-git-send-email-iuliana.prodan@nxp.com> On 4/5/2020 2:50 PM, Iuliana Prodan wrote: > Here's the KASAN report: > BUG: KASAN: use-after-free in aead_crypt_done+0x60/0xd8 > Read of size 1 at addr ffff00002303f014 by task swapper/0/0 > > CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.6.0-rc1-00163-gd88dd5c-dirty #18 This is no a public SHA1, you are probably running with patch 1/4 applied in the tree (and with a "dirty tree"). > Hardware name: LS1046A RDB Board (DT) > Call trace: > dump_backtrace+0x0/0x260 > show_stack+0x14/0x20 > dump_stack+0xe8/0x144 > print_address_description.isra.11+0x64/0x348 > __kasan_report+0x11c/0x230 > kasan_report+0xc/0x18 > __asan_load1+0x5c/0x68 > aead_crypt_done+0x60/0xd8 > caam_jr_dequeue+0x390/0x608 > ... You should provide full KASan log - shawdow bits etc. > @@ -973,8 +973,6 @@ static void aead_crypt_done(struct device *jrdev, u32 *desc, u32 err, > > aead_unmap(jrdev, edesc, req); > > - kfree(edesc); > - > /* > * If no backlog flag, the completion of the request is done > * by CAAM, not crypto engine. > @@ -983,6 +981,8 @@ static void aead_crypt_done(struct device *jrdev, u32 *desc, u32 err, > aead_request_complete(req, ecode); > else > crypto_finalize_aead_request(jrp->engine, req, ecode); > + > + kfree(edesc); I think it's better freeing all resources before calling the completion callback, to avoid unnecessary memory strains. Horia
next prev parent reply other threads:[~2020-04-06 11:04 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-04-05 11:50 [PATCH 0/4] crypto: caam - fix use-after-free KASAN issue Iuliana Prodan 2020-04-05 11:50 ` [PATCH 1/4] crypto: caam - fix use-after-free KASAN issue for SKCIPHER algorithms Iuliana Prodan 2020-04-05 11:50 ` [PATCH 2/4] crypto: caam - fix use-after-free KASAN issue for AEAD algorithms Iuliana Prodan 2020-04-06 11:04 ` Horia Geantă [this message] 2020-04-05 11:50 ` [PATCH 3/4] crypto: caam - fix use-after-free KASAN issue for HASH algorithms Iuliana Prodan 2020-04-05 11:50 ` [PATCH 4/4] crypto: caam - fix use-after-free KASAN issue for RSA algorithms Iuliana Prodan
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=25cd577b-a690-0e7f-6c1e-6dc7430c7c69@nxp.com \ --to=horia.geanta@nxp.com \ --cc=aymen.sghaier@nxp.com \ --cc=davem@davemloft.net \ --cc=franck.lenormand@nxp.com \ --cc=herbert@gondor.apana.org.au \ --cc=iuliana.prodan@nxp.com \ --cc=linux-crypto@vger.kernel.org \ --cc=linux-imx@nxp.com \ --cc=linux-kernel@vger.kernel.org \ --cc=silvano.dininno@nxp.com \ --subject='Re: [PATCH 2/4] crypto: caam - fix use-after-free KASAN issue for AEAD algorithms' \ /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
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).