Coverage Report

Created: 2025-08-03 06:26

/src/libdwarf/fuzz/fuzz_xuindex.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 "dwarf.h"
13
#include "libdwarf.h"
14
#include <fcntl.h> /* open() O_RDONLY O_BINARY */
15
#include <stdint.h>
16
#include <stdio.h>
17
#include <stdlib.h>
18
#include <string.h>
19
#include <sys/stat.h>
20
#include <sys/types.h>
21
#include <unistd.h>
22
23
#ifndef O_BINARY
24
15.8k
#define O_BINARY 0
25
#endif
26
27
15.8k
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
28
15.8k
  char filename[256];
29
15.8k
  sprintf(filename, "/tmp/libfuzzer.%d", getpid());
30
31
15.8k
  FILE *fp = fopen(filename, "wb");
32
15.8k
  if (!fp) {
33
0
    return 0;
34
0
  }
35
15.8k
  fwrite(data, size, 1, fp);
36
15.8k
  fclose(fp);
37
38
15.8k
  Dwarf_Debug dbg = 0;
39
15.8k
  int fuzz_fd = 0;
40
15.8k
  int res = DW_DLV_ERROR;
41
15.8k
  Dwarf_Error error = 0;
42
15.8k
  Dwarf_Handler errhand = 0;
43
15.8k
  Dwarf_Ptr errarg = 0;
44
15.8k
  Dwarf_Error *errp = 0;
45
15.8k
  int i = 0;
46
15.8k
  Dwarf_Die die;
47
48
15.8k
  fuzz_fd = open(filename, O_RDONLY|O_BINARY);
49
15.8k
  if (fuzz_fd != -1) {
50
15.8k
    res =
51
15.8k
        dwarf_init_b(fuzz_fd, DW_GROUPNUMBER_ANY, errhand, errarg, &dbg, errp);
52
15.8k
    if (res == DW_DLV_OK) {
53
440
      Dwarf_Xu_Index_Header xuhdr = 0;
54
440
      Dwarf_Unsigned version_number = 0;
55
440
      Dwarf_Unsigned offsets_count = 0;
56
440
      Dwarf_Unsigned units_count = 0;
57
440
      Dwarf_Unsigned hash_slots_count = 0;
58
440
      const char *section_name = 0;
59
440
      res = dwarf_get_xu_index_header(dbg, "cu", &xuhdr, &version_number,
60
440
                                      &offsets_count, &units_count,
61
440
                                      &hash_slots_count, &section_name, errp);
62
440
    }
63
15.8k
  }
64
15.8k
  dwarf_finish(dbg);
65
15.8k
  close(fuzz_fd);
66
15.8k
  unlink(filename);
67
15.8k
  return 0;
68
15.8k
}