Coverage Report

Created: 2026-03-12 06:35

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Utilities/cmliblzma/liblzma/common/alone_decoder.c
Line
Count
Source
1
// SPDX-License-Identifier: 0BSD
2
3
///////////////////////////////////////////////////////////////////////////////
4
//
5
/// \file       alone_decoder.c
6
/// \brief      Decoder for LZMA_Alone files
7
//
8
//  Author:     Lasse Collin
9
//
10
///////////////////////////////////////////////////////////////////////////////
11
12
#include "alone_decoder.h"
13
#include "lzma_decoder.h"
14
#include "lz_decoder.h"
15
16
17
typedef struct {
18
  lzma_next_coder next;
19
20
  enum {
21
    SEQ_PROPERTIES,
22
    SEQ_DICTIONARY_SIZE,
23
    SEQ_UNCOMPRESSED_SIZE,
24
    SEQ_CODER_INIT,
25
    SEQ_CODE,
26
  } sequence;
27
28
  /// If true, reject files that are unlikely to be .lzma files.
29
  /// If false, more non-.lzma files get accepted and will give
30
  /// LZMA_DATA_ERROR either immediately or after a few output bytes.
31
  bool picky;
32
33
  /// Position in the header fields
34
  size_t pos;
35
36
  /// Uncompressed size decoded from the header
37
  lzma_vli uncompressed_size;
38
39
  /// Memory usage limit
40
  uint64_t memlimit;
41
42
  /// Amount of memory actually needed (only an estimate)
43
  uint64_t memusage;
44
45
  /// Options decoded from the header needed to initialize
46
  /// the LZMA decoder
47
  lzma_options_lzma options;
48
} lzma_alone_coder;
49
50
51
static lzma_ret
52
alone_decode(void *coder_ptr, const lzma_allocator *allocator,
53
    const uint8_t *restrict in, size_t *restrict in_pos,
54
    size_t in_size, uint8_t *restrict out,
55
    size_t *restrict out_pos, size_t out_size,
56
    lzma_action action)
57
1.62k
{
58
1.62k
  lzma_alone_coder *coder = coder_ptr;
59
60
10.6k
  while (*out_pos < out_size
61
10.5k
      && (coder->sequence == SEQ_CODE || *in_pos < in_size))
62
10.5k
  switch (coder->sequence) {
63
702
  case SEQ_PROPERTIES:
64
702
    if (lzma_lzma_lclppb_decode(&coder->options, in[*in_pos]))
65
10
      return LZMA_FORMAT_ERROR;
66
67
692
    coder->sequence = SEQ_DICTIONARY_SIZE;
68
692
    ++*in_pos;
69
692
    break;
70
71
2.76k
  case SEQ_DICTIONARY_SIZE:
72
2.76k
    coder->options.dict_size
73
2.76k
        |= (size_t)(in[*in_pos]) << (coder->pos * 8);
74
75
2.76k
    if (++coder->pos == 4) {
76
692
      if (coder->picky && coder->options.dict_size
77
0
          != UINT32_MAX) {
78
        // A hack to ditch tons of false positives:
79
        // We allow only dictionary sizes that are
80
        // 2^n or 2^n + 2^(n-1). LZMA_Alone created
81
        // only files with 2^n, but accepts any
82
        // dictionary size.
83
0
        uint32_t d = coder->options.dict_size - 1;
84
0
        d |= d >> 2;
85
0
        d |= d >> 3;
86
0
        d |= d >> 4;
87
0
        d |= d >> 8;
88
0
        d |= d >> 16;
89
0
        ++d;
90
91
0
        if (d != coder->options.dict_size)
92
0
          return LZMA_FORMAT_ERROR;
93
0
      }
94
95
692
      coder->pos = 0;
96
692
      coder->sequence = SEQ_UNCOMPRESSED_SIZE;
97
692
    }
98
99
2.76k
    ++*in_pos;
100
2.76k
    break;
101
102
5.53k
  case SEQ_UNCOMPRESSED_SIZE:
103
5.53k
    coder->uncompressed_size
104
5.53k
        |= (lzma_vli)(in[*in_pos]) << (coder->pos * 8);
105
5.53k
    ++*in_pos;
106
5.53k
    if (++coder->pos < 8)
107
4.84k
      break;
108
109
    // Another hack to ditch false positives: Assume that
110
    // if the uncompressed size is known, it must be less
111
    // than 256 GiB.
112
    //
113
    // FIXME? Without picky we allow > LZMA_VLI_MAX which doesn't
114
    // really matter in this specific situation (> LZMA_VLI_MAX is
115
    // safe in the LZMA decoder) but it's somewhat weird still.
116
692
    if (coder->picky
117
0
        && coder->uncompressed_size != LZMA_VLI_UNKNOWN
118
0
        && coder->uncompressed_size
119
0
          >= (LZMA_VLI_C(1) << 38))
120
0
      return LZMA_FORMAT_ERROR;
121
122
    // Use LZMA_FILTER_LZMA1EXT features to specify the
123
    // uncompressed size and that the end marker is allowed
124
    // even when the uncompressed size is known. Both .lzma
125
    // header and LZMA1EXT use UINT64_MAX indicate that size
126
    // is unknown.
127
692
    coder->options.ext_flags = LZMA_LZMA1EXT_ALLOW_EOPM;
128
692
    lzma_set_ext_size(coder->options, coder->uncompressed_size);
129
130
    // Calculate the memory usage so that it is ready
131
    // for SEQ_CODER_INIT.
132
692
    coder->memusage = lzma_lzma_decoder_memusage(&coder->options)
133
692
        + LZMA_MEMUSAGE_BASE;
134
135
692
    coder->pos = 0;
136
692
    coder->sequence = SEQ_CODER_INIT;
137
138
  // Fall through
139
140
692
  case SEQ_CODER_INIT: {
141
692
    if (coder->memusage > coder->memlimit)
142
0
      return LZMA_MEMLIMIT_ERROR;
143
144
692
    lzma_filter_info filters[2] = {
145
692
      {
146
692
        .id = LZMA_FILTER_LZMA1EXT,
147
692
        .init = &lzma_lzma_decoder_init,
148
692
        .options = &coder->options,
149
692
      }, {
150
692
        .init = NULL,
151
692
      }
152
692
    };
153
154
692
    return_if_error(lzma_next_filter_init(&coder->next,
155
692
        allocator, filters));
156
157
692
    coder->sequence = SEQ_CODE;
158
692
    break;
159
692
  }
160
161
1.57k
  case SEQ_CODE: {
162
1.57k
    return coder->next.code(coder->next.coder,
163
1.57k
        allocator, in, in_pos, in_size,
164
1.57k
        out, out_pos, out_size, action);
165
692
  }
166
167
0
  default:
168
0
    return LZMA_PROG_ERROR;
169
10.5k
  }
170
171
44
  return LZMA_OK;
172
1.62k
}
173
174
175
static void
176
alone_decoder_end(void *coder_ptr, const lzma_allocator *allocator)
177
750
{
178
750
  lzma_alone_coder *coder = coder_ptr;
179
750
  lzma_next_end(&coder->next, allocator);
180
750
  lzma_free(coder, allocator);
181
750
  return;
182
750
}
183
184
185
static lzma_ret
186
alone_decoder_memconfig(void *coder_ptr, uint64_t *memusage,
187
    uint64_t *old_memlimit, uint64_t new_memlimit)
188
0
{
189
0
  lzma_alone_coder *coder = coder_ptr;
190
191
0
  *memusage = coder->memusage;
192
0
  *old_memlimit = coder->memlimit;
193
194
0
  if (new_memlimit != 0) {
195
0
    if (new_memlimit < coder->memusage)
196
0
      return LZMA_MEMLIMIT_ERROR;
197
198
0
    coder->memlimit = new_memlimit;
199
0
  }
200
201
0
  return LZMA_OK;
202
0
}
203
204
205
extern lzma_ret
206
lzma_alone_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator,
207
    uint64_t memlimit, bool picky)
208
750
{
209
750
  lzma_next_coder_init(&lzma_alone_decoder_init, next, allocator);
210
211
750
  lzma_alone_coder *coder = next->coder;
212
213
750
  if (coder == NULL) {
214
750
    coder = lzma_alloc(sizeof(lzma_alone_coder), allocator);
215
750
    if (coder == NULL)
216
0
      return LZMA_MEM_ERROR;
217
218
750
    next->coder = coder;
219
750
    next->code = &alone_decode;
220
750
    next->end = &alone_decoder_end;
221
750
    next->memconfig = &alone_decoder_memconfig;
222
750
    coder->next = LZMA_NEXT_CODER_INIT;
223
750
  }
224
225
750
  coder->sequence = SEQ_PROPERTIES;
226
750
  coder->picky = picky;
227
750
  coder->pos = 0;
228
750
  coder->options.dict_size = 0;
229
750
  coder->options.preset_dict = NULL;
230
750
  coder->options.preset_dict_size = 0;
231
750
  coder->uncompressed_size = 0;
232
750
  coder->memlimit = my_max(1, memlimit);
233
750
  coder->memusage = LZMA_MEMUSAGE_BASE;
234
235
750
  return LZMA_OK;
236
750
}
237
238
239
extern LZMA_API(lzma_ret)
240
lzma_alone_decoder(lzma_stream *strm, uint64_t memlimit)
241
750
{
242
750
  lzma_next_strm_init(lzma_alone_decoder_init, strm, memlimit, false);
243
244
750
  strm->internal->supported_actions[LZMA_RUN] = true;
245
750
  strm->internal->supported_actions[LZMA_FINISH] = true;
246
247
750
  return LZMA_OK;
248
750
}