* [PATCH net-next v2] net: tls: Pass union tls_crypto_context pointer to memzero_explicit
@ 2024-07-08 7:27 Simon Horman
2024-07-09 3:15 ` Jakub Kicinski
2024-07-09 18:30 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Simon Horman @ 2024-07-08 7:27 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet, Paolo Abeni, Jakub Kicinski
Cc: Boris Pismenny, John Fastabend, Przemek Kitszel, netdev
Pass union tls_crypto_context pointer, rather than struct
tls_crypto_info pointer, to memzero_explicit().
The address of the pointer is the same before and after.
But the new construct means that the size of the dereferenced pointer type
matches the size being zeroed. Which aids static analysis.
As reported by Smatch:
.../tls_main.c:842 do_tls_setsockopt_conf() error: memzero_explicit() 'crypto_info' too small (4 vs 56)
No functional change intended.
Compile tested only.
Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Signed-off-by: Simon Horman <horms@kernel.org>
---
Changes in v2:
- Added Reviewed-by tag from Przemek Kitszel
- Updated to use sizeof(*crypto_ctx), as suggested by Przemek Kitszel
- Link to v1: https://lore.kernel.org/r/20240705-tls-memzero-v1-1-0496871cfe9b@kernel.org
---
net/tls/tls_main.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/net/tls/tls_main.c b/net/tls/tls_main.c
index 90b7f253d363..6b4b9f2749a6 100644
--- a/net/tls/tls_main.c
+++ b/net/tls/tls_main.c
@@ -616,6 +616,7 @@ static int do_tls_setsockopt_conf(struct sock *sk, sockptr_t optval,
struct tls_crypto_info *alt_crypto_info;
struct tls_context *ctx = tls_get_ctx(sk);
const struct tls_cipher_desc *cipher_desc;
+ union tls_crypto_context *crypto_ctx;
int rc = 0;
int conf;
@@ -623,13 +624,15 @@ static int do_tls_setsockopt_conf(struct sock *sk, sockptr_t optval,
return -EINVAL;
if (tx) {
- crypto_info = &ctx->crypto_send.info;
+ crypto_ctx = &ctx->crypto_send;
alt_crypto_info = &ctx->crypto_recv.info;
} else {
- crypto_info = &ctx->crypto_recv.info;
+ crypto_ctx = &ctx->crypto_recv;
alt_crypto_info = &ctx->crypto_send.info;
}
+ crypto_info = &crypto_ctx->info;
+
/* Currently we don't support set crypto info more than one time */
if (TLS_CRYPTO_INFO_READY(crypto_info))
return -EBUSY;
@@ -710,7 +713,7 @@ static int do_tls_setsockopt_conf(struct sock *sk, sockptr_t optval,
return 0;
err_crypto_info:
- memzero_explicit(crypto_info, sizeof(union tls_crypto_context));
+ memzero_explicit(crypto_ctx, sizeof(*crypto_ctx));
return rc;
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v2] net: tls: Pass union tls_crypto_context pointer to memzero_explicit
2024-07-08 7:27 [PATCH net-next v2] net: tls: Pass union tls_crypto_context pointer to memzero_explicit Simon Horman
@ 2024-07-09 3:15 ` Jakub Kicinski
2024-07-09 18:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Jakub Kicinski @ 2024-07-09 3:15 UTC (permalink / raw)
To: Simon Horman
Cc: David S. Miller, Eric Dumazet, Paolo Abeni, Boris Pismenny,
John Fastabend, Przemek Kitszel, netdev
On Mon, 08 Jul 2024 08:27:19 +0100 Simon Horman wrote:
> Pass union tls_crypto_context pointer, rather than struct
> tls_crypto_info pointer, to memzero_explicit().
>
> The address of the pointer is the same before and after.
> But the new construct means that the size of the dereferenced pointer type
> matches the size being zeroed. Which aids static analysis.
>
> As reported by Smatch:
>
> .../tls_main.c:842 do_tls_setsockopt_conf() error: memzero_explicit() 'crypto_info' too small (4 vs 56)
>
> No functional change intended.
> Compile tested only.
>
> Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
> Signed-off-by: Simon Horman <horms@kernel.org>
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v2] net: tls: Pass union tls_crypto_context pointer to memzero_explicit
2024-07-08 7:27 [PATCH net-next v2] net: tls: Pass union tls_crypto_context pointer to memzero_explicit Simon Horman
2024-07-09 3:15 ` Jakub Kicinski
@ 2024-07-09 18:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-07-09 18:30 UTC (permalink / raw)
To: Simon Horman
Cc: davem, edumazet, pabeni, kuba, borisp, john.fastabend,
przemyslaw.kitszel, netdev
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 08 Jul 2024 08:27:19 +0100 you wrote:
> Pass union tls_crypto_context pointer, rather than struct
> tls_crypto_info pointer, to memzero_explicit().
>
> The address of the pointer is the same before and after.
> But the new construct means that the size of the dereferenced pointer type
> matches the size being zeroed. Which aids static analysis.
>
> [...]
Here is the summary with links:
- [net-next,v2] net: tls: Pass union tls_crypto_context pointer to memzero_explicit
https://git.kernel.org/netdev/net-next/c/0d9e699d3421
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-09 18:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-08 7:27 [PATCH net-next v2] net: tls: Pass union tls_crypto_context pointer to memzero_explicit Simon Horman
2024-07-09 3:15 ` Jakub Kicinski
2024-07-09 18:30 ` patchwork-bot+netdevbpf
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).