Skip to content

Internal

Profile Context

These are context helper to be used for in sub profile, they aim at providing a minimal set of rules for a given program. The calling profile only needs to add rules dependant of its use case.

See abstractions/app for more information.

Open Resources

The standard way to allow opening resources such as URL, pictures, video, in this project is to use one of the child-open profile available in the children group.

Example:

@{open_path} rPx -> child-open,

Manual

Directly using any of the following:

  • @{bin}/* PUx,
  • include <abstractions/app-launcher-user>
  • include <abstractions/app-launcher-root>

Allow every installed program to be started from the current program with or without profile. This is a very permissive rule and should be avoided if possible. They are however legitimately needed for program launcher.

child-open

Instead of allowing the ability to run all software in @{bin}/, the purpose of this profile is to list all GUI programs that can open resources. Ultimately, only sandbox manager programs such as bwrap, snap, flatpak, firejail should be present here. Until this day, this profile will be a controlled mess.

children/child-open
  # Sandbox managers
  @{bin}/bwrap                  rPUx,
  @{bin}/firejail               rPUx,
  @{bin}/flatpak                rPx,
  @{bin}/snap                   rPx,

  # Labelled programs
  @{archive_viewers_path}       rPUx,
  @{browsers_path}              rPx,
  @{document_viewers_path}      rPUx,
  @{emails_path}                rPUx,
  @{file_explorers_path}        rPx,
  @{help_path}                  rPx,
  @{image_viewers_path}         rPUx,
  @{offices_path}               rPUx,
  @{text_editors_path}          rPUx,

  # Others
  @{bin}/blueman-tray           rPx,
  @{bin}/discord{,-ptb}         rPx,
  @{bin}/draw.io                rPUx,
  @{bin}/dropbox                rPx,
  @{bin}/element-desktop        rPx,
  @{bin}/extension-manager      rPx,
  @{bin}/filezilla              rPx,
  @{bin}/flameshot              rPx,
  @{bin}/gimp*                  rPUx,
  @{bin}/gnome-calculator       rPUx,
  @{bin}/gnome-disk-image-mounter rPx,
  @{bin}/gnome-disks            rPx,
  @{bin}/gnome-software         rPx,
  @{bin}/gwenview               rPUx,
  @{bin}/kgx                    rPx,
  @{bin}/qbittorrent            rPx,
  @{bin}/qpdfview               rPx,
  @{bin}/smplayer               rPx,
  @{bin}/steam-runtime          rPUx,
  @{bin}/telegram-desktop       rPx,
  @{bin}/transmission-gtk       rPx,
  @{bin}/viewnior               rPUx,
  @{bin}/vlc                    rPUx,
  @{bin}/xbrlapi                  rPx,

  # Backup
   @{lib}/deja-dup/deja-dup-monitor rPx,

child-open-browsers

This version of child-open only allow to open browsers.

children/child-open-browsers
  @{browsers_path}              rPx,

child-open-help

This version of child-open only allow to open browsers and help programs.

children/child-open-help
  @{browsers_path}              rPx,
  @{help_path}                  rPx,

child-open-strict

This version of child-open only allow to open browsers & folders:

children/child-open-strict
  @{browsers_path}               Px,
  @{file_explorers_path}         Px,

Warning

Although needed to not break a program, wrongly used these profiles can lead to confinment escape.

Children profiles

Usually, a child profile is in the children group. They have the following note:

Quote

Note: This profile does not specify an attachment path because it is intended to be used only via "Px -> child-open" exec transitions from other profiles.

child-modprove-nvidia

Used internally by the nvidia abstraction.

child-pager

Simple access to pagers such as pager, less and more. This profile assumes the pager is reading its data from stdin, not from a file on disk. Supported pagers are: sensible-pager, pager, less, and more. It can be as follows in a profile:

  @{pager_path} rPx -> child-pager,

child-systemctl

Common systemctl action. Do not use it too much as most of the time you will need more privilege than what this profile is giving you.

It is recommended to transition in a subprofile everything that is not generic and that may require some access (so restart, enable...), while child-systemctl can handle the more basic tasks.

Labelled programs

All common programs are tracked and labelled in the apparmor.d/tunables/multiarch.d/programs and apparmor.d/tunables/multiarch.d/paths files. They can be used in a child-open profile or directly in a profile. They are useful to allow opening resources using a kind of program (browsers, image viewer, text editor...), instead of allowing a given program path.

Re-attached path

The flag attach_disconnect control how disconnected paths are handled. It determines if pathnames resolved to be outside the namespace are attached to the root (ie. have the / character prepended). It is a security issue as it allows disconnected paths to alias to other files that exist in the file name. Therefore, it is only provided to work around problems that can arise with sandboxed programs.

AppAmor 4.0 provides the attach_disconnect.path flag allowing to reattach this path to a prefix that is not /. When used it provide an important security improvement from AppArmor 3.0.

apparmor.d uses attach_disconnect.path by default and automatically on all profiles with the attach_disconnect flag. The attached path is set to @{att} a new dynamically generated variable set at build time in the preamble of all profile to be:

  • @{att}=/att/<profile_name> for profile with attach_disconnect flag.
  • @{att}=/ for other profiles

User Confinement

TODO

No New Privileges

No New Privileges is a flag preventing a newly started program to get more privileges than its parent process. This is a good thing for security. And it is commonly used in systemd unit files (when possible). This flag also prevents transitions to other profiles because it could be less restrictive than the parent profile (no Px or Ux allowed).

The possible solutions are:

  • The easiest (and unfortunately less secure) workaround is to ensure the programs do not run with no new privileges flag by disabling NoNewPrivileges in the systemd unit (or any other options implying it).
  • Inherit the current confinement (ix)
  • Stacking

Stacking

Stacking of two or more profile is the strict intersection them. It is a way to ensure that a profile never becomes more permissive than the intersection of all profiles in the stack. It provides several abilities to the policy author:

  • It can be used to ensure that confinement never becomes more permissive.
  • To reduce the permissions of a generic profile on a specific task.
  • To provide both system level and container and user level policy (when combined with policy namespaces).

apparmor.d/groups/browsers/chromium

profile chromium @{exec_path} {
  ...
  @{lib_dirs}/chrome_crashpad_handler  rPx -> chromium//&chromium-crashpad-handler,
  ...
}

Udev rules

See the kernel docs to check the major block and char numbers used in /run/udev/data/.

Special care must be given as sometimes udev numbers are allocated dynamically by the kernel. Therefore, the full range must be allowed:

apparmor.d/groups/virt/libvirtd

  @{run}/udev/data/c@{dynamic}:@{int} r,  # For dynamic assignment range 234 to 254, 384 to 511