Coverage Report

Created: 2026-07-25 07:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjxl/lib/jxl/modular/encoding/dec_ma.cc
Line
Count
Source
1
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
2
//
3
// Use of this source code is governed by a BSD-style
4
// license that can be found in the LICENSE file.
5
6
#include "lib/jxl/modular/encoding/dec_ma.h"
7
8
#include <jxl/memory_manager.h>
9
10
#include <algorithm>
11
#include <cstddef>
12
#include <cstdint>
13
#include <limits>
14
#include <utility>
15
#include <vector>
16
17
#include "lib/jxl/base/printf_macros.h"
18
#include "lib/jxl/base/status.h"
19
#include "lib/jxl/dec_ans.h"
20
#include "lib/jxl/dec_bit_reader.h"
21
#include "lib/jxl/modular/encoding/ma_common.h"
22
#include "lib/jxl/modular/modular_image.h"
23
#include "lib/jxl/modular/options.h"
24
#include "lib/jxl/pack_signed.h"
25
26
namespace jxl {
27
28
namespace {
29
30
enum class NextAction { CHECK_AND_GO_LEFT, GO_RIGHT, POP };
31
32
struct WorkItem {
33
  size_t node_index;
34
  pixel_type orig_l;
35
  pixel_type orig_u;
36
  NextAction action;
37
};
38
39
146k
Status ValidateTree(const Tree& tree) {
40
146k
  if (tree.empty()) return true;
41
  // TODO(eustas): or invalid?
42
43
146k
  int num_properties = 0;
44
492k
  for (auto node : tree) {
45
492k
    if (node.property >= num_properties) {
46
23.3k
      num_properties = node.property + 1;
47
23.3k
    }
48
492k
  }
49
50
146k
  std::vector<std::pair<pixel_type, pixel_type>> property_ranges(
51
146k
      num_properties);
52
320k
  for (int i = 0; i < num_properties; i++) {
53
174k
    property_ranges[i].first = std::numeric_limits<pixel_type>::min();
54
174k
    property_ranges[i].second = std::numeric_limits<pixel_type>::max();
55
174k
  }
56
57
146k
  constexpr size_t kHeightLimit = 2048;
58
59
146k
  std::vector<WorkItem> stack;
60
146k
  stack.push_back({/*node_index=*/0, /*orig_l=*/0, /*orig_u=*/0,
61
146k
                   NextAction::CHECK_AND_GO_LEFT});
62
63
943k
  while (!stack.empty()) {
64
798k
    if (stack.size() >= kHeightLimit) return JXL_FAILURE("Tree too tall");
65
798k
    WorkItem& item = stack.back();
66
798k
    const auto& node = tree[item.node_index];
67
798k
    switch (item.action) {
68
473k
      case NextAction::CHECK_AND_GO_LEFT: {
69
473k
        int16_t p = node.property;
70
473k
        if (p == -1) {
71
308k
          stack.pop_back();
72
308k
          continue;
73
308k
        }
74
164k
        PropertyVal v = node.splitval;
75
164k
        pixel_type l = property_ranges[p].first;
76
164k
        pixel_type u = property_ranges[p].second;
77
164k
        if (l > v || u <= v) {
78
751
          return JXL_FAILURE("Invalid tree");
79
751
        }
80
163k
        item.orig_l = l;
81
163k
        item.orig_u = u;
82
163k
        item.action = NextAction::GO_RIGHT;
83
163k
        property_ranges[node.property].first = node.splitval + 1;
84
163k
        stack.push_back({/*node_index=*/node.lchild,
85
163k
                         /*orig_l=*/0, /*orig_u=*/0,
86
163k
                         NextAction::CHECK_AND_GO_LEFT});
87
163k
        continue;
88
164k
      }
89
90
163k
      case NextAction::GO_RIGHT:
91
163k
        item.action = NextAction::POP;
92
163k
        property_ranges[node.property].first = item.orig_l;
93
163k
        property_ranges[node.property].second = node.splitval;
94
163k
        stack.push_back({/*node_index=*/node.rchild,
95
163k
                         /*orig_l=*/0, /*orig_u=*/0,
96
163k
                         NextAction::CHECK_AND_GO_LEFT});
97
163k
        continue;
98
99
161k
      case NextAction::POP:
100
161k
        property_ranges[node.property].second = item.orig_u;
101
161k
        stack.pop_back();
102
161k
        continue;
103
798k
    }
104
798k
  }
105
106
145k
  return true;
107
146k
}
108
109
Status DecodeTree(BitReader* br, ANSSymbolReader* reader,
110
                  const std::vector<uint8_t>& context_map, Tree* tree,
111
157k
                  size_t tree_size_limit) {
112
157k
  size_t leaf_id = 0;
113
157k
  size_t to_decode = 1;
114
157k
  tree->clear();
115
1.59M
  while (to_decode > 0) {
116
1.44M
    JXL_RETURN_IF_ERROR(br->AllReadsWithinBounds());
117
1.43M
    if (tree->size() > tree_size_limit) {
118
300
      return JXL_FAILURE("Tree is too large: %" PRIuS " nodes vs %" PRIuS
119
300
                         " max nodes",
120
300
                         tree->size(), tree_size_limit);
121
300
    }
122
1.43M
    to_decode--;
123
1.43M
    uint32_t prop1 = reader->ReadHybridUint(kPropertyContext, br, context_map);
124
1.43M
    if (prop1 > 256) return JXL_FAILURE("Invalid tree property value");
125
1.43M
    int property = prop1 - 1;
126
1.43M
    if (property == -1) {
127
330k
      size_t predictor =
128
330k
          reader->ReadHybridUint(kPredictorContext, br, context_map);
129
330k
      if (predictor >= kNumModularPredictors) {
130
224
        return JXL_FAILURE("Invalid predictor");
131
224
      }
132
330k
      int64_t predictor_offset =
133
330k
          UnpackSigned(reader->ReadHybridUint(kOffsetContext, br, context_map));
134
330k
      uint32_t mul_log =
135
330k
          reader->ReadHybridUint(kMultiplierLogContext, br, context_map);
136
330k
      if (mul_log >= 31) {
137
22
        return JXL_FAILURE("Invalid multiplier logarithm");
138
22
      }
139
330k
      uint32_t mul_bits =
140
330k
          reader->ReadHybridUint(kMultiplierBitsContext, br, context_map);
141
330k
      if (mul_bits >= (1u << (31u - mul_log)) - 1u) {
142
6
        return JXL_FAILURE("Invalid multiplier");
143
6
      }
144
330k
      uint32_t multiplier = (mul_bits + 1U) << mul_log;
145
330k
      Predictor p = static_cast<Predictor>(static_cast<uint32_t>(predictor));
146
330k
      tree->emplace_back(-1, 0, static_cast<int>(leaf_id), 0, p,
147
330k
                         predictor_offset, multiplier);
148
330k
      leaf_id++;
149
330k
      continue;
150
330k
    }
151
1.10M
    int splitval =
152
1.10M
        UnpackSigned(reader->ReadHybridUint(kSplitValContext, br, context_map));
153
1.10M
    tree->emplace_back(
154
1.10M
        property, splitval, static_cast<int>(tree->size() + to_decode + 1),
155
1.10M
        static_cast<int>(tree->size() + to_decode + 2), Predictor::Zero, 0, 1);
156
1.10M
    to_decode += 2;
157
1.10M
  }
158
146k
  return ValidateTree(*tree);
159
157k
}
160
}  // namespace
161
162
Status DecodeTree(JxlMemoryManager* memory_manager, BitReader* br, Tree* tree,
163
175k
                  size_t tree_size_limit) {
164
175k
  std::vector<uint8_t> tree_context_map;
165
175k
  ANSCode tree_code;
166
175k
  JXL_RETURN_IF_ERROR(DecodeHistograms(memory_manager, br, kNumTreeContexts,
167
175k
                                       &tree_code, &tree_context_map));
168
  // TODO(eustas): investigate more infinite tree cases.
169
158k
  if (tree_code.degenerate_symbols[tree_context_map[kPropertyContext]] > 0) {
170
913
    return JXL_FAILURE("Infinite tree");
171
913
  }
172
314k
  JXL_ASSIGN_OR_RETURN(ANSSymbolReader reader,
173
314k
                       ANSSymbolReader::Create(&tree_code, br));
174
314k
  JXL_RETURN_IF_ERROR(DecodeTree(br, &reader, tree_context_map, tree,
175
314k
                                 std::min(tree_size_limit, kMaxTreeSize)));
176
145k
  if (!reader.CheckANSFinalState()) {
177
0
    return JXL_FAILURE("ANS decode final state failed");
178
0
  }
179
145k
  return true;
180
145k
}
181
182
}  // namespace jxl