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 GenLabels(options string) (string, string, error) { if !selinux.SelinuxEnabled() { return "", "", nil } var err error processLabel, mountLabel := selinux.GetLxcContexts() if processLabel != "" { var ( 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 }