]> git.ipfire.org Git - thirdparty/wireguard-tools.git/commitdiff
wg: check for proto error on set too
authorJason A. Donenfeld <Jason@zx2c4.com>
Sun, 14 May 2017 17:29:59 +0000 (19:29 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Wed, 17 May 2017 16:07:42 +0000 (18:07 +0200)
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
src/ipc.c

index ed1812825e5f53098a5041fe377a266fe96f92f1..1c13e17c1c9c12d2c505edce82a3bd655a52a4a7 100644 (file)
--- a/src/ipc.c
+++ b/src/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)