forked from fancycode/lzma-fuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathppmdenc_fuzzer.cc
79 lines (70 loc) · 2.17 KB
/
ppmdenc_fuzzer.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
*
* @copyright Copyright (c) 2019 Joachim Bauch <[email protected]>
*
* @license GNU GPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#include <assert.h>
#include <stdint.h>
#include "Ppmd7.h"
#include "common-alloc.h"
#include "common-buffer.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
if (size <= 10) {
return 0;
}
CPpmd7 p_enc;
Ppmd7_Construct(&p_enc);
UInt32 memsize = PPMD7_MIN_MEM_SIZE;
if (!Ppmd7_Alloc(&p_enc, memsize, &CommonAlloc)) {
return 0;
}
int order = data[0];
if (order < PPMD7_MIN_ORDER || order > PPMD7_MAX_ORDER) {
Ppmd7_Free(&p_enc, &CommonAlloc);
return 0;
}
Ppmd7_Init(&p_enc, order);
OutputByteBuffer out_buffer;
CPpmd7z_RangeEnc enc;
Ppmd7z_RangeEnc_Init(&enc);
enc.Stream = out_buffer.stream();
for (size_t i = 0; i < size; ++i) {
Ppmd7_EncodeSymbol(&p_enc, &enc, data[i]);
}
Ppmd7z_RangeEnc_FlushData(&enc);
Ppmd7_Free(&p_enc, &CommonAlloc);
{
assert(out_buffer.size() >= 5);
InputByteBuffer in_buffer(out_buffer.data(), out_buffer.size());
CPpmd7 p_dec;
Ppmd7_Construct(&p_dec);
assert(Ppmd7_Alloc(&p_dec, memsize, &CommonAlloc));
Ppmd7_Init(&p_dec, order);
CPpmd7z_RangeDec dec;
Ppmd7z_RangeDec_CreateVTable(&dec);
dec.Stream = in_buffer.stream();
assert(Ppmd7z_RangeDec_Init(&dec));
for (size_t i = 0; i < size; ++i) {
int sym = Ppmd7_DecodeSymbol(&p_dec, &dec.vt);
assert(sym >= 0);
assert(sym == data[i]);
}
Ppmd7_Free(&p_dec, &CommonAlloc);
}
return 0;
}