2021-03-16 09:42:15 -07:00
|
|
|
// Package aghnet contains some utilities for networking.
|
|
|
|
package aghnet
|
2020-02-13 08:42:07 -07:00
|
|
|
|
|
|
|
import (
|
2022-03-30 05:11:57 -07:00
|
|
|
"bytes"
|
2021-01-21 09:55:41 -07:00
|
|
|
"encoding/json"
|
2020-02-13 08:42:07 -07:00
|
|
|
"fmt"
|
2021-12-16 10:54:59 -07:00
|
|
|
"io"
|
2020-02-13 08:42:07 -07:00
|
|
|
"net"
|
|
|
|
"syscall"
|
|
|
|
|
2022-03-30 05:11:57 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
2021-05-24 07:28:11 -07:00
|
|
|
"github.com/AdguardTeam/golibs/errors"
|
2020-02-13 08:42:07 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2021-08-09 06:03:37 -07:00
|
|
|
"github.com/AdguardTeam/golibs/netutil"
|
2020-02-13 08:42:07 -07:00
|
|
|
)
|
|
|
|
|
2022-03-31 09:56:50 -07:00
|
|
|
// Variables and functions to substitute in tests.
|
|
|
|
var (
|
|
|
|
// aghosRunCommand is the function to run shell commands.
|
|
|
|
aghosRunCommand = aghos.RunCommand
|
2022-03-30 05:11:57 -07:00
|
|
|
|
2022-03-31 09:56:50 -07:00
|
|
|
// netInterfaces is the function to get the available network interfaces.
|
|
|
|
netInterfaceAddrs = net.InterfaceAddrs
|
|
|
|
|
|
|
|
// rootDirFS is the filesystem pointing to the root directory.
|
|
|
|
rootDirFS = aghos.RootDirFS()
|
|
|
|
)
|
2022-03-30 05:11:57 -07:00
|
|
|
|
2021-03-16 09:42:15 -07:00
|
|
|
// ErrNoStaticIPInfo is returned by IfaceHasStaticIP when no information about
|
|
|
|
// the IP being static is available.
|
2021-05-24 07:28:11 -07:00
|
|
|
const ErrNoStaticIPInfo errors.Error = "no information about static ip"
|
2021-03-16 09:42:15 -07:00
|
|
|
|
|
|
|
// IfaceHasStaticIP checks if interface is configured to have static IP address.
|
|
|
|
// If it can't give a definitive answer, it returns false and an error for which
|
|
|
|
// errors.Is(err, ErrNoStaticIPInfo) is true.
|
|
|
|
func IfaceHasStaticIP(ifaceName string) (has bool, err error) {
|
|
|
|
return ifaceHasStaticIP(ifaceName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IfaceSetStaticIP sets static IP address for network interface.
|
|
|
|
func IfaceSetStaticIP(ifaceName string) (err error) {
|
|
|
|
return ifaceSetStaticIP(ifaceName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GatewayIP returns IP address of interface's gateway.
|
2022-03-30 05:11:57 -07:00
|
|
|
//
|
|
|
|
// TODO(e.burkov): Investigate if the gateway address may be fetched in another
|
|
|
|
// way since not every machine has the software installed.
|
|
|
|
func GatewayIP(ifaceName string) (ip net.IP) {
|
|
|
|
code, out, err := aghosRunCommand("ip", "route", "show", "dev", ifaceName)
|
|
|
|
if err != nil {
|
|
|
|
log.Debug("%s", err)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
} else if code != 0 {
|
|
|
|
log.Debug("fetching gateway ip: unexpected exit code: %d", code)
|
|
|
|
|
2021-03-16 09:42:15 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-30 05:11:57 -07:00
|
|
|
fields := bytes.Fields(out)
|
2021-03-16 09:42:15 -07:00
|
|
|
// The meaningful "ip route" command output should contain the word
|
2022-01-21 09:21:38 -07:00
|
|
|
// "default" at first field and default gateway IP address at third field.
|
2022-03-30 05:11:57 -07:00
|
|
|
if len(fields) < 3 || string(fields[0]) != "default" {
|
2021-03-16 09:42:15 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-30 05:11:57 -07:00
|
|
|
return net.ParseIP(string(fields[2]))
|
2021-03-16 09:42:15 -07:00
|
|
|
}
|
|
|
|
|
2021-06-28 07:02:45 -07:00
|
|
|
// CanBindPrivilegedPorts checks if current process can bind to privileged
|
|
|
|
// ports.
|
|
|
|
func CanBindPrivilegedPorts() (can bool, err error) {
|
|
|
|
return canBindPrivilegedPorts()
|
|
|
|
}
|
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
// NetInterface represents an entry of network interfaces map.
|
2020-02-13 08:42:07 -07:00
|
|
|
type NetInterface struct {
|
2021-08-09 06:03:37 -07:00
|
|
|
// Addresses are the network interface addresses.
|
|
|
|
Addresses []net.IP `json:"ip_addresses,omitempty"`
|
|
|
|
// Subnets are the IP networks for this network interface.
|
|
|
|
Subnets []*net.IPNet `json:"-"`
|
2021-01-21 09:55:41 -07:00
|
|
|
Name string `json:"name"`
|
|
|
|
HardwareAddr net.HardwareAddr `json:"hardware_address"`
|
|
|
|
Flags net.Flags `json:"flags"`
|
2021-08-09 06:03:37 -07:00
|
|
|
MTU int `json:"mtu"`
|
2021-01-21 09:55:41 -07:00
|
|
|
}
|
|
|
|
|
2022-03-31 09:56:50 -07:00
|
|
|
// MarshalText implements the json.Marshaler interface for NetInterface.
|
|
|
|
func (iface NetInterface) MarshalText() ([]byte, error) {
|
2021-01-21 09:55:41 -07:00
|
|
|
type netInterface NetInterface
|
|
|
|
return json.Marshal(&struct {
|
|
|
|
HardwareAddr string `json:"hardware_address"`
|
|
|
|
Flags string `json:"flags"`
|
2021-05-14 09:41:45 -07:00
|
|
|
netInterface
|
2021-01-21 09:55:41 -07:00
|
|
|
}{
|
|
|
|
HardwareAddr: iface.HardwareAddr.String(),
|
|
|
|
Flags: iface.Flags.String(),
|
2021-05-14 09:41:45 -07:00
|
|
|
netInterface: netInterface(iface),
|
2021-01-21 09:55:41 -07:00
|
|
|
})
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2022-03-31 09:56:50 -07:00
|
|
|
// GetValidNetInterfacesForWeb returns interfaces that are eligible for DNS and
|
|
|
|
// WEB only we do not return link-local addresses here.
|
|
|
|
//
|
|
|
|
// TODO(e.burkov): Can't properly test the function since it's nontrivial to
|
|
|
|
// substitute net.Interface.Addrs and the net.InterfaceAddrs can't be used.
|
|
|
|
func GetValidNetInterfacesForWeb() (netIfaces []*NetInterface, err error) {
|
2021-03-31 05:00:47 -07:00
|
|
|
ifaces, err := net.Interfaces()
|
2020-02-13 08:42:07 -07:00
|
|
|
if err != nil {
|
2020-11-05 05:20:57 -07:00
|
|
|
return nil, fmt.Errorf("couldn't get interfaces: %w", err)
|
2022-03-23 10:47:45 -07:00
|
|
|
} else if len(ifaces) == 0 {
|
2021-05-24 07:28:11 -07:00
|
|
|
return nil, errors.Error("couldn't find any legible interface")
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, iface := range ifaces {
|
2021-03-11 05:38:39 -07:00
|
|
|
var addrs []net.Addr
|
|
|
|
addrs, err = iface.Addrs()
|
2020-11-05 05:20:57 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to get addresses for interface %s: %w", iface.Name, err)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
netIface := &NetInterface{
|
2020-02-13 08:42:07 -07:00
|
|
|
MTU: iface.MTU,
|
2021-01-21 09:55:41 -07:00
|
|
|
Name: iface.Name,
|
|
|
|
HardwareAddr: iface.HardwareAddr,
|
|
|
|
Flags: iface.Flags,
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
// Collect network interface addresses.
|
2020-02-13 08:42:07 -07:00
|
|
|
for _, addr := range addrs {
|
|
|
|
ipNet, ok := addr.(*net.IPNet)
|
|
|
|
if !ok {
|
2021-01-21 09:55:41 -07:00
|
|
|
// Should be net.IPNet, this is weird.
|
2022-03-30 05:11:57 -07:00
|
|
|
return nil, fmt.Errorf("got %s that is not net.IPNet, it is %T", addr, addr)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
2022-03-30 05:11:57 -07:00
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
// Ignore link-local.
|
2020-02-13 08:42:07 -07:00
|
|
|
if ipNet.IP.IsLinkLocalUnicast() {
|
|
|
|
continue
|
|
|
|
}
|
2022-03-30 05:11:57 -07:00
|
|
|
|
2021-01-20 07:27:53 -07:00
|
|
|
netIface.Addresses = append(netIface.Addresses, ipNet.IP)
|
|
|
|
netIface.Subnets = append(netIface.Subnets, ipNet)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
// Discard interfaces with no addresses.
|
2020-02-13 08:42:07 -07:00
|
|
|
if len(netIface.Addresses) != 0 {
|
2022-03-31 09:56:50 -07:00
|
|
|
netIfaces = append(netIfaces, netIface)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-31 09:56:50 -07:00
|
|
|
return netIfaces, nil
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2021-01-20 07:27:53 -07:00
|
|
|
// GetInterfaceByIP returns the name of interface containing provided ip.
|
2022-03-31 09:56:50 -07:00
|
|
|
//
|
|
|
|
// TODO(e.burkov): See TODO on GetValidInterfacesForWeb.
|
2021-01-20 07:27:53 -07:00
|
|
|
func GetInterfaceByIP(ip net.IP) string {
|
2020-02-13 08:42:07 -07:00
|
|
|
ifaces, err := GetValidNetInterfacesForWeb()
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, iface := range ifaces {
|
|
|
|
for _, addr := range iface.Addresses {
|
2021-01-20 07:27:53 -07:00
|
|
|
if ip.Equal(addr) {
|
2020-02-13 08:42:07 -07:00
|
|
|
return iface.Name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-01-20 07:27:53 -07:00
|
|
|
// GetSubnet returns pointer to net.IPNet for the specified interface or nil if
|
|
|
|
// the search fails.
|
2022-03-31 09:56:50 -07:00
|
|
|
//
|
|
|
|
// TODO(e.burkov): See TODO on GetValidInterfacesForWeb.
|
2021-01-20 07:27:53 -07:00
|
|
|
func GetSubnet(ifaceName string) *net.IPNet {
|
2020-02-13 08:42:07 -07:00
|
|
|
netIfaces, err := GetValidNetInterfacesForWeb()
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Could not get network interfaces info: %v", err)
|
2021-01-20 07:27:53 -07:00
|
|
|
return nil
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, netIface := range netIfaces {
|
|
|
|
if netIface.Name == ifaceName && len(netIface.Subnets) > 0 {
|
|
|
|
return netIface.Subnets[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-20 07:27:53 -07:00
|
|
|
return nil
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2021-12-23 10:16:08 -07:00
|
|
|
// CheckPort checks if the port is available for binding. network is expected
|
|
|
|
// to be one of "udp" and "tcp".
|
2021-12-16 10:54:59 -07:00
|
|
|
func CheckPort(network string, ip net.IP, port int) (err error) {
|
|
|
|
var c io.Closer
|
|
|
|
addr := netutil.IPPort{IP: ip, Port: port}.String()
|
|
|
|
switch network {
|
|
|
|
case "tcp":
|
|
|
|
c, err = net.Listen(network, addr)
|
|
|
|
case "udp":
|
|
|
|
c, err = net.ListenPacket(network, addr)
|
|
|
|
default:
|
|
|
|
return nil
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2021-12-23 10:16:08 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return closePortChecker(c)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
2021-12-16 10:54:59 -07:00
|
|
|
// IsAddrInUse checks if err is about unsuccessful address binding.
|
|
|
|
func IsAddrInUse(err error) (ok bool) {
|
|
|
|
var sysErr syscall.Errno
|
|
|
|
if !errors.As(err, &sysErr) {
|
2020-02-13 08:42:07 -07:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-12-16 10:54:59 -07:00
|
|
|
return isAddrInUse(sysErr)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
2021-03-22 06:46:36 -07:00
|
|
|
|
2021-04-07 10:16:06 -07:00
|
|
|
// CollectAllIfacesAddrs returns the slice of all network interfaces IP
|
|
|
|
// addresses without port number.
|
|
|
|
func CollectAllIfacesAddrs() (addrs []string, err error) {
|
2022-03-31 09:56:50 -07:00
|
|
|
var ifaceAddrs []net.Addr
|
|
|
|
ifaceAddrs, err = netInterfaceAddrs()
|
2021-04-07 10:16:06 -07:00
|
|
|
if err != nil {
|
2022-03-31 09:56:50 -07:00
|
|
|
return nil, fmt.Errorf("getting interfaces addresses: %w", err)
|
2021-04-07 10:16:06 -07:00
|
|
|
}
|
|
|
|
|
2022-03-31 09:56:50 -07:00
|
|
|
for _, addr := range ifaceAddrs {
|
|
|
|
cidr := addr.String()
|
|
|
|
var ip net.IP
|
|
|
|
ip, _, err = net.ParseCIDR(cidr)
|
2021-04-07 10:16:06 -07:00
|
|
|
if err != nil {
|
2022-03-31 09:56:50 -07:00
|
|
|
return nil, fmt.Errorf("parsing cidr: %w", err)
|
2021-04-07 10:16:06 -07:00
|
|
|
}
|
|
|
|
|
2022-03-31 09:56:50 -07:00
|
|
|
addrs = append(addrs, ip.String())
|
2021-04-07 10:16:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return addrs, nil
|
|
|
|
}
|
2021-08-12 07:33:53 -07:00
|
|
|
|
|
|
|
// BroadcastFromIPNet calculates the broadcast IP address for n.
|
|
|
|
func BroadcastFromIPNet(n *net.IPNet) (dc net.IP) {
|
|
|
|
dc = netutil.CloneIP(n.IP)
|
|
|
|
|
|
|
|
mask := n.Mask
|
|
|
|
if mask == nil {
|
|
|
|
mask = dc.DefaultMask()
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, b := range mask {
|
|
|
|
dc[i] |= ^b
|
|
|
|
}
|
|
|
|
|
|
|
|
return dc
|
|
|
|
}
|