Skip to content
Snippets Groups Projects
Commit 45815c3e authored by Stephen Smalley's avatar Stephen Smalley
Browse files

Allow dnsmasq dac_override capability.


dnsmasq presently requires dac_override to create files under
/data/misc/dhcp.  Until it can be changed to run with group dhcp,
allow dac_override.

Addresses denials such as:
avc:  denied  { dac_override } for  pid=21166 comm="dnsmasq" capability=1  scontext=u:r:dnsmasq:s0 tcontext=u:r:dnsmasq:s0 tclass=capability

Change-Id: Ic352dc7fc4ab44086c6b06cf727c48f29098f3a1
Signed-off-by: default avatarStephen Smalley <sds@tycho.nsa.gov>
parent cb8c5262
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,9 @@ type dnsmasq_exec, exec_type, file_type; ...@@ -5,6 +5,9 @@ type dnsmasq_exec, exec_type, file_type;
net_domain(dnsmasq) net_domain(dnsmasq)
# TODO: Run with dhcp group to avoid need for dac_override.
allow dnsmasq self:capability dac_override;
allow dnsmasq self:capability { net_admin net_raw net_bind_service setgid setuid }; allow dnsmasq self:capability { net_admin net_raw net_bind_service setgid setuid };
allow dnsmasq dhcp_data_file:dir w_dir_perms; allow dnsmasq dhcp_data_file:dir w_dir_perms;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment