feat(profiles): general update.

This commit is contained in:
Alexandre Pujol 2023-08-06 16:30:38 +02:00
parent cdc10fdb31
commit 1cac6715db
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
24 changed files with 64 additions and 5 deletions

View file

@ -41,8 +41,11 @@ profile firefox-crashreporter @{exec_path} flags=(attach_disconnected) {
owner "@{firefox_config_dirs}/firefox/Crash Reports/{,**}" rw, owner "@{firefox_config_dirs}/firefox/Crash Reports/{,**}" rw,
owner @{firefox_config_dirs}/*.*/crashes/{,**} rw, owner @{firefox_config_dirs}/*.*/crashes/{,**} rw,
owner @{firefox_config_dirs}/*.*/crashes/events/@{uuid} rw,
owner @{firefox_config_dirs}/*.*/extensions/*.xpi r, owner @{firefox_config_dirs}/*.*/extensions/*.xpi r,
owner @{firefox_config_dirs}/*.*/minidumps/{,**} rw, owner @{firefox_config_dirs}/*.*/minidumps/{,**} rw,
owner @{firefox_config_dirs}/*.*/minidumps//@{uuid}.{dmp,extra} r,
owner @{firefox_config_dirs}/*.*/storage/default/* r,
owner @{firefox_cache_dirs}/firefox/*.*/** r, owner @{firefox_cache_dirs}/firefox/*.*/** r,

View file

@ -30,6 +30,7 @@ profile firefox-minidump-analyzer @{exec_path} {
owner @{firefox_config_dirs}/*.*/extensions/*.xpi r, owner @{firefox_config_dirs}/*.*/extensions/*.xpi r,
owner @{firefox_config_dirs}/*.*/minidumps/ rw, owner @{firefox_config_dirs}/*.*/minidumps/ rw,
owner @{firefox_config_dirs}/*.*/minidumps/@{uuid}.{dmp,extra} rw, owner @{firefox_config_dirs}/*.*/minidumps/@{uuid}.{dmp,extra} rw,
owner @{firefox_config_dirs}/*.*/storage/default/* r,
owner @{firefox_cache_dirs}/firefox/*.*/startupCache/*Cache* r, owner @{firefox_cache_dirs}/firefox/*.*/startupCache/*Cache* r,

View file

@ -23,9 +23,13 @@ profile iio-sensor-proxy @{exec_path} {
@{sys}/bus/ r, @{sys}/bus/ r,
@{sys}/bus/iio/devices/ r, @{sys}/bus/iio/devices/ r,
@{sys}/bus/platform/devices/ r,
@{sys}/class/ r, @{sys}/class/ r,
@{sys}/class/input/ r,
@{sys}/devices/**/uevent r, @{sys}/devices/**/uevent r,
@{sys}/devices/pci[0-9]*/**/ r,
@{sys}/devices/pci[0-9]*/**/iio:*/** rw, @{sys}/devices/pci[0-9]*/**/iio:*/** rw,
@{sys}/devices/pci[0-9]*/**/name r,
/dev/iio:* r, /dev/iio:* r,

View file

@ -80,6 +80,8 @@ profile pipewire @{exec_path} flags=(attach_disconnected) {
@{sys}/devices/pci[0-9]*/**/usb[0-9]/**/{idVendor,idProduct,removable,uevent} r, @{sys}/devices/pci[0-9]*/**/usb[0-9]/**/{idVendor,idProduct,removable,uevent} r,
@{sys}/devices/virtual/dmi/id/{sys_vendor,product_version,product_name,bios_vendor} r, @{sys}/devices/virtual/dmi/id/{sys_vendor,product_version,product_name,bios_vendor} r,
owner @{PROC}/@{pid}/task/@{tid}/comm rw,
/dev/media[0-9]* rw, /dev/media[0-9]* rw,
include if exists <local/pipewire> include if exists <local/pipewire>

View file

@ -9,6 +9,7 @@ include <tunables/global>
@{exec_path} = @{bin}/update-mime-database @{exec_path} = @{bin}/update-mime-database
profile update-mime-database @{exec_path} { profile update-mime-database @{exec_path} {
include <abstractions/base> include <abstractions/base>
include <abstractions/consoles>
include <abstractions/nameservice-strict> include <abstractions/nameservice-strict>
capability dac_override, capability dac_override,

View file

@ -54,9 +54,10 @@ profile upowerd @{exec_path} flags=(attach_disconnected) {
@{run}/udev/data/+pci* r, @{run}/udev/data/+pci* r,
@{run}/udev/data/+platform* r, @{run}/udev/data/+platform* r,
@{run}/udev/data/+power_supply* r, @{run}/udev/data/+power_supply* r,
@{run}/udev/data/+sound:card[0-9]* r, # For sound @{run}/udev/data/+sound:card[0-9]* r, # for sound
@{run}/udev/data/c116:[0-9]* r, # for ALSA @{run}/udev/data/c10:[0-9]* r, # for non-serial mice, misc features
@{run}/udev/data/c13:[0-9]* r, # for /dev/input/* @{run}/udev/data/c13:[0-9]* r, # for /dev/input/*
@{run}/udev/data/c116:[0-9]* r, # for ALSA
@{run}/systemd/inhibit/[0-9]*.ref rw, @{run}/systemd/inhibit/[0-9]*.ref rw,

View file

@ -81,6 +81,7 @@ profile gnome-control-center @{exec_path} flags=(attach_disconnected) {
@{bin}/software-properties-gtk rPx, @{bin}/software-properties-gtk rPx,
@{bin}/usermod rPx, @{bin}/usermod rPx,
@{lib}/@{multiarch}/webkit2gtk-{3,4}.0/WebKitNetworkProcess rix, @{lib}/@{multiarch}/webkit2gtk-{3,4}.0/WebKitNetworkProcess rix,
@{lib}/cups/backend/snmp rPx,
@{lib}/gnome-control-center-goa-helper rPx, @{lib}/gnome-control-center-goa-helper rPx,
@{lib}/gnome-control-center-print-renderer rPx, @{lib}/gnome-control-center-print-renderer rPx,
@{lib}/webkit2gtk-{3,4}.0/WebKitNetworkProcess rix, @{lib}/webkit2gtk-{3,4}.0/WebKitNetworkProcess rix,

View file

@ -84,6 +84,7 @@ profile gsd-print-notifications @{exec_path} flags=(attach_disconnected) {
@{run}/cups/cups.sock rw, @{run}/cups/cups.sock rw,
owner @{PROC}/@{pid}/cgroup r,
owner @{PROC}/@{pid}/fd/ r, owner @{PROC}/@{pid}/fd/ r,
owner /dev/tty[0-9]* rw, owner /dev/tty[0-9]* rw,

View file

@ -109,6 +109,10 @@ profile tracker-extract @{exec_path} flags=(attach_disconnected) {
@{run}/udev/data/c23[4-9]:[0-9]* r, # For dynamic assignment range 234 to 254 @{run}/udev/data/c23[4-9]:[0-9]* r, # For dynamic assignment range 234 to 254
@{run}/udev/data/c24[0-9]:[0-9]* r, @{run}/udev/data/c24[0-9]:[0-9]* r,
@{run}/udev/data/c25[0-4]:[0-9]* r, @{run}/udev/data/c25[0-4]:[0-9]* r,
@{run}/udev/data/c3[0-9]*:[0-9]* r, # For dynamic assignment range 384 to 511
@{run}/udev/data/c4[0-9]*:[0-9]* r,
@{run}/udev/data/c5[0-9]*:[0-9]* r,
@{run}/mount/utab r, @{run}/mount/utab r,
owner @{PROC}/@{pid}/fd/ r, owner @{PROC}/@{pid}/fd/ r,

View file

@ -76,6 +76,9 @@ profile tailscaled @{exec_path} flags=(attach_disconnected) {
@{bin}/systemctl mr, @{bin}/systemctl mr,
@{PROC}/ r,
@{PROC}/@{pid}/fd/ r,
/dev/net/tun rw, /dev/net/tun rw,
} }

View file

@ -28,6 +28,7 @@ profile systemd-backlight @{exec_path} {
@{sys}/class/backlight/ r, @{sys}/class/backlight/ r,
@{sys}/devices/pci[0-9]*/*:[0-9]*.[0-9]*/**/ r, @{sys}/devices/pci[0-9]*/*:[0-9]*.[0-9]*/**/ r,
@{sys}/devices/pci[0-9]*/**/ r,
@{sys}/devices/pci[0-9]*/**/backlight/**/{max_brightness,actual_brightness} r, @{sys}/devices/pci[0-9]*/**/backlight/**/{max_brightness,actual_brightness} r,
@{sys}/devices/pci[0-9]*/**/backlight/**/{uevent,type} r, @{sys}/devices/pci[0-9]*/**/backlight/**/{uevent,type} r,
@{sys}/devices/pci[0-9]*/**/backlight/**/brightness rw, @{sys}/devices/pci[0-9]*/**/backlight/**/brightness rw,

View file

@ -9,6 +9,7 @@ include <tunables/global>
@{exec_path} = @{bin}/systemd-sysusers @{exec_path} = @{bin}/systemd-sysusers
profile systemd-sysusers @{exec_path} flags=(attach_disconnected) { profile systemd-sysusers @{exec_path} flags=(attach_disconnected) {
include <abstractions/base> include <abstractions/base>
include <abstractions/consoles>
include <abstractions/systemd-common> include <abstractions/systemd-common>
capability chown, capability chown,

View file

@ -16,6 +16,7 @@ profile cockpit-bridge @{exec_path} {
include <abstractions/python> include <abstractions/python>
capability dac_read_search, capability dac_read_search,
capability net_admin,
capability sys_nice, capability sys_nice,
network inet dgram, network inet dgram,
@ -41,8 +42,10 @@ profile cockpit-bridge @{exec_path} {
/usr/share/cockpit/{,**} r, /usr/share/cockpit/{,**} r,
/etc/cockpit/{,**} r, /etc/cockpit/{,**} r,
/etc/httpd/conf/mime.types r,
/etc/login.defs r, /etc/login.defs r,
/etc/machine-id r, /etc/machine-id r,
/etc/mime.types r,
/etc/motd r, /etc/motd r,
/etc/shadow r, /etc/shadow r,
/etc/shells r, /etc/shells r,

View file

@ -204,6 +204,7 @@ profile libvirtd @{exec_path} flags=(attach_disconnected) {
@{sys}/devices/pci[0-9]*/**/mdev_supported_types/*/create w, @{sys}/devices/pci[0-9]*/**/mdev_supported_types/*/create w,
@{sys}/devices/pci[0-9]*/**/net/*/{,**} r, @{sys}/devices/pci[0-9]*/**/net/*/{,**} r,
@{sys}/devices/pci[0-9]*/**/remove w, @{sys}/devices/pci[0-9]*/**/remove w,
@{sys}/devices/pci[0-9]*/**/resource r
@{sys}/devices/pci[0-9]*/**/sriov_totalvfs r, @{sys}/devices/pci[0-9]*/**/sriov_totalvfs r,
@{sys}/devices/system/cpu/cpu[0-9]*/cache/{,**} r, @{sys}/devices/system/cpu/cpu[0-9]*/cache/{,**} r,

View file

@ -72,8 +72,9 @@ profile cupsd @{exec_path} flags=(attach_disconnected) {
@{lib}/cups/notifier/* rix, @{lib}/cups/notifier/* rix,
/usr/share/cups/{,**} r, /usr/share/cups/{,**} r,
/usr/share/ppd/{,**} r,
/usr/share/ghostscript/{,**} r, /usr/share/ghostscript/{,**} r,
/usr/share/poppler/{,**} r,
/usr/share/ppd/{,**} r,
/etc/cups/{,**} rw, /etc/cups/{,**} rw,
/etc/foomatic/* r, /etc/foomatic/* r,

View file

@ -121,6 +121,8 @@ profile dkms @{exec_path} flags=(attach_disconnected) {
owner /boot/System.map-* r, owner /boot/System.map-* r,
owner /tmp/tmp.* r,
# Inherit silencer # Inherit silencer
deny /apparmor/.null rw, deny /apparmor/.null rw,

View file

@ -15,6 +15,8 @@ profile findmnt @{exec_path} flags=(attach_disconnected,complain) {
capability dac_read_search, capability dac_read_search,
unix (receive) type=stream,
@{exec_path} mr, @{exec_path} mr,
/etc/fstab r, /etc/fstab r,

View file

@ -14,6 +14,8 @@ profile gssproxy @{exec_path} {
@{exec_path} mr, @{exec_path} mr,
@{lib}/ r,
/etc/gssproxy/{,**} r, /etc/gssproxy/{,**} r,
owner /var/lib/gssproxy/{,**} rw, owner /var/lib/gssproxy/{,**} rw,

View file

@ -10,7 +10,16 @@ include <tunables/global>
profile nfsdcld @{exec_path} { profile nfsdcld @{exec_path} {
include <abstractions/base> include <abstractions/base>
capability mknod,
capability setpcap,
@{exec_path} mr, @{exec_path} mr,
/etc/nfs.conf r,
/etc/nfs.conf rk,
/var/lib/nfs/nfsdcld/{,**} rw,
/var/lib/nfs/rpc_pipefs/nfsd/* rw,
include if exists <local/nfsdcld> include if exists <local/nfsdcld>
} }

View file

@ -10,6 +10,7 @@ include <tunables/global>
profile nvtop @{exec_path} flags=(attach_disconnected) { profile nvtop @{exec_path} flags=(attach_disconnected) {
include <abstractions/base> include <abstractions/base>
include <abstractions/consoles> include <abstractions/consoles>
include <abstractions/dri-common>
include <abstractions/dri-enumerate> include <abstractions/dri-enumerate>
include <abstractions/nameservice-strict> include <abstractions/nameservice-strict>
include <abstractions/opencl-nvidia> include <abstractions/opencl-nvidia>
@ -36,8 +37,9 @@ profile nvtop @{exec_path} flags=(attach_disconnected) {
@{sys}/bus/ r, @{sys}/bus/ r,
@{sys}/class/ r, @{sys}/class/ r,
@{sys}/class/drm/ r, @{sys}/class/drm/ r,
@{sys}/devices/pci[0-9]*/**/enable r,
@{sys}/devices/pci[0-9]*/**/drm/card[0-9]*/gt_cur_freq_mhz r, @{sys}/devices/pci[0-9]*/**/drm/card[0-9]*/gt_cur_freq_mhz r,
@{sys}/devices/pci[0-9]*/**/enable r,
@{sys}/devices/system/node/node[0-9]*/cpumap r,
@{PROC}/ r, @{PROC}/ r,
@{PROC}/@{pids}/ r, @{PROC}/@{pids}/ r,

View file

@ -86,7 +86,7 @@ profile pass @{exec_path} {
owner @{user_cache_dirs}/vim/{,**} rw, owner @{user_cache_dirs}/vim/{,**} rw,
owner @{user_config_dirs}/vim/{,**} rw, owner @{user_config_dirs}/vim/{,**} rw,
/dev/shm/pass.*/{,*} rw, owner /dev/shm/pass.*/{,*} rw,
deny owner @{HOME}/ r, deny owner @{HOME}/ r,
@ -140,6 +140,7 @@ profile pass @{exec_path} {
owner @{user_password_store_dirs}/ rw, owner @{user_password_store_dirs}/ rw,
owner @{user_password_store_dirs}/** rwkl -> @{HOME}/.password-store/**, owner @{user_password_store_dirs}/** rwkl -> @{HOME}/.password-store/**,
owner /dev/shm/pass.*/{,*} rw,
include if exists <local/pass_gpg> include if exists <local/pass_gpg>
} }

View file

@ -32,6 +32,15 @@ profile scrcpy @{exec_path} {
/var/lib/dbus/machine-id r, /var/lib/dbus/machine-id r,
owner @{user_config_dirs}/ibus/bus/{,@{hex}-unix{,-wayland}-[0-9]} r, owner @{user_config_dirs}/ibus/bus/{,@{hex}-unix{,-wayland}-[0-9]} r,
owner @{user_config_dirs}/pulse/client.conf r,
owner @{user_config_dirs}/pulse/cookie r,
owner @{user_config_dirs}/pulse/cookie rk,
owner @{run}/user/@{uid}/pulse/ r,
/dev/shm/ r,
deny @{user_share_dirs}/gvfs-metadata/* r,
include if exists <local/scrcpy> include if exists <local/scrcpy>
} }

View file

@ -17,5 +17,7 @@ profile who @{exec_path} {
@{exec_path} mr, @{exec_path} mr,
deny owner @{user_share_dirs}/gvfs-metadata/{,*} r,
include if exists <local/who> include if exists <local/who>
} }

View file

@ -59,6 +59,8 @@ profile wireplumber @{exec_path} {
@{sys}/devices/pci[0-9]*/**/video4linux/video[0-9]*/uevent r, @{sys}/devices/pci[0-9]*/**/video4linux/video[0-9]*/uevent r,
@{sys}/devices/virtual/dmi/id/bios_vendor r, @{sys}/devices/virtual/dmi/id/bios_vendor r,
owner @{PROC}/@{pid}/task/@{tid}/comm rw,
/dev/media[0-9]* rw, /dev/media[0-9]* rw,
/dev/snd/ r, /dev/snd/ r,