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 | | /* Shared helpers for the libFuzzer harnesses. */ |
29 | | #ifndef FUZZ_H |
30 | | #define FUZZ_H |
31 | | |
32 | | #define HTS_INTERNAL_BYTECODE |
33 | | |
34 | | #include <stddef.h> |
35 | | #include <stdint.h> |
36 | | #include <string.h> |
37 | | |
38 | | #include "htsbase.h" |
39 | | |
40 | | /* Heap NUL-terminated copy of the fuzzer input, so ASan bounds every read. */ |
41 | 1.36k | static char *fuzz_strdup(const uint8_t *data, size_t size) { |
42 | 1.36k | char *s = malloct(size + 1); |
43 | | |
44 | 1.36k | memcpy(s, data, size); |
45 | 1.36k | s[size] = '\0'; |
46 | 1.36k | return s; |
47 | 1.36k | } |
48 | | |
49 | | int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); |
50 | | |
51 | | #endif |