2016-10-28 11:33:20 +03:00
|
|
|
/*
|
|
|
|
* QEMU Crypto Device Implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Gonglei <arei.gonglei@huawei.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "sysemu/cryptodev.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "qapi/visitor.h"
|
|
|
|
#include "qemu/config-file.h"
|
|
|
|
#include "qom/object_interfaces.h"
|
2016-10-28 11:33:29 +03:00
|
|
|
#include "hw/virtio/virtio-crypto.h"
|
|
|
|
|
2016-10-28 11:33:20 +03:00
|
|
|
|
|
|
|
static QTAILQ_HEAD(, CryptoDevBackendClient) crypto_clients;
|
|
|
|
|
|
|
|
|
|
|
|
CryptoDevBackendClient *
|
|
|
|
cryptodev_backend_new_client(const char *model,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
CryptoDevBackendClient *cc;
|
|
|
|
|
|
|
|
cc = g_malloc0(sizeof(CryptoDevBackendClient));
|
|
|
|
cc->model = g_strdup(model);
|
|
|
|
if (name) {
|
|
|
|
cc->name = g_strdup(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTAILQ_INSERT_TAIL(&crypto_clients, cc, next);
|
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cryptodev_backend_free_client(
|
|
|
|
CryptoDevBackendClient *cc)
|
|
|
|
{
|
|
|
|
QTAILQ_REMOVE(&crypto_clients, cc, next);
|
|
|
|
g_free(cc->name);
|
|
|
|
g_free(cc->model);
|
|
|
|
g_free(cc->info_str);
|
|
|
|
g_free(cc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cryptodev_backend_cleanup(
|
|
|
|
CryptoDevBackend *backend,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
CryptoDevBackendClass *bc =
|
|
|
|
CRYPTODEV_BACKEND_GET_CLASS(backend);
|
|
|
|
|
|
|
|
if (bc->cleanup) {
|
|
|
|
bc->cleanup(backend, errp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-28 11:33:21 +03:00
|
|
|
int64_t cryptodev_backend_sym_create_session(
|
|
|
|
CryptoDevBackend *backend,
|
|
|
|
CryptoDevBackendSymSessionInfo *sess_info,
|
|
|
|
uint32_t queue_index, Error **errp)
|
|
|
|
{
|
|
|
|
CryptoDevBackendClass *bc =
|
|
|
|
CRYPTODEV_BACKEND_GET_CLASS(backend);
|
|
|
|
|
|
|
|
if (bc->create_session) {
|
|
|
|
return bc->create_session(backend, sess_info, queue_index, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cryptodev_backend_sym_close_session(
|
|
|
|
CryptoDevBackend *backend,
|
|
|
|
uint64_t session_id,
|
|
|
|
uint32_t queue_index, Error **errp)
|
|
|
|
{
|
|
|
|
CryptoDevBackendClass *bc =
|
|
|
|
CRYPTODEV_BACKEND_GET_CLASS(backend);
|
|
|
|
|
|
|
|
if (bc->close_session) {
|
|
|
|
return bc->close_session(backend, session_id, queue_index, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-28 11:33:29 +03:00
|
|
|
static int cryptodev_backend_sym_operation(
|
2016-10-28 11:33:21 +03:00
|
|
|
CryptoDevBackend *backend,
|
|
|
|
CryptoDevBackendSymOpInfo *op_info,
|
|
|
|
uint32_t queue_index, Error **errp)
|
|
|
|
{
|
|
|
|
CryptoDevBackendClass *bc =
|
|
|
|
CRYPTODEV_BACKEND_GET_CLASS(backend);
|
|
|
|
|
|
|
|
if (bc->do_sym_op) {
|
|
|
|
return bc->do_sym_op(backend, op_info, queue_index, errp);
|
|
|
|
}
|
|
|
|
|
2016-10-28 11:33:29 +03:00
|
|
|
return -VIRTIO_CRYPTO_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cryptodev_backend_crypto_operation(
|
|
|
|
CryptoDevBackend *backend,
|
|
|
|
void *opaque,
|
|
|
|
uint32_t queue_index, Error **errp)
|
|
|
|
{
|
|
|
|
VirtIOCryptoReq *req = opaque;
|
|
|
|
|
|
|
|
if (req->flags == CRYPTODEV_BACKEND_ALG_SYM) {
|
|
|
|
CryptoDevBackendSymOpInfo *op_info;
|
|
|
|
op_info = req->u.sym_op_info;
|
|
|
|
|
|
|
|
return cryptodev_backend_sym_operation(backend,
|
|
|
|
op_info, queue_index, errp);
|
|
|
|
} else {
|
|
|
|
error_setg(errp, "Unsupported cryptodev alg type: %" PRIu32 "",
|
|
|
|
req->flags);
|
|
|
|
return -VIRTIO_CRYPTO_NOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -VIRTIO_CRYPTO_ERR;
|
2016-10-28 11:33:21 +03:00
|
|
|
}
|
|
|
|
|
2016-10-28 11:33:20 +03:00
|
|
|
static void
|
|
|
|
cryptodev_backend_get_queues(Object *obj, Visitor *v, const char *name,
|
|
|
|
void *opaque, Error **errp)
|
|
|
|
{
|
|
|
|
CryptoDevBackend *backend = CRYPTODEV_BACKEND(obj);
|
|
|
|
uint32_t value = backend->conf.peers.queues;
|
|
|
|
|
|
|
|
visit_type_uint32(v, name, &value, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cryptodev_backend_set_queues(Object *obj, Visitor *v, const char *name,
|
|
|
|
void *opaque, Error **errp)
|
|
|
|
{
|
|
|
|
CryptoDevBackend *backend = CRYPTODEV_BACKEND(obj);
|
|
|
|
Error *local_err = NULL;
|
|
|
|
uint32_t value;
|
|
|
|
|
2020-07-07 19:05:46 +03:00
|
|
|
if (!visit_type_uint32(v, name, &value, &local_err)) {
|
error: Avoid unnecessary error_propagate() after error_setg()
Replace
error_setg(&err, ...);
error_propagate(errp, err);
by
error_setg(errp, ...);
Related pattern:
if (...) {
error_setg(&err, ...);
goto out;
}
...
out:
error_propagate(errp, err);
return;
When all paths to label out are that way, replace by
if (...) {
error_setg(errp, ...);
return;
}
and delete the label along with the error_propagate().
When we have at most one other path that actually needs to propagate,
and maybe one at the end that where propagation is unnecessary, e.g.
foo(..., &err);
if (err) {
goto out;
}
...
bar(..., &err);
out:
error_propagate(errp, err);
return;
move the error_propagate() to where it's needed, like
if (...) {
foo(..., &err);
error_propagate(errp, err);
return;
}
...
bar(..., errp);
return;
and transform the error_setg() as above.
In some places, the transformation results in obviously unnecessary
error_propagate(). The next few commits will eliminate them.
Bonus: the elimination of gotos will make later patches in this series
easier to review.
Candidates for conversion tracked down with this Coccinelle script:
@@
identifier err, errp;
expression list args;
@@
- error_setg(&err, args);
+ error_setg(errp, args);
... when != err
error_propagate(errp, err);
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200707160613.848843-34-armbru@redhat.com>
2020-07-07 19:06:01 +03:00
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
2016-10-28 11:33:20 +03:00
|
|
|
}
|
|
|
|
if (!value) {
|
error: Avoid unnecessary error_propagate() after error_setg()
Replace
error_setg(&err, ...);
error_propagate(errp, err);
by
error_setg(errp, ...);
Related pattern:
if (...) {
error_setg(&err, ...);
goto out;
}
...
out:
error_propagate(errp, err);
return;
When all paths to label out are that way, replace by
if (...) {
error_setg(errp, ...);
return;
}
and delete the label along with the error_propagate().
When we have at most one other path that actually needs to propagate,
and maybe one at the end that where propagation is unnecessary, e.g.
foo(..., &err);
if (err) {
goto out;
}
...
bar(..., &err);
out:
error_propagate(errp, err);
return;
move the error_propagate() to where it's needed, like
if (...) {
foo(..., &err);
error_propagate(errp, err);
return;
}
...
bar(..., errp);
return;
and transform the error_setg() as above.
In some places, the transformation results in obviously unnecessary
error_propagate(). The next few commits will eliminate them.
Bonus: the elimination of gotos will make later patches in this series
easier to review.
Candidates for conversion tracked down with this Coccinelle script:
@@
identifier err, errp;
expression list args;
@@
- error_setg(&err, args);
+ error_setg(errp, args);
... when != err
error_propagate(errp, err);
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200707160613.848843-34-armbru@redhat.com>
2020-07-07 19:06:01 +03:00
|
|
|
error_setg(errp, "Property '%s.%s' doesn't take value '%" PRIu32 "'",
|
|
|
|
object_get_typename(obj), name, value);
|
|
|
|
return;
|
2016-10-28 11:33:20 +03:00
|
|
|
}
|
|
|
|
backend->conf.peers.queues = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cryptodev_backend_complete(UserCreatable *uc, Error **errp)
|
|
|
|
{
|
|
|
|
CryptoDevBackend *backend = CRYPTODEV_BACKEND(uc);
|
|
|
|
CryptoDevBackendClass *bc = CRYPTODEV_BACKEND_GET_CLASS(uc);
|
|
|
|
|
|
|
|
if (bc->init) {
|
2019-12-05 20:46:33 +03:00
|
|
|
bc->init(backend, errp);
|
2016-10-28 11:33:20 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 06:12:38 +03:00
|
|
|
void cryptodev_backend_set_used(CryptoDevBackend *backend, bool used)
|
|
|
|
{
|
|
|
|
backend->is_used = used;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cryptodev_backend_is_used(CryptoDevBackend *backend)
|
|
|
|
{
|
|
|
|
return backend->is_used;
|
|
|
|
}
|
|
|
|
|
2016-12-22 06:12:39 +03:00
|
|
|
void cryptodev_backend_set_ready(CryptoDevBackend *backend, bool ready)
|
|
|
|
{
|
|
|
|
backend->ready = ready;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cryptodev_backend_is_ready(CryptoDevBackend *backend)
|
|
|
|
{
|
|
|
|
return backend->ready;
|
|
|
|
}
|
|
|
|
|
2016-12-22 06:12:38 +03:00
|
|
|
static bool
|
2017-08-30 01:03:37 +03:00
|
|
|
cryptodev_backend_can_be_deleted(UserCreatable *uc)
|
2016-12-22 06:12:38 +03:00
|
|
|
{
|
|
|
|
return !cryptodev_backend_is_used(CRYPTODEV_BACKEND(uc));
|
|
|
|
}
|
|
|
|
|
2016-10-28 11:33:20 +03:00
|
|
|
static void cryptodev_backend_instance_init(Object *obj)
|
|
|
|
{
|
2017-06-07 19:36:06 +03:00
|
|
|
object_property_add(obj, "queues", "uint32",
|
2016-10-28 11:33:20 +03:00
|
|
|
cryptodev_backend_get_queues,
|
|
|
|
cryptodev_backend_set_queues,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
NULL, NULL);
|
2016-10-28 11:33:20 +03:00
|
|
|
/* Initialize devices' queues property to 1 */
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 19:05:54 +03:00
|
|
|
object_property_set_int(obj, "queues", 1, NULL);
|
2016-10-28 11:33:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void cryptodev_backend_finalize(Object *obj)
|
|
|
|
{
|
2016-12-22 06:12:38 +03:00
|
|
|
CryptoDevBackend *backend = CRYPTODEV_BACKEND(obj);
|
2016-10-28 11:33:20 +03:00
|
|
|
|
2016-12-22 06:12:38 +03:00
|
|
|
cryptodev_backend_cleanup(backend, NULL);
|
2016-10-28 11:33:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cryptodev_backend_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
UserCreatableClass *ucc = USER_CREATABLE_CLASS(oc);
|
|
|
|
|
|
|
|
ucc->complete = cryptodev_backend_complete;
|
2016-12-22 06:12:38 +03:00
|
|
|
ucc->can_be_deleted = cryptodev_backend_can_be_deleted;
|
2016-10-28 11:33:20 +03:00
|
|
|
|
|
|
|
QTAILQ_INIT(&crypto_clients);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo cryptodev_backend_info = {
|
|
|
|
.name = TYPE_CRYPTODEV_BACKEND,
|
|
|
|
.parent = TYPE_OBJECT,
|
|
|
|
.instance_size = sizeof(CryptoDevBackend),
|
|
|
|
.instance_init = cryptodev_backend_instance_init,
|
|
|
|
.instance_finalize = cryptodev_backend_finalize,
|
|
|
|
.class_size = sizeof(CryptoDevBackendClass),
|
|
|
|
.class_init = cryptodev_backend_class_init,
|
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ TYPE_USER_CREATABLE },
|
|
|
|
{ }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
cryptodev_backend_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&cryptodev_backend_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(cryptodev_backend_register_types);
|