Merge pull request #65 from steveeJ/fix-veth-setup

Fix veth setup

Fixes #61 #64
This commit is contained in:
Stefan Junker 2015-09-24 21:53:54 +02:00
commit f0266a2717
2 changed files with 15 additions and 7 deletions

View File

@ -20,6 +20,7 @@ import (
"net" "net"
"os" "os"
"github.com/appc/cni/pkg/ns"
"github.com/vishvananda/netlink" "github.com/vishvananda/netlink"
) )
@ -77,9 +78,9 @@ func RandomVethName() (string, error) {
return fmt.Sprintf("veth%x", entropy), nil return fmt.Sprintf("veth%x", entropy), nil
} }
// SetupVeth creates the virtual ethernet pair and sets up the container's end in the container netns. // SetupVeth sets up a virtual ethernet link.
// Setting up the host end up has to be done in the host netns outside of this function. // Should be in container netns, and will switch back to hostNS to set the host
// This is because moving the host veth end will cause it to be brought down automatically when it is moved to the host netns. // veth end up.
func SetupVeth(contVethName string, mtu int, hostNS *os.File) (hostVeth, contVeth netlink.Link, err error) { func SetupVeth(contVethName string, mtu int, hostNS *os.File) (hostVeth, contVeth netlink.Link, err error) {
var hostVethName string var hostVethName string
hostVethName, contVeth, err = makeVeth(contVethName, mtu) hostVethName, contVeth, err = makeVeth(contVethName, mtu)
@ -103,6 +104,17 @@ func SetupVeth(contVethName string, mtu int, hostNS *os.File) (hostVeth, contVet
return return
} }
err = ns.WithNetNS(hostNS, false, func(_ *os.File) error {
hostVeth, err := netlink.LinkByName(hostVethName)
if err != nil {
return fmt.Errorf("failed to lookup %q in %q: %v", hostVethName, hostNS.Name(), err)
}
if err = netlink.LinkSetUp(hostVeth); err != nil {
return fmt.Errorf("failed to set %q up: %v", hostVethName, err)
}
return nil
})
return return
} }

View File

@ -128,10 +128,6 @@ func setupHostVeth(vethName string, ipConf *types.IPConfig) error {
return fmt.Errorf("failed to lookup %q: %v", vethName, err) return fmt.Errorf("failed to lookup %q: %v", vethName, err)
} }
if err = netlink.LinkSetUp(veth); err != nil {
return fmt.Errorf("failed to set %q up: %v", vethName, err)
}
// TODO(eyakubovich): IPv6 // TODO(eyakubovich): IPv6
ipn := &net.IPNet{ ipn := &net.IPNet{
IP: ipConf.Gateway, IP: ipConf.Gateway,