]> git.proxmox.com Git - mirror_qemu.git/blob - include/sysemu/cryptodev.h
048a6270359a7fff532b39ad28bc9c75d8b00bcf
[mirror_qemu.git] / include / sysemu / cryptodev.h
1 /*
2 * QEMU Crypto Device Implementation
3 *
4 * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
5 *
6 * Authors:
7 * Gonglei <arei.gonglei@huawei.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23 #ifndef CRYPTODEV_H
24 #define CRYPTODEV_H
25
26 #include "qemu/queue.h"
27 #include "qom/object.h"
28 #include "qapi/qapi-types-cryptodev.h"
29
30 /**
31 * CryptoDevBackend:
32 *
33 * The CryptoDevBackend object is an interface
34 * for different cryptodev backends, which provides crypto
35 * operation wrapper.
36 *
37 */
38
39 #define TYPE_CRYPTODEV_BACKEND "cryptodev-backend"
40
41 OBJECT_DECLARE_TYPE(CryptoDevBackend, CryptoDevBackendClass,
42 CRYPTODEV_BACKEND)
43
44
45 #define MAX_CRYPTO_QUEUE_NUM 64
46
47 typedef struct CryptoDevBackendConf CryptoDevBackendConf;
48 typedef struct CryptoDevBackendPeers CryptoDevBackendPeers;
49 typedef struct CryptoDevBackendClient
50 CryptoDevBackendClient;
51
52 /**
53 * CryptoDevBackendSymSessionInfo:
54 *
55 * @cipher_alg: algorithm type of CIPHER
56 * @key_len: byte length of cipher key
57 * @hash_alg: algorithm type of HASH/MAC
58 * @hash_result_len: byte length of HASH operation result
59 * @auth_key_len: byte length of authenticated key
60 * @add_len: byte length of additional authenticated data
61 * @op_type: operation type (refer to virtio_crypto.h)
62 * @direction: encryption or direction for CIPHER
63 * @hash_mode: HASH mode for HASH operation (refer to virtio_crypto.h)
64 * @alg_chain_order: order of algorithm chaining (CIPHER then HASH,
65 * or HASH then CIPHER)
66 * @cipher_key: point to a key of CIPHER
67 * @auth_key: point to an authenticated key of MAC
68 *
69 */
70 typedef struct CryptoDevBackendSymSessionInfo {
71 /* corresponding with virtio crypto spec */
72 uint32_t cipher_alg;
73 uint32_t key_len;
74 uint32_t hash_alg;
75 uint32_t hash_result_len;
76 uint32_t auth_key_len;
77 uint32_t add_len;
78 uint8_t op_type;
79 uint8_t direction;
80 uint8_t hash_mode;
81 uint8_t alg_chain_order;
82 uint8_t *cipher_key;
83 uint8_t *auth_key;
84 } CryptoDevBackendSymSessionInfo;
85
86 /**
87 * CryptoDevBackendAsymSessionInfo:
88 */
89 typedef struct CryptoDevBackendRsaPara {
90 uint32_t padding_algo;
91 uint32_t hash_algo;
92 } CryptoDevBackendRsaPara;
93
94 typedef struct CryptoDevBackendAsymSessionInfo {
95 /* corresponding with virtio crypto spec */
96 uint32_t algo;
97 uint32_t keytype;
98 uint32_t keylen;
99 uint8_t *key;
100 union {
101 CryptoDevBackendRsaPara rsa;
102 } u;
103 } CryptoDevBackendAsymSessionInfo;
104
105 typedef struct CryptoDevBackendSessionInfo {
106 uint32_t op_code;
107 union {
108 CryptoDevBackendSymSessionInfo sym_sess_info;
109 CryptoDevBackendAsymSessionInfo asym_sess_info;
110 } u;
111 uint64_t session_id;
112 } CryptoDevBackendSessionInfo;
113
114 /**
115 * CryptoDevBackendSymOpInfo:
116 *
117 * @aad_len: byte length of additional authenticated data
118 * @iv_len: byte length of initialization vector or counter
119 * @src_len: byte length of source data
120 * @dst_len: byte length of destination data
121 * @digest_result_len: byte length of hash digest result
122 * @hash_start_src_offset: Starting point for hash processing, specified
123 * as number of bytes from start of packet in source data, only used for
124 * algorithm chain
125 * @cipher_start_src_offset: Starting point for cipher processing, specified
126 * as number of bytes from start of packet in source data, only used for
127 * algorithm chain
128 * @len_to_hash: byte length of source data on which the hash
129 * operation will be computed, only used for algorithm chain
130 * @len_to_cipher: byte length of source data on which the cipher
131 * operation will be computed, only used for algorithm chain
132 * @op_type: operation type (refer to virtio_crypto.h)
133 * @iv: point to the initialization vector or counter
134 * @src: point to the source data
135 * @dst: point to the destination data
136 * @aad_data: point to the additional authenticated data
137 * @digest_result: point to the digest result data
138 * @data[0]: point to the extensional memory by one memory allocation
139 *
140 */
141 typedef struct CryptoDevBackendSymOpInfo {
142 uint32_t aad_len;
143 uint32_t iv_len;
144 uint32_t src_len;
145 uint32_t dst_len;
146 uint32_t digest_result_len;
147 uint32_t hash_start_src_offset;
148 uint32_t cipher_start_src_offset;
149 uint32_t len_to_hash;
150 uint32_t len_to_cipher;
151 uint8_t op_type;
152 uint8_t *iv;
153 uint8_t *src;
154 uint8_t *dst;
155 uint8_t *aad_data;
156 uint8_t *digest_result;
157 uint8_t data[];
158 } CryptoDevBackendSymOpInfo;
159
160
161 /**
162 * CryptoDevBackendAsymOpInfo:
163 *
164 * @src_len: byte length of source data
165 * @dst_len: byte length of destination data
166 * @src: point to the source data
167 * @dst: point to the destination data
168 *
169 */
170 typedef struct CryptoDevBackendAsymOpInfo {
171 uint32_t src_len;
172 uint32_t dst_len;
173 uint8_t *src;
174 uint8_t *dst;
175 } CryptoDevBackendAsymOpInfo;
176
177 typedef void (*CryptoDevCompletionFunc) (void *opaque, int ret);
178
179 typedef struct CryptoDevBackendOpInfo {
180 QCryptodevBackendAlgType algtype;
181 uint32_t op_code;
182 uint32_t queue_index;
183 CryptoDevCompletionFunc cb;
184 void *opaque; /* argument for cb */
185 uint64_t session_id;
186 union {
187 CryptoDevBackendSymOpInfo *sym_op_info;
188 CryptoDevBackendAsymOpInfo *asym_op_info;
189 } u;
190 } CryptoDevBackendOpInfo;
191
192 struct CryptoDevBackendClass {
193 ObjectClass parent_class;
194
195 void (*init)(CryptoDevBackend *backend, Error **errp);
196 void (*cleanup)(CryptoDevBackend *backend, Error **errp);
197
198 int (*create_session)(CryptoDevBackend *backend,
199 CryptoDevBackendSessionInfo *sess_info,
200 uint32_t queue_index,
201 CryptoDevCompletionFunc cb,
202 void *opaque);
203
204 int (*close_session)(CryptoDevBackend *backend,
205 uint64_t session_id,
206 uint32_t queue_index,
207 CryptoDevCompletionFunc cb,
208 void *opaque);
209
210 int (*do_op)(CryptoDevBackend *backend,
211 CryptoDevBackendOpInfo *op_info);
212 };
213
214 struct CryptoDevBackendClient {
215 QCryptodevBackendType type;
216 char *info_str;
217 unsigned int queue_index;
218 int vring_enable;
219 QTAILQ_ENTRY(CryptoDevBackendClient) next;
220 };
221
222 struct CryptoDevBackendPeers {
223 CryptoDevBackendClient *ccs[MAX_CRYPTO_QUEUE_NUM];
224 uint32_t queues;
225 };
226
227 struct CryptoDevBackendConf {
228 CryptoDevBackendPeers peers;
229
230 /* Supported service mask */
231 uint32_t crypto_services;
232
233 /* Detailed algorithms mask */
234 uint32_t cipher_algo_l;
235 uint32_t cipher_algo_h;
236 uint32_t hash_algo;
237 uint32_t mac_algo_l;
238 uint32_t mac_algo_h;
239 uint32_t aead_algo;
240 uint32_t akcipher_algo;
241 /* Maximum length of cipher key */
242 uint32_t max_cipher_key_len;
243 /* Maximum length of authenticated key */
244 uint32_t max_auth_key_len;
245 /* Maximum size of each crypto request's content */
246 uint64_t max_size;
247 };
248
249 struct CryptoDevBackend {
250 Object parent_obj;
251
252 bool ready;
253 /* Tag the cryptodev backend is used by virtio-crypto or not */
254 bool is_used;
255 CryptoDevBackendConf conf;
256 };
257
258 /**
259 * cryptodev_backend_new_client:
260 *
261 * Creates a new cryptodev backend client object.
262 *
263 * The returned object must be released with
264 * cryptodev_backend_free_client() when no
265 * longer required
266 *
267 * Returns: a new cryptodev backend client object
268 */
269 CryptoDevBackendClient *cryptodev_backend_new_client(void);
270
271 /**
272 * cryptodev_backend_free_client:
273 * @cc: the cryptodev backend client object
274 *
275 * Release the memory associated with @cc that
276 * was previously allocated by cryptodev_backend_new_client()
277 */
278 void cryptodev_backend_free_client(
279 CryptoDevBackendClient *cc);
280
281 /**
282 * cryptodev_backend_cleanup:
283 * @backend: the cryptodev backend object
284 * @errp: pointer to a NULL-initialized error object
285 *
286 * Clean the resouce associated with @backend that realizaed
287 * by the specific backend's init() callback
288 */
289 void cryptodev_backend_cleanup(
290 CryptoDevBackend *backend,
291 Error **errp);
292
293 /**
294 * cryptodev_backend_create_session:
295 * @backend: the cryptodev backend object
296 * @sess_info: parameters needed by session creating
297 * @queue_index: queue index of cryptodev backend client
298 * @errp: pointer to a NULL-initialized error object
299 * @cb: callback when session create is compeleted
300 * @opaque: parameter passed to callback
301 *
302 * Create a session for symmetric/asymmetric algorithms
303 *
304 * Returns: 0 for success and cb will be called when creation is completed,
305 * negative value for error, and cb will not be called.
306 */
307 int cryptodev_backend_create_session(
308 CryptoDevBackend *backend,
309 CryptoDevBackendSessionInfo *sess_info,
310 uint32_t queue_index,
311 CryptoDevCompletionFunc cb,
312 void *opaque);
313
314 /**
315 * cryptodev_backend_close_session:
316 * @backend: the cryptodev backend object
317 * @session_id: the session id
318 * @queue_index: queue index of cryptodev backend client
319 * @errp: pointer to a NULL-initialized error object
320 * @cb: callback when session create is compeleted
321 * @opaque: parameter passed to callback
322 *
323 * Close a session for which was previously
324 * created by cryptodev_backend_create_session()
325 *
326 * Returns: 0 for success and cb will be called when creation is completed,
327 * negative value for error, and cb will not be called.
328 */
329 int cryptodev_backend_close_session(
330 CryptoDevBackend *backend,
331 uint64_t session_id,
332 uint32_t queue_index,
333 CryptoDevCompletionFunc cb,
334 void *opaque);
335
336 /**
337 * cryptodev_backend_crypto_operation:
338 * @backend: the cryptodev backend object
339 * @op_info: pointer to a CryptoDevBackendOpInfo object
340 *
341 * Do crypto operation, such as encryption, decryption, signature and
342 * verification
343 *
344 * Returns: 0 for success and cb will be called when creation is completed,
345 * negative value for error, and cb will not be called.
346 */
347 int cryptodev_backend_crypto_operation(
348 CryptoDevBackend *backend,
349 CryptoDevBackendOpInfo *op_info);
350
351 /**
352 * cryptodev_backend_set_used:
353 * @backend: the cryptodev backend object
354 * @used: ture or false
355 *
356 * Set the cryptodev backend is used by virtio-crypto or not
357 */
358 void cryptodev_backend_set_used(CryptoDevBackend *backend, bool used);
359
360 /**
361 * cryptodev_backend_is_used:
362 * @backend: the cryptodev backend object
363 *
364 * Return the status that the cryptodev backend is used
365 * by virtio-crypto or not
366 *
367 * Returns: true on used, or false on not used
368 */
369 bool cryptodev_backend_is_used(CryptoDevBackend *backend);
370
371 /**
372 * cryptodev_backend_set_ready:
373 * @backend: the cryptodev backend object
374 * @ready: ture or false
375 *
376 * Set the cryptodev backend is ready or not, which is called
377 * by the children of the cryptodev banckend interface.
378 */
379 void cryptodev_backend_set_ready(CryptoDevBackend *backend, bool ready);
380
381 /**
382 * cryptodev_backend_is_ready:
383 * @backend: the cryptodev backend object
384 *
385 * Return the status that the cryptodev backend is ready or not
386 *
387 * Returns: true on ready, or false on not ready
388 */
389 bool cryptodev_backend_is_ready(CryptoDevBackend *backend);
390
391 #endif /* CRYPTODEV_H */