virtio-blk: dataplane cleanup
[qemu/cris-port.git] / include / crypto / block.h
blob895521162cbabdd2c0cc5a0fc5ac58f86cf9c56f
1 /*
2 * QEMU Crypto block device encryption
4 * Copyright (c) 2015-2016 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #ifndef QCRYPTO_BLOCK_H
22 #define QCRYPTO_BLOCK_H
24 #include "crypto/cipher.h"
25 #include "crypto/ivgen.h"
27 typedef struct QCryptoBlock QCryptoBlock;
29 /* See also QCryptoBlockFormat, QCryptoBlockCreateOptions
30 * and QCryptoBlockOpenOptions in qapi/crypto.json */
32 typedef ssize_t (*QCryptoBlockReadFunc)(QCryptoBlock *block,
33 size_t offset,
34 uint8_t *buf,
35 size_t buflen,
36 Error **errp,
37 void *opaque);
39 typedef ssize_t (*QCryptoBlockInitFunc)(QCryptoBlock *block,
40 size_t headerlen,
41 Error **errp,
42 void *opaque);
44 typedef ssize_t (*QCryptoBlockWriteFunc)(QCryptoBlock *block,
45 size_t offset,
46 const uint8_t *buf,
47 size_t buflen,
48 Error **errp,
49 void *opaque);
51 /**
52 * qcrypto_block_has_format:
53 * @format: the encryption format
54 * @buf: the data from head of the volume
55 * @len: the length of @buf in bytes
57 * Given @len bytes of data from the head of a storage volume
58 * in @buf, probe to determine if the volume has the encryption
59 * format specified in @format.
61 * Returns: true if the data in @buf matches @format
63 bool qcrypto_block_has_format(QCryptoBlockFormat format,
64 const uint8_t *buf,
65 size_t buflen);
67 typedef enum {
68 QCRYPTO_BLOCK_OPEN_NO_IO = (1 << 0),
69 } QCryptoBlockOpenFlags;
71 /**
72 * qcrypto_block_open:
73 * @options: the encryption options
74 * @readfunc: callback for reading data from the volume
75 * @opaque: data to pass to @readfunc
76 * @flags: bitmask of QCryptoBlockOpenFlags values
77 * @errp: pointer to a NULL-initialized error object
79 * Create a new block encryption object for an existing
80 * storage volume encrypted with format identified by
81 * the parameters in @options.
83 * This will use @readfunc to initialize the encryption
84 * context based on the volume header(s), extracting the
85 * master key(s) as required.
87 * If @flags contains QCRYPTO_BLOCK_OPEN_NO_IO then
88 * the open process will be optimized to skip any parts
89 * that are only required to perform I/O. In particular
90 * this would usually avoid the need to decrypt any
91 * master keys. The only thing that can be done with
92 * the resulting QCryptoBlock object would be to query
93 * metadata such as the payload offset. There will be
94 * no cipher or ivgen objects available.
96 * If any part of initializing the encryption context
97 * fails an error will be returned. This could be due
98 * to the volume being in the wrong format, a cipher
99 * or IV generator algorithm that is not supported,
100 * or incorrect passphrases.
102 * Returns: a block encryption format, or NULL on error
104 QCryptoBlock *qcrypto_block_open(QCryptoBlockOpenOptions *options,
105 QCryptoBlockReadFunc readfunc,
106 void *opaque,
107 unsigned int flags,
108 Error **errp);
111 * qcrypto_block_create:
112 * @format: the encryption format
113 * @initfunc: callback for initializing volume header
114 * @writefunc: callback for writing data to the volume header
115 * @opaque: data to pass to @initfunc and @writefunc
116 * @errp: pointer to a NULL-initialized error object
118 * Create a new block encryption object for initializing
119 * a storage volume to be encrypted with format identified
120 * by the parameters in @options.
122 * This method will allocate space for a new volume header
123 * using @initfunc and then write header data using @writefunc,
124 * generating new master keys, etc as required. Any existing
125 * data present on the volume will be irrevocably destroyed.
127 * If any part of initializing the encryption context
128 * fails an error will be returned. This could be due
129 * to the volume being in the wrong format, a cipher
130 * or IV generator algorithm that is not supported,
131 * or incorrect passphrases.
133 * Returns: a block encryption format, or NULL on error
135 QCryptoBlock *qcrypto_block_create(QCryptoBlockCreateOptions *options,
136 QCryptoBlockInitFunc initfunc,
137 QCryptoBlockWriteFunc writefunc,
138 void *opaque,
139 Error **errp);
142 * @qcrypto_block_decrypt:
143 * @block: the block encryption object
144 * @startsector: the sector from which @buf was read
145 * @buf: the buffer to decrypt
146 * @len: the length of @buf in bytes
147 * @errp: pointer to a NULL-initialized error object
149 * Decrypt @len bytes of cipher text in @buf, writing
150 * plain text back into @buf
152 * Returns 0 on success, -1 on failure
154 int qcrypto_block_decrypt(QCryptoBlock *block,
155 uint64_t startsector,
156 uint8_t *buf,
157 size_t len,
158 Error **errp);
161 * @qcrypto_block_encrypt:
162 * @block: the block encryption object
163 * @startsector: the sector to which @buf will be written
164 * @buf: the buffer to decrypt
165 * @len: the length of @buf in bytes
166 * @errp: pointer to a NULL-initialized error object
168 * Encrypt @len bytes of plain text in @buf, writing
169 * cipher text back into @buf
171 * Returns 0 on success, -1 on failure
173 int qcrypto_block_encrypt(QCryptoBlock *block,
174 uint64_t startsector,
175 uint8_t *buf,
176 size_t len,
177 Error **errp);
180 * qcrypto_block_get_cipher:
181 * @block: the block encryption object
183 * Get the cipher to use for payload encryption
185 * Returns: the cipher object
187 QCryptoCipher *qcrypto_block_get_cipher(QCryptoBlock *block);
190 * qcrypto_block_get_ivgen:
191 * @block: the block encryption object
193 * Get the initialization vector generator to use for
194 * payload encryption
196 * Returns: the IV generator object
198 QCryptoIVGen *qcrypto_block_get_ivgen(QCryptoBlock *block);
202 * qcrypto_block_get_kdf_hash:
203 * @block: the block encryption object
205 * Get the hash algorithm used with the key derivation
206 * function
208 * Returns: the hash algorithm
210 QCryptoHashAlgorithm qcrypto_block_get_kdf_hash(QCryptoBlock *block);
213 * qcrypto_block_get_payload_offset:
214 * @block: the block encryption object
216 * Get the offset to the payload indicated by the
217 * encryption header, in bytes.
219 * Returns: the payload offset in bytes
221 uint64_t qcrypto_block_get_payload_offset(QCryptoBlock *block);
224 * qcrypto_block_free:
225 * @block: the block encryption object
227 * Release all resources associated with the encryption
228 * object
230 void qcrypto_block_free(QCryptoBlock *block);
232 #endif /* QCRYPTO_BLOCK_H */