-
Notifications
You must be signed in to change notification settings - Fork 70
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
Add config to skip DHCP boot to gnoi.FactoryReset. #204
base: main
Are you sure you want to change the base?
Changes from 3 commits
1b3b706
828c553
b083fc5
a38626e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -22,6 +22,9 @@ service FactoryReset { | |||
// Optionally allows for the Target to zero-fill permanent storage where state | ||||
// data is stored. | ||||
// | ||||
// Optionally allows for the Target to skip DHCP boot and populate with the | ||||
// provided management configuration. | ||||
// | ||||
// If any of the optional flags is set but not supported, a gRPC Status with | ||||
// code INVALID_ARGUMENT must be returned with the details value set to a | ||||
// properly populated ResetError message. | ||||
|
@@ -34,8 +37,20 @@ message StartRequest { | |||
bool factory_os = 1; | ||||
// Instructs the Target to zero fill persistent storage state data. | ||||
bool zero_fill = 2; | ||||
// Instructs the Target to retain certificates | ||||
// Instructs the Target to retain certificates. | ||||
bool retain_certs = 3; | ||||
// Instructs the Target to populate with the provided Ip/Routing information | ||||
// and skip DHCP boot. | ||||
ManagementConfig mgmt_config = 4; | ||||
} | ||||
|
||||
message ManagementConfig { | ||||
repeated string boot_server_uris = 1; | ||||
string device_ip = 2; | ||||
string mask_length = 3; | ||||
string gateway_ip = 4; | ||||
repeated string management_routes = 5; | ||||
repeated string dns_servers = 6; | ||||
} | ||||
|
||||
message ResetSuccess { | ||||
|
@@ -47,6 +62,8 @@ message ResetError { | |||
bool factory_os_unsupported = 1; | ||||
// Zero fill is not supported. | ||||
bool zero_fill_unsupported = 2; | ||||
// Management config is not supported. | ||||
bool mgmt_config_unsupported = 5; | ||||
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. I know this has been flagged previously by Marcus, but I'll mention it again here in the interest of having the discussion more broadly. This field won't be a reliable indicator of what's going to happen. Old devices that aren't aware of the Splitting the boot parameters from the 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. I covered this in my comment above... 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. Bump the version of the service. Clients then have the option to ensure the service implements the new message. 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.
gnoi package names don't include versions, hence it will not be visible 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. I am not sure if we are talking about the same thing, but you should be able to query service options via file descriptors via reflection if the server implementes it. Its convoluted, but its there. Line 26 in bae5fb4
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. I see what you mean. Indeed, I was thinking about a different thing (traditional grpc versioning, where the version is part of the namespace/package name). Thx for clarifying. |
||||
// Unspecified error, must provide detail message. | ||||
bool other = 3; | ||||
string detail = 4; | ||||
|
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.
Would it make more sense to use https://github.com/openconfig/bootz/blob/main/proto/bootz.proto#L225-L236 here? The idea being:
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.
The problem is that this is not a traditional config.
This is a special config, that should be consumed at the start of the bootz process (which is typically invoked before any startup/running-config is involved) and by the bootz daemon only (it has no meaning to the other system components).
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.
The bootconfig message contains a parameter
bootloader_config
which is intended to contain items that are invoked/processed before any startup/running config is involved. If an implementation requiresbootloader_config
to contain some data to enable/disable the DHCP client used during bootz, that is fine. If the implementation uses OC config to do this, that is also fine.If my comment is not on-track with your concerns, maybe you can share more details about the implementation so we can try and map it to bootz. Happy to do this offline with you if necessary and then we can follow up with some proposal here.
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.
@LimeHat let me know what you think. Would like to keep this PR moving.
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.
There's a bit more to this proposal than a simple enablement/disablement of DHCP.
The core part of the bootz protocol is a DHCP response. It includes not only information about IP config, but also the bootstrap URL(s).
This proposal, in essence, is a way to substitute a real DHCP response with a pre-defined static message received via gNOI (pseudo-DHCP).
There are different ways to store this data. It can be stored in bootloader parameters (as you indicated, but this will be more than a flag), in can be stored in persistent memory (e.g. as a file or another implementation-dependent data structure). Probably it can't be stored as OpenConfig data (for instance, I don't think you can specify bootstrap URLs; and if the author wants to preserve compatibility with
FactoryReset
, it cannot be stored as a regular bootstrap cfg which is supposed to be erased during the reset). As a user, you probably don't to be concerned with implementation-specific details in order to use this.I also don't want to couple this data with
BootConfig
message, for a number of reasons, includingbytes vendor_config
field will have to be present),SetBootConfigRequest
RPC is designed to replace the data that was received from a bootstrap server, and that data only.Personally, I still think that a new service is the best approach. If you'd prefer to extend the existing
BootConfig
service, I would suggest to create a new RPC for this feature, that seems like a reasonable middle ground.Feel free to ping me in chat if you want to discuss further offline.