diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-04-22 09:14:09 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-04-22 09:15:09 -0400 |
commit | c5fda9be5146d1e3b815f50b60b85cc535aa0215 (patch) | |
tree | df12e88028c231628b7261be72f5d6d0cfce088d /pkg/selinux | |
parent | b88126a8f859cc75ecfdeddd9ba1cc39c537aa4b (diff) | |
download | podman-c5fda9be5146d1e3b815f50b60b85cc535aa0215.tar.gz podman-c5fda9be5146d1e3b815f50b60b85cc535aa0215.tar.bz2 podman-c5fda9be5146d1e3b815f50b60b85cc535aa0215.zip |
Move selinux labeling support from pkg/util to pkg/selinux
The goal here is to make the package less heavy and not overload
the pkg/util.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/selinux')
-rw-r--r-- | pkg/selinux/selinux.go | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pkg/selinux/selinux.go b/pkg/selinux/selinux.go new file mode 100644 index 000000000..6eb3b5076 --- /dev/null +++ b/pkg/selinux/selinux.go @@ -0,0 +1,40 @@ +package util + +import ( + "github.com/opencontainers/selinux/go-selinux" +) + +// SELinuxKVMLabel returns labels for running kvm isolated containers +func SELinuxKVMLabel(cLabel string) (string, error) { + if cLabel == "" { + // selinux is disabled + return "", nil + } + processLabel, _ := selinux.KVMContainerLabels() + selinux.ReleaseLabel(processLabel) + return swapSELinuxLabel(cLabel, processLabel) +} + +// SELinuxInitLabel returns labels for running systemd based containers +func SELinuxInitLabel(cLabel string) (string, error) { + if cLabel == "" { + // selinux is disabled + return "", nil + } + processLabel, _ := selinux.InitContainerLabels() + selinux.ReleaseLabel(processLabel) + return swapSELinuxLabel(cLabel, processLabel) +} + +func swapSELinuxLabel(cLabel, processLabel string) (string, error) { + dcon, err := selinux.NewContext(cLabel) + if err != nil { + return "", err + } + scon, err := selinux.NewContext(processLabel) + if err != nil { + return "", err + } + dcon["type"] = scon["type"] + return dcon.Get(), nil +} |