-
Notifications
You must be signed in to change notification settings - Fork 32
/
unicornafl.cpp
1011 lines (796 loc) · 31.4 KB
/
unicornafl.cpp
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "unicornafl.h"
#include "config.h"
#include "priv.h"
#include <cstdio>
#include <cstdlib>
#include <vector>
#include <cstdint>
#include <cstring>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/shm.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <sys/resource.h>
#include <sys/select.h>
#include <sys/fcntl.h>
#include <signal.h>
#include <errno.h>
#include <chrono>
#include <cstdlib>
#include "afl-hash.h"
static bool afl_debug_enabled = false; // General debug message
static bool afl_debug_unicorn_enabled =
false; // Unicorn specific debug messages from child
static std::chrono::time_point<std::chrono::steady_clock> t0;
static void log_init() {
if (getenv("AFL_DEBUG")) {
afl_debug_enabled = true;
}
if (getenv("AFL_DEBUG_UNICORN")) {
afl_debug_unicorn_enabled = true;
}
t0 = std::chrono::steady_clock::now();
}
static void log(bool in_child, const char* fmt, ...) {
va_list args;
if (likely(!afl_debug_enabled && !afl_debug_unicorn_enabled)) {
return;
}
if (in_child && !afl_debug_unicorn_enabled) {
return;
}
if (!in_child && !afl_debug_enabled) {
return;
}
fprintf(stderr, "[u] ");
if (afl_debug_enabled) {
auto n = std::chrono::steady_clock::now();
fprintf(
stderr, "[%04.6f] ",
std::chrono::duration_cast<std::chrono::duration<double>>(n - t0)
.count());
}
if (in_child && afl_debug_unicorn_enabled) {
pid_t p = getpid();
fprintf(stderr, "[%04" PRId32 "] ", p);
}
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
}
#ifndef UCAFL_NO_LOG
#define ERR(...) log(false, __VA_ARGS__)
#define ERR_CHILD(...) log(true, __VA_ARGS__)
#else
#define ERR(...)
#define ERR_CHILD(...)
#endif
static uc_err dummy_uc_afl_fuzz_callback(uc_engine* uc, void* data);
static uint64_t uc_get_pc(uc_engine* uc);
class UCAFL {
public:
UCAFL(uc_engine* uc, const char* input_file,
uc_afl_cb_place_input_t place_input_callback,
uc_afl_cb_validate_crash_t validate_crash_callback,
uc_afl_fuzz_cb_t fuzz_callback, bool always_validate,
uint32_t persistent_iters, void* data)
: uc_(uc), input_file_(input_file),
place_input_callback_(place_input_callback),
validate_crash_callback_(validate_crash_callback),
fuzz_callback_(fuzz_callback), always_validate_(always_validate),
persistent_iters_(persistent_iters), data_(data),
afl_testcase_ptr_(nullptr), afl_testcase_len_p_(nullptr),
afl_area_ptr_(nullptr), has_afl_(false), afl_prev_loc_(0), h1_(0),
h2_(0), h3_(0), h4_(0) {
memset(this->afl_child_pipe_, 0, sizeof(this->afl_child_pipe_));
memset(this->afl_parent_pipe_, 0, sizeof(this->afl_parent_pipe_));
}
UCAFL(const UCAFL& ucafl) = delete;
uc_afl_ret set_exits(const uint64_t* exits, size_t exit_count) {
uc_err err;
std::vector<uint64_t> v;
err = uc_ctl_exits_enable(this->uc_);
if (err) {
ERR("Fail to enable exits for Unicorn Engine.\n");
return UC_AFL_RET_ERROR;
}
v.assign(exits, exits + exit_count);
err = uc_ctl_set_exits(uc_, (uint64_t*)&v[0], exit_count);
if (err) {
ERR("Fail to set exits.\n");
return UC_AFL_RET_ERROR;
}
return UC_AFL_RET_OK;
}
uc_afl_ret fsrv_run() {
uc_afl_ret ret;
this->_may_use_shm_testcase();
this->_afl_setup();
if (this->has_afl_) {
this->_uc_setup();
}
ret = this->_fksrv_start();
ERR("fksrv_start returns %d\n", ret);
switch (ret) {
case UC_AFL_RET_CHILD:
// We are the child.
return this->_child_fuzz(true);
case UC_AFL_RET_NO_AFL:
this->persistent_iters_ = 1;
// Only run once.
return this->_child_fuzz(false);
case UC_AFL_RET_FINISHED:
case UC_AFL_RET_ERROR:
case UC_AFL_RET_CALLED_TWICE:
return ret;
default:
return UC_AFL_RET_ERROR;
}
}
~UCAFL() {
if (this->h1_) {
uc_hook_del(this->uc_, this->h1_);
}
if (this->h2_) {
uc_hook_del(this->uc_, this->h2_);
}
if (this->h3_) {
uc_hook_del(this->uc_, this->h3_);
}
if (this->h4_) {
uc_hook_del(this->uc_, this->h4_);
}
if (!this->has_afl_) {
munmap(this->afl_area_ptr_, MAP_SIZE);
}
}
private:
uc_afl_ret _afl_next(bool crash_found) {
enum afl_child_ret msg =
crash_found ? AFL_CHILD_FOUND_CRASH : AFL_CHILD_NEXT;
char tmp[4];
#if defined(AFL_DEBUG)
ERR("[d] request next. crash found: %s\n",
crash_found ? "true" : "false");
#endif
mem_barrier(); // Make very sure everything has been written to the map
// at this point
if (write(_W(this->afl_child_pipe_), &msg, sizeof(msg)) !=
sizeof(msg)) {
ERR("[!] Error writing to parent pipe. Parent dead?\n");
return UC_AFL_RET_ERROR;
}
// Once the parent has written something, the next persistent loop
// starts. The parent itself will wait for AFL to signal the new
// testcases is available. This blocks until the next testcase is ready.
if (read(_R(this->afl_parent_pipe_), tmp, 4) != 4) {
ERR("[!] Error reading from parent pipe. Parent dead?\n");
return UC_AFL_RET_ERROR;
}
/* For shared map fuzzing, the forkserver parent forwards the size of
* the current testcase. */
memset(this->afl_area_ptr_, 0, MAP_SIZE);
mem_barrier(); // Also make sure nothing read before this point.
// Start with a clean slate.
this->afl_prev_loc_ = 0;
this->afl_area_ptr_[0] = 1;
return UC_AFL_RET_OK;
}
class AFL_TESTCASE {
public:
AFL_TESTCASE(UCAFL* ucafl) : ucafl_(ucafl) {
this->ucafl_->_may_use_mmap_testcase();
}
char* ptr() {
return (char*)this->ucafl_->afl_testcase_ptr_;
}
size_t len() {
return *this->ucafl_->afl_testcase_len_p_;
}
~AFL_TESTCASE() {
this->ucafl_->_may_unnmap_testcase();
}
private:
UCAFL* ucafl_;
};
uc_afl_ret _child_fuzz(bool afl_exist) {
bool crash_found = false;
bool first_round = true;
bool input_accepted;
uint32_t i = 0;
for (i = 0; this->persistent_iters_ == 0 || i < this->persistent_iters_;
i++) {
if (unlikely(first_round)) {
first_round = false;
} else {
if (this->_afl_next(crash_found) != UC_AFL_RET_OK) {
exit(1);
}
crash_found = false;
}
AFL_TESTCASE testcase(this);
input_accepted = this->place_input_callback_(
this->uc_, testcase.ptr(), testcase.len(), i, this->data_);
if (unlikely(!input_accepted)) {
ERR_CHILD("Input is not accepted.\n");
continue;
}
uc_err uc_ret = this->fuzz_callback_(this->uc_, this->data_);
ERR_CHILD("We are stopping for uc_err=%d (%s)\n", uc_ret,
uc_strerror(uc_ret));
if (unlikely(uc_ret != UC_ERR_OK) ||
(this->always_validate_ && this->validate_crash_callback_)) {
if (this->validate_crash_callback_ &&
!this->validate_crash_callback_(
this->uc_, uc_ret, testcase.ptr(), testcase.len(), i,
this->data_)) {
continue;
}
if (this->persistent_iters_ != 1) {
crash_found = true;
continue;
}
ERR_CHILD("UC returned Error: '%s' - let's abort().\n",
uc_strerror(uc_ret));
fflush(stderr);
abort();
}
}
// We are still in the child, nothing good will come after this.
// Exit and let the next generation run.
if (likely(afl_exist)) {
exit(0);
}
// Just run once.
return UC_AFL_RET_NO_AFL;
}
static void _uc_hook_new_tb(uc_engine* uc, uc_tb* cur_tb, uc_tb* prev_tb,
void* user_data) {
UCAFL* ucafl = (UCAFL*)user_data;
enum afl_child_ret tsl_req = AFL_CHILD_TSL_REQUEST;
// TODO: Gen unique id for the edge.
if ((write(_W(ucafl->afl_child_pipe_), &tsl_req,
sizeof(enum afl_child_ret))) != sizeof(enum afl_child_ret) ||
(write(_W(ucafl->afl_child_pipe_), &cur_tb->pc, 8) != 8)) {
ERR_CHILD("Fail to request cache at 0x%" PRIx64 "\n", cur_tb->pc);
return;
}
ERR_CHILD("A new TB is generated at 0x%" PRIx64 "\n", cur_tb->pc);
}
static void _uc_hook_block(uc_engine* uc, uint64_t address, uint32_t size,
void* user_data) {
uint64_t cur_loc = afl_hash_ip(address) & (MAP_SIZE - 1);
UCAFL* ucafl = (UCAFL*)user_data;
ucafl->afl_area_ptr_[cur_loc ^ ucafl->afl_prev_loc_]++;
ucafl->afl_prev_loc_ = cur_loc >> 1;
ERR_CHILD("uc_hook_block address=0x%" PRIx64 " cur_loc=%" PRIu64
" prev_loc=%" PRIu64 "\n",
address, cur_loc, ucafl->afl_prev_loc_);
}
void _uc_hook_sub_impl_16(uint64_t cur_loc, uint64_t arg1, uint64_t arg2) {
if ((arg1 & 0xff00) == (arg2 & 0xff00)) {
this->afl_area_ptr_[(cur_loc) ^ this->afl_prev_loc_]++;
}
}
void _uc_hook_sub_impl_32(uint64_t cur_loc, uint64_t arg1, uint64_t arg2) {
if ((arg1 & 0xff000000) == (arg2 & 0xff000000)) {
this->afl_area_ptr_[(cur_loc + 2) ^ this->afl_prev_loc_]++;
if ((arg1 & 0xff0000) == (arg2 & 0xff0000)) {
this->afl_area_ptr_[(cur_loc + 1) ^ this->afl_prev_loc_]++;
if ((arg1 & 0xff00) == (arg2 & 0xff00)) {
this->afl_area_ptr_[(cur_loc) ^ this->afl_prev_loc_]++;
}
}
}
}
void _uc_hook_sub_impl_64(uint64_t cur_loc, uint64_t arg1, uint64_t arg2) {
if ((arg1 & 0xff00000000000000) == (arg2 & 0xff00000000000000)) {
this->afl_area_ptr_[(cur_loc + 6) ^ this->afl_prev_loc_]++;
if ((arg1 & 0xff000000000000) == (arg2 & 0xff000000000000)) {
this->afl_area_ptr_[(cur_loc + 5) ^ this->afl_prev_loc_]++;
if ((arg1 & 0xff0000000000) == (arg2 & 0xff0000000000)) {
this->afl_area_ptr_[(cur_loc + 4) ^ this->afl_prev_loc_]++;
if ((arg1 & 0xff00000000) == (arg2 & 0xff00000000)) {
this->afl_area_ptr_[(cur_loc + 3) ^
this->afl_prev_loc_]++;
if ((arg1 & 0xff000000) == (arg2 & 0xff000000)) {
this->afl_area_ptr_[(cur_loc + 2) ^
this->afl_prev_loc_]++;
if ((arg1 & 0xff0000) == (arg2 & 0xff0000)) {
this->afl_area_ptr_[(cur_loc + 1) ^
this->afl_prev_loc_]++;
if ((arg1 & 0xff00) == (arg2 & 0xff00)) {
this->afl_area_ptr_[(cur_loc) ^
this->afl_prev_loc_]++;
}
}
}
}
}
}
}
}
void _uc_hook_sub_impl(uint64_t cur_loc, uint64_t arg1, uint64_t arg2,
uint32_t size) {
if (size >= 64) {
this->_uc_hook_sub_impl_64(cur_loc, arg1, arg2);
} else if (size >= 32) {
this->_uc_hook_sub_impl_32(cur_loc, arg1, arg2);
} else {
this->_uc_hook_sub_impl_16(cur_loc, arg1, arg2);
}
}
static void _uc_hook_sub_cmp(uc_engine* uc, uint64_t address, uint64_t arg1,
uint64_t arg2, uint32_t size,
void* user_data) {
UCAFL* ucafl = (UCAFL*)user_data;
uint64_t cur_loc = afl_hash_ip(address) & (MAP_SIZE - 1);
if (unlikely(cur_loc >= ucafl->afl_inst_rms_)) {
return;
}
ucafl->_uc_hook_sub_impl(cur_loc, arg1, arg2, size);
}
static void _uc_hook_sub(uc_engine* uc, uint64_t address, uint64_t arg1,
uint64_t arg2, uint32_t size, void* user_data) {
_uc_hook_sub_cmp(uc, address, arg1, arg2, size, user_data);
}
void _uc_setup() {
uc_err err;
uint32_t ver;
ver = uc_version(NULL, NULL);
// We need at least Unicorn 2.0.0rc5
if (ver < MIN_UC_VERSION) {
ERR("You Unicorn Version 0x%" PRIx32 " is not supported!\n", ver);
exit(1);
}
// For coverage.
err = uc_hook_add(this->uc_, &this->h1_, UC_HOOK_BLOCK,
(void*)_uc_hook_block, (void*)this, 1, 0);
if (err) {
ERR("Failed to setup block hook.\n");
exit(1);
}
// For TB caching.
err = uc_hook_add(this->uc_, &this->h2_, UC_HOOK_EDGE_GENERATED,
(void*)_uc_hook_new_tb, (void*)this, 1, 0);
if (err) {
ERR("Failed to setup new edge hook.\n");
exit(1);
}
// These two hooks are for compcov and may not be supported by the arch.
err = uc_hook_add(this->uc_, &this->h3_, UC_HOOK_TCG_OPCODE,
(void*)_uc_hook_sub, (void*)this, 1, 0, UC_TCG_OP_SUB,
UC_TCG_OP_FLAG_DIRECT);
if (err) {
ERR("Failed to setup UC_TCG_OP_SUB direct hook.\n");
exit(1);
}
err = uc_hook_add(this->uc_, &this->h4_, UC_HOOK_TCG_OPCODE,
(void*)_uc_hook_sub_cmp, (void*)this, 1, 0,
UC_TCG_OP_SUB, UC_TCG_OP_FLAG_CMP);
if (err) {
ERR("Failed to setup UC_TCG_OP_SUB cmp hook.\n");
exit(1);
}
}
void _afl_setup() {
char* map_id_str = getenv(SHM_ENV_VAR);
char* inst_r_str = getenv("AFL_INST_RATIO");
this->_setup_valid_wifsignaled();
if (inst_r_str) {
uint32_t r = atol(inst_r_str);
if (r > 100) {
r = 100;
} else if (r == 0) {
r = 1;
}
this->afl_inst_rms_ = MAP_SIZE * r / 100;
} else {
this->afl_inst_rms_ = MAP_SIZE;
}
if (likely(map_id_str)) {
int map_id = atoi(map_id_str);
this->afl_area_ptr_ = (uint8_t*)shmat(map_id, NULL, 0);
if (this->afl_area_ptr_ == (void*)-1) {
ERR("Can't get the afl mapping area.\n");
exit(0);
}
this->has_afl_ = true;
// Don't let our parent give up on us.
this->afl_area_ptr_[0] = 1;
} else {
this->afl_area_ptr_ =
(uint8_t*)mmap(NULL, MAP_SIZE, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (this->afl_area_ptr_ == MAP_FAILED) {
perror("[!] mmap failed.");
exit(0);
}
this->has_afl_ = false;
}
}
uc_afl_ret _fksrv_start() {
unsigned char tmp[4] = {0};
pid_t child_pid;
enum afl_child_ret child_ret = AFL_CHILD_EXITED;
bool first_round = true;
uint32_t status = 0;
if (!this->has_afl_)
return UC_AFL_RET_NO_AFL;
if (this->afl_testcase_ptr_) {
/* Parent supports testcases via shared map - and the user wants to
* use it. Tell AFL. */
status = (FS_OPT_ENABLED | FS_OPT_SHDMEM_FUZZ);
/* Phone home and tell the parent that we're OK. If parent isn't there,
assume we're not running in forkserver mode and just execute
program. */
if (write(FORKSRV_FD + 1, &status, 4) != 4)
return UC_AFL_RET_NO_AFL;
}
/* afl tells us in an extra message if it accepted this option or not */
if (this->afl_testcase_ptr_ && getenv(SHM_FUZZ_ENV_VAR)) {
if (read(FORKSRV_FD, &status, 4) != 4) {
ERR("AFL parent exited before forkserver was up\n");
return UC_AFL_RET_ERROR;
}
if (status != (FS_OPT_ENABLED | FS_OPT_SHDMEM_FUZZ)) {
ERR("Unexpected response from AFL++ on forkserver setup\n");
return UC_AFL_RET_ERROR;
}
} else {
ERR("AFL++ sharedmap fuzzing not supported/SHM_FUZZ_ENV_VAR not "
"set\n");
}
void (*old_sigchld_handler)(int) = signal(SIGCHLD, SIG_DFL);
while (1) {
uint32_t was_killed;
int status;
/* Wait for parent by reading from the pipe. Abort if read fails. */
// See _uc_afl_next
if (read(FORKSRV_FD, &was_killed, 4) != 4)
return UC_AFL_RET_FINISHED;
/* If we stopped the child in persistent mode, but there was a race
condition and afl-fuzz already issued SIGKILL, write off the old
process. */
if ((child_ret != AFL_CHILD_EXITED) && was_killed) {
ERR("Child was killed by AFL in the meantime.\n");
child_ret = AFL_CHILD_EXITED;
if (waitpid(child_pid, &status, 0) < 0) {
ERR("Error waiting for child!");
return UC_AFL_RET_ERROR;
}
}
if (child_ret == AFL_CHILD_EXITED) {
/* Child dead. Establish new a channel with child to grab
translation commands. We'll read from _R(afl_child_pipe),
child will write to _W(afl_child_pipe). */
/* close the read fd of previous round. */
if (_R(this->afl_child_pipe_)) {
close(_R(this->afl_child_pipe_));
close(_W(this->afl_parent_pipe_));
}
if (pipe(this->afl_child_pipe_)) {
perror("[!] Error creating pipe to child");
return UC_AFL_RET_ERROR;
}
if (pipe(this->afl_parent_pipe_)) {
perror("[!] Error creating pipe to parent");
close(_R(this->afl_child_pipe_));
close(_W(this->afl_child_pipe_));
return UC_AFL_RET_ERROR;
}
/* Create a clone of our process. */
child_pid = fork();
if (child_pid < 0) {
perror("[!] Could not fork! ");
return UC_AFL_RET_ERROR;
}
/* In child process: close fds, resume execution. */
if (!child_pid) { // New child
signal(SIGCHLD, old_sigchld_handler);
// FORKSRV_FD is for communication with AFL, we don't need
// it in the child.
close(FORKSRV_FD);
close(FORKSRV_FD + 1);
close(_R(this->afl_child_pipe_));
close(_W(this->afl_parent_pipe_));
memset(this->afl_area_ptr_, 0, MAP_SIZE);
mem_barrier(); // Make very sure everything has been written
// to the map at this point
if (!first_round) {
// For persistent mode: Clear the map manually after
// forks.
memset(this->afl_area_ptr_, 0, MAP_SIZE);
} else {
first_round = false;
}
this->afl_prev_loc_ = 0;
// Tell AFL we're alive
this->afl_area_ptr_[0] = 1;
return UC_AFL_RET_CHILD;
} else { // parent for new child
/* If we don't close this in parent, we don't get notified
* on afl_child_pipe once child is gone. */
close(_W(this->afl_child_pipe_));
close(_R(this->afl_parent_pipe_));
}
} else { // parent, in persistent mode
/* Special handling for persistent mode: if the child is alive
but currently stopped, simply restart it with a write to
afl_parent_pipe. In case we fuzz using shared map, use this
method to forward the size of the current testcase to the
child without cost. */
// See _uc_afl_next
if (write(_W(this->afl_parent_pipe_), tmp, 4) != 4) {
ERR("Child died when we tried to resume it\n");
return UC_AFL_RET_ERROR;
}
}
/* In parent process: write PID to AFL. */
if (write(FORKSRV_FD + 1, &child_pid, 4) != 4) {
return UC_AFL_RET_FINISHED;
}
/* Collect translation requests until child finishes a run or dies
*/
child_ret = this->_handle_child_requests();
if (child_ret == AFL_CHILD_NEXT) {
/* Child asks for next in persistent mode */
// This status tells AFL we are not crashed.
status = 0;
} else if (child_ret == AFL_CHILD_FOUND_CRASH) {
/* WIFSIGNALED(wifsignaled) == 1 -> tells AFL the child crashed
* (even though it's still alive for persistent mode) */
status = this->wifsignaled_;
} else if (child_ret == AFL_CHILD_EXITED) {
/* If child exited, get and relay exit status to parent through
* waitpid. */
if (waitpid(child_pid, &status, 0) < 0) {
// Zombie Child could not be collected. Scary!
perror(
"[!] The child's exit code could not be determined. ");
return UC_AFL_RET_ERROR;
}
}
/* Relay wait status to AFL pipe, then loop back. */
if (write(FORKSRV_FD + 1, &status, 4) != 4)
return UC_AFL_RET_FINISHED;
}
}
afl_child_ret _handle_child_requests() {
enum afl_child_ret child_msg;
while (1) {
/* Broken pipe means it's time to return to the fork server routine.
*/
if (read(_R(this->afl_child_pipe_), &child_msg,
sizeof(enum afl_child_ret)) != sizeof(enum afl_child_ret))
return AFL_CHILD_EXITED; // child is dead.
ERR("Get a child_msg=%d\n", child_msg);
if (child_msg == AFL_CHILD_NEXT ||
child_msg == AFL_CHILD_FOUND_CRASH) {
// Forward if child found a crash or not, for persistent mode.
return child_msg;
} else if (child_msg == AFL_CHILD_TSL_REQUEST) {
uint64_t pc;
uc_err err;
if (read(_R(this->afl_child_pipe_), &pc, 8) != 8) {
ERR("Fail to read child tsl request.\n");
return AFL_CHILD_EXITED; // child is dead.
}
err = uc_ctl_request_cache(this->uc_, pc, NULL);
if (unlikely(err != UC_ERR_OK)) {
ERR("Fail to cache the TB at 0x%" PRIx64 ".\n", pc);
} else {
ERR("TB is cached at 0x%" PRIx64 ".\n", pc);
}
} else {
ERR("Unexpected response by child! %d. Please report this "
"as bug for unicornafl.\n"
" Expected one of {AFL_CHILD_NEXT: %d, "
"AFL_CHILD_FOUND_CRASH: %d, AFL_CHILD_TSL_REQUEST: %d}.\n",
child_msg, AFL_CHILD_NEXT, AFL_CHILD_FOUND_CRASH,
AFL_CHILD_TSL_REQUEST);
}
}
}
void _setup_valid_wifsignaled() {
int ret = 0;
// Just need a value that greater than 0 to inform AFL we are crashed.
while (!(WIFSIGNALED(ret))) {
ret++;
}
this->wifsignaled_ = ret;
}
void _may_use_shm_testcase() {
char* id_str = getenv(SHM_FUZZ_ENV_VAR);
if (id_str) {
int shm_id = atoi(id_str);
uint32_t* map = (uint32_t*)shmat(shm_id, NULL, 0);
if (!map || map == MAP_FAILED) {
perror("[!] could not access fuzzing shared memory");
exit(1);
}
this->afl_testcase_len_p_ = map;
this->afl_testcase_ptr_ = map + 1;
this->afl_use_shm_testcase_ = true;
return;
} else {
this->afl_use_shm_testcase_ = false;
ERR("SHARED MEMORY FUZZING Feature is not enabled.\n");
return;
}
}
void _may_unnmap_testcase() {
if (unlikely(!this->afl_use_shm_testcase_)) {
munmap(this->afl_testcase_ptr_, this->afl_testcase_len_);
}
}
void _may_use_mmap_testcase() {
off_t ret;
struct stat st = {0};
if (unlikely(!this->afl_use_shm_testcase_)) {
this->afl_testcase_len_p_ = &this->afl_testcase_len_;
int fd = open(this->input_file_, O_RDONLY);
if (fstat(fd, &st)) {
perror("[!] Fail to stat.");
exit(1);
}
this->afl_testcase_ptr_ = (uint32_t*)mmap(
NULL, st.st_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
if (this->afl_testcase_ptr_ == MAP_FAILED) {
perror("[!] Fail to mmap testcase.");
exit(1);
}
this->afl_testcase_len_ = (uint32_t)st.st_size;
close(fd);
}
}
private:
uc_engine* uc_;
const char* input_file_;
uc_afl_cb_place_input_t place_input_callback_;
uc_afl_cb_validate_crash_t validate_crash_callback_;
uc_afl_fuzz_cb_t fuzz_callback_;
bool always_validate_;
uint32_t persistent_iters_;
void* data_;
// Used both in shm and mmap testcase
uint32_t* afl_testcase_ptr_;
uint32_t* afl_testcase_len_p_;
bool afl_use_shm_testcase_;
// Only used in mmap testcase.
uint32_t afl_testcase_len_;
// Core mapping for coverage
uint8_t* afl_area_ptr_;
// This variable checks whether we get a mapping from AFL.
bool has_afl_;
uint32_t afl_inst_rms_;
uint64_t afl_prev_loc_;
// Fake signal value
int wifsignaled_;
// Communication pipe
int afl_child_pipe_[2];
int afl_parent_pipe_[2];
// Our hooks
uc_hook h1_;
uc_hook h2_;
uc_hook h3_;
uc_hook h4_;
};
static uc_err dummy_uc_afl_fuzz_callback(uc_engine* uc, void* data) {
uint64_t pc;
pc = uc_get_pc(uc);
// Note the multiple exits is enabled in this case.
return uc_emu_start(uc, pc, 0, 0, 0);
}
static uint64_t uc_get_pc(uc_engine* uc) {
uc_arch arch;
uc_mode mode;
uint64_t pc = 0;
uc_ctl_get_arch(uc, &arch);
uc_ctl_get_mode(uc, &mode);
if (arch == UC_ARCH_X86) {
if (mode == UC_MODE_32) {
uc_reg_read(uc, UC_X86_REG_EIP, &pc);
} else if (mode == UC_MODE_16) {
uc_reg_read(uc, UC_X86_REG_IP, &pc);
} else {
uc_reg_read(uc, UC_X86_REG_RIP, &pc);
}
} else if (arch == UC_ARCH_ARM) {
uint64_t cpsr = 0;
uc_reg_read(uc, UC_ARM_REG_PC, &pc);
// check for thumb mode
uc_reg_read(uc, UC_ARM_REG_CPSR, &cpsr);
if (cpsr & 0x20) {
// thumb mode, the address should end with 1
pc |= 1;
}
} else if (arch == UC_ARCH_RISCV) {
uc_reg_read(uc, UC_RISCV_REG_PC, &pc);
} else if (arch == UC_ARCH_MIPS) {
uc_reg_read(uc, UC_MIPS_REG_PC, &pc);
} else if (arch == UC_ARCH_PPC) {
uc_reg_read(uc, UC_PPC_REG_PC, &pc);
} else if (arch == UC_ARCH_SPARC) {
uc_reg_read(uc, UC_SPARC_REG_PC, &pc);
} else if (arch == UC_ARCH_M68K) {
uc_reg_read(uc, UC_M68K_REG_PC, &pc);
} else if (arch == UC_ARCH_S390X) {
uc_reg_read(uc, UC_S390X_REG_PC, &pc);
} else if (arch == UC_ARCH_ARM64) {
uc_reg_read(uc, UC_ARM64_REG_PC, &pc);
} else if (arch == UC_ARCH_TRICORE) {
uc_reg_read(uc, UC_TRICORE_REG_PC, &pc);
}
return pc;
}
extern "C" UNICORNAFL_EXPORT uc_afl_ret uc_afl_fuzz(
uc_engine* uc, char* input_file,
uc_afl_cb_place_input_t place_input_callback, uint64_t* exits,
size_t exit_count, uc_afl_cb_validate_crash_t validate_crash_callback,
bool always_validate, uint32_t persistent_iters, void* data) {
log_init();
ERR("Entering uc_afl_fuzz with input_file=%s and persistent_iters=%" PRIu32
"\n",
input_file, persistent_iters);
// Sanity Check.
if (!uc) {
ERR("Unicorn Engine passed to uc_afl_fuzz is NULL!\n");
return UC_AFL_RET_ERROR;
}
if (!input_file || input_file[0] == 0) {
ERR("No input file provided to uc_afl_fuzz.\n");
return UC_AFL_RET_ERROR;
}
if (!place_input_callback) {
ERR("no place_input_callback set.\n");
return UC_AFL_RET_ERROR;
}
if (always_validate && !validate_crash_callback) {
ERR("always_validate set but validate_crash_callback is missing.\n");
return UC_AFL_RET_ERROR;
}
if (!exit_count) {
ERR("Nullptr provided for exits.\n");
return UC_AFL_RET_ERROR;
}
UCAFL ucafl(uc, input_file, place_input_callback, validate_crash_callback,
dummy_uc_afl_fuzz_callback, always_validate, persistent_iters,
data);
if (unlikely(ucafl.set_exits(exits, exit_count))) {
return UC_AFL_RET_ERROR;
}
return ucafl.fsrv_run();
}
extern "C" UNICORNAFL_EXPORT uc_afl_ret uc_afl_fuzz_custom(
uc_engine* uc, char* input_file,
uc_afl_cb_place_input_t place_input_callback, uc_afl_fuzz_cb_t fuzz_callbck,
uc_afl_cb_validate_crash_t validate_crash_callback, bool always_validate,
uint32_t persistent_iters, void* data) {
log_init();
if (!uc) {
ERR("Unicorn Engine passed to uc_afl_fuzz is NULL!\n");
return UC_AFL_RET_ERROR;
}
if (!input_file || input_file[0] == 0) {
ERR("No input file provided to uc_afl_fuzz.\n");
return UC_AFL_RET_ERROR;
}
if (!place_input_callback) {
ERR("no place_input_callback set.\n");
return UC_AFL_RET_ERROR;
}
if (always_validate && !validate_crash_callback) {
ERR("always_validate set but validate_crash_callback is missing.\n");
return UC_AFL_RET_ERROR;