-
Notifications
You must be signed in to change notification settings - Fork 601
/
Copy pathdevice_asserts.go
444 lines (373 loc) · 11.8 KB
/
device_asserts.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// -*- 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 asserts
import (
"fmt"
"regexp"
"strings"
"time"
)
// Model holds a model assertion, which is a statement by a brand
// about the properties of a device model.
type Model struct {
assertionBase
classic bool
requiredSnaps []string
sysUserAuthority []string
timestamp time.Time
}
// BrandID returns the brand identifier. Same as the authority id.
func (mod *Model) BrandID() string {
return mod.HeaderString("brand-id")
}
// Model returns the model name identifier.
func (mod *Model) Model() string {
return mod.HeaderString("model")
}
// DisplayName returns the human-friendly name of the model or
// falls back to Model if this was not set.
func (mod *Model) DisplayName() string {
display := mod.HeaderString("display-name")
if display == "" {
return mod.Model()
}
return display
}
// Series returns the series of the core software the model uses.
func (mod *Model) Series() string {
return mod.HeaderString("series")
}
// Classic returns whether the model is a classic system.
func (mod *Model) Classic() bool {
return mod.classic
}
// Architecture returns the archicteture the model is based on.
func (mod *Model) Architecture() string {
return mod.HeaderString("architecture")
}
// Gadget returns the gadget snap the model uses.
func (mod *Model) Gadget() string {
return mod.HeaderString("gadget")
}
// Kernel returns the kernel snap the model uses.
func (mod *Model) Kernel() string {
return mod.HeaderString("kernel")
}
// Store returns the snap store the model uses.
func (mod *Model) Store() string {
return mod.HeaderString("store")
}
// RequiredSnaps returns the snaps that must be installed at all times and cannot be removed for this model.
func (mod *Model) RequiredSnaps() []string {
return mod.requiredSnaps
}
// SystemUserAuthority returns the authority ids that are accepted as signers of system-user assertions for this model. Empty list means any.
func (mod *Model) SystemUserAuthority() []string {
return mod.sysUserAuthority
}
// Timestamp returns the time when the model assertion was issued.
func (mod *Model) Timestamp() time.Time {
return mod.timestamp
}
// Implement further consistency checks.
func (mod *Model) checkConsistency(db RODatabase, acck *AccountKey) error {
// TODO: double check trust level of authority depending on class and possibly allowed-modes
return nil
}
// sanity
var _ consistencyChecker = (*Model)(nil)
// limit model to only lowercase for now
var validModel = regexp.MustCompile("^[a-zA-Z0-9](?:-?[a-zA-Z0-9])*$")
func checkModel(headers map[string]interface{}) (string, error) {
s, err := checkStringMatches(headers, "model", validModel)
if err != nil {
return "", err
}
// TODO: support the concept of case insensitive/preserving string headers
if strings.ToLower(s) != s {
return "", fmt.Errorf(`"model" header cannot contain uppercase letters`)
}
return s, nil
}
func checkAuthorityMatchesBrand(a Assertion) error {
typeName := a.Type().Name
authorityID := a.AuthorityID()
brand := a.HeaderString("brand-id")
if brand != authorityID {
return fmt.Errorf("authority-id and brand-id must match, %s assertions are expected to be signed by the brand: %q != %q", typeName, authorityID, brand)
}
return nil
}
func checkOptionalSystemUserAuthority(headers map[string]interface{}, brandID string) ([]string, error) {
const name = "system-user-authority"
v, ok := headers[name]
if !ok {
return []string{brandID}, nil
}
switch x := v.(type) {
case string:
if x == "*" {
return nil, nil
}
case []interface{}:
lst, err := checkStringListMatches(headers, name, validAccountID)
if err == nil {
return lst, nil
}
}
return nil, fmt.Errorf("%q header must be '*' or a list of account ids", name)
}
var (
modelMandatory = []string{"architecture", "gadget", "kernel"}
classicModelOptional = []string{"architecture", "gadget"}
)
func assembleModel(assert assertionBase) (Assertion, error) {
err := checkAuthorityMatchesBrand(&assert)
if err != nil {
return nil, err
}
_, err = checkModel(assert.headers)
if err != nil {
return nil, err
}
classic, err := checkOptionalBool(assert.headers, "classic")
if err != nil {
return nil, err
}
if classic {
if _, ok := assert.headers["kernel"]; ok {
return nil, fmt.Errorf("cannot specify a kernel with a classic model")
}
}
checker := checkNotEmptyString
toCheck := modelMandatory
if classic {
checker = checkOptionalString
toCheck = classicModelOptional
}
for _, h := range toCheck {
if _, err := checker(assert.headers, h); err != nil {
return nil, err
}
}
// store is optional but must be a string, defaults to the ubuntu store
_, err = checkOptionalString(assert.headers, "store")
if err != nil {
return nil, err
}
// display-name is optional but must be a string
_, err = checkOptionalString(assert.headers, "display-name")
if err != nil {
return nil, err
}
reqSnaps, err := checkStringList(assert.headers, "required-snaps")
if err != nil {
return nil, err
}
sysUserAuthority, err := checkOptionalSystemUserAuthority(assert.headers, assert.HeaderString("brand-id"))
if err != nil {
return nil, err
}
timestamp, err := checkRFC3339Date(assert.headers, "timestamp")
if err != nil {
return nil, err
}
// NB:
// * core is not supported at this time, it defaults to ubuntu-core
// in prepare-image until rename and/or introduction of the header.
// * some form of allowed-modes, class are postponed,
//
// prepare-image takes care of not allowing them for now
// ignore extra headers and non-empty body for future compatibility
return &Model{
assertionBase: assert,
classic: classic,
requiredSnaps: reqSnaps,
sysUserAuthority: sysUserAuthority,
timestamp: timestamp,
}, nil
}
// Serial holds a serial assertion, which is a statement binding a
// device identity with the device public key.
type Serial struct {
assertionBase
timestamp time.Time
pubKey PublicKey
}
// BrandID returns the brand identifier of the device.
func (ser *Serial) BrandID() string {
return ser.HeaderString("brand-id")
}
// Model returns the model name identifier of the device.
func (ser *Serial) Model() string {
return ser.HeaderString("model")
}
// Serial returns the serial identifier of the device, together with
// brand id and model they form the unique identifier of the device.
func (ser *Serial) Serial() string {
return ser.HeaderString("serial")
}
// DeviceKey returns the public key of the device.
func (ser *Serial) DeviceKey() PublicKey {
return ser.pubKey
}
// Timestamp returns the time when the serial assertion was issued.
func (ser *Serial) Timestamp() time.Time {
return ser.timestamp
}
// TODO: implement further consistency checks for Serial but first review approach
func assembleSerial(assert assertionBase) (Assertion, error) {
err := checkAuthorityMatchesBrand(&assert)
if err != nil {
return nil, err
}
_, err = checkModel(assert.headers)
if err != nil {
return nil, err
}
encodedKey, err := checkNotEmptyString(assert.headers, "device-key")
if err != nil {
return nil, err
}
pubKey, err := DecodePublicKey([]byte(encodedKey))
if err != nil {
return nil, err
}
keyID, err := checkNotEmptyString(assert.headers, "device-key-sha3-384")
if err != nil {
return nil, err
}
if keyID != pubKey.ID() {
return nil, fmt.Errorf("device key does not match provided key id")
}
timestamp, err := checkRFC3339Date(assert.headers, "timestamp")
if err != nil {
return nil, err
}
// ignore extra headers and non-empty body for future compatibility
return &Serial{
assertionBase: assert,
timestamp: timestamp,
pubKey: pubKey,
}, nil
}
// SerialRequest holds a serial-request assertion, which is a self-signed request to obtain a full device identity bound to the device public key.
type SerialRequest struct {
assertionBase
pubKey PublicKey
}
// BrandID returns the brand identifier of the device making the request.
func (sreq *SerialRequest) BrandID() string {
return sreq.HeaderString("brand-id")
}
// Model returns the model name identifier of the device making the request.
func (sreq *SerialRequest) Model() string {
return sreq.HeaderString("model")
}
// Serial returns the optional proposed serial identifier for the device, the service taking the request might use it or ignore it.
func (sreq *SerialRequest) Serial() string {
return sreq.HeaderString("serial")
}
// RequestID returns the id for the request, obtained from and to be presented to the serial signing service.
func (sreq *SerialRequest) RequestID() string {
return sreq.HeaderString("request-id")
}
// DeviceKey returns the public key of the device making the request.
func (sreq *SerialRequest) DeviceKey() PublicKey {
return sreq.pubKey
}
func assembleSerialRequest(assert assertionBase) (Assertion, error) {
_, err := checkNotEmptyString(assert.headers, "brand-id")
if err != nil {
return nil, err
}
_, err = checkModel(assert.headers)
if err != nil {
return nil, err
}
_, err = checkNotEmptyString(assert.headers, "request-id")
if err != nil {
return nil, err
}
_, err = checkOptionalString(assert.headers, "serial")
if err != nil {
return nil, err
}
encodedKey, err := checkNotEmptyString(assert.headers, "device-key")
if err != nil {
return nil, err
}
pubKey, err := DecodePublicKey([]byte(encodedKey))
if err != nil {
return nil, err
}
if pubKey.ID() != assert.SignKeyID() {
return nil, fmt.Errorf("device key does not match included signing key id")
}
// ignore extra headers and non-empty body for future compatibility
return &SerialRequest{
assertionBase: assert,
pubKey: pubKey,
}, nil
}
// DeviceSessionRequest holds a device-session-request assertion, which is a request wrapping a store-provided nonce to start a session by a device signed with its key.
type DeviceSessionRequest struct {
assertionBase
timestamp time.Time
}
// BrandID returns the brand identifier of the device making the request.
func (req *DeviceSessionRequest) BrandID() string {
return req.HeaderString("brand-id")
}
// Model returns the model name identifier of the device making the request.
func (req *DeviceSessionRequest) Model() string {
return req.HeaderString("model")
}
// Serial returns the serial identifier of the device making the request,
// together with brand id and model it forms the unique identifier of
// the device.
func (req *DeviceSessionRequest) Serial() string {
return req.HeaderString("serial")
}
// Nonce returns the nonce obtained from store and to be presented when requesting a device session.
func (req *DeviceSessionRequest) Nonce() string {
return req.HeaderString("nonce")
}
// Timestamp returns the time when the device-session-request was created.
func (req *DeviceSessionRequest) Timestamp() time.Time {
return req.timestamp
}
func assembleDeviceSessionRequest(assert assertionBase) (Assertion, error) {
_, err := checkModel(assert.headers)
if err != nil {
return nil, err
}
_, err = checkNotEmptyString(assert.headers, "nonce")
if err != nil {
return nil, err
}
timestamp, err := checkRFC3339Date(assert.headers, "timestamp")
if err != nil {
return nil, err
}
// ignore extra headers and non-empty body for future compatibility
return &DeviceSessionRequest{
assertionBase: assert,
timestamp: timestamp,
}, nil
}