mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00

https://launchpad.net/bugs/1569316 When Ubuntu made the jump from network-manager 1.0.4 to 1.1.93, the dnsmasq process spawned from network-manager started hitting a disconnected path denial: audit: type=1400 audit(1460463960.943:31702): apparmor="ALLOWED" operation="connect" info="Failed name lookup - disconnected path" error=-13 profile="/usr/sbin/dnsmasq" name="run/dbus/system_bus_socket" pid=3448 comm="dnsmasq" requested_mask="wr" denied_mask="wr" fsuid=65534 ouid=0 Signed-off-by: Tyler Hicks <tyhicks@canonical.com> Acked-by: Christian Boltz <apparmor@cboltz.de>
86 lines
2.5 KiB
Text
86 lines
2.5 KiB
Text
# ------------------------------------------------------------------
|
|
#
|
|
# Copyright (C) 2009 John Dong <jdong@ubuntu.com>
|
|
# Copyright (C) 2010 Canonical Ltd.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of version 2 of the GNU General Public
|
|
# License published by the Free Software Foundation.
|
|
#
|
|
# ------------------------------------------------------------------
|
|
|
|
@{TFTP_DIR}=/var/tftp /srv/tftpboot
|
|
|
|
#include <tunables/global>
|
|
/usr/sbin/dnsmasq flags=(attach_disconnected) {
|
|
#include <abstractions/base>
|
|
#include <abstractions/dbus>
|
|
#include <abstractions/nameservice>
|
|
|
|
capability net_bind_service,
|
|
capability setgid,
|
|
capability setuid,
|
|
capability dac_override,
|
|
capability net_admin, # for DHCP server
|
|
capability net_raw, # for DHCP server ping checks
|
|
network inet raw,
|
|
network inet6 raw,
|
|
|
|
signal (receive) peer=/usr/sbin/libvirtd,
|
|
ptrace (readby) peer=/usr/sbin/libvirtd,
|
|
|
|
owner /dev/tty rw,
|
|
|
|
/etc/dnsmasq.conf r,
|
|
/etc/dnsmasq.d/ r,
|
|
/etc/dnsmasq.d/* r,
|
|
/etc/ethers r,
|
|
/etc/NetworkManager/dnsmasq.d/ r,
|
|
/etc/NetworkManager/dnsmasq.d/* r,
|
|
|
|
/usr/sbin/dnsmasq mr,
|
|
|
|
/{,var/}run/*dnsmasq*.pid w,
|
|
/{,var/}run/dnsmasq-forwarders.conf r,
|
|
/{,var/}run/dnsmasq/ r,
|
|
/{,var/}run/dnsmasq/* rw,
|
|
|
|
/var/lib/misc/dnsmasq.leases rw, # Required only for DHCP server usage
|
|
|
|
/{,usr/}bin/{ba,da,}sh ix, # Required to execute --dhcp-script argument
|
|
|
|
# access to iface mtu needed for Router Advertisement messages in IPv6
|
|
# Neighbor Discovery protocol (RFC 2461)
|
|
@{PROC}/sys/net/ipv6/conf/*/mtu r,
|
|
|
|
# for the read-only TFTP server
|
|
@{TFTP_DIR}/ r,
|
|
@{TFTP_DIR}/** r,
|
|
|
|
# libvirt config, lease and hosts files for dnsmasq
|
|
/var/lib/libvirt/dnsmasq/ r,
|
|
/var/lib/libvirt/dnsmasq/* r,
|
|
/var/lib/libvirt/dnsmasq/*.leases rw,
|
|
/var/lib/libvirt/dnsmasq/*.status* rw,
|
|
|
|
# libvirt pid files for dnsmasq
|
|
/{,var/}run/libvirt/network/ r,
|
|
/{,var/}run/libvirt/network/*.pid rw,
|
|
|
|
# libvirt lease helper
|
|
/usr/lib{,64}/libvirt/libvirt_leaseshelper ix,
|
|
/{,var/}run/leaseshelper.pid rwk,
|
|
|
|
# lxc-net pid and lease files
|
|
/{,var/}run/lxc/dnsmasq.pid rw,
|
|
/var/lib/misc/dnsmasq.*.leases rw,
|
|
|
|
# NetworkManager integration
|
|
/{,var/}run/nm-dns-dnsmasq.conf r,
|
|
/{,var/}run/sendsigs.omit.d/*dnsmasq.pid w,
|
|
/{,var/}run/NetworkManager/dnsmasq.conf r,
|
|
/{,var/}run/NetworkManager/dnsmasq.pid w,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
#include <local/usr.sbin.dnsmasq>
|
|
}
|