* [PATCH] crypto: vmac - Handle unaligned input in vmac_update
@ 2024-12-26 17:00 Atharva Tiwari
2024-12-26 19:05 ` Eric Biggers
2024-12-27 1:33 ` Herbert Xu
0 siblings, 2 replies; 4+ messages in thread
From: Atharva Tiwari @ 2024-12-26 17:00 UTC (permalink / raw)
Cc: evepolonium, Herbert Xu, David S. Miller, linux-crypto,
linux-kernel
The `vmac_update` function previously assumed that `p` was aligned,
which could lead to misaligned memory accesses when processing blocks.
This patch resolves the issue by,
introducing a temporary buffer to ensure alignment.
Changes include:
- Allocating a temporary buffer (`__le64 *data`) to store aligned blocks.
- Using `get_unaligned_le64` to safely read data into the temporary buffer.
- Iteratively processing blocks with the `vhash_blocks` function.
- Properly freeing the allocated temporary buffer after processing.
Signed-off-by: Atharva Tiwari <evepolonium@gmail.com>
---
crypto/vmac.c | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/crypto/vmac.c b/crypto/vmac.c
index 2ea384645ecf..513fbd5bc581 100644
--- a/crypto/vmac.c
+++ b/crypto/vmac.c
@@ -518,9 +518,19 @@ static int vmac_update(struct shash_desc *desc, const u8 *p, unsigned int len)
if (len >= VMAC_NHBYTES) {
n = round_down(len, VMAC_NHBYTES);
- /* TODO: 'p' may be misaligned here */
- vhash_blocks(tctx, dctx, (const __le64 *)p, n / VMAC_NHBYTES);
- p += n;
+ const u8 *end = p + n;
+ const uint16_t num_blocks = VMAC_NHBYTES/sizeof(__le64);
+ __le64 *data = kmalloc(num_blocks * sizeof(__le64), GFP_KERNEL);
+
+ while (p < end) {
+ for (unsigned short i = 0; i < num_blocks; i++) {
+ data[i] = get_unaligned_le64(p + i * sizeof(__le64));
+ }
+
+ vhash_blocks(tctx, dctx, data, 1);
+ p += VMAC_NHBYTES;
+ }
+ kfree(data);
len -= n;
}
--
2.39.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] crypto: vmac - Handle unaligned input in vmac_update
2024-12-26 17:00 [PATCH] crypto: vmac - Handle unaligned input in vmac_update Atharva Tiwari
@ 2024-12-26 19:05 ` Eric Biggers
2024-12-26 19:49 ` Eric Biggers
2024-12-27 1:33 ` Herbert Xu
1 sibling, 1 reply; 4+ messages in thread
From: Eric Biggers @ 2024-12-26 19:05 UTC (permalink / raw)
To: Atharva Tiwari; +Cc: Herbert Xu, David S. Miller, linux-crypto, linux-kernel
On Thu, Dec 26, 2024 at 10:30:49PM +0530, Atharva Tiwari wrote:
> The `vmac_update` function previously assumed that `p` was aligned,
> which could lead to misaligned memory accesses when processing blocks.
> This patch resolves the issue by,
> introducing a temporary buffer to ensure alignment.
>
> Changes include:
> - Allocating a temporary buffer (`__le64 *data`) to store aligned blocks.
> - Using `get_unaligned_le64` to safely read data into the temporary buffer.
> - Iteratively processing blocks with the `vhash_blocks` function.
> - Properly freeing the allocated temporary buffer after processing.
>
> Signed-off-by: Atharva Tiwari <evepolonium@gmail.com>
Are you using vmac for something? As far as I know it is unused upstream, and
we should just remove it instead.
- Eric
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] crypto: vmac - Handle unaligned input in vmac_update
2024-12-26 19:05 ` Eric Biggers
@ 2024-12-26 19:49 ` Eric Biggers
0 siblings, 0 replies; 4+ messages in thread
From: Eric Biggers @ 2024-12-26 19:49 UTC (permalink / raw)
To: Atharva Tiwari; +Cc: Herbert Xu, David S. Miller, linux-crypto, linux-kernel
On Thu, Dec 26, 2024 at 11:05:07AM -0800, Eric Biggers wrote:
> On Thu, Dec 26, 2024 at 10:30:49PM +0530, Atharva Tiwari wrote:
> > The `vmac_update` function previously assumed that `p` was aligned,
> > which could lead to misaligned memory accesses when processing blocks.
> > This patch resolves the issue by,
> > introducing a temporary buffer to ensure alignment.
> >
> > Changes include:
> > - Allocating a temporary buffer (`__le64 *data`) to store aligned blocks.
> > - Using `get_unaligned_le64` to safely read data into the temporary buffer.
> > - Iteratively processing blocks with the `vhash_blocks` function.
> > - Properly freeing the allocated temporary buffer after processing.
> >
> > Signed-off-by: Atharva Tiwari <evepolonium@gmail.com>
>
> Are you using vmac for something? As far as I know it is unused upstream, and
> we should just remove it instead.
>
I strongly suspect this was just to address the TODO in the source code, and
this would be a good time to finally remove vmac
(https://lore.kernel.org/linux-crypto/20241226194309.27733-1-ebiggers@kernel.org)
from the kernel's museum of cryptographic algorithms. But let me know if you're
in fact actually using it, and if so for what. Thanks!
- Eric
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] crypto: vmac - Handle unaligned input in vmac_update
2024-12-26 17:00 [PATCH] crypto: vmac - Handle unaligned input in vmac_update Atharva Tiwari
2024-12-26 19:05 ` Eric Biggers
@ 2024-12-27 1:33 ` Herbert Xu
1 sibling, 0 replies; 4+ messages in thread
From: Herbert Xu @ 2024-12-27 1:33 UTC (permalink / raw)
To: Atharva Tiwari; +Cc: David S. Miller, linux-crypto, linux-kernel
On Thu, Dec 26, 2024 at 10:30:49PM +0530, Atharva Tiwari wrote:
> The `vmac_update` function previously assumed that `p` was aligned,
> which could lead to misaligned memory accesses when processing blocks.
> This patch resolves the issue by,
> introducing a temporary buffer to ensure alignment.
>
> Changes include:
> - Allocating a temporary buffer (`__le64 *data`) to store aligned blocks.
> - Using `get_unaligned_le64` to safely read data into the temporary buffer.
> - Iteratively processing blocks with the `vhash_blocks` function.
> - Properly freeing the allocated temporary buffer after processing.
>
> Signed-off-by: Atharva Tiwari <evepolonium@gmail.com>
> ---
> crypto/vmac.c | 16 +++++++++++++---
> 1 file changed, 13 insertions(+), 3 deletions(-)
>
> diff --git a/crypto/vmac.c b/crypto/vmac.c
> index 2ea384645ecf..513fbd5bc581 100644
> --- a/crypto/vmac.c
> +++ b/crypto/vmac.c
> @@ -518,9 +518,19 @@ static int vmac_update(struct shash_desc *desc, const u8 *p, unsigned int len)
>
> if (len >= VMAC_NHBYTES) {
> n = round_down(len, VMAC_NHBYTES);
> - /* TODO: 'p' may be misaligned here */
> - vhash_blocks(tctx, dctx, (const __le64 *)p, n / VMAC_NHBYTES);
> - p += n;
> + const u8 *end = p + n;
> + const uint16_t num_blocks = VMAC_NHBYTES/sizeof(__le64);
> + __le64 *data = kmalloc(num_blocks * sizeof(__le64), GFP_KERNEL);
> +
> + while (p < end) {
> + for (unsigned short i = 0; i < num_blocks; i++) {
> + data[i] = get_unaligned_le64(p + i * sizeof(__le64));
> + }
This is not what I meant by using get_unaligned_le64. I meant
replacing the actual 64-bit accesses within vhash_blocks with
get_unaligned_le64.
Cheers,
--
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] 4+ messages in thread
end of thread, other threads:[~2024-12-27 1:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-26 17:00 [PATCH] crypto: vmac - Handle unaligned input in vmac_update Atharva Tiwari
2024-12-26 19:05 ` Eric Biggers
2024-12-26 19:49 ` Eric Biggers
2024-12-27 1:33 ` Herbert Xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox