2010-04-02 17:28:28 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
#include "testutils.h"
|
|
|
|
#include "nwfilter_conf.h"
|
|
|
|
|
2013-06-07 15:10:28 +00:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2011-04-24 22:25:10 +00:00
|
|
|
static int
|
|
|
|
testCompareXMLToXMLFiles(const char *inxml, const char *outxml,
|
|
|
|
bool expect_error)
|
|
|
|
{
|
2021-09-04 20:36:29 +00:00
|
|
|
g_autofree char *actual = NULL;
|
2023-01-10 11:29:26 +00:00
|
|
|
g_autoptr(virNWFilterDef) def = NULL;
|
2010-04-02 17:28:28 +00:00
|
|
|
|
2010-11-29 13:11:53 +00:00
|
|
|
virResetLastError();
|
2010-04-02 17:28:28 +00:00
|
|
|
|
2023-01-10 11:29:26 +00:00
|
|
|
if (!(def = virNWFilterDefParse(NULL, inxml, 0))) {
|
2013-09-25 14:26:58 +00:00
|
|
|
if (expect_error) {
|
|
|
|
virResetLastError();
|
2023-01-10 11:29:26 +00:00
|
|
|
return 0;
|
2013-09-25 14:26:58 +00:00
|
|
|
}
|
2023-01-10 11:29:26 +00:00
|
|
|
return -1;
|
2010-10-14 00:11:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-10 11:29:26 +00:00
|
|
|
if (!(actual = virNWFilterDefFormat(def)))
|
|
|
|
return -1;
|
2010-04-02 17:28:28 +00:00
|
|
|
|
2016-05-26 15:01:53 +00:00
|
|
|
if (virTestCompareToFile(actual, outxml) < 0)
|
2023-01-10 11:29:26 +00:00
|
|
|
return -1;
|
2010-04-02 17:28:28 +00:00
|
|
|
|
2023-01-10 11:29:26 +00:00
|
|
|
return 0;
|
2010-04-02 17:28:28 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 00:11:25 +00:00
|
|
|
typedef struct test_parms {
|
|
|
|
const char *name;
|
|
|
|
bool expect_warning;
|
|
|
|
} test_parms;
|
|
|
|
|
2011-04-24 22:25:10 +00:00
|
|
|
static int
|
|
|
|
testCompareXMLToXMLHelper(const void *data)
|
|
|
|
{
|
|
|
|
int result = -1;
|
2010-10-14 00:11:25 +00:00
|
|
|
const test_parms *tp = data;
|
2021-09-04 20:36:29 +00:00
|
|
|
g_autofree char *inxml = NULL;
|
|
|
|
g_autofree char *outxml = NULL;
|
2011-04-24 22:25:10 +00:00
|
|
|
|
2019-10-22 13:26:14 +00:00
|
|
|
inxml = g_strdup_printf("%s/nwfilterxml2xmlin/%s.xml", abs_srcdir, tp->name);
|
|
|
|
outxml = g_strdup_printf("%s/nwfilterxml2xmlout/%s.xml", abs_srcdir, tp->name);
|
2011-04-24 22:25:10 +00:00
|
|
|
|
|
|
|
result = testCompareXMLToXMLFiles(inxml, outxml, tp->expect_warning);
|
2010-04-02 17:28:28 +00:00
|
|
|
|
2011-04-24 22:25:10 +00:00
|
|
|
return result;
|
|
|
|
}
|
2010-04-02 17:28:28 +00:00
|
|
|
|
|
|
|
static int
|
2011-04-29 16:21:20 +00:00
|
|
|
mymain(void)
|
2010-04-02 17:28:28 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2017-11-03 12:09:47 +00:00
|
|
|
#define DO_TEST(NAME, EXPECT_WARN) \
|
|
|
|
do { \
|
|
|
|
test_parms tp = { \
|
|
|
|
.name = NAME, \
|
|
|
|
.expect_warning = EXPECT_WARN, \
|
|
|
|
}; \
|
|
|
|
if (virTestRun("NWFilter XML-2-XML " NAME, \
|
|
|
|
testCompareXMLToXMLHelper, (&tp)) < 0) \
|
|
|
|
ret = -1; \
|
2010-10-14 00:11:25 +00:00
|
|
|
} while (0)
|
|
|
|
|
2020-10-07 12:45:55 +00:00
|
|
|
DO_TEST("mac-test-invalid", true);
|
|
|
|
DO_TEST("vlan-test-invalid", true);
|
2011-11-22 20:12:03 +00:00
|
|
|
DO_TEST("stp-test", false);
|
2020-10-07 12:45:55 +00:00
|
|
|
DO_TEST("arp-test-invalid", true);
|
|
|
|
DO_TEST("rarp-test-invalid", true);
|
|
|
|
DO_TEST("ip-test-invalid", true);
|
|
|
|
DO_TEST("ipv6-test-invalid", true);
|
|
|
|
|
|
|
|
DO_TEST("tcp-test-invalid", true);
|
|
|
|
DO_TEST("udp-test-invalid", true);
|
|
|
|
DO_TEST("icmp-test-invalid", true);
|
2010-10-14 00:11:25 +00:00
|
|
|
DO_TEST("igmp-test", false);
|
2020-10-07 12:45:55 +00:00
|
|
|
DO_TEST("sctp-test-invalid", true);
|
2010-10-14 00:11:25 +00:00
|
|
|
DO_TEST("udplite-test", false);
|
|
|
|
DO_TEST("esp-test", false);
|
|
|
|
DO_TEST("ah-test", false);
|
|
|
|
DO_TEST("all-test", false);
|
|
|
|
|
2020-10-07 12:45:55 +00:00
|
|
|
DO_TEST("tcp-ipv6-test-invalid", true);
|
|
|
|
DO_TEST("udp-ipv6-test-invalid", true);
|
|
|
|
DO_TEST("icmpv6-test-invalid", true);
|
|
|
|
DO_TEST("sctp-ipv6-test-invalid", true);
|
|
|
|
DO_TEST("udplite-ipv6-test-invalid", true);
|
|
|
|
DO_TEST("esp-ipv6-test-invalid", true);
|
|
|
|
DO_TEST("ah-ipv6-test-invalid", true);
|
|
|
|
DO_TEST("all-ipv6-test-invalid", true);
|
2010-10-14 00:11:25 +00:00
|
|
|
|
|
|
|
DO_TEST("ref-test", false);
|
|
|
|
DO_TEST("ref-rule-test", false);
|
|
|
|
DO_TEST("ipt-no-macspoof-test", false);
|
|
|
|
DO_TEST("icmp-direction-test", false);
|
|
|
|
DO_TEST("icmp-direction2-test", false);
|
|
|
|
DO_TEST("icmp-direction3-test", false);
|
|
|
|
|
|
|
|
DO_TEST("conntrack-test", false);
|
|
|
|
|
2020-10-07 12:45:55 +00:00
|
|
|
DO_TEST("hex-data-test-invalid", true);
|
2010-10-14 00:11:25 +00:00
|
|
|
|
2020-10-07 12:45:55 +00:00
|
|
|
DO_TEST("comment-test-invalid", true);
|
2010-10-14 00:11:25 +00:00
|
|
|
|
|
|
|
DO_TEST("example-1", false);
|
|
|
|
DO_TEST("example-2", false);
|
2010-10-07 10:43:35 +00:00
|
|
|
|
2023-02-16 09:46:41 +00:00
|
|
|
/* The parser and formatter for nwfilter rules was written in a quirky way.
|
|
|
|
* Validate that it still works. Note that the files don't conform to the
|
|
|
|
* schema */
|
|
|
|
DO_TEST("quirks-invalid", false);
|
|
|
|
|
2020-10-07 12:45:55 +00:00
|
|
|
DO_TEST("chain_prefixtest1-invalid", true); /* derived from arp-test */
|
2011-11-18 16:58:18 +00:00
|
|
|
|
2011-11-18 16:58:18 +00:00
|
|
|
DO_TEST("attr-value-test", false);
|
2012-01-11 11:42:37 +00:00
|
|
|
DO_TEST("iter-test1", false);
|
|
|
|
DO_TEST("iter-test2", false);
|
|
|
|
DO_TEST("iter-test3", false);
|
2011-11-18 16:58:18 +00:00
|
|
|
|
2012-05-21 10:26:34 +00:00
|
|
|
DO_TEST("ipset-test", false);
|
|
|
|
|
2014-03-17 09:38:38 +00:00
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2010-04-02 17:28:28 +00:00
|
|
|
}
|
|
|
|
|
2017-03-29 14:45:42 +00:00
|
|
|
VIR_TEST_MAIN(mymain)
|