forked from canonical/snapd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_snaps.go
1030 lines (884 loc) · 29.5 KB
/
api_snaps.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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2015-2022 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 daemon
import (
"context"
"encoding/json"
"errors"
"fmt"
"mime"
"net/http"
"strings"
"time"
"github.com/snapcore/snapd/asserts/snapasserts"
"github.com/snapcore/snapd/client"
"github.com/snapcore/snapd/i18n"
"github.com/snapcore/snapd/logger"
"github.com/snapcore/snapd/overlord/assertstate"
"github.com/snapcore/snapd/overlord/auth"
"github.com/snapcore/snapd/overlord/servicestate"
"github.com/snapcore/snapd/overlord/snapstate"
"github.com/snapcore/snapd/overlord/state"
"github.com/snapcore/snapd/progress"
"github.com/snapcore/snapd/sandbox"
"github.com/snapcore/snapd/snap"
"github.com/snapcore/snapd/snap/channel"
"github.com/snapcore/snapd/strutil"
)
var (
// see daemon.go:canAccess for details how the access is controlled
snapCmd = &Command{
Path: "/v2/snaps/{name}",
GET: getSnapInfo,
POST: postSnap,
ReadAccess: openAccess{},
WriteAccess: authenticatedAccess{Polkit: polkitActionManage},
}
snapsCmd = &Command{
Path: "/v2/snaps",
GET: getSnapsInfo,
POST: postSnaps,
ReadAccess: openAccess{},
WriteAccess: authenticatedAccess{Polkit: polkitActionManage},
}
)
func getSnapInfo(c *Command, r *http.Request, user *auth.UserState) Response {
vars := muxVars(r)
name := vars["name"]
about, err := localSnapInfo(c.d.overlord.State(), name)
if err != nil {
if err == errNoSnap {
return SnapNotFound(name, err)
}
return InternalError("%v", err)
}
route := c.d.router.Get(c.Path)
if route == nil {
return InternalError("cannot find route for %q snap", name)
}
url, err := route.URL("name", name)
if err != nil {
return InternalError("cannot build URL for %q snap: %v", name, err)
}
sd := servicestate.NewStatusDecorator(progress.Null)
result := webify(mapLocal(about, sd), url.String())
return SyncResponse(result)
}
func webify(result *client.Snap, resource string) *client.Snap {
if result.Icon == "" || strings.HasPrefix(result.Icon, "http") {
return result
}
result.Icon = ""
route := appIconCmd.d.router.Get(appIconCmd.Path)
if route != nil {
url, err := route.URL("name", result.Name)
if err == nil {
result.Icon = url.String()
}
}
return result
}
func postSnap(c *Command, r *http.Request, user *auth.UserState) Response {
route := c.d.router.Get(stateChangeCmd.Path)
if route == nil {
return InternalError("cannot find route for change")
}
decoder := json.NewDecoder(r.Body)
var inst snapInstruction
if err := decoder.Decode(&inst); err != nil {
return BadRequest("cannot decode request body into snap instruction: %v", err)
}
inst.ctx = r.Context()
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
if user != nil {
inst.userID = user.ID
}
vars := muxVars(r)
inst.Snaps = []string{vars["name"]}
if err := inst.validate(); err != nil {
return BadRequest("%s", err)
}
impl := inst.dispatch()
if impl == nil {
return BadRequest("unknown action %s", inst.Action)
}
msg, tsets, err := impl(&inst, st)
if err != nil {
return inst.errToResponse(err)
}
chg := newChange(st, inst.Action+"-snap", msg, tsets, inst.Snaps)
if len(tsets) == 0 {
chg.SetStatus(state.DoneStatus)
}
if inst.SystemRestartImmediate {
chg.Set("system-restart-immediate", true)
}
ensureStateSoon(st)
return AsyncResponse(nil, chg.ID())
}
type snapRevisionOptions struct {
Channel string `json:"channel"`
Revision snap.Revision `json:"revision"`
CohortKey string `json:"cohort-key"`
LeaveCohort bool `json:"leave-cohort"`
}
func (ropt *snapRevisionOptions) validate() error {
if ropt.CohortKey != "" {
if ropt.LeaveCohort {
return fmt.Errorf("cannot specify both cohort-key and leave-cohort")
}
if !ropt.Revision.Unset() {
return fmt.Errorf("cannot specify both cohort-key and revision")
}
}
if ropt.Channel != "" {
_, err := channel.Parse(ropt.Channel, "-")
if err != nil {
return err
}
}
return nil
}
type snapInstruction struct {
progress.NullMeter
Action string `json:"action"`
Amend bool `json:"amend"`
snapRevisionOptions
DevMode bool `json:"devmode"`
JailMode bool `json:"jailmode"`
Classic bool `json:"classic"`
IgnoreValidation bool `json:"ignore-validation"`
IgnoreRunning bool `json:"ignore-running"`
Unaliased bool `json:"unaliased"`
Prefer bool `json:"prefer"`
Purge bool `json:"purge,omitempty"`
SystemRestartImmediate bool `json:"system-restart-immediate"`
Transaction client.TransactionType `json:"transaction"`
Snaps []string `json:"snaps"`
Users []string `json:"users"`
SnapshotOptions map[string]*snap.SnapshotOptions `json:"snapshot-options"`
ValidationSets []string `json:"validation-sets"`
QuotaGroupName string `json:"quota-group"`
Time string `json:"time"`
HoldLevel string `json:"hold-level"`
// The fields below should not be unmarshalled into. Do not export them.
userID int
ctx context.Context
}
func (inst *snapInstruction) revnoOpts() *snapstate.RevisionOptions {
return &snapstate.RevisionOptions{
Channel: inst.Channel,
Revision: inst.Revision,
CohortKey: inst.CohortKey,
LeaveCohort: inst.LeaveCohort,
}
}
func (inst *snapInstruction) modeFlags() (snapstate.Flags, error) {
return modeFlags(inst.DevMode, inst.JailMode, inst.Classic)
}
func (inst *snapInstruction) installFlags() (snapstate.Flags, error) {
flags, err := inst.modeFlags()
if err != nil {
return snapstate.Flags{}, err
}
if inst.Unaliased {
flags.Unaliased = true
}
if inst.IgnoreRunning {
flags.IgnoreRunning = true
}
if inst.IgnoreValidation {
flags.IgnoreValidation = true
}
if inst.Prefer {
flags.Prefer = true
}
flags.QuotaGroupName = inst.QuotaGroupName
return flags, nil
}
func (inst *snapInstruction) holdLevel() snapstate.HoldLevel {
switch inst.HoldLevel {
case "auto-refresh":
return snapstate.HoldAutoRefresh
case "general":
return snapstate.HoldGeneral
default:
panic("not validated hold level")
}
}
// cleanSnapshotOptions cleans the snapshot options.
//
// With default marshalling, some permutations of valid JSON definitions of snapshot-options e.g.
// - `"snapshot-options": { "snap1": {} }`
// - `"snapshot-options": { "snap1": {exclude: []} }`
//
// results in a pointer to SnapshotOptions object with a nil or zero length exclusion list
// which in turn will be marshalled to JSON as `options: {}` when we rather want it omitted.
// The cleaning step ensures that we only populate map entries for snapshot options that contain
// usable content that we want to be marshalled downstream.
func (inst *snapInstruction) cleanSnapshotOptions() {
for name, options := range inst.SnapshotOptions {
if options.Unset() {
delete(inst.SnapshotOptions, name)
}
}
}
func (inst *snapInstruction) validateSnapshotOptions() error {
if inst.SnapshotOptions == nil {
return nil
}
if inst.Action != "snapshot" {
return fmt.Errorf("snapshot-options can only be specified for snapshot action")
}
for name, options := range inst.SnapshotOptions {
if !strutil.ListContains(inst.Snaps, name) {
return fmt.Errorf("cannot use snapshot-options for snap %q that is not listed in snaps", name)
}
if err := options.Validate(); err != nil {
return fmt.Errorf("invalid snapshot-options for snap %q: %v", name, err)
}
}
return nil
}
func (inst *snapInstruction) validate() error {
if inst.CohortKey != "" {
if inst.Action != "install" && inst.Action != "refresh" && inst.Action != "switch" {
return fmt.Errorf("cohort-key can only be specified for install, refresh, or switch")
}
}
if inst.LeaveCohort {
if inst.Action != "refresh" && inst.Action != "switch" {
return fmt.Errorf("leave-cohort can only be specified for refresh or switch")
}
}
if inst.Action == "install" {
for _, snapName := range inst.Snaps {
// FIXME: alternatively we could simply mutate *inst
// and s/ubuntu-core/core/ ?
if snapName == "ubuntu-core" {
return fmt.Errorf(`cannot install "ubuntu-core", please use "core" instead`)
}
}
}
switch inst.Transaction {
case "":
case client.TransactionPerSnap, client.TransactionAllSnaps:
if inst.Action != "install" && inst.Action != "refresh" {
return fmt.Errorf(`transaction type is unsupported for %q actions`, inst.Action)
}
default:
return fmt.Errorf("invalid value for transaction type: %s", inst.Transaction)
}
if inst.QuotaGroupName != "" && inst.Action != "install" {
return fmt.Errorf("quota-group can only be specified on install")
}
if inst.Action == "hold" {
if inst.Time == "" {
return errors.New("hold action requires a non-empty time value")
} else if inst.Time != "forever" {
if _, err := time.Parse(time.RFC3339, inst.Time); err != nil {
return fmt.Errorf(`hold action requires time to be "forever" or in RFC3339 format: %v`, err)
}
}
if inst.HoldLevel == "" {
return errors.New("hold action requires a non-empty hold-level value")
} else if !(inst.HoldLevel == "auto-refresh" || inst.HoldLevel == "general") {
return errors.New(`hold action requires hold-level to be either "auto-refresh" or "general"`)
}
}
if inst.Action != "hold" {
if inst.Time != "" {
return errors.New(`time can only be specified for the "hold" action`)
}
if inst.HoldLevel != "" {
return errors.New(`hold-level can only be specified for the "hold" action`)
}
}
if inst.Unaliased && inst.Prefer {
return errUnaliasedPreferConflict
}
if inst.Prefer && inst.Action != "install" {
return fmt.Errorf("the prefer flag can only be specified on install")
}
if err := inst.validateSnapshotOptions(); err != nil {
return err
}
if inst.Action == "snapshot" {
inst.cleanSnapshotOptions()
}
return inst.snapRevisionOptions.validate()
}
type snapInstructionResult struct {
Summary string
Affected []string
Tasksets []*state.TaskSet
Result map[string]interface{}
}
var errDevJailModeConflict = errors.New("cannot use devmode and jailmode flags together")
var errClassicDevmodeConflict = errors.New("cannot use classic and devmode flags together")
var errUnaliasedPreferConflict = errors.New("cannot use unaliased and prefer flags together")
var errNoJailMode = errors.New("this system cannot honour the jailmode flag")
func modeFlags(devMode, jailMode, classic bool) (snapstate.Flags, error) {
flags := snapstate.Flags{}
devModeOS := sandbox.ForceDevMode()
switch {
case jailMode && devModeOS:
return flags, errNoJailMode
case jailMode && devMode:
return flags, errDevJailModeConflict
case devMode && classic:
return flags, errClassicDevmodeConflict
}
// NOTE: jailmode and classic are allowed together. In that setting,
// jailmode overrides classic and the app gets regular (non-classic)
// confinement.
flags.JailMode = jailMode
flags.Classic = classic
flags.DevMode = devMode
return flags, nil
}
func snapInstall(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
if len(inst.Snaps[0]) == 0 {
return "", nil, fmt.Errorf(i18n.G("cannot install snap with empty name"))
}
flags, err := inst.installFlags()
if err != nil {
return "", nil, err
}
var ckey string
if inst.CohortKey == "" {
logger.Noticef("Installing snap %q revision %s", inst.Snaps[0], inst.Revision)
} else {
ckey = strutil.ElliptLeft(inst.CohortKey, 10)
logger.Noticef("Installing snap %q from cohort %q", inst.Snaps[0], ckey)
}
tset, err := snapstateInstall(inst.ctx, st, inst.Snaps[0], inst.revnoOpts(), inst.userID, flags)
if err != nil {
return "", nil, err
}
msg := fmt.Sprintf(i18n.G("Install %q snap"), inst.Snaps[0])
if inst.Channel != "stable" && inst.Channel != "" {
msg += fmt.Sprintf(" from %q channel", inst.Channel)
}
if inst.CohortKey != "" {
msg += fmt.Sprintf(" from %q cohort", ckey)
}
return msg, []*state.TaskSet{tset}, nil
}
func snapUpdate(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
// TODO: bail if revision is given (and != current?), *or* behave as with install --revision?
flags, err := inst.modeFlags()
if err != nil {
return "", nil, err
}
if inst.IgnoreValidation {
flags.IgnoreValidation = true
}
if inst.IgnoreRunning {
flags.IgnoreRunning = true
}
if inst.Amend {
flags.Amend = true
}
// we need refreshed snap-declarations to enforce refresh-control as best as we can
if err = assertstateRefreshSnapAssertions(st, inst.userID, nil); err != nil {
return "", nil, err
}
ts, err := snapstateUpdate(st, inst.Snaps[0], inst.revnoOpts(), inst.userID, flags)
if err != nil {
return "", nil, err
}
msg := fmt.Sprintf(i18n.G("Refresh %q snap"), inst.Snaps[0])
if inst.Channel != "stable" && inst.Channel != "" {
msg = fmt.Sprintf(i18n.G("Refresh %q snap from %q channel"), inst.Snaps[0], inst.Channel)
}
return msg, []*state.TaskSet{ts}, nil
}
func snapRemove(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
ts, err := snapstate.Remove(st, inst.Snaps[0], inst.Revision, &snapstate.RemoveFlags{Purge: inst.Purge})
if err != nil {
return "", nil, err
}
msg := fmt.Sprintf(i18n.G("Remove %q snap"), inst.Snaps[0])
return msg, []*state.TaskSet{ts}, nil
}
func snapRevert(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
var ts *state.TaskSet
flags, err := inst.modeFlags()
if err != nil {
return "", nil, err
}
if inst.Revision.Unset() {
ts, err = snapstateRevert(st, inst.Snaps[0], flags, "")
} else {
ts, err = snapstateRevertToRevision(st, inst.Snaps[0], inst.Revision, flags, "")
}
if err != nil {
return "", nil, err
}
msg := fmt.Sprintf(i18n.G("Revert %q snap"), inst.Snaps[0])
return msg, []*state.TaskSet{ts}, nil
}
func snapEnable(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
if !inst.Revision.Unset() {
return "", nil, errors.New("enable takes no revision")
}
ts, err := snapstate.Enable(st, inst.Snaps[0])
if err != nil {
return "", nil, err
}
msg := fmt.Sprintf(i18n.G("Enable %q snap"), inst.Snaps[0])
return msg, []*state.TaskSet{ts}, nil
}
func snapDisable(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
if !inst.Revision.Unset() {
return "", nil, errors.New("disable takes no revision")
}
ts, err := snapstate.Disable(st, inst.Snaps[0])
if err != nil {
return "", nil, err
}
msg := fmt.Sprintf(i18n.G("Disable %q snap"), inst.Snaps[0])
return msg, []*state.TaskSet{ts}, nil
}
func snapSwitch(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
if !inst.Revision.Unset() {
return "", nil, errors.New("switch takes no revision")
}
ts, err := snapstateSwitch(st, inst.Snaps[0], inst.revnoOpts())
if err != nil {
return "", nil, err
}
var msg string
switch {
case inst.LeaveCohort && inst.Channel != "":
msg = fmt.Sprintf(i18n.G("Switch %q snap to channel %q and away from cohort"), inst.Snaps[0], inst.Channel)
case inst.LeaveCohort:
msg = fmt.Sprintf(i18n.G("Switch %q snap away from cohort"), inst.Snaps[0])
case inst.CohortKey == "" && inst.Channel != "":
msg = fmt.Sprintf(i18n.G("Switch %q snap to channel %q"), inst.Snaps[0], inst.Channel)
case inst.CohortKey != "" && inst.Channel == "":
msg = fmt.Sprintf(i18n.G("Switch %q snap to cohort %q"), inst.Snaps[0], strutil.ElliptLeft(inst.CohortKey, 10))
default:
msg = fmt.Sprintf(i18n.G("Switch %q snap to channel %q and cohort %q"), inst.Snaps[0], inst.Channel, strutil.ElliptLeft(inst.CohortKey, 10))
}
return msg, []*state.TaskSet{ts}, nil
}
// snapHold holds refreshes for one snap.
func snapHold(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
res, err := snapHoldMany(inst, st)
if err != nil {
return "", nil, err
}
return res.Summary, res.Tasksets, nil
}
// snapUnhold removes the hold on refreshes for one snap.
func snapUnhold(inst *snapInstruction, st *state.State) (string, []*state.TaskSet, error) {
res, err := snapUnholdMany(inst, st)
if err != nil {
return "", nil, err
}
return res.Summary, res.Tasksets, nil
}
type snapActionFunc func(*snapInstruction, *state.State) (string, []*state.TaskSet, error)
var snapInstructionDispTable = map[string]snapActionFunc{
"install": snapInstall,
"refresh": snapUpdate,
"remove": snapRemove,
"revert": snapRevert,
"enable": snapEnable,
"disable": snapDisable,
"switch": snapSwitch,
"hold": snapHold,
"unhold": snapUnhold,
}
func (inst *snapInstruction) dispatch() snapActionFunc {
if len(inst.Snaps) != 1 {
logger.Panicf("dispatch only handles single-snap ops; got %d", len(inst.Snaps))
}
return snapInstructionDispTable[inst.Action]
}
func (inst *snapInstruction) errToResponse(err error) *apiError {
if len(inst.Snaps) == 0 {
return errToResponse(err, nil, BadRequest, "cannot %s: %v", inst.Action)
}
return errToResponse(err, inst.Snaps, BadRequest, "cannot %s %s: %v", inst.Action, strutil.Quoted(inst.Snaps))
}
func postSnaps(c *Command, r *http.Request, user *auth.UserState) Response {
contentType := r.Header.Get("Content-Type")
mediaType, params, err := mime.ParseMediaType(contentType)
if err != nil {
return BadRequest("cannot parse content type: %v", err)
}
if mediaType == "application/json" {
charset := strings.ToUpper(params["charset"])
if charset != "" && charset != "UTF-8" {
return BadRequest("unknown charset in content type: %s", contentType)
}
return snapOpMany(c, r, user)
}
if !strings.HasPrefix(contentType, "multipart/") {
return BadRequest("unknown content type: %s", contentType)
}
return sideloadOrTrySnap(c, r.Body, params["boundary"], user)
}
func snapOpMany(c *Command, r *http.Request, user *auth.UserState) Response {
route := c.d.router.Get(stateChangeCmd.Path)
if route == nil {
return InternalError("cannot find route for change")
}
decoder := json.NewDecoder(r.Body)
var inst snapInstruction
if err := decoder.Decode(&inst); err != nil {
return BadRequest("cannot decode request body into snap instruction: %v", err)
}
// TODO: inst.Amend, etc?
if inst.Channel != "" || !inst.Revision.Unset() || inst.DevMode || inst.JailMode || inst.CohortKey != "" || inst.LeaveCohort || inst.Prefer {
return BadRequest("unsupported option provided for multi-snap operation")
}
if err := inst.validate(); err != nil {
return BadRequest("%v", err)
}
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
if user != nil {
inst.userID = user.ID
}
op := inst.dispatchForMany()
if op == nil {
return BadRequest("unsupported multi-snap operation %q", inst.Action)
}
res, err := op(&inst, st)
if err != nil {
return inst.errToResponse(err)
}
chg := newChange(st, inst.Action+"-snap", res.Summary, res.Tasksets, res.Affected)
if len(res.Tasksets) == 0 {
chg.SetStatus(state.DoneStatus)
}
if inst.SystemRestartImmediate {
chg.Set("system-restart-immediate", true)
}
ensureStateSoon(st)
chg.Set("api-data", map[string]interface{}{"snap-names": res.Affected})
return AsyncResponse(res.Result, chg.ID())
}
type snapManyActionFunc func(*snapInstruction, *state.State) (*snapInstructionResult, error)
func (inst *snapInstruction) dispatchForMany() (op snapManyActionFunc) {
switch inst.Action {
case "refresh":
if len(inst.ValidationSets) > 0 {
op = snapEnforceValidationSets
} else {
op = snapUpdateMany
}
case "install":
op = snapInstallMany
case "remove":
op = snapRemoveMany
case "snapshot":
// see api_snapshots.go
op = snapshotMany
case "hold":
op = snapHoldMany
case "unhold":
op = snapUnholdMany
}
return op
}
func snapInstallMany(inst *snapInstruction, st *state.State) (*snapInstructionResult, error) {
for _, name := range inst.Snaps {
if len(name) == 0 {
return nil, fmt.Errorf(i18n.G("cannot install snap with empty name"))
}
}
transaction := inst.Transaction
installed, tasksets, err := snapstateInstallMany(st, inst.Snaps, nil, inst.userID, &snapstate.Flags{Transaction: transaction})
if err != nil {
return nil, err
}
var msg string
switch len(inst.Snaps) {
case 0:
return nil, fmt.Errorf("cannot install zero snaps")
case 1:
msg = fmt.Sprintf(i18n.G("Install snap %q"), inst.Snaps[0])
default:
quoted := strutil.Quoted(inst.Snaps)
// TRANSLATORS: the %s is a comma-separated list of quoted snap names
msg = fmt.Sprintf(i18n.G("Install snaps %s"), quoted)
}
return &snapInstructionResult{
Summary: msg,
Affected: installed,
Tasksets: tasksets,
}, nil
}
func snapUpdateMany(inst *snapInstruction, st *state.State) (*snapInstructionResult, error) {
// we need refreshed snap-declarations to enforce refresh-control as best as
// we can, this also ensures that snap-declarations and their prerequisite
// assertions are updated regularly; update validation sets assertions only
// if refreshing all snaps (no snap names explicitly requested).
opts := &assertstate.RefreshAssertionsOptions{
IsRefreshOfAllSnaps: len(inst.Snaps) == 0,
}
if err := assertstateRefreshSnapAssertions(st, inst.userID, opts); err != nil {
return nil, err
}
transaction := inst.Transaction
// TODO: use a per-request context
updated, tasksets, err := snapstateUpdateMany(context.TODO(), st, inst.Snaps, nil, inst.userID, &snapstate.Flags{
IgnoreRunning: inst.IgnoreRunning,
Transaction: transaction,
})
if err != nil {
if opts.IsRefreshOfAllSnaps {
if err := assertstateRestoreValidationSetsTracking(st); err != nil && !errors.Is(err, state.ErrNoState) {
return nil, err
}
}
return nil, err
}
var msg string
switch len(updated) {
case 0:
if len(inst.Snaps) != 0 {
// TRANSLATORS: the %s is a comma-separated list of quoted snap names
msg = fmt.Sprintf(i18n.G("Refresh snaps %s: no updates"), strutil.Quoted(inst.Snaps))
} else {
msg = i18n.G("Refresh all snaps: no updates")
}
case 1:
msg = fmt.Sprintf(i18n.G("Refresh snap %q"), updated[0])
default:
quoted := strutil.Quoted(updated)
// TRANSLATORS: the %s is a comma-separated list of quoted snap names
msg = fmt.Sprintf(i18n.G("Refresh snaps %s"), quoted)
}
return &snapInstructionResult{
Summary: msg,
Affected: updated,
Tasksets: tasksets,
}, nil
}
func snapEnforceValidationSets(inst *snapInstruction, st *state.State) (*snapInstructionResult, error) {
if len(inst.ValidationSets) > 0 && len(inst.Snaps) != 0 {
return nil, fmt.Errorf("snap names cannot be specified with validation sets to enforce")
}
snaps, ignoreValidationSnaps, err := snapstate.InstalledSnaps(st)
if err != nil {
return nil, err
}
// we need refreshed snap-declarations, this ensures that snap-declarations
// and their prerequisite assertions are updated regularly; do not update all
// validation-set assertions (this is implied by passing nil opts) - only
// those requested via inst.ValidationSets will get updated by
// assertstateTryEnforceValidationSets below.
if err := assertstateRefreshSnapAssertions(st, inst.userID, nil); err != nil {
return nil, err
}
var tss []*state.TaskSet
var affected []string
err = assertstateTryEnforcedValidationSets(st, inst.ValidationSets, inst.userID, snaps, ignoreValidationSnaps)
if err != nil {
vErr, ok := err.(*snapasserts.ValidationSetsValidationError)
if !ok {
return nil, err
}
tss, affected, err = meetSnapConstraintsForEnforce(inst, st, vErr)
if err != nil {
return nil, err
}
}
summary := fmt.Sprintf("Enforce validation sets %s", strutil.Quoted(inst.ValidationSets))
if len(affected) != 0 {
summary = fmt.Sprintf("%s for snaps %s", summary, strutil.Quoted(affected))
}
return &snapInstructionResult{
Summary: summary,
Affected: affected,
Tasksets: tss,
}, nil
}
func meetSnapConstraintsForEnforce(inst *snapInstruction, st *state.State, vErr *snapasserts.ValidationSetsValidationError) ([]*state.TaskSet, []string, error) {
// Save the sequence numbers so we can pin them later when enforcing the sets again
pinnedSeqs := make(map[string]int, len(inst.ValidationSets))
for _, vsStr := range inst.ValidationSets {
account, name, sequence, err := snapasserts.ParseValidationSet(vsStr)
if err != nil {
return nil, nil, err
}
if sequence == 0 {
continue
}
pinnedSeqs[fmt.Sprintf("%s/%s", account, name)] = sequence
}
return snapstateResolveValSetsEnforcementError(context.TODO(), st, vErr, pinnedSeqs, inst.userID)
}
func snapRemoveMany(inst *snapInstruction, st *state.State) (*snapInstructionResult, error) {
flags := &snapstate.RemoveFlags{Purge: inst.Purge}
removed, tasksets, err := snapstateRemoveMany(st, inst.Snaps, flags)
if err != nil {
return nil, err
}
var msg string
switch len(inst.Snaps) {
case 0:
return nil, fmt.Errorf("cannot remove zero snaps")
case 1:
msg = fmt.Sprintf(i18n.G("Remove snap %q"), inst.Snaps[0])
default:
quoted := strutil.Quoted(inst.Snaps)
// TRANSLATORS: the %s is a comma-separated list of quoted snap names
msg = fmt.Sprintf(i18n.G("Remove snaps %s"), quoted)
}
return &snapInstructionResult{
Summary: msg,
Affected: removed,
Tasksets: tasksets,
}, nil
}
// query many snaps
func getSnapsInfo(c *Command, r *http.Request, user *auth.UserState) Response {
if shouldSearchStore(r) {
logger.Noticef("Jumping to \"find\" to better support legacy request %q", r.URL)
return searchStore(c, r, user)
}
route := c.d.router.Get(snapCmd.Path)
if route == nil {
return InternalError("cannot find route for snaps")
}
query := r.URL.Query()
var all bool
sel := query.Get("select")
switch sel {
case "all":
all = true
case "enabled", "":
all = false
default:
return BadRequest("invalid select parameter: %q", sel)
}
var wanted map[string]bool
if ns := query.Get("snaps"); len(ns) > 0 {
nsl := strutil.CommaSeparatedList(ns)
wanted = make(map[string]bool, len(nsl))
for _, name := range nsl {
wanted[name] = true
}
}
found, err := allLocalSnapInfos(c.d.overlord.State(), all, wanted)
if err != nil {
return InternalError("cannot list local snaps! %v", err)
}
results := make([]*json.RawMessage, len(found))
sd := servicestate.NewStatusDecorator(progress.Null)
for i, x := range found {
name := x.info.InstanceName()
rev := x.info.Revision
url, err := route.URL("name", name)
if err != nil {
logger.Noticef("Cannot build URL for snap %q revision %s: %v", name, rev, err)
continue
}
data, err := json.Marshal(webify(mapLocal(x, sd), url.String()))
if err != nil {
return InternalError("cannot serialize snap %q revision %s: %v", name, rev, err)
}
raw := json.RawMessage(data)
results[i] = &raw
}
return &findResponse{
Results: results,
Sources: []string{"local"},
}
}
func shouldSearchStore(r *http.Request) bool {
// we should jump to the old behaviour iff q is given, or if
// sources is given and either empty or contains the word
// 'store'. Otherwise, local results only.
query := r.URL.Query()
if _, ok := query["q"]; ok {
logger.Debugf("use of obsolete \"q\" parameter: %q", r.URL)
return true
}
if src, ok := query["sources"]; ok {
logger.Debugf("use of obsolete \"sources\" parameter: %q", r.URL)
if len(src) == 0 || strings.Contains(src[0], "store") {
return true
}
}
return false
}
func snapHoldMany(inst *snapInstruction, st *state.State) (res *snapInstructionResult, err error) {
var msg string
var tss []*state.TaskSet
if len(inst.Snaps) == 0 {
if inst.holdLevel() == snapstate.HoldGeneral {
return nil, errors.New("holding general refreshes for all snaps is not supported")
}
patchValues := map[string]interface{}{"refresh.hold": inst.Time}
ts, err := configstateConfigureInstalled(st, "core", patchValues, 0)
if err != nil {
return nil, err
}
tss = []*state.TaskSet{ts}
msg = i18n.G("Hold auto-refreshes for all snaps")
} else {
holdLevel := inst.holdLevel()
if err := snapstateHoldRefreshesBySystem(st, holdLevel, inst.Time, inst.Snaps); err != nil {
return nil, err
}
msgFmt := i18n.G("Hold general refreshes for %s")
if holdLevel == snapstate.HoldAutoRefresh {
msgFmt = i18n.G("Hold auto-refreshes for %s")
}
msg = fmt.Sprintf(msgFmt, strutil.Quoted(inst.Snaps))
}
return &snapInstructionResult{
Summary: msg,
Affected: inst.Snaps,
Tasksets: tss,