]> git.proxmox.com Git - mirror_zfs.git/commit
Better handling for future crypto parameters
authorRob N <robn@despairlabs.com>
Tue, 7 Mar 2023 22:05:14 +0000 (09:05 +1100)
committerGitHub <noreply@github.com>
Tue, 7 Mar 2023 22:05:14 +0000 (14:05 -0800)
commitb988f32c701760da8793f83f22f2043578e11b67
tree7c69988ae907867bd285b9081cdde4ef31f9be30
parent12a240ac0b3b89e9210b3a2a539c1f74488e927d
Better handling for future crypto parameters

The intent is that this is like ENOTSUP, but specifically for when
something can't be done because we have no support for the requested
crypto parameters; eg unlocking a dataset or receiving a stream
encrypted with a suite we don't support.

Its not intended to be recoverable without upgrading ZFS itself.
If the request could be made to work by enabling a feature or modifying
some other configuration item, then some other code should be used.

load-key: In the future we might have more crypto suites (ie new values
for the `encryption` property. Right now trying to load a key on such
a future crypto suite will look up suite parameters off the end of the
crypto table, resulting in misbehaviour and/or crashes (or, with debug
enabled, trip the assertion in `zio_crypt_key_unwrap`).

Instead, lets check the value we got from the dataset, and if we can't
handle it, abort early.

recv: When receiving a raw stream encrypted with an unknown crypto
suite, `zfs recv` would report a generic `invalid backup stream`
(EINVAL). While technically correct, its not super helpful, so lets
ship a more specific error code and message.

Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Richard Yao <richard.yao@alumni.stonybrook.edu>
Signed-off-by: Rob Norris <robn@despairlabs.com>
Closes #14577
cmd/zdb/zdb.c
contrib/pyzfs/libzfs_core/_constants.py
include/sys/fs/zfs.h
lib/libzfs/libzfs_crypto.c
lib/libzfs/libzfs_sendrecv.c
module/zfs/dsl_crypt.c