# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2020-2022 Mikhail Morfikov
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
# SPDX-License-Identifier: GPL-2.0-only

abi <abi/4.0>,

include <tunables/global>

@{exec_path} = @{lib}/systemd/systemd-fsck
@{att} = /att/systemd-fsck/
profile systemd-fsck /{,usr/}lib{,exec,32,64}/systemd/systemd-fsck  flags=(attach_disconnected,attach_disconnected.path=@{att},complain) {
  include <abstractions/attached/base>
  include <abstractions/attached/consoles>
  include <abstractions/disks-read>
  include <abstractions/common/systemd>

  capability net_admin,
  capability sys_resource,

  ptrace read peer=@{p_systemd},

  @{exec_path} mr,

  @{sbin}/e2fsck rpx,
  @{sbin}/fsck   rpx,
  @{sbin}/fsck.* rpx,

  owner @{run}/systemd/quotacheck w,
  owner @{run}/systemd/fsck.progress rw,

  include if exists <local/systemd-fsck>
}

# vim:syntax=apparmor
