Coverage Report

Created: 2026-04-03 06:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/fuzz_textfile.c
Line
Count
Source
1
/* Copyright 2022 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 <config.h>
13
14
#include <stdint.h>
15
#include <stdio.h>
16
#include <string.h>
17
#include <stdlib.h>
18
#include <syslog.h>
19
#include <fcntl.h>
20
#include <unistd.h>
21
22
#include "src/textfile.h"
23
24
25
1.86k
char *get_null_terminated(const uint8_t **data, size_t *size) {
26
12.8k
#define STR_SIZE 75
27
1.86k
  if (*size < STR_SIZE || (int)*size < 0) {
28
46
    return NULL;
29
46
  }
30
31
1.81k
  char *new_s = malloc(STR_SIZE + 1);
32
1.81k
  memcpy(new_s, *data, STR_SIZE);
33
1.81k
  new_s[STR_SIZE] = '\0';
34
35
1.81k
  *data = *data+STR_SIZE;
36
1.81k
  *size -= STR_SIZE;
37
1.81k
  return new_s;
38
1.86k
}
39
40
621
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
41
621
  uint8_t *data_ptr = data;
42
621
  size_t size_val = size;
43
44
621
  char *key1 = get_null_terminated(&data_ptr, &size_val);
45
621
  char *val1 = get_null_terminated(&data_ptr, &size_val);
46
621
  char *key2 = get_null_terminated(&data_ptr, &size_val);
47
48
621
  if (!key1 || !val1 || !key2) {
49
18
    goto cleanup;
50
18
  }
51
  // Create a file with rest of content
52
603
  char filename[256];
53
603
  sprintf(filename, "/tmp/libfuzzer.%d", getpid());
54
603
  FILE *fp = fopen(filename, "wb");
55
603
  if (!fp) {
56
0
    return 0;
57
0
  }
58
603
  fwrite(data_ptr, size_val, 1, fp);
59
603
  fclose(fp);
60
61
603
  textfile_put(filename, key1, val1);
62
603
  textfile_get(filename, key2);
63
64
603
  unlink(filename);
65
66
621
cleanup:
67
68
621
  if (key1 != NULL) {
69
608
    free(key1);
70
608
    key1 = NULL;
71
608
  }
72
621
  if (val1 != NULL) {
73
606
    free(val1);
74
606
    val1 = NULL;
75
606
  }
76
621
  if (key2 != NULL) {
77
603
    free(key2);
78
603
    key2 = NULL;
79
603
  }
80
81
621
  return 0;
82
603
}