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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2020 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 (
"encoding/json"
"errors"
"mime"
"mime/multipart"
"net/http"
"os"
"strconv"
"strings"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/asserts/snapasserts"
"github.com/snapcore/snapd/client"
"github.com/snapcore/snapd/gadget"
"github.com/snapcore/snapd/gadget/device"
"github.com/snapcore/snapd/overlord/assertstate"
"github.com/snapcore/snapd/overlord/auth"
"github.com/snapcore/snapd/overlord/devicestate"
"github.com/snapcore/snapd/overlord/install"
"github.com/snapcore/snapd/overlord/snapstate"
"github.com/snapcore/snapd/release"
"github.com/snapcore/snapd/snap"
)
var systemsCmd = &Command{
Path: "/v2/systems",
GET: getAllSystems,
ReadAccess: authenticatedAccess{},
// this is awkward, we want the postSystemsAction function to be used
// when the label is empty too, but the router will not handle the request
// for /v2/systems with the systemsActionCmd and instead handles it through
// this command, so we need to set the POST for this command to essentially
// forward to that one
POST: postSystemsAction,
Actions: []string{"reboot", "create", "install"},
WriteAccess: rootAccess{},
}
var systemsActionCmd = &Command{
Path: "/v2/systems/{label}",
GET: getSystemDetails,
ReadAccess: rootAccess{},
POST: postSystemsAction,
Actions: []string{
"do", "reboot", "install",
"create", "remove", "check-passphrase",
"check-pin",
},
WriteAccess: rootAccess{},
}
type systemsResponse struct {
Systems []client.System `json:"systems,omitempty"`
}
func getAllSystems(c *Command, r *http.Request, user *auth.UserState) Response {
var rsp systemsResponse
seedSystems, err := c.d.overlord.DeviceManager().Systems()
if err != nil {
if err == devicestate.ErrNoSystems {
// no systems available
return SyncResponse(&rsp)
}
return InternalError(err.Error())
}
rsp.Systems = make([]client.System, 0, len(seedSystems))
for _, ss := range seedSystems {
// untangle the model
actions := make([]client.SystemAction, 0, len(ss.Actions))
for _, sa := range ss.Actions {
actions = append(actions, client.SystemAction{
Title: sa.Title,
Mode: sa.Mode,
})
}
rsp.Systems = append(rsp.Systems, client.System{
Current: ss.Current,
DefaultRecoverySystem: ss.DefaultRecoverySystem,
Label: ss.Label,
Model: client.SystemModelData{
Model: ss.Model.Model(),
BrandID: ss.Model.BrandID(),
DisplayName: ss.Model.DisplayName(),
},
Brand: snap.StoreAccount{
ID: ss.Brand.AccountID(),
Username: ss.Brand.Username(),
DisplayName: ss.Brand.DisplayName(),
Validation: ss.Brand.Validation(),
},
Actions: actions,
})
}
return SyncResponse(&rsp)
}
// wrapped for unit tests
var deviceManagerSystemAndGadgetAndEncryptionInfo = func(dm *devicestate.DeviceManager, systemLabel string) (*devicestate.System, *gadget.Info, *install.EncryptionSupportInfo, error) {
return dm.SystemAndGadgetAndEncryptionInfo(systemLabel)
}
func storageEncryption(encInfo *install.EncryptionSupportInfo) *client.StorageEncryption {
if encInfo.Disabled {
return &client.StorageEncryption{
Support: client.StorageEncryptionSupportDisabled,
}
}
storageEnc := &client.StorageEncryption{
StorageSafety: string(encInfo.StorageSafety),
Type: encInfo.Type,
}
required := (encInfo.StorageSafety == asserts.StorageSafetyEncrypted)
switch {
case encInfo.Available:
storageEnc.Support = client.StorageEncryptionSupportAvailable
case !encInfo.Available && required:
storageEnc.Support = client.StorageEncryptionSupportDefective
storageEnc.UnavailableReason = encInfo.UnavailableErr.Error()
case !encInfo.Available && !required:
storageEnc.Support = client.StorageEncryptionSupportUnavailable
storageEnc.UnavailableReason = encInfo.UnavailableWarning
}
if !encInfo.Available {
storageEnc.AvailabilityCheckErrors = encInfo.AvailabilityCheckErrors
}
if encInfo.PassphraseAuthAvailable {
storageEnc.Features = append(storageEnc.Features, client.StorageEncryptionFeaturePassphraseAuth)
}
return storageEnc
}
var (
devicestateInstallFinish = devicestate.InstallFinish
devicestateInstallSetupStorageEncryption = devicestate.InstallSetupStorageEncryption
devicestateCreateRecoverySystem = devicestate.CreateRecoverySystem
devicestateRemoveRecoverySystem = devicestate.RemoveRecoverySystem
devicestateGeneratePreInstallRecoveryKey = devicestate.GeneratePreInstallRecoveryKey
)
func getSystemDetails(c *Command, r *http.Request, user *auth.UserState) Response {
wantedSystemLabel := muxVars(r)["label"]
deviceMgr := c.d.overlord.DeviceManager()
sys, gadgetInfo, encryptionInfo, err := deviceManagerSystemAndGadgetAndEncryptionInfo(deviceMgr, wantedSystemLabel)
if err != nil {
return InternalError(err.Error())
}
rsp := client.SystemDetails{
Current: sys.Current,
Label: sys.Label,
Brand: snap.StoreAccount{
ID: sys.Brand.AccountID(),
Username: sys.Brand.Username(),
DisplayName: sys.Brand.DisplayName(),
Validation: sys.Brand.Validation(),
},
// no body: we expect models to have empty bodies
Model: sys.Model.Headers(),
AvailableOptional: client.AvailableForInstall{
Snaps: sys.OptionalContainers.Snaps,
Components: sys.OptionalContainers.Components,
},
Volumes: gadgetInfo.Volumes,
StorageEncryption: storageEncryption(encryptionInfo),
}
for _, sa := range sys.Actions {
rsp.Actions = append(rsp.Actions, client.SystemAction{
Title: sa.Title,
Mode: sa.Mode,
})
}
return SyncResponse(rsp)
}
type systemActionRequest struct {
Action string `json:"action"`
client.SystemAction
client.InstallSystemOptions
client.CreateSystemOptions
client.QualityCheckOptions
}
func postSystemsAction(c *Command, r *http.Request, user *auth.UserState) Response {
contentType := r.Header.Get("Content-Type")
mediaType, params, err := mime.ParseMediaType(contentType)
if err != nil {
mediaType = "application/json"
}
switch mediaType {
case "application/json":
return postSystemsActionJSON(c, r)
case "multipart/form-data":
return postSystemsActionForm(c, r, params)
default:
return BadRequest("unexpected media type %q", mediaType)
}
}
func postSystemsActionForm(c *Command, r *http.Request, contentTypeParams map[string]string) (res Response) {
boundary := contentTypeParams["boundary"]
mpReader := multipart.NewReader(r.Body, boundary)
form, errRsp := readForm(mpReader)
if errRsp != nil {
return errRsp
}
action := form.Values["action"]
if len(action) != 1 {
return BadRequest("expected exactly one action in form")
}
defer func() {
// remove all files associated with the form if we're returning an error
if _, ok := res.(*apiError); ok {
form.RemoveAllExcept(nil)
}
}()
switch action[0] {
case "create":
return postSystemActionCreateOffline(c, form)
default:
return BadRequest("%s action is not supported for content type multipart/form-data", action[0])
}
}
func postSystemsActionJSON(c *Command, r *http.Request) Response {
var req systemActionRequest
systemLabel := muxVars(r)["label"]
decoder := json.NewDecoder(r.Body)
if err := decoder.Decode(&req); err != nil {
return BadRequest("cannot decode request body into system action: %v", err)
}
if decoder.More() {
return BadRequest("extra content found in request body")
}
switch req.Action {
case "do":
return postSystemActionDo(c, systemLabel, &req)
case "reboot":
return postSystemActionReboot(c, systemLabel, &req)
case "install":
return postSystemActionInstall(c, systemLabel, &req)
case "create":
if systemLabel != "" {
return BadRequest("label should not be provided in route when creating a system")
}
return postSystemActionCreate(c, &req)
case "remove":
return postSystemActionRemove(c, systemLabel)
case "check-passphrase":
return postSystemActionCheckPassphrase(c, systemLabel, &req)
case "check-pin":
return postSystemActionCheckPIN(c, systemLabel, &req)
default:
return BadRequest("unsupported action %q", req.Action)
}
}
// XXX: should deviceManager return more sensible errors here? e.g.:
// UnsupportedActionError{systemLabel, mode}, SystemDoesNotExistError{systemLabel}
func handleSystemActionErr(err error, systemLabel string) Response {
if os.IsNotExist(err) {
return NotFound("requested seed system %q does not exist", systemLabel)
}
if err == devicestate.ErrUnsupportedAction {
return BadRequest("requested action is not supported by system %q", systemLabel)
}
return InternalError(err.Error())
}
// wrapped for unit tests
var deviceManagerReboot = func(dm *devicestate.DeviceManager, systemLabel, mode string) error {
return dm.Reboot(systemLabel, mode)
}
func postSystemActionReboot(c *Command, systemLabel string, req *systemActionRequest) Response {
dm := c.d.overlord.DeviceManager()
if err := deviceManagerReboot(dm, systemLabel, req.Mode); err != nil {
return handleSystemActionErr(err, systemLabel)
}
return SyncResponse(nil)
}
func postSystemActionDo(c *Command, systemLabel string, req *systemActionRequest) Response {
if systemLabel == "" {
return BadRequest("system action requires the system label to be provided")
}
if req.Mode == "" {
return BadRequest("system action requires the mode to be provided")
}
sa := devicestate.SystemAction{
Title: req.Title,
Mode: req.Mode,
}
if err := c.d.overlord.DeviceManager().RequestSystemAction(systemLabel, sa); err != nil {
return handleSystemActionErr(err, systemLabel)
}
return SyncResponse(nil)
}
func postSystemActionInstall(c *Command, systemLabel string, req *systemActionRequest) Response {
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
switch req.Step {
case client.InstallStepSetupStorageEncryption:
chg, err := devicestateInstallSetupStorageEncryption(st, systemLabel, req.OnVolumes, req.VolumesAuth)
if err != nil {
return BadRequest("cannot setup storage encryption for install from %q: %v", systemLabel, err)
}
ensureStateSoon(st)
return AsyncResponse(nil, chg.ID())
case client.InstallStepGenerateRecoveryKey:
rkey, err := devicestateGeneratePreInstallRecoveryKey(st, systemLabel)
if err != nil {
return BadRequest("cannot generate recovery key for %q: %v", systemLabel, err)
}
return SyncResponse(map[string]string{
"recovery-key": rkey.String(),
})
case client.InstallStepFinish:
var optional *devicestate.OptionalContainers
if req.OptionalInstall != nil {
// note that we provide a nil optional install here in the case that
// the request set the All field to true. the nil optional install
// indicates that all opitonal snaps and components should be
// installed.
if req.OptionalInstall.All {
if len(req.OptionalInstall.Components) > 0 || len(req.OptionalInstall.Snaps) > 0 {
return BadRequest("cannot specify both all and individual optional snaps and components to install")
}
} else {
optional = &devicestate.OptionalContainers{
Snaps: req.OptionalInstall.Snaps,
Components: req.OptionalInstall.Components,
}
}
}
chg, err := devicestateInstallFinish(st, systemLabel, req.OnVolumes, optional)
if err != nil {
return BadRequest("cannot finish install for %q: %v", systemLabel, err)
}
ensureStateSoon(st)
return AsyncResponse(nil, chg.ID())
default:
return BadRequest("unsupported install step %q", req.Step)
}
}
func assertionsFromValidationSetStrings(validationSets []string) ([]*asserts.AtSequence, error) {
sets := make([]*asserts.AtSequence, 0, len(validationSets))
for _, vs := range validationSets {
account, name, seq, err := snapasserts.ParseValidationSet(vs)
if err != nil {
return nil, err
}
assertion := asserts.AtSequence{
Type: asserts.ValidationSetType,
SequenceKey: []string{release.Series, account, name},
Pinned: seq > 0,
Sequence: seq,
Revision: asserts.RevisionNotKnown,
}
sets = append(sets, &assertion)
}
return sets, nil
}
func readFormValue(form *Form, key string) (string, *apiError) {
values := form.Values[key]
if len(values) != 1 {
return "", BadRequest("expected exactly one %q value in form", key)
}
return values[0], nil
}
func readOptionalFormValue(form *Form, key string, defaultValue string) (string, *apiError) {
values := form.Values[key]
switch len(values) {
case 0:
return defaultValue, nil
case 1:
return values[0], nil
default:
return "", BadRequest("expected at most one %q value in form", key)
}
}
func readOptionalFormBoolean(form *Form, key string, defaultValue bool) (bool, *apiError) {
values := form.Values[key]
switch len(values) {
case 0:
return defaultValue, nil
case 1:
b, err := strconv.ParseBool(values[0])
if err != nil {
return false, BadRequest("cannot parse %q value as boolean: %s", key, values[0])
}
return b, nil
default:
return false, BadRequest("expected at most one %q value in form", key)
}
}
func postSystemActionCreateOffline(c *Command, form *Form) Response {
label, errRsp := readFormValue(form, "label")
if errRsp != nil {
return errRsp
}
testSystem, errRsp := readOptionalFormBoolean(form, "test-system", false)
if errRsp != nil {
return errRsp
}
markDefault, errRsp := readOptionalFormBoolean(form, "mark-default", false)
if errRsp != nil {
return errRsp
}
vsetsList, errRsp := readOptionalFormValue(form, "validation-sets", "")
if errRsp != nil {
return errRsp
}
var splitVSets []string
if vsetsList != "" {
splitVSets = strings.Split(vsetsList, ",")
}
// this could be multiple "validation-set" values, but that would make it so
// that the field names in the form and JSON APIs are different, since the
// JSON API uses "validation-sets" (plural). to keep the APIs consistent, we
// use a comma-delimeted list of validation sets strings.
sequences, err := assertionsFromValidationSetStrings(splitVSets)
if err != nil {
return BadRequest("cannot parse validation sets: %v", err)
}
var snapFiles []*uploadedContainer
if len(form.FileRefs["snap"]) > 0 {
snaps, errRsp := form.GetSnapFiles()
if errRsp != nil {
return errRsp
}
snapFiles = snaps
}
batch := asserts.NewBatch(nil)
for _, a := range form.Values["assertion"] {
if _, err := batch.AddStream(strings.NewReader(a)); err != nil {
return BadRequest("cannot decode assertion: %v", err)
}
}
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
if err := assertstate.AddBatch(st, batch, &asserts.CommitOptions{Precheck: true}); err != nil {
return BadRequest("error committing assertions: %v", err)
}
validationSets, err := assertstate.FetchValidationSets(st, sequences, assertstate.FetchValidationSetsOptions{
Offline: true,
}, nil)
if err != nil {
return BadRequest("cannot find validation sets in db: %v", err)
}
slInfo, apiErr := sideloadSnapsInfo(st, snapFiles, sideloadFlags{})
if apiErr != nil {
return apiErr
}
localSnaps := make([]snapstate.PathSnap, 0, len(slInfo.snaps))
localComponents := make([]snapstate.PathComponent, 0, len(slInfo.components))
for _, sn := range slInfo.snaps {
localSnaps = append(localSnaps, snapstate.PathSnap{
SideInfo: &sn.info.SideInfo,
Path: sn.tmpPath,
})
for _, c := range sn.components {
localComponents = append(localComponents, snapstate.PathComponent{
SideInfo: c.sideInfo,
Path: c.tmpPath,
})
}
}
for _, ci := range slInfo.components {
localComponents = append(localComponents, snapstate.PathComponent{
SideInfo: ci.sideInfo,
Path: ci.tmpPath,
})
}
chg, err := devicestateCreateRecoverySystem(st, label, devicestate.CreateRecoverySystemOptions{
ValidationSets: validationSets.Sets(),
LocalSnaps: localSnaps,
LocalComponents: localComponents,
TestSystem: testSystem,
MarkDefault: markDefault,
// using the form-based API implies that this should be an offline operation
Offline: true,
})
if err != nil {
return InternalError("cannot create recovery system %q: %v", label[0], err)
}
ensureStateSoon(st)
return AsyncResponse(nil, chg.ID())
}
func postSystemActionCreate(c *Command, req *systemActionRequest) Response {
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
if req.Label == "" {
return BadRequest("label must be provided in request body for action %q", req.Action)
}
sequences, err := assertionsFromValidationSetStrings(req.ValidationSets)
if err != nil {
return BadRequest("cannot parse validation sets: %v", err)
}
validationSets, err := assertstate.FetchValidationSets(c.d.state, sequences, assertstate.FetchValidationSetsOptions{
Offline: req.Offline,
}, nil)
if err != nil {
if errors.Is(err, &asserts.NotFoundError{}) {
return BadRequest("cannot fetch validation sets: %v", err)
}
return InternalError("cannot fetch validation sets: %v", err)
}
chg, err := devicestateCreateRecoverySystem(st, req.Label, devicestate.CreateRecoverySystemOptions{
ValidationSets: validationSets.Sets(),
TestSystem: req.TestSystem,
MarkDefault: req.MarkDefault,
Offline: req.Offline,
})
if err != nil {
return InternalError("cannot create recovery system %q: %v", req.Label, err)
}
ensureStateSoon(st)
return AsyncResponse(nil, chg.ID())
}
func postSystemActionRemove(c *Command, systemLabel string) Response {
if systemLabel == "" {
return BadRequest("system action requires the system label to be provided")
}
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
chg, err := devicestateRemoveRecoverySystem(st, systemLabel)
if err != nil {
if errors.Is(err, devicestate.ErrNoRecoverySystem) {
return NotFound(err.Error())
}
return InternalError("cannot remove recovery system %q: %v", systemLabel, err)
}
ensureStateSoon(st)
return AsyncResponse(nil, chg.ID())
}
type encryptionSupportInfoKey struct{ systemLabel string }
// cachedEncryptionSupportInfoByLabel returns encryption support info for specified system from cache.
// If no cached value exist it is computed once and reused for future calls.
//
// Note that the cached value is never cleared as system seeds are assumed to be immutable.
func cachedEncryptionSupportInfoByLabel(c *Command, systemLabel string) (*install.EncryptionSupportInfo, error) {
c.d.state.Lock()
cached := c.d.state.Cached(encryptionSupportInfoKey{systemLabel})
c.d.state.Unlock()
if cached != nil {
encryptionSupportInfo, ok := cached.(*install.EncryptionSupportInfo)
if ok {
return encryptionSupportInfo, nil
}
}
// no entry found in cache, let's compute encryption support info for target system
deviceMgr := c.d.overlord.DeviceManager()
_, _, encryptionInfo, err := deviceManagerSystemAndGadgetAndEncryptionInfo(deviceMgr, systemLabel)
if err != nil {
return nil, err
}
c.d.state.Lock()
c.d.state.Cache(encryptionSupportInfoKey{systemLabel}, encryptionInfo)
c.d.state.Unlock()
return encryptionInfo, nil
}
var deviceValidatePassphrase = device.ValidatePassphrase
func postValidatePassphrase(mode device.AuthMode, passphrase string) Response {
result, err := deviceValidatePassphrase(mode, passphrase)
if err != nil {
var qualityErr *device.AuthQualityError
if errors.As(err, &qualityErr) {
kind := client.ErrorKindInvalidPassphrase
message := "passphrase did not pass quality checks"
if mode == device.AuthModePIN {
kind = client.ErrorKindInvalidPIN
message = "PIN did not pass quality checks"
}
return &apiError{
Status: 400,
Kind: kind,
Message: message,
Value: map[string]any{
"reasons": qualityErr.Reasons,
"entropy-bits": qualityErr.Quality.Entropy,
"min-entropy-bits": qualityErr.Quality.MinEntropy,
"optimal-entropy-bits": qualityErr.Quality.OptimalEntropy,
},
}
}
return InternalError(err.Error())
}
return SyncResponse(map[string]any{
"entropy-bits": result.Entropy,
"min-entropy-bits": result.MinEntropy,
"optimal-entropy-bits": result.OptimalEntropy,
})
}
func postSystemActionCheckPassphrase(c *Command, systemLabel string, req *systemActionRequest) Response {
if systemLabel == "" {
return BadRequest("system action requires the system label to be provided")
}
if req.Passphrase == "" {
return BadRequest("passphrase must be provided in request body for action %q", req.Action)
}
encryptionInfo, err := cachedEncryptionSupportInfoByLabel(c, systemLabel)
if err != nil {
return InternalError(err.Error())
}
if !encryptionInfo.PassphraseAuthAvailable {
return &apiError{
Status: 400,
Kind: client.ErrorKindUnsupportedByTargetSystem,
Message: "target system does not support passphrase authentication",
}
}
return postValidatePassphrase(device.AuthModePassphrase, req.Passphrase)
}
func postSystemActionCheckPIN(c *Command, systemLabel string, req *systemActionRequest) Response {
if systemLabel == "" {
return BadRequest("system action requires the system label to be provided")
}
if req.PIN == "" {
return BadRequest("pin must be provided in request body for action %q", req.Action)
}
encryptionInfo, err := cachedEncryptionSupportInfoByLabel(c, systemLabel)
if err != nil {
return InternalError(err.Error())
}
if !encryptionInfo.PINAuthAvailable {
return &apiError{
Status: 400,
Kind: client.ErrorKindUnsupportedByTargetSystem,
Message: "target system does not support PIN authentication",
}
}
return postValidatePassphrase(device.AuthModePIN, req.PIN)
}
|