2015-09-07 13:33:28 -04:00
|
|
|
package ns
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2016-05-16 11:51:40 -07:00
|
|
|
"sync"
|
2015-09-07 13:33:28 -04:00
|
|
|
"syscall"
|
|
|
|
|
|
|
|
log "github.com/Sirupsen/logrus"
|
2016-05-16 11:51:40 -07:00
|
|
|
"github.com/vishvananda/netlink"
|
2015-09-07 13:33:28 -04:00
|
|
|
"github.com/vishvananda/netns"
|
|
|
|
)
|
|
|
|
|
2016-05-16 11:51:40 -07:00
|
|
|
var (
|
|
|
|
initNs netns.NsHandle
|
|
|
|
initNl *netlink.Handle
|
|
|
|
initOnce sync.Once
|
|
|
|
)
|
2015-09-07 13:33:28 -04:00
|
|
|
|
|
|
|
// Init initializes a new network namespace
|
|
|
|
func Init() {
|
|
|
|
var err error
|
|
|
|
initNs, err = netns.Get()
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("could not get initial namespace: %v", err)
|
|
|
|
}
|
2016-05-16 11:51:40 -07:00
|
|
|
initNl, err = netlink.NewHandle()
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("could not create netlink handle on initial namespace: %v", err)
|
|
|
|
}
|
2015-09-07 13:33:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetNamespace sets the initial namespace handler
|
|
|
|
func SetNamespace() error {
|
|
|
|
if err := netns.Set(initNs); err != nil {
|
|
|
|
linkInfo, linkErr := getLink()
|
|
|
|
if linkErr != nil {
|
|
|
|
linkInfo = linkErr.Error()
|
|
|
|
}
|
|
|
|
return fmt.Errorf("failed to set to initial namespace, %v, initns fd %d: %v", linkInfo, initNs, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-23 10:55:17 +08:00
|
|
|
// ParseHandlerInt transforms the namespace handler into an integer
|
2015-09-07 13:33:28 -04:00
|
|
|
func ParseHandlerInt() int {
|
2016-05-16 11:51:40 -07:00
|
|
|
return int(getHandler())
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHandler returns the namespace handler
|
|
|
|
func getHandler() netns.NsHandle {
|
|
|
|
initOnce.Do(Init)
|
|
|
|
return initNs
|
2015-09-07 13:33:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func getLink() (string, error) {
|
|
|
|
return os.Readlink(fmt.Sprintf("/proc/%d/task/%d/ns/net", os.Getpid(), syscall.Gettid()))
|
|
|
|
}
|
2016-05-16 11:51:40 -07:00
|
|
|
|
|
|
|
// NlHandle returns the netlink handler
|
|
|
|
func NlHandle() *netlink.Handle {
|
|
|
|
initOnce.Do(Init)
|
|
|
|
return initNl
|
|
|
|
}
|