forked from canonical/snapd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.go
258 lines (225 loc) · 8.56 KB
/
core.go
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// -*- 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 interfaces
import (
"fmt"
"regexp"
"strings"
"github.com/snapcore/snapd/snap"
)
// Sanitize plug with a given snapd interface.
func BeforePreparePlug(iface Interface, plugInfo *snap.PlugInfo) error {
if iface.Name() != plugInfo.Interface {
return fmt.Errorf("cannot sanitize plug %q (interface %q) using interface %q",
PlugRef{Snap: plugInfo.Snap.InstanceName(), Name: plugInfo.Name}, plugInfo.Interface, iface.Name())
}
var err error
if iface, ok := iface.(PlugSanitizer); ok {
err = iface.BeforePreparePlug(plugInfo)
}
return err
}
// PlugRef is a reference to a plug.
type PlugRef struct {
Snap string `json:"snap"`
Name string `json:"plug"`
}
// String returns the "snap:plug" representation of a plug reference.
func (ref PlugRef) String() string {
return fmt.Sprintf("%s:%s", ref.Snap, ref.Name)
}
// SortsBefore returns true when plug should be sorted before the other
func (ref PlugRef) SortsBefore(other PlugRef) bool {
if ref.Snap != other.Snap {
return ref.Snap < other.Snap
}
return ref.Name < other.Name
}
// Sanitize slot with a given snapd interface.
func BeforePrepareSlot(iface Interface, slotInfo *snap.SlotInfo) error {
if iface.Name() != slotInfo.Interface {
return fmt.Errorf("cannot sanitize slot %q (interface %q) using interface %q",
SlotRef{Snap: slotInfo.Snap.InstanceName(), Name: slotInfo.Name}, slotInfo.Interface, iface.Name())
}
var err error
if iface, ok := iface.(SlotSanitizer); ok {
err = iface.BeforePrepareSlot(slotInfo)
}
return err
}
// SlotRef is a reference to a slot.
type SlotRef struct {
Snap string `json:"snap"`
Name string `json:"slot"`
}
// String returns the "snap:slot" representation of a slot reference.
func (ref SlotRef) String() string {
return fmt.Sprintf("%s:%s", ref.Snap, ref.Name)
}
// SortsBefore returns true when slot should be sorted before the other
func (ref SlotRef) SortsBefore(other SlotRef) bool {
if ref.Snap != other.Snap {
return ref.Snap < other.Snap
}
return ref.Name < other.Name
}
// Interfaces holds information about a list of plugs, slots and their connections.
type Interfaces struct {
Plugs []*snap.PlugInfo
Slots []*snap.SlotInfo
Connections []*ConnRef
}
// Info holds information about a given interface and its instances.
type Info struct {
Name string
Summary string
DocURL string
Plugs []*snap.PlugInfo
Slots []*snap.SlotInfo
}
// ConnRef holds information about plug and slot reference that form a particular connection.
type ConnRef struct {
PlugRef PlugRef
SlotRef SlotRef
}
// NewConnRef creates a connection reference for given plug and slot
func NewConnRef(plug *snap.PlugInfo, slot *snap.SlotInfo) *ConnRef {
return &ConnRef{
PlugRef: PlugRef{Snap: plug.Snap.InstanceName(), Name: plug.Name},
SlotRef: SlotRef{Snap: slot.Snap.InstanceName(), Name: slot.Name},
}
}
// ID returns a string identifying a given connection.
func (conn *ConnRef) ID() string {
return fmt.Sprintf("%s:%s %s:%s", conn.PlugRef.Snap, conn.PlugRef.Name, conn.SlotRef.Snap, conn.SlotRef.Name)
}
// SortsBefore returns true when connection should be sorted before the other
func (conn *ConnRef) SortsBefore(other *ConnRef) bool {
if conn.PlugRef != other.PlugRef {
return conn.PlugRef.SortsBefore(other.PlugRef)
}
return conn.SlotRef.SortsBefore(other.SlotRef)
}
// ParseConnRef parses an ID string
func ParseConnRef(id string) (*ConnRef, error) {
var conn ConnRef
parts := strings.SplitN(id, " ", 2)
if len(parts) != 2 {
return nil, fmt.Errorf("malformed connection identifier: %q", id)
}
plugParts := strings.Split(parts[0], ":")
slotParts := strings.Split(parts[1], ":")
if len(plugParts) != 2 || len(slotParts) != 2 {
return nil, fmt.Errorf("malformed connection identifier: %q", id)
}
conn.PlugRef.Snap = plugParts[0]
conn.PlugRef.Name = plugParts[1]
conn.SlotRef.Snap = slotParts[0]
conn.SlotRef.Name = slotParts[1]
return &conn, nil
}
// Interface describes a group of interchangeable capabilities with common features.
// Interfaces act as a contract between system builders, application developers
// and end users.
type Interface interface {
// Unique and public name of this interface.
Name() string
// AutoConnect returns whether plug and slot should be
// implicitly auto-connected assuming they will be an
// unambiguous connection candidate and declaration-based checks
// allow.
AutoConnect(plug *snap.PlugInfo, slot *snap.SlotInfo) bool
}
// PlugSanitizer can be implemented by Interfaces that have reasons to sanitize their plugs.
type PlugSanitizer interface {
BeforePreparePlug(plug *snap.PlugInfo) error
}
// SlotSanitizer can be implemented by Interfaces that have reasons to sanitize their slots.
type SlotSanitizer interface {
BeforePrepareSlot(slot *snap.SlotInfo) error
}
// StaticInfo describes various static-info of a given interface.
//
// The Summary must be a one-line string of length suitable for listing views.
// The DocsURL can point to website (e.g. a forum thread) that goes into more
// depth and documents the interface in detail.
type StaticInfo struct {
Summary string `json:"summary,omitempty"`
DocURL string `json:"doc-url,omitempty"`
// ImplicitOnCore controls if a slot is automatically added to core (non-classic) systems.
ImplicitOnCore bool `json:"implicit-on-core,omitempty"`
// ImplicitOnClassic controls if a slot is automatically added to classic systems.
ImplicitOnClassic bool `json:"implicit-on-classic,omitempty"`
// BaseDeclarationPlugs defines an optional extension to the base-declaration assertion relevant for this interface.
BaseDeclarationPlugs string
// BaseDeclarationSlots defines an optional extension to the base-declaration assertion relevant for this interface.
BaseDeclarationSlots string
}
// StaticInfoOf returns the static-info of the given interface.
func StaticInfoOf(iface Interface) (si StaticInfo) {
type metaDataProvider interface {
StaticInfo() StaticInfo
}
if iface, ok := iface.(metaDataProvider); ok {
si = iface.StaticInfo()
}
return si
}
// Specification describes interactions between backends and interfaces.
type Specification interface {
// AddPermanentSlot records side-effects of having a slot.
AddPermanentSlot(iface Interface, slot *snap.SlotInfo) error
// AddPermanentPlug records side-effects of having a plug.
AddPermanentPlug(iface Interface, plug *snap.PlugInfo) error
// AddConnectedSlot records side-effects of having a connected slot.
AddConnectedSlot(iface Interface, plug *ConnectedPlug, slot *ConnectedSlot) error
// AddConnectedPlug records side-effects of having a connected plug.
AddConnectedPlug(iface Interface, plug *ConnectedPlug, slot *ConnectedSlot) error
}
// SecuritySystem is a name of a security system.
type SecuritySystem string
const (
// SecurityAppArmor identifies the apparmor security system.
SecurityAppArmor SecuritySystem = "apparmor"
// SecuritySecComp identifies the seccomp security system.
SecuritySecComp SecuritySystem = "seccomp"
// SecurityDBus identifies the DBus security system.
SecurityDBus SecuritySystem = "dbus"
// SecurityUDev identifies the UDev security system.
SecurityUDev SecuritySystem = "udev"
// SecurityMount identifies the mount security system.
SecurityMount SecuritySystem = "mount"
// SecurityKMod identifies the kernel modules security system
SecurityKMod SecuritySystem = "kmod"
// SecuritySystemd identifies the systemd services security system
SecuritySystemd SecuritySystem = "systemd"
)
var isValidBusName = regexp.MustCompile(`^[a-zA-Z_-][a-zA-Z0-9_-]*(\.[a-zA-Z_-][a-zA-Z0-9_-]*)+$`).MatchString
// ValidateDBusBusName checks if a string conforms to
// https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names
func ValidateDBusBusName(busName string) error {
if len(busName) == 0 {
return fmt.Errorf("DBus bus name must be set")
} else if len(busName) > 255 {
return fmt.Errorf("DBus bus name is too long (must be <= 255)")
}
if !isValidBusName(busName) {
return fmt.Errorf("invalid DBus bus name: %q", busName)
}
return nil
}