aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/config.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-05-24 19:18:04 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-05-30 18:07:28 +0200
commit6e6986e17d0dc99903c5134c7c0c8e78fbec7831 (patch)
treef1a571f1c04e021113abb3572dc31b44401a7634 /src/config.c
parentnoise: precompute static-static ECDH operation (diff)
downloadwireguard-monolithic-historical-6e6986e17d0dc99903c5134c7c0c8e78fbec7831.tar.xz
wireguard-monolithic-historical-6e6986e17d0dc99903c5134c7c0c8e78fbec7831.zip
peer: use iterator macro instead of callback
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c32
1 files changed, 18 insertions, 14 deletions
diff --git a/src/config.c b/src/config.c
index c3fe154..48afae1 100644
--- a/src/config.c
+++ b/src/config.c
@@ -8,20 +8,15 @@
#include "hashtables.h"
#include "peer.h"
#include "uapi.h"
-
-static int clear_peer_endpoint_src(struct wireguard_peer *peer, void *data)
-{
- socket_clear_peer_endpoint_src(peer);
- return 0;
-}
-
static int set_device_port(struct wireguard_device *wg, u16 port)
{
+ struct wireguard_peer *peer, *temp;
socket_uninit(wg);
wg->incoming_port = port;
if (!(netdev_pub(wg)->flags & IFF_UP))
return 0;
- peer_for_each_unlocked(wg, clear_peer_endpoint_src, NULL);
+ peer_for_each (wg, peer, temp, false)
+ socket_clear_peer_endpoint_src(peer);
return socket_init(wg);
}
@@ -133,6 +128,7 @@ int config_set_device(struct wireguard_device *wg, void __user *user_device)
{
int ret;
size_t i, offset;
+ struct wireguard_peer *peer, *temp;
struct wgdevice in_device;
void __user *user_peer;
bool modified_static_identity = false;
@@ -152,7 +148,8 @@ int config_set_device(struct wireguard_device *wg, void __user *user_device)
if (in_device.fwmark || (!in_device.fwmark && (in_device.flags & WGDEVICE_REMOVE_FWMARK))) {
wg->fwmark = in_device.fwmark;
- peer_for_each_unlocked(wg, clear_peer_endpoint_src, NULL);
+ peer_for_each (wg, peer, temp, false)
+ socket_clear_peer_endpoint_src(peer);
}
if (in_device.port) {
@@ -183,8 +180,10 @@ int config_set_device(struct wireguard_device *wg, void __user *user_device)
}
if (modified_static_identity) {
- if (peer_for_each_unlocked(wg, noise_precompute_static_static, NULL) < 0)
- noise_set_static_identity_private_key(&wg->static_identity, NULL);
+ peer_for_each (wg, peer, temp, false) {
+ if (!noise_precompute_static_static(peer))
+ peer_remove(peer);
+ }
cookie_checker_precompute_device_keys(&wg->cookie_checker);
}
@@ -242,10 +241,9 @@ static int populate_ipmask(void *ctx, union nf_inet_addr ip, u8 cidr, int family
return ret;
}
-static int populate_peer(struct wireguard_peer *peer, void *ctx)
+static int populate_peer(struct wireguard_peer *peer, struct data_remaining *data)
{
int ret = 0;
- struct data_remaining *data = ctx;
void __user *upeer = data->data;
struct wgpeer out_peer;
struct data_remaining ipmasks_data = { NULL };
@@ -289,6 +287,7 @@ static int populate_peer(struct wireguard_peer *peer, void *ctx)
int config_get_device(struct wireguard_device *wg, void __user *user_device)
{
int ret;
+ struct wireguard_peer *peer, *temp;
struct net_device *dev = netdev_pub(wg);
struct data_remaining peer_data = { NULL };
struct wgdevice out_device;
@@ -330,7 +329,12 @@ int config_get_device(struct wireguard_device *wg, void __user *user_device)
peer_data.out_len = in_device.peers_size;
peer_data.data = user_device + sizeof(struct wgdevice);
- ret = peer_for_each_unlocked(wg, populate_peer, &peer_data);
+
+ peer_for_each (wg, peer, temp, false) {
+ ret = populate_peer(peer, &peer_data);
+ if (ret)
+ break;
+ }
if (ret)
goto out;
out_device.num_peers = peer_data.count;