-
Notifications
You must be signed in to change notification settings - Fork 31
/
fuzzer.cpp
1917 lines (1702 loc) · 51.2 KB
/
fuzzer.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
// Fuzzer.cpp
// Main driver for FormatFuzzer
#include <unordered_map>
#include <stdlib.h>
#include <cstdio>
#include <cstring>
#include <cassert>
#include <getopt.h>
#include <stdint.h>
#include <climits>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <fcntl.h>
#include <string>
#include <stdarg.h>
#include "formatfuzzer.h"
static const char *bin_name = "formatfuzzer";
extern bool get_parse_tree;
extern bool debug_print;
extern bool aflsmart_output;
// Each command comes as if it were invoked from the command line
// fuzz - generate random inputs
int fuzz(int argc, char **argv)
{
const char *decision_source = "/dev/urandom";
// Process options
while (1)
{
static struct option long_options[] =
{
{"help", no_argument, 0, 'h'},
{"decisions", required_argument, 0, 'd'},
{0, 0, 0, 0}};
int option_index = 0;
int c = getopt_long(argc, argv, "d:p",
long_options, &option_index);
// Detect the end of the options.
if (c == -1)
break;
switch (c)
{
case 'h':
case '?':
fprintf(stderr, "fuzz: usage: fuzz [--decisions SOURCE] [FILES...|-]\n");
fprintf(stderr, "Outputs random data to given FILES (or `-' for standard output).\n");
fprintf(stderr, "Options:\n");
fprintf(stderr, "--decisions SOURCE: Use SOURCE for generation decisions (default %s)\n", decision_source);
fprintf(stderr, "-p: print parse tree\n");
return 0;
case 'd':
decision_source = optarg;
break;
case 'p':
get_parse_tree = true;
break;
}
}
if (optind >= argc) {
fprintf(stderr, "%s: missing output files. (Use '-' for standard output)\n", bin_name);
return 1;
}
// Main function
int errors = 0;
for (int arg = optind; arg < argc; arg++)
{
char *out = argv[arg];
bool success = false;
setup_input(decision_source);
try
{
generate_file();
success = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success = true;
}
catch (...)
{
delete_globals();
}
save_output(out);
if (success)
fprintf(stderr, "%s: %s created\n", bin_name, out);
else
{
fprintf(stderr, "%s: %s failed\n", bin_name, out);
errors++;
}
}
return errors;
}
// fuzz - parse existing files
int parse(int argc, char **argv)
{
const char *decision_sink = 0;
// Process options
while (1)
{
static struct option long_options[] =
{
{"help", no_argument, 0, 'h'},
{"decisions", required_argument, 0, 'd'},
{0, 0, 0, 0}};
int option_index = 0;
int c = getopt_long(argc, argv, "d:s",
long_options, &option_index);
// Detect the end of the options.
if (c == -1)
break;
switch (c)
{
case 'h':
case '?':
fprintf(stderr, "parse: usage: parse [--decisions SINK] [FILES...|-]\n");
fprintf(stderr, "Parses given FILES (or `-' for standard input).\n");
fprintf(stderr, "Options:\n");
fprintf(stderr, "--decisions SINK: Save parsing decisions in SINK (default: none)\n");
return 0;
case 'd':
decision_sink = optarg;
break;
case 's':
aflsmart_output = true;
break;
}
}
if (optind >= argc) {
fprintf(stderr, "%s: missing input files. (Use '-' for standard input.)\n", bin_name);
return 1;
}
int errors = 0;
for (int arg = optind; arg < argc; arg++)
{
char *in = argv[arg];
bool success = false;
set_parser();
if (!setup_input(in)) {
errors++;
}
try
{
generate_file();
success = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success = true;
}
catch (...)
{
delete_globals();
}
if (success)
fprintf(stderr, "ok\n%s: %s parsed\n", bin_name, in);
else
{
fprintf(stderr, "error %.2f\n%s: %s failed\n", 100.0 * get_validity(), bin_name, in);
errors++;
}
if (decision_sink)
save_output(decision_sink);
}
return errors;
}
extern "C" size_t ff_generate(unsigned char* data, size_t size, unsigned char** new_data);
extern "C" int ff_parse(unsigned char* data, size_t size, unsigned char** new_data, size_t* new_size);
extern bool print_errors;
extern std::unordered_map<std::string, std::string> variable_types;
unsigned copy_rand(unsigned char *dest);
extern const char* chunk_name;
extern const char* chunk_name2;
extern int file_index;
extern bool get_chunk;
extern bool get_all_chunks;
extern bool smart_mutation;
extern bool smart_abstraction;
extern bool smart_swapping;
extern unsigned chunk_start;
extern unsigned chunk_end;
extern unsigned rand_start;
extern unsigned rand_end;
extern unsigned rand_start2;
extern unsigned rand_end2;
extern bool is_optional;
extern bool is_delete;
extern bool following_is_optional;
extern unsigned char *following_rand_buffer;
extern unsigned following_rand_size;
extern unsigned char *rand_buffer;
/* Get unix time in microseconds */
static uint64_t get_cur_time_us(void) {
struct timeval tv;
struct timezone tz;
gettimeofday(&tv, &tz);
return (tv.tv_sec * 1000000ULL) + tv.tv_usec;
}
void write_file(const char* filename, unsigned char* data, size_t size) {
printf("Saving file %s\n", filename);
int file_fd = open(filename, O_CREAT | O_WRONLY | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
ssize_t res = write(file_fd, data, size);
assert((size_t) res == size);
close(file_fd);
}
// smart_replace - apply a smart replacement
int smart_replace(int argc, char **argv)
{
char *file_t = NULL;
int start_t = -1;
int end_t = -1;
bool optional_t = false;
const char* chunk_t;
char *file_s = NULL;
int start_s = -1;
int end_s = -1;
bool optional_s = false;
const char* chunk_s;
bool success_t = false;
bool success_s = false;
unsigned char *rand_t = new unsigned char[MAX_RAND_SIZE];
unsigned char *rand_s = new unsigned char[MAX_RAND_SIZE];
unsigned len_t;
int rand_fd = open("/dev/urandom", O_RDONLY);
ssize_t r = read(rand_fd, rand_t, MAX_RAND_SIZE);
if (r != MAX_RAND_SIZE)
printf("Read only %ld bytes from /dev/urandom\n", r);
close(rand_fd);
// Process options
while (1)
{
static struct option long_options[] =
{
{"help", no_argument, 0, 'h'},
{"targetfile", required_argument, 0, 1},
{"targetstart", required_argument, 0, 2},
{"targetend", required_argument, 0, 3},
{"sourcefile", required_argument, 0, 4},
{"sourcestart", required_argument, 0, 5},
{"sourceend", required_argument, 0, 6},
{0, 0, 0, 0}};
int option_index = 0;
int c = getopt_long(argc, argv, "",
long_options, &option_index);
// Detect the end of the options.
if (c == -1)
break;
switch (c)
{
case 'h':
case '?':
fprintf(stderr, R"(replace: Smart Replacement
replace --targetfile file_t --targetstart start_t --targetend end_t
--sourcefile file_s --sourcestart start_s --sourceend end_s OUTFILE
Apply a smart mutation which replaces one chunk from file_t (byte range
[start_t, end_t]) with another chunk from file_s (byte range [start_s, end_s]).
The resulting file should be similar to file_t, except with the source chunk
from file_s copied into the appropriate position of the target chunk from
file_t. Moreover, the mutation is smarter than simple memmove() operations,
which should allow it to fix constraints implemented in the binary template,
such as lenght fields and checksums. Command returns 0 if mutation worked as
expected or nonzero if it didn't work as expected. This happens when the chunk
from file_s doesn't fit well in file_t because it required a larger or smaller
number of decision bytes in file_t than it did in file_s.
)");
return 0;
case 1:
file_t = optarg;
break;
case 2:
start_t = strtol(optarg, NULL, 0);
break;
case 3:
end_t = strtol(optarg, NULL, 0);
break;
case 4:
file_s = optarg;
break;
case 5:
start_s = strtol(optarg, NULL, 0);
break;
case 6:
end_s = strtol(optarg, NULL, 0);
break;
}
}
if (optind >= argc) {
fprintf(stderr, "%s: missing output file.\n", bin_name);
return -2;
}
if (!file_t || start_t == -1 || end_t == -1) {
fprintf(stderr, "%s: missing required arguments for target file.\n", bin_name);
return -2;
}
if (!file_s || start_s == -1 || end_s == -1) {
fprintf(stderr, "%s: missing required arguments for source file.\n", bin_name);
return -2;
}
// Main function
char *out = argv[optind];
printf("Parsing file %s\n\n", file_s);
get_chunk = true;
chunk_start = start_s;
chunk_end = end_s;
rand_start = rand_end = UINT_MAX;
set_parser();
setup_input(file_s);
try
{
generate_file();
success_s = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success_s = true;
}
catch (...)
{
delete_globals();
}
if (!success_s)
{
fprintf(stderr, "%s: Parsing %s failed\n", bin_name, file_s);
}
if (rand_start == UINT_MAX) {
fprintf(stderr, "%s: Unable to find chunk in file %s\n", bin_name, file_s);
return -2;
}
copy_rand(rand_s);
start_s = rand_start;
end_s = rand_end;
optional_s = is_optional;
chunk_s = chunk_name;
printf("\nParsing file %s\n\n", file_t);
get_chunk = true;
chunk_start = start_t;
chunk_end = end_t;
rand_start = rand_end = UINT_MAX;
set_parser();
setup_input(file_t);
try
{
generate_file();
success_t = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success_t = true;
}
catch (...)
{
delete_globals();
}
if (!success_t)
{
fprintf(stderr, "%s: Parsing %s failed\n", bin_name, file_t);
}
if (end_t != -1 && rand_start == UINT_MAX) {
fprintf(stderr, "%s: Unable to find chunk in file %s\n", bin_name, file_t);
return -2;
}
len_t = copy_rand(rand_t);
start_t = rand_start;
end_t = rand_end;
optional_t = is_optional;
chunk_t = chunk_name;
if (optional_t && !optional_s) {
fprintf(stderr, "%s: Trying to copy non-optional chunk from file %s into optional chunk from file %s\n", bin_name, file_s, file_t);
return -2;
}
if (!optional_t && optional_s) {
fprintf(stderr, "%s: Trying to copy optional chunk from file %s into non-optional chunk from file %s\n", bin_name, file_s, file_t);
return -2;
}
if (!optional_t && !optional_s && variable_types[chunk_t] != variable_types[chunk_s]) {
fprintf(stderr, "%s: Trying to replace non-optional chunks of different types: %s, %s\n", bin_name, variable_types[chunk_t].c_str(), variable_types[chunk_s].c_str());
return -2;
}
printf("\nGenerating file %s\n\n", out);
unsigned rand_size = len_t + (end_s - start_s) - (end_t - start_t);
assert(rand_size <= MAX_RAND_SIZE);
memmove(rand_t + start_t + end_s + 1 - start_s, rand_t + end_t + 1, len_t - (end_t + 1));
memcpy(rand_t + start_t, rand_s + start_s, end_s + 1 - start_s);
get_chunk = false;
smart_mutation = true;
unsigned rand_end0 = rand_end = start_t + end_s - start_s;
set_generator();
unsigned char* file = NULL;
unsigned file_size = ff_generate(rand_t, MAX_RAND_SIZE, &file);
if (!file || !file_size) {
printf("Failed to generate mutated file!\n");
return -2;
}
save_output(out);
if (rand_end0 < rand_end)
fprintf(stderr, "Warning: Consumed %u more decision bytes than expected while generating chunk.\n", rand_end - rand_end0);
if (rand_end0 > rand_end)
fprintf(stderr, "Warning: Consumed %u less decision bytes than expected while generating chunk.\n", rand_end0 - rand_end);
fprintf(stderr, "%s: %s created\n", bin_name, out);
delete[] rand_t;
delete[] rand_s;
if (!success_s || !success_t)
return -2;
return (rand_end > rand_end0) - (rand_end < rand_end0);
}
// smart_delete - apply a smart deletion
int smart_delete(int argc, char **argv)
{
char *file_t = NULL;
int start_t = -1;
int end_t = -1;
bool optional_t = false;
bool success = false;
unsigned char *rand_t = new unsigned char[MAX_RAND_SIZE];
unsigned len_t;
int rand_fd = open("/dev/urandom", O_RDONLY);
ssize_t r = read(rand_fd, rand_t, MAX_RAND_SIZE);
if (r != MAX_RAND_SIZE)
printf("Read only %ld bytes from /dev/urandom\n", r);
close(rand_fd);
// Process options
while (1)
{
static struct option long_options[] =
{
{"help", no_argument, 0, 'h'},
{"targetfile", required_argument, 0, 1},
{"targetstart", required_argument, 0, 2},
{"targetend", required_argument, 0, 3},
{0, 0, 0, 0}};
int option_index = 0;
int c = getopt_long(argc, argv, "",
long_options, &option_index);
// Detect the end of the options.
if (c == -1)
break;
switch (c)
{
case 'h':
case '?':
fprintf(stderr, R"(delete: Smart Deletion
delete --targetfile file_t --targetstart start_t --targetend end_t OUTFILE
Apply a smart deletion operation, removing one chunk from file_t (byte range
[start_t, end_t]). This can only be applied if the chunk is optional and the
following chunk is also optional. A chunk is optional if there are calls to
FEof() and/or lookahead functions such as ReadBytes() right before the start
of the chunk. This smart deletion should also fix constraints implemented in
the binary template (such as length fields).
)");
return 0;
case 1:
file_t = optarg;
break;
case 2:
start_t = strtol(optarg, NULL, 0);
break;
case 3:
end_t = strtol(optarg, NULL, 0);
break;
}
}
if (optind >= argc) {
fprintf(stderr, "%s: missing output file.\n", bin_name);
return -2;
}
if (!file_t || start_t == -1 || end_t == -1) {
fprintf(stderr, "%s: missing required arguments for target file.\n", bin_name);
return -2;
}
// Main function
char *out = argv[optind];
printf("\nParsing file %s\n\n", file_t);
success = false;
is_delete = true;
get_chunk = true;
chunk_start = start_t;
chunk_end = end_t;
rand_start = rand_end = UINT_MAX;
set_parser();
setup_input(file_t);
try
{
generate_file();
success = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success = true;
}
catch (...)
{
delete_globals();
}
if (!success)
{
fprintf(stderr, "%s: Parsing %s failed\n", bin_name, file_t);
}
if (rand_start == UINT_MAX) {
fprintf(stderr, "%s: Unable to find chunk in file %s\n", bin_name, file_t);
return -2;
}
len_t = copy_rand(rand_t);
start_t = rand_start;
end_t = rand_end;
optional_t = is_optional;
if (!optional_t) {
fprintf(stderr, "%s: The target chunk is not optional.\n", bin_name);
return -2;
}
if (!following_is_optional) {
fprintf(stderr, "%s: The target chunk is not followed by an optional chunk.\n", bin_name);
return -2;
}
printf("\nGenerating file %s\n\n", out);
memmove(rand_t + start_t, rand_t + end_t + 1, len_t - (end_t + 1));
get_chunk = false;
set_generator();
unsigned char* file = NULL;
unsigned file_size = ff_generate(rand_t, MAX_RAND_SIZE, &file);
if (!file || !file_size) {
printf("Failed to generate mutated file!\n");
return -2;
}
save_output(out);
fprintf(stderr, "%s: %s created\n", bin_name, out);
delete[] rand_t;
return success ? 0 : -2;
}
// smart_insert - apply a smart insertion
int smart_insert(int argc, char **argv)
{
char *file_t = NULL;
int start_t = -1;
char *file_s = NULL;
int start_s = -1;
int end_s = -1;
bool optional_s = false;
bool success_t = false;
bool success_s = false;
unsigned char *rand_t = new unsigned char[MAX_RAND_SIZE];
unsigned char *rand_s = new unsigned char[MAX_RAND_SIZE];
unsigned len_t;
int rand_fd = open("/dev/urandom", O_RDONLY);
ssize_t r = read(rand_fd, rand_t, MAX_RAND_SIZE);
if (r != MAX_RAND_SIZE)
printf("Read only %ld bytes from /dev/urandom\n", r);
close(rand_fd);
// Process options
while (1)
{
static struct option long_options[] =
{
{"help", no_argument, 0, 'h'},
{"targetfile", required_argument, 0, 1},
{"targetstart", required_argument, 0, 2},
{"sourcefile", required_argument, 0, 4},
{"sourcestart", required_argument, 0, 5},
{"sourceend", required_argument, 0, 6},
{0, 0, 0, 0}};
int option_index = 0;
int c = getopt_long(argc, argv, "",
long_options, &option_index);
// Detect the end of the options.
if (c == -1)
break;
switch (c)
{
case 'h':
case '?':
fprintf(stderr, R"(insert: Smart Insertion
insert --targetfile file_t --targetstart start_t
--sourcefile file_s --sourcestart start_s --sourceend end_s OUTFILE
Apply a smart insertion operation, inserting one chunk from file_s (byte range
[start_s, end_s]) into file_t, with the first byte at start_t. This can only
be applied if file_t originally had an optional chunk starting at start_t or
if start_t was the position right after the end of an appendable chunk. A
chunk is optional if there are calls to FEof() and/or lookahead functions such
as ReadBytes() right before the start of the chunk. A chunk is appendable if
there are calls to FEof() and/or lookahead functions such as ReadBytes() right
before the end of the chunk. The source chunk from file_s must also be
optional. This smart addition should also fix constraints implemented in the
binary template (such as length fields). Command returns 0 if mutation worked
as expected or nonzero if it didn't work as expected. This happens when the
chunk from file_s doesn't fit well in file_t because it required a larger or
smaller number of decision bytes in file_t than it did in file_s.
)");
return 0;
case 1:
file_t = optarg;
break;
case 2:
start_t = strtol(optarg, NULL, 0);
break;
case 4:
file_s = optarg;
break;
case 5:
start_s = strtol(optarg, NULL, 0);
break;
case 6:
end_s = strtol(optarg, NULL, 0);
break;
}
}
if (optind >= argc) {
fprintf(stderr, "%s: missing output file.\n", bin_name);
return -2;
}
if (!file_t || start_t == -1) {
fprintf(stderr, "%s: missing required arguments for target file.\n", bin_name);
return -2;
}
if (!file_s || start_s == -1 || end_s == -1) {
fprintf(stderr, "%s: missing required arguments for source file.\n", bin_name);
return -2;
}
// Main function
char *out = argv[optind];
printf("Parsing file %s\n\n", file_s);
get_chunk = true;
chunk_start = start_s;
chunk_end = end_s;
rand_start = rand_end = UINT_MAX;
set_parser();
setup_input(file_s);
try
{
generate_file();
success_s = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success_s = true;
}
catch (...)
{
delete_globals();
}
if (!success_s)
{
fprintf(stderr, "%s: Parsing %s failed\n", bin_name, file_s);
}
if (rand_start == UINT_MAX) {
fprintf(stderr, "%s: Unable to find chunk in file %s\n", bin_name, file_s);
return -2;
}
copy_rand(rand_s);
start_s = rand_start;
end_s = rand_end;
optional_s = is_optional;
printf("\nParsing file %s\n\n", file_t);
get_chunk = true;
chunk_start = start_t;
chunk_end = -1;
rand_start = rand_end = UINT_MAX;
set_parser();
setup_input(file_t);
try
{
generate_file();
success_t = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success_t = true;
}
catch (...)
{
delete_globals();
}
if (!success_t)
{
fprintf(stderr, "%s: Parsing %s failed\n", bin_name, file_t);
}
len_t = copy_rand(rand_t);
start_t = rand_start;
if (rand_start == UINT_MAX) {
fprintf(stderr, "%s: Invalid position for insertion into file %s.\n", bin_name, file_t);
fprintf(stderr, "Insertion can only happen at the start of an optional chunk or after the end of an appendable chunk/file.\n");
return -2;
}
if (!optional_s) {
fprintf(stderr, "%s: Trying to insert non-optional chunk from file %s.\n", bin_name, file_s);
return -2;
}
printf("\nGenerating file %s\n\n", out);
unsigned rand_size = len_t + (end_s + 1 - start_s);
assert(rand_size <= MAX_RAND_SIZE);
memmove(rand_t + start_t + end_s + 1 - start_s, rand_t + start_t, len_t - start_t);
memcpy(rand_t + start_t, rand_s + start_s, end_s + 1 - start_s);
get_chunk = false;
smart_mutation = true;
is_optional = true;
unsigned rand_end0 = rand_end = start_t + end_s - start_s;
set_generator();
unsigned char* file = NULL;
unsigned file_size = ff_generate(rand_t, MAX_RAND_SIZE, &file);
if (!file || !file_size) {
printf("Failed to generate mutated file!\n");
return -2;
}
save_output(out);
if (rand_end0 < rand_end)
fprintf(stderr, "Warning: Consumed %u more decision bytes than expected while generating chunk.\n", rand_end - rand_end0);
if (rand_end0 > rand_end)
fprintf(stderr, "Warning: Consumed %u less decision bytes than expected while generating chunk.\n", rand_end0 - rand_end);
fprintf(stderr, "%s: %s created\n", bin_name, out);
delete[] rand_t;
delete[] rand_s;
if (!success_s || !success_t)
return -2;
return (rand_end > rand_end0) - (rand_end < rand_end0);
}
// smart_abstract - randomize a chunk
int smart_abstract(int argc, char **argv)
{
char *file_t = NULL;
int start_t = -1;
int end_t = -1;
bool success = false;
unsigned char *rand_t = new unsigned char[MAX_RAND_SIZE];
unsigned len_t;
int rand_fd = open("/dev/urandom", O_RDONLY);
ssize_t r = read(rand_fd, rand_t, MAX_RAND_SIZE);
if (r != MAX_RAND_SIZE)
printf("Read only %ld bytes from /dev/urandom\n", r);
// Process options
while (1)
{
static struct option long_options[] =
{
{"help", no_argument, 0, 'h'},
{"targetfile", required_argument, 0, 1},
{"targetstart", required_argument, 0, 2},
{"targetend", required_argument, 0, 3},
{0, 0, 0, 0}};
int option_index = 0;
int c = getopt_long(argc, argv, "",
long_options, &option_index);
// Detect the end of the options.
if (c == -1)
break;
switch (c)
{
case 'h':
case '?':
fprintf(stderr, R"(abstract: Smart Abstraction
abstract --targetfile file_t --targetstart start_t --targetend end_t OUTFILE
Apply a smart abstraction operation, randomizing one chunk from file_t (byte
range [start_t, end_t]). The contents of the chunk will be randomly
generated, while trying to preserve decisions made before and after the
chunk. This smart abstraction should also fix constraints implemented in
the binary template (such as length fields).
)");
return 0;
case 1:
file_t = optarg;
break;
case 2:
start_t = strtol(optarg, NULL, 0);
break;
case 3:
end_t = strtol(optarg, NULL, 0);
break;
}
}
if (optind >= argc) {
fprintf(stderr, "%s: missing output file.\n", bin_name);
return -2;
}
if (!file_t || start_t == -1 || end_t == -1) {
fprintf(stderr, "%s: missing required arguments for target file.\n", bin_name);
return -2;
}
// Main function
char *out = argv[optind];
printf("\nParsing file %s\n\n", file_t);
success = false;
get_chunk = true;
chunk_start = start_t;
chunk_end = end_t;
rand_start = rand_end = UINT_MAX;
set_parser();
setup_input(file_t);
try
{
generate_file();
success = true;
}
catch (int status)
{
delete_globals();
if (status == 0)
success = true;
}
catch (...)
{
delete_globals();
}
if (!success)
{
fprintf(stderr, "%s: Parsing %s failed\n", bin_name, file_t);
}
if (rand_start == UINT_MAX) {
fprintf(stderr, "%s: Unable to find chunk in file %s\n", bin_name, file_t);
return -2;
}
len_t = copy_rand(rand_t);
start_t = rand_start;
end_t = rand_end;
printf("\nGenerating file %s\n\n", out);
following_rand_size = len_t - (end_t + 1);
following_rand_buffer = new unsigned char[following_rand_size];
memcpy(following_rand_buffer, rand_t + end_t + 1, following_rand_size);
r = read(rand_fd, rand_t + start_t, len_t - start_t);
if (r != len_t - start_t)
printf("Read only %ld bytes from /dev/urandom\n", r);
close(rand_fd);
get_chunk = false;
smart_abstraction = true;
set_generator();
unsigned char* file = NULL;
unsigned file_size = ff_generate(rand_t, MAX_RAND_SIZE, &file);
if (!file || !file_size) {
printf("Failed to generate mutated file!\n");
return -2;
}
save_output(out);
fprintf(stderr, "%s: %s created\n", bin_name, out);
delete[] rand_t;
delete[] following_rand_buffer;
if (smart_abstraction) {
printf("Abstracted chunk was not created!\n");
return -1;
}
return success ? 0 : -2;
}
// smart_swap - apply a smart swap
int smart_swap(int argc, char **argv)
{
char *file_t = NULL;
int start_t = -1;
int end_t = -1;
bool optional_t = false;
const char* chunk_t;
int start_s = -1;
int end_s = -1;
bool optional_s = false;
const char* chunk_s;
bool success = false;
unsigned char *rand_t = new unsigned char[MAX_RAND_SIZE];
unsigned char *rand_s = new unsigned char[MAX_RAND_SIZE];
unsigned len_t;
int rand_fd = open("/dev/urandom", O_RDONLY);
ssize_t r = read(rand_fd, rand_t, MAX_RAND_SIZE);
if (r != MAX_RAND_SIZE)
printf("Read only %ld bytes from /dev/urandom\n", r);