2014-03-20 14:30:44 +04:00
/*
* networkxml2firewalltest . c : Test iptables rule generation
*
* Copyright ( C ) 2014 Red Hat , Inc .
*
* 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.1 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 <config.h>
2014-04-30 12:16:09 +04:00
# include "testutils.h"
2014-03-20 14:30:44 +04:00
# if defined (__linux__)
2020-09-15 15:00:53 +03:00
# include <gio / gio.h>
2020-09-15 14:55:53 +03:00
2014-03-20 14:30:44 +04:00
# include "network / bridge_driver_platform.h"
# include "virbuffer.h"
2020-09-15 14:55:53 +03:00
# include "virmock.h"
2014-03-20 14:30:44 +04:00
2018-12-13 17:53:50 +03:00
# define LIBVIRT_VIRCOMMANDPRIV_H_ALLOW
2014-03-20 14:30:44 +04:00
# include "vircommandpriv.h"
# define VIR_FROM_THIS VIR_FROM_NONE
# ifdef __linux__
# define RULESTYPE "linux"
# else
# error "test case not ported to this platform"
# endif
2020-09-15 15:00:53 +03:00
VIR_MOCK_WRAP_RET_ARGS ( g_dbus_connection_call_sync ,
GVariant * ,
GDBusConnection * , connection ,
const gchar * , bus_name ,
const gchar * , object_path ,
const gchar * , interface_name ,
const gchar * , method_name ,
GVariant * , parameters ,
const GVariantType * , reply_type ,
GDBusCallFlags , flags ,
gint , timeout_msec ,
GCancellable * , cancellable ,
GError * * , error )
2020-09-15 14:55:53 +03:00
{
2020-10-02 13:11:45 +03:00
if ( parameters ) {
g_variant_ref_sink ( parameters ) ;
2020-09-15 15:00:53 +03:00
g_variant_unref ( parameters ) ;
2020-10-02 13:11:45 +03:00
}
2020-09-15 15:00:53 +03:00
VIR_MOCK_REAL_INIT ( g_dbus_connection_call_sync ) ;
2020-09-15 14:55:53 +03:00
2020-09-15 15:00:53 +03:00
* error = g_dbus_error_new_for_dbus_error ( " org.freedesktop.error " ,
" dbus is disabled " ) ;
2020-09-15 14:55:53 +03:00
return NULL ;
}
2018-11-01 14:42:56 +03:00
static void
2019-10-14 15:45:03 +03:00
testCommandDryRun ( const char * const * args G_GNUC_UNUSED ,
const char * const * env G_GNUC_UNUSED ,
const char * input G_GNUC_UNUSED ,
2018-11-01 14:42:56 +03:00
char * * output ,
char * * error ,
int * status ,
2019-10-14 15:45:03 +03:00
void * opaque G_GNUC_UNUSED )
2018-11-01 14:42:56 +03:00
{
* status = 0 ;
2024-04-20 05:19:43 +03:00
/* if arg[1] is -ae then this is an nft command,
* and the caller requested to get the handle
* of the newly added object in stdout
*/
if ( STREQ_NULLABLE ( args [ 1 ] , " -ae " ) )
* output = g_strdup ( " # handle 5309 " ) ;
else
* output = g_strdup ( " " ) ;
2019-10-18 14:27:03 +03:00
* error = g_strdup ( " " ) ;
2018-11-01 14:42:56 +03:00
}
2014-03-20 14:30:44 +04:00
static int testCompareXMLToArgvFiles ( const char * xml ,
2019-05-21 14:40:13 +03:00
const char * cmdline ,
2024-04-20 05:19:43 +03:00
const char * baseargs ,
virFirewallBackend backend )
2014-03-20 14:30:44 +04:00
{
2021-09-04 23:35:15 +03:00
g_autofree char * actualargv = NULL ;
2020-07-03 02:35:41 +03:00
g_auto ( virBuffer ) buf = VIR_BUFFER_INITIALIZER ;
2022-08-18 20:26:34 +03:00
g_autoptr ( virNetworkDef ) def = NULL ;
2019-05-21 14:40:13 +03:00
char * actual ;
2021-04-01 18:54:09 +03:00
g_autoptr ( virCommandDryRunToken ) dryRunToken = virCommandDryRunTokenNew ( ) ;
2014-03-20 14:30:44 +04:00
2021-03-31 11:46:36 +03:00
virCommandSetDryRun ( dryRunToken , & buf , true , true , testCommandDryRun , NULL ) ;
2014-03-20 14:30:44 +04:00
2022-09-23 14:28:44 +03:00
if ( ! ( def = virNetworkDefParse ( NULL , xml , NULL , false ) ) )
2022-08-18 20:29:07 +03:00
return - 1 ;
2014-03-20 14:30:44 +04:00
2024-04-20 05:19:43 +03:00
if ( networkAddFirewallRules ( def , backend , NULL ) < 0 )
2022-08-18 20:29:07 +03:00
return - 1 ;
2014-03-20 14:30:44 +04:00
2019-05-21 14:40:13 +03:00
actual = actualargv = virBufferContentAndReset ( & buf ) ;
2014-03-20 14:30:44 +04:00
2019-05-21 14:40:13 +03:00
/* The first network to be created populates the
* libvirt global chains . We must skip args for
* that if present
*/
if ( STRPREFIX ( actual , baseargs ) )
actual + = strlen ( baseargs ) ;
2021-03-31 11:46:36 +03:00
if ( virTestCompareToFileFull ( actual , cmdline , false ) < 0 )
2022-08-18 20:29:07 +03:00
return - 1 ;
2014-03-20 14:30:44 +04:00
2022-08-18 20:29:07 +03:00
return 0 ;
2014-03-20 14:30:44 +04:00
}
struct testInfo {
const char * name ;
2019-05-21 14:40:13 +03:00
const char * baseargs ;
2024-04-20 05:19:43 +03:00
virFirewallBackend backend ;
2014-03-20 14:30:44 +04:00
} ;
static int
testCompareXMLToIPTablesHelper ( const void * data )
{
int result = - 1 ;
const struct testInfo * info = data ;
2021-09-04 23:35:15 +03:00
g_autofree char * xml = NULL ;
g_autofree char * args = NULL ;
2014-03-20 14:30:44 +04:00
2019-10-22 16:26:14 +03:00
xml = g_strdup_printf ( " %s/networkxml2firewalldata/%s.xml " ,
abs_srcdir , info - > name ) ;
2024-04-20 05:19:43 +03:00
args = g_strdup_printf ( " %s/networkxml2firewalldata/%s-%s.%s " ,
abs_srcdir , info - > name , RULESTYPE ,
virFirewallBackendTypeToString ( info - > backend ) ) ;
2014-03-20 14:30:44 +04:00
2024-04-20 05:19:43 +03:00
result = testCompareXMLToArgvFiles ( xml , args , info - > baseargs , info - > backend ) ;
2014-03-20 14:30:44 +04:00
return result ;
}
static int
mymain ( void )
{
int ret = 0 ;
2024-04-20 05:19:43 +03:00
g_autofree char * basefileIptables = NULL ;
g_autofree char * basefileNftables = NULL ;
g_autofree char * baseargsIptables = NULL ;
g_autofree char * baseargsNftables = NULL ;
const char * baseargs [ VIR_FIREWALL_BACKEND_LAST ] ;
2014-03-20 14:30:44 +04:00
2024-04-20 05:19:43 +03:00
# define DO_TEST_FOR_BACKEND(name, backend) \
2017-11-03 15:09:47 +03:00
do { \
2019-05-21 14:40:13 +03:00
struct testInfo info = { \
2024-04-20 05:19:43 +03:00
name , baseargs [ backend ] , backend \
2017-11-03 15:09:47 +03:00
} ; \
2024-04-20 05:19:43 +03:00
g_autofree char * label = g_strdup_printf ( " Network XML-2-%s %s " , \
virFirewallBackendTypeToString ( backend ) , \
name ) ; \
if ( virTestRun ( label , testCompareXMLToIPTablesHelper , & info ) < 0 ) \
2017-11-03 15:09:47 +03:00
ret = - 1 ; \
2014-03-20 14:30:44 +04:00
} while ( 0 )
2024-04-20 05:19:43 +03:00
# define DO_TEST(name) \
DO_TEST_FOR_BACKEND ( name , VIR_FIREWALL_BACKEND_IPTABLES ) ; \
DO_TEST_FOR_BACKEND ( name , VIR_FIREWALL_BACKEND_NFTABLES ) ;
2019-05-21 14:40:13 +03:00
2024-04-20 05:19:43 +03:00
basefileIptables = g_strdup_printf ( " %s/networkxml2firewalldata/base.iptables " , abs_srcdir ) ;
if ( virFileReadAll ( basefileIptables , INT_MAX , & baseargsIptables ) < 0 )
2019-11-12 23:46:29 +03:00
return EXIT_FAILURE ;
2019-05-21 14:40:13 +03:00
2024-04-20 05:19:43 +03:00
baseargs [ VIR_FIREWALL_BACKEND_IPTABLES ] = baseargsIptables ;
basefileNftables = g_strdup_printf ( " %s/networkxml2firewalldata/base.nftables " , abs_srcdir ) ;
if ( virFileReadAll ( basefileNftables , INT_MAX , & baseargsNftables ) < 0 )
return EXIT_FAILURE ;
baseargs [ VIR_FIREWALL_BACKEND_NFTABLES ] = baseargsNftables ;
2014-03-20 14:30:44 +04:00
DO_TEST ( " nat-default " ) ;
DO_TEST ( " nat-tftp " ) ;
DO_TEST ( " nat-many-ips " ) ;
DO_TEST ( " nat-no-dhcp " ) ;
DO_TEST ( " nat-ipv6 " ) ;
2020-06-08 16:40:15 +03:00
DO_TEST ( " nat-ipv6-masquerade " ) ;
2014-03-20 14:30:44 +04:00
DO_TEST ( " route-default " ) ;
2024-06-21 15:17:58 +03:00
DO_TEST ( " forward-dev " ) ;
DO_TEST ( " isolated " ) ;
DO_TEST ( " forward-dev " ) ;
DO_TEST ( " nat-port-range " ) ;
DO_TEST ( " nat-port-range-ipv6 " ) ;
2014-03-20 14:30:44 +04:00
return ret = = 0 ? EXIT_SUCCESS : EXIT_FAILURE ;
}
2021-11-15 21:28:12 +03:00
/* NB: virgdbus must be mocked because this test calls
* networkAddFirewallRules ( ) , which will always call
* virFirewallDIsRegistered ( ) , which calls
* virGDBusIsServiceRegistered ( ) .
*/
2021-04-15 00:57:50 +03:00
VIR_TEST_MAIN_PRELOAD ( mymain , VIR_TEST_MOCK ( " virgdbus " ) ,
VIR_TEST_MOCK ( " virfirewall " ) )
2014-03-20 14:30:44 +04:00
# else /* ! defined (__linux__) */
int main ( void )
{
return EXIT_AM_SKIP ;
}
# endif /* ! defined (__linux__) */