-
Notifications
You must be signed in to change notification settings - Fork 680
secboot: complete the decision for auto-repair/reprovision #17386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
valentindavid
wants to merge
4
commits into
canonical:master
Choose a base branch
from
valentindavid:valentindavid/status-api-reprovision
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
baf70d4
secboot: complete the decision for auto-repair/reprovision
valentindavid c1a035f
fixup! secboot: complete the decision for auto-repair/reprovision
valentindavid f5d3d9f
fixup! secboot: complete the decision for auto-repair/reprovision
valentindavid 08945cd
fixup! secboot: complete the decision for auto-repair/reprovision
valentindavid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -371,3 +371,21 @@ type Disk interface { | |
| PartitionWithFsLabel(string) (Partition, error) | ||
| DiskModel() string | ||
| } | ||
|
|
||
| // RemedialActions is a set of actions recommended to repair detected | ||
| // issues with FDE state. | ||
| type RemedialActions struct { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can give a doc comment to this? and also to the fields? |
||
| // AttemptRepair tells whether an auto-repair should be attempted. | ||
| // If the attempt fails, then it means a reprovision is required. | ||
| AttemptRepair bool | ||
| // RequireReprovision tells whether issues require a reprovision | ||
| // and it was detected that auto-repair would not be enough. | ||
| RequireReprovision bool | ||
| // PermitManual signals that there are some issues that could | ||
| // be fixed by administrator. | ||
| PermitManual bool | ||
| // RequirePlatformReset tells that the platform is owned by another | ||
| // system, we lost ownership of the platform. In that case | ||
| // the security device (e.g. TPM) needs to be cleared. | ||
| RequirePlatformReset bool | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does it make sense for future proofing to make it
map[RecommendedRemedialAction]any? so that if we need to augment an action with args we could because we will be stuck with that API unless we deprecate the field.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to add "input" to the action? We can add extra fields for them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how would we add extra fields if it's a list of strings?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you mean something like: recommendation-args?