Development discussion of WireGuard
 help / color / mirror / Atom feed
From: Eddie <stunnel@attglobal.net>
To: WireGuard mailing list <wireguard@lists.zx2c4.com>
Subject: wg-quick broken by iproute2 update
Date: Wed, 27 Jun 2018 19:47:40 -0700	[thread overview]
Message-ID: <8b1fc545-1422-2b85-a1c1-9acaf79dacff@attglobal.net> (raw)

Hi,

I just updated both a RHEL and a CentOS system from 7 -> 7.5. Following 
this, when running wg-quick, the routing tables are not updated 
correctly.  Both systems are running iproute.x86_64-4.11.0-14.el7, but 
from different repositories and are definitely different builds as they 
install to different sbin libraries.

Here's what I'm seeing:

[eddieath@oc8361880017 ~]$ sudo ip rule list
0:    from all lookup local
32766:    from all lookup main
32767:    from all lookup default
[eddieath@oc8361880017 ~]$
[eddieath@oc8361880017 ~]$ sudo wg-quick up wg0
[#] ip link add wg0 type wireguard
[#] wg setconf wg0 /dev/fd/63
[#] ip address add 192.168.0.11/24 dev wg0
[#] ip link set mtu 1420 dev wg0
[#] ip link set wg0 up
[#] ip -4 route add 0.0.0.0/0 dev wg0 table 51820
[#] ip -4 rule add not fwmark 51820 table 51820
[#] ip -4 rule add table main suppress_prefixlength 0
[eddieath@oc8361880017 ~]$
[eddieath@oc8361880017 ~]$ sudo ip rule list
0:    from all lookup local
32764:    from all lookup main
32765:    not from all fwmark 0xca6c lookup 51820
32766:    from all lookup main
32767:    from all lookup default
[eddieath@oc8361880017 ~]$

Note the "suppress_prefixlength 0" has been dropped, which really breaks 
the routing with a "normal" main ahead of table 51820. Following this, 
when running the "down", the duplicated table is not removed, as there 
is no match searching for "suppress_prefixlength 0":

[eddieath@oc8361880017 ~]$ sudo wg-quick down wg0
[#] wg showconf wg0
sync: ignoring all arguments
[#] ip -4 rule delete table 51820
[#] ip link delete dev wg0
[eddieath@oc8361880017 ~]$ sudo ip rule list
0:    from all lookup local
32764:    from all lookup main
32766:    from all lookup main
32767:    from all lookup default
[eddieath@oc8361880017 ~]$

I've confirmed this on both systems and also that the behaviour is 
purely within ip, and not anything that wg-quick is doing:

[eddieath@oc8361880017 ~]$ sudo ip rule list
0:    from all lookup local
32766:    from all lookup main
32767:    from all lookup default
[eddieath@oc8361880017 ~]$ sudo ip -4 rule add table main 
suppress_prefixlength 0
[eddieath@oc8361880017 ~]$ sudo ip rule list
0:    from all lookup local
32765:    from all lookup main
32766:    from all lookup main
32767:    from all lookup default
[eddieath@oc8361880017 ~]$

Cheers.

                 reply	other threads:[~2018-06-28  2:42 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8b1fc545-1422-2b85-a1c1-9acaf79dacff@attglobal.net \
    --to=stunnel@attglobal.net \
    --cc=wireguard@lists.zx2c4.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).