2014-03-18 20:49:16 +00:00
|
|
|
// +build selinux,linux
|
|
|
|
|
|
|
|
package label
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/dotcloud/docker/pkg/selinux"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GenLabels(options string) (string, string, error) {
|
|
|
|
processLabel, mountLabel := selinux.GetLxcContexts()
|
|
|
|
var err error
|
|
|
|
if processLabel == "" { // SELinux is disabled
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
s := strings.Fields(options)
|
|
|
|
l := len(s)
|
|
|
|
if l > 0 {
|
|
|
|
pcon := selinux.NewContext(processLabel)
|
|
|
|
for i := 0; i < l; i++ {
|
|
|
|
o := strings.Split(s[i], "=")
|
|
|
|
pcon[o[0]] = o[1]
|
|
|
|
}
|
|
|
|
processLabel = pcon.Get()
|
|
|
|
mountLabel, err = selinux.CopyLevel(processLabel, mountLabel)
|
|
|
|
}
|
|
|
|
return processLabel, mountLabel, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func FormatMountLabel(src string, MountLabel string) string {
|
|
|
|
var mountLabel string
|
|
|
|
if src != "" {
|
|
|
|
mountLabel = src
|
|
|
|
if MountLabel != "" {
|
|
|
|
mountLabel = fmt.Sprintf("%s,context=\"%s\"", mountLabel, MountLabel)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if MountLabel != "" {
|
|
|
|
mountLabel = fmt.Sprintf("context=\"%s\"", MountLabel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return mountLabel
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetProcessLabel(processLabel string) error {
|
|
|
|
if selinux.SelinuxEnabled() {
|
|
|
|
return selinux.Setexeccon(processLabel)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetProcessLabel() (string, error) {
|
|
|
|
if selinux.SelinuxEnabled() {
|
|
|
|
return selinux.Getexeccon()
|
|
|
|
}
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetFileLabel(path string, fileLabel string) error {
|
|
|
|
if selinux.SelinuxEnabled() && fileLabel != "" {
|
|
|
|
return selinux.Setfilecon(path, fileLabel)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPidCon(pid int) (string, error) {
|
|
|
|
return selinux.Getpidcon(pid)
|
|
|
|
}
|
2014-04-01 14:03:29 +00:00
|
|
|
|
|
|
|
func Init() {
|
|
|
|
selinux.SelinuxEnabled()
|
|
|
|
}
|