svn commit: r494184 - in head/net/wireguard: . files
Bernhard Froehlich
decke at FreeBSD.org
Thu Feb 28 20:12:40 UTC 2019
Author: decke
Date: Thu Feb 28 20:12:38 2019
New Revision: 494184
URL: https://svnweb.freebsd.org/changeset/ports/494184
Log:
net/wireguard: Revert wg-quick change which broke localhost
Reported by: Matt Smith <matt.xtaz at gmail.com>
Obtained from: https://git.zx2c4.com/WireGuard/patch/?id=cba99f16a4ec9a229358ce1ed96080bd5ae04a7e
Added:
head/net/wireguard/files/patch-wg-quick_freebsd.bash (contents, props changed)
Modified:
head/net/wireguard/Makefile
Modified: head/net/wireguard/Makefile
==============================================================================
--- head/net/wireguard/Makefile Thu Feb 28 19:56:36 2019 (r494183)
+++ head/net/wireguard/Makefile Thu Feb 28 20:12:38 2019 (r494184)
@@ -2,6 +2,7 @@
PORTNAME= wireguard
PORTVERSION= 0.0.20190227
+PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= https://git.zx2c4.com/WireGuard/snapshot/
DISTNAME= WireGuard-${PORTVERSION}
Added: head/net/wireguard/files/patch-wg-quick_freebsd.bash
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/wireguard/files/patch-wg-quick_freebsd.bash Thu Feb 28 20:12:38 2019 (r494184)
@@ -0,0 +1,31 @@
+From cba99f16a4ec9a229358ce1ed96080bd5ae04a7e Mon Sep 17 00:00:00 2001
+From: "Jason A. Donenfeld" <Jason at zx2c4.com>
+Date: Thu, 28 Feb 2019 19:03:11 +0100
+Subject: wg-quick: freebsd: rebreak interface loopback, while fixing localhost
+
+The commit 7c833642 ("wg-quick: freebsd: allow loopback to work") was
+supposed to make things better, but actually it just started sending
+legitimate localhost traffic over the WireGuard interface, which is
+really quite bad.
+
+This reverts commit 7c833642dfa342218602ab18e7091e86408d2982.
+---
+ src/tools/wg-quick/freebsd.bash | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/tools/wg-quick/freebsd.bash b/src/tools/wg-quick/freebsd.bash
+index 93f1a3b7..e83dbef0 100755
+--- wg-quick/freebsd.bash
++++ wg-quick/freebsd.bash
+@@ -158,7 +158,7 @@ add_addr() {
+ if [[ $1 == *:* ]]; then
+ cmd ifconfig "$INTERFACE" inet6 "$1" alias
+ else
+- cmd ifconfig "$INTERFACE" inet "$1" 127.0.0.1 alias
++ cmd ifconfig "$INTERFACE" inet "$1" "${1%%/*}" alias
+ fi
+ }
+
+--
+cgit v1.2.1-20-gc37e
+
More information about the svn-ports-head
mailing list