-
Notifications
You must be signed in to change notification settings - Fork 241
/
trinity.1
169 lines (128 loc) · 4.4 KB
/
trinity.1
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
.TH TRINITY 1 Trinity trinity\-1.5
.nh
.SH NAME
Trinity - Linux system call fuzzer
.SH DESCRIPTION
"After the initial euphoria of witnessing the explosion had passed, test
director Kenneth Bainbridge commented to Los Alamos director J. Robert
Oppenheimer, "Now we are all sons of bitches." Oppenheimer later stated
that while watching the test he was reminded of a line from the Hindu
scripture the Bhagavad Gita:
Now I am become Death, the destroyer of worlds."
.SH SYNOPSIS
System call fuzzers aren't a particularly new idea. As far back as 1991,
people have written apps that bomb syscall inputs with garbage data,
that have had a variety of success in crashing assorted operating systems.
After fixing the obvious dumb bugs however, a majority of the time
these calls will just by rejected by the kernel very near the beginning
of their function entry point as basic parameter validation is performed.
Trinity is a system call fuzzer which employs some techniques to
pass semi-intelligent arguments to the syscalls being called.
The intelligence features include:
\- If a system call expects a certain datatype as an argument
(for example a file descriptor) it gets passed one.
This is the reason for the slow initial startup, as it generates a
list of fd's of files it can read from /sys, /proc and /dev
and then supplements this with fd's for various network protocol sockets.
(Information on which protocols succeed/fail is cached on the first run,
greatly increasing the speed of subsequent runs).
\- If a system call only accepts certain values as an argument,
(for example a 'flags' field), trinity has a list of all the valid
flags that may be passed.
Just to throw a spanner in the works, occasionally, it will bitflip
one of the flags, just to make things more interesting.
\- If a system call only takes a range of values, the random value
passed is biased to usually fit within that range.
Trinity logs it's output to a files (1 for each child process), and fsync's
the files before it actually makes the system call. This way, should you trigger
something which panics the kernel, you should be able to find out exactly what
happened by examining the log.
There are several test harnesses provided (test-*.sh), which run trinity in
various modes and takes care of things like cpu affinity, and makes sure it runs from the
tmp directory. (Handy for cleaning up any garbage named files; just rm -rf tmp afterwards)
.SH OPTIONS
.TP
\fI \-\-arch \-a\fP
Selects syscalls for the specified architecture (32 or 64). Both by default.
.TP
\fI \-\-bdev \-b\ <node>\fP
Add \/dev\/\fP node to list of block devices to use for destructive tests.
.TP
\fI \-\-children \-C \fP
Specify number of child processes
.TP
\fI \-\-debug \-D\fP
Enable debug
.TP
\fI\-\-dropprivs \-X\fP
If run as root, switch to nobody \fB[EXPERIMENTAL]
.TP
\fI\-\-exclude \-x\fP
Don't call a specific syscall
.TP
\fI\-\-enable\-fds or \-\-disable\-fds\fp
Options are: sockets, pipes, perf, epoll, eventfd, pseudo, timerfd,
testfile, memfd and drm
.TP
\fI\-\-group \-g = {vfs,vm}\fP
Only run syscalls from a certain group.
.TP
\fI\-\-ioctls \-I\fP
List all ioctls.
.TP
\fI\-\-kernel_taint \-T\fP
Controls which kernel taint flags should be considered.
.TP
\fI\-\-list \-L\fP
List all syscalls known on this architecture.
.TP
\fI\-\-logging \-l\fP
off=disable logging.
<dirname> specify a directory where logfiles will be placed.
.TP
\fI\-\-domain \-P\fP
Specify specific network domain for sockets.
.TP
\fI\-\-no_domain \-E\fP
Specify network domains to be excluded from testing.
.TP
\fI\-\-quiet \-q\fP
Less output.
.TP
\fI\-\-random \-r# \fP
Pick N syscalls at random and just fuzz those
.TP
\fI\-\-syslog \-S\fP
Log important info to syslog. Useful if syslog is remote.
.TP
\fI\-\-verbose \-v\fP
Increase output verbosity.
.TP
\fI\-\-victims \-V\fP
Path to victim files.
.TP
\fI\-c# @\fP
Target specific syscall, takes syscall name as parameter and optionally 32 or
64 as bit\-width. Default is both.
.TP
\fI\-N#\fP
Do # syscalls then exit.
.TP
\fI\-p\fP
Pause after syscall.
.TP
\fB\-s#\fP
use # as random seed.
.SH EXAMPLES
.TP
.B trinity -c splice
Stress test the splice syscall
.TP
.B trinity \-x splice
Call every syscall except for splice.
.TP
.B trinity \-qq \-l off \-C16
Turn off logging, and suppress most output to run as fast as possible. Use 16 child processes
.fi
.SH AUTHOR
Trinity is written by Dave Jones <[email protected]>