Development discussion of WireGuard
 help / color / mirror / Atom feed
From: John Sager <john@sager.me.uk>
To: wireguard@lists.zx2c4.com
Subject: Re: wg-crypt-wg0 process
Date: Wed, 30 Dec 2020 09:29:11 +0000	[thread overview]
Message-ID: <2e16043e-ddd2-c583-820c-73e476c2eaea@sager.me.uk> (raw)
In-Reply-To: <d56b4194-2b74-b440-c102-3b379daa8194@gmail.com>

The posted script works for me, Xubuntu 20.04 kernel 5.4.0-38-generic 
x86_64. The first time I ran it, it deleted both [wg-crypt-wg0] instances 
but left one kworker process: [kworker/0:0-wg-crypt-wg0]. I then ran it 
again and no wg kernel processes were left.

regards,

John

On 30/12/2020 08:19, Fatih USTA wrote:
> Hi
> 
> I'm playing wireguard with the namespace. I think I caught a litle problem.
> 
> If I delete netns directly, everything is removed, but wg-crypt-wg0 process 
> is still alive.
> 
> root      8127  0.0  0.0      0     0 ?        S<   07:26 0:00 [wg-crypt-wg0]
> root      8143  0.0  0.0      0     0 ?        S<   07:26 0:00 [wg-crypt-wg0]
> root      8449  0.0  0.0      0     0 ?        S<   07:26 0:00 [wg-crypt-wg0]
> root      8454  0.0  0.0      0     0 ?        S<   07:26 0:00 [wg-crypt-wg0]
> 
> If I delete first wireguard interface from the netns, everthing works fine.
> 
> wg_version:        1.0.20201221
> kernel_version:       3.16.85-1
> 
> #!/bin/bash
> 
> case $1 in
>      remove)
>          ip link del dev bridge0 || { echo "Please add first."; exit 1; }
>          ip link del dev veth1
>          ip link del dev veth2
>          #ip netns exec ns1 ip link del dev wg0
>          #ip netns exec ns2 ip link del dev wg0
>          ip netns del ns1
>          ip netns del ns2
>          iptables -D FORWARD -i bridge0 -o bridge0 -j ACCEPT
>          rm -f /tmp/private-ns1 /tmp/private-ns2 /tmp/public-ns1 
> /tmp/public-ns2
>      ;;
>      add)
>          ip link add name bridge0 type bridge || { echo "Please remove 
> first."; exit 1; }
>          ip link set dev bridge0 up
> 
>          ip netns add ns1
>          ip netns add ns2
>          ip link add name veth1 type veth peer name eth0 netns ns1
>          ip link add name veth2 type veth peer name eth0 netns ns2
>          ip link set dev veth1 up master bridge0
>          ip link set dev veth2 up master bridge0
> 
>          ip netns exec ns1 ip link set dev lo up
>          ip netns exec ns1 ip link set dev eth0 up
>          ip netns exec ns1 ip addr add 10.150.150.1/24 dev eth0
> 
>          ip netns exec ns2 ip link set dev lo up
>          ip netns exec ns2 ip link set dev eth0 up
>          ip netns exec ns2 ip addr add 10.150.150.2/24 dev eth0
> 
>          ( umask 0077;
>            wg genkey | \
>            tee /tmp/private-ns1 | \
>            wg pubkey > /tmp/public-ns1
> 
>            wg genkey | \
>            tee /tmp/private-ns2 | \
>            wg pubkey > /tmp/public-ns2
>          )
> 
>          ip netns exec ns1 ip link add name wg0 type wireguard
>          ip netns exec ns1 ip addr add 172.16.1.1/24 dev wg0
> 
>          ip netns exec ns2 ip link add name wg0 type wireguard
>          ip netns exec ns2 ip addr add 172.16.1.2/24 dev wg0
> 
>          ip netns exec ns1 wg set wg0 private-key /tmp/private-ns1 
> listen-port 51820
>          ip netns exec ns1 ip link set wg0 up
> 
>          ip netns exec ns2 wg set wg0 private-key /tmp/private-ns2 
> listen-port 51820
>          ip netns exec ns2 ip link set wg0 up
> 
>          ip netns exec ns1 wg set wg0 peer "$(</tmp/public-ns2)" allowed-ips 
> 172.16.1.0/24 endpoint 10.150.150.2:51820
>          ip netns exec ns2 wg set wg0 peer "$(</tmp/public-ns1)" allowed-ips 
> 172.16.1.0/24 endpoint 10.150.150.1:51820
> 
>          iptables -I FORWARD -i bridge0 -o bridge0 -j ACCEPT
> 
>          ip netns exec ns1 wg
>          ip netns exec ns2 wg
>          ip netns exec ns1 ping -i 0.3 -c 2 172.16.1.2 &>/dev/null && \
>                            echo -e "\n\nWorked" || \
>                            echo -e "\n\nFailed"
>      ;;
>      *)echo "$(basename $0) add|remove" ;;
> esac
> 
> 

  reply	other threads:[~2020-12-30  9:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-30  8:19 Fatih USTA
2020-12-30  9:29 ` John Sager [this message]
2020-12-30 12:39 ` Jason A. Donenfeld
2020-12-31  5:47   ` Fatih USTA

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=2e16043e-ddd2-c583-820c-73e476c2eaea@sager.me.uk \
    --to=john@sager.me.uk \
    --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).