| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- // Copyright (c) Tailscale Inc & AUTHORS
- // SPDX-License-Identifier: BSD-3-Clause
- package wgengine
- import (
- "errors"
- "net/netip"
- "time"
- "tailscale.com/ipn/ipnstate"
- "tailscale.com/net/dns"
- "tailscale.com/tailcfg"
- "tailscale.com/types/netmap"
- "tailscale.com/wgengine/capture"
- "tailscale.com/wgengine/filter"
- "tailscale.com/wgengine/router"
- "tailscale.com/wgengine/wgcfg"
- )
- // Status is the Engine status.
- //
- // TODO(bradfitz): remove this, subset of ipnstate? Need to migrate users.
- type Status struct {
- AsOf time.Time // the time at which the status was calculated
- Peers []ipnstate.PeerStatusLite
- LocalAddrs []tailcfg.Endpoint // the set of possible endpoints for the magic conn
- DERPs int // number of active DERP connections
- }
- // StatusCallback is the type of status callbacks used by
- // Engine.SetStatusCallback.
- //
- // Exactly one of Status or error is non-nil.
- type StatusCallback func(*Status, error)
- // NetworkMapCallback is the type used by callbacks that hook
- // into network map updates.
- type NetworkMapCallback func(*netmap.NetworkMap)
- // ErrNoChanges is returned by Engine.Reconfig if no changes were made.
- var ErrNoChanges = errors.New("no changes made to Engine config")
- // PeerForIP is the type returned by Engine.PeerForIP.
- type PeerForIP struct {
- // Node is the matched node. It's always a valid value when
- // Engine.PeerForIP returns ok==true.
- Node tailcfg.NodeView
- // IsSelf is whether the Node is the local process.
- IsSelf bool
- // Route is the route that matched the IP provided
- // to Engine.PeerForIP.
- Route netip.Prefix
- }
- // Engine is the Tailscale WireGuard engine interface.
- type Engine interface {
- // Reconfig reconfigures WireGuard and makes sure it's running.
- // This also handles setting up any kernel routes.
- //
- // This is called whenever tailcontrol (the control plane)
- // sends an updated network map.
- //
- // The returned error is ErrNoChanges if no changes were made.
- Reconfig(*wgcfg.Config, *router.Config, *dns.Config) error
- // PeerForIP returns the node to which the provided IP routes,
- // if any. If none is found, (nil, false) is returned.
- PeerForIP(netip.Addr) (_ PeerForIP, ok bool)
- // GetFilter returns the current packet filter, if any.
- GetFilter() *filter.Filter
- // SetFilter updates the packet filter.
- SetFilter(*filter.Filter)
- // SetStatusCallback sets the function to call when the
- // WireGuard status changes.
- SetStatusCallback(StatusCallback)
- // RequestStatus requests a WireGuard status update right
- // away, sent to the callback registered via SetStatusCallback.
- RequestStatus()
- // Close shuts down this wireguard instance, remove any routes
- // it added, etc. To bring it up again later, you'll need a
- // new Engine.
- Close()
- // Wait waits until the Engine's Close method is called or the
- // engine aborts with an error. You don't have to call this.
- // TODO: return an error?
- Wait()
- // SetNetworkMap informs the engine of the latest network map
- // from the server. The network map's DERPMap field should be
- // ignored as as it might be disabled; get it from SetDERPMap
- // instead.
- // The network map should only be read from.
- SetNetworkMap(*netmap.NetworkMap)
- // UpdateStatus populates the network state using the provided
- // status builder.
- UpdateStatus(*ipnstate.StatusBuilder)
- // Ping is a request to start a ping of the given message size to the peer
- // handling the given IP, then call cb with its ping latency & method.
- //
- // If size is zero too small, it is ignored. See tailscale.PingOpts for details.
- Ping(ip netip.Addr, pingType tailcfg.PingType, size int, cb func(*ipnstate.PingResult))
- // InstallCaptureHook registers a function to be called to capture
- // packets traversing the data path. The hook can be uninstalled by
- // calling this function with a nil value.
- InstallCaptureHook(capture.Callback)
- }
|