Coverage Report

Created: 2026-01-16 06:32

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/qpdf/libqpdf/Pl_LZWDecoder.cc
Line
Count
Source
1
#include <qpdf/Pl_LZWDecoder.hh>
2
3
#include <qpdf/QIntC.hh>
4
#include <qpdf/QTC.hh>
5
#include <qpdf/Util.hh>
6
#include <cstring>
7
#include <stdexcept>
8
9
using namespace qpdf;
10
11
Pl_LZWDecoder::Pl_LZWDecoder(char const* identifier, Pipeline* next, bool early_code_change) :
12
3.02k
    Pipeline(identifier, next),
13
3.02k
    code_change_delta(early_code_change)
14
3.02k
{
15
3.02k
    util::assertion(next, "Attempt to create Pl_LZWDecoder with nullptr as next");
16
3.02k
}
17
18
void
19
Pl_LZWDecoder::write(unsigned char const* bytes, size_t len)
20
3.02M
{
21
9.93M
    for (size_t i = 0; i < len; ++i) {
22
6.91M
        buf[next_char_++] = bytes[i];
23
6.91M
        if (next_char_ == 3) {
24
2.30M
            next_char_ = 0;
25
2.30M
        }
26
6.91M
        bits_available += 8;
27
6.91M
        if (bits_available >= code_size) {
28
5.90M
            sendNextCode();
29
5.90M
        }
30
6.91M
    }
31
3.02M
}
32
33
void
34
Pl_LZWDecoder::finish()
35
2.83k
{
36
2.83k
    next()->finish();
37
2.83k
}
38
39
void
40
Pl_LZWDecoder::sendNextCode()
41
5.90M
{
42
5.90M
    unsigned int high = byte_pos;
43
5.90M
    unsigned int med = (byte_pos + 1) % 3;
44
5.90M
    unsigned int low = (byte_pos + 2) % 3;
45
46
5.90M
    unsigned int bits_from_high = 8 - bit_pos;
47
5.90M
    unsigned int bits_from_med = code_size - bits_from_high;
48
5.90M
    unsigned int bits_from_low = 0;
49
5.90M
    if (bits_from_med > 8) {
50
315k
        bits_from_low = bits_from_med - 8;
51
315k
        bits_from_med = 8;
52
315k
    }
53
5.90M
    unsigned int high_mask = (1U << bits_from_high) - 1U;
54
5.90M
    unsigned int med_mask = 0xff - ((1U << (8 - bits_from_med)) - 1U);
55
5.90M
    unsigned int low_mask = 0xff - ((1U << (8 - bits_from_low)) - 1U);
56
5.90M
    unsigned int code = 0;
57
5.90M
    code += (buf[high] & high_mask) << bits_from_med;
58
5.90M
    code += ((buf[med] & med_mask) >> (8 - bits_from_med));
59
5.90M
    if (bits_from_low) {
60
315k
        code <<= bits_from_low;
61
315k
        code += ((buf[low] & low_mask) >> (8 - bits_from_low));
62
315k
        byte_pos = low;
63
315k
        bit_pos = bits_from_low;
64
5.58M
    } else {
65
5.58M
        byte_pos = med;
66
5.58M
        bit_pos = bits_from_med;
67
5.58M
    }
68
5.90M
    if (bit_pos == 8) {
69
690k
        bit_pos = 0;
70
690k
        ++byte_pos;
71
690k
        byte_pos %= 3;
72
690k
    }
73
5.90M
    bits_available -= code_size;
74
75
5.90M
    handleCode(code);
76
5.90M
}
77
78
unsigned char
79
Pl_LZWDecoder::getFirstChar(unsigned int code)
80
29.3k
{
81
29.3k
    if (code < 256) {
82
84
        return static_cast<unsigned char>(code);
83
84
    }
84
29.2k
    util::no_ci_rt_error_if(
85
29.2k
        code <= 257,
86
29.2k
        "Pl_LZWDecoder::getFirstChar called with invalid code (" + std::to_string(code) + ")");
87
88
29.2k
    unsigned int idx = code - 258;
89
29.2k
    util::no_ci_rt_error_if(idx >= table.size(), "Pl_LZWDecoder::getFirstChar: table overflow");
90
29.2k
    Buffer& b = table.at(idx);
91
29.2k
    return b.getBuffer()[0];
92
29.3k
}
93
94
void
95
Pl_LZWDecoder::addToTable(unsigned char c)
96
3.68M
{
97
3.68M
    unsigned int last_size = 0;
98
3.68M
    unsigned char const* last_data = nullptr;
99
3.68M
    unsigned char tmp[1];
100
101
3.68M
    if (last_code < 256) {
102
3.65M
        tmp[0] = static_cast<unsigned char>(last_code);
103
3.65M
        last_data = tmp;
104
3.65M
        last_size = 1;
105
3.65M
    } else {
106
29.0k
        util::no_ci_rt_error_if(
107
29.0k
            last_code <= 257,
108
29.0k
            "Pl_LZWDecoder::addToTable called with invalid code (" + std::to_string(last_code) +
109
29.0k
                ")");
110
29.0k
        unsigned int idx = last_code - 258;
111
29.0k
        util::no_ci_rt_error_if(idx >= table.size(), "Pl_LZWDecoder::addToTable: table overflow");
112
29.0k
        Buffer& b = table.at(idx);
113
29.0k
        last_data = b.getBuffer();
114
29.0k
        last_size = QIntC::to_uint(b.getSize());
115
29.0k
    }
116
117
3.68M
    Buffer entry(1 + last_size);
118
3.68M
    unsigned char* new_data = entry.getBuffer();
119
3.68M
    memcpy(new_data, last_data, last_size);
120
3.68M
    new_data[last_size] = c;
121
3.68M
    table.push_back(std::move(entry));
122
3.68M
}
123
124
void
125
Pl_LZWDecoder::handleCode(unsigned int code)
126
5.90M
{
127
5.90M
    if (eod) {
128
1.90M
        return;
129
1.90M
    }
130
131
3.99M
    if (code == 256) {
132
179k
        if (!table.empty()) {
133
134k
            QTC::TC("libtests", "Pl_LZWDecoder intermediate reset");
134
134k
        }
135
179k
        table.clear();
136
179k
        code_size = 9;
137
3.81M
    } else if (code == 257) {
138
38
        eod = true;
139
3.81M
    } else {
140
3.81M
        if (last_code != 256) {
141
            // Add to the table from last time.  New table entry would be what we read last plus the
142
            // first character of what we're reading now.
143
3.68M
            unsigned char next_c = '\0';
144
3.68M
            unsigned int table_size = QIntC::to_uint(table.size());
145
3.68M
            if (code < 256) {
146
                // just read < 256; last time's next_c was code
147
3.65M
                next_c = static_cast<unsigned char>(code);
148
3.65M
            } else if (code > 257) {
149
29.6k
                size_t idx = code - 258;
150
29.6k
                if (idx > table_size) {
151
382
                    throw std::runtime_error("LZWDecoder: bad code received");
152
29.3k
                } else if (idx == table_size) {
153
                    // The encoder would have just created this entry, so the first character of
154
                    // this entry would have been the same as the first character of the last entry.
155
119
                    next_c = getFirstChar(last_code);
156
29.1k
                } else {
157
29.1k
                    next_c = getFirstChar(code);
158
29.1k
                }
159
29.6k
            }
160
3.68M
            unsigned int new_idx = 258 + table_size;
161
3.68M
            util::no_ci_rt_error_if(new_idx == 4096, "LZWDecoder: table full");
162
3.68M
            addToTable(next_c);
163
3.68M
            unsigned int change_idx = new_idx + code_change_delta;
164
3.68M
            if (change_idx == 511 || change_idx == 1023 || change_idx == 2047) {
165
1.74k
                ++code_size;
166
1.74k
            }
167
3.68M
        }
168
169
3.81M
        if (code < 256) {
170
3.78M
            auto ch = static_cast<unsigned char>(code);
171
3.78M
            next()->write(&ch, 1);
172
3.78M
        } else {
173
29.3k
            unsigned int idx = code - 258;
174
29.3k
            if (idx >= table.size()) {
175
56
                throw std::runtime_error("Pl_LZWDecoder::handleCode: table overflow");
176
56
            }
177
29.3k
            Buffer& b = table.at(idx);
178
29.3k
            next()->write(b.getBuffer(), b.getSize());
179
29.3k
        }
180
3.81M
    }
181
182
3.99M
    last_code = code;
183
3.99M
}