diff options
author | Valentin Rothberg <vrothberg@suse.com> | 2018-08-13 14:45:05 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-14 14:25:14 +0000 |
commit | 973c9e6ba62eae77c71cfa6e13e87a36f2c54ec3 (patch) | |
tree | 71ada0377b1393b3d14214841e125b1d72e474da /pkg/apparmor/apparmor_linux_template.go | |
parent | 31e0dea5a020af9f1bf4d5d3a8e40fc1b2882474 (diff) | |
download | podman-973c9e6ba62eae77c71cfa6e13e87a36f2c54ec3.tar.gz podman-973c9e6ba62eae77c71cfa6e13e87a36f2c54ec3.tar.bz2 podman-973c9e6ba62eae77c71cfa6e13e87a36f2c54ec3.zip |
pkg/apparmor: move data under Linux/apparmor buildtags
Move all Linux-related data under the corresponding buildtags to reduce
the memory footprint and speed up compilation for non-apparmor builds.
Signed-off-by: Valentin Rothberg <vrothberg@suse.com>
Closes: #1262
Approved by: mheon
Diffstat (limited to 'pkg/apparmor/apparmor_linux_template.go')
-rw-r--r-- | pkg/apparmor/apparmor_linux_template.go | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/pkg/apparmor/apparmor_linux_template.go b/pkg/apparmor/apparmor_linux_template.go new file mode 100644 index 000000000..163ba3792 --- /dev/null +++ b/pkg/apparmor/apparmor_linux_template.go @@ -0,0 +1,43 @@ +// +build linux,apparmor + +package apparmor + +const libpodProfileTemplate = ` +{{range $value := .Imports}} +{{$value}} +{{end}} + +profile {{.Name}} flags=(attach_disconnected,mediate_deleted) { +{{range $value := .InnerImports}} + {{$value}} +{{end}} + + network, + capability, + file, + umount, + + deny @{PROC}/* w, # deny write for all files directly in /proc (not in a subdir) + # deny write to files not in /proc/<number>/** or /proc/sys/** + deny @{PROC}/{[^1-9],[^1-9][^0-9],[^1-9s][^0-9y][^0-9s],[^1-9][^0-9][^0-9][^0-9]*}/** w, + deny @{PROC}/sys/[^k]** w, # deny /proc/sys except /proc/sys/k* (effectively /proc/sys/kernel) + deny @{PROC}/sys/kernel/{?,??,[^s][^h][^m]**} w, # deny everything except shm* in /proc/sys/kernel/ + deny @{PROC}/sysrq-trigger rwklx, + deny @{PROC}/kcore rwklx, + + deny mount, + + deny /sys/[^f]*/** wklx, + deny /sys/f[^s]*/** wklx, + deny /sys/fs/[^c]*/** wklx, + deny /sys/fs/c[^g]*/** wklx, + deny /sys/fs/cg[^r]*/** wklx, + deny /sys/firmware/** rwklx, + deny /sys/kernel/security/** rwklx, + +{{if ge .Version 208095}} + # suppress ptrace denials when using using 'ps' inside a container + ptrace (trace,read) peer={{.Name}}, +{{end}} +} +` |