2017-03-16 22:18:50 -08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "bcachefs.h"
|
|
|
|
#include "checksum.h"
|
2022-07-18 19:42:58 -04:00
|
|
|
#include "errcode.h"
|
2024-11-25 02:05:02 -05:00
|
|
|
#include "error.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#include "super.h"
|
|
|
|
#include "super-io.h"
|
|
|
|
|
|
|
|
#include <linux/crc32c.h>
|
2021-06-17 13:42:09 +02:00
|
|
|
#include <linux/xxhash.h>
|
2017-03-16 22:18:50 -08:00
|
|
|
#include <linux/key.h>
|
|
|
|
#include <linux/random.h>
|
2024-06-28 13:51:38 -04:00
|
|
|
#include <linux/ratelimit.h>
|
2017-03-16 22:18:50 -08:00
|
|
|
#include <crypto/chacha.h>
|
|
|
|
#include <crypto/poly1305.h>
|
|
|
|
#include <keys/user-type.h>
|
|
|
|
|
2021-06-17 11:29:59 +02:00
|
|
|
/*
|
|
|
|
* bch2_checksum state is an abstraction of the checksum state calculated over different pages.
|
|
|
|
* it features page merging without having the checksum algorithm lose its state.
|
|
|
|
* for native checksum aglorithms (like crc), a default seed value will do.
|
|
|
|
* for hash-like algorithms, a state needs to be stored
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct bch2_checksum_state {
|
|
|
|
union {
|
|
|
|
u64 seed;
|
2021-06-17 13:42:09 +02:00
|
|
|
struct xxh64_state h64state;
|
2021-06-17 11:29:59 +02:00
|
|
|
};
|
|
|
|
unsigned int type;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void bch2_checksum_init(struct bch2_checksum_state *state)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2021-06-17 11:29:59 +02:00
|
|
|
switch (state->type) {
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_none:
|
|
|
|
case BCH_CSUM_crc32c:
|
|
|
|
case BCH_CSUM_crc64:
|
2021-06-17 11:29:59 +02:00
|
|
|
state->seed = 0;
|
|
|
|
break;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_crc32c_nonzero:
|
2021-06-17 11:29:59 +02:00
|
|
|
state->seed = U32_MAX;
|
|
|
|
break;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_crc64_nonzero:
|
2021-06-17 11:29:59 +02:00
|
|
|
state->seed = U64_MAX;
|
|
|
|
break;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_xxhash:
|
2021-06-17 13:42:09 +02:00
|
|
|
xxh64_reset(&state->h64state, 0);
|
|
|
|
break;
|
2017-03-16 22:18:50 -08:00
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 11:29:59 +02:00
|
|
|
static u64 bch2_checksum_final(const struct bch2_checksum_state *state)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2021-06-17 11:29:59 +02:00
|
|
|
switch (state->type) {
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_none:
|
|
|
|
case BCH_CSUM_crc32c:
|
|
|
|
case BCH_CSUM_crc64:
|
2021-06-17 11:29:59 +02:00
|
|
|
return state->seed;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_crc32c_nonzero:
|
2021-06-17 11:29:59 +02:00
|
|
|
return state->seed ^ U32_MAX;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_crc64_nonzero:
|
2021-06-17 11:29:59 +02:00
|
|
|
return state->seed ^ U64_MAX;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_xxhash:
|
2021-06-17 13:42:09 +02:00
|
|
|
return xxh64_digest(&state->h64state);
|
2017-03-16 22:18:50 -08:00
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 11:29:59 +02:00
|
|
|
static void bch2_checksum_update(struct bch2_checksum_state *state, const void *data, size_t len)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2021-06-17 11:29:59 +02:00
|
|
|
switch (state->type) {
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_none:
|
2021-06-17 11:29:59 +02:00
|
|
|
return;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_crc32c_nonzero:
|
|
|
|
case BCH_CSUM_crc32c:
|
2021-06-17 11:29:59 +02:00
|
|
|
state->seed = crc32c(state->seed, data, len);
|
|
|
|
break;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_crc64_nonzero:
|
|
|
|
case BCH_CSUM_crc64:
|
2021-06-17 11:29:59 +02:00
|
|
|
state->seed = crc64_be(state->seed, data, len);
|
|
|
|
break;
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_xxhash:
|
2021-06-17 13:42:09 +02:00
|
|
|
xxh64_update(&state->h64state, data, len);
|
|
|
|
break;
|
2017-03-16 22:18:50 -08:00
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-05-05 11:18:21 -07:00
|
|
|
static void bch2_chacha20_init(struct chacha_state *state,
|
2025-04-01 21:33:33 -07:00
|
|
|
const struct bch_key *key, struct nonce nonce)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2025-04-01 21:33:33 -07:00
|
|
|
u32 key_words[CHACHA_KEY_SIZE / sizeof(u32)];
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
BUILD_BUG_ON(sizeof(key_words) != sizeof(*key));
|
|
|
|
memcpy(key_words, key, sizeof(key_words));
|
|
|
|
le32_to_cpu_array(key_words, ARRAY_SIZE(key_words));
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
BUILD_BUG_ON(sizeof(nonce) != CHACHA_IV_SIZE);
|
|
|
|
chacha_init(state, key_words, (const u8 *)nonce.d);
|
2024-09-01 15:24:11 -04:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
memzero_explicit(key_words, sizeof(key_words));
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2025-04-13 05:23:40 -04:00
|
|
|
void bch2_chacha20(const struct bch_key *key, struct nonce nonce,
|
|
|
|
void *data, size_t len)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2025-05-05 11:18:21 -07:00
|
|
|
struct chacha_state state;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-05-05 11:18:21 -07:00
|
|
|
bch2_chacha20_init(&state, key, nonce);
|
|
|
|
chacha20_crypt(&state, data, data, len);
|
2025-05-05 11:18:23 -07:00
|
|
|
chacha_zeroize_state(&state);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
static void bch2_poly1305_init(struct poly1305_desc_ctx *desc,
|
|
|
|
struct bch_fs *c, struct nonce nonce)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2025-04-01 21:33:33 -07:00
|
|
|
u8 key[POLY1305_KEY_SIZE] = { 0 };
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
nonce.d[3] ^= BCH_NONCE_POLY;
|
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
bch2_chacha20(&c->chacha20_key, nonce, key, sizeof(key));
|
|
|
|
poly1305_init(desc, key);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct bch_csum bch2_checksum(struct bch_fs *c, unsigned type,
|
|
|
|
struct nonce nonce, const void *data, size_t len)
|
|
|
|
{
|
|
|
|
switch (type) {
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_none:
|
|
|
|
case BCH_CSUM_crc32c_nonzero:
|
|
|
|
case BCH_CSUM_crc64_nonzero:
|
|
|
|
case BCH_CSUM_crc32c:
|
|
|
|
case BCH_CSUM_xxhash:
|
|
|
|
case BCH_CSUM_crc64: {
|
2021-06-17 11:29:59 +02:00
|
|
|
struct bch2_checksum_state state;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2021-06-17 11:29:59 +02:00
|
|
|
state.type = type;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2021-06-17 11:29:59 +02:00
|
|
|
bch2_checksum_init(&state);
|
|
|
|
bch2_checksum_update(&state, data, len);
|
|
|
|
|
|
|
|
return (struct bch_csum) { .lo = cpu_to_le64(bch2_checksum_final(&state)) };
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_chacha20_poly1305_80:
|
|
|
|
case BCH_CSUM_chacha20_poly1305_128: {
|
2025-04-01 21:33:33 -07:00
|
|
|
struct poly1305_desc_ctx dctx;
|
2017-03-16 22:18:50 -08:00
|
|
|
u8 digest[POLY1305_DIGEST_SIZE];
|
|
|
|
struct bch_csum ret = { 0 };
|
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
bch2_poly1305_init(&dctx, c, nonce);
|
|
|
|
poly1305_update(&dctx, data, len);
|
|
|
|
poly1305_final(&dctx, digest);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
memcpy(&ret, digest, bch_crc_bytes[type]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
default:
|
2024-05-19 20:09:35 -04:00
|
|
|
return (struct bch_csum) {};
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-19 00:42:12 -05:00
|
|
|
int bch2_encrypt(struct bch_fs *c, unsigned type,
|
2017-03-16 22:18:50 -08:00
|
|
|
struct nonce nonce, void *data, size_t len)
|
|
|
|
{
|
|
|
|
if (!bch2_csum_type_is_encryption(type))
|
2022-02-19 00:42:12 -05:00
|
|
|
return 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
if (bch2_fs_inconsistent_on(!c->chacha20_key_set,
|
2024-11-25 02:05:02 -05:00
|
|
|
c, "attempting to encrypt without encryption key"))
|
2025-05-28 11:57:50 -04:00
|
|
|
return bch_err_throw(c, no_encryption_key);
|
2024-11-25 02:05:02 -05:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
bch2_chacha20(&c->chacha20_key, nonce, data, len);
|
|
|
|
return 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct bch_csum __bch2_checksum_bio(struct bch_fs *c, unsigned type,
|
|
|
|
struct nonce nonce, struct bio *bio,
|
|
|
|
struct bvec_iter *iter)
|
|
|
|
{
|
|
|
|
struct bio_vec bv;
|
|
|
|
|
|
|
|
switch (type) {
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_none:
|
2017-03-16 22:18:50 -08:00
|
|
|
return (struct bch_csum) { 0 };
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_crc32c_nonzero:
|
|
|
|
case BCH_CSUM_crc64_nonzero:
|
|
|
|
case BCH_CSUM_crc32c:
|
|
|
|
case BCH_CSUM_xxhash:
|
|
|
|
case BCH_CSUM_crc64: {
|
2021-06-17 11:29:59 +02:00
|
|
|
struct bch2_checksum_state state;
|
|
|
|
|
|
|
|
state.type = type;
|
|
|
|
bch2_checksum_init(&state);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
#ifdef CONFIG_HIGHMEM
|
|
|
|
__bio_for_each_segment(bv, bio, *iter, *iter) {
|
2023-08-07 12:04:05 -04:00
|
|
|
void *p = kmap_local_page(bv.bv_page) + bv.bv_offset;
|
|
|
|
|
2021-06-17 11:29:59 +02:00
|
|
|
bch2_checksum_update(&state, p, bv.bv_len);
|
2023-08-07 12:04:05 -04:00
|
|
|
kunmap_local(p);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
#else
|
2019-07-04 03:48:25 -04:00
|
|
|
__bio_for_each_bvec(bv, bio, *iter, *iter)
|
2021-06-17 11:29:59 +02:00
|
|
|
bch2_checksum_update(&state, page_address(bv.bv_page) + bv.bv_offset,
|
2017-03-16 22:18:50 -08:00
|
|
|
bv.bv_len);
|
|
|
|
#endif
|
2021-06-17 11:29:59 +02:00
|
|
|
return (struct bch_csum) { .lo = cpu_to_le64(bch2_checksum_final(&state)) };
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2021-11-11 12:11:33 -05:00
|
|
|
case BCH_CSUM_chacha20_poly1305_80:
|
|
|
|
case BCH_CSUM_chacha20_poly1305_128: {
|
2025-04-01 21:33:33 -07:00
|
|
|
struct poly1305_desc_ctx dctx;
|
2017-03-16 22:18:50 -08:00
|
|
|
u8 digest[POLY1305_DIGEST_SIZE];
|
|
|
|
struct bch_csum ret = { 0 };
|
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
bch2_poly1305_init(&dctx, c, nonce);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
#ifdef CONFIG_HIGHMEM
|
|
|
|
__bio_for_each_segment(bv, bio, *iter, *iter) {
|
2023-08-07 12:04:05 -04:00
|
|
|
void *p = kmap_local_page(bv.bv_page) + bv.bv_offset;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
poly1305_update(&dctx, p, bv.bv_len);
|
2023-08-07 12:04:05 -04:00
|
|
|
kunmap_local(p);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
#else
|
2019-07-04 03:48:25 -04:00
|
|
|
__bio_for_each_bvec(bv, bio, *iter, *iter)
|
2025-04-01 21:33:33 -07:00
|
|
|
poly1305_update(&dctx,
|
2017-03-16 22:18:50 -08:00
|
|
|
page_address(bv.bv_page) + bv.bv_offset,
|
|
|
|
bv.bv_len);
|
|
|
|
#endif
|
2025-04-01 21:33:33 -07:00
|
|
|
poly1305_final(&dctx, digest);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
memcpy(&ret, digest, bch_crc_bytes[type]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
default:
|
2024-05-19 20:09:35 -04:00
|
|
|
return (struct bch_csum) {};
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bch_csum bch2_checksum_bio(struct bch_fs *c, unsigned type,
|
|
|
|
struct nonce nonce, struct bio *bio)
|
|
|
|
{
|
|
|
|
struct bvec_iter iter = bio->bi_iter;
|
|
|
|
|
|
|
|
return __bch2_checksum_bio(c, type, nonce, bio, &iter);
|
|
|
|
}
|
|
|
|
|
2022-11-01 03:37:53 -04:00
|
|
|
int __bch2_encrypt_bio(struct bch_fs *c, unsigned type,
|
2022-02-19 00:42:12 -05:00
|
|
|
struct nonce nonce, struct bio *bio)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
|
|
|
struct bio_vec bv;
|
|
|
|
struct bvec_iter iter;
|
2025-05-05 11:18:21 -07:00
|
|
|
struct chacha_state chacha_state;
|
2022-02-19 00:42:12 -05:00
|
|
|
int ret = 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
if (bch2_fs_inconsistent_on(!c->chacha20_key_set,
|
2024-11-25 02:05:02 -05:00
|
|
|
c, "attempting to encrypt without encryption key"))
|
2025-05-28 11:57:50 -04:00
|
|
|
return bch_err_throw(c, no_encryption_key);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-05-05 11:18:21 -07:00
|
|
|
bch2_chacha20_init(&chacha_state, &c->chacha20_key, nonce);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
bio_for_each_segment(bv, bio, iter) {
|
2025-04-01 21:33:33 -07:00
|
|
|
void *p;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* chacha_crypt() assumes that the length is a multiple of
|
|
|
|
* CHACHA_BLOCK_SIZE on any non-final call.
|
|
|
|
*/
|
|
|
|
if (!IS_ALIGNED(bv.bv_len, CHACHA_BLOCK_SIZE)) {
|
|
|
|
bch_err_ratelimited(c, "bio not aligned for encryption");
|
|
|
|
ret = -EIO;
|
|
|
|
break;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
p = bvec_kmap_local(&bv);
|
2025-05-05 11:18:21 -07:00
|
|
|
chacha20_crypt(&chacha_state, p, p, bv.bv_len);
|
2025-04-01 21:33:33 -07:00
|
|
|
kunmap_local(p);
|
2024-05-20 03:13:57 -04:00
|
|
|
}
|
2025-05-05 11:18:23 -07:00
|
|
|
chacha_zeroize_state(&chacha_state);
|
2024-05-20 03:13:57 -04:00
|
|
|
return ret;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2019-05-12 22:23:30 -04:00
|
|
|
struct bch_csum bch2_checksum_merge(unsigned type, struct bch_csum a,
|
|
|
|
struct bch_csum b, size_t b_len)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2021-06-17 11:29:59 +02:00
|
|
|
struct bch2_checksum_state state;
|
|
|
|
|
|
|
|
state.type = type;
|
|
|
|
bch2_checksum_init(&state);
|
2023-09-27 07:23:37 -04:00
|
|
|
state.seed = le64_to_cpu(a.lo);
|
2021-06-17 11:29:59 +02:00
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
BUG_ON(!bch2_checksum_mergeable(type));
|
|
|
|
|
|
|
|
while (b_len) {
|
2023-09-12 18:41:22 -04:00
|
|
|
unsigned page_len = min_t(unsigned, b_len, PAGE_SIZE);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2021-06-17 11:29:59 +02:00
|
|
|
bch2_checksum_update(&state,
|
2023-09-12 18:41:22 -04:00
|
|
|
page_address(ZERO_PAGE(0)), page_len);
|
|
|
|
b_len -= page_len;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
2023-09-27 07:23:37 -04:00
|
|
|
a.lo = cpu_to_le64(bch2_checksum_final(&state));
|
2017-03-16 22:18:50 -08:00
|
|
|
a.lo ^= b.lo;
|
|
|
|
a.hi ^= b.hi;
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bch2_rechecksum_bio(struct bch_fs *c, struct bio *bio,
|
|
|
|
struct bversion version,
|
|
|
|
struct bch_extent_crc_unpacked crc_old,
|
|
|
|
struct bch_extent_crc_unpacked *crc_a,
|
|
|
|
struct bch_extent_crc_unpacked *crc_b,
|
|
|
|
unsigned len_a, unsigned len_b,
|
|
|
|
unsigned new_csum_type)
|
|
|
|
{
|
|
|
|
struct bvec_iter iter = bio->bi_iter;
|
|
|
|
struct nonce nonce = extent_nonce(version, crc_old);
|
|
|
|
struct bch_csum merged = { 0 };
|
|
|
|
struct crc_split {
|
|
|
|
struct bch_extent_crc_unpacked *crc;
|
|
|
|
unsigned len;
|
|
|
|
unsigned csum_type;
|
|
|
|
struct bch_csum csum;
|
|
|
|
} splits[3] = {
|
2023-09-12 18:41:22 -04:00
|
|
|
{ crc_a, len_a, new_csum_type, { 0 }},
|
|
|
|
{ crc_b, len_b, new_csum_type, { 0 } },
|
|
|
|
{ NULL, bio_sectors(bio) - len_a - len_b, new_csum_type, { 0 } },
|
2017-03-16 22:18:50 -08:00
|
|
|
}, *i;
|
|
|
|
bool mergeable = crc_old.csum_type == new_csum_type &&
|
|
|
|
bch2_checksum_mergeable(new_csum_type);
|
|
|
|
unsigned crc_nonce = crc_old.nonce;
|
|
|
|
|
|
|
|
BUG_ON(len_a + len_b > bio_sectors(bio));
|
|
|
|
BUG_ON(crc_old.uncompressed_size != bio_sectors(bio));
|
2018-02-23 16:26:10 -05:00
|
|
|
BUG_ON(crc_is_compressed(crc_old));
|
2017-03-16 22:18:50 -08:00
|
|
|
BUG_ON(bch2_csum_type_is_encryption(crc_old.csum_type) !=
|
|
|
|
bch2_csum_type_is_encryption(new_csum_type));
|
|
|
|
|
|
|
|
for (i = splits; i < splits + ARRAY_SIZE(splits); i++) {
|
|
|
|
iter.bi_size = i->len << 9;
|
|
|
|
if (mergeable || i->crc)
|
|
|
|
i->csum = __bch2_checksum_bio(c, i->csum_type,
|
|
|
|
nonce, bio, &iter);
|
|
|
|
else
|
|
|
|
bio_advance_iter(bio, &iter, i->len << 9);
|
|
|
|
nonce = nonce_add(nonce, i->len << 9);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mergeable)
|
|
|
|
for (i = splits; i < splits + ARRAY_SIZE(splits); i++)
|
|
|
|
merged = bch2_checksum_merge(new_csum_type, merged,
|
|
|
|
i->csum, i->len << 9);
|
|
|
|
else
|
|
|
|
merged = bch2_checksum_bio(c, crc_old.csum_type,
|
|
|
|
extent_nonce(version, crc_old), bio);
|
|
|
|
|
2023-07-16 22:31:19 -04:00
|
|
|
if (bch2_crc_cmp(merged, crc_old.csum) && !c->opts.no_data_io) {
|
2024-04-12 15:17:00 -04:00
|
|
|
struct printbuf buf = PRINTBUF;
|
|
|
|
prt_printf(&buf, "checksum error in %s() (memory corruption or bug?)\n"
|
2024-06-28 13:51:38 -04:00
|
|
|
" expected %0llx:%0llx got %0llx:%0llx (old type ",
|
2024-04-12 15:17:00 -04:00
|
|
|
__func__,
|
|
|
|
crc_old.csum.hi,
|
|
|
|
crc_old.csum.lo,
|
|
|
|
merged.hi,
|
|
|
|
merged.lo);
|
|
|
|
bch2_prt_csum_type(&buf, crc_old.csum_type);
|
|
|
|
prt_str(&buf, " new type ");
|
|
|
|
bch2_prt_csum_type(&buf, new_csum_type);
|
|
|
|
prt_str(&buf, ")");
|
2024-06-28 13:51:38 -04:00
|
|
|
WARN_RATELIMIT(1, "%s", buf.buf);
|
2024-04-12 15:17:00 -04:00
|
|
|
printbuf_exit(&buf);
|
2025-05-28 11:57:50 -04:00
|
|
|
return bch_err_throw(c, recompute_checksum);
|
2022-06-18 19:03:25 -04:00
|
|
|
}
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
for (i = splits; i < splits + ARRAY_SIZE(splits); i++) {
|
|
|
|
if (i->crc)
|
|
|
|
*i->crc = (struct bch_extent_crc_unpacked) {
|
|
|
|
.csum_type = i->csum_type,
|
2018-02-23 16:26:10 -05:00
|
|
|
.compression_type = crc_old.compression_type,
|
2017-03-16 22:18:50 -08:00
|
|
|
.compressed_size = i->len,
|
|
|
|
.uncompressed_size = i->len,
|
|
|
|
.offset = 0,
|
|
|
|
.live_size = i->len,
|
|
|
|
.nonce = crc_nonce,
|
|
|
|
.csum = i->csum,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (bch2_csum_type_is_encryption(new_csum_type))
|
|
|
|
crc_nonce += i->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-08-05 15:43:00 -04:00
|
|
|
/* BCH_SB_FIELD_crypt: */
|
|
|
|
|
2024-05-08 18:49:14 -04:00
|
|
|
static int bch2_sb_crypt_validate(struct bch_sb *sb, struct bch_sb_field *f,
|
|
|
|
enum bch_validate_flags flags, struct printbuf *err)
|
2023-08-05 15:43:00 -04:00
|
|
|
{
|
|
|
|
struct bch_sb_field_crypt *crypt = field_to_type(f, crypt);
|
|
|
|
|
|
|
|
if (vstruct_bytes(&crypt->field) < sizeof(*crypt)) {
|
|
|
|
prt_printf(err, "wrong size (got %zu should be %zu)",
|
|
|
|
vstruct_bytes(&crypt->field), sizeof(*crypt));
|
|
|
|
return -BCH_ERR_invalid_sb_crypt;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BCH_CRYPT_KDF_TYPE(crypt)) {
|
|
|
|
prt_printf(err, "bad kdf type %llu", BCH_CRYPT_KDF_TYPE(crypt));
|
|
|
|
return -BCH_ERR_invalid_sb_crypt;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bch2_sb_crypt_to_text(struct printbuf *out, struct bch_sb *sb,
|
|
|
|
struct bch_sb_field *f)
|
|
|
|
{
|
|
|
|
struct bch_sb_field_crypt *crypt = field_to_type(f, crypt);
|
|
|
|
|
2024-04-10 16:08:24 -04:00
|
|
|
prt_printf(out, "KFD: %llu\n", BCH_CRYPT_KDF_TYPE(crypt));
|
|
|
|
prt_printf(out, "scrypt n: %llu\n", BCH_KDF_SCRYPT_N(crypt));
|
|
|
|
prt_printf(out, "scrypt r: %llu\n", BCH_KDF_SCRYPT_R(crypt));
|
|
|
|
prt_printf(out, "scrypt p: %llu\n", BCH_KDF_SCRYPT_P(crypt));
|
2023-08-05 15:43:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct bch_sb_field_ops bch_sb_field_ops_crypt = {
|
|
|
|
.validate = bch2_sb_crypt_validate,
|
|
|
|
.to_text = bch2_sb_crypt_to_text,
|
|
|
|
};
|
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
#ifdef __KERNEL__
|
2022-01-04 19:05:08 -05:00
|
|
|
static int __bch2_request_key(char *key_description, struct bch_key *key)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
|
|
|
struct key *keyring_key;
|
|
|
|
const struct user_key_payload *ukp;
|
|
|
|
int ret;
|
|
|
|
|
2022-05-14 07:00:22 -04:00
|
|
|
keyring_key = request_key(&key_type_user, key_description, NULL);
|
2017-03-16 22:18:50 -08:00
|
|
|
if (IS_ERR(keyring_key))
|
|
|
|
return PTR_ERR(keyring_key);
|
|
|
|
|
|
|
|
down_read(&keyring_key->sem);
|
|
|
|
ukp = dereference_key_locked(keyring_key);
|
|
|
|
if (ukp->datalen == sizeof(*key)) {
|
|
|
|
memcpy(key, ukp->data, ukp->datalen);
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
up_read(&keyring_key->sem);
|
|
|
|
key_put(keyring_key);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#include <keyutils.h>
|
|
|
|
|
2022-01-04 19:05:08 -05:00
|
|
|
static int __bch2_request_key(char *key_description, struct bch_key *key)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
|
|
|
key_serial_t key_id;
|
|
|
|
|
2023-09-26 17:20:39 -04:00
|
|
|
key_id = request_key("user", key_description, NULL,
|
|
|
|
KEY_SPEC_SESSION_KEYRING);
|
|
|
|
if (key_id >= 0)
|
|
|
|
goto got_key;
|
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
key_id = request_key("user", key_description, NULL,
|
|
|
|
KEY_SPEC_USER_KEYRING);
|
2023-09-26 17:20:39 -04:00
|
|
|
if (key_id >= 0)
|
|
|
|
goto got_key;
|
|
|
|
|
|
|
|
key_id = request_key("user", key_description, NULL,
|
|
|
|
KEY_SPEC_USER_SESSION_KEYRING);
|
|
|
|
if (key_id >= 0)
|
|
|
|
goto got_key;
|
|
|
|
|
|
|
|
return -errno;
|
|
|
|
got_key:
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
if (keyctl_read(key_id, (void *) key, sizeof(*key)) != sizeof(*key))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2023-09-26 17:20:39 -04:00
|
|
|
|
2024-01-16 17:29:15 -05:00
|
|
|
#include "crypto.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#endif
|
|
|
|
|
2022-01-04 19:05:08 -05:00
|
|
|
int bch2_request_key(struct bch_sb *sb, struct bch_key *key)
|
|
|
|
{
|
2023-02-03 21:01:40 -05:00
|
|
|
struct printbuf key_description = PRINTBUF;
|
|
|
|
int ret;
|
2022-01-04 19:05:08 -05:00
|
|
|
|
2023-02-03 21:01:40 -05:00
|
|
|
prt_printf(&key_description, "bcachefs:");
|
|
|
|
pr_uuid(&key_description, sb->user_uuid.b);
|
2022-01-04 19:05:08 -05:00
|
|
|
|
2023-02-03 21:01:40 -05:00
|
|
|
ret = __bch2_request_key(key_description.buf, key);
|
|
|
|
printbuf_exit(&key_description);
|
2023-09-26 17:20:39 -04:00
|
|
|
|
|
|
|
#ifndef __KERNEL__
|
|
|
|
if (ret) {
|
|
|
|
char *passphrase = read_passphrase("Enter passphrase: ");
|
|
|
|
struct bch_encrypted_key sb_key;
|
|
|
|
|
|
|
|
bch2_passphrase_check(sb, passphrase,
|
|
|
|
key, &sb_key);
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* stash with memfd, pass memfd fd to mount */
|
|
|
|
|
2023-02-03 21:01:40 -05:00
|
|
|
return ret;
|
2022-01-04 19:05:08 -05:00
|
|
|
}
|
|
|
|
|
2023-09-23 19:07:16 -04:00
|
|
|
#ifndef __KERNEL__
|
|
|
|
int bch2_revoke_key(struct bch_sb *sb)
|
|
|
|
{
|
|
|
|
key_serial_t key_id;
|
|
|
|
struct printbuf key_description = PRINTBUF;
|
|
|
|
|
|
|
|
prt_printf(&key_description, "bcachefs:");
|
|
|
|
pr_uuid(&key_description, sb->user_uuid.b);
|
|
|
|
|
|
|
|
key_id = request_key("user", key_description.buf, NULL, KEY_SPEC_USER_KEYRING);
|
|
|
|
printbuf_exit(&key_description);
|
|
|
|
if (key_id < 0)
|
|
|
|
return errno;
|
|
|
|
|
|
|
|
keyctl_revoke(key_id);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
int bch2_decrypt_sb_key(struct bch_fs *c,
|
|
|
|
struct bch_sb_field_crypt *crypt,
|
|
|
|
struct bch_key *key)
|
|
|
|
{
|
|
|
|
struct bch_encrypted_key sb_key = crypt->key;
|
|
|
|
struct bch_key user_key;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
/* is key encrypted? */
|
|
|
|
if (!bch2_key_is_encrypted(&sb_key))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = bch2_request_key(c->disk_sb.sb, &user_key);
|
|
|
|
if (ret) {
|
2022-07-18 19:42:58 -04:00
|
|
|
bch_err(c, "error requesting encryption key: %s", bch2_err_str(ret));
|
2017-03-16 22:18:50 -08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* decrypt real key: */
|
2025-04-01 21:33:33 -07:00
|
|
|
bch2_chacha20(&user_key, bch2_sb_key_nonce(c), &sb_key, sizeof(sb_key));
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
if (bch2_key_is_encrypted(&sb_key)) {
|
|
|
|
bch_err(c, "incorrect encryption key");
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
*key = sb_key.key;
|
|
|
|
err:
|
|
|
|
memzero_explicit(&sb_key, sizeof(sb_key));
|
|
|
|
memzero_explicit(&user_key, sizeof(user_key));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2025-03-16 13:39:14 -04:00
|
|
|
#if 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This seems to be duplicating code in cmd_remove_passphrase() in
|
|
|
|
* bcachefs-tools, but we might want to switch userspace to use this - and
|
|
|
|
* perhaps add an ioctl for calling this at runtime, so we can take the
|
|
|
|
* passphrase off of a mounted filesystem (which has come up).
|
|
|
|
*/
|
2017-03-16 22:18:50 -08:00
|
|
|
int bch2_disable_encryption(struct bch_fs *c)
|
|
|
|
{
|
|
|
|
struct bch_sb_field_crypt *crypt;
|
|
|
|
struct bch_key key;
|
|
|
|
int ret = -EINVAL;
|
|
|
|
|
|
|
|
mutex_lock(&c->sb_lock);
|
|
|
|
|
2023-09-26 17:49:34 -04:00
|
|
|
crypt = bch2_sb_field_get(c->disk_sb.sb, crypt);
|
2017-03-16 22:18:50 -08:00
|
|
|
if (!crypt)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* is key encrypted? */
|
|
|
|
ret = 0;
|
|
|
|
if (bch2_key_is_encrypted(&crypt->key))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = bch2_decrypt_sb_key(c, crypt, &key);
|
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
2023-07-06 22:47:42 -04:00
|
|
|
crypt->key.magic = cpu_to_le64(BCH_KEY_MAGIC);
|
2017-03-16 22:18:50 -08:00
|
|
|
crypt->key.key = key;
|
|
|
|
|
|
|
|
SET_BCH_SB_ENCRYPTION_TYPE(c->disk_sb.sb, 0);
|
|
|
|
bch2_write_super(c);
|
|
|
|
out:
|
|
|
|
mutex_unlock(&c->sb_lock);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2025-03-16 13:39:14 -04:00
|
|
|
/*
|
|
|
|
* For enabling encryption on an existing filesystem: not hooked up yet, but it
|
|
|
|
* should be
|
|
|
|
*/
|
2017-03-16 22:18:50 -08:00
|
|
|
int bch2_enable_encryption(struct bch_fs *c, bool keyed)
|
|
|
|
{
|
|
|
|
struct bch_encrypted_key key;
|
|
|
|
struct bch_key user_key;
|
|
|
|
struct bch_sb_field_crypt *crypt;
|
|
|
|
int ret = -EINVAL;
|
|
|
|
|
|
|
|
mutex_lock(&c->sb_lock);
|
|
|
|
|
|
|
|
/* Do we already have an encryption key? */
|
2023-09-26 17:49:34 -04:00
|
|
|
if (bch2_sb_field_get(c->disk_sb.sb, crypt))
|
2017-03-16 22:18:50 -08:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
ret = bch2_alloc_ciphers(c);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2023-07-06 22:47:42 -04:00
|
|
|
key.magic = cpu_to_le64(BCH_KEY_MAGIC);
|
2017-03-16 22:18:50 -08:00
|
|
|
get_random_bytes(&key.key, sizeof(key.key));
|
|
|
|
|
|
|
|
if (keyed) {
|
|
|
|
ret = bch2_request_key(c->disk_sb.sb, &user_key);
|
|
|
|
if (ret) {
|
2022-07-18 19:42:58 -04:00
|
|
|
bch_err(c, "error requesting encryption key: %s", bch2_err_str(ret));
|
2017-03-16 22:18:50 -08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = bch2_chacha_encrypt_key(&user_key, bch2_sb_key_nonce(c),
|
|
|
|
&key, sizeof(key));
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = crypto_skcipher_setkey(&c->chacha20->base,
|
|
|
|
(void *) &key.key, sizeof(key.key));
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2023-09-26 17:49:34 -04:00
|
|
|
crypt = bch2_sb_field_resize(&c->disk_sb, crypt,
|
|
|
|
sizeof(*crypt) / sizeof(u64));
|
2017-03-16 22:18:50 -08:00
|
|
|
if (!crypt) {
|
2025-05-28 11:57:50 -04:00
|
|
|
ret = bch_err_throw(c, ENOSPC_sb_crypt);
|
2017-03-16 22:18:50 -08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
crypt->key = key;
|
|
|
|
|
|
|
|
/* write superblock */
|
|
|
|
SET_BCH_SB_ENCRYPTION_TYPE(c->disk_sb.sb, 1);
|
|
|
|
bch2_write_super(c);
|
|
|
|
err:
|
|
|
|
mutex_unlock(&c->sb_lock);
|
|
|
|
memzero_explicit(&user_key, sizeof(user_key));
|
|
|
|
memzero_explicit(&key, sizeof(key));
|
|
|
|
return ret;
|
|
|
|
}
|
2025-03-16 13:39:14 -04:00
|
|
|
#endif
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
void bch2_fs_encryption_exit(struct bch_fs *c)
|
|
|
|
{
|
2025-04-01 21:33:33 -07:00
|
|
|
memzero_explicit(&c->chacha20_key, sizeof(c->chacha20_key));
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
int bch2_fs_encryption_init(struct bch_fs *c)
|
|
|
|
{
|
|
|
|
struct bch_sb_field_crypt *crypt;
|
2025-04-01 21:33:33 -07:00
|
|
|
int ret;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2023-09-26 17:49:34 -04:00
|
|
|
crypt = bch2_sb_field_get(c->disk_sb.sb, crypt);
|
2017-03-16 22:18:50 -08:00
|
|
|
if (!crypt)
|
2025-04-01 21:33:33 -07:00
|
|
|
return 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-04-01 21:33:33 -07:00
|
|
|
ret = bch2_decrypt_sb_key(c, crypt, &c->chacha20_key);
|
2017-03-16 22:18:50 -08:00
|
|
|
if (ret)
|
2025-04-01 21:33:33 -07:00
|
|
|
return ret;
|
|
|
|
c->chacha20_key_set = true;
|
|
|
|
return 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|