From: "Jason A. Donenfeld" <Jason@zx2c4.com>
To: Helge Deller <deller@kernel.org>
Cc: wireguard@lists.zx2c4.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-parisc@vger.kernel.org
Subject: Re: [PATCH] wireguard: allowedips: Prevent unaligned memory accesses
Date: Wed, 3 Jul 2024 20:11:14 +0200 [thread overview]
Message-ID: <ZoWUQho7noWwAqrF@zx2c4.com> (raw)
In-Reply-To: <ZoV6Q6lWgVRqe7eh@p100>
Hi Helge,
On Wed, Jul 03, 2024 at 06:20:19PM +0200, Helge Deller wrote:
> On the parisc platform the Linux kernel issues kernel warnings because
> swap_endian() tries to load a 128-bit IPv6 address from an unaligned
> memory location:
> Kernel: unaligned access to 0x55f4688c in wg_allowedips_insert_v6+0x2c/0x80 [wireguard] (iir 0xf3010df)
> Kernel: unaligned access to 0x55f46884 in wg_allowedips_insert_v6+0x38/0x80 [wireguard] (iir 0xf2010dc)
>
> Avoid such unaligned memory accesses by instead using the
> get_unaligned_be64() helper macro.
>
> Signed-off-by: Helge Deller <deller@gmx.de>
>
> diff --git a/drivers/net/wireguard/allowedips.c b/drivers/net/wireguard/allowedips.c
> index 0ba714ca5185..daf967130b72 100644
> --- a/drivers/net/wireguard/allowedips.c
> +++ b/drivers/net/wireguard/allowedips.c
> @@ -15,8 +15,8 @@ static void swap_endian(u8 *dst, const u8 *src, u8 bits)
> if (bits == 32) {
> *(u32 *)dst = be32_to_cpu(*(const __be32 *)src);
> } else if (bits == 128) {
> - ((u64 *)dst)[0] = be64_to_cpu(((const __be64 *)src)[0]);
> - ((u64 *)dst)[1] = be64_to_cpu(((const __be64 *)src)[1]);
> + ((u64 *)dst)[0] = get_unaligned_be64(src);
Ahh, right, in6_addr only has a u32 member, not a u64 member, so that's
potentially unaligned.
> + ((u64 *)dst)[1] = get_unaligned_be64(src[8]);
src[8] is not correct, however. (This crashes; did you test it?) I've
fixed it up and put it in the wireguard tree:
https://git.kernel.org/pub/scm/linux/kernel/git/zx2c4/wireguard-linux.git/commit/?id=ad3d9eef8e1b304b243e63124581f97c88ce7ff9
I'll push this up to net.git soon. Thanks for the patch.
Jason
prev parent reply other threads:[~2024-07-03 18:11 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-03 16:20 [PATCH] wireguard: allowedips: Prevent unaligned memory accesses Helge Deller
2024-07-03 18:11 ` Jason A. Donenfeld [this message]
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=ZoWUQho7noWwAqrF@zx2c4.com \
--to=jason@zx2c4.com \
--cc=deller@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-parisc@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=wireguard@lists.zx2c4.com \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox