-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathlib.rs
More file actions
319 lines (289 loc) · 11.5 KB
/
lib.rs
File metadata and controls
319 lines (289 loc) · 11.5 KB
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
// SPDX-License-Identifier: CC0-1.0
use old_simplicity::types::Final as OldFinalTy;
use old_simplicity::Value as OldValue;
use simplicity::types::Final as FinalTy;
use simplicity::{BitIter, Value};
use std::sync::Arc;
mod program;
pub use program::ProgramControl;
/// A wrapper around a buffer which has utilities for extracting various
/// Simplicity types.
#[derive(Clone)]
pub struct Extractor<'f> {
data: &'f [u8],
bit_cache: u8,
bit_len: usize,
}
// More impls in the other modules.
impl<'f> Extractor<'f> {
/// Wrap the buffer in an extractor.
pub fn new(data: &'f [u8]) -> Self {
Self {
data,
bit_cache: 0,
bit_len: 0,
}
}
/// Attempt to yield a u8 from the fuzzer.
pub fn extract_u8(&mut self) -> Option<u8> {
if self.data.is_empty() {
None
} else {
let ret = self.data[0];
self.data = &self.data[1..];
Some(ret)
}
}
/// Attempt to yield a u16 from the fuzzer.
///
/// Internally, extracts in big-endian.
pub fn extract_u16(&mut self) -> Option<u16> {
Some((u16::from(self.extract_u8()?) << 8) + u16::from(self.extract_u8()?))
}
/// Attempt to yield a single bit from the fuzzer.
pub fn extract_bit(&mut self) -> Option<bool> {
if self.bit_len == 0 {
self.bit_cache = self.extract_u8()?;
self.bit_len = 8;
}
let ret = self.bit_cache & 1 == 1;
self.bit_len -= 1;
self.bit_cache >>= 1;
Some(ret)
}
/// Attempt to yield a type from the fuzzer.
pub fn extract_final_type(&mut self) -> Option<Arc<FinalTy>> {
// We can construct extremely large types by duplicating Arcs; there
// is no need to have an exponential blowup in the number of tasks.
const MAX_N_TASKS: usize = 300;
enum StackElem {
NeedType,
Binary { is_sum: bool, dupe: bool },
}
let mut task_stack = vec![StackElem::NeedType];
let mut result_stack = vec![];
while let Some(task) = task_stack.pop() {
match task {
StackElem::NeedType => {
if self.extract_bit()? {
result_stack.push(FinalTy::unit());
} else {
let is_sum = self.extract_bit()?;
let dupe = task_stack.len() >= MAX_N_TASKS || self.extract_bit()?;
task_stack.push(StackElem::Binary { is_sum, dupe });
if !dupe {
task_stack.push(StackElem::NeedType)
}
task_stack.push(StackElem::NeedType);
}
}
StackElem::Binary { is_sum, dupe } => {
let right = result_stack.pop().unwrap();
let left = if dupe {
Arc::clone(&right)
} else {
result_stack.pop().unwrap()
};
if is_sum {
result_stack.push(FinalTy::sum(left, right));
} else {
result_stack.push(FinalTy::product(left, right));
}
}
}
}
assert_eq!(result_stack.len(), 1);
result_stack.pop()
}
/// Attempt to yield a value from the fuzzer by constructing a type and then
/// reading a bitstring of that type, in the padded value encoding.
pub fn extract_value_padded(&mut self) -> Option<Value> {
let ty = self.extract_final_type()?;
if ty.bit_width() > 64 * 1024 * 1024 {
// little fuzzing value in producing massive values
return None;
}
let mut iter = BitIter::new(self.data.iter().copied());
let ret = Value::from_padded_bits(&mut iter, &ty).ok()?;
self.data = &self.data[iter.n_total_read().div_ceil(8)..];
Some(ret)
}
/// Attempt to yield a value from the fuzzer by constructing a type and then
/// reading a bitstring of that type, in the compact value encoding.
pub fn extract_value_compact(&mut self) -> Option<Value> {
let ty = self.extract_final_type()?;
if ty.bit_width() > 64 * 1024 * 1024 {
// little fuzzing value in producing massive values
return None;
}
let mut iter = BitIter::new(self.data.iter().copied());
let ret = Value::from_compact_bits(&mut iter, &ty).ok()?;
self.data = &self.data[iter.n_total_read().div_ceil(8)..];
Some(ret)
}
/// Attempt to yield a value from the fuzzer by constructing it directly.
pub fn extract_value_direct(&mut self) -> Option<Value> {
const MAX_N_TASKS: usize = 300;
const MAX_TY_WIDTH: usize = 10240;
enum StackElem {
NeedValue,
Left,
Right,
Product,
}
let mut task_stack = vec![StackElem::NeedValue];
let mut result_stack = vec![];
while let Some(task) = task_stack.pop() {
match task {
StackElem::NeedValue => match (self.extract_bit()?, self.extract_bit()?) {
(false, false) => result_stack.push(Value::unit()),
(false, true) => {
if task_stack.len() <= MAX_N_TASKS {
task_stack.push(StackElem::Product);
task_stack.push(StackElem::NeedValue);
task_stack.push(StackElem::NeedValue);
} else {
task_stack.push(StackElem::NeedValue);
}
}
(true, false) => {
task_stack.push(StackElem::Left);
task_stack.push(StackElem::NeedValue);
}
(true, true) => {
task_stack.push(StackElem::Right);
task_stack.push(StackElem::NeedValue);
}
},
StackElem::Product => {
let right = result_stack.pop().unwrap();
let left = result_stack.pop().unwrap();
result_stack.push(Value::product(left, right));
}
StackElem::Left => {
let child = result_stack.pop().unwrap();
let ty = self.extract_final_type()?;
if ty.bit_width() > MAX_TY_WIDTH {
return None;
}
result_stack.push(Value::left(child, ty));
}
StackElem::Right => {
let child = result_stack.pop().unwrap();
let ty = self.extract_final_type()?;
if ty.bit_width() > MAX_TY_WIDTH {
return None;
}
result_stack.push(Value::right(ty, child));
}
}
}
assert_eq!(result_stack.len(), 1);
result_stack.pop()
}
/// Attempt to yield a type from the fuzzer.
pub fn extract_old_final_type(&mut self) -> Option<Arc<OldFinalTy>> {
// We can construct extremely large types by duplicating Arcs; there
// is no need to have an exponential blowup in the number of tasks.
const MAX_N_TASKS: usize = 300;
enum StackElem {
NeedType,
Binary { is_sum: bool, dupe: bool },
}
let mut task_stack = vec![StackElem::NeedType];
let mut result_stack = vec![];
while let Some(task) = task_stack.pop() {
match task {
StackElem::NeedType => {
if self.extract_bit()? {
result_stack.push(OldFinalTy::unit());
} else {
let is_sum = self.extract_bit()?;
let dupe = task_stack.len() >= MAX_N_TASKS || self.extract_bit()?;
task_stack.push(StackElem::Binary { is_sum, dupe });
if !dupe {
task_stack.push(StackElem::NeedType)
}
task_stack.push(StackElem::NeedType);
}
}
StackElem::Binary { is_sum, dupe } => {
let right = result_stack.pop().unwrap();
let left = if dupe {
Arc::clone(&right)
} else {
result_stack.pop().unwrap()
};
if is_sum {
result_stack.push(OldFinalTy::sum(left, right));
} else {
result_stack.push(OldFinalTy::product(left, right));
}
}
}
}
assert_eq!(result_stack.len(), 1);
result_stack.pop()
}
/// Attempt to yield a value from the fuzzer by constructing a type and then
/// attempt to yield a value from the fuzzer by constructing it directly.
pub fn extract_old_value_direct(&mut self) -> Option<OldValue> {
const MAX_N_TASKS: usize = 300;
const MAX_TY_WIDTH: usize = 10240;
enum StackElem {
NeedValue,
Left,
Right,
Product,
}
let mut task_stack = vec![StackElem::NeedValue];
let mut result_stack = vec![];
while let Some(task) = task_stack.pop() {
match task {
StackElem::NeedValue => match (self.extract_bit()?, self.extract_bit()?) {
(false, false) => result_stack.push(OldValue::unit()),
(false, true) => {
if task_stack.len() <= MAX_N_TASKS {
task_stack.push(StackElem::Product);
task_stack.push(StackElem::NeedValue);
task_stack.push(StackElem::NeedValue);
} else {
task_stack.push(StackElem::NeedValue);
}
}
(true, false) => {
task_stack.push(StackElem::Left);
task_stack.push(StackElem::NeedValue);
}
(true, true) => {
task_stack.push(StackElem::Right);
task_stack.push(StackElem::NeedValue);
}
},
StackElem::Product => {
let right = result_stack.pop().unwrap();
let left = result_stack.pop().unwrap();
result_stack.push(OldValue::product(left, right));
}
StackElem::Left => {
let child = result_stack.pop().unwrap();
let ty = self.extract_old_final_type()?;
if ty.bit_width() > MAX_TY_WIDTH {
return None;
}
result_stack.push(OldValue::left(child, ty));
}
StackElem::Right => {
let child = result_stack.pop().unwrap();
let ty = self.extract_old_final_type()?;
if ty.bit_width() > MAX_TY_WIDTH {
return None;
}
result_stack.push(OldValue::right(ty, child));
}
}
}
assert_eq!(result_stack.len(), 1);
result_stack.pop()
}
}