vyre 0.2.0

GPU bytecode condition engine
Documentation
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
use matchkit::Match;
use rulefire::vm::bytecode::{Instruction, Opcode, Program};
use rulefire::FileContext;
use crate::support::run_evaluate_index_with_ctx;

fn result(program: Program, file_bytes: &[u8], matches: &[Match], file_ctx: FileContext) -> bool {
    let got = run_evaluate_index_with_ctx(program, file_bytes, matches, file_ctx);
    assert_eq!(got.len(), 1);
    got[0]
}

fn default_ctx(size: usize, is_pe: u32, is_dll: u32, bits: u32) -> FileContext {
    FileContext {
        file_size: size as u32,
        entropy_bucket: bits,
        is_pe,
        is_dll,
        is_64bit: bits % 2,
        has_signature: bits % 2,
        num_sections: bits,
        num_imports: bits,
        entry_point_rva: bits,
        magic_u32: 0x11223344,
        ..Default::default()
    }
}

fn match_alpha(count: usize, start: u32) -> Vec<Match> {
    (0..count)
        .map(|idx| Match {
            pattern_id: 0,
            start: start + idx as u32,
            end: start + idx as u32 + 1,
            padding: 0,
        })
        .collect()
}

fn match_pair(count_a: usize, start_a: u32, count_b: usize, start_b: u32) -> Vec<Match> {
    let mut out = match_alpha(count_a, start_a);
    out.extend((0..count_b).map(|idx| Match {
        pattern_id: 1,
        start: start_b + idx as u32,
        end: start_b + idx as u32 + 1,
        padding: 0,
    }));
    out
}

macro_rules! cpu_case {
    ($name:ident, $program:expr, $matches:expr, $input:expr, $ctx:expr, $expect:expr) => {
        #[test]
        fn $name() {
            assert_eq!(result($program, $input, &$matches, $ctx), $expect);
        }
    };
}

cpu_case!(cpu_push_true, Program {
    instructions: vec![Instruction::new(Opcode::PushTrue, 0), Instruction::new(Opcode::Halt, 0)]
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_false, Program {
    instructions: vec![Instruction::new(Opcode::PushFalse, 0), Instruction::new(Opcode::Halt, 0)]
}, vec![], b"", default_ctx(0, 0, 0, 0), false);

cpu_case!(cpu_push_immediate, Program {
    instructions: vec![Instruction::new(Opcode::PushImmediate, 7), Instruction::new(Opcode::Halt, 0)]
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_cmp_eq_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_cmp_ne_false, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::Neq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), false);

cpu_case!(cpu_cmp_lt, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::Lt, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_cmp_gt, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::Gt, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), false);

