aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-05-14 19:29:59 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-05-17 18:07:42 +0200
commit5c6d7d99744cbbfe27b79f47657e4d338a004e99 (patch)
tree5022d8b49f61f27499c26c6b0453a64da3fd659d /src/tools
parentKbuild: optimize debug builds too (diff)
downloadwireguard-monolithic-historical-5c6d7d99744cbbfe27b79f47657e4d338a004e99.tar.xz
wireguard-monolithic-historical-5c6d7d99744cbbfe27b79f47657e4d338a004e99.zip
tools: check for proto error on set too
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/ipc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/ipc.c b/src/tools/ipc.c
index ed18128..1c13e17 100644
--- a/src/tools/ipc.c
+++ b/src/tools/ipc.c
@@ -45,7 +45,8 @@ struct inflatable_buffer {
static int check_version_magic(struct wgdevice *device, int ret)
{
if (ret == -EPROTO || (!ret && device->version_magic != WG_API_VERSION_MAGIC)) {
- fprintf(stderr, "This program was built for a different version of WireGuard than\nwhat is currently running. Either this version of wg(8) is out\nof date, or the currently loaded WireGuard module is out of date.\nIf you have just updated your WireGuard installation, you may have\nforgotten to unload the previous running WireGuard module. Try\nrunning `rmmod wireguard` as root, and then try re-adding the device\nand trying again.\n\n");
+ fprintf(stderr, "This program was built for a different version of WireGuard than\nwhat is currently running. Either this version of wg(8) is out\nof date, or the currently loaded WireGuard module is out of date.\nIf you have just updated your WireGuard installation, you may have\nforgotten to unload the previous running WireGuard module. Try\nrunning `rmmod wireguard` as root, and then try re-adding the interface\nand trying again.\n\n");
+ errno = EPROTO;
return -EPROTO;
}
return ret;
@@ -196,7 +197,7 @@ static int userspace_set_device(struct wgdevice *dev)
out:
close(fd);
errno = -ret;
- return (int)ret;
+ return check_version_magic(dev, ret);
}
#define READ_BYTES(bytes) ({ \
@@ -413,7 +414,7 @@ static int kernel_set_device(struct wgdevice *dev)
memcpy(&ifreq.ifr_name, dev->interface, IFNAMSIZ);
ifreq.ifr_name[IFNAMSIZ - 1] = 0;
dev->version_magic = WG_API_VERSION_MAGIC;
- return do_ioctl(WG_SET_DEVICE, &ifreq);
+ return check_version_magic(dev, do_ioctl(WG_SET_DEVICE, &ifreq));
}
static int kernel_get_device(struct wgdevice **dev, const char *interface)