]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/zio_crypt.h
Encryption Stability and On-Disk Format Fixes
[mirror_zfs.git] / include / sys / zio_crypt.h
CommitLineData
b5256303
TC
1/*
2 * CDDL HEADER START
3 *
4 * This file and its contents are supplied under the terms of the
5 * Common Development and Distribution License ("CDDL"), version 1.0.
6 * You may only use this file in accordance with the terms of version
7 * 1.0 of the CDDL.
8 *
9 * A full copy of the text of the CDDL should have accompanied this
10 * source. A copy of the CDDL is also available via the Internet at
11 * http://www.illumos.org/license/CDDL.
12 *
13 * CDDL HEADER END
14 */
15
16/*
17 * Copyright (c) 2017, Datto, Inc. All rights reserved.
18 */
19
20#ifndef _SYS_ZIO_CRYPT_H
21#define _SYS_ZIO_CRYPT_H
22
23#include <sys/dmu.h>
24#include <sys/refcount.h>
25#include <sys/crypto/api.h>
26#include <sys/nvpair.h>
27#include <sys/avl.h>
28#include <sys/zio.h>
29
30/* forward declarations */
31struct zbookmark_phys;
32
33#define WRAPPING_KEY_LEN 32
34#define WRAPPING_IV_LEN ZIO_DATA_IV_LEN
4807c0ba 35#define WRAPPING_MAC_LEN ZIO_DATA_MAC_LEN
b5256303 36#define MASTER_KEY_MAX_LEN 32
4807c0ba 37#define SHA512_HMAC_KEYLEN 64
b5256303 38
ae76f45c
TC
39#define ZIO_CRYPT_KEY_CURRENT_VERSION 1ULL
40
b5256303
TC
41typedef enum zio_crypt_type {
42 ZC_TYPE_NONE = 0,
43 ZC_TYPE_CCM,
44 ZC_TYPE_GCM
45} zio_crypt_type_t;
46
47/* table of supported crypto algorithms, modes and keylengths. */
48typedef struct zio_crypt_info {
49 /* mechanism name, needed by ICP */
50 crypto_mech_name_t ci_mechname;
51
52 /* cipher mode type (GCM, CCM) */
53 zio_crypt_type_t ci_crypt_type;
54
55 /* length of the encryption key */
56 size_t ci_keylen;
57
58 /* human-readable name of the encryption alforithm */
59 char *ci_name;
60} zio_crypt_info_t;
61
62extern zio_crypt_info_t zio_crypt_table[ZIO_CRYPT_FUNCTIONS];
63
64/* in memory representation of an unwrapped key that is loaded into memory */
65typedef struct zio_crypt_key {
66 /* encryption algorithm */
67 uint64_t zk_crypt;
68
ae76f45c
TC
69 /* on-disk format version */
70 uint64_t zk_version;
71
b5256303
TC
72 /* GUID for uniquely identifying this key. Not encrypted on disk. */
73 uint64_t zk_guid;
74
75 /* buffer for master key */
76 uint8_t zk_master_keydata[MASTER_KEY_MAX_LEN];
77
78 /* buffer for hmac key */
79 uint8_t zk_hmac_keydata[SHA512_HMAC_KEYLEN];
80
81 /* buffer for currrent encryption key derived from master key */
82 uint8_t zk_current_keydata[MASTER_KEY_MAX_LEN];
83
84 /* current 64 bit salt for deriving an encryption key */
85 uint8_t zk_salt[ZIO_DATA_SALT_LEN];
86
87 /* count of how many times the current salt has been used */
88 uint64_t zk_salt_count;
89
90 /* illumos crypto api current encryption key */
91 crypto_key_t zk_current_key;
92
93 /* template of current encryption key for illumos crypto api */
94 crypto_ctx_template_t zk_current_tmpl;
95
96 /* illumos crypto api current hmac key */
97 crypto_key_t zk_hmac_key;
98
99 /* template of hmac key for illumos crypto api */
100 crypto_ctx_template_t zk_hmac_tmpl;
101
102 /* lock for changing the salt and dependant values */
103 krwlock_t zk_salt_lock;
104} zio_crypt_key_t;
105
106void zio_crypt_key_destroy(zio_crypt_key_t *key);
107int zio_crypt_key_init(uint64_t crypt, zio_crypt_key_t *key);
108int zio_crypt_key_get_salt(zio_crypt_key_t *key, uint8_t *salt_out);
109
110int zio_crypt_key_wrap(crypto_key_t *cwkey, zio_crypt_key_t *key, uint8_t *iv,
111 uint8_t *mac, uint8_t *keydata_out, uint8_t *hmac_keydata_out);
ae76f45c
TC
112int zio_crypt_key_unwrap(crypto_key_t *cwkey, uint64_t crypt, uint64_t version,
113 uint64_t guid, uint8_t *keydata, uint8_t *hmac_keydata, uint8_t *iv,
114 uint8_t *mac, zio_crypt_key_t *key);
b5256303
TC
115int zio_crypt_generate_iv(uint8_t *ivbuf);
116int zio_crypt_generate_iv_salt_dedup(zio_crypt_key_t *key, uint8_t *data,
117 uint_t datalen, uint8_t *ivbuf, uint8_t *salt);
118
119void zio_crypt_encode_params_bp(blkptr_t *bp, uint8_t *salt, uint8_t *iv);
120void zio_crypt_decode_params_bp(const blkptr_t *bp, uint8_t *salt, uint8_t *iv);
121void zio_crypt_encode_mac_bp(blkptr_t *bp, uint8_t *mac);
122void zio_crypt_decode_mac_bp(const blkptr_t *bp, uint8_t *mac);
123void zio_crypt_encode_mac_zil(void *data, uint8_t *mac);
124void zio_crypt_decode_mac_zil(const void *data, uint8_t *mac);
125void zio_crypt_copy_dnode_bonus(abd_t *src_abd, uint8_t *dst, uint_t datalen);
126
127int zio_crypt_do_indirect_mac_checksum(boolean_t generate, void *buf,
128 uint_t datalen, boolean_t byteswap, uint8_t *cksum);
129int zio_crypt_do_indirect_mac_checksum_abd(boolean_t generate, abd_t *abd,
130 uint_t datalen, boolean_t byteswap, uint8_t *cksum);
131int zio_crypt_do_hmac(zio_crypt_key_t *key, uint8_t *data, uint_t datalen,
4807c0ba 132 uint8_t *digestbuf, uint_t digestlen);
b5256303
TC
133int zio_crypt_do_objset_hmacs(zio_crypt_key_t *key, void *data, uint_t datalen,
134 boolean_t byteswap, uint8_t *portable_mac, uint8_t *local_mac);
135int zio_do_crypt_data(boolean_t encrypt, zio_crypt_key_t *key, uint8_t *salt,
136 dmu_object_type_t ot, uint8_t *iv, uint8_t *mac, uint_t datalen,
137 boolean_t byteswap, uint8_t *plainbuf, uint8_t *cipherbuf,
138 boolean_t *no_crypt);
139int zio_do_crypt_abd(boolean_t encrypt, zio_crypt_key_t *key, uint8_t *salt,
140 dmu_object_type_t ot, uint8_t *iv, uint8_t *mac, uint_t datalen,
141 boolean_t byteswap, abd_t *pabd, abd_t *cabd, boolean_t *no_crypt);
142
143#endif