123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- // +build windows
- // 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"
- "fmt"
- "net"
- "github.com/flannel-io/flannel/pkg/powershell"
- )
- // GetInterfaceIP4Addr returns the IPv4 address for the given network interface
- func GetInterfaceIP4Addr(iface *net.Interface) (net.IP, error) {
- addrs, err := iface.Addrs()
- if err != nil {
- return nil, err
- }
- for _, addr := range addrs {
- var ip net.IP
- switch v := addr.(type) {
- case *net.IPAddr:
- ip = v.IP
- case *net.IPNet:
- ip = v.IP
- }
- if ip != nil && ip.To4() != nil {
- return ip, nil
- }
- }
- return nil, errors.New("no IPv4 address found for given interface")
- }
- // GetDefaultGatewayInterface returns the first network interface found with a default gateway set
- func GetDefaultGatewayInterface() (*net.Interface, error) {
- index, err := getDefaultGatewayInterfaceIndex()
- if err != nil {
- return nil, err
- }
- return net.InterfaceByIndex(index)
- }
- func getDefaultGatewayInterfaceIndex() (int, error) {
- powerShellJsonData := struct {
- IfIndex int `json:"ifIndex"`
- }{-1}
- err := powershell.RunCommandWithJsonResult("Get-NetRoute | Where { $_.DestinationPrefix -eq '0.0.0.0/0' } | Select-Object -Property ifIndex", &powerShellJsonData)
- if err != nil {
- return -1, err
- }
- if powerShellJsonData.IfIndex < 0 {
- return -1, errors.New("unable to find default gateway interface index")
- }
- return powerShellJsonData.IfIndex, nil
- }
- // GetInterfaceByIP tries to get the network interface with the given ip address
- func GetInterfaceByIP(search net.IP) (*net.Interface, error) {
- ifaces, err := net.Interfaces()
- if err != nil {
- return nil, err
- }
- for _, i := range ifaces {
- addrs, err := i.Addrs()
- if err != nil {
- return nil, err
- }
- for _, addr := range addrs {
- var ip net.IP
- switch v := addr.(type) {
- case *net.IPNet:
- ip = v.IP
- case *net.IPAddr:
- ip = v.IP
- }
- if ip != nil && ip.Equal(search) {
- return &i, nil
- }
- }
- }
- return nil, errors.New("no interface with given IP found")
- }
- // EnableForwardingForInterface enables forwarding for given interface.
- // The process must run with elevated rights. Otherwise the function will fail with an "Access Denied" error.
- func EnableForwardingForInterface(iface *net.Interface) error {
- return setForwardingForInterface(iface, true)
- }
- // DisableForwardingForInterface disables forwarding for given interface.
- // The process must run with elevated rights. Otherwise the function will fail with an "Access Denied" error.
- func DisableForwardingForInterface(iface *net.Interface) error {
- return setForwardingForInterface(iface, false)
- }
- func setForwardingForInterface(iface *net.Interface, forwarding bool) error {
- value := "Enabled"
- if !forwarding {
- value = "Disabled"
- }
- _, err := powershell.RunCommandf("Set-NetIPInterface -ifIndex %d -AddressFamily IPv4 -Forwarding %s", iface.Index, value)
- if err != nil {
- return err
- }
- return nil
- }
- func IsForwardingEnabledForInterface(iface *net.Interface) (bool, error) {
- powerShellJsonData := struct {
- Forwarding int `json:"Forwarding"`
- }{0}
- err := powershell.RunCommandWithJsonResult(fmt.Sprintf("Get-NetIPInterface -ifIndex %d -AddressFamily IPv4 | Select-Object -Property Forwarding", iface.Index), &powerShellJsonData)
- if err != nil {
- return false, err
- }
- return powerShellJsonData.Forwarding == 1, nil
- }
- func GetInterfaceByIP6(ip net.IP) (*net.Interface, error) { return nil, nil }
- func GetInterfaceIP6Addr(iface *net.Interface) (net.IP, error) { return nil, nil }
- func GetDefaultV6GatewayInterface() (*net.Interface, error) { return nil, nil }
|