2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-01-29 20:16:36 +00:00
|
|
|
|
|
|
|
package wgcfg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
all: convert more code to use net/netip directly
perl -i -npe 's,netaddr.IPPrefixFrom,netip.PrefixFrom,' $(git grep -l -F netaddr.)
perl -i -npe 's,netaddr.IPPortFrom,netip.AddrPortFrom,' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPrefix,netip.Prefix,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPort,netip.AddrPort,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IP\b,netip.Addr,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPv6Raw\b,netip.AddrFrom16,g' $(git grep -l -F netaddr. )
goimports -w .
Then delete some stuff from the net/netaddr shim package which is no
longer neeed.
Updates #5162
Change-Id: Ia7a86893fe21c7e3ee1ec823e8aba288d4566cd8
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
2022-07-26 05:14:09 +01:00
|
|
|
"net/netip"
|
2021-01-29 20:16:36 +00:00
|
|
|
"strconv"
|
|
|
|
|
2021-10-28 01:42:33 +01:00
|
|
|
"tailscale.com/types/key"
|
2021-11-11 02:42:16 +00:00
|
|
|
"tailscale.com/types/logger"
|
2021-01-29 20:16:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ToUAPI writes cfg in UAPI format to w.
|
|
|
|
// Prev is the previous device Config.
|
2022-08-30 01:47:52 +01:00
|
|
|
//
|
|
|
|
// Prev is required so that we can remove now-defunct peers without having to
|
|
|
|
// remove and re-add all peers, and so that we can avoid writing information
|
|
|
|
// about peers that have not changed since the previous time we wrote our
|
|
|
|
// Config.
|
2021-11-11 02:42:16 +00:00
|
|
|
func (cfg *Config) ToUAPI(logf logger.Logf, w io.Writer, prev *Config) error {
|
2021-01-29 20:16:36 +00:00
|
|
|
var stickyErr error
|
|
|
|
set := func(key, value string) {
|
|
|
|
if stickyErr != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err := fmt.Fprintf(w, "%s=%s\n", key, value)
|
|
|
|
if err != nil {
|
|
|
|
stickyErr = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setUint16 := func(key string, value uint16) {
|
|
|
|
set(key, strconv.FormatUint(uint64(value), 10))
|
|
|
|
}
|
|
|
|
setPeer := func(peer Peer) {
|
2021-10-28 01:42:33 +01:00
|
|
|
set("public_key", peer.PublicKey.UntypedHexString())
|
2021-01-29 20:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Device config.
|
2021-10-28 01:42:33 +01:00
|
|
|
if !prev.PrivateKey.Equal(cfg.PrivateKey) {
|
|
|
|
set("private_key", cfg.PrivateKey.UntypedHexString())
|
2021-01-29 20:16:36 +00:00
|
|
|
}
|
|
|
|
|
2021-10-28 01:42:33 +01:00
|
|
|
old := make(map[key.NodePublic]Peer)
|
2021-01-29 20:16:36 +00:00
|
|
|
for _, p := range prev.Peers {
|
|
|
|
old[p.PublicKey] = p
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add/configure all new peers.
|
|
|
|
for _, p := range cfg.Peers {
|
2021-09-01 06:37:23 +01:00
|
|
|
oldPeer, wasPresent := old[p.PublicKey]
|
2022-08-30 01:47:52 +01:00
|
|
|
|
|
|
|
// We only want to write the peer header/version if we're about
|
|
|
|
// to change something about that peer, or if it's a new peer.
|
|
|
|
// Figure out up-front whether we'll need to do anything for
|
|
|
|
// this peer, and skip doing anything if not.
|
|
|
|
//
|
|
|
|
// If the peer was not present in the previous config, this
|
|
|
|
// implies that this is a new peer; set all of these to 'true'
|
|
|
|
// to ensure that we're writing the full peer configuration.
|
|
|
|
willSetEndpoint := oldPeer.WGEndpoint != p.PublicKey || !wasPresent
|
|
|
|
willChangeIPs := !cidrsEqual(oldPeer.AllowedIPs, p.AllowedIPs) || !wasPresent
|
|
|
|
willChangeKeepalive := oldPeer.PersistentKeepalive != p.PersistentKeepalive || !wasPresent
|
|
|
|
|
|
|
|
if !willSetEndpoint && !willChangeIPs && !willChangeKeepalive {
|
|
|
|
// It's safe to skip doing anything here; wireguard-go
|
|
|
|
// will not remove a peer if it's unspecified unless we
|
|
|
|
// tell it to (which we do below if necessary).
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-01-29 20:16:36 +00:00
|
|
|
setPeer(p)
|
|
|
|
set("protocol_version", "1")
|
|
|
|
|
2021-09-01 06:37:23 +01:00
|
|
|
// Avoid setting endpoints if the correct one is already known
|
|
|
|
// to WireGuard, because doing so generates a bit more work in
|
|
|
|
// calling magicsock's ParseEndpoint for effectively a no-op.
|
2022-08-30 01:47:52 +01:00
|
|
|
if willSetEndpoint {
|
2021-11-11 02:42:16 +00:00
|
|
|
if wasPresent {
|
|
|
|
// We had an endpoint, and it was wrong.
|
|
|
|
// By construction, this should not happen.
|
|
|
|
// If it does, keep going so that we can recover from it,
|
|
|
|
// but log so that we know about it,
|
|
|
|
// because it is an indicator of other failed invariants.
|
|
|
|
// See corp issue 3016.
|
|
|
|
logf("[unexpected] endpoint changed from %s to %s", oldPeer.WGEndpoint, p.PublicKey)
|
|
|
|
}
|
2021-10-28 01:42:33 +01:00
|
|
|
set("endpoint", p.PublicKey.UntypedHexString())
|
2021-01-29 20:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: replace_allowed_ips is expensive.
|
|
|
|
// If p.AllowedIPs is a strict superset of oldPeer.AllowedIPs,
|
|
|
|
// then skip replace_allowed_ips and instead add only
|
|
|
|
// the new ipps with allowed_ip.
|
2022-08-30 01:47:52 +01:00
|
|
|
if willChangeIPs {
|
2021-01-29 20:16:36 +00:00
|
|
|
set("replace_allowed_ips", "true")
|
|
|
|
for _, ipp := range p.AllowedIPs {
|
|
|
|
set("allowed_ip", ipp.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set PersistentKeepalive after the peer is otherwise configured,
|
|
|
|
// because it can trigger handshake packets.
|
2022-08-30 01:47:52 +01:00
|
|
|
if willChangeKeepalive {
|
2021-01-29 20:16:36 +00:00
|
|
|
setUint16("persistent_keepalive_interval", p.PersistentKeepalive)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove peers that were present but should no longer be.
|
|
|
|
for _, p := range cfg.Peers {
|
|
|
|
delete(old, p.PublicKey)
|
|
|
|
}
|
|
|
|
for _, p := range old {
|
|
|
|
setPeer(p)
|
|
|
|
set("remove", "true")
|
|
|
|
}
|
|
|
|
|
|
|
|
if stickyErr != nil {
|
|
|
|
stickyErr = fmt.Errorf("ToUAPI: %w", stickyErr)
|
|
|
|
}
|
|
|
|
return stickyErr
|
|
|
|
}
|
|
|
|
|
all: convert more code to use net/netip directly
perl -i -npe 's,netaddr.IPPrefixFrom,netip.PrefixFrom,' $(git grep -l -F netaddr.)
perl -i -npe 's,netaddr.IPPortFrom,netip.AddrPortFrom,' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPrefix,netip.Prefix,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPort,netip.AddrPort,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IP\b,netip.Addr,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPv6Raw\b,netip.AddrFrom16,g' $(git grep -l -F netaddr. )
goimports -w .
Then delete some stuff from the net/netaddr shim package which is no
longer neeed.
Updates #5162
Change-Id: Ia7a86893fe21c7e3ee1ec823e8aba288d4566cd8
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
2022-07-26 05:14:09 +01:00
|
|
|
func cidrsEqual(x, y []netip.Prefix) bool {
|
2021-01-29 20:16:36 +00:00
|
|
|
// TODO: re-implement using netaddr.IPSet.Equal.
|
|
|
|
if len(x) != len(y) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// First see if they're equal in order, without allocating.
|
|
|
|
exact := true
|
|
|
|
for i := range x {
|
|
|
|
if x[i] != y[i] {
|
|
|
|
exact = false
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if exact {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, see if they're the same, but out of order.
|
all: convert more code to use net/netip directly
perl -i -npe 's,netaddr.IPPrefixFrom,netip.PrefixFrom,' $(git grep -l -F netaddr.)
perl -i -npe 's,netaddr.IPPortFrom,netip.AddrPortFrom,' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPrefix,netip.Prefix,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPort,netip.AddrPort,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IP\b,netip.Addr,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPv6Raw\b,netip.AddrFrom16,g' $(git grep -l -F netaddr. )
goimports -w .
Then delete some stuff from the net/netaddr shim package which is no
longer neeed.
Updates #5162
Change-Id: Ia7a86893fe21c7e3ee1ec823e8aba288d4566cd8
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
2022-07-26 05:14:09 +01:00
|
|
|
m := make(map[netip.Prefix]bool)
|
2021-01-29 20:16:36 +00:00
|
|
|
for _, v := range x {
|
|
|
|
m[v] = true
|
|
|
|
}
|
|
|
|
for _, v := range y {
|
|
|
|
if !m[v] {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|