2015-03-08 18:36:59 +00:00
|
|
|
// Copyright (C) 2015 The Syncthing Authors.
|
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2015-03-08 18:36:59 +00:00
|
|
|
|
|
|
|
package osutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2024-09-23 12:32:19 +00:00
|
|
|
// GetInterfaceAddrs returns the IP networks of all interfaces that are up.
|
|
|
|
// Point-to-point interfaces are exluded unless includePtP is true.
|
|
|
|
func GetInterfaceAddrs(includePtP bool) ([]*net.IPNet, error) {
|
2024-09-21 07:27:23 +00:00
|
|
|
intfs, err := net.Interfaces()
|
2015-03-08 18:36:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-07-18 14:44:37 +00:00
|
|
|
var addrs []net.Addr
|
|
|
|
|
2024-09-21 07:27:23 +00:00
|
|
|
for _, intf := range intfs {
|
|
|
|
if intf.Flags&net.FlagRunning == 0 {
|
2022-07-07 17:19:29 +00:00
|
|
|
continue
|
|
|
|
}
|
2024-09-23 12:32:19 +00:00
|
|
|
if !includePtP && intf.Flags&net.FlagPointToPoint != 0 {
|
2024-09-21 07:27:23 +00:00
|
|
|
// Point-to-point interfaces are typically VPNs and similar
|
|
|
|
// which, for our purposes, do not qualify as LANs.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
intfAddrs, err := intf.Addrs()
|
2022-07-07 17:19:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-09-21 07:27:23 +00:00
|
|
|
addrs = append(addrs, intfAddrs...)
|
2022-07-07 17:19:29 +00:00
|
|
|
}
|
2015-03-08 18:36:59 +00:00
|
|
|
|
|
|
|
nets := make([]*net.IPNet, 0, len(addrs))
|
|
|
|
|
|
|
|
for _, addr := range addrs {
|
|
|
|
net, ok := addr.(*net.IPNet)
|
|
|
|
if ok {
|
|
|
|
nets = append(nets, net)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nets, nil
|
|
|
|
}
|
2022-09-14 06:44:46 +00:00
|
|
|
|
|
|
|
func IPFromAddr(addr net.Addr) (net.IP, error) {
|
|
|
|
switch a := addr.(type) {
|
|
|
|
case *net.TCPAddr:
|
|
|
|
return a.IP, nil
|
|
|
|
case *net.UDPAddr:
|
|
|
|
return a.IP, nil
|
|
|
|
default:
|
|
|
|
host, _, err := net.SplitHostPort(addr.String())
|
|
|
|
return net.ParseIP(host), err
|
|
|
|
}
|
|
|
|
}
|