projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d6213b
)
crypto: chacha20poly1305 - Annotate struct chachapoly_ctx with __counted_by()
author
Thorsten Blum
<thorsten.blum@toblux.com>
Mon, 5 Aug 2024 22:11:30 +0000
(
00:11
+0200)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Sat, 17 Aug 2024 05:55:49 +0000
(13:55 +0800)
Add the __counted_by compiler attribute to the flexible array member
salt to improve access bounds-checking via CONFIG_UBSAN_BOUNDS and
CONFIG_FORTIFY_SOURCE.
Reviewed-by: Kees Cook <kees@kernel.org>
Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/chacha20poly1305.c
patch
|
blob
|
blame
|
history
diff --git
a/crypto/chacha20poly1305.c
b/crypto/chacha20poly1305.c
index 9e4651330852b51415bf43700d56d831fb2c8725..d740849f1c1915028b7db82ad07f921415db565b 100644
(file)
--- a/
crypto/chacha20poly1305.c
+++ b/
crypto/chacha20poly1305.c
@@
-27,7
+27,7
@@
struct chachapoly_ctx {
struct crypto_ahash *poly;
/* key bytes we use for the ChaCha20 IV */
unsigned int saltlen;
- u8 salt[];
+ u8 salt[]
__counted_by(saltlen)
;
};
struct poly_req {