Coverage Report

Created: 2023-09-25 06:15

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