コード例 #1
0
ファイル: selinux.go プロジェクト: hwpaas/docker
func Setexeccon(scon string) error {
	return writeCon(fmt.Sprintf("/proc/self/task/%d/attr/exec", system.Gettid()), scon)
}
コード例 #2
0
ファイル: selinux.go プロジェクト: hwpaas/docker
func Getfscreatecon() (string, error) {
	return readCon(fmt.Sprintf("/proc/self/task/%d/attr/fscreate", system.Gettid()))
}
コード例 #3
0
ファイル: selinux.go プロジェクト: hwpaas/docker
// Return the SELinux label of the current process thread.
func Getcon() (string, error) {
	return readCon(fmt.Sprintf("/proc/self/task/%d/attr/current", system.Gettid()))
}
コード例 #4
0
ファイル: selinux.go プロジェクト: hwpaas/docker
func Setfscreatecon(scon string) error {
	return writeCon(fmt.Sprintf("/proc/self/task/%d/attr/fscreate", system.Gettid()), scon)
}