diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-08-05 16:44:06 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-08-05 16:44:06 +0200 |
commit | febb09698c76d2789598c966f6e21b89b8576745 (patch) | |
tree | f429d8daf04512a44d995f4ab563e4988a87c2e9 /src/netlink.c | |
parent | 5bae8e4460e150d218b046302d7c231580bf5ec7 (diff) |
netlink: skip peers with invalid keys
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/netlink.c')
-rw-r--r-- | src/netlink.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/netlink.c b/src/netlink.c index eb94f4d..0805a26 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -413,10 +413,16 @@ static int set_peer(struct wg_device *wg, struct nlattr **attrs) } up_read(&wg->static_identity.lock); - ret = -ENOMEM; peer = wg_peer_create(wg, public_key, preshared_key); - if (!peer) + if (IS_ERR(peer)) { + /* Similar to the above, if the key is invalid, we skip + * it without fanfare, so that services don't need to + * worry about doing key validation themselves. + */ + ret = PTR_ERR(peer) == -EKEYREJECTED ? 0 : PTR_ERR(peer); + peer = NULL; goto out; + } /* Take additional reference, as though we've just been * looked up. */ |