aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* compat: support 3.18, 3.19, 4.0Jason A. Donenfeld2016-12-264-8/+33
|
* blake2s: cleanupJason A. Donenfeld2016-12-261-9/+4
|
* cookie: optimizeJason A. Donenfeld2016-12-261-29/+11
|
* qemu: 4.10 needs posix timersJason A. Donenfeld2016-12-261-0/+1
|
* tools: rename 'bandwidth' to 'transfer' in outputTomasz Torcz2016-12-232-4/+4
| | | | | 'bandwidth' is a measure of speed, but wg's output shows only the number of bytes transferred. Thus 'transfer' is a better label.
* version: bump snapshot0.0.20161223Jason A. Donenfeld2016-12-232-2/+2
|
* cookies: use xchacha20poly1305 instead of chacha20poly1305Jason A. Donenfeld2016-12-238-43/+204
| | | | | This allows us to precompute the blake2s calls and save cycles, since hchacha is fast.
* tools: do not use AI_ADDRCONFIGJason A. Donenfeld2016-12-231-2/+1
| | | | | | | | | | Some people run wg(8) using hard coded v6 addresses before interfaces have v6 addresses, causing getaddrinfo to fail. Since AI_ADDRCONFIG doesn't actualy change the sorting, but just the queries made, we don't really need AI_ADDRCONFIG anyway, since we're always only taking the first result. Reported-by: Benedikt Morbach <benedikt.morbach@googlemail.com>
* tools: allowed-ips is easier to parse with spaces instead of ", "Jason A. Donenfeld2016-12-231-1/+1
|
* routing-table: simplify and mask reparented rootJason A. Donenfeld2016-12-231-16/+9
|
* config: allow removing multiple peers at onceJason A. Donenfeld2016-12-231-1/+2
|
* version: bump snapshot0.0.20161218Jason A. Donenfeld2016-12-182-2/+2
|
* siphash: preserve endian-ness for quick helperJason A. Donenfeld2016-12-161-5/+9
| | | | This fixes errors on big endian machines.
* ratelimiter: remember newline in errorJason A. Donenfeld2016-12-161-2/+2
|
* version: bump snapshot0.0.20161216Jason A. Donenfeld2016-12-162-2/+2
|
* hashtables: use counter and int to ensure forward progressJason A. Donenfeld2016-12-162-17/+2
|
* messages: increase header by 3 bytes for alignmentJason A. Donenfeld2016-12-164-15/+22
|
* siphash: update against upstream submissionJason A. Donenfeld2016-12-1615-187/+403
|
* tools: fix latest-handshake typo in documentationJason A. Donenfeld2016-12-162-2/+2
| | | | Reported-by: Dan Lüdtke <mail@danrl.com>
* ratelimiter: drop family from action for 4.10Jason A. Donenfeld2016-12-161-2/+0
| | | | | This was never actually used, and now that member of the struct has been removed all together from the kernel.
* tests: avoid non-strict writes via printfJason A. Donenfeld2016-12-161-11/+8
|
* noise: update commentsJason A. Donenfeld2016-12-161-8/+8
|
* types: enforce consistencyJason A. Donenfeld2016-12-164-24/+26
|
* config: cleanupsJason A. Donenfeld2016-12-161-33/+19
|
* peer: don't use sockaddr_storage to reduce memory usageJason A. Donenfeld2016-12-139-30/+37
|
* hashtables: ensure we get 64-bits of randomnessJason A. Donenfeld2016-12-121-1/+7
|
* messages: remove unused constantsJason A. Donenfeld2016-12-121-2/+0
|
* siphash: useless riceJason A. Donenfeld2016-12-121-3/+1
|
* crypto: use kernel's bitops functionsJason A. Donenfeld2016-12-112-18/+15
|
* blake2s: move self tests to correct directoryJason A. Donenfeld2016-12-112-554/+555
|
* global: move to consistent use of uN instead of uintN_t for kernel codeJason A. Donenfeld2016-12-1123-419/+419
|
* receive: simplify ip header checking logicJason A. Donenfeld2016-12-111-15/+2
|
* device: ensure icmp skb length check is done for v6Jason A. Donenfeld2016-12-111-6/+2
|
* device: allocate tstats in newlinkJason A. Donenfeld2016-12-111-27/+20
| | | | | Every place else does this in ndo_init, but this seems completely redundant, so to simplify things, I'm moving it into newlink.
* device: clean up xmit error pathJason A. Donenfeld2016-12-113-14/+18
|
* main: consistent linesJason A. Donenfeld2016-12-111-6/+1
|
* device: simplify device_init, since it only returns -EEXISTJason A. Donenfeld2016-12-111-6/+1
|
* device: dellink is already implictly unregister_netdevice_queueJason A. Donenfeld2016-12-111-10/+1
|
* device: disable ipv6 auto address generationJason A. Donenfeld2016-12-111-2/+8
|
* device: rc -> retJason A. Donenfeld2016-12-111-3/+3
|
* version: bump snapshot0.0.20161209Jason A. Donenfeld2016-12-092-2/+2
|
* cookie: kill redundant forward declarationJason A. Donenfeld2016-12-091-2/+0
|
* compat: build dep errors belong here, since it's out of tree specificJason A. Donenfeld2016-12-092-8/+10
|
* socket: clear src address when retrying handshakeJason A. Donenfeld2016-12-093-0/+15
|
* device: traditional if is cleaner than switch for this smallJason A. Donenfeld2016-12-091-3/+1
| | | | This also generates identical assembly.
* device: make suspend code conditional on CONFIG_PM_SLEEPJason A. Donenfeld2016-12-092-0/+10
| | | | | This isn't actually neccessary, since there are no-op stubs for these functions, but the MIPS people don't want any unneccessary bloat.
* main: cleaner error teardownJason A. Donenfeld2016-12-091-12/+12
|
* device: cleaner error teardownJason A. Donenfeld2016-12-091-43/+33
|
* timers: add random jitter to handshake retryJason A. Donenfeld2016-12-092-1/+2
|
* device: clear all peer ephemeral keys on sleepJason A. Donenfeld2016-12-092-2/+35
|