2020-02-12 20:53:55 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2020-04-24 14:23:32 +01:00
|
|
|
// +build !android
|
|
|
|
|
2020-02-12 20:53:55 +00:00
|
|
|
package monitor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-07-07 00:36:57 +01:00
|
|
|
"net"
|
2020-02-17 19:28:07 +00:00
|
|
|
"time"
|
2020-02-12 20:53:55 +00:00
|
|
|
|
2020-07-07 00:36:57 +01:00
|
|
|
"github.com/jsimonetti/rtnetlink"
|
2020-02-12 20:53:55 +00:00
|
|
|
"github.com/mdlayher/netlink"
|
|
|
|
"golang.org/x/sys/unix"
|
2020-07-07 00:36:57 +01:00
|
|
|
"inet.af/netaddr"
|
|
|
|
"tailscale.com/net/tsaddr"
|
|
|
|
"tailscale.com/types/logger"
|
2020-02-12 20:53:55 +00:00
|
|
|
)
|
|
|
|
|
2020-07-15 00:28:02 +01:00
|
|
|
// unspecifiedMessage is a minimal message implementation that should not
|
|
|
|
// be ignored. In general, OS-specific implementations should use better
|
|
|
|
// types and avoid this if they can.
|
|
|
|
type unspecifiedMessage struct{}
|
|
|
|
|
|
|
|
func (unspecifiedMessage) ignore() bool { return false }
|
|
|
|
|
2020-02-12 20:53:55 +00:00
|
|
|
// nlConn wraps a *netlink.Conn and returns a monitor.Message
|
|
|
|
// instead of a netlink.Message. Currently, messages are discarded,
|
|
|
|
// but down the line, when messages trigger different logic depending
|
|
|
|
// on the type of event, this provides the capability of handling
|
|
|
|
// each architecture-specific message in a generic fashion.
|
|
|
|
type nlConn struct {
|
2020-07-07 00:36:57 +01:00
|
|
|
logf logger.Logf
|
|
|
|
conn *netlink.Conn
|
|
|
|
buffered []netlink.Message
|
2020-02-12 20:53:55 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 00:36:57 +01:00
|
|
|
func newOSMon(logf logger.Logf) (osMon, error) {
|
2020-02-12 20:53:55 +00:00
|
|
|
conn, err := netlink.Dial(unix.NETLINK_ROUTE, &netlink.Config{
|
|
|
|
// IPv4 address and route changes. Routes get us most of the
|
|
|
|
// events of interest, but we need address as well to cover
|
|
|
|
// things like DHCP deciding to give us a new address upon
|
|
|
|
// renewal - routing wouldn't change, but all reachability
|
|
|
|
// would.
|
2020-02-17 21:12:35 +00:00
|
|
|
Groups: unix.RTMGRP_IPV4_IFADDR | unix.RTMGRP_IPV4_ROUTE,
|
2020-02-12 20:53:55 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("dialing netlink socket: %v", err)
|
|
|
|
}
|
2020-07-07 00:36:57 +01:00
|
|
|
return &nlConn{logf: logf, conn: conn}, nil
|
2020-02-12 20:53:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *nlConn) Close() error {
|
2020-02-17 19:28:07 +00:00
|
|
|
c.conn.SetDeadline(time.Unix(0, 0)) // abort any Receive in flight
|
2020-02-12 20:53:55 +00:00
|
|
|
return c.conn.Close()
|
|
|
|
}
|
|
|
|
|
2020-02-17 17:00:38 +00:00
|
|
|
func (c *nlConn) Receive() (message, error) {
|
2020-07-07 00:36:57 +01:00
|
|
|
if len(c.buffered) == 0 {
|
|
|
|
var err error
|
|
|
|
c.buffered, err = c.conn.Receive()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(c.buffered) == 0 {
|
|
|
|
// Unexpected. Not seen in wild, but sleep defensively.
|
|
|
|
time.Sleep(time.Second)
|
2020-07-07 19:07:12 +01:00
|
|
|
return ignoreMessage{}, nil
|
2020-07-07 00:36:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
msg := c.buffered[0]
|
|
|
|
c.buffered = c.buffered[1:]
|
|
|
|
|
|
|
|
// See https://github.com/torvalds/linux/blob/master/include/uapi/linux/rtnetlink.h
|
|
|
|
// And https://man7.org/linux/man-pages/man7/rtnetlink.7.html
|
|
|
|
switch msg.Header.Type {
|
2020-07-07 19:07:12 +01:00
|
|
|
case unix.RTM_NEWADDR, unix.RTM_DELADDR:
|
2020-07-07 00:36:57 +01:00
|
|
|
var rmsg rtnetlink.AddressMessage
|
|
|
|
if err := rmsg.UnmarshalBinary(msg.Data); err != nil {
|
2020-07-07 19:07:12 +01:00
|
|
|
c.logf("failed to parse type 0x%x: %v", msg.Header.Type, err)
|
|
|
|
return unspecifiedMessage{}, nil
|
2020-07-07 00:36:57 +01:00
|
|
|
}
|
|
|
|
return &newAddrMessage{
|
2020-07-07 19:07:12 +01:00
|
|
|
Label: rmsg.Attributes.Label,
|
|
|
|
Addr: netaddrIP(rmsg.Attributes.Local),
|
|
|
|
Delete: msg.Header.Type == unix.RTM_DELADDR,
|
2020-07-07 00:36:57 +01:00
|
|
|
}, nil
|
|
|
|
case unix.RTM_NEWROUTE:
|
|
|
|
var rmsg rtnetlink.RouteMessage
|
|
|
|
if err := rmsg.UnmarshalBinary(msg.Data); err != nil {
|
|
|
|
c.logf("RTM_NEWROUTE: failed to parse: %v", err)
|
2020-07-07 19:07:12 +01:00
|
|
|
return unspecifiedMessage{}, nil
|
2020-07-07 00:36:57 +01:00
|
|
|
}
|
|
|
|
return &newRouteMessage{
|
|
|
|
Table: rmsg.Table,
|
|
|
|
Src: netaddrIP(rmsg.Attributes.Src),
|
|
|
|
Dst: netaddrIP(rmsg.Attributes.Dst),
|
|
|
|
Gateway: netaddrIP(rmsg.Attributes.Gateway),
|
|
|
|
}, nil
|
|
|
|
default:
|
2020-07-07 19:07:12 +01:00
|
|
|
c.logf("unhandled netlink msg type 0x%x: %+v, %q", msg.Header.Type, msg.Header, msg.Data)
|
2020-07-07 18:44:54 +01:00
|
|
|
return unspecifiedMessage{}, nil
|
2020-02-12 20:53:55 +00:00
|
|
|
}
|
2020-07-07 00:36:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func netaddrIP(std net.IP) netaddr.IP {
|
|
|
|
ip, _ := netaddr.FromStdIP(std)
|
|
|
|
return ip
|
|
|
|
}
|
|
|
|
|
|
|
|
// newRouteMessage is a message for a new route being added.
|
|
|
|
type newRouteMessage struct {
|
|
|
|
Src, Dst, Gateway netaddr.IP
|
|
|
|
Table uint8
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *newRouteMessage) ignore() bool {
|
|
|
|
return m.Table == 88 || tsaddr.IsTailscaleIP(m.Dst)
|
|
|
|
}
|
|
|
|
|
|
|
|
// newAddrMessage is a message for a new address being added.
|
|
|
|
type newAddrMessage struct {
|
2020-07-07 19:07:12 +01:00
|
|
|
Delete bool
|
|
|
|
Addr netaddr.IP
|
|
|
|
Label string // netlink Label attribute (e.g. "tailscale0")
|
2020-07-07 00:36:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *newAddrMessage) ignore() bool {
|
|
|
|
return tsaddr.IsTailscaleIP(m.Addr)
|
2020-02-12 20:53:55 +00:00
|
|
|
}
|
2020-07-07 19:07:12 +01:00
|
|
|
|
|
|
|
type ignoreMessage struct{}
|
|
|
|
|
|
|
|
func (ignoreMessage) ignore() bool { return true }
|