-
Notifications
You must be signed in to change notification settings - Fork 241
/
params.c
345 lines (287 loc) · 8.91 KB
/
params.c
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
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <getopt.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "bdevs.h"
#include "child.h"
#include "ftrace.h"
#include "log.h"
#include "net.h"
#include "params.h"
#include "domains.h"
#include "random.h"
#include "syscall.h"
#include "tables.h"
#include "taint.h"
#include "trinity.h" // progname
bool set_debug = FALSE;
bool do_specific_syscall = FALSE;
bool do_exclude_syscall = FALSE;
bool do_32_arch = TRUE;
bool do_64_arch = TRUE;
unsigned int specific_domain = 0;
unsigned int user_specified_children = 0;
bool do_specific_domain = FALSE;
bool no_domains[TRINITY_PF_MAX];
bool dry_run = FALSE;
bool show_unannotated = FALSE;
bool show_syscall_list = FALSE;
bool show_ioctl_list = FALSE;
unsigned char quiet_level = 0;
bool verbose = FALSE;
bool dangerous = FALSE;
bool dropprivs = FALSE;
bool do_syslog = FALSE;
bool random_selection = FALSE;
unsigned int random_selection_num;
bool clowntown = FALSE;
bool show_stats = FALSE;
bool user_set_seed = FALSE;
unsigned char desired_group = GROUP_NONE;
char *specific_domain_optarg = NULL;
char *victim_path = NULL;
int logging = LOGGING_FILES;
char *logging_args = NULL;
unsigned int kernel_taint_mask = 0xFFFFFFFF;
bool kernel_taint_param_occured = FALSE;
void enable_disable_fd_usage(void)
{
//TODO: Build this dynamically
outputerr(" --enable-fds/--disable-fds= {sockets,pipes,perf,epoll,eventfd,pseudo,timerfd,testfile,memfd,drm}\n");
}
static void usage(void)
{
outputerr("%s\n", progname);
outputerr(" --arch, -a: selects syscalls for the specified architecture (32 or 64). Both by default.\n");
outputerr(" --bdev, -b <node>: Add /dev node to list of block devices to use for destructive tests..\n");
outputerr(" --children,-C: specify number of child processes\n");
outputerr(" --debug,-D: enable debug\n");
outputerr(" --dropprivs, -X: if run as root, switch to nobody [EXPERIMENTAL]\n");
outputerr(" --exclude,-x: don't call a specific syscall\n");
enable_disable_fd_usage();
outputerr(" --ftrace-dump-file: specify file that ftrace buffer gets dumped to if kernel becomes tainted.\n");
outputerr(" --group,-g = {vfs,vm}: only run syscalls from a certain group.\n");
outputerr(" --ioctls,-I: list all ioctls.\n");
outputerr(" --kernel_taint, -T: controls which kernel taint flags should be considered, for more details refer to README file. \n");
outputerr(" --list,-L: list all syscalls known on this architecture.\n");
outputerr(" --logging,-l [off, <dir>, <hostname>] : disable logging to files, log to a directory, or log over udp to a remote trinity server.\n");
outputerr(" --domain,-P: specify specific network domain for sockets.\n"); //FIXME: P used to be 'proto' pick something better.
outputerr(" --no_domain,-E: specify network domains to be excluded from testing.\n");
outputerr(" --quiet,-q: less output.\n");
outputerr(" --random,-r#: pick N syscalls at random and just fuzz those\n");
outputerr(" --stats: show errno distribution per syscall before exiting\n");
outputerr(" --syslog,-S: log important info to syslog. (useful if syslog is remote)\n");
outputerr(" --verbose,-v: increase output verbosity.\n");
outputerr(" --victims,-V: path to victim files.\n");
outputerr("\n");
outputerr(" -c#,@: target specific syscall (takes syscall name as parameter and optionally 32 or 64 as bit-width. Default:both).\n");
outputerr(" -N#: do # syscalls then exit.\n");
outputerr(" -s#: use # as random seed.\n");
exit(EXIT_SUCCESS);
}
static const char paramstr[] = "a:b:c:C:dDE:g:hIl:LN:P:qr:s:ST:V:vx:X";
static const struct option longopts[] = {
{ "arch", required_argument, NULL, 'a' },
{ "bdev", required_argument, NULL, 'b' },
{ "children", required_argument, NULL, 'C' },
{ "clowntown", no_argument, NULL, 0 },
{ "dangerous", no_argument, NULL, 'd' },
{ "dropprivs", no_argument, NULL, 'X'},
{ "debug", no_argument, NULL, 'D' },
{ "disable-fds", required_argument, NULL, 0 },
{ "dry-run", no_argument, NULL, 0 },
{ "enable-fds", required_argument, NULL, 0 },
{ "exclude", required_argument, NULL, 'x' },
{ "ftrace-dump-file", required_argument, NULL, 0 },
{ "group", required_argument, NULL, 'g' },
{ "kernel_taint", required_argument, NULL, 'T' },
{ "help", no_argument, NULL, 'h' },
{ "list", no_argument, NULL, 'L' },
{ "ioctls", no_argument, NULL, 'I' },
{ "logging", required_argument, NULL, 'l' },
{ "no_domain", required_argument, NULL, 'E' },
{ "domain", required_argument, NULL, 'P' },
{ "quiet", no_argument, NULL, 'q' },
{ "random", required_argument, NULL, 'r' },
{ "stats", no_argument, NULL, 0 },
{ "show-unannotated", no_argument, NULL, 0 },
{ "syslog", no_argument, NULL, 'S' },
{ "verbose", no_argument, NULL, 'v' },
{ "victims", required_argument, NULL, 'V' },
{ NULL, 0, NULL, 0 } };
static void parse_logging(void)
{
struct stat sb;
int ret;
if (!strcmp(optarg, "off")) {
logging = LOGGING_DISABLED;
return;
}
logging_args = strdup(optarg);
// Is the param a directory ?
ret = stat(logging_args, &sb);
if (ret == 0) {
if (S_ISDIR(sb.st_mode)) {
logging = LOGGING_FILES;
return;
}
}
}
void parse_args(int argc, char *argv[])
{
int opt;
int opt_index = 0;
while ((opt = getopt_long(argc, argv, paramstr, longopts, &opt_index)) != -1) {
switch (opt) {
default:
if (opt == '?')
exit(EXIT_FAILURE);
else
outputstd("opt:%c\n", opt);
return;
case 'a':
/* One of the architectures selected*/
do_32_arch = FALSE;
do_64_arch = FALSE;
if (strcmp(optarg, "64") == 0) {
do_32_arch = FALSE;
do_64_arch = TRUE;
} else if (strcmp(optarg, "32") == 0) {
do_32_arch = TRUE;
do_64_arch = FALSE;
} else {
outputstd("can't parse %s\n", optarg);
exit(EXIT_FAILURE);
}
break;
case 'b':
init_bdev_list();
process_bdev_param(optarg);
dump_bdev_list();
outputstd("--bdev doesn't do anything useful yet.\n");
exit(EXIT_SUCCESS);
case 'c':
/* syscalls are all disabled at this point. enable the syscall we care about. */
do_specific_syscall = TRUE;
toggle_syscall(optarg, TRUE);
break;
case 'C':
user_specified_children = strtoll(optarg, NULL, 10);
max_children = user_specified_children;
if (max_children == 0) {
outputerr("zero children ? WAT?\n");
exit(EXIT_FAILURE);
}
break;
case 'd':
dangerous = TRUE;
break;
case 'D':
set_debug = TRUE;
break;
case 'E':
parse_exclude_domains(optarg);
break;
case 'g':
if (!strcmp(optarg, "vm"))
desired_group = GROUP_VM;
if (!strcmp(optarg, "vfs"))
desired_group = GROUP_VFS;
break;
/* Show help */
case 'h':
usage();
exit(EXIT_SUCCESS);
case 'I':
show_ioctl_list = TRUE;
break;
case 'l':
parse_logging();
break;
case 'L':
show_syscall_list = TRUE;
break;
/* Set number of syscalls to do */
case 'N':
syscalls_todo = strtoll(optarg, NULL, 10);
break;
case 'P':
do_specific_domain = TRUE;
specific_domain = strtol(optarg, NULL, 10);
specific_domain_optarg = optarg;
break;
case 'q':
quiet_level++;
break;
case 'r':
if (do_exclude_syscall == TRUE) {
outputerr("-r needs to be before any -x options.\n");
exit(EXIT_FAILURE);
}
random_selection = TRUE;
random_selection_num = strtol(optarg, NULL, 10);
break;
/* Set seed */
case 's':
seed = strtol(optarg, NULL, 10);
user_set_seed = TRUE;
break;
case 'S':
do_syslog = TRUE;
break;
case 'T':
//Load mask for kernel taint flags.
process_taint_arg(optarg);
if (kernel_taint_mask != 0xFFFFFFFF)
outputstd("Custom kernel taint mask has been specified: 0x%08x (%d).\n",
kernel_taint_mask, kernel_taint_mask);
break;
case 'v':
verbose = TRUE;
break;
case 'V':
if (victim_path == NULL) {
victim_path = strdup(optarg);
break;
} else {
outputstd("Sorry, only one victim path right now.\n");
exit(EXIT_FAILURE);
}
//FIXME: Later, allow for multiple victim files
break;
case 'x':
do_exclude_syscall = TRUE;
toggle_syscall(optarg, FALSE);
break;
case 'X':
if (getuid() == 0)
dropprivs = TRUE;
else
outputstd("Already running unprivileged, can't drop privs\n");
break;
case 0:
if (strcmp("clowntown", longopts[opt_index].name) == 0)
clowntown = TRUE;
if (strcmp("disable-fds", longopts[opt_index].name) == 0)
process_fds_param(optarg, FALSE);
if (strcmp("dry-run", longopts[opt_index].name) == 0)
dry_run = TRUE;
if (strcmp("enable-fds", longopts[opt_index].name) == 0)
process_fds_param(optarg, TRUE);
if (strcmp("ftrace-dump-file", longopts[opt_index].name) == 0)
ftracedumpname = strdup(optarg);
if (strcmp("show-unannotated", longopts[opt_index].name) == 0)
show_unannotated = TRUE;
if (strcmp("stats", longopts[opt_index].name) == 0)
show_stats = TRUE;
break;
}
}
if (quiet_level > MAX_LOGLEVEL)
quiet_level = MAX_LOGLEVEL;
quiet_level = MAX_LOGLEVEL - quiet_level;
output(1, "Done parsing arguments.\n");
}