-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
afl.pyx
235 lines (210 loc) · 7.1 KB
/
afl.pyx
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
# Copyright © 2014-2018 Jakub Wilk <jwilk@jwilk.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#cython: autotestdict=False
#cython: c_string_encoding=default
#cython: cdivision=True
#cython: language_level=2
'''
American Fuzzy Lop fork server and instrumentation for pure-Python code
'''
__version__ = '0.7.4'
cdef object os, signal, struct, sys, warnings
import os
import signal
import struct
import sys
import warnings
cdef extern from *:
# These constants must be kept in sync with afl-fuzz:
'''
#define SHM_ENV_VAR "__AFL_SHM_ID"
#define FORKSRV_FD 198
#define MAP_SIZE_POW2 16
#define MAP_SIZE (1 << MAP_SIZE_POW2)
'''
extern const char *SHM_ENV_VAR
extern int FORKSRV_FD
extern int MAP_SIZE
from cpython.exc cimport PyErr_SetFromErrno
from libc cimport errno
from libc.signal cimport SIG_DFL
from libc.stddef cimport size_t
from libc.stdint cimport uint32_t
from libc.stdlib cimport getenv
from libc.string cimport strlen
from posix.signal cimport sigaction, sigaction_t, sigemptyset
cdef extern from 'sys/shm.h':
unsigned char *shmat(int shmid, void *shmaddr, int shmflg)
cdef unsigned char *afl_area = NULL
cdef unsigned int prev_location = 0
cdef inline unsigned int lhash(const char *key, size_t offset):
# 32-bit Fowler–Noll–Vo hash function
cdef size_t len = strlen(key)
cdef uint32_t h = 0x811C9DC5
while len > 0:
h ^= <unsigned char> key[0]
h *= 0x01000193
len -= 1
key += 1
while offset > 0:
h ^= <unsigned char> offset
h *= 0x01000193
offset >>= 8
return h
def _hash(key, offset):
# This function is not a part of public API.
# It is provided only to facilitate testing.
return lhash(key, offset)
cdef object trace
def trace(frame, event, arg):
global prev_location, tstl_mode
cdef unsigned int location, offset
cdef object filename = frame.f_code.co_filename
if tstl_mode and (filename[-7:] in ['sut.py', '/sut.py']):
return None
location = (
lhash(filename, frame.f_lineno)
% MAP_SIZE
)
offset = location ^ prev_location
prev_location = location // 2
afl_area[offset] += 1
# TODO: make it configurable which modules are instrumented, and which are not
return trace
cdef int except_signal_id = 0
cdef object except_signal_name = os.getenv('PYTHON_AFL_SIGNAL') or '0'
if except_signal_name.isdigit():
except_signal_id = int(except_signal_name)
else:
if except_signal_name[:3] != 'SIG':
except_signal_name = 'SIG' + except_signal_name
except_signal_id = getattr(signal, except_signal_name)
cdef object excepthook
def excepthook(tp, value, traceback):
os.kill(os.getpid(), except_signal_id)
cdef bint init_done = False
cdef bint tstl_mode = False
cdef int _init(bint persistent_mode) except -1:
global afl_area, init_done, tstl_mode
tstl_mode = os.getenv('PYTHON_AFL_TSTL') is not None
use_forkserver = True
try:
os.write(FORKSRV_FD + 1, b'\0\0\0\0')
except OSError as exc:
if exc.errno == errno.EBADF:
use_forkserver = False
else:
raise
if init_done:
raise RuntimeError('AFL already initialized')
init_done = True
child_stopped = False
child_pid = 0
cdef sigaction_t old_sigchld
cdef sigaction_t dfl_sigchld
dfl_sigchld.sa_handler = SIG_DFL
dfl_sigchld.sa_sigaction = NULL
dfl_sigchld.sa_flags = 0
sigemptyset(&dfl_sigchld.sa_mask)
if use_forkserver:
rc = sigaction(signal.SIGCHLD, &dfl_sigchld, &old_sigchld)
if rc:
PyErr_SetFromErrno(OSError)
while use_forkserver:
[child_killed] = struct.unpack('I', os.read(FORKSRV_FD, 4))
if child_stopped and child_killed:
os.waitpid(child_pid, 0)
child_stopped = False
if child_stopped:
os.kill(child_pid, signal.SIGCONT)
child_stopped = False
else:
child_pid = os.fork()
if not child_pid:
# child:
break
# parent:
os.write(FORKSRV_FD + 1, struct.pack('I', child_pid))
(child_pid, status) = os.waitpid(child_pid, os.WUNTRACED if persistent_mode else 0)
child_stopped = os.WIFSTOPPED(status)
os.write(FORKSRV_FD + 1, struct.pack('I', status))
if use_forkserver:
rc = sigaction(signal.SIGCHLD, &old_sigchld, NULL)
if rc:
PyErr_SetFromErrno(OSError)
os.close(FORKSRV_FD)
os.close(FORKSRV_FD + 1)
if except_signal_id != 0:
sys.excepthook = excepthook
cdef const char * afl_shm_id = getenv(SHM_ENV_VAR)
if afl_shm_id == NULL:
return 0
afl_area = shmat(int(afl_shm_id), NULL, 0)
if afl_area == <void*> -1:
PyErr_SetFromErrno(OSError)
sys.settrace(trace)
return 0
def init():
'''
init()
Start the fork server and enable instrumentation.
This function should be called as late as possible,
but before the input is read.
'''
_init(persistent_mode=False)
def start():
'''
deprecated alias for afl.init()
'''
warnings.warn('afl.start() is deprecated, use afl.init() instead', DeprecationWarning)
_init(persistent_mode=False)
cdef bint persistent_allowed = False
cdef unsigned long persistent_counter = 0
def loop(max=None):
'''
while loop([max]):
...
Start the fork server and enable instrumentation,
then run the code inside the loop body in persistent mode.
afl-fuzz >= 1.82b is required for this feature.
'''
global persistent_allowed, persistent_counter, prev_location
prev_location = 0
if persistent_counter == 0:
persistent_allowed = os.getenv('PYTHON_AFL_PERSISTENT') is not None
_init(persistent_mode=persistent_allowed)
persistent_counter = 1
return True
cont = persistent_allowed and (
max is None or
persistent_counter < max
)
if cont:
os.kill(os.getpid(), signal.SIGSTOP)
persistent_counter += 1
return True
else:
sys.settrace(None)
return False
__all__ = [
'init',
'loop',
]
# vim:ts=4 sts=4 sw=4 et