Coverage Report

Created: 2026-07-16 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/httrack/fuzz/fuzz-entities.c
Line
Count
Source
1
/* ------------------------------------------------------------ */
2
/*
3
HTTrack Website Copier, Offline Browser for Windows and Unix
4
Copyright (C) 1998 Xavier Roche and other contributors
5
6
SPDX-License-Identifier: GPL-3.0-or-later
7
8
This program is free software: you can redistribute it and/or modify
9
it under the terms of the GNU General Public License as published by
10
the Free Software Foundation, either version 3 of the License, or
11
(at your option) any later version.
12
13
This program is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
GNU General Public License for more details.
17
18
You should have received a copy of the GNU General Public License
19
along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21
Ethical use: we kindly ask that you NOT use this software to harvest email
22
addresses or to collect any other private information about people. Doing so
23
would dishonor our work and waste the many hours we have spent on it.
24
25
Please visit our Website: http://www.httrack.com
26
*/
27
28
/* Fuzz the HTML entity decoder (htsencoding.c). First input byte picks the
29
   destination size, so truncation bounds get exercised too. */
30
#include "fuzz.h"
31
#include "htsencoding.h"
32
33
29.2k
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
34
29.2k
  static const size_t dsizes[] = {1, 2, 8, 64, 4096};
35
29.2k
  size_t dsize;
36
29.2k
  char *src, *dest;
37
38
29.2k
  if (size == 0)
39
0
    return 0;
40
29.2k
  dsize = dsizes[data[0] % (sizeof(dsizes) / sizeof(dsizes[0]))];
41
29.2k
  data++, size--;
42
29.2k
  src = fuzz_strdup(data, size);
43
29.2k
  dest = malloct(dsize);
44
45
29.2k
  (void) hts_unescapeEntities(src, dest, dsize);
46
29.2k
  (void) hts_unescapeEntitiesWithCharset(src, dest, dsize, "iso-8859-1");
47
48
29.2k
  freet(dest);
49
  freet(src);
50
29.2k
  return 0;
51
29.2k
}