2 * Virtio crypto Support
4 * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
7 * Gonglei <arei.gonglei@huawei.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * (at your option) any later version. See the COPYING file in the
11 * top-level directory.
14 #ifndef QEMU_VIRTIO_CRYPTO_H
15 #define QEMU_VIRTIO_CRYPTO_H
17 #include "standard-headers/linux/virtio_crypto.h"
18 #include "hw/virtio/virtio.h"
19 #include "sysemu/iothread.h"
20 #include "sysemu/cryptodev.h"
21 #include "qom/object.h"
24 #define DEBUG_VIRTIO_CRYPTO 0
26 #define DPRINTF(fmt, ...) \
28 if (DEBUG_VIRTIO_CRYPTO) { \
29 fprintf(stderr, "virtio_crypto: " fmt, ##__VA_ARGS__); \
34 #define TYPE_VIRTIO_CRYPTO "virtio-crypto-device"
35 OBJECT_DECLARE_SIMPLE_TYPE(VirtIOCrypto
, VIRTIO_CRYPTO
)
36 #define VIRTIO_CRYPTO_GET_PARENT_CLASS(obj) \
37 OBJECT_GET_PARENT_CLASS(obj, TYPE_VIRTIO_CRYPTO)
40 typedef struct VirtIOCryptoConf
{
41 CryptoDevBackend
*cryptodev
;
43 /* Supported service mask */
44 uint32_t crypto_services
;
46 /* Detailed algorithms mask */
47 uint32_t cipher_algo_l
;
48 uint32_t cipher_algo_h
;
53 uint32_t akcipher_algo
;
55 /* Maximum length of cipher key */
56 uint32_t max_cipher_key_len
;
57 /* Maximum length of authenticated key */
58 uint32_t max_auth_key_len
;
59 /* Maximum size of each crypto request's content */
65 typedef struct VirtIOCryptoReq
{
66 VirtQueueElement elem
;
67 /* flags of operation, such as type of algorithm */
69 struct virtio_crypto_inhdr
*in
;
70 struct iovec
*in_iov
; /* Head address of dest iovec */
71 unsigned int in_num
; /* Number of dest iovec */
74 struct VirtIOCrypto
*vcrypto
;
75 CryptoDevBackendOpInfo op_info
;
78 typedef struct VirtIOCryptoQueue
{
81 struct VirtIOCrypto
*vcrypto
;
85 VirtIODevice parent_obj
;
88 VirtIOCryptoQueue
*vqs
;
89 VirtIOCryptoConf conf
;
90 CryptoDevBackend
*cryptodev
;
98 uint8_t vhost_started
;
101 #endif /* QEMU_VIRTIO_CRYPTO_H */