mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 09:16:29 +00:00
wireguard: update to 0.0.20171122 to 0.0.20171127
This is a double bump. Changes 0.0.20171122: * chacha20poly1305: fast primitives from Andy Polyakov Samuel Neves and I have spent considerable time and headaches porting, reworking, and partially rewriting Andy's optimized implementations of ChaCha20 and Poly1305. We now support the following: On x86_64: - Poly1305: integer unit - ChaCha20: SSSE3 - HChaCha20: SSSE3 - Poly1305: AVX - ChaCha20: AVX2 - Poly1305: AVX2 - ChaCha20: AVX512 - Poly1305: AVX512 On ARM: - Poly1305: integer unit - ChaCha20: NEON - Poly1305: NEON On ARM64: - Poly1305: integer unit - ChaCha20: NEON - Poly1305: NEON On MIPS64: - Poly1305: integer unit All others: - ChaCha20: generic C - Poly1305: generic C This is a pretty substantial amount of new handrolled assembly. It will perhaps MURDER KITTENS, so please tread lightly with this snapshot and adjust expectations accordingly. I'm looking forward to quickly fixing any issues folks find while testing. Performance-wise, this should see increases all around. The biggest speedups will be on ARM and ARM64, but x86_64 and MIPS64 should also see modest speed improvements too, especially on Skylake systems supporting AVX512. * chacha20poly1305: add more test vectors, some of which are weird Test vectors are pretty important, so we added more to catch odd edge cases using the following butcher's code: from cryptography.hazmat.primitives.ciphers.aead import ChaCha20Poly1305 import os def encode_blob(blob): a = "" for i in blob: a += "\\x" + hex(i)[2:] return a enc = [ ] dec = [ ] def make_vector(plen, adlen): key = os.urandom(32) nonce = os.urandom(8) p = os.urandom(plen) ad = os.urandom(adlen) c = ChaCha20Poly1305(key).encrypt(nonce=bytes(4) + nonce, data=p, associated_data=ad) out = "{\n" out += "\t.key\t= \"" + encode_blob(key) + "\",\n" out += "\t.nonce\t= \"" + encode_blob(nonce) + "\",\n" out += "\t.assoc\t= \"" + encode_blob(ad) + "\",\n" out += "\t.alen\t= " + str(len(ad)) + ",\n" out += "\t.input\t= \"" + encode_blob(p) + "\",\n" out += "\t.ilen\t= " + str(len(p)) + ",\n" out += "\t.result\t= \"" + encode_blob(c) + "\"\n" out += "}" enc.append(out) out = "{\n" out += "\t.key\t= \"" + encode_blob(key) + "\",\n" out += "\t.nonce\t= \"" + encode_blob(nonce) + "\",\n" out += "\t.assoc\t= \"" + encode_blob(ad) + "\",\n" out += "\t.alen\t= " + str(len(ad)) + ",\n" out += "\t.input\t= \"" + encode_blob(c) + "\",\n" out += "\t.ilen\t= " + str(len(c)) + ",\n" out += "\t.result\t= \"" + encode_blob(p) + "\"\n" out += "}" dec.append(out) make_vector(0, 0) make_vector(0, 8) make_vector(1, 8) make_vector(1, 0) make_vector(129, 7) make_vector(256, 0) make_vector(512, 0) make_vector(513, 9) make_vector(1024, 16) make_vector(1933, 7) make_vector(2011, 63) print("======== encryption vectors ========") print(", ".join(enc)) print("\n\n\n======== decryption vectors ========") print(", ".join(dec)) * wg-quick: document localhost exception and v6 rule Probably a "kill switch" wants this too: -m addrtype ! --dst-type LOCAL so that basic local services can continue to work. * selftest: allowedips: randomized test mutex update * allowedips: do not write out of bounds * device: uninitialize socket first in destruction * tools: tighten up strtoul parsing Small fixups. * qemu: update kernel * qemu: use unprefixed strip when not cross-compiling Fedora/Redhat doesn't ship with a prefixed strip, and we don't need to use it anyway when we're not cross compiling, so don't. * compat: 3.16.50 got proper rt6_get_cookie * compat: stable finally backported fix * compat: new kernels have netlink fixes * compat: fix compilation with PaX Usual set of compatibility updates. * curve25519-neon: compile in thumb mode In thumb mode, it's not possible to use sp as an operand of and, so we have to muck around with r3 as a scratch register. * socket: only free socket after successful creation of new When an interface is down, the socket port can change freely. A socket will be allocated when the interface comes up, and if a socket can't be allocated, the interface doesn't come up. However, a socket port can change while the interface is up. In this case, if a new socket with a new port cannot be allocated, it's important to keep the interface in a consistent state. The choices are either to bring down the interface or to preserve the old socket. This patch implements the latter. * global: switch from timeval to timespec This gets us nanoseconds instead of microseconds, which is better, and we can do this pretty much without freaking out existing userspace, which doesn't actually make use of the nano/microseconds field. The below test program shows that this won't break existing sizes: zx2c4@thinkpad ~ $ cat a.c void main() { puts(sizeof(struct timeval) == sizeof(struct timespec) ? "success" : "failure"); } zx2c4@thinkpad ~ $ gcc a.c -m64 && ./a.out success zx2c4@thinkpad ~ $ gcc a.c -m32 && ./a.out success Changes 0.0.20171127: * compat: support timespec64 on old kernels * compat: support AVX512BW+VL by lying * compat: fix typo and ranges * compat: support 4.15's netlink and barrier changes * poly1305-avx512: requires AVX512F+VL+BW Numerous compat fixes which should keep us supporting 3.10-4.15-rc1. * blake2s: AVX512F+VL implementation * blake2s: tweak avx512 code * blake2s: hmac space optimization Another terrific submission from Samuel Neves: we now have an implementation of Blake2s using AVX512, which is extremely fast. * allowedips: optimize * allowedips: simplify * chacha20: directly assign constant and initial state Small performance tweaks. * tools: fix removing preshared keys * qemu: use netfilter.org https site * qemu: take shared lock for untarring Small bug fixes. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
3cd02db567
commit
62b5917526
@ -39,8 +39,8 @@ ENV KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VE
|
||||
ENV KERNEL_SHA256_SUMS=https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
|
||||
ENV KERNEL_PGP2_SIGN=https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.sign
|
||||
|
||||
ENV WIREGUARD_VERSION=0.0.20171111
|
||||
ENV WIREGUARD_SHA256=d9347786a9406ac276d86321ca64aadb1f0639cb0582c6e0519c634cf6e81157
|
||||
ENV WIREGUARD_VERSION=0.0.20171127
|
||||
ENV WIREGUARD_SHA256=5e0a93cccce70e5758ddebaaa94d3df74cb664f592895efbd43dc6171ee5b25b
|
||||
ENV WIREGUARD_URL=https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${WIREGUARD_VERSION}.tar.xz
|
||||
|
||||
# We copy the entire directory. This copies some unneeded files, but
|
||||
|
Loading…
Reference in New Issue
Block a user