2 * QEMU Crypto Device Implementation
4 * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
7 * Gonglei <arei.gonglei@huawei.com>
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.
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.
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/>.
26 #include "qemu/queue.h"
27 #include "qemu/throttle.h"
28 #include "qom/object.h"
29 #include "qapi/qapi-types-cryptodev.h"
34 * The CryptoDevBackend object is an interface
35 * for different cryptodev backends, which provides crypto
40 #define TYPE_CRYPTODEV_BACKEND "cryptodev-backend"
42 OBJECT_DECLARE_TYPE(CryptoDevBackend
, CryptoDevBackendClass
,
46 #define MAX_CRYPTO_QUEUE_NUM 64
48 typedef struct CryptoDevBackendConf CryptoDevBackendConf
;
49 typedef struct CryptoDevBackendPeers CryptoDevBackendPeers
;
50 typedef struct CryptoDevBackendClient
51 CryptoDevBackendClient
;
54 * CryptoDevBackendSymSessionInfo:
56 * @cipher_alg: algorithm type of CIPHER
57 * @key_len: byte length of cipher key
58 * @hash_alg: algorithm type of HASH/MAC
59 * @hash_result_len: byte length of HASH operation result
60 * @auth_key_len: byte length of authenticated key
61 * @add_len: byte length of additional authenticated data
62 * @op_type: operation type (refer to virtio_crypto.h)
63 * @direction: encryption or direction for CIPHER
64 * @hash_mode: HASH mode for HASH operation (refer to virtio_crypto.h)
65 * @alg_chain_order: order of algorithm chaining (CIPHER then HASH,
66 * or HASH then CIPHER)
67 * @cipher_key: point to a key of CIPHER
68 * @auth_key: point to an authenticated key of MAC
71 typedef struct CryptoDevBackendSymSessionInfo
{
72 /* corresponding with virtio crypto spec */
76 uint32_t hash_result_len
;
77 uint32_t auth_key_len
;
82 uint8_t alg_chain_order
;
85 } CryptoDevBackendSymSessionInfo
;
88 * CryptoDevBackendAsymSessionInfo:
90 typedef struct CryptoDevBackendRsaPara
{
91 uint32_t padding_algo
;
93 } CryptoDevBackendRsaPara
;
95 typedef struct CryptoDevBackendAsymSessionInfo
{
96 /* corresponding with virtio crypto spec */
102 CryptoDevBackendRsaPara rsa
;
104 } CryptoDevBackendAsymSessionInfo
;
106 typedef struct CryptoDevBackendSessionInfo
{
109 CryptoDevBackendSymSessionInfo sym_sess_info
;
110 CryptoDevBackendAsymSessionInfo asym_sess_info
;
113 } CryptoDevBackendSessionInfo
;
116 * CryptoDevBackendSymOpInfo:
118 * @aad_len: byte length of additional authenticated data
119 * @iv_len: byte length of initialization vector or counter
120 * @src_len: byte length of source data
121 * @dst_len: byte length of destination data
122 * @digest_result_len: byte length of hash digest result
123 * @hash_start_src_offset: Starting point for hash processing, specified
124 * as number of bytes from start of packet in source data, only used for
126 * @cipher_start_src_offset: Starting point for cipher processing, specified
127 * as number of bytes from start of packet in source data, only used for
129 * @len_to_hash: byte length of source data on which the hash
130 * operation will be computed, only used for algorithm chain
131 * @len_to_cipher: byte length of source data on which the cipher
132 * operation will be computed, only used for algorithm chain
133 * @op_type: operation type (refer to virtio_crypto.h)
134 * @iv: point to the initialization vector or counter
135 * @src: point to the source data
136 * @dst: point to the destination data
137 * @aad_data: point to the additional authenticated data
138 * @digest_result: point to the digest result data
139 * @data[0]: point to the extensional memory by one memory allocation
142 typedef struct CryptoDevBackendSymOpInfo
{
147 uint32_t digest_result_len
;
148 uint32_t hash_start_src_offset
;
149 uint32_t cipher_start_src_offset
;
150 uint32_t len_to_hash
;
151 uint32_t len_to_cipher
;
157 uint8_t *digest_result
;
159 } CryptoDevBackendSymOpInfo
;
163 * CryptoDevBackendAsymOpInfo:
165 * @src_len: byte length of source data
166 * @dst_len: byte length of destination data
167 * @src: point to the source data
168 * @dst: point to the destination data
171 typedef struct CryptoDevBackendAsymOpInfo
{
176 } CryptoDevBackendAsymOpInfo
;
178 typedef void (*CryptoDevCompletionFunc
) (void *opaque
, int ret
);
180 typedef struct CryptoDevBackendOpInfo
{
181 QCryptodevBackendAlgoType algtype
;
183 uint32_t queue_index
;
184 CryptoDevCompletionFunc cb
;
185 void *opaque
; /* argument for cb */
188 CryptoDevBackendSymOpInfo
*sym_op_info
;
189 CryptoDevBackendAsymOpInfo
*asym_op_info
;
191 QTAILQ_ENTRY(CryptoDevBackendOpInfo
) next
;
192 } CryptoDevBackendOpInfo
;
194 struct CryptoDevBackendClass
{
195 ObjectClass parent_class
;
197 void (*init
)(CryptoDevBackend
*backend
, Error
**errp
);
198 void (*cleanup
)(CryptoDevBackend
*backend
, Error
**errp
);
200 int (*create_session
)(CryptoDevBackend
*backend
,
201 CryptoDevBackendSessionInfo
*sess_info
,
202 uint32_t queue_index
,
203 CryptoDevCompletionFunc cb
,
206 int (*close_session
)(CryptoDevBackend
*backend
,
208 uint32_t queue_index
,
209 CryptoDevCompletionFunc cb
,
212 int (*do_op
)(CryptoDevBackend
*backend
,
213 CryptoDevBackendOpInfo
*op_info
);
216 struct CryptoDevBackendClient
{
217 QCryptodevBackendType type
;
219 unsigned int queue_index
;
221 QTAILQ_ENTRY(CryptoDevBackendClient
) next
;
224 struct CryptoDevBackendPeers
{
225 CryptoDevBackendClient
*ccs
[MAX_CRYPTO_QUEUE_NUM
];
229 struct CryptoDevBackendConf
{
230 CryptoDevBackendPeers peers
;
232 /* Supported service mask */
233 uint32_t crypto_services
;
235 /* Detailed algorithms mask */
236 uint32_t cipher_algo_l
;
237 uint32_t cipher_algo_h
;
242 uint32_t akcipher_algo
;
243 /* Maximum length of cipher key */
244 uint32_t max_cipher_key_len
;
245 /* Maximum length of authenticated key */
246 uint32_t max_auth_key_len
;
247 /* Maximum size of each crypto request's content */
251 typedef struct CryptodevBackendSymStat
{
254 int64_t encrypt_bytes
;
255 int64_t decrypt_bytes
;
256 } CryptodevBackendSymStat
;
258 typedef struct CryptodevBackendAsymStat
{
263 int64_t encrypt_bytes
;
264 int64_t decrypt_bytes
;
266 int64_t verify_bytes
;
267 } CryptodevBackendAsymStat
;
269 struct CryptoDevBackend
{
273 /* Tag the cryptodev backend is used by virtio-crypto or not */
275 CryptoDevBackendConf conf
;
276 CryptodevBackendSymStat
*sym_stat
;
277 CryptodevBackendAsymStat
*asym_stat
;
282 QTAILQ_HEAD(, CryptoDevBackendOpInfo
) opinfos
;
285 #define CryptodevSymStatInc(be, op, bytes) do { \
286 be->sym_stat->op##_bytes += (bytes); \
287 be->sym_stat->op##_ops += 1; \
288 } while (/*CONSTCOND*/0)
290 #define CryptodevSymStatIncEncrypt(be, bytes) \
291 CryptodevSymStatInc(be, encrypt, bytes)
293 #define CryptodevSymStatIncDecrypt(be, bytes) \
294 CryptodevSymStatInc(be, decrypt, bytes)
296 #define CryptodevAsymStatInc(be, op, bytes) do { \
297 be->asym_stat->op##_bytes += (bytes); \
298 be->asym_stat->op##_ops += 1; \
299 } while (/*CONSTCOND*/0)
301 #define CryptodevAsymStatIncEncrypt(be, bytes) \
302 CryptodevAsymStatInc(be, encrypt, bytes)
304 #define CryptodevAsymStatIncDecrypt(be, bytes) \
305 CryptodevAsymStatInc(be, decrypt, bytes)
307 #define CryptodevAsymStatIncSign(be, bytes) \
308 CryptodevAsymStatInc(be, sign, bytes)
310 #define CryptodevAsymStatIncVerify(be, bytes) \
311 CryptodevAsymStatInc(be, verify, bytes)
315 * cryptodev_backend_new_client:
317 * Creates a new cryptodev backend client object.
319 * The returned object must be released with
320 * cryptodev_backend_free_client() when no
323 * Returns: a new cryptodev backend client object
325 CryptoDevBackendClient
*cryptodev_backend_new_client(void);
328 * cryptodev_backend_free_client:
329 * @cc: the cryptodev backend client object
331 * Release the memory associated with @cc that
332 * was previously allocated by cryptodev_backend_new_client()
334 void cryptodev_backend_free_client(
335 CryptoDevBackendClient
*cc
);
338 * cryptodev_backend_cleanup:
339 * @backend: the cryptodev backend object
340 * @errp: pointer to a NULL-initialized error object
342 * Clean the resource associated with @backend that realizaed
343 * by the specific backend's init() callback
345 void cryptodev_backend_cleanup(
346 CryptoDevBackend
*backend
,
350 * cryptodev_backend_create_session:
351 * @backend: the cryptodev backend object
352 * @sess_info: parameters needed by session creating
353 * @queue_index: queue index of cryptodev backend client
354 * @errp: pointer to a NULL-initialized error object
355 * @cb: callback when session create is compeleted
356 * @opaque: parameter passed to callback
358 * Create a session for symmetric/asymmetric algorithms
360 * Returns: 0 for success and cb will be called when creation is completed,
361 * negative value for error, and cb will not be called.
363 int cryptodev_backend_create_session(
364 CryptoDevBackend
*backend
,
365 CryptoDevBackendSessionInfo
*sess_info
,
366 uint32_t queue_index
,
367 CryptoDevCompletionFunc cb
,
371 * cryptodev_backend_close_session:
372 * @backend: the cryptodev backend object
373 * @session_id: the session id
374 * @queue_index: queue index of cryptodev backend client
375 * @errp: pointer to a NULL-initialized error object
376 * @cb: callback when session create is compeleted
377 * @opaque: parameter passed to callback
379 * Close a session for which was previously
380 * created by cryptodev_backend_create_session()
382 * Returns: 0 for success and cb will be called when creation is completed,
383 * negative value for error, and cb will not be called.
385 int cryptodev_backend_close_session(
386 CryptoDevBackend
*backend
,
388 uint32_t queue_index
,
389 CryptoDevCompletionFunc cb
,
393 * cryptodev_backend_crypto_operation:
394 * @backend: the cryptodev backend object
395 * @op_info: pointer to a CryptoDevBackendOpInfo object
397 * Do crypto operation, such as encryption, decryption, signature and
400 * Returns: 0 for success and cb will be called when creation is completed,
401 * negative value for error, and cb will not be called.
403 int cryptodev_backend_crypto_operation(
404 CryptoDevBackend
*backend
,
405 CryptoDevBackendOpInfo
*op_info
);
408 * cryptodev_backend_set_used:
409 * @backend: the cryptodev backend object
410 * @used: true or false
412 * Set the cryptodev backend is used by virtio-crypto or not
414 void cryptodev_backend_set_used(CryptoDevBackend
*backend
, bool used
);
417 * cryptodev_backend_is_used:
418 * @backend: the cryptodev backend object
420 * Return the status that the cryptodev backend is used
421 * by virtio-crypto or not
423 * Returns: true on used, or false on not used
425 bool cryptodev_backend_is_used(CryptoDevBackend
*backend
);
428 * cryptodev_backend_set_ready:
429 * @backend: the cryptodev backend object
430 * @ready: true or false
432 * Set the cryptodev backend is ready or not, which is called
433 * by the children of the cryptodev banckend interface.
435 void cryptodev_backend_set_ready(CryptoDevBackend
*backend
, bool ready
);
438 * cryptodev_backend_is_ready:
439 * @backend: the cryptodev backend object
441 * Return the status that the cryptodev backend is ready or not
443 * Returns: true on ready, or false on not ready
445 bool cryptodev_backend_is_ready(CryptoDevBackend
*backend
);
447 #endif /* CRYPTODEV_H */