1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package builtin
import (
"strings"
"github.com/snapcore/snapd/interfaces"
"github.com/snapcore/snapd/interfaces/apparmor"
"github.com/snapcore/snapd/interfaces/dbus"
"github.com/snapcore/snapd/snap"
)
const avahiControlBaseDeclarationSlots = `
avahi-control:
allow-installation:
slot-snap-type:
- app
- core
deny-auto-connection: true
deny-connection:
on-classic: false
`
const avahiControlSummary = `allows control over service discovery on a local network via the mDNS/DNS-SD protocol suite`
const avahiControlConnectedSlotAppArmor = `
# Description: allows configuration of service discovery via mDNS/DNS-SD
# EntryGroup
dbus (receive)
bus=system
path=/Client*/EntryGroup*
interface=org.freedesktop.Avahi.EntryGroup
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (send)
bus=system
interface=org.freedesktop.Avahi.EntryGroup
member=StateChanged
peer=(name=org.freedesktop.Avahi, label=###PLUG_SECURITY_TAGS###),
`
const avahiControlConnectedPlugAppArmor = `
dbus (send)
bus=system
path=/
interface=org.freedesktop.Avahi.Server
member=Set*
peer=(name=org.freedesktop.Avahi,label=###SLOT_SECURITY_TAGS###),
# EntryGroup
dbus (send)
bus=system
path=/
interface=org.freedesktop.Avahi.Server
member=EntryGroupNew
peer=(name=org.freedesktop.Avahi, label=###SLOT_SECURITY_TAGS###),
dbus (send)
bus=system
path=/Client*/EntryGroup*
interface=org.freedesktop.Avahi.EntryGroup
member={Free,Commit,Reset}
peer=(name=org.freedesktop.Avahi, label=###SLOT_SECURITY_TAGS###),
dbus (send)
bus=system
path=/Client*/EntryGroup*
interface=org.freedesktop.Avahi.EntryGroup
member={GetState,IsEmpty,UpdateServiceTxt}
peer=(name=org.freedesktop.Avahi, label=###SLOT_SECURITY_TAGS###),
dbus (send)
bus=system
path=/Client*/EntryGroup*
interface=org.freedesktop.Avahi.EntryGroup
member=Add{Service,ServiceSubtype,Address,Record}
peer=(name=org.freedesktop.Avahi, label=###SLOT_SECURITY_TAGS###),
dbus (receive)
bus=system
path=/Client*/EntryGroup*
interface=org.freedesktop.Avahi.EntryGroup
peer=(label=###SLOT_SECURITY_TAGS###),
`
type avahiControlInterface struct{}
func (iface *avahiControlInterface) Name() string {
return "avahi-control"
}
func (iface *avahiControlInterface) StaticInfo() interfaces.StaticInfo {
return interfaces.StaticInfo{
Summary: avahiControlSummary,
ImplicitOnClassic: true,
BaseDeclarationSlots: avahiControlBaseDeclarationSlots,
}
}
func (iface *avahiControlInterface) AppArmorConnectedPlug(spec *apparmor.Specification, plug *interfaces.ConnectedPlug, slot *interfaces.ConnectedSlot) error {
old := "###SLOT_SECURITY_TAGS###"
var new string
// If we're running on classic, Avahi may be installed either as a snap of
// as part of the OS. If it is part of the OS, it will not have a security
// label like it would when installed as a snap.
if implicitSystemConnectedSlot(slot) {
// avahi from the OS is typically unconfined but known to sometimes be confined
// with stock apparmor 2.13.2+ profiles the label is avahi-daemon
new = "\"{unconfined,/usr/sbin/avahi-daemon,avahi-daemon}\""
} else {
new = slotAppLabelExpr(slot)
}
// avahi-control implies avahi-observe, so add snippets for both here
snippet := strings.Replace(avahiObserveConnectedPlugAppArmor, old, new, -1)
spec.AddSnippet(snippet)
snippet = strings.Replace(avahiControlConnectedPlugAppArmor, old, new, -1)
spec.AddSnippet(snippet)
return nil
}
func (iface *avahiControlInterface) AppArmorPermanentSlot(spec *apparmor.Specification, slot *snap.SlotInfo) error {
// Only apply slot snippet when running as application snap
// on classic, slot side can be system or application
if !implicitSystemPermanentSlot(slot) {
// NOTE: this is using avahi-observe permanent slot as it contains
// base declarations for running as the avahi service.
spec.AddSnippet(avahiObservePermanentSlotAppArmor)
}
return nil
}
func (iface *avahiControlInterface) AppArmorConnectedSlot(spec *apparmor.Specification, plug *interfaces.ConnectedPlug, slot *interfaces.ConnectedSlot) error {
// Only apply slot snippet when running as application snap
// on classic, slot side can be system or application
if !implicitSystemConnectedSlot(slot) {
old := "###PLUG_SECURITY_TAGS###"
new := plugAppLabelExpr(plug)
// avahi-control implies avahi-observe, so add snippets for both here
snippet := strings.Replace(avahiObserveConnectedSlotAppArmor, old, new, -1)
spec.AddSnippet(snippet)
snippet = strings.Replace(avahiControlConnectedSlotAppArmor, old, new, -1)
spec.AddSnippet(snippet)
}
return nil
}
func (iface *avahiControlInterface) DBusPermanentSlot(spec *dbus.Specification, slot *snap.SlotInfo) error {
// Only apply slot snippet when running as application snap
// on classic, slot side can be system or application
if !implicitSystemPermanentSlot(slot) {
// NOTE: this is using avahi-observe permanent slot as it contains
// base declarations for running as the avahi service.
spec.AddSnippet(avahiObservePermanentSlotDBus)
}
return nil
}
func (iface *avahiControlInterface) AutoConnect(*snap.PlugInfo, *snap.SlotInfo) bool {
// allow what declarations allowed
return true
}
func init() {
registerIface(&avahiControlInterface{})
}
|