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 184 185 186 187 188 189 190 191 192 193 194
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016 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
const unity8ContactsSummary = `allows operating as or interacting with the Unity 8 Contacts Service`
const unity8ContactsBaseDeclarationSlots = `
unity8-contacts:
allow-installation:
slot-snap-type:
- app
deny-auto-connection: true
deny-connection: true
`
const unity8ContactsPermanentSlotAppArmor = `
# Description: Allow operating as the EDS service. This gives privileged access
# to the system.
# Allow binding the service to the requested connection name
dbus (bind)
bus=session
name=org.gnome.evolution.dataserver.AddressBook9,
dbus (bind)
bus=session
name=org.gnome.evolution.dataserver.Subprocess.Backend.AddressBook*,
dbus (bind)
bus=session
name=com.canonical.pim,
# LP: #1319546. Apps shouldn't talk directly to bute, but allow it for
# now for trusted apps until buteo is integrated with push
# notifications.
dbus (bind)
bus=session
name=com.meego.msyncd,
# Allow traffic to/from our path and interface with any method for unconfined
# clients to talk to our address-book services.
########################
# EDS - AddressBook
########################
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/AddressBookFactory
peer=(label=unconfined),
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/AddressBookView/**
peer=(label=unconfined),
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/**
interface=org.gnome.evolution.dataserver.AddressBook
peer=(label=unconfined),
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/Backend/AddressBookView/**
peer=(label=unconfined),
##########################
# Canonical - AddressBook
##########################
dbus (receive)
bus=session
path=/com/canonical/pim/AddressBook
peer=(label=unconfined),
dbus (receive)
bus=session
path=/com/canonical/pim/AddressBookView
peer=(label=unconfined),
dbus (receive)
bus=session
peer=(label=unconfined),
`
const unity8ContactsConnectedSlotAppArmor = `
# Allow service to interact with connected clients DBus accesses
########################
# EDS - AddressBook
########################
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/AddressBookFactory
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/AddressBookView/**
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/**
interface=org.gnome.evolution.dataserver.AddressBook
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/Backend/AddressBookView/**
peer=(label=###PLUG_SECURITY_TAGS###),
##########################
# Canonical - AddressBook
##########################
dbus (receive, send)
bus=session
path=/com/canonical/pim/AddressBook
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/com/canonical/pim/AddressBookView
peer=(label=###PLUG_SECURITY_TAGS###),
# LP: #1319546. Apps shouldn't talk directly to sync-monitor, but allow it for
# now for trusted apps until buteo is integrated with push
# notifications.
dbus (receive, send)
bus=session
path=/synchronizer{,/**}
peer=(label=###PLUG_SECURITY_TAGS###),
`
const unity8ContactsConnectedPlugAppArmor = `
# Allow connected clients to communicate with contacts service via DBus
########################
# EDS - AddressBook
########################
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/AddressBookFactory
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/AddressBookView/**
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/**
interface=org.gnome.evolution.dataserver.AddressBook
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/Backend/AddressBookView/**
peer=(label=###SLOT_SECURITY_TAGS###),
##########################
# Canonical - AddressBook
##########################
dbus (receive, send)
bus=session
path=/com/canonical/pim/AddressBook
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/com/canonical/pim/AddressBookView
peer=(label=###SLOT_SECURITY_TAGS###),
# LP: #1319546. Apps shouldn't talk directly to sync-monitor, but allow it for
# now for trusted apps until buteo is integrated with push
# notifications.
dbus (receive, send)
bus=session
path=/synchronizer{,/**}
peer=(label=###SLOT_SECURITY_TAGS###),
`
func init() {
registerIface(&unity8PimCommonInterface{
name: "unity8-contacts",
summary: unity8ContactsSummary,
baseDeclarationSlots: unity8ContactsBaseDeclarationSlots,
permanentSlotAppArmor: unity8ContactsPermanentSlotAppArmor,
connectedSlotAppArmor: unity8ContactsConnectedSlotAppArmor,
connectedPlugAppArmor: unity8ContactsConnectedPlugAppArmor,
})
}
|