netmon
packageThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Overview¶
Package monitor provides facilities for monitoring networkinterface and route changes. It primarily exists to know whenportable devices move between different networks.
Index¶
- Variables
- func DefaultRouteInterface() (string, error)
- func ForeachInterface(fn func(Interface, []netip.Prefix)) error
- func ForeachInterfaceAddress(fn func(Interface, netip.Prefix)) error
- func HTTPOfListener(ln net.Listener) string
- func InterfaceDebugExtras(ifIndex int) (string, error)
- func LikelyHomeRouterIP() (gateway, myIP netip.Addr, ok bool)
- func LinkChangeLogLimiter(ctx context.Context, logf logger.Logf, nm *Monitor) logger.Logf
- func LocalAddresses() (regular, loopback []netip.Addr, err error)
- func RegisterInterfaceGetter(getInterfaces func() ([]Interface, error))
- type ChangeDelta
- type ChangeFunc
- type DefaultRouteDetails
- type Interface
- type InterfaceList
- type Monitor
- func (m *Monitor) Close() error
- func (m *Monitor) GatewayAndSelfIP() (gw, myIP netip.Addr, ok bool)
- func (m *Monitor) HasCGNATInterface() (bool, error)
- func (m *Monitor) InjectEvent()
- func (m *Monitor) InterfaceState() *State
- func (m *Monitor) IsMajorChangeFrom(s1, s2 *State) bool
- func (m *Monitor) Poll()
- func (m *Monitor) RegisterChangeCallback(callback ChangeFunc) (unregister func())
- func (m *Monitor) SetTailscaleInterfaceName(ifName string)
- func (m *Monitor) Start()
- type RuleDeleted
- type State
Constants¶
This section is empty.
Variables¶
var LoginEndpointForProxyDetermination = "https://controlplane.tailscale.com/"LoginEndpointForProxyDetermination is the URL used for testingwhich HTTP proxy the system should use.
Functions¶
funcDefaultRouteInterface¶added inv1.66.0
DefaultRouteInterface is like DefaultRoute but only returns theinterface name.
funcForeachInterface¶added inv1.66.0
ForeachInterface is a wrapper for GetList, thenList.ForeachInterface.
funcForeachInterfaceAddress¶added inv1.66.0
ForeachInterfaceAddress is a wrapper for GetList, thenList.ForeachInterfaceAddress.
funcHTTPOfListener¶added inv1.66.0
HTTPOfListener returns the HTTP address to ln.If the listener is listening on the unspecified address, itit tries to find a reasonable interface address on the machine to use.
funcInterfaceDebugExtras¶added inv1.66.0
InterfaceDebugExtras returns extra debugging information about an interfaceif any (an empty string will be returned if there are no additional details).Formatting is platform-dependent and should not be parsed.
funcLikelyHomeRouterIP¶added inv1.66.0
LikelyHomeRouterIP returns the likely IP of the residential router,which will always be an IPv4 private address, if found.In addition, it returns the IP address of the current machine onthe LAN using that gateway.This is used as the destination for UPnP, NAT-PMP, PCP, etc queries.
funcLinkChangeLogLimiter¶added inv1.82.0
LinkChangeLogLimiter returns a newlogger.Logf that logs each uniqueformat string to the underlying logger only once per major LinkChange event.
The logger stops tracking seen format strings when the provided context isdone.
funcLocalAddresses¶added inv1.66.0
LocalAddresses returns the machine's IP addresses, separated bywhether they're loopback addresses. If there are no regular addressesit will return any IPv4 linklocal or IPv6 unique local addresses because weknow of environments where these are used with NAT to provide connectivity.
funcRegisterInterfaceGetter¶added inv1.66.0
RegisterInterfaceGetter sets the function that's used to querythe system network interfaces.
Types¶
typeChangeDelta¶added inv1.50.0
type ChangeDelta struct {// Old is the old interface state, if known.// It's nil if the old state is unknown.// Do not mutate it.Old *State// New is the new network state.// It is always non-nil.// Do not mutate it.New *State// Major is our legacy boolean of whether the network changed in some major// way.//// Deprecated: do not remove. As of 2023-08-23 we're in a renewed effort to// remove it and ask specific qustions of ChangeDelta instead. Look at Old// and New (or add methods to ChangeDelta) instead of using Major.Majorbool// TimeJumped is whether there was a big jump in wall time since the last// time we checked. This is a hint that a mobile sleeping device might have// come out of sleep.TimeJumpedbool}ChangeDelta describes the difference between two network states.
typeChangeFunc¶
type ChangeFunc func(*ChangeDelta)
ChangeFunc is a callback function registered with Monitor that's called when thenetwork changed.
typeDefaultRouteDetails¶added inv1.66.0
type DefaultRouteDetails struct {// InterfaceName is the interface name. It must always be populated.// It's like "eth0" (Linux), "Ethernet 2" (Windows), "en0" (macOS).InterfaceNamestring// InterfaceDesc is populated on Windows at least. It's a// longer description, like "Red Hat VirtIO Ethernet Adapter".InterfaceDescstring// InterfaceIndex is like net.Interface.Index.// Zero means not populated.InterfaceIndexint}DefaultRouteDetails are the details about a default route returnedby DefaultRoute.
funcDefaultRoute¶added inv1.66.0
func DefaultRoute() (DefaultRouteDetails,error)
DefaultRoute returns details of the network interface that ownsthe default route, not including any tailscale interfaces.
typeInterface¶added inv1.66.0
type Interface struct {*net.InterfaceAltAddrs []net.Addr// if non-nil, returned by AddrsDescstring// extra description (used on Windows)}Interface is a wrapper around Go's net.Interface with some extra methods.
func (Interface)IsLoopback¶added inv1.66.0
typeInterfaceList¶added inv1.66.0
type InterfaceList []Interface
InterfaceList is a list of interfaces on the machine.
funcGetInterfaceList¶added inv1.66.0
func GetInterfaceList() (InterfaceList,error)
GetInterfaceList returns the list of interfaces on the machine.
func (InterfaceList)ForeachInterface¶added inv1.66.0
func (ifacesInterfaceList) ForeachInterface(fn func(Interface, []netip.Prefix))error
ForeachInterface calls fn for each interface in ifaces, withall its addresses. The IPPrefix's IP is the IP address assigned tothe interface, and Bits are the subnet mask.
func (InterfaceList)ForeachInterfaceAddress¶added inv1.66.0
func (ifacesInterfaceList) ForeachInterfaceAddress(fn func(Interface,netip.Prefix))error
ForeachInterfaceAddress calls fn for each interface in ifaces, withall its addresses. The IPPrefix's IP is the IP address assigned tothe interface, and Bits are the subnet mask.
typeMonitor¶
type Monitor struct {// contains filtered or unexported fields}Monitor represents a monitoring instance.
funcNew¶
New instantiates and starts a monitoring instance.The returned monitor is inactive until it's started by the Start method.Use RegisterChangeCallback to get notified of network changes.
funcNewStatic¶added inv1.66.0
func NewStatic() *Monitor
NewStatic returns a Monitor that's a one-time snapshot of the network statebut doesn't actually monitor for changes. It should only be used in testsand situations like cleanups or short-lived CLI programs.
func (*Monitor)GatewayAndSelfIP¶
GatewayAndSelfIP returns the current network's default gateway, andthe machine's default IP for that gateway.
It's the same as interfaces.LikelyHomeRouterIP, but it caches theresult until the monitor detects a network change.
func (*Monitor)HasCGNATInterface¶added inv1.82.0
HasCGNATInterface reports whether there are any non-Tailscale interfaces thatuse a CGNAT IP range.
func (*Monitor)InjectEvent¶
func (m *Monitor) InjectEvent()
InjectEvent forces the monitor to pretend there was a networkchange and re-check the state of the network. Any registeredChangeFunc callbacks will be called within the event coalescingperiod (under a fraction of a second).
func (*Monitor)InterfaceState¶
InterfaceState returns the latest snapshot of the machine's networkinterfaces.
The returned value is owned by Mon; it must not be modified.
func (*Monitor)IsMajorChangeFrom¶added inv1.50.0
IsMajorChangeFrom reports whether the transition from s1 to s2 isa "major" change, where major roughly means it's worth tearing downa bunch of connections and rebinding.
TODO(bradiftz): tigten this definition.
func (*Monitor)Poll¶added inv1.50.0
func (m *Monitor) Poll()
Poll forces the monitor to pretend there was a networkchange and re-check the state of the network.
This is like InjectEvent but only fires ChangeFunc callbacksif the network state differed at all.
func (*Monitor)RegisterChangeCallback¶
func (m *Monitor) RegisterChangeCallback(callbackChangeFunc) (unregister func())
RegisterChangeCallback adds callback to the set of parties to benotified (in their own goroutine) when the network state changes.To remove this callback, call unregister (or close the monitor).
func (*Monitor)SetTailscaleInterfaceName¶added inv1.50.0
SetTailscaleInterfaceName sets the name of the Tailscale interface. Forexample, "tailscale0", "tun0", "utun3", etc.
This must be called only early in tailscaled startup before the monitor isused.
typeRuleDeleted¶added inv1.84.0
type RuleDeleted struct {// Table is the table number that the deleted rule referenced.Tableuint8// Priority is the lookup priority of the deleted rule.Priorityuint32}RuleDeleted reports that one of Tailscale's policy routing ruleswas deleted.
typeState¶added inv1.66.0
type State struct {// InterfaceIPs maps from an interface name to the IP addresses// configured on that interface. Each address is represented as an// IPPrefix, where the IP is the interface IP address and Bits is// the subnet mask.InterfaceIPs map[string][]netip.PrefixInterface map[string]Interface// HaveV6 is whether this machine has an IPv6 Global or Unique Local Address// which might provide connectivity on a non-Tailscale interface that's up.HaveV6bool// HaveV4 is whether the machine has some non-localhost,// non-link-local IPv4 address on a non-Tailscale interface that's up.HaveV4bool// IsExpensive is whether the current network interface is// considered "expensive", which currently means LTE/etc// instead of Wifi. This field is not populated by GetState.IsExpensivebool// DefaultRouteInterface is the interface name for the// machine's default route.//// It is not yet populated on all OSes.//// When non-empty, its value is the map key into Interface and// InterfaceIPs.DefaultRouteInterfacestring// HTTPProxy is the HTTP proxy to use, if any.HTTPProxystring// PAC is the URL to the Proxy Autoconfig URL, if applicable.PACstring}State is intended to store the state of the machine's network interfaces,routing table, and other network configuration.For now it's pretty basic.
func (*State)AnyInterfaceUp¶added inv1.66.0
AnyInterfaceUp reports whether any interface seems like it has Internet access.