Skip to content
Snippets Groups Projects
  • Stephen Smalley's avatar
    7c11bdc4
    Allow dnsmasq to inherit/use netd UDP socket. · 7c11bdc4
    Stephen Smalley authored
    
    Addresses denials such as:
    avc: denied { read write } for comm="dnsmasq" path="socket:[1054090]" dev="sockfs" ino=1054090 scontext=u:r:dnsmasq:s0 tcontext=u:r:netd:s0 tclass=udp_socket
    This may not be needed (need to check netd to see if it should be closing
    all of these sockets before exec'ing other programs), but should be harmless.
    
    Change-Id: I77c7af5e050e039fd48322914eeabbcb8a716040
    Signed-off-by: default avatarStephen Smalley <sds@tycho.nsa.gov>
    7c11bdc4
    History
    Allow dnsmasq to inherit/use netd UDP socket.
    Stephen Smalley authored
    
    Addresses denials such as:
    avc: denied { read write } for comm="dnsmasq" path="socket:[1054090]" dev="sockfs" ino=1054090 scontext=u:r:dnsmasq:s0 tcontext=u:r:netd:s0 tclass=udp_socket
    This may not be needed (need to check netd to see if it should be closing
    all of these sockets before exec'ing other programs), but should be harmless.
    
    Change-Id: I77c7af5e050e039fd48322914eeabbcb8a716040
    Signed-off-by: default avatarStephen Smalley <sds@tycho.nsa.gov>
dnsmasq.te 917 B
# DNS, DHCP services
type dnsmasq, domain;
type dnsmasq_exec, exec_type, file_type;

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 dhcp_data_file:dir w_dir_perms;
allow dnsmasq dhcp_data_file:file create_file_perms;

# Inherit and use open files from netd.
allow dnsmasq netd:fd use;
allow dnsmasq netd:fifo_file { read write };
# TODO: Investigate whether these inherited sockets should be closed on exec.
allow dnsmasq netd:netlink_kobject_uevent_socket { read write };
allow dnsmasq netd:netlink_nflog_socket { read write };
allow dnsmasq netd:netlink_route_socket { read write };
allow dnsmasq netd:unix_stream_socket { read write };
allow dnsmasq netd:unix_dgram_socket { read write };
allow dnsmasq netd:udp_socket { read write };