|
|
@ -4,122 +4,232 @@ import(
|
|
|
|
//Builtin
|
|
|
|
//Builtin
|
|
|
|
"errors"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"fmt"
|
|
|
|
//"math"
|
|
|
|
"math/rand"
|
|
|
|
"net"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"os"
|
|
|
|
//"os/exec"
|
|
|
|
|
|
|
|
"strings"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
|
|
//Internal
|
|
|
|
//Internal
|
|
|
|
|
|
|
|
"github.com/op/go-logging"
|
|
|
|
|
|
|
|
|
|
|
|
//External
|
|
|
|
//External
|
|
|
|
"github.com/milosgajdos83/tenus"
|
|
|
|
"github.com/milosgajdos83/tenus"
|
|
|
|
"github.com/op/go-logging"
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func BridgeInit(bridgeMAC string, nmIgnoreFile string, log *logging.Logger) (*HostNetwork, error) {
|
|
|
|
func BridgeInit(log *logging.Logger) (*HostNetwork, error) {
|
|
|
|
|
|
|
|
htn := new(HostNetwork)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if os.Getpid() == 1 {
|
|
|
|
if os.Getpid() == 1 {
|
|
|
|
panic(errors.New("Cannot use netinit from child."))
|
|
|
|
panic(errors.New("Cannot use netinit from child."))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Fetch the bridge interface by ifname
|
|
|
|
htn := &HostNetwork{
|
|
|
|
brL, err := net.InterfaceByName(ozDefaultInterfaceBridge)
|
|
|
|
BridgeMAC: bridgeMAC,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if _, err := os.Stat(nmIgnoreFile); os.IsNotExist(err) {
|
|
|
|
|
|
|
|
log.Warning("Warning! Network Manager may not properly configured to ignore the bridge interface! This may result in management conflicts!")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
br, err := tenus.BridgeFromName(ozDefaultInterfaceBridge)
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
log.Info("Bridge not found, attempting to create a new one")
|
|
|
|
log.Info("Bridge not found, attempting to create a new one")
|
|
|
|
|
|
|
|
|
|
|
|
_, err = createNewBridge(log)
|
|
|
|
br, err = tenus.NewBridgeWithName(ozDefaultInterfaceBridge)
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Unable to create bridge %+v", err)
|
|
|
|
return nil, fmt.Errorf("Unable to create bridge %+v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Load the new interface
|
|
|
|
|
|
|
|
brL, _ = net.InterfaceByName(ozDefaultInterfaceBridge)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
log.Info("Bridge already exists attempting to reuse it")
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Lookup the bridge ip addresses
|
|
|
|
if err:= htn.configureBridgeInterface(br, log); err != nil {
|
|
|
|
addrs, _ := brL.Addrs()
|
|
|
|
return nil, err
|
|
|
|
if len(addrs) == 0 {
|
|
|
|
}
|
|
|
|
return nil, errors.New("Host bridge does not have an IP address assigned")
|
|
|
|
|
|
|
|
|
|
|
|
brL := br.NetInterface()
|
|
|
|
|
|
|
|
addrs, err := brL.Addrs()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("Unable to get bridgre interface addresses: %+v", err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Build the ip range which we will use for the network
|
|
|
|
|
|
|
|
if err := htn.buildBridgeNetwork(addrs); err != nil {
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Try to build the network config from the bridge's address
|
|
|
|
return htn, nil
|
|
|
|
addrIndex := -1
|
|
|
|
|
|
|
|
for i, addr := range addrs {
|
|
|
|
|
|
|
|
bIP, brIP, _ := net.ParseCIDR(addr.String())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Discard IPv6 (TODO...)
|
|
|
|
|
|
|
|
if bIP.To4() != nil {
|
|
|
|
|
|
|
|
addrIndex = i
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bMask := []byte(brIP.Mask)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
htn.netmask = net.IPv4(bMask[0], bMask[1], bMask[2], bMask[3])
|
|
|
|
func PrepareSandboxNetwork(htn *HostNetwork, log *logging.Logger) (*SandboxNetwork, error) {
|
|
|
|
htn.gateway = net.ParseIP(strings.Split(addr.String(), "/")[0])
|
|
|
|
stn := new(SandboxNetwork)
|
|
|
|
htn.class = strings.Split(addr.String(), "/")[1]
|
|
|
|
|
|
|
|
htn.broadcast = net_getbroadcast(bIP, brIP.Mask)
|
|
|
|
stn.VethHost = tenus.MakeNetInterfaceName(ozDefaultInterfacePrefix)
|
|
|
|
|
|
|
|
stn.VethGuest = stn.VethHost + "1"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
stn.Gateway = htn.Gateway
|
|
|
|
|
|
|
|
stn.Class = htn.Class
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Allocate a new IP address
|
|
|
|
|
|
|
|
stn.Ip = getFreshIP(htn.Min, htn.Max, log)
|
|
|
|
|
|
|
|
if stn.Ip == "" {
|
|
|
|
|
|
|
|
return nil, errors.New("Unable to acquire random IP")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return stn, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
htn.min = inet_aton(bIP)
|
|
|
|
func NetInit(stn *SandboxNetwork, htn *HostNetwork, childPid int, log *logging.Logger) error {
|
|
|
|
htn.min++
|
|
|
|
if os.Getpid() == 1 {
|
|
|
|
|
|
|
|
panic(errors.New("Cannot use netSetup from child."))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Seed random number generator (poorly but we're not doing crypto)
|
|
|
|
|
|
|
|
rand.Seed(time.Now().Unix() ^ int64((os.Getpid() + childPid)))
|
|
|
|
|
|
|
|
|
|
|
|
htn.max = inet_aton(htn.broadcast)
|
|
|
|
log.Info("Configuring host veth pair '%s' with: %s", stn.VethHost, stn.Ip + "/" + htn.Class)
|
|
|
|
htn.max--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
break
|
|
|
|
// Fetch the bridge from the ifname
|
|
|
|
}
|
|
|
|
br, err := tenus.BridgeFromName(ozDefaultInterfaceBridge)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to attach to bridge interface %, %s.", ozDefaultInterfaceBridge, err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Make sure the bridge is configured and the link is up
|
|
|
|
|
|
|
|
// This really shouldn't be needed, but Network-Manager is a PITA
|
|
|
|
|
|
|
|
// and even if you actualy ignore the interface there's a race
|
|
|
|
|
|
|
|
// between the interface being created and setting it's hwaddr
|
|
|
|
|
|
|
|
//if err := htn.configureBridgeInterface(br, log); err != nil {
|
|
|
|
|
|
|
|
// return fmt.Errorf("Unable to reconfigure bridge: %+v", err)
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Create the veth pair
|
|
|
|
|
|
|
|
veth, err := tenus.NewVethPairWithOptions(stn.VethHost, tenus.VethOptions{PeerName: stn.VethGuest})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to create veth pair %s, %s.", stn.VethHost, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if addrIndex < 0 {
|
|
|
|
// Fetch the newly created hostside veth
|
|
|
|
return nil, errors.New("Could not find IPv4 for bridge interface")
|
|
|
|
vethIf, err := net.InterfaceByName(stn.VethHost)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to fetch veth pair %s, %s.", stn.VethHost, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return htn, nil
|
|
|
|
// Add the host side veth to the bridge
|
|
|
|
}
|
|
|
|
if err := br.AddSlaveIfc(vethIf); err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to add veth pair %s to bridge, %s.", stn.VethHost, err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Bring the host side veth interface up
|
|
|
|
|
|
|
|
if err := veth.SetLinkUp(); err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to bring veth pair %s up, %s.", stn.VethHost, err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Create a new bridge on the host
|
|
|
|
// Assign the veth path to the namespace
|
|
|
|
// Assign it an unused range
|
|
|
|
pid := childPid
|
|
|
|
// And bring the interface up
|
|
|
|
if err := veth.SetPeerLinkNsPid(pid); err != nil {
|
|
|
|
func createNewBridge(log *logging.Logger) (tenus.Bridger, error) {
|
|
|
|
return fmt.Errorf("Unable to add veth pair %s to namespace, %s.", stn.VethHost, err)
|
|
|
|
if os.Getpid() == 1 {
|
|
|
|
|
|
|
|
panic(errors.New("Cannot use netinit from child."))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Create the bridge
|
|
|
|
// Parse the ip/class into the the appropriate formats
|
|
|
|
br, err := tenus.NewBridgeWithName(ozDefaultInterfaceBridge)
|
|
|
|
vethGuestIp, vethGuestIpNet, err := net.ParseCIDR(stn.Ip + "/" + htn.Class)
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
return fmt.Errorf("Unable to parse ip %s, %s.", stn.Ip, err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set interface address in the namespace
|
|
|
|
|
|
|
|
if err := veth.SetPeerLinkNetInNs(pid, vethGuestIp, vethGuestIpNet, nil); err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to parse ip link in namespace, %s.", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Lookup an empty ip range
|
|
|
|
return nil
|
|
|
|
brIp, brIpNet, err := findEmptyRange(log)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
}
|
|
|
|
return nil, errors.New("Could not find an ip range to assign to the bridge")
|
|
|
|
|
|
|
|
|
|
|
|
func (stn *SandboxNetwork) Cleanup(log *logging.Logger) {
|
|
|
|
|
|
|
|
if os.Getpid() == 1 {
|
|
|
|
|
|
|
|
panic(errors.New("Cannot use Cleanup from child."))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if _, err := net.InterfaceByName(stn.VethHost); err != nil {
|
|
|
|
|
|
|
|
log.Info("No veth found to cleanup")
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tenus.DeleteLink(stn.VethHost)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Setup the bridge's address
|
|
|
|
func (htn *HostNetwork) configureBridgeInterface(br tenus.Bridger, log *logging.Logger) error {
|
|
|
|
if err := br.SetLinkIp(brIp, brIpNet); err != nil {
|
|
|
|
// Set the bridge mac address so it can be fucking ignored by Network-Manager.
|
|
|
|
return nil, err
|
|
|
|
if htn.BridgeMAC != "" {
|
|
|
|
|
|
|
|
if err := br.SetLinkMacAddress(htn.BridgeMAC); err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to set MAC address for gateway", err)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if htn.Gateway == nil {
|
|
|
|
|
|
|
|
// Lookup an empty ip range
|
|
|
|
|
|
|
|
brIp, brIpNet, err := findEmptyRange()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return fmt.Errorf("Could not find an ip range to assign to the bridge")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
htn.Gateway = brIp
|
|
|
|
|
|
|
|
htn.GatewayNet = brIpNet
|
|
|
|
|
|
|
|
log.Info("Found available range: %+v", htn.GatewayNet.String())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if err := br.SetLinkIp(htn.Gateway, htn.GatewayNet); err != nil {
|
|
|
|
|
|
|
|
if os.IsExist(err) {
|
|
|
|
|
|
|
|
log.Info("Bridge IP appears to be already assigned")
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return fmt.Errorf("Unable to set gateway IP", err)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Bridge the interface up
|
|
|
|
// Bridge the interface up
|
|
|
|
if err = br.SetLinkUp(); err != nil {
|
|
|
|
if err := br.SetLinkUp(); err != nil {
|
|
|
|
return nil, fmt.Errorf("Unable to bring bridge '%+v' up: %+v", ozDefaultInterfaceBridge, err)
|
|
|
|
return fmt.Errorf("Unable to bring bridge '%+v' up: %+v", ozDefaultInterfaceBridge, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return br, nil
|
|
|
|
return nil
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (htn *HostNetwork)buildBridgeNetwork(addrs []net.Addr) error {
|
|
|
|
|
|
|
|
// Try to build the network config from the bridge's address
|
|
|
|
|
|
|
|
addrIndex := -1
|
|
|
|
|
|
|
|
for i, addr := range addrs {
|
|
|
|
|
|
|
|
bIP, brIP, _ := net.ParseCIDR(addr.String())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Discard IPv6 (TODO...)
|
|
|
|
|
|
|
|
if bIP.To4() != nil {
|
|
|
|
|
|
|
|
addrIndex = i
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bMask := []byte(brIP.Mask)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
htn.Netmask = net.IPv4(bMask[0], bMask[1], bMask[2], bMask[3])
|
|
|
|
|
|
|
|
htn.Gateway = net.ParseIP(strings.Split(addr.String(), "/")[0])
|
|
|
|
|
|
|
|
htn.Class = strings.Split(addr.String(), "/")[1]
|
|
|
|
|
|
|
|
htn.Broadcast = net_getbroadcast(bIP, brIP.Mask)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
htn.Min = inet_aton(bIP)
|
|
|
|
|
|
|
|
htn.Min++
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
htn.Max = inet_aton(htn.Broadcast)
|
|
|
|
|
|
|
|
htn.Max--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if addrIndex < 0 {
|
|
|
|
|
|
|
|
return errors.New("Could not find IPv4 for bridge interface")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Look at all the assigned IP address and try to find an available range
|
|
|
|
// Look at all the assigned IP address and try to find an available range
|
|
|
|
// Returns a ip range in the CIDR form if found or an empty string
|
|
|
|
// Returns a ip range in the CIDR form if found or an empty string
|
|
|
|
func findEmptyRange(log *logging.Logger) (net.IP, *net.IPNet, error) {
|
|
|
|
func findEmptyRange() (net.IP, *net.IPNet, error) {
|
|
|
|
type localNet struct {
|
|
|
|
type localNet struct {
|
|
|
|
min uint64
|
|
|
|
min uint64
|
|
|
|
max uint64
|
|
|
|
max uint64
|
|
|
@ -186,10 +296,9 @@ func findEmptyRange(log *logging.Logger) (net.IP, *net.IPNet, error) {
|
|
|
|
bMin = bMax - 0xFE
|
|
|
|
bMin = bMax - 0xFE
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// XXX
|
|
|
|
availableRange = inet_ntoa(bMin).String() + "/24"
|
|
|
|
availableRange = inet_ntoa(bMin).String() + "/24"
|
|
|
|
|
|
|
|
|
|
|
|
log.Info("Found available range: %+v", availableRange)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return net.ParseCIDR(availableRange)
|
|
|
|
return net.ParseCIDR(availableRange)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|