2011-06-03 12:35:42 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Network interface identification for Linux
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
// If the ifindex is zero, interfaceTable returns mappings of all
|
2012-03-13 18:29:07 -06:00
|
|
|
// network interfaces. Otherwise it returns a mapping of a specific
|
2011-06-03 12:35:42 -06:00
|
|
|
// interface.
|
2011-11-01 20:05:34 -06:00
|
|
|
func interfaceTable(ifindex int) ([]Interface, error) {
|
2011-12-21 05:39:00 -07:00
|
|
|
tab, err := syscall.NetlinkRIB(syscall.RTM_GETLINK, syscall.AF_UNSPEC)
|
|
|
|
if err != nil {
|
|
|
|
return nil, os.NewSyscallError("netlink rib", err)
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
|
|
|
|
2011-12-21 05:39:00 -07:00
|
|
|
msgs, err := syscall.ParseNetlinkMessage(tab)
|
|
|
|
if err != nil {
|
|
|
|
return nil, os.NewSyscallError("netlink message", err)
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
|
|
|
|
2012-01-31 08:36:45 -07:00
|
|
|
var ift []Interface
|
2011-06-03 12:35:42 -06:00
|
|
|
for _, m := range msgs {
|
|
|
|
switch m.Header.Type {
|
|
|
|
case syscall.NLMSG_DONE:
|
|
|
|
goto done
|
|
|
|
case syscall.RTM_NEWLINK:
|
|
|
|
ifim := (*syscall.IfInfomsg)(unsafe.Pointer(&m.Data[0]))
|
|
|
|
if ifindex == 0 || ifindex == int(ifim.Index) {
|
2011-12-21 05:39:00 -07:00
|
|
|
attrs, err := syscall.ParseNetlinkRouteAttr(&m)
|
|
|
|
if err != nil {
|
|
|
|
return nil, os.NewSyscallError("netlink routeattr", err)
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
2011-12-21 05:39:00 -07:00
|
|
|
ifi := newLink(ifim, attrs)
|
2011-06-03 12:35:42 -06:00
|
|
|
ift = append(ift, ifi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
return ift, nil
|
|
|
|
}
|
|
|
|
|
2011-12-21 05:39:00 -07:00
|
|
|
func newLink(ifim *syscall.IfInfomsg, attrs []syscall.NetlinkRouteAttr) Interface {
|
2011-06-14 11:32:52 -06:00
|
|
|
ifi := Interface{Index: int(ifim.Index), Flags: linkFlags(ifim.Flags)}
|
2011-06-03 12:35:42 -06:00
|
|
|
for _, a := range attrs {
|
|
|
|
switch a.Attr.Type {
|
|
|
|
case syscall.IFLA_ADDRESS:
|
|
|
|
var nonzero bool
|
|
|
|
for _, b := range a.Value {
|
|
|
|
if b != 0 {
|
|
|
|
nonzero = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if nonzero {
|
|
|
|
ifi.HardwareAddr = a.Value[:]
|
|
|
|
}
|
|
|
|
case syscall.IFLA_IFNAME:
|
2011-06-14 11:32:52 -06:00
|
|
|
ifi.Name = string(a.Value[:len(a.Value)-1])
|
2011-06-03 12:35:42 -06:00
|
|
|
case syscall.IFLA_MTU:
|
2012-04-04 18:41:36 -06:00
|
|
|
ifi.MTU = int(*(*uint32)(unsafe.Pointer(&a.Value[:4][0])))
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ifi
|
|
|
|
}
|
|
|
|
|
2011-06-14 11:32:52 -06:00
|
|
|
func linkFlags(rawFlags uint32) Flags {
|
|
|
|
var f Flags
|
|
|
|
if rawFlags&syscall.IFF_UP != 0 {
|
|
|
|
f |= FlagUp
|
|
|
|
}
|
|
|
|
if rawFlags&syscall.IFF_BROADCAST != 0 {
|
|
|
|
f |= FlagBroadcast
|
|
|
|
}
|
|
|
|
if rawFlags&syscall.IFF_LOOPBACK != 0 {
|
|
|
|
f |= FlagLoopback
|
|
|
|
}
|
|
|
|
if rawFlags&syscall.IFF_POINTOPOINT != 0 {
|
|
|
|
f |= FlagPointToPoint
|
|
|
|
}
|
|
|
|
if rawFlags&syscall.IFF_MULTICAST != 0 {
|
|
|
|
f |= FlagMulticast
|
|
|
|
}
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2011-06-03 12:35:42 -06:00
|
|
|
// If the ifindex is zero, interfaceAddrTable returns addresses
|
|
|
|
// for all network interfaces. Otherwise it returns addresses
|
|
|
|
// for a specific interface.
|
2011-11-01 20:05:34 -06:00
|
|
|
func interfaceAddrTable(ifindex int) ([]Addr, error) {
|
2011-12-21 05:39:00 -07:00
|
|
|
tab, err := syscall.NetlinkRIB(syscall.RTM_GETADDR, syscall.AF_UNSPEC)
|
|
|
|
if err != nil {
|
|
|
|
return nil, os.NewSyscallError("netlink rib", err)
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
|
|
|
|
2011-12-21 05:39:00 -07:00
|
|
|
msgs, err := syscall.ParseNetlinkMessage(tab)
|
|
|
|
if err != nil {
|
|
|
|
return nil, os.NewSyscallError("netlink message", err)
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
2011-09-23 08:37:42 -06:00
|
|
|
|
2011-12-21 05:39:00 -07:00
|
|
|
ifat, err := addrTable(msgs, ifindex)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
2011-09-23 08:37:42 -06:00
|
|
|
return ifat, nil
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
|
|
|
|
2011-11-01 20:05:34 -06:00
|
|
|
func addrTable(msgs []syscall.NetlinkMessage, ifindex int) ([]Addr, error) {
|
2011-06-03 12:35:42 -06:00
|
|
|
var ifat []Addr
|
|
|
|
for _, m := range msgs {
|
|
|
|
switch m.Header.Type {
|
|
|
|
case syscall.NLMSG_DONE:
|
|
|
|
goto done
|
|
|
|
case syscall.RTM_NEWADDR:
|
|
|
|
ifam := (*syscall.IfAddrmsg)(unsafe.Pointer(&m.Data[0]))
|
2013-02-19 15:31:44 -07:00
|
|
|
ifi, err := InterfaceByIndex(int(ifam.Index))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2011-06-03 12:35:42 -06:00
|
|
|
if ifindex == 0 || ifindex == int(ifam.Index) {
|
2011-12-21 05:39:00 -07:00
|
|
|
attrs, err := syscall.ParseNetlinkRouteAttr(&m)
|
|
|
|
if err != nil {
|
|
|
|
return nil, os.NewSyscallError("netlink routeattr", err)
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
2013-02-19 15:31:44 -07:00
|
|
|
ifat = append(ifat, newAddr(attrs, ifi, ifam))
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
return ifat, nil
|
|
|
|
}
|
|
|
|
|
2013-02-19 15:31:44 -07:00
|
|
|
func newAddr(attrs []syscall.NetlinkRouteAttr, ifi *Interface, ifam *syscall.IfAddrmsg) Addr {
|
2011-12-21 05:39:00 -07:00
|
|
|
ifa := &IPNet{}
|
2011-06-03 12:35:42 -06:00
|
|
|
for _, a := range attrs {
|
2013-02-19 15:31:44 -07:00
|
|
|
if ifi.Flags&FlagPointToPoint != 0 && a.Attr.Type == syscall.IFA_LOCAL ||
|
|
|
|
ifi.Flags&FlagPointToPoint == 0 && a.Attr.Type == syscall.IFA_ADDRESS {
|
|
|
|
switch ifam.Family {
|
2011-06-03 12:35:42 -06:00
|
|
|
case syscall.AF_INET:
|
2011-12-21 05:39:00 -07:00
|
|
|
ifa.IP = IPv4(a.Value[0], a.Value[1], a.Value[2], a.Value[3])
|
2013-02-19 15:31:44 -07:00
|
|
|
ifa.Mask = CIDRMask(int(ifam.Prefixlen), 8*IPv4len)
|
2011-06-03 12:35:42 -06:00
|
|
|
case syscall.AF_INET6:
|
2011-12-21 05:39:00 -07:00
|
|
|
ifa.IP = make(IP, IPv6len)
|
2011-06-03 12:35:42 -06:00
|
|
|
copy(ifa.IP, a.Value[:])
|
2013-02-19 15:31:44 -07:00
|
|
|
ifa.Mask = CIDRMask(int(ifam.Prefixlen), 8*IPv6len)
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-12-21 05:39:00 -07:00
|
|
|
return ifa
|
2011-06-03 12:35:42 -06:00
|
|
|
}
|
2011-08-03 22:22:52 -06:00
|
|
|
|
|
|
|
// If the ifindex is zero, interfaceMulticastAddrTable returns
|
|
|
|
// addresses for all network interfaces. Otherwise it returns
|
|
|
|
// addresses for a specific interface.
|
2011-11-01 20:05:34 -06:00
|
|
|
func interfaceMulticastAddrTable(ifindex int) ([]Addr, error) {
|
2011-08-03 22:22:52 -06:00
|
|
|
var (
|
2011-11-01 20:05:34 -06:00
|
|
|
err error
|
2011-12-21 05:39:00 -07:00
|
|
|
ifi *Interface
|
2011-08-03 22:22:52 -06:00
|
|
|
)
|
|
|
|
if ifindex > 0 {
|
|
|
|
ifi, err = InterfaceByIndex(ifindex)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2012-02-22 14:26:31 -07:00
|
|
|
ifmat4 := parseProcNetIGMP("/proc/net/igmp", ifi)
|
|
|
|
ifmat6 := parseProcNetIGMP6("/proc/net/igmp6", ifi)
|
2011-08-03 22:22:52 -06:00
|
|
|
return append(ifmat4, ifmat6...), nil
|
|
|
|
}
|
|
|
|
|
2012-02-22 14:26:31 -07:00
|
|
|
func parseProcNetIGMP(path string, ifi *Interface) []Addr {
|
|
|
|
fd, err := open(path)
|
2011-08-03 22:22:52 -06:00
|
|
|
if err != nil {
|
2011-08-04 17:20:13 -06:00
|
|
|
return nil
|
2011-08-03 22:22:52 -06:00
|
|
|
}
|
|
|
|
defer fd.close()
|
|
|
|
|
2012-01-31 08:36:45 -07:00
|
|
|
var (
|
|
|
|
ifmat []Addr
|
|
|
|
name string
|
|
|
|
)
|
2011-08-03 22:22:52 -06:00
|
|
|
fd.readLine() // skip first line
|
|
|
|
b := make([]byte, IPv4len)
|
|
|
|
for l, ok := fd.readLine(); ok; l, ok = fd.readLine() {
|
2012-02-22 14:26:31 -07:00
|
|
|
f := splitAtBytes(l, " :\r\t\n")
|
|
|
|
if len(f) < 4 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch {
|
|
|
|
case l[0] != ' ' && l[0] != '\t': // new interface line
|
|
|
|
name = f[1]
|
|
|
|
case len(f[0]) == 8:
|
2011-08-03 22:22:52 -06:00
|
|
|
if ifi == nil || name == ifi.Name {
|
2012-04-04 18:41:36 -06:00
|
|
|
// The Linux kernel puts the IP
|
|
|
|
// address in /proc/net/igmp in native
|
|
|
|
// endianness.
|
2012-03-05 14:36:05 -07:00
|
|
|
for i := 0; i+1 < len(f[0]); i += 2 {
|
|
|
|
b[i/2], _ = xtoi2(f[0][i:i+2], 0)
|
|
|
|
}
|
2012-04-04 18:41:36 -06:00
|
|
|
i := *(*uint32)(unsafe.Pointer(&b[:4][0]))
|
|
|
|
ifma := IPAddr{IP: IPv4(byte(i>>24), byte(i>>16), byte(i>>8), byte(i))}
|
2011-08-03 22:22:52 -06:00
|
|
|
ifmat = append(ifmat, ifma.toAddr())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-08-04 17:20:13 -06:00
|
|
|
return ifmat
|
2011-08-03 22:22:52 -06:00
|
|
|
}
|
|
|
|
|
2012-02-22 14:26:31 -07:00
|
|
|
func parseProcNetIGMP6(path string, ifi *Interface) []Addr {
|
|
|
|
fd, err := open(path)
|
2011-08-03 22:22:52 -06:00
|
|
|
if err != nil {
|
2011-08-04 17:20:13 -06:00
|
|
|
return nil
|
2011-08-03 22:22:52 -06:00
|
|
|
}
|
|
|
|
defer fd.close()
|
|
|
|
|
2012-01-31 08:36:45 -07:00
|
|
|
var ifmat []Addr
|
2011-08-03 22:22:52 -06:00
|
|
|
b := make([]byte, IPv6len)
|
|
|
|
for l, ok := fd.readLine(); ok; l, ok = fd.readLine() {
|
2012-02-22 14:26:31 -07:00
|
|
|
f := splitAtBytes(l, " \r\t\n")
|
|
|
|
if len(f) < 6 {
|
|
|
|
continue
|
|
|
|
}
|
2011-08-03 22:22:52 -06:00
|
|
|
if ifi == nil || f[1] == ifi.Name {
|
2012-03-05 14:36:05 -07:00
|
|
|
for i := 0; i+1 < len(f[2]); i += 2 {
|
|
|
|
b[i/2], _ = xtoi2(f[2][i:i+2], 0)
|
|
|
|
}
|
2011-08-03 22:22:52 -06:00
|
|
|
ifma := IPAddr{IP: IP{b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7], b[8], b[9], b[10], b[11], b[12], b[13], b[14], b[15]}}
|
|
|
|
ifmat = append(ifmat, ifma.toAddr())
|
|
|
|
}
|
|
|
|
}
|
2011-08-04 17:20:13 -06:00
|
|
|
return ifmat
|
2011-08-03 22:22:52 -06:00
|
|
|
}
|