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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
/*-
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright 2020 Alex Richardson <arichardson@FreeBSD.org>
*
* This software was developed by SRI International and the University of
* Cambridge Computer Laboratory (Department of Computer Science and
* Technology) under DARPA contract HR0011-18-C-0016 ("ECATS"), as part of the
* DARPA SSITH research programme.
*
* This work was supported by Innovate UK project 105694, "Digital Security by
* Design (DSbD) Technology Platform Prototype".
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/types.h>
#include <sys/param.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <spawn.h>
#include <sys/module.h>
#include <sys/sbuf.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <atf-c.h>
/*
* Tests 0001-0999 are copied from OpenBSD's regress/sbin/pfctl.
* Tests 1001-1999 are ours (FreeBSD's own).
*
* pf: Run pfctl -nv on pfNNNN.in and check that the output matches pfNNNN.ok.
* Copied from OpenBSD. Main differences are some things not working
* in FreeBSD:
* * The action 'match'
* * The command 'set reassemble'
* * The 'from'/'to' options together with 'route-to'
* * The option 'scrub' (it is an action in FreeBSD)
* * Accepting undefined routing tables in actions (??: see pf0093.in)
* * The 'route' option
* * The 'set queue def' option
* selfpf: Feed pfctl output through pfctl again and verify it stays the same.
* Copied from OpenBSD.
*/
static bool
check_pf_module_available(void)
{
int modid;
struct module_stat stat;
if ((modid = modfind("pf")) < 0) {
warn("pf module not found");
return false;
}
stat.version = sizeof(struct module_stat);
if (modstat(modid, &stat) < 0) {
warn("can't stat pf module id %d", modid);
return false;
}
return (true);
}
extern char **environ;
static struct sbuf *
read_fd(int fd, size_t sizehint)
{
struct sbuf *sb;
ssize_t count;
char buffer[MAXBSIZE];
sb = sbuf_new(NULL, NULL, sizehint, SBUF_AUTOEXTEND);
errno = 0;
while ((count = read(fd, buffer, sizeof(buffer) - 1)) > 0) {
sbuf_bcat(sb, buffer, count);
}
ATF_REQUIRE_ERRNO(0, count == 0 && "Should have reached EOF");
sbuf_finish(sb); /* Ensure NULL-termination */
return (sb);
}
static struct sbuf *
read_file(const char *filename)
{
struct stat s;
struct sbuf *result;
int fd;
errno = 0;
ATF_REQUIRE_EQ_MSG(stat(filename, &s), 0, "cannot stat %s", filename);
fd = open(filename, O_RDONLY);
ATF_REQUIRE_ERRNO(0, fd > 0);
result = read_fd(fd, s.st_size);
ATF_REQUIRE_ERRNO(0, close(fd) == 0);
return (result);
}
static void
run_command_pipe(const char *argv[], struct sbuf **output)
{
posix_spawn_file_actions_t action;
pid_t pid;
int pipefds[2];
int status;
ATF_REQUIRE_ERRNO(0, pipe(pipefds) == 0);
posix_spawn_file_actions_init(&action);
posix_spawn_file_actions_addclose(&action, STDIN_FILENO);
posix_spawn_file_actions_addclose(&action, pipefds[1]);
posix_spawn_file_actions_adddup2(&action, pipefds[0], STDOUT_FILENO);
posix_spawn_file_actions_adddup2(&action, pipefds[0], STDERR_FILENO);
printf("Running ");
for (int i=0; argv[i] != NULL; i++)
printf("%s ", argv[i]);
printf("\n");
status = posix_spawnp(
&pid, argv[0], &action, NULL, __DECONST(char **, argv), environ);
ATF_REQUIRE_EQ_MSG(
status, 0, "posix_spawn failed: %s", strerror(errno));
posix_spawn_file_actions_destroy(&action);
close(pipefds[0]);
(*output) = read_fd(pipefds[1], 0);
printf("---\n%s---\n", sbuf_data(*output));
ATF_REQUIRE_EQ(waitpid(pid, &status, 0), pid);
ATF_REQUIRE_MSG(WIFEXITED(status),
"%s returned non-zero! Output:\n %s", argv[0], sbuf_data(*output));
close(pipefds[1]);
}
static void
run_command(const char *argv[])
{
posix_spawn_file_actions_t action;
pid_t pid;
int status;
posix_spawn_file_actions_init(&action);
posix_spawn_file_actions_addopen(&action, STDOUT_FILENO, "/dev/null", O_WRONLY, 0);
posix_spawn_file_actions_addopen(&action, STDERR_FILENO, "/dev/null", O_WRONLY, 0);
posix_spawn_file_actions_addopen(&action, STDIN_FILENO, "/dev/zero", O_RDONLY, 0);
printf("Running ");
for (int i=0; argv[i] != NULL; i++)
printf("%s ", argv[i]);
printf("\n");
status = posix_spawnp(
&pid, argv[0], &action, NULL, __DECONST(char **, argv), environ);
posix_spawn_file_actions_destroy(&action);
waitpid(pid, &status, 0);
}
static void
run_pfctl_test(const char *input_path, const char *output_path,
const atf_tc_t *tc, bool test_failure)
{
char input_files_path[PATH_MAX];
struct sbuf *expected_output;
struct sbuf *real_output;
if (!check_pf_module_available())
atf_tc_skip("pf(4) is not loaded");
/* The test inputs need to be able to use relative includes. */
snprintf(input_files_path, sizeof(input_files_path), "%s/files",
atf_tc_get_config_var(tc, "srcdir"));
ATF_REQUIRE_ERRNO(0, chdir(input_files_path) == 0);
expected_output = read_file(output_path);
const char *argv[] = { "pfctl", "-o", "none", "-nvf", input_path,
NULL };
run_command_pipe(argv, &real_output);
if (test_failure) {
/*
* Error output contains additional strings like line number
* or "skipping rule due to errors", so use regexp to see
* if the expected error message is there somewhere.
*/
ATF_CHECK_MATCH(sbuf_data(expected_output), sbuf_data(real_output));
sbuf_delete(expected_output);
} else {
ATF_CHECK_STREQ(sbuf_data(expected_output), sbuf_data(real_output));
sbuf_delete(expected_output);
}
sbuf_delete(real_output);
}
static void
do_pf_test_iface_create(const char *number)
{
struct sbuf *ifconfig_output;
char ifname[16] = {0};
snprintf(ifname, sizeof(ifname), "vlan%s", number);
const char *argv[] = { "ifconfig", ifname, "create", NULL};
run_command_pipe(argv, &ifconfig_output);
sbuf_delete(ifconfig_output);
const char *argv_inet[] = { "ifconfig", ifname, "inet", "203.0.113.5/30", NULL};
run_command_pipe(argv_inet, &ifconfig_output);
sbuf_delete(ifconfig_output);
const char *argv_inet6[] = { "ifconfig", ifname, "inet6", "2001:db8::203.0.113.5/126", NULL};
run_command_pipe(argv_inet6, &ifconfig_output);
sbuf_delete(ifconfig_output);
const char *argv_show[] = { "ifconfig", ifname, NULL};
run_command_pipe(argv_show, &ifconfig_output);
sbuf_delete(ifconfig_output);
}
static void
do_pf_test_iface_remove(const char *number)
{
char ifname[16] = {0};
snprintf(ifname, sizeof(ifname), "vlan%s", number);
const char *argv[] = { "ifconfig", ifname, "destroy", NULL};
run_command(argv);
}
static void
do_pf_test(const char *number, const atf_tc_t *tc)
{
char *input_path;
char *expected_path;
asprintf(&input_path, "%s/files/pf%s.in",
atf_tc_get_config_var(tc, "srcdir"), number);
asprintf(&expected_path, "%s/files/pf%s.ok",
atf_tc_get_config_var(tc, "srcdir"), number);
run_pfctl_test(input_path, expected_path, tc, false);
free(input_path);
free(expected_path);
}
static void
do_pf_test_fail(const char *number, const atf_tc_t *tc)
{
char *input_path;
char *expected_path;
asprintf(&input_path, "%s/files/pf%s.in",
atf_tc_get_config_var(tc, "srcdir"), number);
asprintf(&expected_path, "%s/files/pf%s.fail",
atf_tc_get_config_var(tc, "srcdir"), number);
run_pfctl_test(input_path, expected_path, tc, true);
free(input_path);
free(expected_path);
}
static void
do_selfpf_test(const char *number, const atf_tc_t *tc)
{
char *expected_path;
asprintf(&expected_path, "%s/files/pf%s.ok",
atf_tc_get_config_var(tc, "srcdir"), number);
run_pfctl_test(expected_path, expected_path, tc, false);
free(expected_path);
}
/* Standard tests perform the normal test and then the selfpf test */
#define PFCTL_TEST(number, descr) \
ATF_TC(pf##number); \
ATF_TC_HEAD(pf##number, tc) \
{ \
atf_tc_set_md_var(tc, "descr", descr); \
} \
ATF_TC_BODY(pf##number, tc) \
{ \
do_pf_test(#number, tc); \
} \
ATF_TC(selfpf##number); \
ATF_TC_HEAD(selfpf##number, tc) \
{ \
atf_tc_set_md_var(tc, "descr", "Self " descr); \
} \
ATF_TC_BODY(selfpf##number, tc) \
{ \
do_selfpf_test(#number, tc); \
}
/* Tests for failure perform only the normal test */
#define PFCTL_TEST_FAIL(number, descr) \
ATF_TC(pf##number); \
ATF_TC_HEAD(pf##number, tc) \
{ \
atf_tc_set_md_var(tc, "descr", descr); \
} \
ATF_TC_BODY(pf##number, tc) \
{ \
do_pf_test_fail(#number, tc); \
}
/* Tests with interface perform only the normal test */
#define PFCTL_TEST_IFACE(number, descr) \
ATF_TC_WITH_CLEANUP(pf##number); \
ATF_TC_HEAD(pf##number, tc) \
{ \
atf_tc_set_md_var(tc, "descr", descr); \
atf_tc_set_md_var(tc, "execenv", "jail"); \
atf_tc_set_md_var(tc, "execenv.jail.params", "vnet"); \
} \
ATF_TC_BODY(pf##number, tc) \
{ \
do_pf_test_iface_create(#number); \
do_pf_test(#number, tc); \
} \
ATF_TC_CLEANUP(pf##number, tc) \
{ \
do_pf_test_iface_remove(#number); \
}
#include "pfctl_test_list.inc"
#undef PFCTL_TEST
#undef PFCTL_TEST_FAIL
#undef PFCTL_TEST_IFACE
ATF_TP_ADD_TCS(tp)
{
#define PFCTL_TEST(number, descr) \
ATF_TP_ADD_TC(tp, pf##number); \
ATF_TP_ADD_TC(tp, selfpf##number);
#define PFCTL_TEST_FAIL(number, descr) \
ATF_TP_ADD_TC(tp, pf##number);
#define PFCTL_TEST_IFACE(number, descr) \
ATF_TP_ADD_TC(tp, pf##number);
#include "pfctl_test_list.inc"
#undef PFCTL_TEST
#undef PFCTL_TEST_FAIL
#undef PFCTL_TEST_IFACE
return atf_no_error();
}
|