Skip to content

src/selinux/pcp.te: Handle pmlogger perfmon AVCs #2231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/selinux/pcp.te
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,17 @@ optional_policy(`
userdom_setattr_user_home_content_files(pcp_pmlogger_t)
')

optional_policy(`
require {
type pcp_pmlogger_t;
class capability2 perfmon;
}

#RHBZ2371004
# type=AVC msg=audit(N): avc: denied { perfmon } for pid=PID comm="ps" capability=38 scontext=system_u:system_r:pcp_pmlogger_t:s0 tcontext=system_u:system_r:pcp_pmlogger_t:s0 tclass=capability2 permissive=0
allow pcp_pmlogger_t self:capability2 perfmon;
')

########################################
#
# pcp_plugin local policy
Expand Down
Loading