Bug 218679 - [geli] add a verify command
Summary: [geli] add a verify command
Status: Closed Overcome By Events
Alias: None
Product: Base System
Classification: Unclassified
Component: bin (show other bugs)
Version: CURRENT
Hardware: Any Any
: --- Affects Some People
Assignee: freebsd-geom (Nobody)
URL:
Keywords: patch
Depends on:
Blocks:
 
Reported: 2017-04-15 16:56 UTC by Frank
Modified: 2022-01-09 22:19 UTC (History)
7 users (show)

See Also:
woodsb02: mfc-stable11?


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Frank 2017-04-15 16:56:49 UTC
When implementing a NAS system, it is typical for a ZFS pool to be created from a set of disks where all of the disks in that pool have a common passphrase/keyfile. When it comes time to replace disks or add disks to the pool, the use case is to get the passphrase/keyfile from the user, verify it is correct, then set it on the new disks. Currently, there is no way to verify a passphrase/keyfile without modifying the system, i.e. without calling 'attach' or 'setkey'. This report is for adding a 'verify' command so this use case can be implemented.

A git pull request will be submitted to implement this.
Comment 1 Frank 2017-04-15 16:58:42 UTC
Git pull request:

https://github.com/freebsd/freebsd/pull/110
Comment 2 Mariusz Zaborski freebsd_committer freebsd_triage 2018-07-02 21:19:32 UTC
We have right now a 'dry-run' option in the attach method.
Comment 3 Ben Woods freebsd_committer freebsd_triage 2018-07-03 13:23:25 UTC
For reference, the dry run option was committed to head in the following commits:

r332361 added the geli attach dry-run option in 12-CURRENT as "-n" flag.
https://svnweb.freebsd.org/base?view=revision&revision=332361

r333438 changed the geli attach dry-run option in 12-CURRENT to "-C" flag.
https://svnweb.freebsd.org/base?view=revision&revision=333438

r332522 merged the geli attach dry-run option to 11-STABLE as the "-n" flag. Note however that this MFH did NOT merge the corresponding changes to g_eli_ctl.c and geli.8. The end result of this is that the end user is not aware that the "-n" flag exists, and it does not work if you try to use it.
On 11.2-RELEASE:
# geli attach -n md0
geli: illegal option -- n
https://svnweb.freebsd.org/base?view=revision&revision=332522

The 12-CURRENT change to the "-C" flag (r333438) has not been merged to 11-STABLE.

None of the work to add the new geli attach dry-run flag has been merged to 10-STABLE, as there is not anticipated to be a 10.5-RELEASE.

I have re-opened this bug to ask the question: will the new dry-run flag be merged to 11-STABLE in a working form as the "-C" flag?