123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // Copyright 2015 flannel authors
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package ip
- import (
- "errors"
- "net"
- "syscall"
- "github.com/coreos/flannel/Godeps/_workspace/src/github.com/vishvananda/netlink"
- )
- func getIfaceAddrs(iface *net.Interface) ([]netlink.Addr, error) {
- link := &netlink.Device{
- netlink.LinkAttrs{
- Index: iface.Index,
- },
- }
- return netlink.AddrList(link, syscall.AF_INET)
- }
- func GetIfaceIP4Addr(iface *net.Interface) (net.IP, error) {
- addrs, err := getIfaceAddrs(iface)
- if err != nil {
- return nil, err
- }
- // prefer non link-local addr
- var ll net.IP
- for _, addr := range addrs {
- if addr.IP.To4() == nil {
- continue
- }
- if addr.IP.IsGlobalUnicast() {
- return addr.IP, nil
- }
- if addr.IP.IsLinkLocalUnicast() {
- ll = addr.IP
- }
- }
- if ll != nil {
- // didn't find global but found link-local. it'll do.
- return ll, nil
- }
- return nil, errors.New("No IPv4 address found for given interface")
- }
- func GetIfaceIP4AddrMatch(iface *net.Interface, matchAddr net.IP) error {
- addrs, err := getIfaceAddrs(iface)
- if err != nil {
- return err
- }
- for _, addr := range addrs {
- // Attempt to parse the address in CIDR notation
- // and assert it is IPv4
- if addr.IP.To4() != nil {
- if addr.IP.To4().Equal(matchAddr) {
- return nil
- }
- }
- }
- return errors.New("No IPv4 address found for given interface")
- }
- func GetDefaultGatewayIface() (*net.Interface, error) {
- routes, err := netlink.RouteList(nil, syscall.AF_INET)
- if err != nil {
- return nil, err
- }
- for _, route := range routes {
- if route.Dst == nil || route.Dst.String() == "0.0.0.0/0" {
- if route.LinkIndex <= 0 {
- return nil, errors.New("Found default route but could not determine interface")
- }
- return net.InterfaceByIndex(route.LinkIndex)
- }
- }
- return nil, errors.New("Unable to find default route")
- }
- func GetInterfaceByIP(ip net.IP) (*net.Interface, error) {
- ifaces, err := net.Interfaces()
- if err != nil {
- return nil, err
- }
- for _, iface := range ifaces {
- err := GetIfaceIP4AddrMatch(&iface, ip)
- if err == nil {
- return &iface, nil
- }
- }
- return nil, errors.New("No interface with given IP found")
- }
|