2021-03-02 08:24:45 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
kernel: 5.4: import wireguard backport
Rather than using the clunky, old, slower wireguard-linux-compat out of
tree module, this commit does a patch-by-patch backport of upstream's
wireguard to 5.4. This specific backport is in widespread use, being
part of SUSE's enterprise kernel, Oracle's enterprise kernel, Google's
Android kernel, Gentoo's distro kernel, and probably more I've forgotten
about. It's definately the "more proper" way of adding wireguard to a
kernel than the ugly compat.h hell of the wireguard-linux-compat repo.
And most importantly for OpenWRT, it allows using the same module
configuration code for 5.10 as for 5.4, with no need for bifurcation.
These patches are from the backport tree which is maintained in the
open here: https://git.zx2c4.com/wireguard-linux/log/?h=backport-5.4.y
I'll be sending PRs to update this as needed.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2021-02-19 13:29:04 +00:00
|
|
|
From: Eric Biggers <ebiggers@google.com>
|
|
|
|
Date: Sun, 17 Nov 2019 23:21:29 -0800
|
2021-03-02 08:24:45 +00:00
|
|
|
Subject: [PATCH] crypto: chacha_generic - remove unnecessary setkey()
|
kernel: 5.4: import wireguard backport
Rather than using the clunky, old, slower wireguard-linux-compat out of
tree module, this commit does a patch-by-patch backport of upstream's
wireguard to 5.4. This specific backport is in widespread use, being
part of SUSE's enterprise kernel, Oracle's enterprise kernel, Google's
Android kernel, Gentoo's distro kernel, and probably more I've forgotten
about. It's definately the "more proper" way of adding wireguard to a
kernel than the ugly compat.h hell of the wireguard-linux-compat repo.
And most importantly for OpenWRT, it allows using the same module
configuration code for 5.10 as for 5.4, with no need for bifurcation.
These patches are from the backport tree which is maintained in the
open here: https://git.zx2c4.com/wireguard-linux/log/?h=backport-5.4.y
I'll be sending PRs to update this as needed.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2021-02-19 13:29:04 +00:00
|
|
|
functions
|
|
|
|
|
|
|
|
commit 2043323a799a660bc84bbee404cf7a2617ec6157 upstream.
|
|
|
|
|
|
|
|
Use chacha20_setkey() and chacha12_setkey() from
|
|
|
|
<crypto/internal/chacha.h> instead of defining them again in
|
|
|
|
chacha_generic.c.
|
|
|
|
|
|
|
|
Signed-off-by: Eric Biggers <ebiggers@google.com>
|
|
|
|
Acked-by: Ard Biesheuvel <ardb@kernel.org>
|
|
|
|
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
|
|
|
|
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
|
|
|
|
---
|
|
|
|
crypto/chacha_generic.c | 18 +++---------------
|
|
|
|
1 file changed, 3 insertions(+), 15 deletions(-)
|
|
|
|
|
|
|
|
--- a/crypto/chacha_generic.c
|
|
|
|
+++ b/crypto/chacha_generic.c
|
|
|
|
@@ -37,18 +37,6 @@ static int chacha_stream_xor(struct skci
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
-static int crypto_chacha20_setkey(struct crypto_skcipher *tfm, const u8 *key,
|
|
|
|
- unsigned int keysize)
|
|
|
|
-{
|
|
|
|
- return chacha_setkey(tfm, key, keysize, 20);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static int crypto_chacha12_setkey(struct crypto_skcipher *tfm, const u8 *key,
|
|
|
|
- unsigned int keysize)
|
|
|
|
-{
|
|
|
|
- return chacha_setkey(tfm, key, keysize, 12);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static int crypto_chacha_crypt(struct skcipher_request *req)
|
|
|
|
{
|
|
|
|
struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
|
|
|
|
@@ -91,7 +79,7 @@ static struct skcipher_alg algs[] = {
|
|
|
|
.max_keysize = CHACHA_KEY_SIZE,
|
|
|
|
.ivsize = CHACHA_IV_SIZE,
|
|
|
|
.chunksize = CHACHA_BLOCK_SIZE,
|
|
|
|
- .setkey = crypto_chacha20_setkey,
|
|
|
|
+ .setkey = chacha20_setkey,
|
|
|
|
.encrypt = crypto_chacha_crypt,
|
|
|
|
.decrypt = crypto_chacha_crypt,
|
|
|
|
}, {
|
|
|
|
@@ -106,7 +94,7 @@ static struct skcipher_alg algs[] = {
|
|
|
|
.max_keysize = CHACHA_KEY_SIZE,
|
|
|
|
.ivsize = XCHACHA_IV_SIZE,
|
|
|
|
.chunksize = CHACHA_BLOCK_SIZE,
|
|
|
|
- .setkey = crypto_chacha20_setkey,
|
|
|
|
+ .setkey = chacha20_setkey,
|
|
|
|
.encrypt = crypto_xchacha_crypt,
|
|
|
|
.decrypt = crypto_xchacha_crypt,
|
|
|
|
}, {
|
|
|
|
@@ -121,7 +109,7 @@ static struct skcipher_alg algs[] = {
|
|
|
|
.max_keysize = CHACHA_KEY_SIZE,
|
|
|
|
.ivsize = XCHACHA_IV_SIZE,
|
|
|
|
.chunksize = CHACHA_BLOCK_SIZE,
|
|
|
|
- .setkey = crypto_chacha12_setkey,
|
|
|
|
+ .setkey = chacha12_setkey,
|
|
|
|
.encrypt = crypto_xchacha_crypt,
|
|
|
|
.decrypt = crypto_xchacha_crypt,
|
|
|
|
}
|