Skip to content

Commit

Permalink
Allow systemd-machined the kill user-namespace capability
Browse files Browse the repository at this point in the history
Triggered by an attempt to stop a container with

machinectl stop container_name

The commit addresses the following AVC denial:
type=AVC msg=audit(1728452203.924:854): avc:  denied  { kill } for  pid=920 comm="systemd-machine" capability=5  scontext=system_u:system_r:systemd_machined_t:s0 tcontext=system_u:system_r:systemd_machined_t:s0 tclass=cap_userns permissive=0

Resolves: rhbz#2317484
  • Loading branch information
zpytela committed Oct 14, 2024
1 parent 20f68ec commit 6e86177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion policy/modules/system/systemd.te
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ optional_policy(`
allow systemd_machined_t self:capability { dac_read_search dac_override setgid sys_admin sys_chroot sys_ptrace kill };
allow systemd_machined_t systemd_unit_file_t:service { status start stop };
allow systemd_machined_t self:unix_dgram_socket create_socket_perms;
allow systemd_machined_t self:cap_userns { setgid setuid sys_admin sys_chroot sys_ptrace };
allow systemd_machined_t self:cap_userns { kill setgid setuid sys_admin sys_chroot sys_ptrace };

manage_dirs_pattern(systemd_machined_t, systemd_machined_var_run_t, systemd_machined_var_run_t)
manage_files_pattern(systemd_machined_t, systemd_machined_var_run_t, systemd_machined_var_run_t)
Expand Down

0 comments on commit 6e86177

Please sign in to comment.