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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016-2020 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/release"
"github.com/snapcore/snapd/snap"
)
// On classic systems where the slot is implicitly provided, the interface
// allows access to the cups control socket.
//
// On systems where the slot is provided by an app snap, the cups-control
// interface is the companion interface to the cups interface. The design of
// these interfaces is based on the idea that the slot implementation (eg
// cupsd) is expected to query snapd to determine if the cups-control interface
// is connected or not for the peer client process and the print service will
// mediate admin functionality (ie, the rules in these interfaces allow
// connecting to the print service, but do not implement enforcement rules; it
// is up to the print service to provide enforcement).
const cupsControlSummary = `allows access to the CUPS control socket`
// cups-control is implicit on classic but may also be provided by an app snap
// on core or classic (the current design allows the snap provider to slots
// both cups-control and cups or just cups-control (like with implicit classic
// or any slot provider without mediation patches), but not just cups).
const cupsControlBaseDeclarationSlots = `
cups-control:
allow-installation:
slot-snap-type:
- app
- core
deny-auto-connection: true
deny-connection:
on-classic: false
`
const cupsControlPermanentSlotAppArmor = `
# Allow daemon access to create the CUPS socket
/{,var/}run/cups/ rw,
/{,var/}run/cups/** rwk,
# Allow cups to verify passwords directly
/etc/shadow r,
/var/lib/extrausers/shadow r,
# Some versions of CUPS will verify the connecting pid's
# security label
@{PROC}/[0-9]*/attr/{,apparmor/}current r,
# Allow daemon access to the color manager on the system
dbus (receive, send)
bus=system
path=/org/freedesktop/ColorManager
interface=org.freedesktop.ColorManager
peer=(name=org.freedesktop.ColorManager),
# Allow daemon to send notifications
dbus (send)
bus=system
path=/org/cups/cupsd/Notifier
interface=org.cups.cupsd.Notifier
peer=(name=org.freedesktop.DBus,label=unconfined),
# Allow daemon to send signals to its snap_daemon processes
capability kill,
# Allow daemon to manage snap_daemon files and directories
capability fsetid,
`
const cupsControlConnectedSlotAppArmor = `
# Allow daemon to send notifications to connected snaps
dbus (send)
bus=system
path=/org/cups/cupsd/Notifier
interface=org.cups.cupsd.Notifier
peer=(name=org.freedesktop.DBus,label=###PLUG_SECURITY_TAGS###),
`
const cupsControlConnectedPlugAppArmor = `
# Allow communicating with the cups server for printing and configuration.
#include <abstractions/cups-client>
/{,var/}run/cups/printcap r,
# Allow receiving all DBus signal notifications from the daemon (see
# notifier/dbus.c in cups sources)
dbus (receive)
bus=system
path=/org/cups/cupsd/Notifier
interface=org.cups.cupsd.Notifier
peer=(name=org.freedesktop.DBus,label=###SLOT_SECURITY_TAGS###),
`
type cupsControlInterface struct {
commonInterface
}
func (iface *cupsControlInterface) AppArmorPermanentSlot(spec *apparmor.Specification, slot *snap.SlotInfo) error {
// On classic, only apply slot snippet when running as application snap
// on classic since the slot side may be from the classic OS or snap.
if !implicitSystemPermanentSlot(slot) {
spec.AddSnippet(cupsControlPermanentSlotAppArmor)
}
return nil
}
func (iface *cupsControlInterface) AppArmorConnectedSlot(spec *apparmor.Specification, plug *interfaces.ConnectedPlug, slot *interfaces.ConnectedSlot) error {
// On classic, only apply slot snippet when running as application snap
// on classic since the slot side may be from the classic OS or snap.
if !implicitSystemConnectedSlot(slot) {
old := "###PLUG_SECURITY_TAGS###"
new := plugAppLabelExpr(plug)
snippet := strings.Replace(cupsControlConnectedSlotAppArmor, old, new, -1)
spec.AddSnippet(snippet)
}
return nil
}
func (iface *cupsControlInterface) AppArmorConnectedPlug(spec *apparmor.Specification, plug *interfaces.ConnectedPlug, slot *interfaces.ConnectedSlot) error {
old := "###SLOT_SECURITY_TAGS###"
var new string
// If we're running on classic, cups may be installed either as a snap
// or as part of the classic OS. If it is part of the classic OS, it
// will not have a security label like it would when installed as a
// snap.
if implicitSystemConnectedSlot(slot) {
// cupsd from the OS may be confined or unconfined. Newer
// releases may use the 'cupsd' label instead of the old
// path-based label.
new = "\"{unconfined,/usr/sbin/cupsd,cupsd}\""
} else {
new = slotAppLabelExpr(slot)
}
// implement 'implicitOnCore: false/implicitOnClassic: true' by only
// applying the snippet if the slot is an app or we are on classic
if slot.Snap().Type() == snap.TypeApp || release.OnClassic {
snippet := strings.Replace(cupsControlConnectedPlugAppArmor, old, new, -1)
spec.AddSnippet(snippet)
}
return nil
}
func init() {
registerIface(&cupsControlInterface{
commonInterface: commonInterface{
name: "cups-control",
summary: cupsControlSummary,
baseDeclarationSlots: cupsControlBaseDeclarationSlots,
implicitOnCore: false,
implicitOnClassic: true,
},
})
}
|