 31fb263c29
			
		
	
	
		31fb263c29
		
	
	
	
	
		
			
			These filter tests need a NIC, no matter which one, so they use a common NIC by default. However, these common NIC models might not always have been compiled into the QEMU target binary, so assuming that a certain NIC is available is a bad idea. Since the exact type of NIC does not really matter for these tests, let's switch to "-nic" instead of "-netdev" so that QEMU can simply pick a default NIC for us. This way we can now run the tests on other targets that have a default machine with an on-board/default NIC, too. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20211220103025.311759-1-thuth@redhat.com> Reviewed-by: Zhang Chen <chen.zhang@intel.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
		
			
				
	
	
		
			199 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			199 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QTest testcase for netfilter
 | |
|  *
 | |
|  * Copyright (c) 2015 FUJITSU LIMITED
 | |
|  * Author: Yang Hongyang <yanghy@cn.fujitsu.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or
 | |
|  * later.  See the COPYING file in the top-level directory.
 | |
|  */
 | |
| 
 | |
| #include "qemu/osdep.h"
 | |
| #include "libqtest-single.h"
 | |
| #include "qapi/qmp/qdict.h"
 | |
| 
 | |
| /* add a netfilter to a netdev and then remove it */
 | |
| static void add_one_netfilter(void)
 | |
| {
 | |
|     QDict *response;
 | |
| 
 | |
|     response = qmp("{'execute': 'object-add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'qom-type': 'filter-buffer',"
 | |
|                    "   'id': 'qtest-f0',"
 | |
|                    "   'netdev': 'qtest-bn0',"
 | |
|                    "   'queue': 'rx',"
 | |
|                    "   'interval': 1000"
 | |
|                    "}}");
 | |
| 
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     response = qmp("{'execute': 'object-del',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'id': 'qtest-f0'"
 | |
|                    "}}");
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| }
 | |
| 
 | |
| /* add a netfilter to a netdev and then remove the netdev */
 | |
| static void remove_netdev_with_one_netfilter(void)
 | |
| {
 | |
|     QDict *response;
 | |
| 
 | |
|     response = qmp("{'execute': 'object-add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'qom-type': 'filter-buffer',"
 | |
|                    "   'id': 'qtest-f0',"
 | |
|                    "   'netdev': 'qtest-bn0',"
 | |
|                    "   'queue': 'rx',"
 | |
|                    "   'interval': 1000"
 | |
|                    "}}");
 | |
| 
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     response = qmp("{'execute': 'netdev_del',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'id': 'qtest-bn0'"
 | |
|                    "}}");
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     /* add back the netdev */
 | |
|     response = qmp("{'execute': 'netdev_add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'type': 'user',"
 | |
|                    "   'id': 'qtest-bn0'"
 | |
|                    "}}");
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| }
 | |
| 
 | |
| /* add multi(2) netfilters to a netdev and then remove them */
 | |
| static void add_multi_netfilter(void)
 | |
| {
 | |
|     QDict *response;
 | |
| 
 | |
|     response = qmp("{'execute': 'object-add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'qom-type': 'filter-buffer',"
 | |
|                    "   'id': 'qtest-f0',"
 | |
|                    "   'netdev': 'qtest-bn0',"
 | |
|                    "   'queue': 'rx',"
 | |
|                    "   'interval': 1000"
 | |
|                    "}}");
 | |
| 
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     response = qmp("{'execute': 'object-add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'qom-type': 'filter-buffer',"
 | |
|                    "   'id': 'qtest-f1',"
 | |
|                    "   'netdev': 'qtest-bn0',"
 | |
|                    "   'queue': 'rx',"
 | |
|                    "   'interval': 1000"
 | |
|                    "}}");
 | |
| 
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     response = qmp("{'execute': 'object-del',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'id': 'qtest-f0'"
 | |
|                    "}}");
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     response = qmp("{'execute': 'object-del',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'id': 'qtest-f1'"
 | |
|                    "}}");
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| }
 | |
| 
 | |
| /* add multi(2) netfilters to a netdev and then remove the netdev */
 | |
| static void remove_netdev_with_multi_netfilter(void)
 | |
| {
 | |
|     QDict *response;
 | |
| 
 | |
|     response = qmp("{'execute': 'object-add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'qom-type': 'filter-buffer',"
 | |
|                    "   'id': 'qtest-f0',"
 | |
|                    "   'netdev': 'qtest-bn0',"
 | |
|                    "   'queue': 'rx',"
 | |
|                    "   'interval': 1000"
 | |
|                    "}}");
 | |
| 
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     response = qmp("{'execute': 'object-add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'qom-type': 'filter-buffer',"
 | |
|                    "   'id': 'qtest-f1',"
 | |
|                    "   'netdev': 'qtest-bn0',"
 | |
|                    "   'queue': 'rx',"
 | |
|                    "   'interval': 1000"
 | |
|                    "}}");
 | |
| 
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     response = qmp("{'execute': 'netdev_del',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'id': 'qtest-bn0'"
 | |
|                    "}}");
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| 
 | |
|     /* add back the netdev */
 | |
|     response = qmp("{'execute': 'netdev_add',"
 | |
|                    " 'arguments': {"
 | |
|                    "   'type': 'user',"
 | |
|                    "   'id': 'qtest-bn0'"
 | |
|                    "}}");
 | |
|     g_assert(response);
 | |
|     g_assert(!qdict_haskey(response, "error"));
 | |
|     qobject_unref(response);
 | |
| }
 | |
| 
 | |
| int main(int argc, char **argv)
 | |
| {
 | |
|     int ret;
 | |
|     char *args;
 | |
| 
 | |
|     g_test_init(&argc, &argv, NULL);
 | |
|     qtest_add_func("/netfilter/addremove_one", add_one_netfilter);
 | |
|     qtest_add_func("/netfilter/remove_netdev_one",
 | |
|                    remove_netdev_with_one_netfilter);
 | |
|     qtest_add_func("/netfilter/addremove_multi", add_multi_netfilter);
 | |
|     qtest_add_func("/netfilter/remove_netdev_multi",
 | |
|                    remove_netdev_with_multi_netfilter);
 | |
| 
 | |
|     args = g_strdup_printf("-nic user,id=qtest-bn0");
 | |
|     qtest_start(args);
 | |
|     ret = g_test_run();
 | |
| 
 | |
|     qtest_end();
 | |
|     g_free(args);
 | |
| 
 | |
|     return ret;
 | |
| }
 |