Coverage Report

Created: 2025-06-16 07:00

/src/libjxl/third_party/brotli/c/dec/state.c
Line
Count
Source (jump to first uncovered line)
1
/* Copyright 2015 Google Inc. All Rights Reserved.
2
3
   Distributed under MIT license.
4
   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5
*/
6
7
#include "state.h"
8
9
#include <stdlib.h>  /* free, malloc */
10
11
#include <brotli/types.h>
12
13
#include "../common/dictionary.h"
14
#include "huffman.h"
15
16
#if defined(__cplusplus) || defined(c_plusplus)
17
extern "C" {
18
#endif
19
20
BROTLI_BOOL BrotliDecoderStateInit(BrotliDecoderState* s,
21
0
    brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque) {
22
0
  if (!alloc_func) {
23
0
    s->alloc_func = BrotliDefaultAllocFunc;
24
0
    s->free_func = BrotliDefaultFreeFunc;
25
0
    s->memory_manager_opaque = 0;
26
0
  } else {
27
0
    s->alloc_func = alloc_func;
28
0
    s->free_func = free_func;
29
0
    s->memory_manager_opaque = opaque;
30
0
  }
31
32
0
  s->error_code = 0; /* BROTLI_DECODER_NO_ERROR */
33
34
0
  BrotliInitBitReader(&s->br);
35
0
  s->state = BROTLI_STATE_UNINITED;
36
0
  s->large_window = 0;
37
0
  s->substate_metablock_header = BROTLI_STATE_METABLOCK_HEADER_NONE;
38
0
  s->substate_uncompressed = BROTLI_STATE_UNCOMPRESSED_NONE;
39
0
  s->substate_decode_uint8 = BROTLI_STATE_DECODE_UINT8_NONE;
40
0
  s->substate_read_block_length = BROTLI_STATE_READ_BLOCK_LENGTH_NONE;
41
42
0
  s->buffer_length = 0;
43
0
  s->loop_counter = 0;
44
0
  s->pos = 0;
45
0
  s->rb_roundtrips = 0;
46
0
  s->partial_pos_out = 0;
47
0
  s->used_input = 0;
48
49
0
  s->block_type_trees = NULL;
50
0
  s->block_len_trees = NULL;
51
0
  s->ringbuffer = NULL;
52
0
  s->ringbuffer_size = 0;
53
0
  s->new_ringbuffer_size = 0;
54
0
  s->ringbuffer_mask = 0;
55
56
0
  s->context_map = NULL;
57
0
  s->context_modes = NULL;
58
0
  s->dist_context_map = NULL;
59
0
  s->context_map_slice = NULL;
60
0
  s->dist_context_map_slice = NULL;
61
62
0
  s->literal_hgroup.codes = NULL;
63
0
  s->literal_hgroup.htrees = NULL;
64
0
  s->insert_copy_hgroup.codes = NULL;
65
0
  s->insert_copy_hgroup.htrees = NULL;
66
0
  s->distance_hgroup.codes = NULL;
67
0
  s->distance_hgroup.htrees = NULL;
68
69
0
  s->is_last_metablock = 0;
70
0
  s->is_uncompressed = 0;
71
0
  s->is_metadata = 0;
72
0
  s->should_wrap_ringbuffer = 0;
73
0
  s->canny_ringbuffer_allocation = 1;
74
75
0
  s->window_bits = 0;
76
0
  s->max_distance = 0;
77
0
  s->dist_rb[0] = 16;
78
0
  s->dist_rb[1] = 15;
79
0
  s->dist_rb[2] = 11;
80
0
  s->dist_rb[3] = 4;
81
0
  s->dist_rb_idx = 0;
82
0
  s->block_type_trees = NULL;
83
0
  s->block_len_trees = NULL;
84
85
0
  s->mtf_upper_bound = 63;
86
87
0
  s->compound_dictionary = NULL;
88
0
  s->dictionary =
89
0
      BrotliSharedDictionaryCreateInstance(alloc_func, free_func, opaque);
90
0
  if (!s->dictionary) return BROTLI_FALSE;
91
92
0
  return BROTLI_TRUE;
93
0
}
94
95
0
void BrotliDecoderStateMetablockBegin(BrotliDecoderState* s) {
96
0
  s->meta_block_remaining_len = 0;
97
0
  s->block_length[0] = 1U << 24;
98
0
  s->block_length[1] = 1U << 24;
99
0
  s->block_length[2] = 1U << 24;
100
0
  s->num_block_types[0] = 1;
101
0
  s->num_block_types[1] = 1;
102
0
  s->num_block_types[2] = 1;
103
0
  s->block_type_rb[0] = 1;
104
0
  s->block_type_rb[1] = 0;
105
0
  s->block_type_rb[2] = 1;
106
0
  s->block_type_rb[3] = 0;
107
0
  s->block_type_rb[4] = 1;
108
0
  s->block_type_rb[5] = 0;
109
0
  s->context_map = NULL;
110
0
  s->context_modes = NULL;
111
0
  s->dist_context_map = NULL;
112
0
  s->context_map_slice = NULL;
113
0
  s->literal_htree = NULL;
114
0
  s->dist_context_map_slice = NULL;
115
0
  s->dist_htree_index = 0;
116
0
  s->context_lookup = NULL;
117
0
  s->literal_hgroup.codes = NULL;
118
0
  s->literal_hgroup.htrees = NULL;
119
0
  s->insert_copy_hgroup.codes = NULL;
120
0
  s->insert_copy_hgroup.htrees = NULL;
121
0
  s->distance_hgroup.codes = NULL;
122
0
  s->distance_hgroup.htrees = NULL;
123
0
}
124
125
0
void BrotliDecoderStateCleanupAfterMetablock(BrotliDecoderState* s) {
126
0
  BROTLI_DECODER_FREE(s, s->context_modes);
127
0
  BROTLI_DECODER_FREE(s, s->context_map);
128
0
  BROTLI_DECODER_FREE(s, s->dist_context_map);
129
0
  BROTLI_DECODER_FREE(s, s->literal_hgroup.htrees);
130
0
  BROTLI_DECODER_FREE(s, s->insert_copy_hgroup.htrees);
131
0
  BROTLI_DECODER_FREE(s, s->distance_hgroup.htrees);
132
0
}
133
134
#ifdef BROTLI_REPORTING
135
/* When BROTLI_REPORTING is defined extra reporting module have to be linked. */
136
void BrotliDecoderOnFinish(const BrotliDecoderState* s);
137
#define BROTLI_DECODER_ON_FINISH(s) BrotliDecoderOnFinish(s);
138
#else
139
#if !defined(BROTLI_DECODER_ON_FINISH)
140
0
#define BROTLI_DECODER_ON_FINISH(s) (void)(s);
141
#endif
142
#endif
143
144
0
void BrotliDecoderStateCleanup(BrotliDecoderState* s) {
145
0
  BrotliDecoderStateCleanupAfterMetablock(s);
146
147
0
  BROTLI_DECODER_ON_FINISH(s);
148
149
0
  BROTLI_DECODER_FREE(s, s->compound_dictionary);
150
0
  BrotliSharedDictionaryDestroyInstance(s->dictionary);
151
0
  s->dictionary = NULL;
152
0
  BROTLI_DECODER_FREE(s, s->ringbuffer);
153
0
  BROTLI_DECODER_FREE(s, s->block_type_trees);
154
0
}
155
156
BROTLI_BOOL BrotliDecoderHuffmanTreeGroupInit(BrotliDecoderState* s,
157
    HuffmanTreeGroup* group, uint32_t alphabet_size_max,
158
0
    uint32_t alphabet_size_limit, uint32_t ntrees) {
159
  /* 376 = 256 (1-st level table) + 4 + 7 + 15 + 31 + 63 (2-nd level mix-tables)
160
     This number is discovered "unlimited" "enough" calculator; it is actually
161
     a wee bigger than required in several cases (especially for alphabets with
162
     less than 16 symbols). */
163
0
  const size_t max_table_size = alphabet_size_limit + 376;
164
0
  const size_t code_size = sizeof(HuffmanCode) * ntrees * max_table_size;
165
0
  const size_t htree_size = sizeof(HuffmanCode*) * ntrees;
166
  /* Pointer alignment is, hopefully, wider than sizeof(HuffmanCode). */
167
0
  HuffmanCode** p = (HuffmanCode**)BROTLI_DECODER_ALLOC(s,
168
0
      code_size + htree_size);
169
0
  group->alphabet_size_max = (uint16_t)alphabet_size_max;
170
0
  group->alphabet_size_limit = (uint16_t)alphabet_size_limit;
171
0
  group->num_htrees = (uint16_t)ntrees;
172
0
  group->htrees = p;
173
0
  group->codes = (HuffmanCode*)(&p[ntrees]);
174
0
  return !!p;
175
0
}
176
177
#if defined(__cplusplus) || defined(c_plusplus)
178
}  /* extern "C" */
179
#endif