summaryrefslogtreecommitdiffstatshomepage
path: root/README.md (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-02-23contrib: add wg-json utilityJason A. Donenfeld2-0/+59
2017-02-23tools: fix bash completion spacesJason A. Donenfeld2-5/+13
2017-02-23tools: add wg show [interface] dumpJason A. Donenfeld3-5/+51
2017-02-23tools: give "off" value for fwmarkJason A. Donenfeld4-5/+19
2017-02-23wg-quick: allow config files without trailing newlineJason A. Donenfeld1-1/+1
2017-02-23socket: do not try to create v6 socket when disabledJason A. Donenfeld2-0/+10
2017-02-21device: disable ICMP redirectsJason A. Donenfeld1-1/+30
The xfrm layer does this by checking for secpath, but we don't use secpath, so instead we have to jigger the config value ourselves. This is nearly always desired, since this is often how a wheel-spoke VPN works. There's very little use case for redirects with wireguard. This should be reverted if we ever move the test directly into ip_forward in net/ipv4/ip_forward.c near the call to ip_rt_send_redirect.
2017-02-20extract-keys: respect compat directivesJason A. Donenfeld1-0/+4
2017-02-14version: bump snapshot0.0.20170214Jason A. Donenfeld2-2/+2
2017-02-14Revert "main: add `wg` type alias"Jason A. Donenfeld1-2/+1
This reverts commit b4f93ace76b1065ab08fd5596f31a0971b848eea.
2017-02-14Makefile: add module-install targetJason A. Donenfeld1-1/+5
2017-02-14wg-quick: unquote fwmark for bash 4.3Jason A. Donenfeld1-1/+1
2017-02-13version: bump snapshot0.0.20170213Jason A. Donenfeld2-2/+2
2017-02-13create-patch: be sure it's actually after NETFILTERJason A. Donenfeld1-1/+1
2017-02-13Kconfig: can be a moduleJason A. Donenfeld1-2/+2
2017-02-13tools: wg-quick: set LC_ALL for consistent regexJason A. Donenfeld1-0/+1
2017-02-13socket: enable setting of fwmarkJason A. Donenfeld11-25/+80
2017-02-13main: add `wg` type aliasJason A. Donenfeld1-1/+2
2017-02-13device: shorter workqueue names to fit in psJason A. Donenfeld1-2/+2
2017-02-13socket: general ephemeral ports instead of name-based portsJason A. Donenfeld2-56/+19
2017-02-13tools: wg-quick: support v6 dual stackJason A. Donenfeld1-7/+18
2017-02-13compat: backport siphash & dst_cache from mainlineJason A. Donenfeld15-327/+991
2017-02-07socket: synchronize net on socket tear downJason A. Donenfeld1-0/+1
2017-02-07tools: remove key for any empty fileJason A. Donenfeld2-25/+18
Rather than just using /dev/null to mean key removal, match on any empty file, so that this interface is cross platform.
2017-02-07tools: setconf should remove existing pskJason A. Donenfeld1-0/+3
2017-02-07timers: use simpler uninit sync techniqueJason A. Donenfeld4-38/+25
2017-01-23timers: use setup_timer macro helperJason A. Donenfeld1-20/+5
2017-01-19tools: wg-quick: recommend using resolvconf in exclusive modeJason A. Donenfeld1-1/+1
2017-01-15tools: man: recommend correct portJason A. Donenfeld2-2/+2
2017-01-15curve25519: do everything on the stackJason A. Donenfeld1-171/+0
With MIPS now supporting a separate IRQ stack, and with these changes being backported into OpenWRT (and likely the stable mainline releases), we no longer need to kmalloc more space for temporary variables.
2017-01-15version: bump snapshot0.0.20170115Jason A. Donenfeld2-2/+2
2017-01-15tools: wg-quick: parse IPv6 endpoints correctlyJason A. Donenfeld1-1/+1
2017-01-15ratelimiter: 800ms too fast, decrease to 2s sustained rateJason A. Donenfeld1-2/+2
2017-01-13Use __read_mostly attribute when possibleJason A. Donenfeld4-9/+9
2017-01-12config: useless newlineJason A. Donenfeld1-2/+0
2017-01-11tools: wg-quick: better removal of suppress_prefix ruleJason A. Donenfeld1-1/+1
2017-01-10Update copyrightJason A. Donenfeld72-73/+73
2017-01-10uapi: use sockaddr union instead of sockaddr_storageJason A. Donenfeld5-26/+27
2017-01-10uapi: use flag instead of C bitfield for portabilityJason A. Donenfeld3-28/+32
2017-01-10tools: ipc: read from socket incrementallyJason A. Donenfeld2-43/+49
2017-01-10tools: error on short ret readsJason A. Donenfeld1-0/+4
2017-01-10uapi: add missing userspace headersJames Tucker1-0/+2
Signed-off-by: James Tucker <jftucker@gmail.com>
2017-01-09tools: wg-quick: enforce good permissionsJason A. Donenfeld2-1/+3
2017-01-05tools: add installation note for distrosJason A. Donenfeld1-0/+5
2017-01-05version: bump snapshot0.0.20170105Jason A. Donenfeld2-2/+2
2017-01-05tools: remove DESTDIR for autodetectionChristian Hesse1-3/+3
DESTDIR is always empty, no need to check anything there. Check the main system instead. Signed-off-by: Christian Hesse <mail@eworm.de>
2017-01-05tools: add systemd unit and auto-detectionJason A. Donenfeld5-31/+66
2017-01-05tools: add makefile instructionsJason A. Donenfeld2-1/+38
2017-01-05tools: add wg-quickJason A. Donenfeld8-337/+430
This is based on wg-config, but is even easier to use, and now makes our full tools suite.
2017-01-04tools: add bash completion for wg(8)Jason A. Donenfeld2-2/+96