mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
apparmor: fix version checks to work properly
Using {{if major}}{{if minor}} doesn't work as expected when the major version changes. In addition, this didn't support patch levels (which is necessary in some cases when distributions ship apparmor weirdly). Signed-off-by: Aleksa Sarai <asarai@suse.com>
This commit is contained in:
parent
7d9532552b
commit
4bf7a84c96
6 changed files with 79 additions and 59 deletions
|
@ -11,8 +11,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type profileData struct {
|
type profileData struct {
|
||||||
MajorVersion int
|
Version int
|
||||||
MinorVersion int
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -23,13 +22,12 @@ func main() {
|
||||||
// parse the arg
|
// parse the arg
|
||||||
apparmorProfilePath := os.Args[1]
|
apparmorProfilePath := os.Args[1]
|
||||||
|
|
||||||
majorVersion, minorVersion, err := aaparser.GetVersion()
|
version, err := aaparser.GetVersion()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
data := profileData{
|
data := profileData{
|
||||||
MajorVersion: majorVersion,
|
Version: version,
|
||||||
MinorVersion: minorVersion,
|
|
||||||
}
|
}
|
||||||
fmt.Printf("apparmor_parser is of version %+v\n", data)
|
fmt.Printf("apparmor_parser is of version %+v\n", data)
|
||||||
|
|
||||||
|
|
|
@ -20,11 +20,11 @@ profile /usr/bin/docker (attach_disconnected, complain) {
|
||||||
|
|
||||||
umount,
|
umount,
|
||||||
pivot_root,
|
pivot_root,
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
signal (receive) peer=@{profile_name},
|
signal (receive) peer=@{profile_name},
|
||||||
signal (receive) peer=unconfined,
|
signal (receive) peer=unconfined,
|
||||||
signal (send),
|
signal (send),
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
network,
|
network,
|
||||||
capability,
|
capability,
|
||||||
owner /** rw,
|
owner /** rw,
|
||||||
|
@ -46,12 +46,12 @@ profile /usr/bin/docker (attach_disconnected, complain) {
|
||||||
/etc/ld.so.cache r,
|
/etc/ld.so.cache r,
|
||||||
/etc/passwd r,
|
/etc/passwd r,
|
||||||
|
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
ptrace peer=@{profile_name},
|
ptrace peer=@{profile_name},
|
||||||
ptrace (read) peer=docker-default,
|
ptrace (read) peer=docker-default,
|
||||||
deny ptrace (trace) peer=docker-default,
|
deny ptrace (trace) peer=docker-default,
|
||||||
deny ptrace peer=/usr/bin/docker///bin/ps,
|
deny ptrace peer=/usr/bin/docker///bin/ps,
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
|
|
||||||
/usr/lib/** rm,
|
/usr/lib/** rm,
|
||||||
/lib/** rm,
|
/lib/** rm,
|
||||||
|
@ -72,11 +72,11 @@ profile /usr/bin/docker (attach_disconnected, complain) {
|
||||||
/sbin/zfs rCx,
|
/sbin/zfs rCx,
|
||||||
/sbin/apparmor_parser rCx,
|
/sbin/apparmor_parser rCx,
|
||||||
|
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
# Transitions
|
# Transitions
|
||||||
change_profile -> docker-*,
|
change_profile -> docker-*,
|
||||||
change_profile -> unconfined,
|
change_profile -> unconfined,
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
|
|
||||||
profile /bin/cat (complain) {
|
profile /bin/cat (complain) {
|
||||||
/etc/ld.so.cache r,
|
/etc/ld.so.cache r,
|
||||||
|
@ -98,10 +98,10 @@ profile /usr/bin/docker (attach_disconnected, complain) {
|
||||||
/dev/null rw,
|
/dev/null rw,
|
||||||
/bin/ps mr,
|
/bin/ps mr,
|
||||||
|
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
# We don't need ptrace so we'll deny and ignore the error.
|
# We don't need ptrace so we'll deny and ignore the error.
|
||||||
deny ptrace (read, trace),
|
deny ptrace (read, trace),
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
|
|
||||||
# Quiet dac_override denials
|
# Quiet dac_override denials
|
||||||
deny capability dac_override,
|
deny capability dac_override,
|
||||||
|
@ -119,15 +119,15 @@ profile /usr/bin/docker (attach_disconnected, complain) {
|
||||||
/proc/tty/drivers r,
|
/proc/tty/drivers r,
|
||||||
}
|
}
|
||||||
profile /sbin/iptables (complain) {
|
profile /sbin/iptables (complain) {
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
signal (receive) peer=/usr/bin/docker,
|
signal (receive) peer=/usr/bin/docker,
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
capability net_admin,
|
capability net_admin,
|
||||||
}
|
}
|
||||||
profile /sbin/auplink flags=(attach_disconnected, complain) {
|
profile /sbin/auplink flags=(attach_disconnected, complain) {
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
signal (receive) peer=/usr/bin/docker,
|
signal (receive) peer=/usr/bin/docker,
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
capability sys_admin,
|
capability sys_admin,
|
||||||
capability dac_override,
|
capability dac_override,
|
||||||
|
|
||||||
|
@ -146,9 +146,9 @@ profile /usr/bin/docker (attach_disconnected, complain) {
|
||||||
/proc/[0-9]*/mounts rw,
|
/proc/[0-9]*/mounts rw,
|
||||||
}
|
}
|
||||||
profile /sbin/modprobe /bin/kmod (complain) {
|
profile /sbin/modprobe /bin/kmod (complain) {
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
signal (receive) peer=/usr/bin/docker,
|
signal (receive) peer=/usr/bin/docker,
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
capability sys_module,
|
capability sys_module,
|
||||||
/etc/ld.so.cache r,
|
/etc/ld.so.cache r,
|
||||||
/lib/** rm,
|
/lib/** rm,
|
||||||
|
@ -162,9 +162,9 @@ profile /usr/bin/docker (attach_disconnected, complain) {
|
||||||
}
|
}
|
||||||
# xz works via pipes, so we do not need access to the filesystem.
|
# xz works via pipes, so we do not need access to the filesystem.
|
||||||
profile /usr/bin/xz (complain) {
|
profile /usr/bin/xz (complain) {
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
signal (receive) peer=/usr/bin/docker,
|
signal (receive) peer=/usr/bin/docker,
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
/etc/ld.so.cache r,
|
/etc/ld.so.cache r,
|
||||||
/lib/** rm,
|
/lib/** rm,
|
||||||
/usr/bin/xz rm,
|
/usr/bin/xz rm,
|
||||||
|
|
|
@ -14,13 +14,13 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
// GetVersion returns the major and minor version of apparmor_parser.
|
// GetVersion returns the major and minor version of apparmor_parser.
|
||||||
func GetVersion() (int, int, error) {
|
func GetVersion() (int, error) {
|
||||||
output, err := cmd("", "--version")
|
output, err := cmd("", "--version")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return -1, -1, err
|
return -1, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return parseVersion(string(output))
|
return parseVersion(output)
|
||||||
}
|
}
|
||||||
|
|
||||||
// LoadProfile runs `apparmor_parser -r -W` on a specified apparmor profile to
|
// LoadProfile runs `apparmor_parser -r -W` on a specified apparmor profile to
|
||||||
|
@ -47,30 +47,46 @@ func cmd(dir string, arg ...string) (string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// parseVersion takes the output from `apparmor_parser --version` and returns
|
// parseVersion takes the output from `apparmor_parser --version` and returns
|
||||||
// the major and minor version for `apparor_parser`.
|
// a representation of the {major, minor, patch} version as a single number of
|
||||||
func parseVersion(output string) (int, int, error) {
|
// the form MMmmPPP {major, minor, patch}.
|
||||||
|
func parseVersion(output string) (int, error) {
|
||||||
// output is in the form of the following:
|
// output is in the form of the following:
|
||||||
// AppArmor parser version 2.9.1
|
// AppArmor parser version 2.9.1
|
||||||
// Copyright (C) 1999-2008 Novell Inc.
|
// Copyright (C) 1999-2008 Novell Inc.
|
||||||
// Copyright 2009-2012 Canonical Ltd.
|
// Copyright 2009-2012 Canonical Ltd.
|
||||||
|
|
||||||
lines := strings.SplitN(output, "\n", 2)
|
lines := strings.SplitN(output, "\n", 2)
|
||||||
words := strings.Split(lines[0], " ")
|
words := strings.Split(lines[0], " ")
|
||||||
version := words[len(words)-1]
|
version := words[len(words)-1]
|
||||||
|
|
||||||
// split by major minor version
|
// split by major minor version
|
||||||
v := strings.Split(version, ".")
|
v := strings.Split(version, ".")
|
||||||
if len(v) < 2 {
|
if len(v) == 0 || len(v) > 3 {
|
||||||
return -1, -1, fmt.Errorf("parsing major minor version failed for output: `%s`", output)
|
return -1, fmt.Errorf("parsing version failed for output: `%s`", output)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Default the versions to 0.
|
||||||
|
var majorVersion, minorVersion, patchLevel int
|
||||||
|
|
||||||
majorVersion, err := strconv.Atoi(v[0])
|
majorVersion, err := strconv.Atoi(v[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return -1, -1, err
|
return -1, err
|
||||||
}
|
|
||||||
minorVersion, err := strconv.Atoi(v[1])
|
|
||||||
if err != nil {
|
|
||||||
return -1, -1, err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return majorVersion, minorVersion, nil
|
if len(v) > 1 {
|
||||||
|
minorVersion, err = strconv.Atoi(v[1])
|
||||||
|
if err != nil {
|
||||||
|
return -1, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(v) > 2 {
|
||||||
|
patchLevel, err = strconv.Atoi(v[2])
|
||||||
|
if err != nil {
|
||||||
|
return -1, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// major*10^5 + minor*10^3 + patch*10^0
|
||||||
|
numericVersion := majorVersion*1e5 + minorVersion*1e3 + patchLevel
|
||||||
|
return numericVersion, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,8 +6,7 @@ import (
|
||||||
|
|
||||||
type versionExpected struct {
|
type versionExpected struct {
|
||||||
output string
|
output string
|
||||||
major int
|
version int
|
||||||
minor int
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParseVersion(t *testing.T) {
|
func TestParseVersion(t *testing.T) {
|
||||||
|
@ -18,8 +17,7 @@ Copyright (C) 1999-2008 Novell Inc.
|
||||||
Copyright 2009-2012 Canonical Ltd.
|
Copyright 2009-2012 Canonical Ltd.
|
||||||
|
|
||||||
`,
|
`,
|
||||||
major: 2,
|
version: 210000,
|
||||||
minor: 10,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
output: `AppArmor parser version 2.8
|
output: `AppArmor parser version 2.8
|
||||||
|
@ -27,8 +25,7 @@ Copyright (C) 1999-2008 Novell Inc.
|
||||||
Copyright 2009-2012 Canonical Ltd.
|
Copyright 2009-2012 Canonical Ltd.
|
||||||
|
|
||||||
`,
|
`,
|
||||||
major: 2,
|
version: 208000,
|
||||||
minor: 8,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
output: `AppArmor parser version 2.20
|
output: `AppArmor parser version 2.20
|
||||||
|
@ -36,8 +33,7 @@ Copyright (C) 1999-2008 Novell Inc.
|
||||||
Copyright 2009-2012 Canonical Ltd.
|
Copyright 2009-2012 Canonical Ltd.
|
||||||
|
|
||||||
`,
|
`,
|
||||||
major: 2,
|
version: 220000,
|
||||||
minor: 20,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
output: `AppArmor parser version 2.05
|
output: `AppArmor parser version 2.05
|
||||||
|
@ -45,21 +41,33 @@ Copyright (C) 1999-2008 Novell Inc.
|
||||||
Copyright 2009-2012 Canonical Ltd.
|
Copyright 2009-2012 Canonical Ltd.
|
||||||
|
|
||||||
`,
|
`,
|
||||||
major: 2,
|
version: 205000,
|
||||||
minor: 5,
|
},
|
||||||
|
{
|
||||||
|
output: `AppArmor parser version 2.9.95
|
||||||
|
Copyright (C) 1999-2008 Novell Inc.
|
||||||
|
Copyright 2009-2012 Canonical Ltd.
|
||||||
|
|
||||||
|
`,
|
||||||
|
version: 209095,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
output: `AppArmor parser version 3.14.159
|
||||||
|
Copyright (C) 1999-2008 Novell Inc.
|
||||||
|
Copyright 2009-2012 Canonical Ltd.
|
||||||
|
|
||||||
|
`,
|
||||||
|
version: 314159,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, v := range versions {
|
for _, v := range versions {
|
||||||
major, minor, err := parseVersion(v.output)
|
version, err := parseVersion(v.output)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("expected error to be nil for %#v, got: %v", v, err)
|
t.Fatalf("expected error to be nil for %#v, got: %v", v, err)
|
||||||
}
|
}
|
||||||
if major != v.major {
|
if version != v.version {
|
||||||
t.Fatalf("expected major version to be %d, was %d, for: %#v\n", v.major, major, v)
|
t.Fatalf("expected version to be %d, was %d, for: %#v\n", v.version, version, v)
|
||||||
}
|
|
||||||
if minor != v.minor {
|
|
||||||
t.Fatalf("expected minor version to be %d, was %d, for: %#v\n", v.minor, minor, v)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,10 +30,8 @@ type profileData struct {
|
||||||
Imports []string
|
Imports []string
|
||||||
// InnerImports defines the apparmor functions to import in the profile.
|
// InnerImports defines the apparmor functions to import in the profile.
|
||||||
InnerImports []string
|
InnerImports []string
|
||||||
// MajorVersion is the apparmor_parser major version.
|
// Version is the {major, minor, patch} version of apparmor_parser as a single number.
|
||||||
MajorVersion int
|
Version int
|
||||||
// MinorVersion is the apparmor_parser minor version.
|
|
||||||
MinorVersion int
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// generateDefault creates an apparmor profile from ProfileData.
|
// generateDefault creates an apparmor profile from ProfileData.
|
||||||
|
|
|
@ -38,13 +38,13 @@ profile {{.Name}} flags=(attach_disconnected,mediate_deleted) {
|
||||||
deny /sys/firmware/efi/efivars/** rwklx,
|
deny /sys/firmware/efi/efivars/** rwklx,
|
||||||
deny /sys/kernel/security/** rwklx,
|
deny /sys/kernel/security/** rwklx,
|
||||||
|
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 8}}
|
{{if ge .Version 208000}}
|
||||||
# suppress ptrace denials when using 'docker ps' or using 'ps' inside a container
|
# suppress ptrace denials when using 'docker ps' or using 'ps' inside a container
|
||||||
ptrace (trace,read) peer=docker-default,
|
ptrace (trace,read) peer=docker-default,
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
{{if ge .MajorVersion 2}}{{if ge .MinorVersion 9}}
|
{{if ge .Version 209000}}
|
||||||
# docker daemon confinement requires explict allow rule for signal
|
# docker daemon confinement requires explict allow rule for signal
|
||||||
signal (receive) set=(kill,term) peer={{.ExecPath}},
|
signal (receive) set=(kill,term) peer={{.ExecPath}},
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
Loading…
Reference in a new issue