Merge branch 'launch-readme-changes' of https://github.com/firezone/firezone into launch-readme-changes

This commit is contained in:
Jason Gong
2021-09-23 18:03:45 -07:00
11 changed files with 41 additions and 23 deletions

View File

@@ -1,3 +1,8 @@
# We're running on a self-hosted runner, so only allow one workflow to run at a
# time.
# XXX: Remove this when self-hosted ephemeral runners are implmented.
concurrency: ci
name: CI
on:
- push

View File

@@ -8,6 +8,7 @@ defmodule FzHttp.Devices do
alias FzHttp.{Devices.Device, Repo, Users.User}
@ipv4_prefix "10.3.2."
@ipv6_prefix "fd00:3:2::"
def list_devices do
Repo.all(Device)
@@ -49,11 +50,15 @@ defmodule FzHttp.Devices do
@ipv4_prefix <> Integer.to_string(device.address)
end
def ipv6_address(%Device{} = device) do
@ipv6_prefix <> Integer.to_string(device.address)
end
def to_peer_list do
for device <- Repo.all(Device) do
%{
public_key: device.public_key,
allowed_ips: ipv4_address(device)
allowed_ips: "#{ipv4_address(device)}/32, #{ipv6_address(device)}/128"
}
end
end

View File

@@ -20,7 +20,7 @@
<td>
<%= live_patch(device.name, to: Routes.device_show_path(@socket, :show, device)) %>
</td>
<td class="code"><%= FzHttp.Devices.ipv4_address(device) %></td>
<td class="code"><%= FzHttp.Devices.ipv4_address(device) %>, <%= FzHttp.Devices.ipv6_address(device) %></td>
<td class="code"><%= device.public_key %></td>
</tr>
<% end %>

View File

@@ -37,7 +37,7 @@ defmodule FzHttpWeb.DeviceLive.Index do
{:ok, device} ->
@events_module.device_created(
device.public_key,
Devices.ipv4_address(device)
{Devices.ipv4_address(device), Devices.ipv6_address(device)}
)
{:noreply,

View File

@@ -33,7 +33,7 @@
<dt>
<strong>Interface IP:</strong>
</dt>
<dd><%= FzHttp.Devices.ipv4_address(@device) %></dd>
<dd><%= FzHttp.Devices.ipv4_address(@device) %>, <%= FzHttp.Devices.ipv6_address(@device) %></dd>
<dt>
<strong>Public key:</strong>
@@ -72,7 +72,7 @@
<pre><code id="wg-conf">
[Interface]
PrivateKey = <%= @device.private_key %>
Address = <%= FzHttp.Devices.ipv4_address(@device) %>
Address = <%= FzHttp.Devices.ipv4_address(@device) %>/32, <%= FzHttp.Devices.ipv6_address(@device) %>/128
DNS = 1.1.1.1, 1.0.0.1
[Peer]

View File

@@ -85,7 +85,7 @@ defmodule FzHttp.DevicesTest do
test "renders all peers", %{device: device} do
assert Devices.to_peer_list() |> List.first() == %{
public_key: device.public_key,
allowed_ips: Devices.ipv4_address(device)
allowed_ips: "#{Devices.ipv4_address(device)}/32, #{Devices.ipv6_address(device)}/128"
}
end
end

View File

@@ -33,8 +33,8 @@ defmodule FzVpn.CLI.Live do
{privkey, pubkey(privkey)}
end
def add_peer(pubkey, ip) do
set("peer #{pubkey} allowed-ips #{ip}")
def add_peer(pubkey, {ipv4, ipv6}) do
set("peer #{pubkey} allowed-ips #{ipv4}/32,#{ipv6}/128")
end
def delete_peer(pubkey) do

View File

@@ -6,8 +6,8 @@ defmodule FzVpn.Config do
# Render peers list into server config
def render(config) do
Enum.join(
for {public_key, ip} <- config do
"peer #{public_key} allowed-ips #{ip}"
for {public_key, {ipv4, ipv6}} <- config do
"peer #{public_key} allowed-ips #{ipv4}/32,#{ipv6}/128"
end,
" "
)

View File

@@ -62,9 +62,9 @@ defmodule FzVpn.Server do
end
@impl GenServer
def handle_cast({:device_created, pubkey, ip}, config) do
cli().add_peer(pubkey, ip)
{:noreply, Map.put(config, pubkey, ip)}
def handle_cast({:device_created, pubkey, inet}, config) do
cli().add_peer(pubkey, inet)
{:noreply, Map.put(config, pubkey, inet)}
end
@doc """

View File

@@ -2,7 +2,7 @@ defmodule FzVpn.ConfigTest do
use ExUnit.Case, async: true
alias FzVpn.Config
@populated_config "peer test-pubkey allowed-ips test-allowed-ips"
@populated_config "peer test-pubkey allowed-ips test-ipv4/32,test-ipv6/128"
describe "render" do
test "renders default config" do
@@ -12,7 +12,7 @@ defmodule FzVpn.ConfigTest do
end
test "renders populated config" do
config = %{"test-pubkey" => "test-allowed-ips"}
config = %{"test-pubkey" => {"test-ipv4", "test-ipv6"}}
assert Config.render(config) == @populated_config
end

View File

@@ -44,10 +44,18 @@ if wg_exists.status.exitstatus == 1
end
end
execute 'setup_wireguard_ip' do
# XXX: Make this configurable
if_addr = '10.3.2.1/24'
command "ip address replace #{if_addr} dev #{wg_interface}"
execute 'wireguard_ipv4' do
addr = '10.3.2.1/24'
command "ip address replace #{addr} dev #{wg_interface}"
end
execute 'wireguard_ipv6' do
addr = 'fd00:3:2::1/120'
command "ip -6 address replace #{addr} dev #{wg_interface}"
end
execute 'set_mtu' do
command "ip link set mtu 1420 up dev #{wg_interface}"
end
execute 'set_wireguard_interface_private_key' do
@@ -59,15 +67,15 @@ execute 'set_listen_port' do
command "#{wg_path} set #{wg_interface} listen-port #{listen_port}"
end
execute 'set_mtu' do
command "ip link set mtu 1420 up dev #{wg_interface}"
end
route '10.3.2.0/24' do
# XXX: Make this configurable
device wg_interface
end
route 'fd00:3:2::0/120' do
device wg_interface
end
replace_or_add "IPv4 packet forwarding" do
path "/etc/sysctl.conf"
pattern "^#net.ipv4.ip_forward=1"