2 * libqos driver framework
4 * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>
19 #include "qemu/osdep.h"
22 #include "qapi/qmp/qdict.h"
23 #include "qapi/qmp/qbool.h"
24 #include "qapi/qmp/qstring.h"
25 #include "qapi/qmp/qlist.h"
26 #include "libqos/malloc.h"
27 #include "libqos/qgraph.h"
28 #include "libqos/qgraph_internal.h"
30 static char *old_path
;
32 static void apply_to_node(const char *name
, bool is_machine
, bool is_abstract
)
34 char *machine_name
= NULL
;
36 const char *arch
= qtest_get_arch();
37 machine_name
= g_strconcat(arch
, "/", name
, NULL
);
40 qos_graph_node_set_availability(name
, true);
42 qos_delete_cmd_line(name
);
48 * apply_to_qlist(): using QMP queries QEMU for a list of
49 * machines and devices available, and sets the respective node
50 * as true. If a node is found, also all its produced and contained
51 * child are marked available.
53 * See qos_graph_node_set_availability() for more info
55 static void apply_to_qlist(QList
*list
, bool is_machine
)
65 for (p
= qlist_first(list
); p
; p
= qlist_next(p
)) {
66 minfo
= qobject_to(QDict
, qlist_entry_obj(p
));
67 qobj
= qdict_get(minfo
, "name");
68 qstr
= qobject_to(QString
, qobj
);
69 name
= qstring_get_str(qstr
);
71 qobj
= qdict_get(minfo
, "abstract");
73 qbool
= qobject_to(QBool
, qobj
);
74 abstract
= qbool_get_bool(qbool
);
79 apply_to_node(name
, is_machine
, abstract
);
80 qobj
= qdict_get(minfo
, "alias");
82 qstr
= qobject_to(QString
, qobj
);
83 name
= qstring_get_str(qstr
);
84 apply_to_node(name
, is_machine
, abstract
);
90 * qos_set_machines_devices_available(): sets availability of qgraph
91 * machines and devices.
93 * This function firstly starts QEMU with "-machine none" option,
94 * and then executes the QMP protocol asking for the list of devices
95 * and machines available.
97 * for each of these items, it looks up the corresponding qgraph node,
98 * setting it as available. The list currently returns all devices that
99 * are either machines or QEDGE_CONSUMED_BY other nodes.
100 * Therefore, in order to mark all other nodes, it recursively sets
101 * all its QEDGE_CONTAINS and QEDGE_PRODUCES child as available too.
103 static void qos_set_machines_devices_available(void)
106 QDict
*args
= qdict_new();
109 qtest_start("-machine none");
110 response
= qmp("{ 'execute': 'query-machines' }");
111 list
= qdict_get_qlist(response
, "return");
113 apply_to_qlist(list
, true);
115 qobject_unref(response
);
117 qdict_put_bool(args
, "abstract", true);
118 qdict_put_str(args
, "implements", "device");
120 response
= qmp("{'execute': 'qom-list-types',"
121 " 'arguments': %p }", args
);
122 g_assert(qdict_haskey(response
, "return"));
123 list
= qdict_get_qlist(response
, "return");
125 apply_to_qlist(list
, false);
128 qobject_unref(response
);
131 static QGuestAllocator
*get_machine_allocator(QOSGraphObject
*obj
)
133 return obj
->get_driver(obj
, "memory");
136 static void restart_qemu_or_continue(char *path
)
138 /* compares the current command line with the
139 * one previously executed: if they are the same,
140 * don't restart QEMU, if they differ, stop previous
141 * QEMU subprocess (if active) and start over with
142 * the new command line
144 if (g_strcmp0(old_path
, path
)) {
146 qos_invalidate_command_line();
147 old_path
= g_strdup(path
);
149 } else { /* if cmd line is the same, reset the guest */
150 qobject_unref(qmp("{ 'execute': 'system_reset' }"));
151 qmp_eventwait("RESET");
155 void qos_invalidate_command_line(void)
162 * allocate_objects(): given an array of nodes @arg,
163 * walks the path invoking all constructors and
164 * passing the corresponding parameter in order to
165 * continue the objects allocation.
166 * Once the test is reached, return the object it consumes.
168 * Since the machine and QEDGE_CONSUMED_BY nodes allocate
169 * memory in the constructor, g_test_queue_destroy is used so
170 * that after execution they can be safely free'd. (The test's
171 * ->before callback is also welcome to use g_test_queue_destroy).
173 * Note: as specified in walk_path() too, @arg is an array of
174 * char *, where arg[0] is a pointer to the command line
175 * string that will be used to properly start QEMU when executing
176 * the test, and the remaining elements represent the actual objects
177 * that will be allocated.
179 static void *allocate_objects(QTestState
*qts
, char **path
, QGuestAllocator
**p_alloc
)
182 QGuestAllocator
*alloc
;
183 QOSGraphObject
*parent
= NULL
;
189 node
= qos_graph_get_node(path
[current
]);
190 g_assert(node
->type
== QNODE_MACHINE
);
192 obj
= qos_machine_new(node
, qts
);
193 qos_object_queue_destroy(obj
);
195 alloc
= get_machine_allocator(obj
);
201 if (node
->type
!= QNODE_INTERFACE
) {
202 qos_object_start_hw(obj
);
206 /* follow edge and get object for next node constructor */
208 edge
= qos_graph_get_edge(path
[current
- 1], path
[current
]);
209 node
= qos_graph_get_node(path
[current
]);
211 if (node
->type
== QNODE_TEST
) {
212 g_assert(qos_graph_edge_get_type(edge
) == QEDGE_CONSUMED_BY
);
216 switch (qos_graph_edge_get_type(edge
)) {
218 obj
= parent
->get_driver(parent
, path
[current
]);
221 case QEDGE_CONSUMED_BY
:
222 edge_arg
= qos_graph_edge_get_arg(edge
);
223 obj
= qos_driver_new(node
, obj
, alloc
, edge_arg
);
224 qos_object_queue_destroy(obj
);
228 obj
= parent
->get_device(parent
, path
[current
]);
234 /* The argument to run_one_test, which is the test function that is registered
235 * with GTest, is a vector of strings. The first item is the initial command
236 * line (before it is modified by the test's "before" function), the remaining
237 * items are node names forming the path to the test node.
239 static char **current_path
;
241 const char *qos_get_current_command_line(void)
243 return current_path
[0];
246 void *qos_allocate_objects(QTestState
*qts
, QGuestAllocator
**p_alloc
)
248 return allocate_objects(qts
, current_path
+ 1, p_alloc
);
252 * run_one_test(): given an array of nodes @arg,
253 * walks the path invoking all constructors and
254 * passing the corresponding parameter in order to
255 * continue the objects allocation.
256 * Once the test is reached, its function is executed.
258 * Since the machine and QEDGE_CONSUMED_BY nodes allocate
259 * memory in the constructor, g_test_queue_destroy is used so
260 * that after execution they can be safely free'd. The test's
261 * ->before callback is also welcome to use g_test_queue_destroy.
263 * Note: as specified in walk_path() too, @arg is an array of
264 * char *, where arg[0] is a pointer to the command line
265 * string that will be used to properly start QEMU when executing
266 * the test, and the remaining elements represent the actual objects
267 * that will be allocated.
269 * The order of execution is the following:
270 * 1) @before test function as defined in the given QOSGraphTestOptions
272 * 3) call all nodes constructor and get_driver/get_device depending on edge,
273 * start the hardware (*_device_enable functions)
276 static void run_one_test(const void *arg
)
278 QOSGraphNode
*test_node
;
279 QGuestAllocator
*alloc
= NULL
;
281 char **path
= (char **) arg
;
282 GString
*cmd_line
= g_string_new(path
[0]);
287 test_node
= qos_graph_get_node(path
[(g_strv_length(path
) - 1)]);
288 test_arg
= test_node
->u
.test
.arg
;
289 if (test_node
->u
.test
.before
) {
290 test_arg
= test_node
->u
.test
.before(cmd_line
, test_arg
);
293 restart_qemu_or_continue(cmd_line
->str
);
294 g_string_free(cmd_line
, true);
296 obj
= qos_allocate_objects(global_qtest
, &alloc
);
297 test_node
->u
.test
.function(obj
, test_arg
, alloc
);
300 static void subprocess_run_one_test(const void *arg
)
302 const gchar
*path
= arg
;
303 g_test_trap_subprocess(path
, 0, 0);
304 g_test_trap_assert_passed();
308 * in this function, 2 path will be built:
309 * path_str, a one-string path (ex "pc/i440FX-pcihost/...")
310 * path_vec, a string-array path (ex [0] = "pc", [1] = "i440FX-pcihost").
312 * path_str will be only used to build the test name, and won't need the
313 * architecture name at beginning, since it will be added by qtest_add_func().
315 * path_vec is used to allocate all constructors of the path nodes.
316 * Each name in this array except position 0 must correspond to a valid
318 * Position 0 is special, initially contains just the <machine> name of
319 * the node, (ex for "x86_64/pc" it will be "pc"), used to build the test
320 * path (see below). After it will contain the command line used to start
321 * qemu with all required devices.
323 * Note that the machine node name must be with format <arch>/<machine>
324 * (ex "x86_64/pc"), because it will identify the node "x86_64/pc"
325 * and start QEMU with "-M pc". For this reason,
326 * when building path_str, path_vec
327 * initially contains the <machine> at position 0 ("pc"),
328 * and the node name at position 1 (<arch>/<machine>)
329 * ("x86_64/pc"), followed by the rest of the nodes.
331 static void walk_path(QOSGraphNode
*orig_path
, int len
)
336 /* etype set to QEDGE_CONSUMED_BY so that machine can add to the command line */
337 QOSEdgeType etype
= QEDGE_CONSUMED_BY
;
339 /* twice QOS_PATH_MAX_ELEMENT_SIZE since each edge can have its arg */
340 char **path_vec
= g_new0(char *, (QOS_PATH_MAX_ELEMENT_SIZE
* 2));
341 int path_vec_size
= 0;
343 char *after_cmd
= NULL
, *before_cmd
= NULL
, *after_device
= NULL
;
344 char *node_name
= orig_path
->name
, *path_str
;
346 GString
*cmd_line
= g_string_new("");
347 GString
*cmd_line2
= g_string_new("");
349 path
= qos_graph_get_node(node_name
); /* root */
350 node_name
= qos_graph_edge_get_dest(path
->path_edge
); /* machine name */
352 path_vec
[path_vec_size
++] = node_name
;
353 path_vec
[path_vec_size
++] = qos_get_machine_type(node_name
);
356 path
= qos_graph_get_node(node_name
);
357 if (!path
->path_edge
) {
361 node_name
= qos_graph_edge_get_dest(path
->path_edge
);
363 /* append node command line + previous edge command line */
364 if (path
->command_line
&& etype
== QEDGE_CONSUMED_BY
) {
365 g_string_append(cmd_line
, path
->command_line
);
367 g_string_append(cmd_line
, after_device
);
371 path_vec
[path_vec_size
++] = qos_graph_edge_get_name(path
->path_edge
);
372 /* detect if edge has command line args */
373 after_cmd
= qos_graph_edge_get_after_cmd_line(path
->path_edge
);
374 after_device
= qos_graph_edge_get_extra_device_opts(path
->path_edge
);
375 before_cmd
= qos_graph_edge_get_before_cmd_line(path
->path_edge
);
376 edge
= qos_graph_get_edge(path
->name
, node_name
);
377 etype
= qos_graph_edge_get_type(edge
);
380 g_string_append(cmd_line
, before_cmd
);
383 g_string_append(cmd_line2
, after_cmd
);
387 path_vec
[path_vec_size
++] = NULL
;
389 g_string_append(cmd_line
, after_device
);
391 g_string_append(cmd_line
, cmd_line2
->str
);
392 g_string_free(cmd_line2
, true);
394 /* here position 0 has <arch>/<machine>, position 1 has <machine>.
395 * The path must not have the <arch>, qtest_add_data_func adds it.
397 path_str
= g_strjoinv("/", path_vec
+ 1);
399 /* put arch/machine in position 1 so run_one_test can do its work
400 * and add the command line at position 0.
402 path_vec
[1] = path_vec
[0];
403 path_vec
[0] = g_string_free(cmd_line
, false);
405 if (path
->u
.test
.subprocess
) {
406 gchar
*subprocess_path
= g_strdup_printf("/%s/%s/subprocess",
407 qtest_get_arch(), path_str
);
408 qtest_add_data_func(path_str
, subprocess_path
, subprocess_run_one_test
);
409 g_test_add_data_func(subprocess_path
, path_vec
, run_one_test
);
411 qtest_add_data_func(path_str
, path_vec
, run_one_test
);
420 * main(): heart of the qgraph framework.
422 * - Initializes the glib test framework
423 * - Creates the graph by invoking the various _init constructors
424 * - Starts QEMU to mark the available devices
425 * - Walks the graph, and each path is added to
426 * the glib test framework (walk_path)
427 * - Runs the tests, calling allocate_object() and allocating the
428 * machine/drivers/test objects
429 * - Cleans up everything
431 int main(int argc
, char **argv
)
433 g_test_init(&argc
, &argv
, NULL
);
435 module_call_init(MODULE_INIT_QOM
);
436 module_call_init(MODULE_INIT_LIBQOS
);
437 qos_set_machines_devices_available();
439 qos_graph_foreach_test_path(walk_path
);