Coverage Report

Created: 2025-07-23 06:31

/src/fuzz_textfile.c
Line
Count
Source (jump to first uncovered line)
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.87k
char *get_null_terminated(const uint8_t **data, size_t *size) {
26
12.8k
#define STR_SIZE 75
27
1.87k
  if (*size < STR_SIZE || (int)*size < 0) {
28
46
    return NULL;
29
46
  }
30
31
1.82k
  char *new_s = malloc(STR_SIZE + 1);
32
1.82k
  memcpy(new_s, *data, STR_SIZE);
33
1.82k
  new_s[STR_SIZE] = '\0';
34
35
1.82k
  *data = *data+STR_SIZE;
36
1.82k
  *size -= STR_SIZE;
37
1.82k
  return new_s;
38
1.87k
}
39
40
625
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
41
625
  uint8_t *data_ptr = data;
42
625
  size_t size_val = size;
43
44
625
  char *key1 = get_null_terminated(&data_ptr, &size_val);
45
625
  char *val1 = get_null_terminated(&data_ptr, &size_val);
46
625
  char *key2 = get_null_terminated(&data_ptr, &size_val);
47
48
625
  if (!key1 || !val1 || !key2) {
49
18
    goto cleanup;
50
18
  }
51
  // Create a file with rest of content
52
607
  char filename[256];
53
607
  sprintf(filename, "/tmp/libfuzzer.%d", getpid());
54
607
  FILE *fp = fopen(filename, "wb");
55
607
  if (!fp) {
56
0
    return 0;
57
0
  }
58
607
  fwrite(data_ptr, size_val, 1, fp);
59
607
  fclose(fp);
60
61
607
  textfile_put(filename, key1, val1);
62
607
  textfile_get(filename, key2);
63
64
607
  unlink(filename);
65
66
625
cleanup:
67
68
625
  if (key1 != NULL) {
69
612
    free(key1);
70
612
    key1 = NULL;
71
612
  }
72
625
  if (val1 != NULL) {
73
610
    free(val1);
74
610
    val1 = NULL;
75
610
  }
76
625
  if (key2 != NULL) {
77
607
    free(key2);
78
607
    key2 = NULL;
79
607
  }
80
81
625
  return 0;
82
607
}