40 lines
867 B
Text
40 lines
867 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# 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} = @{bin}/pcscd
|
|
profile pcscd @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/devices-usb>
|
|
|
|
capability net_admin,
|
|
capability sys_ptrace,
|
|
|
|
network netlink raw,
|
|
|
|
ptrace (read) peer=@{p_systemd_user},
|
|
ptrace (read) peer=gsd-smartcard,
|
|
ptrace (read) peer=keepassxc,
|
|
ptrace (read) peer=pkcs11-register,
|
|
ptrace (read) peer=rngd,
|
|
ptrace (read) peer=scdaemon,
|
|
ptrace (read) peer=veracrypt,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/etc/libccid_Info.plist r,
|
|
/etc/reader.conf.d/{,**} r,
|
|
|
|
owner @{run}/pcscd/{,pcscd.pid} rw,
|
|
|
|
@{PROC}/@{pid}/fdinfo/@{int} r,
|
|
@{PROC}/@{pids}/stat r,
|
|
|
|
include if exists <local/pcscd>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|