aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/external-tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-06-01go test: correct tai64n and formattingJason A. Donenfeld1-26/+26
2017-06-01external-tests: add keepalive packetJason A. Donenfeld2-0/+23
2017-06-01compat: remove padata hotplug codeJason A. Donenfeld1-149/+0
It's different on different kernel versions, and we're not using it anyway, so it's easiest to just get rid of it, rather than having another ifdef maze.
2017-06-01curve25519: use more standard label convention in asmJason A. Donenfeld2-24/+24
2017-06-01device: do-while assignment styleJason A. Donenfeld1-1/+1
2017-06-01receive: trim incoming packets to IP header lengthJason A. Donenfeld3-2/+17
2017-06-01go test: properly pad messageJason A. Donenfeld1-2/+2
2017-05-31timers: queue up killing ephemerals only if not alreadyJason A. Donenfeld1-1/+1
2017-05-31config: add new line for styleJason A. Donenfeld1-0/+1
2017-05-31version: bump snapshot0.0.20170531Jason A. Donenfeld2-2/+2
2017-05-31timers: reset retry-attempt counter when not retryingJason A. Donenfeld4-7/+10
2017-05-31timers: the completion of a handshake also is on key confirmationJason A. Donenfeld2-2/+3
2017-05-31timers: rework handshake reply control flowJason A. Donenfeld1-9/+8
2017-05-31debug: print interface name in dmesgJason A. Donenfeld11-50/+52
2017-05-31compat: remove warning for < 4.1Jason A. Donenfeld1-2/+0
It still is sort of experimental, I suppose, especially this part in the udp_tunnel drop-in: skb_orphan(skb); sk_mem_reclaim(sk); It seems like sometimes this won't do what we want, but it's hard to diagnose exactly what's happening. In any case, nobody paid attention to that warning anyway, so let's just get rid of it.
2017-05-31config: it's faster to memcpy than strncpyJason A. Donenfeld1-2/+1
IFNAMSIZ is 16, so this is two instructions on 64-bit.
2017-05-31routingtable: Remove unnecessary check in node_placement()Sultan Alsawaf1-2/+1
node_placement() is always given the address of a stack variable for rnode, so there's no need to check if rnode is null. Signed-off-by: Sultan Alsawaf <sultanxda@gmail.com>
2017-05-31data: enable BH during parallel crypto on ARM/NEONJason A. Donenfeld1-0/+12
padata disables it, but in order to use SIMD on ARM, we can't be in an interrupt. We only do this on ARM since it adds jitter to the performance.
2017-05-31curve25519: add NEON versions for ARMJason A. Donenfeld3-29/+2160
2017-05-31curve25519: align the basepoint to 32 bytesJason A. Donenfeld1-2/+2
2017-05-31curve25519: actually, do some things on heap sometimesJason A. Donenfeld1-0/+170
This reverts commit 42dd5bd87e418275203dd6644b6b6b0cc310d4d9.
2017-05-31tools: allow creating device with no peersJason A. Donenfeld1-4/+0
2017-05-31config: do not error out when getting if no peersJason A. Donenfeld1-0/+1
2017-05-30device: keep going when share_check failsJason A. Donenfeld1-4/+4
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com>
2017-05-30timers: fix typo in commentJason A. Donenfeld1-1/+1
Suggested-by: Peter Wu <peter@lekensteyn.nl>
2017-05-30rust test: add icmp pingJason A. Donenfeld2-10/+63
2017-05-30rust test: convert screech test to snowJake McGinty2-39/+31
2017-05-30style: spaces after for loopsJason A. Donenfeld7-15/+15
2017-05-30peer: use iterator macro instead of callbackJason A. Donenfeld6-77/+73
2017-05-30noise: precompute static-static ECDH operationJason A. Donenfeld4-15/+30
2017-05-30noise: no need to store ephemeral public keyJason A. Donenfeld2-7/+6
2017-05-30handshake: process in parallelJason A. Donenfeld7-35/+61
2017-05-30compat: ship padata if kernel doesn't have itJason A. Donenfeld3-11/+1055
2017-05-30man: update wg-quick(8) to show Debian resolvconf braindamageJason A. Donenfeld1-2/+2
While OpenResolv supports explicit ordering directives such as `-m` and exclusivity directives such as `-x`, Debian's own resolvconf supports none of this, instead using a hard coded list of interface name templates for determining ordering. While trying to emulate `-x` is difficult [*], we can at least try to mostly emulate `-m 0` by masquerading as a `tun*` interface to resolvconf. Ugly, but it works. [*] One heavy handed way of emulating `-x` would be something like: # echo nameserver 8.8.8.8 > /etc/resolv.conf.wg0-exclusive # mount --bind -o ro /etc/resolv.conf.wg0-exclusive /etc/resolv.conf # rm -f /etc/resolv.conf.wg0-exclusive This in practice works quite well, but is a bit heavy to put in a man page. It also doesn't "stack" well. For example, if we simply run `umount /etc/resolv.conf`, how do we know which resolv.conf entry we're unmounting?
2017-05-30chacha20poly1305: add NEON versions for ARM and ARM64Jason A. Donenfeld6-12/+1048
2017-05-21chacha20poly1305: move constants to rodataJason A. Donenfeld5-14/+27
2017-05-18wg-quick: use src routing for default routes in v6Jason A. Donenfeld1-3/+11
Otherwise, traffic is sent with the IP address of a different interface, and then packets don't actually get delivered.
2017-05-18man: fix psk mention in wg-quick man pageJason A. Donenfeld1-2/+2
2017-05-17version: bump snapshot0.0.20170517Jason A. Donenfeld2-2/+2
2017-05-17tools: opt-in globally to GNU-isms to keep the BSDs happyJason A. Donenfeld2-2/+1
2017-05-17tools: support text-based ipcJason A. Donenfeld8-131/+321
2017-05-17tools: check for proto error on set tooJason A. Donenfeld1-3/+4
2017-05-17Kbuild: optimize debug builds tooJason A. Donenfeld1-1/+1
2017-05-17tests: check for stats counter increasesJason A. Donenfeld1-0/+4
The kernel API for this has changed a lot, so this test is important to ensure our compat layer is doing the right thing.
2017-05-17qemu: new location for test kernelsJason A. Donenfeld1-3/+3
2017-05-17tools: stricter key file readingJason A. Donenfeld1-31/+40
2017-05-17jerry-rig: symlinks are better for tree patchingJason A. Donenfeld3-5/+6
Use a symlink instead of lots of ../../.. Suggested-by: Benedikt Morbach <benedikt.morbach@googlemail.com>
2017-05-17noise: redesign preshared key modeJason A. Donenfeld19-225/+224
2017-05-17chacha20poly1305: implement vectorized hchacha20Jason A. Donenfeld2-21/+157
2017-05-17qemu: new packages and better debuggingJason A. Donenfeld2-12/+13