- Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathfuzz_readelf.c
129 lines (108 loc) · 3.08 KB
/
fuzz_readelf.c
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
/* Copyright 2020 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*
* We convert readelf.c into a header file to make convenient for fuzzing.
* We do this for several of the binutils applications when creating
* the binutils fuzzers.
*/
#include"readelf.h"
#include"bfd.h"
#include"libbfd.h"
intcheck_architecture(char*tmpfilename, char*arch_string) {
bfd_cleanupcleanup=NULL;
bfd*file=bfd_openr(tmpfilename, arch_string);
if (file==NULL) {
remove(tmpfilename);
return0;
}
if (!bfd_read_p(file) ||
(unsigned int)file->format >= (unsigned int)bfd_type_end) {
bfd_close(file);
return0;
}
booldoAnalysis= false;
if (bfd_seek(file, (file_ptr)0, SEEK_SET) ==0) {
file->format=bfd_object;
cleanup=BFD_SEND_FMT(file, _bfd_check_format, (file));
if (cleanup) {
doAnalysis= true;
cleanup(file);
}
file->format=bfd_unknown;
}
if (file!=NULL) {
bfd_close(file);
}
// return 1 if the architecture matches.
if (doAnalysis) {
return1;
}
return0;
}
// int gb=0;
intLLVMFuzzerTestOneInput(constuint8_t*Data, size_tSize);
intLLVMFuzzerTestOneInput(constuint8_t*data, size_tsize) {
charfilename[256];
sprintf(filename, "/tmp/libfuzzer.%d", getpid());
FILE*fp=fopen(filename, "wb");
if (!fp)
return0;
/* Code to quickly extract target list.
* This is used to identify new targets but should
* not be in the fuzz code.
if (gb == 0) {
char **doublel = bfd_target_list();
while (*doublel != NULL) {
printf("Target: %s\n", *doublel);
doublel++;
}
gb=1;
}
exit(0);
*/
#ifdefREADELF_TARGETED
if (check_architecture(filename, READELF_TARGETED) ==0) {
unlink(filename);
return0;
}
#endif
fwrite(data, size, 1, fp);
fclose(fp);
do_syms= true;
do_reloc= true;
do_unwind= true;
do_dynamic= true;
do_header= true;
do_sections= true;
do_section_groups= true;
do_segments= true;
do_version= true;
do_histogram= true;
do_arch= true;
do_notes= true;
// Enable DWARF analysis
// We must call both dwarf_select_sections_by_letters and
// dwarf_select_sections_all since dwarf_select_sections_all does not set
// do_debug_lines |= FLAG_DEBUG_LINES_DECODED;
dwarf_select_sections_by_letters("L");
dwarf_select_sections_all();
// Main fuzz entrypoint
process_file(filename);
unlink(filename);
free(dump_ctf_symtab_name);
dump_ctf_symtab_name=NULL;
free(dump_ctf_strtab_name);
dump_ctf_strtab_name=NULL;
free(dump_ctf_parent_name);
dump_ctf_parent_name=NULL;
return0;
}