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
|
// -*- 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 patch
import (
"encoding/json"
"errors"
"fmt"
"github.com/snapcore/snapd/overlord/state"
"github.com/snapcore/snapd/snap"
)
func init() {
patches[4] = []PatchFunc{patch4}
}
type patch4Flags int
const (
patch4FlagDevMode = 1 << iota
patch4FlagTryMode
patch4FlagJailMode
)
const patch4FlagRevert = patch4Flags(0x40000000)
func (f patch4Flags) DevMode() bool {
return f&patch4FlagDevMode != 0
}
func (f patch4Flags) TryMode() bool {
return f&patch4FlagTryMode != 0
}
func (f patch4Flags) JailMode() bool {
return f&patch4FlagJailMode != 0
}
func (f patch4Flags) Revert() bool {
return f&patch4FlagRevert != 0
}
type patch4DownloadInfo struct {
AnonDownloadURL string `json:"anon-download-url,omitempty"`
DownloadURL string `json:"download-url,omitempty"`
Size int64 `json:"size,omitempty"`
Sha3_384 string `json:"sha3-384,omitempty"`
}
type patch4SideInfo struct {
RealName string `yaml:"name,omitempty" json:"name,omitempty"`
SnapID string `yaml:"snap-id" json:"snap-id"`
Revision snap.Revision `yaml:"revision" json:"revision"`
Channel string `yaml:"channel,omitempty" json:"channel,omitempty"`
DeveloperID string `yaml:"developer-id,omitempty" json:"developer-id,omitempty"`
Developer string `yaml:"developer,omitempty" json:"developer,omitempty"`
EditedSummary string `yaml:"summary,omitempty" json:"summary,omitempty"`
EditedDescription string `yaml:"description,omitempty" json:"description,omitempty"`
Private bool `yaml:"private,omitempty" json:"private,omitempty"`
}
type patch4SnapSetup struct {
Channel string `json:"channel,omitempty"`
UserID int `json:"user-id,omitempty"`
Flags patch4Flags `json:"flags,omitempty"`
SnapPath string `json:"snap-path,omitempty"`
DownloadInfo *patch4DownloadInfo `json:"download-info,omitempty"`
SideInfo *patch4SideInfo `json:"side-info,omitempty"`
}
func (snapsup *patch4SnapSetup) Name() string {
if snapsup.SideInfo.RealName == "" {
panic("SnapSetup.SideInfo.RealName not set")
}
return snapsup.SideInfo.RealName
}
func (snapsup *patch4SnapSetup) Revision() snap.Revision {
return snapsup.SideInfo.Revision
}
type patch4SnapState struct {
SnapType string `json:"type"` // Use Type and SetType
Sequence []*patch4SideInfo `json:"sequence"`
Active bool `json:"active,omitempty"`
Current snap.Revision `json:"current"`
Channel string `json:"channel,omitempty"`
Flags patch4Flags `json:"flags,omitempty"`
}
func (snapst *patch4SnapState) LastIndex(revision snap.Revision) int {
for i := len(snapst.Sequence) - 1; i >= 0; i-- {
if snapst.Sequence[i].Revision == revision {
return i
}
}
return -1
}
type patch4T struct{} // for namespacing of the helpers
func (p4 patch4T) taskSnapSetup(task *state.Task) (*patch4SnapSetup, error) {
var snapsup patch4SnapSetup
if err := p4.getMaybe(task, "snap-setup", &snapsup); err == nil {
return &snapsup, nil
} else if !errors.Is(err, state.ErrNoState) {
return nil, err
}
var id string
if err := p4.get(task, "snap-setup-task", &id); err != nil {
return nil, err
}
if err := p4.get(task.State().Task(id), "snap-setup", &snapsup); err != nil {
return nil, err
}
return &snapsup, nil
}
var errNoSnapState = errors.New("no snap state")
func (p4 patch4T) snapSetupAndState(task *state.Task) (*patch4SnapSetup, *patch4SnapState, error) {
var snapst patch4SnapState
snapsup, err := p4.taskSnapSetup(task)
if err != nil {
return nil, nil, err
}
var snaps map[string]*json.RawMessage
err = task.State().Get("snaps", &snaps)
if err != nil {
return nil, nil, errNoSnapState
}
raw, ok := snaps[snapsup.Name()]
if !ok {
return nil, nil, errNoSnapState
}
err = json.Unmarshal([]byte(*raw), &snapst)
if err != nil {
return nil, nil, fmt.Errorf("cannot get state for snap %q: %v", snapsup.Name(), err)
}
return snapsup, &snapst, err
}
// getMaybe calls task.Get and wraps any non-ErrNoState error in an informative message
func (p4 patch4T) getMaybe(task *state.Task, key string, value any) error {
return p4.gget(task, key, true, value)
}
// get calls task.Get and wraps any error in an informative message
func (p4 patch4T) get(task *state.Task, key string, value any) error {
return p4.gget(task, key, false, value)
}
// gget does the actual work of get and getMaybe
func (patch4T) gget(task *state.Task, key string, passThroughMissing bool, value any) error {
err := task.Get(key, value)
if err == nil || (passThroughMissing && errors.Is(err, state.ErrNoState)) {
return err
}
change := task.Change()
return fmt.Errorf("cannot get %q from task %s (%s) of change %s (%s): %v",
key, task.ID(), task.Kind(), change.ID(), change.Kind(), err)
}
func (p4 patch4T) addCleanup(task *state.Task) error {
// NOTE we could check for the status of the change itself, but
// copy-snap-data is the one creating the trash, so if it's run there's
// no sense in fiddling with the change.
if task.Status().Ready() {
return nil
}
snapsup, err := p4.taskSnapSetup(task)
if err != nil {
return err
}
var tid string
if err := p4.get(task, "snap-setup-task", &tid); err != nil {
return err
}
change := task.Change()
revisionStr := ""
if snapsup.SideInfo != nil {
revisionStr = fmt.Sprintf(" (%s)", snapsup.Revision())
}
tasks := change.Tasks()
last := tasks[len(tasks)-1]
newTask := task.State().NewTask("cleanup", fmt.Sprintf("Clean up %q%s install", snapsup.Name(), revisionStr))
newTask.Set("snap-setup-task", tid)
newTask.WaitFor(last)
change.AddTask(newTask)
return nil
}
func (p4 patch4T) mangle(task *state.Task) error {
snapsup, snapst, err := p4.snapSetupAndState(task)
if err == errNoSnapState {
change := task.Change()
if change.Kind() != "install-snap" {
return fmt.Errorf("cannot get snap state for task %s (%s) of change %s (%s != install-snap)", task.ID(), task.Kind(), change.ID(), change.Kind())
}
// we expect pending/in-progress install changes
// possibly not to have reached link-sanp yet and so
// have no snap state yet, nothing to do
return nil
}
if err != nil {
return err
}
var hadCandidate bool
if err := p4.getMaybe(task, "had-candidate", &hadCandidate); err != nil && !errors.Is(err, state.ErrNoState) {
return err
}
if hadCandidate {
change := task.Change()
if change.Kind() != "revert-snap" {
return fmt.Errorf("had-candidate true for task %s (%s) of non-revert change %s (%s)",
task.ID(), task.Kind(), change.ID(), change.Kind())
}
}
task.Clear("had-candidate")
task.Set("old-candidate-index", snapst.LastIndex(snapsup.SideInfo.Revision))
return nil
}
func (p4 patch4T) addRevertFlag(task *state.Task) error {
var snapsup patch4SnapSetup
if err := p4.getMaybe(task, "snap-setup", &snapsup); err == nil {
snapsup.Flags |= patch4FlagRevert
// save it back
task.Set("snap-setup", &snapsup)
return nil
} else if !errors.Is(err, state.ErrNoState) {
return err
}
return nil
}
// patch4:
// - add Revert flag to in-progress revert-snap changes
// - move from had-candidate to old-candidate-index in link-snap tasks
// - add cleanup task to in-progress changes that have a copy-snap-data task
func patch4(s *state.State) error {
p4 := patch4T{}
for _, change := range s.Changes() {
// change is full done, take it easy
if change.Status().Ready() {
continue
}
if change.Kind() != "revert-snap" {
continue
}
for _, task := range change.Tasks() {
if err := p4.addRevertFlag(task); err != nil {
return err
}
}
}
for _, task := range s.Tasks() {
// change is full done, take it easy
if task.Change().Status().Ready() {
continue
}
switch task.Kind() {
case "link-snap":
if err := p4.mangle(task); err != nil {
return err
}
case "copy-snap-data":
if err := p4.addCleanup(task); err != nil {
return err
}
}
}
return nil
}
|