10 KiB
Security policy
Snap packages run confined under a restrictive security sandbox by default. The security policies and store policies work together to allow developers to quickly update their applications and to provide safety to end users.
This document describes how to configure the security policies for snap
packages and builds upon the packaging declaration as defined in meta.md.
How policy is applied
Application authors should not have to know about or understand the lowlevel implementation details on how security policy is enforced. Instead, security policy is typically defined by declaring a security template to use and any additional security caps to extend the policy provided by the template. If unspecified, default confinement allows the snap to run as a network client.
Applications are tracked by the system by using the concept of an
ApplicationId. The APP_ID is the composition of the package name, the app's
origin from the store if applicable -- only snaps of type: app (the
default) use an origin to compose the APP_ID), the
service/binary name and package version. The APP_ID takes the form of
<pkgname>.<origin>_<appname>_<version>. For example, if this is in
package.yaml:
name: foo
version: 0.1
...
services:
- name: bar
start: bin/bar
and the app was uploaded to the myorigin origin in the store, then the
APP_ID for the bar service is foo.myorigin_bar_0.1. The APP_ID is used
throughout the system including in the enforcement of security policy by the
app launcher.
Under the hood, the launcher:
- sets up various environment variables (eg,
SNAP_APP_ARCH,SNAP_APP_DATA_PATH,SNAP_APP_PATH,SNAP_APP_TMPDIR,SNAP_APP_USER_DATA_PATH,SNAP_OLD_PWD,HOMEandTMPDIR(set toSNAP_APP_TMPDIR). See the snappy FHS for details. - changes directory to
SNAP_APP_PATH(the install directory) - sets up a device cgroup with default devices (eg, /dev/null, /dev/urandom,
etc) and any devices which are assigned to this app via OEM snaps or
snappy hw-assign(eg,snappy hw-assign foo.myorigin /dev/bar). - sets up the seccomp filter
- executes the app under an AppArmor profile under a default nice value
The launcher is used when launching both services and CLI binaries. The security policy and launcher enforce application isolation as per the snappy FHS.
This combination of restrictive AppArmor profiles (which mediate file access, application execution, Linux capabilities(7), mount, ptrace, IPC, signals, coarse-grained networking), clearly defined application-specific filesystem areas, whitelist syscall filtering via seccomp and device cgroups provides for strong application confinement and isolation (see below for future work).
AppArmor
Upon snap package install, package.yaml is examined and AppArmor profiles are
generated for each service and binary to have names based on the APP_ID.
As mentioned, AppArmor profiles are template based and may be extended through
policy groups, which are expressed in the yaml as caps.
Seccomp
Upon snap package install, package.yaml is examined and seccomp filters are
generated for each service and binary. Like with AppArmor, seccomp filters are
template based and may be extended through filter groups, which are expressed
in the yaml as caps.
Defining snap policy
The package.yaml need not specify anything for default confinement. Several
options are available to modify the confinement:
caps: (optional) list of (easy to understand, human readable) additional security policies to add. The system will translate these to generate AppArmor and seccomp policy. Note: these are separate fromcapabilities(7). Specifycaps: []to indicate no additionalcaps. Whencapsandsecurity-templateare not specified,capsdefaults to client networking. Not compatible withsecurity-overrideorsecurity-policy.- AppArmor access is deny by default and apps are restricted to
their app-specific directories, libraries, etc (enforcing ro,
rw, etc). Additional access beyond what is allowed by the
declared
security-templateis declared via this option - seccomp is deny by default. Enough safe syscalls are allowed so
that apps using the declared
security-templateshould work. Additional access beyond what is allowed by thesecurity-templateis declared via this option
- AppArmor access is deny by default and apps are restricted to
their app-specific directories, libraries, etc (enforcing ro,
rw, etc). Additional access beyond what is allowed by the
declared
security-template: (optional) alternate security template to use instead ofdefault. When specified withoutcaps,capsdefaults to being empty. Not compatible withsecurity-overrideorsecurity-policy.security-override: (optional) high level overrides to use whensecurity-templateandcapsare not sufficient - see advanced usage for details. Not compatible withcaps,security-templateorsecurity-policyapparmor: path/to/security.overrideseccomp: path/to/filter.override
security-policy: (optional) hand-crafted low-level raw security policy to use instead of using default template-based security policy. Not compatible withcaps,security-templateorsecurity-override.apparmor: path/to/profileseccomp: path/to/filter
Eg, consider the following:
name: foo
version: 1.0
services:
- name: bar
- name: baz
caps:
- network-client
- norf-framework_client
- name: qux
security-template: nondefault
- name: quux
security-policy:
apparmor: meta/quux.profile
seccomp: meta/quux.filter
- name: corge
security-override:
apparmor: meta/corge.apparmor
seccomp: meta/corge.seccomp
binaries:
- name: cli-exe
caps: []
If this package is uploaded to the store in the myorigin origin, then:
APP_IDforbarisfoo.myorigin_bar_1.0. It uses thedefaulttemplate andnetwork-client(default) capAPP_IDforbazisfoo.myorigin_baz_1.0. It uses thedefaulttemplate and thenetwork-clientandnorf-framework_clientcapsAPP_IDforquxisfoo.myorigin_qux_1.0. It uses thenondefaulttemplate andnetwork-client(default) capAPP_IDforquuxisfoo.myorigin_quux_1.0. It does not use asecurity-templateorcapsbut instead ships its own AppArmor policy inmeta/quux.profileand seccomp filters inmeta/quux.filterAPP_IDforcorgeisfoo.myorigin_corge_1.0. It does not use asecurity-templateorcapsbut instead ships the override filesmeta/corge.apparmorandmeta/corge.seccomp.APP_IDforcli-exeisfoo.myorigin_cli-exe_1.0. It uses thedefaulttemplate and nocaps
As mentioned, security policies and store policies work together to provide
flexibility, speed and safety. Use of some of the above will trigger a manual
review in the official Ubuntu store for snaps that are type: app (the
default):
security-policy- always triggers a manual review because it allows specifying access beyond the application specific areascaps- will only trigger a manual review if specifying areservedcapsecurity-template- will only trigger a manual review if specifying areservedtempate (eg,unconfined)security-override- will only trigger a manual review if specifying access beyond that provided bycommonaccess.
Apps should typically only use common groups with caps and common templates
with security-template and avoid security-policy and security-override.
Snaps that are of type: framework (see frameworks.md) will use any of the
above (since framework snaps' purpose is to extend the system and require
additional privilege).
The available templates and policy groups of the target system can be seen by
running snappy-security list on the target system.
Debugging
To check to see if you have any denials:
$ sudo grep audit /var/log/syslog
An AppArmor denial will look something like:
audit: type=1400 audit(1431384420.408:319): apparmor="DENIED" operation="mkdir" profile="foo_bar_0.1" name="/var/lib/foo" pid=637 comm="bar" requested_mask="c" denied_mask="c" fsuid=0 ouid=0
If there are no AppArmor denials, AppArmor isn't blocking the app.
A seccomp denial will look something like:
audit: type=1326 audit(1430766107.122:16): auid=1000 uid=1000 gid=1000 ses=15 pid=1491 comm="env" exe="/bin/bash" sig=31 arch=40000028 syscall=983045 compat=0 ip=0xb6fb0bd6 code=0x0
The syscall=983045 can be resolved with the scmp_sys_resolver command:
$ scmp_sys_resolver 983045
set_tls
If there are no seccomp denials, seccomp isn't blocking the app.
For more information, please see debugging.
Future
The following is planned:
- launcher:
- utilize syscall argument filtering
- setup additional cgroups (tag network traffic, memory)
- setup iptables using cgroup tags (for internal app access)
- drop privileges to uid of service
- fine-grained network mediation via AppArmor
sockets: (optional)AF_UNIXabstract socket definition for coordinated snap communications. Abstract sockets will be namespaced and yaml is such that (client) apps wanting to use the socket don't have to declare anything extra, but they don't have access unless the (server) binary declaring the socket says that app is ok).names: (optional) list of abstract socket names (<name>_<binaryname>is prepended)allowed-clients:<name>.<origin>or<name>.<origin>_<binaryname>(ie, omit version andbinarynameto allow all from snap<name>.<origin>or omit version to allow onlybinarynamefrom snap<name>)
Eg:
name: foo
...
services:
- name: bar
sockets:
names:
- sock1
- sock2
- ...
allowed-clients:
- baz
- norf_qux
- ...