/src/libdwarf/fuzz/fuzz_init_binary.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* Copyright 2021 Google LLC |
2 | | Licensed under the Apache License, Version 2.0 (the "License"); |
3 | | you may not use this file except in compliance with the License. |
4 | | You may obtain a copy of the License at |
5 | | http://www.apache.org/licenses/LICENSE-2.0 |
6 | | Unless required by applicable law or agreed to in writing, software |
7 | | distributed under the License is distributed on an "AS IS" BASIS, |
8 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
9 | | See the License for the specific language governing permissions and |
10 | | limitations under the License. |
11 | | */ |
12 | | #include <fcntl.h> /* open() O_RDONLY O_BINARY */ |
13 | | #include <stdint.h> |
14 | | #include <stdio.h> |
15 | | #include <stdlib.h> |
16 | | #include <string.h> |
17 | | #include <sys/stat.h> |
18 | | #include <sys/types.h> |
19 | | #include <unistd.h> |
20 | | |
21 | | /* |
22 | | * Libdwarf library callers can only use these headers. |
23 | | */ |
24 | | #include "dwarf.h" |
25 | | #include "libdwarf.h" |
26 | | #ifndef O_BINARY |
27 | 24.4k | #define O_BINARY 0 |
28 | | #endif |
29 | | |
30 | | /* |
31 | | * A fuzzer that simulates a small part of the simplereader.c example. |
32 | | * This fuzzer targets dwarf_init_b. |
33 | | */ |
34 | 24.4k | int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
35 | 24.4k | char filename[256]; |
36 | 24.4k | sprintf(filename, "/tmp/libfuzzer.%d", getpid()); |
37 | | |
38 | 24.4k | FILE *fp = fopen(filename, "wb"); |
39 | 24.4k | if (!fp) { |
40 | 0 | return 0; |
41 | 0 | } |
42 | 24.4k | fwrite(data, size, 1, fp); |
43 | 24.4k | fclose(fp); |
44 | | |
45 | 24.4k | int fuzz_fd = 0; |
46 | 24.4k | Dwarf_Ptr errarg = 0; |
47 | 24.4k | Dwarf_Handler errhand = 0; |
48 | 24.4k | Dwarf_Error *errp = NULL; |
49 | 24.4k | Dwarf_Debug dbg = 0; |
50 | | |
51 | 24.4k | fuzz_fd = open(filename, O_RDONLY|O_BINARY); |
52 | 24.4k | if (fuzz_fd != -1) { |
53 | 24.4k | dwarf_init_b(fuzz_fd, DW_GROUPNUMBER_ANY, errhand, errarg, &dbg, errp); |
54 | 24.4k | dwarf_finish(dbg); |
55 | 24.4k | close(fuzz_fd); |
56 | 24.4k | } |
57 | | |
58 | 24.4k | unlink(filename); |
59 | 24.4k | return 0; |
60 | 24.4k | } |