1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
#!/usr/bin/env python3
# encoding: utf-8
import os
import sys
import shlex
import argparse
from subprocess import Popen, PIPE
def run_proc(args, shell = False, input = None):
"""A simple wrapper around Popen, returning (rc, stdout, stderr)"""
process = Popen(args, text = True, shell = shell,
stdin = PIPE, stdout = PIPE, stderr = PIPE)
output, error = process.communicate(input)
return (process.returncode, output, error)
keywords = ("iptables-translate", "ip6tables-translate", "ebtables-translate")
xtables_nft_multi = 'xtables-nft-multi'
if sys.stdout.isatty():
colors = {"magenta": "\033[95m", "green": "\033[92m", "yellow": "\033[93m",
"red": "\033[91m", "end": "\033[0m"}
else:
colors = {"magenta": "", "green": "", "yellow": "", "red": "", "end": ""}
def magenta(string):
return colors["magenta"] + string + colors["end"]
def red(string):
return colors["red"] + string + colors["end"]
def yellow(string):
return colors["yellow"] + string + colors["end"]
def green(string):
return colors["green"] + string + colors["end"]
def test_one_xlate(name, sourceline, expected, result):
rc, output, error = run_proc([xtables_nft_multi] + shlex.split(sourceline))
if rc != 0:
result.append(name + ": " + red("Error: ") + "iptables-translate failure")
result.append(error)
return False
translation = output.rstrip(" \n")
if translation != expected:
result.append(name + ": " + red("Fail"))
result.append(magenta("src: ") + sourceline.rstrip(" \n"))
result.append(magenta("exp: ") + expected)
result.append(magenta("res: ") + translation + "\n")
return False
return True
def test_one_replay(name, sourceline, expected, result):
global args
searchline = None
if sourceline.find(';') >= 0:
sourceline, searchline = sourceline.split(';')
srcwords = sourceline.split()
srccmd = srcwords[0]
ipt = srccmd.split('-')[0]
table_idx = -1
chain_idx = -1
table_name = "filter"
chain_name = None
for idx in range(1, len(srcwords)):
if srcwords[idx] in ["-A", "-I", "--append", "--insert"]:
chain_idx = idx
chain_name = srcwords[idx + 1]
elif srcwords[idx] in ["-t", "--table"]:
table_idx = idx
table_name = srcwords[idx + 1]
if not chain_name:
return True # nothing to do?
if searchline is None:
# adjust sourceline as required
checkcmd = srcwords[:]
checkcmd[0] = ipt
checkcmd[chain_idx] = "--check"
else:
checkcmd = [ipt, "-t", table_name]
checkcmd += ["--check", chain_name, searchline]
fam = ""
if srccmd.startswith("ip6"):
fam = "ip6 "
elif srccmd.startswith("ebt"):
fam = "bridge "
expected = [ l.removeprefix("nft ").strip(" '") for l in expected.split("\n") ]
nft_input = [
"flush ruleset",
"add table " + fam + table_name,
"add chain " + fam + table_name + " " + chain_name,
] + expected
rc, output, error = run_proc([args.nft, "-f", "-"], shell = False, input = "\n".join(nft_input))
if rc != 0:
result.append(name + ": " + red("Replay Fail"))
result.append(args.nft + " call failed: " + error.rstrip('\n'))
for line in nft_input:
result.append(magenta("input: ") + line)
return False
rc, output, error = run_proc([xtables_nft_multi] + checkcmd)
if rc != 0:
result.append(name + ": " + red("Check Fail"))
result.append(magenta("check: ") + " ".join(checkcmd))
result.append(magenta("error: ") + error)
rc, output, error = run_proc([xtables_nft_multi, ipt + "-save"])
for l in output.split("\n"):
result.append(magenta("ipt: ") + l)
rc, output, error = run_proc([args.nft, "list", "ruleset"])
for l in output.split("\n"):
result.append(magenta("nft: ") + l)
return False
return True
def run_test(name, payload):
global xtables_nft_multi
global args
test_passed = True
tests = passed = failed = errors = 0
result = []
line = payload.readline()
while line:
if not line.startswith(keywords):
line = payload.readline()
continue
sourceline = replayline = line.rstrip("\n")
if line.find(';') >= 0:
sourceline = line.split(';')[0]
expected = payload.readline().rstrip(" \n")
next_expected = payload.readline()
if next_expected.startswith("nft"):
expected += "\n" + next_expected.rstrip(" \n")
line = payload.readline()
else:
line = next_expected
tests += 1
if test_one_xlate(name, sourceline, expected, result):
passed += 1
else:
errors += 1
test_passed = False
continue
if args.replay:
tests += 1
if test_one_replay(name, replayline, expected, result):
passed += 1
else:
errors += 1
test_passed = False
rc, output, error = run_proc([args.nft, "flush", "ruleset"])
if rc != 0:
result.append(name + ": " + red("Fail"))
result.append("nft flush ruleset call failed: " + error)
if (passed == tests) and not args.test:
print(name + ": " + green("OK"))
if not test_passed:
print("\n".join(result), file=sys.stderr)
return tests, passed, failed, errors
def load_test_files():
test_files = total_tests = total_passed = total_error = total_failed = 0
tests = sorted(os.listdir("extensions"))
for test in ['extensions/' + f for f in tests if f.endswith(".txlate")]:
with open(test, "r") as payload:
tests, passed, failed, errors = run_test(test, payload)
test_files += 1
total_tests += tests
total_passed += passed
total_failed += failed
total_error += errors
return (test_files, total_tests, total_passed, total_failed, total_error)
def spawn_netns():
# prefer unshare module
try:
import unshare
unshare.unshare(unshare.CLONE_NEWNET)
return True
except:
pass
# sledgehammer style:
# - call ourselves prefixed by 'unshare -n' if found
# - pass extra --no-netns parameter to avoid another recursion
try:
import shutil
unshare = shutil.which("unshare")
if unshare is None:
return False
sys.argv.append("--no-netns")
os.execv(unshare, [unshare, "-n", sys.executable] + sys.argv)
except:
pass
return False
def main():
global xtables_nft_multi
if args.replay:
if os.getuid() != 0:
print("Replay test requires root, sorry", file=sys.stderr)
return
if not args.no_netns and not spawn_netns():
print("Cannot run in own namespace, connectivity might break",
file=sys.stderr)
if not args.host:
os.putenv("XTABLES_LIBDIR", os.path.abspath("extensions"))
xtables_nft_multi = os.path.abspath(os.path.curdir) \
+ '/iptables/' + xtables_nft_multi
files = tests = passed = failed = errors = 0
if args.test:
if not args.test.endswith(".txlate"):
args.test += ".txlate"
try:
with open(args.test, "r") as payload:
files = 1
tests, passed, failed, errors = run_test(args.test, payload)
except IOError:
print(red("Error: ") + "test file does not exist", file=sys.stderr)
return 99
else:
files, tests, passed, failed, errors = load_test_files()
if files > 1:
file_word = "files"
else:
file_word = "file"
print("%d test %s, %d tests, %d tests passed, %d tests failed, %d errors"
% (files, file_word, tests, passed, failed, errors))
return passed - tests
parser = argparse.ArgumentParser()
parser.add_argument('-H', '--host', action='store_true',
help='Run tests against installed binaries')
parser.add_argument('-R', '--replay', action='store_true',
help='Replay tests to check iptables-nft parser')
parser.add_argument('-n', '--nft', type=str, default='nft',
help='Replay using given nft binary (default: \'%(default)s\')')
parser.add_argument('--no-netns', action='store_true',
help='Do not run testsuite in own network namespace')
parser.add_argument("test", nargs="?", help="run only the specified test file")
args = parser.parse_args()
sys.exit(main())
|