aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/netlink.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-11-11 12:24:51 +0900
committerJason A. Donenfeld <Jason@zx2c4.com>2017-11-11 12:24:51 +0900
commit46f8cbc99734c77564a3b925a993fcba43da38be (patch)
treebcfdd56b8c5e13463229fa8e39c7fca45a1e9498 /src/netlink.c
parenttools: remove ioctl cruft (diff)
downloadwireguard-monolithic-historical-46f8cbc99734c77564a3b925a993fcba43da38be.tar.xz
wireguard-monolithic-historical-46f8cbc99734c77564a3b925a993fcba43da38be.zip
curve25519: reject deriving from NULL private keys
These aren't actually valid 25519 points pre-normalization, and doing this is required to make unsetting private keys based on all zeros.
Diffstat (limited to 'src/netlink.c')
-rw-r--r--src/netlink.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/netlink.c b/src/netlink.c
index ba9e41b..f2e724a 100644
--- a/src/netlink.c
+++ b/src/netlink.c
@@ -421,15 +421,17 @@ static int set_device(struct sk_buff *skb, struct genl_info *info)
if (info->attrs[WGDEVICE_A_PRIVATE_KEY] && nla_len(info->attrs[WGDEVICE_A_PRIVATE_KEY]) == NOISE_PUBLIC_KEY_LEN) {
struct wireguard_peer *peer, *temp;
- u8 public_key[NOISE_PUBLIC_KEY_LEN] = { 0 }, *private_key = nla_data(info->attrs[WGDEVICE_A_PRIVATE_KEY]);
- /* We remove before setting, to prevent race, which means doing two 25519-genpub ops. */
- __attribute((unused)) bool unused = curve25519_generate_public(public_key, private_key);
+ u8 public_key[NOISE_PUBLIC_KEY_LEN], *private_key = nla_data(info->attrs[WGDEVICE_A_PRIVATE_KEY]);
- peer = pubkey_hashtable_lookup(&wg->peer_hashtable, public_key);
- if (peer) {
- peer_put(peer);
- peer_remove(peer);
+ /* We remove before setting, to prevent race, which means doing two 25519-genpub ops. */
+ if (curve25519_generate_public(public_key, private_key)) {
+ peer = pubkey_hashtable_lookup(&wg->peer_hashtable, public_key);
+ if (peer) {
+ peer_put(peer);
+ peer_remove(peer);
+ }
}
+
noise_set_static_identity_private_key(&wg->static_identity, private_key);
list_for_each_entry_safe(peer, temp, &wg->peer_list, peer_list) {
if (!noise_precompute_static_static(peer))