8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
31 lines
692 B
Go
31 lines
692 B
Go
// +build linux
|
|
|
|
package configs
|
|
|
|
import "syscall"
|
|
|
|
func (n *Namespace) Syscall() int {
|
|
return namespaceInfo[n.Type]
|
|
}
|
|
|
|
var namespaceInfo = map[NamespaceType]int{
|
|
NEWNET: syscall.CLONE_NEWNET,
|
|
NEWNS: syscall.CLONE_NEWNS,
|
|
NEWUSER: syscall.CLONE_NEWUSER,
|
|
NEWIPC: syscall.CLONE_NEWIPC,
|
|
NEWUTS: syscall.CLONE_NEWUTS,
|
|
NEWPID: syscall.CLONE_NEWPID,
|
|
}
|
|
|
|
// CloneFlags parses the container's Namespaces options to set the correct
|
|
// flags on clone, unshare. This function returns flags only for new namespaces.
|
|
func (n *Namespaces) CloneFlags() uintptr {
|
|
var flag int
|
|
for _, v := range *n {
|
|
if v.Path != "" {
|
|
continue
|
|
}
|
|
flag |= namespaceInfo[v.Type]
|
|
}
|
|
return uintptr(flag)
|
|
}
|