2021-05-21 04:55:42 -07:00
|
|
|
|
//go:build linux
|
|
|
|
|
|
2021-03-16 09:42:15 -07:00
|
|
|
|
package aghnet
|
2020-12-07 09:48:24 -07:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bufio"
|
|
|
|
|
"fmt"
|
|
|
|
|
"io"
|
2022-11-02 06:18:02 -07:00
|
|
|
|
"net/netip"
|
2020-12-07 09:48:24 -07:00
|
|
|
|
"os"
|
|
|
|
|
"strings"
|
|
|
|
|
|
2021-06-28 07:02:45 -07:00
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
2021-05-24 07:28:11 -07:00
|
|
|
|
"github.com/AdguardTeam/golibs/errors"
|
2022-08-03 10:36:20 -07:00
|
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2022-04-19 05:01:49 -07:00
|
|
|
|
"github.com/AdguardTeam/golibs/stringutil"
|
2021-04-06 10:48:36 -07:00
|
|
|
|
"github.com/google/renameio/maybe"
|
2021-06-28 07:02:45 -07:00
|
|
|
|
"golang.org/x/sys/unix"
|
2020-12-07 09:48:24 -07:00
|
|
|
|
)
|
|
|
|
|
|
2022-04-19 05:01:49 -07:00
|
|
|
|
// dhcpсdConf is the name of /etc/dhcpcd.conf file in the root filesystem.
|
|
|
|
|
const dhcpcdConf = "etc/dhcpcd.conf"
|
|
|
|
|
|
|
|
|
|
func canBindPrivilegedPorts() (can bool, err error) {
|
2022-08-03 10:36:20 -07:00
|
|
|
|
res, err := unix.PrctlRetInt(
|
2022-04-19 05:01:49 -07:00
|
|
|
|
unix.PR_CAP_AMBIENT,
|
|
|
|
|
unix.PR_CAP_AMBIENT_IS_SET,
|
|
|
|
|
unix.CAP_NET_BIND_SERVICE,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
)
|
2022-08-03 10:36:20 -07:00
|
|
|
|
if err != nil {
|
|
|
|
|
if errors.Is(err, unix.EINVAL) {
|
|
|
|
|
// Older versions of Linux kernel do not support this. Print a
|
|
|
|
|
// warning and check admin rights.
|
|
|
|
|
log.Info("warning: cannot check capability cap_net_bind_service: %s", err)
|
|
|
|
|
} else {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 05:01:49 -07:00
|
|
|
|
// Don't check the error because it's always nil on Linux.
|
|
|
|
|
adm, _ := aghos.HaveAdminRights()
|
|
|
|
|
|
2022-08-03 10:36:20 -07:00
|
|
|
|
return res == 1 || adm, nil
|
2022-04-19 05:01:49 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
// dhcpcdStaticConfig checks if interface is configured by /etc/dhcpcd.conf to
|
|
|
|
|
// have a static IP.
|
|
|
|
|
func (n interfaceName) dhcpcdStaticConfig(r io.Reader) (subsources []string, cont bool, err error) {
|
|
|
|
|
s := bufio.NewScanner(r)
|
2022-04-19 05:01:49 -07:00
|
|
|
|
if !findIfaceLine(s, string(n)) {
|
2021-08-13 09:20:17 -07:00
|
|
|
|
return nil, true, s.Err()
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
for s.Scan() {
|
|
|
|
|
line := strings.TrimSpace(s.Text())
|
|
|
|
|
fields := strings.Fields(line)
|
|
|
|
|
if len(fields) >= 2 &&
|
|
|
|
|
fields[0] == "static" &&
|
|
|
|
|
strings.HasPrefix(fields[1], "ip_address=") {
|
|
|
|
|
return nil, false, s.Err()
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
if len(fields) > 0 && fields[0] == "interface" {
|
|
|
|
|
// Another interface found.
|
|
|
|
|
break
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
return nil, true, s.Err()
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
// ifacesStaticConfig checks if the interface is configured by any file of
|
|
|
|
|
// /etc/network/interfaces format to have a static IP.
|
|
|
|
|
func (n interfaceName) ifacesStaticConfig(r io.Reader) (sub []string, cont bool, err error) {
|
|
|
|
|
s := bufio.NewScanner(r)
|
|
|
|
|
for s.Scan() {
|
|
|
|
|
line := strings.TrimSpace(s.Text())
|
|
|
|
|
if len(line) == 0 || line[0] == '#' {
|
|
|
|
|
continue
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
// TODO(e.burkov): As man page interfaces(5) says, a line may be
|
|
|
|
|
// extended across multiple lines by making the last character a
|
|
|
|
|
// backslash. Provide extended lines support.
|
2021-02-11 10:49:03 -07:00
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
fields := strings.Fields(line)
|
|
|
|
|
fieldsNum := len(fields)
|
2020-12-07 09:48:24 -07:00
|
|
|
|
|
2022-04-19 05:01:49 -07:00
|
|
|
|
// Man page interfaces(5) declares that interface definition should
|
|
|
|
|
// consist of the key word "iface" followed by interface name, and
|
|
|
|
|
// method at fourth field.
|
2021-08-13 09:20:17 -07:00
|
|
|
|
if fieldsNum >= 4 &&
|
|
|
|
|
fields[0] == "iface" && fields[1] == string(n) && fields[3] == "static" {
|
|
|
|
|
return nil, false, nil
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
if fieldsNum >= 2 && fields[0] == "source" {
|
|
|
|
|
sub = append(sub, fields[1])
|
2020-12-07 09:48:24 -07:00
|
|
|
|
}
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
return sub, true, s.Err()
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func ifaceHasStaticIP(ifaceName string) (has bool, err error) {
|
2022-04-19 05:01:49 -07:00
|
|
|
|
// TODO(a.garipov): Currently, this function returns the first definitive
|
|
|
|
|
// result. So if /etc/dhcpcd.conf has and /etc/network/interfaces has no
|
|
|
|
|
// static IP configuration, it will return true. Perhaps this is not the
|
|
|
|
|
// most desirable behavior.
|
2021-06-28 07:02:45 -07:00
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
|
iface := interfaceName(ifaceName)
|
|
|
|
|
|
2021-10-14 09:39:21 -07:00
|
|
|
|
for _, pair := range [...]struct {
|
2021-08-13 09:20:17 -07:00
|
|
|
|
aghos.FileWalker
|
|
|
|
|
filename string
|
|
|
|
|
}{{
|
|
|
|
|
FileWalker: iface.dhcpcdStaticConfig,
|
2022-04-19 05:01:49 -07:00
|
|
|
|
filename: dhcpcdConf,
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}, {
|
2021-08-13 09:20:17 -07:00
|
|
|
|
FileWalker: iface.ifacesStaticConfig,
|
2021-10-14 09:39:21 -07:00
|
|
|
|
filename: "etc/network/interfaces",
|
2021-06-28 07:02:45 -07:00
|
|
|
|
}} {
|
2022-04-19 05:01:49 -07:00
|
|
|
|
has, err = pair.Walk(rootDirFS, pair.filename)
|
2021-02-15 09:07:08 -07:00
|
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
2022-04-19 05:01:49 -07:00
|
|
|
|
} else if has {
|
2021-06-28 07:02:45 -07:00
|
|
|
|
return true, nil
|
|
|
|
|
}
|
2020-12-07 09:48:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-15 09:07:08 -07:00
|
|
|
|
return false, ErrNoStaticIPInfo
|
2020-12-07 09:48:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-31 10:11:06 -07:00
|
|
|
|
// findIfaceLine scans s until it finds the line that declares an interface with
|
|
|
|
|
// the given name. If findIfaceLine can't find the line, it returns false.
|
|
|
|
|
func findIfaceLine(s *bufio.Scanner, name string) (ok bool) {
|
|
|
|
|
for s.Scan() {
|
|
|
|
|
line := strings.TrimSpace(s.Text())
|
|
|
|
|
fields := strings.Fields(line)
|
|
|
|
|
if len(fields) == 2 && fields[0] == "interface" && fields[1] == name {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-15 10:01:38 -07:00
|
|
|
|
// ifaceSetStaticIP configures the system to retain its current IP on the
|
2022-04-19 05:01:49 -07:00
|
|
|
|
// interface through dhcpcd.conf.
|
2020-12-07 09:48:24 -07:00
|
|
|
|
func ifaceSetStaticIP(ifaceName string) (err error) {
|
2021-03-16 09:42:15 -07:00
|
|
|
|
ipNet := GetSubnet(ifaceName)
|
2022-11-02 06:18:02 -07:00
|
|
|
|
if !ipNet.Addr().IsValid() {
|
2021-05-24 07:28:11 -07:00
|
|
|
|
return errors.Error("can't get IP address")
|
2020-12-07 09:48:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 05:01:49 -07:00
|
|
|
|
body, err := os.ReadFile(dhcpcdConf)
|
2021-06-15 10:01:38 -07:00
|
|
|
|
if err != nil && !errors.Is(err, os.ErrNotExist) {
|
2020-12-07 09:48:24 -07:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 05:01:49 -07:00
|
|
|
|
gatewayIP := GatewayIP(ifaceName)
|
|
|
|
|
add := dhcpcdConfIface(ifaceName, ipNet, gatewayIP)
|
|
|
|
|
|
2020-12-07 09:48:24 -07:00
|
|
|
|
body = append(body, []byte(add)...)
|
2022-04-19 05:01:49 -07:00
|
|
|
|
err = maybe.WriteFile(dhcpcdConf, body, 0o644)
|
2020-12-07 09:48:24 -07:00
|
|
|
|
if err != nil {
|
2021-04-06 10:48:36 -07:00
|
|
|
|
return fmt.Errorf("writing conf: %w", err)
|
2020-12-07 09:48:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-15 10:01:38 -07:00
|
|
|
|
// dhcpcdConfIface returns configuration lines for the dhcpdc.conf files that
|
|
|
|
|
// configure the interface to have a static IP.
|
2022-11-02 06:18:02 -07:00
|
|
|
|
func dhcpcdConfIface(ifaceName string, subnet netip.Prefix, gateway netip.Addr) (conf string) {
|
2022-04-19 05:01:49 -07:00
|
|
|
|
b := &strings.Builder{}
|
|
|
|
|
stringutil.WriteToBuilder(
|
|
|
|
|
b,
|
|
|
|
|
"\n# ",
|
2021-06-15 10:01:38 -07:00
|
|
|
|
ifaceName,
|
2022-04-19 05:01:49 -07:00
|
|
|
|
" added by AdGuard Home.\ninterface ",
|
|
|
|
|
ifaceName,
|
|
|
|
|
"\nstatic ip_address=",
|
2022-11-02 06:18:02 -07:00
|
|
|
|
subnet.String(),
|
2022-04-19 05:01:49 -07:00
|
|
|
|
"\n",
|
|
|
|
|
)
|
2020-12-07 09:48:24 -07:00
|
|
|
|
|
2022-11-02 06:18:02 -07:00
|
|
|
|
if gateway != (netip.Addr{}) {
|
|
|
|
|
stringutil.WriteToBuilder(b, "static routers=", gateway.String(), "\n")
|
2020-12-07 09:48:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-02 06:18:02 -07:00
|
|
|
|
stringutil.WriteToBuilder(b, "static domain_name_servers=", subnet.Addr().String(), "\n\n")
|
2020-12-07 09:48:24 -07:00
|
|
|
|
|
2022-04-19 05:01:49 -07:00
|
|
|
|
return b.String()
|
2020-12-07 09:48:24 -07:00
|
|
|
|
}
|