cpu_case!(cpu_cmp_lte, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 3),
        Instruction::new(Opcode::PushImmediate, 3),
        Instruction::new(Opcode::Lte, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_cmp_gte, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::PushImmediate, 3),
        Instruction::new(Opcode::Gte, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_and_true, Program {
    instructions: vec![Instruction::new(Opcode::PushTrue, 0), Instruction::new(Opcode::PushTrue, 0), Instruction::new(Opcode::And, 0), Instruction::new(Opcode::Halt, 0)],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_or_true, Program {
    instructions: vec![Instruction::new(Opcode::PushFalse, 0), Instruction::new(Opcode::PushTrue, 0), Instruction::new(Opcode::Or, 0), Instruction::new(Opcode::Halt, 0)],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_not_false, Program {
    instructions: vec![Instruction::new(Opcode::PushFalse, 0), Instruction::new(Opcode::Not, 0), Instruction::new(Opcode::Halt, 0)],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_add_sub_mul, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 10),
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::Add, 0),
        Instruction::new(Opcode::PushImmediate, 4),
        Instruction::new(Opcode::Sub, 0),
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::Mul, 0),
        Instruction::new(Opcode::PushImmediate, 16),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_div_zero, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 7),
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::Div, 0),
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_mod_zero, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 7),
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::Mod, 0),
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_bit_ops, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0xAA),
        Instruction::new(Opcode::PushImmediate, 0x0F),
        Instruction::new(Opcode::BitAnd, 0),
        Instruction::new(Opcode::PushImmediate, 0x0A),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_shifts, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::PushImmediate, 8),
        Instruction::new(Opcode::Shl, 0),
        Instruction::new(Opcode::PushImmediate, 256),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_shift_right, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 16),
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::Shr, 0),
        Instruction::new(Opcode::PushImmediate, 4),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_file_size_lt, Program {
    instructions: vec![
        Instruction::new(Opcode::PushFileSize, 0),
        Instruction::new(Opcode::PushImmediate, 8),
        Instruction::new(Opcode::Lt, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"0123456", default_ctx(10, 0, 0, 0), true);

cpu_case!(cpu_push_entropy_gt, Program {
    instructions: vec![
        Instruction::new(Opcode::PushEntropy, 0),
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::Gt, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"abc", default_ctx(0, 0, 0, 9), false);

cpu_case!(cpu_push_is_pe, Program {
    instructions: vec![
        Instruction::new(Opcode::PushIsPe, 0),
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 1, 0, 0), true);

cpu_case!(cpu_push_num_sections_eq, Program {
    instructions: vec![
        Instruction::new(Opcode::PushNumSections, 0),
        Instruction::new(Opcode::PushImmediate, 4),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 4), true);

cpu_case!(cpu_push_num_imports_eq, Program {
    instructions: vec![
        Instruction::new(Opcode::PushNumImports, 0),
        Instruction::new(Opcode::PushImmediate, 7),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 7), true);

cpu_case!(cpu_push_entry_point, Program {
    instructions: vec![
        Instruction::new(Opcode::PushEntryPoint, 0),
        Instruction::new(Opcode::PushImmediate, 0x1234),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0x1234), true);

cpu_case!(cpu_push_magic_u32, Program {
    instructions: vec![
        Instruction::new(Opcode::PushMagicU32, 0),
        Instruction::new(Opcode::PushImmediate, 0x11223344),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_is_64bit, Program {
    instructions: vec![
        Instruction::new(Opcode::PushIs64bit, 0),
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 1), true);

cpu_case!(cpu_push_num_strings, Program {
    instructions: vec![
        Instruction::new(Opcode::PushNumStrings, 0),
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_string_matched_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushStringMatched, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, match_alpha(1, 4), b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_string_matched_false, Program {
    instructions: vec![
        Instruction::new(Opcode::PushStringMatched, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), false);

cpu_case!(cpu_push_string_count, Program {
    instructions: vec![
        Instruction::new(Opcode::PushStringCount, 0),
        Instruction::new(Opcode::PushImmediate, 3),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, match_alpha(3, 0), b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_string_offset, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::PushStringOffset, 0),
        Instruction::new(Opcode::PushImmediate, 4),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, match_alpha(2, 4), b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_string_offset_missing, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 99),
        Instruction::new(Opcode::PushStringOffset, 0),
        Instruction::new(Opcode::PushImmediate, u32::MAX),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, match_alpha(1, 10), b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_push_string_length, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::PushStringLength, 0),
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, match_alpha(1, 4), b"Z", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_count_of, Program {
    instructions: vec![
        Instruction::new(Opcode::PushTrue, 0),
        Instruction::new(Opcode::PushFalse, 0),
        Instruction::new(Opcode::PushTrue, 0),
        Instruction::new(Opcode::PushTrue, 0),
        Instruction::new(Opcode::CountOf, (2 << 16) | 4),
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_all_of_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushTrue, 0),
        Instruction::new(Opcode::PushTrue, 0),
        Instruction::new(Opcode::AllOf, 2),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_any_of_false, Program {
    instructions: vec![
        Instruction::new(Opcode::PushFalse, 0),
        Instruction::new(Opcode::PushFalse, 0),
        Instruction::new(Opcode::PushFalse, 0),
        Instruction::new(Opcode::AnyOf, 3),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), false);

cpu_case!(cpu_string_at_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::StringAt, 0),
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, match_alpha(1, 2), b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_string_in_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::PushImmediate, 6),
        Instruction::new(Opcode::StringIn, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, match_alpha(1, 4), b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_for_any_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::PushImmediate, 2),
        Instruction::new(Opcode::ForAny, (2 << 16) | 2),
        Instruction::new(Opcode::PushStringCount, 0),
        Instruction::new(Opcode::EndFor, 0),
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), false);

cpu_case!(cpu_for_all_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::ForAll, (1 << 16) | 2),
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::StringIn, 0),
        Instruction::new(Opcode::EndFor, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![Match { pattern_id: 0, start: 0, end: 1, padding: 0 }], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_for_n_true, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::PushImmediate, 5),
        Instruction::new(Opcode::ForN, (1 << 16) | 2),
        Instruction::new(Opcode::PushImmediate, 1),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::EndFor, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"", default_ctx(0, 0, 0, 0), true);

cpu_case!(cpu_read_int8_signed, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::ReadIntAt, 1 | (1 << 8)),
        Instruction::new(Opcode::PushImmediate, (-1i32 as u32)),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], &[0xFF], default_ctx(1, 0, 0, 0), true);

cpu_case!(cpu_read_int16_le, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::ReadIntAt, 2),
        Instruction::new(Opcode::PushImmediate, 0x5A4D),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"\x4D\x5A", default_ctx(2, 0, 0, 0), true);

cpu_case!(cpu_read_int16_be, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::ReadIntAt, 2 | (1 << 9)),
        Instruction::new(Opcode::PushImmediate, 0x5A4D),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], b"\x5A\x4D", default_ctx(2, 0, 0, 0), true);

cpu_case!(cpu_read_int32_le, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::ReadIntAt, 4),
        Instruction::new(Opcode::PushImmediate, 0x11223344),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], &0x11223344u32.to_le_bytes(), default_ctx(4, 0, 0, 0), true);

cpu_case!(cpu_read_int32_be, Program {
    instructions: vec![
        Instruction::new(Opcode::PushImmediate, 0),
        Instruction::new(Opcode::ReadIntAt, 4 | (1 << 9)),
        Instruction::new(Opcode::PushImmediate, 0x11223344),
        Instruction::new(Opcode::Eq, 0),
        Instruction::new(Opcode::Halt, 0),
    ],
}, vec![], &0x11223344u32.to_be_bytes(), default_ctx(4, 0, 0, 0), true);