selinux

package
v1.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 2, 2019 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Enforcing constant indicate SELinux is in enforcing mode
	Enforcing = 1
	// Permissive constant to indicate SELinux is in permissive mode
	Permissive = 0
	// Disabled constant to indicate SELinux is disabled
	Disabled = -1
)

Variables

View Source
var (
	// ErrMCSAlreadyExists is returned when trying to allocate a duplicate MCS.
	ErrMCSAlreadyExists = errors.New("MCS label already exists")
	// ErrEmptyPath is returned when an empty path has been specified.
	ErrEmptyPath = errors.New("empty path")
)

Functions

func CanonicalizeContext

func CanonicalizeContext(val string) (string, error)

CanonicalizeContext takes a context string and writes it to the kernel the function then returns the context that the kernel will use. This function can be used to see if two contexts are equivalent

func Chcon

func Chcon(fpath string, label string, recurse bool) error

Chcon changes the `fpath` file object to the SELinux label `label`. If `fpath` is a directory and `recurse“ is true, Chcon will walk the directory tree setting the label.

func ClearLabels

func ClearLabels()

ClearLabels clears all reserved MLS/MCS levels

func ContainerLabels

func ContainerLabels() (processLabel string, fileLabel string)

ContainerLabels returns an allocated processLabel and fileLabel to be used for container labeling by the calling process.

func CopyLevel

func CopyLevel(src, dest string) (string, error)

CopyLevel returns a label with the MLS/MCS level from src label replaced on the dest label.

func CurrentLabel

func CurrentLabel() (string, error)

CurrentLabel returns the SELinux label of the current process thread, or an error.

func DefaultEnforceMode

func DefaultEnforceMode() int

DefaultEnforceMode returns the systems default SELinux mode Enforcing, Permissive or Disabled. Note this is is just the default at boot time. EnforceMode tells you the systems current mode.

func DisableSecOpt

func DisableSecOpt() []string

DisableSecOpt returns a security opt that can be used to disable SELinux labeling support for future container processes.

func DupSecOpt

func DupSecOpt(src string) ([]string, error)

DupSecOpt takes an SELinux process label and returns security options that can be used to set the SELinux Type and Level for future container processes.

func EnforceMode

func EnforceMode() int

EnforceMode returns the current SELinux mode Enforcing, Permissive, Disabled

func ExecLabel

func ExecLabel() (string, error)

ExecLabel returns the SELinux label that the kernel will use for any programs that are executed by the current process thread, or an error.

func FSCreateLabel

func FSCreateLabel() (string, error)

FSCreateLabel returns the default label the kernel which the kernel is using for file system objects created by this task. "" indicates default.

func FileLabel

func FileLabel(fpath string) (string, error)

FileLabel returns the SELinux label for this path or returns an error.

func GetEnabled

func GetEnabled() bool

GetEnabled returns whether selinux is currently enabled.

func KeyLabel added in v1.2.1

func KeyLabel() (string, error)

KeyLabel retrieves the current kernel keyring label setting

func PidLabel

func PidLabel(pid int) (string, error)

PidLabel returns the SELinux label of the given pid, or an error.

func ROFileLabel

func ROFileLabel() string

ROFileLabel returns the specified SELinux readonly file label

func ReleaseLabel

func ReleaseLabel(label string)

ReleaseLabel will unreserve the MLS/MCS Level field of the specified label. Allowing it to be used by another process.

func ReserveLabel

func ReserveLabel(label string)

ReserveLabel reserves the MLS/MCS level component of the specified label

func SecurityCheckContext

func SecurityCheckContext(val string) error

SecurityCheckContext validates that the SELinux label is understood by the kernel

func SetDisabled

func SetDisabled()

SetDisabled disables selinux support for the package

func SetEnforceMode

func SetEnforceMode(mode int) error

SetEnforceMode sets the current SELinux mode Enforcing, Permissive. Disabled is not valid, since this needs to be set at boot time.

func SetExecLabel

func SetExecLabel(label string) error

SetExecLabel sets the SELinux label that the kernel will use for any programs that are executed by the current process thread, or an error.

func SetFSCreateLabel

func SetFSCreateLabel(label string) error

SetFSCreateLabel tells kernel the label to create all file system objects created by this task. Setting label="" to return to default.

func SetFileLabel

func SetFileLabel(fpath string, label string) error

SetFileLabel sets the SELinux label for this path or returns an error.

func SetKeyLabel added in v1.2.1

func SetKeyLabel(label string) error

SetKeyLabel takes a process label and tells the kernel to assign the label to the next kernel keyring that gets created

func SetSocketLabel

func SetSocketLabel(label string) error

SetSocketLabel sets the SELinux label that the kernel will use for any programs that are executed by the current process thread, or an error.

func SocketLabel

func SocketLabel() (string, error)

SocketLabel retrieves the current socket label setting

Types

type Context

type Context map[string]string

Context is a representation of the SELinux label broken into 4 parts

func NewContext

func NewContext(label string) (Context, error)

NewContext creates a new Context struct from the specified label

func (Context) Get

func (c Context) Get() string

Get returns the Context as a string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL