Coverage Report

Created: 2026-05-24 07:45

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