2 * QEMU Cryptodev backend for QEMU cipher APIs
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 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/>.
24 #include "qemu/osdep.h"
25 #include "hw/boards.h"
26 #include "qapi/error.h"
27 #include "qapi/qmp/qerror.h"
28 #include "qemu/error-report.h"
29 #include "hw/virtio/vhost-user.h"
30 #include "standard-headers/linux/virtio_crypto.h"
31 #include "sysemu/cryptodev-vhost.h"
32 #include "chardev/char-fe.h"
33 #include "sysemu/cryptodev-vhost-user.h"
37 * @TYPE_CRYPTODEV_BACKEND_VHOST_USER:
38 * name of backend that uses vhost user server
40 #define TYPE_CRYPTODEV_BACKEND_VHOST_USER "cryptodev-vhost-user"
42 #define CRYPTODEV_BACKEND_VHOST_USER(obj) \
43 OBJECT_CHECK(CryptoDevBackendVhostUser, \
44 (obj), TYPE_CRYPTODEV_BACKEND_VHOST_USER)
47 typedef struct CryptoDevBackendVhostUser
{
48 CryptoDevBackend parent_obj
;
50 VhostUserState
*vhost_user
;
54 CryptoDevBackendVhost
*vhost_crypto
[MAX_CRYPTO_QUEUE_NUM
];
55 } CryptoDevBackendVhostUser
;
58 cryptodev_vhost_user_running(
59 CryptoDevBackendVhost
*crypto
)
61 return crypto
? 1 : 0;
64 CryptoDevBackendVhost
*
65 cryptodev_vhost_user_get_vhost(
66 CryptoDevBackendClient
*cc
,
70 CryptoDevBackendVhostUser
*s
=
71 CRYPTODEV_BACKEND_VHOST_USER(b
);
72 assert(cc
->type
== CRYPTODEV_BACKEND_TYPE_VHOST_USER
);
73 assert(queue
< MAX_CRYPTO_QUEUE_NUM
);
75 return s
->vhost_crypto
[queue
];
78 static void cryptodev_vhost_user_stop(int queues
,
79 CryptoDevBackendVhostUser
*s
)
83 for (i
= 0; i
< queues
; i
++) {
84 if (!cryptodev_vhost_user_running(s
->vhost_crypto
[i
])) {
88 cryptodev_vhost_cleanup(s
->vhost_crypto
[i
]);
89 s
->vhost_crypto
[i
] = NULL
;
94 cryptodev_vhost_user_start(int queues
,
95 CryptoDevBackendVhostUser
*s
)
97 CryptoDevBackendVhostOptions options
;
98 CryptoDevBackend
*b
= CRYPTODEV_BACKEND(s
);
102 for (i
= 0; i
< queues
; i
++) {
103 if (cryptodev_vhost_user_running(s
->vhost_crypto
[i
])) {
107 options
.opaque
= s
->vhost_user
;
108 options
.backend_type
= VHOST_BACKEND_TYPE_USER
;
109 options
.cc
= b
->conf
.peers
.ccs
[i
];
110 s
->vhost_crypto
[i
] = cryptodev_vhost_init(&options
);
111 if (!s
->vhost_crypto
[i
]) {
112 error_report("failed to init vhost_crypto for queue %zu", i
);
118 cryptodev_vhost_get_max_queues(s
->vhost_crypto
[i
]);
119 if (queues
> max_queues
) {
120 error_report("you are asking more queues than supported: %d",
130 cryptodev_vhost_user_stop(i
+ 1, s
);
135 cryptodev_vhost_claim_chardev(CryptoDevBackendVhostUser
*s
,
140 if (s
->chr_name
== NULL
) {
141 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
142 "chardev", "a valid character device");
146 chr
= qemu_chr_find(s
->chr_name
);
148 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
149 "Device '%s' not found", s
->chr_name
);
156 static void cryptodev_vhost_user_event(void *opaque
, int event
)
158 CryptoDevBackendVhostUser
*s
= opaque
;
159 CryptoDevBackend
*b
= CRYPTODEV_BACKEND(s
);
160 int queues
= b
->conf
.peers
.queues
;
162 assert(queues
< MAX_CRYPTO_QUEUE_NUM
);
165 case CHR_EVENT_OPENED
:
166 if (cryptodev_vhost_user_start(queues
, s
) < 0) {
171 case CHR_EVENT_CLOSED
:
173 cryptodev_vhost_user_stop(queues
, s
);
178 static void cryptodev_vhost_user_init(
179 CryptoDevBackend
*backend
, Error
**errp
)
181 int queues
= backend
->conf
.peers
.queues
;
183 Error
*local_err
= NULL
;
185 VhostUserState
*user
;
186 CryptoDevBackendClient
*cc
;
187 CryptoDevBackendVhostUser
*s
=
188 CRYPTODEV_BACKEND_VHOST_USER(backend
);
190 chr
= cryptodev_vhost_claim_chardev(s
, &local_err
);
192 error_propagate(errp
, local_err
);
198 for (i
= 0; i
< queues
; i
++) {
199 cc
= cryptodev_backend_new_client(
200 "cryptodev-vhost-user", NULL
);
201 cc
->info_str
= g_strdup_printf("cryptodev-vhost-user%zu to %s ",
204 cc
->type
= CRYPTODEV_BACKEND_TYPE_VHOST_USER
;
206 backend
->conf
.peers
.ccs
[i
] = cc
;
209 if (!qemu_chr_fe_init(&s
->chr
, chr
, &local_err
)) {
210 error_propagate(errp
, local_err
);
216 user
= vhost_user_init();
218 error_setg(errp
, "Failed to init vhost_user");
223 s
->vhost_user
= user
;
225 qemu_chr_fe_set_handlers(&s
->chr
, NULL
, NULL
,
226 cryptodev_vhost_user_event
, NULL
, s
, NULL
, true);
228 backend
->conf
.crypto_services
=
229 1u << VIRTIO_CRYPTO_SERVICE_CIPHER
|
230 1u << VIRTIO_CRYPTO_SERVICE_HASH
|
231 1u << VIRTIO_CRYPTO_SERVICE_MAC
;
232 backend
->conf
.cipher_algo_l
= 1u << VIRTIO_CRYPTO_CIPHER_AES_CBC
;
233 backend
->conf
.hash_algo
= 1u << VIRTIO_CRYPTO_HASH_SHA1
;
235 backend
->conf
.max_size
= UINT64_MAX
;
236 backend
->conf
.max_cipher_key_len
= VHOST_USER_MAX_CIPHER_KEY_LEN
;
237 backend
->conf
.max_auth_key_len
= VHOST_USER_MAX_AUTH_KEY_LEN
;
240 static int64_t cryptodev_vhost_user_sym_create_session(
241 CryptoDevBackend
*backend
,
242 CryptoDevBackendSymSessionInfo
*sess_info
,
243 uint32_t queue_index
, Error
**errp
)
245 CryptoDevBackendClient
*cc
=
246 backend
->conf
.peers
.ccs
[queue_index
];
247 CryptoDevBackendVhost
*vhost_crypto
;
248 uint64_t session_id
= 0;
251 vhost_crypto
= cryptodev_vhost_user_get_vhost(cc
, backend
, queue_index
);
253 struct vhost_dev
*dev
= &(vhost_crypto
->dev
);
254 ret
= dev
->vhost_ops
->vhost_crypto_create_session(dev
,
266 static int cryptodev_vhost_user_sym_close_session(
267 CryptoDevBackend
*backend
,
269 uint32_t queue_index
, Error
**errp
)
271 CryptoDevBackendClient
*cc
=
272 backend
->conf
.peers
.ccs
[queue_index
];
273 CryptoDevBackendVhost
*vhost_crypto
;
276 vhost_crypto
= cryptodev_vhost_user_get_vhost(cc
, backend
, queue_index
);
278 struct vhost_dev
*dev
= &(vhost_crypto
->dev
);
279 ret
= dev
->vhost_ops
->vhost_crypto_close_session(dev
,
290 static void cryptodev_vhost_user_cleanup(
291 CryptoDevBackend
*backend
,
294 CryptoDevBackendVhostUser
*s
=
295 CRYPTODEV_BACKEND_VHOST_USER(backend
);
297 int queues
= backend
->conf
.peers
.queues
;
298 CryptoDevBackendClient
*cc
;
300 cryptodev_vhost_user_stop(queues
, s
);
302 for (i
= 0; i
< queues
; i
++) {
303 cc
= backend
->conf
.peers
.ccs
[i
];
305 cryptodev_backend_free_client(cc
);
306 backend
->conf
.peers
.ccs
[i
] = NULL
;
311 vhost_user_cleanup(s
->vhost_user
);
312 g_free(s
->vhost_user
);
313 s
->vhost_user
= NULL
;
317 static void cryptodev_vhost_user_set_chardev(Object
*obj
,
318 const char *value
, Error
**errp
)
320 CryptoDevBackendVhostUser
*s
=
321 CRYPTODEV_BACKEND_VHOST_USER(obj
);
324 error_setg(errp
, QERR_PERMISSION_DENIED
);
327 s
->chr_name
= g_strdup(value
);
332 cryptodev_vhost_user_get_chardev(Object
*obj
, Error
**errp
)
334 CryptoDevBackendVhostUser
*s
=
335 CRYPTODEV_BACKEND_VHOST_USER(obj
);
336 Chardev
*chr
= qemu_chr_fe_get_driver(&s
->chr
);
338 if (chr
&& chr
->label
) {
339 return g_strdup(chr
->label
);
345 static void cryptodev_vhost_user_instance_int(Object
*obj
)
347 object_property_add_str(obj
, "chardev",
348 cryptodev_vhost_user_get_chardev
,
349 cryptodev_vhost_user_set_chardev
,
353 static void cryptodev_vhost_user_finalize(Object
*obj
)
355 CryptoDevBackendVhostUser
*s
=
356 CRYPTODEV_BACKEND_VHOST_USER(obj
);
358 qemu_chr_fe_deinit(&s
->chr
, false);
364 cryptodev_vhost_user_class_init(ObjectClass
*oc
, void *data
)
366 CryptoDevBackendClass
*bc
= CRYPTODEV_BACKEND_CLASS(oc
);
368 bc
->init
= cryptodev_vhost_user_init
;
369 bc
->cleanup
= cryptodev_vhost_user_cleanup
;
370 bc
->create_session
= cryptodev_vhost_user_sym_create_session
;
371 bc
->close_session
= cryptodev_vhost_user_sym_close_session
;
372 bc
->do_sym_op
= NULL
;
375 static const TypeInfo cryptodev_vhost_user_info
= {
376 .name
= TYPE_CRYPTODEV_BACKEND_VHOST_USER
,
377 .parent
= TYPE_CRYPTODEV_BACKEND
,
378 .class_init
= cryptodev_vhost_user_class_init
,
379 .instance_init
= cryptodev_vhost_user_instance_int
,
380 .instance_finalize
= cryptodev_vhost_user_finalize
,
381 .instance_size
= sizeof(CryptoDevBackendVhostUser
),
385 cryptodev_vhost_user_register_types(void)
387 type_register_static(&cryptodev_vhost_user_info
);
390 type_init(cryptodev_vhost_user_register_types
);