aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/zinc/chacha20/chacha20-x86_64-glue.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-29zinc: arm64: use cpu_get_elf_hwcap accessor for 5.2Jason A. Donenfeld3-2/+6
2019-05-29kbuild: account for recent upstream changesJason A. Donenfeld2-11/+11
Apparently cdd750bfb1f76fe9be8cfb53cbe77b2e811081ab changed things, so we fall back onto this hack. Reported-by: Alex Xu <alex@alxu.ca>
2019-05-29timers: add jitter on ack failure reinitiationJason A. Donenfeld1-2/+4
2019-05-29qemu: build iproute2 with libmnl supportJason A. Donenfeld1-1/+1
2019-05-29wg-quick: specify protocol to ip(8), because of inconsistenciesJason A. Donenfeld1-3/+7
2019-05-29netlink: use new strict length types in policy for 5.2Jason A. Donenfeld3-14/+29
Reported-by: Bruno Wolff III <bruno@wolff.to>
2019-05-29wg-quick: look up existing routes properlyJason A. Donenfeld1-1/+1
This was never really correct, and then 5.1 broke it entirely. Reported-by: piraty1@inbox.ru
2019-05-29qemu: use newer iproute2 and kernelJason A. Donenfeld1-9/+4
2019-05-29socket: set ignore_df=1 on xmitJoe Holden2-0/+6
This allows the kernel to generate ipv6 fragments. Apply the same to ipv4 for consistency. Signed-off-by: Joe Holden <jwh@zorins.us>
2019-04-23wg-quick: make darwin and freebsd path search strict like linuxJason A. Donenfeld2-2/+4
2019-04-23wg-quick: freebsd: workaround SIOCGIFSTATUS race in FreeBSD kernelJason A. Donenfeld1-9/+22
2019-04-14compat: udp_tunnel: force cast sk_data_readyJason A. Donenfeld1-1/+3
Reference: https://lists.zx2c4.com/pipermail/wireguard/2019-April/004081.html
2019-04-06version: bump snapshot0.0.20190406Jason A. Donenfeld2-2/+2
2019-04-06allowedips: initialize list head when removing intermediate nodesJason A. Donenfeld2-1/+5
Otherwise if this list item is later reused, we'll crash on list poison or worse. Also, add a version of Mimka's reproducer to netns.sh to catch these types of bugs in the future. Reported-by: Mimka <mikma.wg@lists.m7n.se>
2019-03-29compat: backport skb_mark_not_on_listJason A. Donenfeld1-0/+7
2019-03-27blake2s: remove outlen parameter from finalJason A. Donenfeld4-12/+11
2019-03-27blake2s: simplifySamuel Neves2-40/+12
Signed-off-by: Samuel Neves <sneves@dei.uc.pt>
2019-03-25qemu: set framewarn 1280 for 64bit and 1024 for 32bitJason A. Donenfeld14-4/+14
2019-03-25device: use skb accessor functions where possibleJason A. Donenfeld1-2/+2
Suggested-by: David Miller <davem@davemloft.net>
2019-03-25allowedips: do not use __always_inlineJason A. Donenfeld1-9/+9
DaveM doth forbid. Suggested-by: David Miller <davem@davemloft.net>
2019-03-25peerlookup: rename from hashtablesJason A. Donenfeld7-9/+9
2019-03-23tools: avoid unneccessary next_peer assignments in sort_peers()Luis Ressel1-2/+1
Signed-off-by: Luis Ressel <aranea@aixah.de>
2019-03-23wg-quick: add 'strip' subcommandLuis Ressel5-5/+50
`wg-quick strip` prints the config file to stdout after stripping it of all wg-quick-specific options. This enables tricks such as `wg addconf $DEV <(wg-quick strip $DEV)`. Signed-off-by: Luis Ressel <aranea@aixah.de>
2019-03-23tools: warn if an AllowedIP has a nonzero host partLuis Ressel1-0/+34
Signed-off-by: Luis Ressel <aranea@aixah.de>
2019-03-18wg-quick: freebsd: export TMPDIR when restoring and don't make emptyJason A. Donenfeld1-1/+2
Otherwise mktemp doesn't see it, and if it's empty we wind up in /.
2019-03-17global: the _bh variety of rcu helpers have been unifiedJason A. Donenfeld7-12/+57
2019-03-14compat: nf_nat_core.h was removed upstreamBruno Wolff III1-0/+2
In d2c5c103b133 ("netfilter: nat: remove nf_nat_l3proto.h and nf_nat_core.h"). Signed-off-by: Bruno Wolff III <bruno@wolff.to>
2019-02-28tools: add support for HaikuAlexander von Gluck IV1-0/+3
Signed-off-by: Alexander von Gluck IV <kallisti5@unixzen.com>
2019-02-28tools: genkey: account for short reads of /dev/urandomJason A. Donenfeld2-18/+35
Apparently Haiku has a misbehaving /dev/urandom. While we're at it, simplify the function signature to completely succeed or completely fail and make sure the caller checks the result. Reported-by: Alexander von Gluck IV <kallisti5@unixzen.com> Nitpicked-by: Aaron Jones <aaronmdjones@gmail.com>
2019-02-28wg-quick: freebsd: rebreak interface loopback, while fixing localhostJason A. Donenfeld1-1/+1
The commit 7c833642 ("wg-quick: freebsd: allow loopback to work") was supposed to make things better, but actually it just started sending legitimate localhost traffic over the WireGuard interface, which is really quite bad. This reverts commit 7c833642dfa342218602ab18e7091e86408d2982. Reported-by: Matt Smith <matt.xtaz@gmail.com>
2019-02-27version: bump snapshot0.0.20190227Jason A. Donenfeld2-2/+2
2019-02-27queueing: net-next has changed signature of skb_probe_transport_headerJason A. Donenfeld2-1/+7
2019-02-26allowedips: maintain per-peer list of allowedipsJason A. Donenfeld6-160/+129
This makes `wg show` and `wg showconf` and the like significantly faster, since we don't have to iterate through every node of the trie for every single peer. It also makes netlink cursor resumption much less problematic, since we're just iterating through a list, rather than having to save a traversal stack.
2019-02-25peer: only synchronize_rcu_bh and traverse trie once when removing all peersJason A. Donenfeld2-20/+42
2019-02-25netlink: don't remove allowed ips for new peersJason A. Donenfeld1-0/+3
This causes needless traversal of the trie.
2019-02-17Makefile: make the depmod path configurableLuis Ressel1-1/+2
Signed-off-by: Luis Ressel <aranea@aixah.de>
2019-02-17Makefile: don't duplicate code in install and modules-installLuis Ressel1-5/+5
Signed-off-by: Luis Ressel <aranea@aixah.de>
2019-02-17compat: backport ALIGN_DOWNJason A. Donenfeld1-0/+7
2019-02-17compat: ipv6_stub is sometimes nullJason A. Donenfeld1-1/+1
On ancient kernels, ipv6_stub is sometimes null in cases where IPv6 has been disabled with a command line flag or other failures. Reported-by: Anatoli <me@anatoli.ws>
2019-02-08tools: c_acc doesn't need to be initializedJason A. Donenfeld1-1/+1
2019-02-05tools: fight compiler slightly harderJason A. Donenfeld2-2/+2
2019-02-04chacha20: name enumsJason A. Donenfeld1-2/+2
2019-02-03noise: store clamped key instead of raw keyJason A. Donenfeld9-18/+18
2019-02-03chacha20poly1305: permit unaligned strides on certain platformsJason A. Donenfeld1-18/+14
The map allocations required to fix this are mostly slower than unaligned paths. Reported-by: Louis Sautier <sbraz@gentoo.org>
2019-02-03hashtables: decouple hashtable allocations from the main device allocationSultan Alsawaf9-25/+49
The hashtable allocations are quite large, and cause the device allocation in the net framework to stall sometimes while it tries to find a contiguous region that can fit the device struct: [<0000000000000000>] __switch_to+0x94/0xb8 [<0000000000000000>] __alloc_pages_nodemask+0x764/0x7e8 [<0000000000000000>] kmalloc_order+0x20/0x40 [<0000000000000000>] __kmalloc+0x144/0x1a0 [<0000000000000000>] alloc_netdev_mqs+0x5c/0x368 [<0000000000000000>] rtnl_create_link+0x48/0x180 [<0000000000000000>] rtnl_newlink+0x410/0x708 [<0000000000000000>] rtnetlink_rcv_msg+0x190/0x1f8 [<0000000000000000>] netlink_rcv_skb+0x4c/0xf8 [<0000000000000000>] rtnetlink_rcv+0x30/0x40 [<0000000000000000>] netlink_unicast+0x18c/0x208 [<0000000000000000>] netlink_sendmsg+0x19c/0x348 [<0000000000000000>] sock_sendmsg+0x3c/0x58 [<0000000000000000>] ___sys_sendmsg+0x290/0x2b0 [<0000000000000000>] __sys_sendmsg+0x58/0xa0 [<0000000000000000>] SyS_sendmsg+0x10/0x20 [<0000000000000000>] el0_svc_naked+0x34/0x38 [<0000000000000000>] 0xffffffffffffffff To fix the allocation stalls, decouple the hashtable allocations from the device allocation and allocate the hashtables with kvmalloc's implicit __GFP_NORETRY so that the allocations fall back to vmalloc with little resistance. Signed-off-by: Sultan Alsawaf <sultan@kerneltoast.com>
2019-02-03queueing: more reasonable allocator function conventionJason A. Donenfeld3-4/+4
2019-02-03noise: whiten the nanoseconds portion of the timestampJason A. Donenfeld1-0/+9
This mitigates unrelated sidechannel attacks that think they can turn WireGuard into a useful time oracle.
2019-01-31highlighter: when subtracting char, cast to unsignedJason A. Donenfeld1-2/+2
Windows.
2019-01-30systemd: wg-quick should depend on nss-lookup.targetJason A. Donenfeld1-2/+2
Since wg-quick(8) calls wg(8) which does hostname lookups, we should probably only run this after we're allowed to look up hostnames. Reported-by: Anton Castelli <anton.c42@gmail.com>
2019-01-24tools: remove unused check phony declarationJason A. Donenfeld1-1/+1