當前位置: 首頁>>代碼示例>>Golang>>正文


Golang selinux.SelinuxEnabled函數代碼示例

本文整理匯總了Golang中github.com/dotcloud/docker/pkg/selinux.SelinuxEnabled函數的典型用法代碼示例。如果您正苦於以下問題:Golang SelinuxEnabled函數的具體用法?Golang SelinuxEnabled怎麽用?Golang SelinuxEnabled使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了SelinuxEnabled函數的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: FormatMountLabel

func FormatMountLabel(src string, mountLabel string) string {
	if selinux.SelinuxEnabled() && mountLabel != "" {
		switch src {
		case "":
			src = fmt.Sprintf("%s,context=%s", src, mountLabel)
		default:
			src = fmt.Sprintf("context=%s", mountLabel)
		}
	}
	return src
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:11,代碼來源:label_selinux.go

示例2: testSetfilecon

func testSetfilecon(t *testing.T) {
	if selinux.SelinuxEnabled() {
		tmp := "selinux_test"
		out, _ := os.OpenFile(tmp, os.O_WRONLY, 0)
		out.Close()
		err := selinux.Setfilecon(tmp, "system_u:object_r:bin_t:s0")
		if err != nil {
			t.Log("Setfilecon failed")
			t.Fatal(err)
		}
		os.Remove(tmp)
	}
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:13,代碼來源:selinux_test.go

示例3: TestSELinux

func TestSELinux(t *testing.T) {
	var (
		err            error
		plabel, flabel string
	)

	if selinux.SelinuxEnabled() {
		t.Log("Enabled")
		plabel, flabel = selinux.GetLxcContexts()
		t.Log(plabel)
		t.Log(flabel)
		plabel, flabel = selinux.GetLxcContexts()
		t.Log(plabel)
		t.Log(flabel)
		t.Log("getenforce ", selinux.SelinuxGetEnforce())
		t.Log("getenforcemode ", selinux.SelinuxGetEnforceMode())
		pid := os.Getpid()
		t.Log("PID:%d MCS:%s\n", pid, selinux.IntToMcs(pid, 1023))
		t.Log(selinux.Getcon())
		t.Log(selinux.Getfilecon("/etc/passwd"))
		err = selinux.Setfscreatecon("unconfined_u:unconfined_r:unconfined_t:s0")
		if err == nil {
			t.Log(selinux.Getfscreatecon())
		} else {
			t.Log("setfscreatecon failed", err)
			t.Fatal(err)
		}
		err = selinux.Setfscreatecon("")
		if err == nil {
			t.Log(selinux.Getfscreatecon())
		} else {
			t.Log("setfscreatecon failed", err)
			t.Fatal(err)
		}
		t.Log(selinux.Getpidcon(1))
		t.Log(selinux.GetSelinuxMountPoint())
	} else {
		t.Log("Disabled")
	}
}
開發者ID:jpgbus,項目名稱:docker,代碼行數:40,代碼來源:selinux_test.go

示例4: GenLabels

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
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:23,代碼來源:label_selinux.go

示例5: Init

func Init() {
	selinux.SelinuxEnabled()
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:3,代碼來源:label_selinux.go

示例6: GetPidCon

func GetPidCon(pid int) (string, error) {
	if !selinux.SelinuxEnabled() {
		return "", nil
	}
	return selinux.Getpidcon(pid)
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:6,代碼來源:label_selinux.go

示例7: SetFileLabel

func SetFileLabel(path string, fileLabel string) error {
	if selinux.SelinuxEnabled() && fileLabel != "" {
		return selinux.Setfilecon(path, fileLabel)
	}
	return nil
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:6,代碼來源:label_selinux.go

示例8: GetProcessLabel

func GetProcessLabel() (string, error) {
	if selinux.SelinuxEnabled() {
		return selinux.Getexeccon()
	}
	return "", nil
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:6,代碼來源:label_selinux.go

示例9: SetProcessLabel

func SetProcessLabel(processLabel string) error {
	if selinux.SelinuxEnabled() {
		return selinux.Setexeccon(processLabel)
	}
	return nil
}
開發者ID:ChaosCloud,項目名稱:docker,代碼行數:6,代碼來源:label_selinux.go


注:本文中的github.com/dotcloud/docker/pkg/selinux.SelinuxEnabled函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。