mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-09 02:41:03 +01:00

argument. Also fixed /usr/lib -> /usr/{lib,lib64} to get libvirt leasehelper script to run even on x86_64. References: https://bugzilla.opensuse.org/show_bug.cgi?id=911001 Patch by "Cédric Bosdonnat" <cbosdonnat@suse.com> Note: the original patch used {lib,lib64} - I changed it to lib{,64} to match the style we typically use. Acked-by: John Johansen <john.johansen@canonical.com>
80 lines
2.3 KiB
Text
80 lines
2.3 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 {
|
|
#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,
|
|
|
|
/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
|
|
|
|
/bin/bash 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,
|
|
|
|
# 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>
|
|
}
|