]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/test-routing-policy-rule.c
network: also check that Hostname= is a valid DNS domain name
[thirdparty/systemd.git] / src / network / test-routing-policy-rule.c
CommitLineData
7379f3de
ZJS
1/***
2 SPDX-License-Identifier: LGPL-2.1+
7379f3de
ZJS
3***/
4
5#include "fd-util.h"
6#include "fileio.h"
7#include "log.h"
8#include "macro.h"
9#include "network-internal.h"
10#include "networkd-manager.h"
11#include "string-util.h"
12
13static void test_rule_serialization(const char *title, const char *ruleset, const char *expected) {
14 char pattern[] = "/tmp/systemd-test-routing-policy-rule.XXXXXX",
15 pattern2[] = "/tmp/systemd-test-routing-policy-rule.XXXXXX",
16 pattern3[] = "/tmp/systemd-test-routing-policy-rule.XXXXXX";
17 const char *cmd;
18 int fd, fd2, fd3;
19 _cleanup_fclose_ FILE *f = NULL, *f2 = NULL, *f3 = NULL;
b921fcb2 20 Set *rules = NULL;
7379f3de
ZJS
21 _cleanup_free_ char *buf = NULL;
22 size_t buf_size;
23
24 log_info("========== %s ==========", title);
25 log_info("put:\n%s\n", ruleset);
26
14899e2b
ZJS
27 fd = mkostemp_safe(pattern);
28 assert_se(fd >= 0);
7379f3de
ZJS
29 assert_se(f = fdopen(fd, "a+e"));
30 assert_se(write_string_stream(f, ruleset, 0) == 0);
31
32 assert_se(routing_policy_load_rules(pattern, &rules) == 0);
33
14899e2b
ZJS
34 fd2 = mkostemp_safe(pattern2);
35 assert_se(fd2 >= 0);
7379f3de
ZJS
36 assert_se(f2 = fdopen(fd2, "a+e"));
37
38 assert_se(routing_policy_serialize_rules(rules, f2) == 0);
39 assert_se(fflush_and_check(f2) == 0);
40
41 assert_se(read_full_file(pattern2, &buf, &buf_size) == 0);
42
43 log_info("got:\n%s", buf);
44
14899e2b
ZJS
45 fd3 = mkostemp_safe(pattern3);
46 assert_se(fd3 >= 0);
7379f3de
ZJS
47 assert_se(f3 = fdopen(fd3, "we"));
48 assert_se(write_string_stream(f3, expected ?: ruleset, 0) == 0);
49
50 cmd = strjoina("diff -u ", pattern3, " ", pattern2);
51 log_info("$ %s", cmd);
52 assert_se(system(cmd) == 0);
b921fcb2
ZJS
53
54 set_free_with_destructor(rules, routing_policy_rule_free);
7379f3de
ZJS
55}
56
57int main(int argc, char **argv) {
58 _cleanup_free_ char *p = NULL;
59
60 log_set_max_level(LOG_DEBUG);
61 log_parse_environment();
62 log_open();
63
64 test_rule_serialization("basic parsing",
65 "RULE=from=1.2.3.4/32 to=2.3.4.5/32 tos=5 fwmark=1/2 table=10", NULL);
66
67 test_rule_serialization("ignored values",
68 "RULE=something=to=ignore from=1.2.3.4/32 from=1.2.3.4/32"
69 " \t to=2.3.4.5/24 to=2.3.4.5/32 tos=5 fwmark=2 fwmark=1 table=10 table=20",
70 "RULE=from=1.2.3.4/32"
71 " to=2.3.4.5/32 tos=5 fwmark=1/0 table=20");
72
73 test_rule_serialization("ipv6",
74 "RULE=from=1::2/64 to=2::3/64 table=6", NULL);
75
76 assert_se(asprintf(&p, "RULE=from=1::2/64 to=2::3/64 table=%d", RT_TABLE_MAIN) >= 0);
77 test_rule_serialization("default table",
78 "RULE=from=1::2/64 to=2::3/64", p);
79
9491f55f
ZJS
80 test_rule_serialization("incoming interface",
81 "RULE=from=1::2/64 to=2::3/64 table=1 iif=lo",
82 "RULE=from=1::2/64 to=2::3/64 iif=lo table=1");
83
84 test_rule_serialization("outgoing interface",
85 "RULE=from=1::2/64 to=2::3/64 oif=eth0 table=1", NULL);
86
93f9da6e
ZJS
87 test_rule_serialization("freeing interface names",
88 "RULE=from=1::2/64 to=2::3/64 iif=e0 iif=e1 oif=e0 oif=e1 table=1",
89 "RULE=from=1::2/64 to=2::3/64 iif=e1 oif=e1 table=1");
90
7379f3de
ZJS
91 return 0;
92}