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"
2019-05-21 14:40:13 +03:00
# include "viralloc.h"
2014-04-30 12:16:09 +04:00
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_VIRFIREWALLPRIV_H_ALLOW
2014-03-20 14:30:44 +04:00
# include "virfirewallpriv.h"
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 ;
2019-10-18 14:27:03 +03:00
* output = g_strdup ( " " ) ;
* 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 ,
const char * baseargs )
2014-03-20 14:30:44 +04:00
{
char * actualargv = NULL ;
2020-07-03 02:35:41 +03:00
g_auto ( virBuffer ) buf = VIR_BUFFER_INITIALIZER ;
2021-03-11 10:16:13 +03:00
virNetworkDef * def = NULL ;
2014-03-20 14:30:44 +04:00
int ret = - 1 ;
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
2019-07-14 19:15:12 +03:00
if ( ! ( def = virNetworkDefParseFile ( xml , NULL ) ) )
2014-03-20 14:30:44 +04:00
goto cleanup ;
if ( networkAddFirewallRules ( def ) < 0 )
goto cleanup ;
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 )
2014-03-20 14:30:44 +04:00
goto cleanup ;
ret = 0 ;
cleanup :
VIR_FREE ( actualargv ) ;
virNetworkDefFree ( def ) ;
return ret ;
}
struct testInfo {
const char * name ;
2019-05-21 14:40:13 +03:00
const char * baseargs ;
2014-03-20 14:30:44 +04:00
} ;
static int
testCompareXMLToIPTablesHelper ( const void * data )
{
int result = - 1 ;
const struct testInfo * info = data ;
char * xml = NULL ;
char * args = NULL ;
2019-10-22 16:26:14 +03:00
xml = g_strdup_printf ( " %s/networkxml2firewalldata/%s.xml " ,
abs_srcdir , info - > name ) ;
args = g_strdup_printf ( " %s/networkxml2firewalldata/%s-%s.args " ,
abs_srcdir , info - > name , RULESTYPE ) ;
2014-03-20 14:30:44 +04:00
2019-05-21 14:40:13 +03:00
result = testCompareXMLToArgvFiles ( xml , args , info - > baseargs ) ;
2014-03-20 14:30:44 +04:00
VIR_FREE ( xml ) ;
VIR_FREE ( args ) ;
return result ;
}
static int
mymain ( void )
{
int ret = 0 ;
2019-10-15 16:16:31 +03:00
g_autofree char * basefile = NULL ;
g_autofree char * baseargs = NULL ;
2014-03-20 14:30:44 +04:00
2017-11-03 15:09:47 +03:00
# define DO_TEST(name) \
do { \
2019-05-21 14:40:13 +03:00
struct testInfo info = { \
name , baseargs , \
2017-11-03 15:09:47 +03:00
} ; \
if ( virTestRun ( " Network XML-2-iptables " name , \
testCompareXMLToIPTablesHelper , & info ) < 0 ) \
ret = - 1 ; \
2014-03-20 14:30:44 +04:00
} while ( 0 )
if ( virFirewallSetBackend ( VIR_FIREWALL_BACKEND_DIRECT ) < 0 ) {
2019-11-12 23:46:29 +03:00
return EXIT_FAILURE ;
2014-03-20 14:30:44 +04:00
}
2019-10-22 16:26:14 +03:00
basefile = g_strdup_printf ( " %s/networkxml2firewalldata/base.args " , abs_srcdir ) ;
2019-05-21 14:40:13 +03:00
2021-03-31 11:46:36 +03:00
if ( virFileReadAll ( basefile , INT_MAX , & baseargs ) < 0 )
2019-11-12 23:46:29 +03:00
return EXIT_FAILURE ;
2019-05-21 14:40:13 +03:00
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 " ) ;
return ret = = 0 ? EXIT_SUCCESS : EXIT_FAILURE ;
}
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__) */