Coverage Report

Created: 2026-02-26 06:16

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libdwarf/fuzz/fuzz_init_b.c
Line
Count
Source
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/types.h>
18
#include <unistd.h>
19
20
#ifndef O_BINARY
21
7.45k
#define O_BINARY 0 /* So it does nothing in Linux/Unix */
22
#endif
23
24
/*
25
 * Libdwarf library callers can only use these headers.
26
 */
27
#include "dwarf.h"
28
#include "libdwarf.h"
29
30
/*
31
 * A fuzzer that simulates a small part of the simplereader.c example.
32
 */
33
7.45k
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
34
7.45k
  char filename[256];
35
36
#ifdef DWREGRESSIONTEMP
37
  /*  Under msys2, the /tmp/ results in an open fail,
38
      so we discard the /tmp/ here */
39
  sprintf(filename, "junklibfuzzer.%d", getpid());
40
#else
41
7.45k
  sprintf(filename, "/tmp/libfuzzer.%d", getpid());
42
7.45k
#endif
43
7.45k
  FILE *fp = fopen(filename, "wb");
44
7.45k
  if (!fp) {
45
0
    printf("FAIL libfuzzer cannot open temp as writeable %s\n",
46
0
        filename);
47
0
    return 0;
48
0
  }
49
7.45k
  fwrite(data, size, 1, fp);
50
7.45k
  fclose(fp);
51
52
7.45k
  Dwarf_Debug dbg = 0;
53
7.45k
  int res = DW_DLV_ERROR;
54
7.45k
  Dwarf_Error error = 0;
55
7.45k
  Dwarf_Handler errhand = 0;
56
7.45k
  Dwarf_Ptr errarg = 0;
57
7.45k
  int regtabrulecount = 0;
58
7.45k
  int curopt = 0;
59
60
7.45k
  int fd = open(filename, O_RDONLY | O_BINARY);
61
7.45k
  if (fd < 0) {
62
0
    printf("Unable to open %s, giving up.\n", filename);
63
0
    exit(EXIT_FAILURE);
64
0
  }
65
66
7.45k
  res = dwarf_init_b(fd, DW_GROUPNUMBER_ANY, errhand, errarg, &dbg, &error);
67
68
7.45k
  if (res != DW_DLV_OK) {
69
7.20k
    printf("Giving up, dwarf_init failed, "
70
7.20k
           "cannot do DWARF processing\n");
71
7.20k
    if (res == DW_DLV_ERROR) {
72
5.33k
      printf("Error code %s\n", dwarf_errmsg(error));
73
5.33k
    }
74
7.20k
    dwarf_dealloc_error(dbg, error);
75
    // exit(EXIT_FAILURE);
76
7.20k
  }
77
  // else {
78
  // printf("Processing");
79
  // }
80
81
7.45k
  dwarf_finish(dbg);
82
7.45k
  close(fd);
83
7.45k
  unlink(filename);
84
7.45k
  return 0;
85
7.45k
}