From: Paolo Bonzini <pbonzini@redhat.com>
To: "Bulekov, Alexander" <alxndr@bu.edu>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "Laurent Vivier" <lvivier@redhat.com>,
"bsd@redhat.com" <bsd@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
"stefanha@redhat.com" <stefanha@redhat.com>
Subject: Re: [PATCH v8 10/21] libqos: move useful qos-test funcs to qos_external
Date: Wed, 29 Jan 2020 11:03:16 +0100 [thread overview]
Message-ID: <41e7f9ff-fedb-6557-42d0-d9766549c104@redhat.com> (raw)
In-Reply-To: <20200129053357.27454-11-alxndr@bu.edu>
On 29/01/20 06:34, Bulekov, Alexander wrote:
> The moved functions are not specific to qos-test and might be useful
> elsewhere. For example the virtual-device fuzzer makes use of them for
> qos-assisted fuzz-targets.
>
> Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> tests/qtest/Makefile.include | 1 +
> tests/qtest/libqos/qos_external.c | 168 ++++++++++++++++++++++++++++++
> tests/qtest/libqos/qos_external.h | 28 +++++
> tests/qtest/qos-test.c | 132 +----------------------
> 4 files changed, 198 insertions(+), 131 deletions(-)
> create mode 100644 tests/qtest/libqos/qos_external.c
> create mode 100644 tests/qtest/libqos/qos_external.h
>
> diff --git a/tests/qtest/Makefile.include b/tests/qtest/Makefile.include
> index 08a48c1252..bdc93d3866 100644
> --- a/tests/qtest/Makefile.include
> +++ b/tests/qtest/Makefile.include
> @@ -172,6 +172,7 @@ libqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/qtest/libqos/u
> # qos devices:
> libqos-obj-y = $(libqgraph-obj-y)
> libqos-obj-y += $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
> +libqos-obj-y += tests/qtest/libqos/qos_external.o
> libqos-obj-y += tests/qtest/libqos/e1000e.o
> libqos-obj-y += tests/qtest/libqos/i2c.o
> libqos-obj-y += tests/qtest/libqos/i2c-imx.o
> diff --git a/tests/qtest/libqos/qos_external.c b/tests/qtest/libqos/qos_external.c
> new file mode 100644
> index 0000000000..398556dde0
> --- /dev/null
> +++ b/tests/qtest/libqos/qos_external.c
> @@ -0,0 +1,168 @@
> +/*
> + * libqos driver framework
> + *
> + * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
> + *
> + * This library is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU Lesser General Public
> + * License version 2 as published by the Free Software Foundation.
> + *
> + * 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 <getopt.h>
> +#include "libqtest.h"
> +#include "qapi/qmp/qdict.h"
> +#include "qapi/qmp/qbool.h"
> +#include "qapi/qmp/qstring.h"
> +#include "qemu/module.h"
> +#include "qapi/qmp/qlist.h"
> +#include "libqos/malloc.h"
> +#include "libqos/qgraph.h"
> +#include "libqos/qgraph_internal.h"
> +#include "libqos/qos_external.h"
> +
> +
> +
> +void apply_to_node(const char *name, bool is_machine, bool is_abstract)
> +{
> + char *machine_name = NULL;
> + if (is_machine) {
> + const char *arch = qtest_get_arch();
> + machine_name = g_strconcat(arch, "/", name, NULL);
> + name = machine_name;
> + }
> + qos_graph_node_set_availability(name, true);
> + if (is_abstract) {
> + qos_delete_cmd_line(name);
> + }
> + g_free(machine_name);
> +}
This can be static.
> +
> +/**
> + * apply_to_qlist(): using QMP queries QEMU for a list of
> + * machines and devices available, and sets the respective node
> + * as true. If a node is found, also all its produced and contained
> + * child are marked available.
> + *
> + * See qos_graph_node_set_availability() for more info
> + */
> +void apply_to_qlist(QList *list, bool is_machine)
I think this could be split in two functions with a nicer API, for example
void mark_machines_available(QList *list);
void mark_devices_available(QList *list);
It's okay if internally they just call apply_to_qlist(list, true/false),
only the API would be nicer.
Also feel free to move it to tests/libqos/qgraph.c and
tests/libqos/qgraph_internal.h. It's probably a good idea to rename
qgraph.h to qgraph-object.h, and qgraph_internal.h to qgraph.h while at it.
Paolo
> +{
> + const QListEntry *p;
> + const char *name;
> + bool abstract;
> + QDict *minfo;
> + QObject *qobj;
> + QString *qstr;
> + QBool *qbool;
> +
> + for (p = qlist_first(list); p; p = qlist_next(p)) {
> + minfo = qobject_to(QDict, qlist_entry_obj(p));
> + qobj = qdict_get(minfo, "name");
> + qstr = qobject_to(QString, qobj);
> + name = qstring_get_str(qstr);
> +
> + qobj = qdict_get(minfo, "abstract");
> + if (qobj) {
> + qbool = qobject_to(QBool, qobj);
> + abstract = qbool_get_bool(qbool);
> + } else {
> + abstract = false;
> + }
> +
> + apply_to_node(name, is_machine, abstract);
> + qobj = qdict_get(minfo, "alias");
> + if (qobj) {
> + qstr = qobject_to(QString, qobj);
> + name = qstring_get_str(qstr);
> + apply_to_node(name, is_machine, abstract);
> + }
> + }
> +}
> +
> +QGuestAllocator *get_machine_allocator(QOSGraphObject *obj)
> +{
> + return obj->get_driver(obj, "memory");
> +}
> +
> +/**
> + * allocate_objects(): given an array of nodes @arg,
> + * walks the path invoking all constructors and
> + * passing the corresponding parameter in order to
> + * continue the objects allocation.
> + * Once the test is reached, return the object it consumes.
> + *
> + * Since the machine and QEDGE_CONSUMED_BY nodes allocate
> + * memory in the constructor, g_test_queue_destroy is used so
> + * that after execution they can be safely free'd. (The test's
> + * ->before callback is also welcome to use g_test_queue_destroy).
> + *
> + * Note: as specified in walk_path() too, @arg is an array of
> + * char *, where arg[0] is a pointer to the command line
> + * string that will be used to properly start QEMU when executing
> + * the test, and the remaining elements represent the actual objects
> + * that will be allocated.
> + */
> +void *allocate_objects(QTestState *qts, char **path, QGuestAllocator **p_alloc)
> +{
> + int current = 0;
> + QGuestAllocator *alloc;
> + QOSGraphObject *parent = NULL;
> + QOSGraphEdge *edge;
> + QOSGraphNode *node;
> + void *edge_arg;
> + void *obj;
> +
> + node = qos_graph_get_node(path[current]);
> + g_assert(node->type == QNODE_MACHINE);
> +
> + obj = qos_machine_new(node, qts);
> + qos_object_queue_destroy(obj);
> +
> + alloc = get_machine_allocator(obj);
> + if (p_alloc) {
> + *p_alloc = alloc;
> + }
> +
> + for (;;) {
> + if (node->type != QNODE_INTERFACE) {
> + qos_object_start_hw(obj);
> + parent = obj;
> + }
> +
> + /* follow edge and get object for next node constructor */
> + current++;
> + edge = qos_graph_get_edge(path[current - 1], path[current]);
> + node = qos_graph_get_node(path[current]);
> +
> + if (node->type == QNODE_TEST) {
> + g_assert(qos_graph_edge_get_type(edge) == QEDGE_CONSUMED_BY);
> + return obj;
> + }
> +
> + switch (qos_graph_edge_get_type(edge)) {
> + case QEDGE_PRODUCES:
> + obj = parent->get_driver(parent, path[current]);
> + break;
> +
> + case QEDGE_CONSUMED_BY:
> + edge_arg = qos_graph_edge_get_arg(edge);
> + obj = qos_driver_new(node, obj, alloc, edge_arg);
> + qos_object_queue_destroy(obj);
> + break;
> +
> + case QEDGE_CONTAINS:
> + obj = parent->get_device(parent, path[current]);
> + break;
> + }
> + }
> +}
> +
> diff --git a/tests/qtest/libqos/qos_external.h b/tests/qtest/libqos/qos_external.h
> new file mode 100644
> index 0000000000..7b44930c55
> --- /dev/null
> +++ b/tests/qtest/libqos/qos_external.h
> @@ -0,0 +1,28 @@
> +/*
> + * libqos driver framework
> + *
> + * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
> + *
> + * This library is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU Lesser General Public
> + * License version 2 as published by the Free Software Foundation.
> + *
> + * 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/>
> + */
> +
> +#ifndef QOS_EXTERNAL_H
> +#define QOS_EXTERNAL_H
> +#include "libqos/qgraph.h"
> +
> +void apply_to_node(const char *name, bool is_machine, bool is_abstract);
> +void apply_to_qlist(QList *list, bool is_machine);
> +QGuestAllocator *get_machine_allocator(QOSGraphObject *obj);
> +void *allocate_objects(QTestState *qts, char **path, QGuestAllocator **p_alloc);
> +
> +#endif
> diff --git a/tests/qtest/qos-test.c b/tests/qtest/qos-test.c
> index fd70d73ea5..ad193f43a5 100644
> --- a/tests/qtest/qos-test.c
> +++ b/tests/qtest/qos-test.c
> @@ -27,65 +27,11 @@
> #include "libqos/malloc.h"
> #include "libqos/qgraph.h"
> #include "libqos/qgraph_internal.h"
> +#include "libqos/qos_external.h"
>
> static char *old_path;
>
> -static void apply_to_node(const char *name, bool is_machine, bool is_abstract)
> -{
> - char *machine_name = NULL;
> - if (is_machine) {
> - const char *arch = qtest_get_arch();
> - machine_name = g_strconcat(arch, "/", name, NULL);
> - name = machine_name;
> - }
> - qos_graph_node_set_availability(name, true);
> - if (is_abstract) {
> - qos_delete_cmd_line(name);
> - }
> - g_free(machine_name);
> -}
>
> -/**
> - * apply_to_qlist(): using QMP queries QEMU for a list of
> - * machines and devices available, and sets the respective node
> - * as true. If a node is found, also all its produced and contained
> - * child are marked available.
> - *
> - * See qos_graph_node_set_availability() for more info
> - */
> -static void apply_to_qlist(QList *list, bool is_machine)
> -{
> - const QListEntry *p;
> - const char *name;
> - bool abstract;
> - QDict *minfo;
> - QObject *qobj;
> - QString *qstr;
> - QBool *qbool;
> -
> - for (p = qlist_first(list); p; p = qlist_next(p)) {
> - minfo = qobject_to(QDict, qlist_entry_obj(p));
> - qobj = qdict_get(minfo, "name");
> - qstr = qobject_to(QString, qobj);
> - name = qstring_get_str(qstr);
> -
> - qobj = qdict_get(minfo, "abstract");
> - if (qobj) {
> - qbool = qobject_to(QBool, qobj);
> - abstract = qbool_get_bool(qbool);
> - } else {
> - abstract = false;
> - }
> -
> - apply_to_node(name, is_machine, abstract);
> - qobj = qdict_get(minfo, "alias");
> - if (qobj) {
> - qstr = qobject_to(QString, qobj);
> - name = qstring_get_str(qstr);
> - apply_to_node(name, is_machine, abstract);
> - }
> - }
> -}
>
> /**
> * qos_set_machines_devices_available(): sets availability of qgraph
> @@ -129,10 +75,6 @@ static void qos_set_machines_devices_available(void)
> qobject_unref(response);
> }
>
> -static QGuestAllocator *get_machine_allocator(QOSGraphObject *obj)
> -{
> - return obj->get_driver(obj, "memory");
> -}
>
> static void restart_qemu_or_continue(char *path)
> {
> @@ -159,78 +101,6 @@ void qos_invalidate_command_line(void)
> old_path = NULL;
> }
>
> -/**
> - * allocate_objects(): given an array of nodes @arg,
> - * walks the path invoking all constructors and
> - * passing the corresponding parameter in order to
> - * continue the objects allocation.
> - * Once the test is reached, return the object it consumes.
> - *
> - * Since the machine and QEDGE_CONSUMED_BY nodes allocate
> - * memory in the constructor, g_test_queue_destroy is used so
> - * that after execution they can be safely free'd. (The test's
> - * ->before callback is also welcome to use g_test_queue_destroy).
> - *
> - * Note: as specified in walk_path() too, @arg is an array of
> - * char *, where arg[0] is a pointer to the command line
> - * string that will be used to properly start QEMU when executing
> - * the test, and the remaining elements represent the actual objects
> - * that will be allocated.
> - */
> -static void *allocate_objects(QTestState *qts, char **path, QGuestAllocator **p_alloc)
> -{
> - int current = 0;
> - QGuestAllocator *alloc;
> - QOSGraphObject *parent = NULL;
> - QOSGraphEdge *edge;
> - QOSGraphNode *node;
> - void *edge_arg;
> - void *obj;
> -
> - node = qos_graph_get_node(path[current]);
> - g_assert(node->type == QNODE_MACHINE);
> -
> - obj = qos_machine_new(node, qts);
> - qos_object_queue_destroy(obj);
> -
> - alloc = get_machine_allocator(obj);
> - if (p_alloc) {
> - *p_alloc = alloc;
> - }
> -
> - for (;;) {
> - if (node->type != QNODE_INTERFACE) {
> - qos_object_start_hw(obj);
> - parent = obj;
> - }
> -
> - /* follow edge and get object for next node constructor */
> - current++;
> - edge = qos_graph_get_edge(path[current - 1], path[current]);
> - node = qos_graph_get_node(path[current]);
> -
> - if (node->type == QNODE_TEST) {
> - g_assert(qos_graph_edge_get_type(edge) == QEDGE_CONSUMED_BY);
> - return obj;
> - }
> -
> - switch (qos_graph_edge_get_type(edge)) {
> - case QEDGE_PRODUCES:
> - obj = parent->get_driver(parent, path[current]);
> - break;
> -
> - case QEDGE_CONSUMED_BY:
> - edge_arg = qos_graph_edge_get_arg(edge);
> - obj = qos_driver_new(node, obj, alloc, edge_arg);
> - qos_object_queue_destroy(obj);
> - break;
> -
> - case QEDGE_CONTAINS:
> - obj = parent->get_device(parent, path[current]);
> - break;
> - }
> - }
> -}
>
> /* The argument to run_one_test, which is the test function that is registered
> * with GTest, is a vector of strings. The first item is the initial command
>
next prev parent reply other threads:[~2020-01-29 10:04 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-29 5:34 [PATCH v8 00/21] Add virtual device fuzzing support Bulekov, Alexander
2020-01-29 5:34 ` [PATCH v8 01/21] softmmu: split off vl.c:main() into main.c Bulekov, Alexander
2020-01-30 14:39 ` Stefan Hajnoczi
2020-01-30 15:06 ` Alex Bennée
2020-01-30 17:44 ` Alexander Bulekov
2020-01-30 18:41 ` Alex Bennée
2020-02-05 14:02 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 02/21] module: check module wasn't already initialized Bulekov, Alexander
2020-01-29 5:34 ` [PATCH v8 03/21] fuzz: add FUZZ_TARGET module type Bulekov, Alexander
2020-02-05 11:28 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 04/21] qtest: add qtest_server_send abstraction Bulekov, Alexander
2020-02-05 11:30 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 05/21] libqtest: add a layer of abstraction to send/recv Bulekov, Alexander
2020-02-05 11:32 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 06/21] libqtest: make bufwrite rely on the TransportOps Bulekov, Alexander
2020-02-05 11:36 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 07/21] qtest: add in-process incoming command handler Bulekov, Alexander
2020-02-05 11:39 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 09/21] libqos: split qos-test and libqos makefile vars Bulekov, Alexander
2020-01-29 5:34 ` [PATCH v8 08/21] libqos: rename i2c_send and i2c_recv Bulekov, Alexander
2020-02-05 11:40 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 10/21] libqos: move useful qos-test funcs to qos_external Bulekov, Alexander
2020-01-29 10:03 ` Paolo Bonzini [this message]
2020-02-05 13:34 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 11/21] fuzz: add fuzzer skeleton Bulekov, Alexander
2020-02-05 11:55 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 12/21] exec: keep ram block across fork when using qtest Bulekov, Alexander
2020-02-05 13:00 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 13/21] main: keep rcu_atfork callback enabled for qtest Bulekov, Alexander
2020-01-30 14:42 ` Stefan Hajnoczi
2020-01-30 17:24 ` Paolo Bonzini
2020-01-30 17:42 ` Alexander Bulekov
2020-01-30 18:14 ` Paolo Bonzini
2020-02-05 13:58 ` Darren Kenny
2020-06-18 7:34 ` Thomas Huth
2020-06-18 15:08 ` Alexander Bulekov
2020-01-29 5:34 ` [PATCH v8 14/21] fuzz: support for fork-based fuzzing Bulekov, Alexander
2020-01-29 5:34 ` [PATCH v8 16/21] fuzz: add target/fuzz makefile rules Bulekov, Alexander
2020-01-29 5:34 ` [PATCH v8 15/21] fuzz: add support for qos-assisted fuzz targets Bulekov, Alexander
2020-02-05 13:18 ` Darren Kenny
2020-02-11 16:19 ` Alexander Bulekov
2020-01-29 5:34 ` [PATCH v8 17/21] fuzz: add configure flag --enable-fuzzing Bulekov, Alexander
2020-02-05 13:19 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 18/21] fuzz: add i440fx fuzz targets Bulekov, Alexander
2020-02-05 13:26 ` Darren Kenny
2020-02-06 14:47 ` Alexander Bulekov
2020-01-29 5:34 ` [PATCH v8 19/21] fuzz: add virtio-net fuzz target Bulekov, Alexander
2020-01-30 14:43 ` Stefan Hajnoczi
2020-02-05 13:57 ` Darren Kenny
2020-02-06 14:51 ` Alexander Bulekov
2020-01-29 5:34 ` [PATCH v8 20/21] fuzz: add virtio-scsi " Bulekov, Alexander
2020-02-05 13:31 ` Darren Kenny
2020-01-29 5:34 ` [PATCH v8 21/21] fuzz: add documentation to docs/devel/ Bulekov, Alexander
2020-02-05 13:33 ` Darren Kenny
2020-01-30 14:44 ` [PATCH v8 00/21] Add virtual device fuzzing support Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=41e7f9ff-fedb-6557-42d0-d9766549c104@redhat.com \
--to=pbonzini@redhat.com \
--cc=alxndr@bu.edu \
--cc=bsd@redhat.com \
--cc=lvivier@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).