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
|
// -*- 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 unity8CalendarSummary = `allows operating as or interacting with the Unity 8 Calendar Service`
const unity8CalendarBaseDeclarationSlots = `
unity8-calendar:
allow-installation:
slot-snap-type:
- app
deny-auto-connection: true
deny-connection: true
`
const unity8CalendarPermanentSlotAppArmor = `
# Description: Allow operating as the EDS service. This gives privileged access
# to the system.
# DBus accesses
dbus (bind)
bus=session
name="org.gnome.evolution.dataserver.Calendar7",
dbus (bind)
bus=session
name="org.gnome.evolution.dataserver.Subprocess.Backend.Calendar*",
dbus (bind)
bus=session
name="com.canonical.SyncMonitor",
# Allow traffic to/from our path and interface with any method for unconfined
# clients to talk to our calendar services.
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/CalendarFactory
peer=(label=unconfined),
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/CalendarView/**
peer=(label=unconfined),
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/**
interface=org.gnome.evolution.dataserver.Calendar
peer=(label=unconfined),
dbus (receive)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/Backend/Calendar/**
peer=(label=unconfined),
# LP: #1319546. Apps shouldn't talk directly to sync-monitor, but allow it for
# now for trusted apps until sync-monitor is integrated with push
# notifications.
dbus (receive)
bus=session
path=/com/canonical/SyncMonitor
peer=(label=unconfined),
`
const unity8CalendarConnectedSlotAppArmor = `
# Allow service to interact with connected clients
# DBus accesses
########################
# Calendar
########################
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/CalendarFactory
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/CalendarView/**
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/**
interface=org.gnome.evolution.dataserver.Calendar
peer=(label=###PLUG_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/Backend/Calendar/**
peer=(label=###PLUG_SECURITY_TAGS###),
# LP: #1319546. Apps shouldn't talk directly to sync-monitor, but allow it for
# now for trusted apps until sync-monitor is integrated with push
# notifications.
dbus (receive, send)
bus=session
path=/com/canonical/SyncMonitor
peer=(label=###PLUG_SECURITY_TAGS###),
`
const unity8CalendarConnectedPlugAppArmor = `
# Allow connected clients to communicate with calendar service via DBus
########################
# Calendar
########################
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/CalendarFactory
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/CalendarView/**
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/**
interface=org.gnome.evolution.dataserver.Calendar
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/org/gnome/evolution/dataserver/Subprocess/Backend/Calendar/**
peer=(label=###SLOT_SECURITY_TAGS###),
dbus (receive, send)
bus=session
path=/com/canonical/SyncMonitor
peer=(label=###SLOT_SECURITY_TAGS###),
# LP: #1319546. Apps shouldn't talk directly to sync-monitor, but allow it for
# now for trusted apps until sync-monitor is integrated with push
# notifications.
dbus (receive, send)
bus=session
path=/com/canonical/SyncMonitor
peer=(label=###SLOT_SECURITY_TAGS###),
`
func init() {
registerIface(&unity8PimCommonInterface{
name: "unity8-calendar",
summary: unity8CalendarSummary,
baseDeclarationSlots: unity8CalendarBaseDeclarationSlots,
permanentSlotAppArmor: unity8CalendarPermanentSlotAppArmor,
connectedSlotAppArmor: unity8CalendarConnectedSlotAppArmor,
connectedPlugAppArmor: unity8CalendarConnectedPlugAppArmor,
})
}
|