* [GIT PULL] Crypto Fixes for 7.0
@ 2026-04-03 0:24 Herbert Xu
2026-04-03 4:12 ` pr-tracker-bot
0 siblings, 1 reply; 8+ messages in thread
From: Herbert Xu @ 2026-04-03 0:24 UTC (permalink / raw)
To: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
Linux Crypto Mailing List
Hi Linus:
The following changes since commit 5c52607c43c397b79a9852ce33fc61de58c3645c:
crypto: ccp - Fix leaking the same page twice (2026-03-14 14:01:37 +0900)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 tags/v7.0-p4
for you to fetch changes up to e02494114ebf7c8b42777c6cd6982f113bfdbec7:
crypto: authencesn - Do not place hiseq at end of dst for out-of-place decryption (2026-03-31 17:11:48 +0900)
----------------------------------------------------------------
This push contains the following changes:
- Add missing async markers to tegra.
- Fix long hmac key DMA handling in caam.
- Fix spurious ENOSPC errors in deflate.
- Fix SG chaining in af_alg.
- Do not use in-place process in algif_aead.
- Fix out-of-place destination overflow in authencesn.
----------------------------------------------------------------
Eric Biggers (1):
crypto: tegra - Add missing CRYPTO_ALG_ASYNC
Herbert Xu (2):
crypto: algif_aead - Revert to operating out-of-place
crypto: authencesn - Do not place hiseq at end of dst for out-of-place decryption
Horia Geantă (2):
crypto: caam - fix DMA corruption on long hmac keys
crypto: caam - fix overflow on long hmac keys
Mikulas Patocka (1):
crypto: deflate - fix spurious -ENOSPC
Norbert Szetei (1):
crypto: af-alg - fix NULL pointer dereference in scatterwalk
crypto/af_alg.c | 53 +++++--------------
crypto/algif_aead.c | 100 +++++++----------------------------
crypto/algif_skcipher.c | 6 +--
crypto/authencesn.c | 50 +++++++++++-------
crypto/deflate.c | 11 ++--
drivers/crypto/caam/caamalg_qi2.c | 3 +-
drivers/crypto/caam/caamhash.c | 3 +-
drivers/crypto/tegra/tegra-se-aes.c | 11 ++--
drivers/crypto/tegra/tegra-se-hash.c | 30 ++++++-----
include/crypto/if_alg.h | 5 +-
10 files changed, 102 insertions(+), 170 deletions(-)
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 8+ messages in thread* [GIT PULL] Crypto Fixes for 7.0
@ 2026-04-12 5:42 Herbert Xu
2026-04-12 17:45 ` pr-tracker-bot
0 siblings, 1 reply; 8+ messages in thread
From: Herbert Xu @ 2026-04-12 5:42 UTC (permalink / raw)
To: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
Linux Crypto Mailing List
Hi Linus:
The following changes since commit e02494114ebf7c8b42777c6cd6982f113bfdbec7:
crypto: authencesn - Do not place hiseq at end of dst for out-of-place decryption (2026-03-31 17:11:48 +0900)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 tags/v7.0-p5
for you to fetch changes up to 3d14bd48e3a77091cbce637a12c2ae31b4a1687c:
crypto: algif_aead - Fix minimum RX size check for decryption (2026-04-12 13:38:19 +0800)
----------------------------------------------------------------
This push contains the following changes:
- Enforce rx socket buffer limit in af_alg.
- Fix array overflow in af_alg_pull_tsgl.
- Fix out-of-bounds access when parsing extensions in X.509.
- Fix minimum rx size check in algif_aead.
----------------------------------------------------------------
Douya Le (1):
crypto: af_alg - limit RX SG extraction by receive buffer budget
Herbert Xu (2):
crypto: af_alg - Fix page reassignment overflow in af_alg_pull_tsgl
crypto: algif_aead - Fix minimum RX size check for decryption
Lukas Wunner (1):
X.509: Fix out-of-bounds access when parsing extensions
crypto/af_alg.c | 6 ++++--
crypto/algif_aead.c | 2 +-
crypto/algif_skcipher.c | 5 +++++
crypto/asymmetric_keys/x509_cert_parser.c | 8 ++++----
4 files changed, 14 insertions(+), 7 deletions(-)
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 8+ messages in thread* [GIT PULL] Crypto Fixes for 7.0
@ 2026-03-06 3:01 Herbert Xu
2026-03-06 18:38 ` pr-tracker-bot
2026-03-18 7:50 ` Herbert Xu
0 siblings, 2 replies; 8+ messages in thread
From: Herbert Xu @ 2026-03-06 3:01 UTC (permalink / raw)
To: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
Linux Crypto Mailing List
Hi Linus:
The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f:
Linux 7.0-rc1 (2026-02-22 13:18:59 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git tags/v7.0-p2
for you to fetch changes up to d240b079a37e90af03fd7dfec94930eb6c83936e:
crypto: atmel-sha204a - Fix OOM ->tfm_count leak (2026-02-28 12:53:25 +0900)
----------------------------------------------------------------
This push contains the following changes:
- Fix use-after-free in ccp.
- Fix bug when SEV is disabled in ccp.
- Fix tfm_count leak in atmel-sha204a.
----------------------------------------------------------------
Alper Ak (1):
crypto: ccp - Fix use-after-free on error path
Ashish Kalra (1):
crypto: ccp - allow callers to use HV-Fixed page API when SEV is disabled
Thorsten Blum (1):
crypto: atmel-sha204a - Fix OOM ->tfm_count leak
drivers/crypto/atmel-sha204a.c | 5 +++--
drivers/crypto/ccp/sev-dev-tsm.c | 2 +-
drivers/crypto/ccp/sev-dev.c | 10 ++++------
3 files changed, 8 insertions(+), 9 deletions(-)
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [GIT PULL] Crypto Fixes for 7.0
2026-03-06 3:01 Herbert Xu
@ 2026-03-06 18:38 ` pr-tracker-bot
2026-03-18 7:50 ` Herbert Xu
1 sibling, 0 replies; 8+ messages in thread
From: pr-tracker-bot @ 2026-03-06 18:38 UTC (permalink / raw)
To: Herbert Xu
Cc: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
Linux Crypto Mailing List
The pull request you sent on Fri, 6 Mar 2026 12:01:51 +0900:
> git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git tags/v7.0-p2
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/617f5e9fad91ebddf0b39e5eb5063d22459557e5
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 8+ messages in thread
* [GIT PULL] Crypto Fixes for 7.0
2026-03-06 3:01 Herbert Xu
2026-03-06 18:38 ` pr-tracker-bot
@ 2026-03-18 7:50 ` Herbert Xu
2026-03-18 17:00 ` pr-tracker-bot
1 sibling, 1 reply; 8+ messages in thread
From: Herbert Xu @ 2026-03-18 7:50 UTC (permalink / raw)
To: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
Linux Crypto Mailing List
Hi Linus:
The following changes since commit d240b079a37e90af03fd7dfec94930eb6c83936e:
crypto: atmel-sha204a - Fix OOM ->tfm_count leak (2026-02-28 12:53:25 +0900)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 tags/v7.0-p3
for you to fetch changes up to 5c52607c43c397b79a9852ce33fc61de58c3645c:
crypto: ccp - Fix leaking the same page twice (2026-03-14 14:01:37 +0900)
----------------------------------------------------------------
This push contains the following changes:
- Remove duplicate snp_leak_pages call in ccp.
----------------------------------------------------------------
Guenter Roeck (1):
crypto: ccp - Fix leaking the same page twice
drivers/crypto/ccp/sev-dev.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-04-12 17:46 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-03 0:24 [GIT PULL] Crypto Fixes for 7.0 Herbert Xu
2026-04-03 4:12 ` pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2026-04-12 5:42 Herbert Xu
2026-04-12 17:45 ` pr-tracker-bot
2026-03-06 3:01 Herbert Xu
2026-03-06 18:38 ` pr-tracker-bot
2026-03-18 7:50 ` Herbert Xu
2026-03-18 17:00 ` pr-tracker-bot
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®